diff --git a/Makefile b/Makefile index aaab5b7c2195..5fef9bb72133 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ .PHONY: default -default: banner build +default: banner generate build .PHONY: all -all: banner build +all: banner generate build .PHONY: banner banner: @@ -15,7 +15,13 @@ serve: @echo -e "\033[0;32mSERVE:\033[0m" bundler exec jekyll serve +.PHONY: generate +generate: + @echo -e "\033[0;32mGENERATE:\033[0m" + ./scripts/run_typedoc.sh + .PHONY: build build: @echo -e "\033[0;32mBUILD:\033[0m" + bundle install bundler exec jekyll build diff --git a/_config.yml b/_config.yml index 718046e1615f..4313d87356c7 100644 --- a/_config.yml +++ b/_config.yml @@ -6,17 +6,16 @@ plugins: # Files to not include when building. exclude: - - scripts - - .gitignore - - Gemfile - - Gemfile.lock - - Makefile - - README.md - -# Jekyll collections. This is how we specify our TypeScript docs, allowing us -# to do filtering at generation-time. -collections: - typescript_docs: - output: true - permalink: /typescript/:path/ + - scripts + - .gitignore + - Gemfile + - Gemfile.lock + - Makefile + - README.md +# Totally lame workaround until typedoc emits files withouty a leading +# underscore or we have our own TypeScript documentation generation stack. +# https://github.com/TypeStrong/typedoc/issues/149 +include: + - _* + \ No newline at end of file diff --git a/_includes/header.html b/_includes/header.html index c97925d53128..b043b2194c4f 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -22,7 +22,7 @@ Examples diff --git a/_layouts/typescript-reference.html b/_layouts/typescript-reference.html deleted file mode 100644 index 1f6a4f42880c..000000000000 --- a/_layouts/typescript-reference.html +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: default ---- - -
-

TypeScript reference

-

Repo: {{ page.repo }}

-

Subpath: {{ page.subpath }}

- -
-{{ content }}
-    
- -

In Same Repo

- {% assign docs_by_repo = site.typescript_docs | group_by: "repo" %} - {% for docs_in_repo in docs_by_repo %} -

{{ docs_in_repo.name }}

- - {% endfor %} -
\ No newline at end of file diff --git a/_layouts/typescript-repo.html b/_layouts/typescript-repo.html deleted file mode 100644 index e8b22675eb12..000000000000 --- a/_layouts/typescript-repo.html +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: default ---- -
-

TypeScript reference for {{ page.repo }}

- -

In Same Repo

- {% assign docs_in_repo = site.typescript_docs | where: "repo", page.repo %} - - - - {{ content }} -
\ No newline at end of file diff --git a/_typescript_docs/pulumi-aws/apigateway/account.d.ts b/_typescript_docs/pulumi-aws/apigateway/account.d.ts deleted file mode 100644 index f834349c2206..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/account.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/account.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Account extends fabric.Resource { - readonly cloudwatchRoleArn?: fabric.Computed; - readonly throttleSettings: fabric.Computed<{ - burstLimit: number; - rateLimit: number; - }[]>; - constructor(urnName: string, args: AccountArgs); -} -export interface AccountArgs { - readonly cloudwatchRoleArn?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/apiKey.d.ts b/_typescript_docs/pulumi-aws/apigateway/apiKey.d.ts deleted file mode 100644 index 5a45a1b2dc5e..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/apiKey.d.ts +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/apiKey.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class ApiKey extends fabric.Resource { - readonly createdDate: fabric.Computed; - readonly description?: fabric.Computed; - readonly enabled?: fabric.Computed; - readonly lastUpdatedDate: fabric.Computed; - readonly name: fabric.Computed; - readonly stageKey?: fabric.Computed<{ - restApi: RestApi; - stageName: string; - }[]>; - readonly value: fabric.Computed; - constructor(urnName: string, args: ApiKeyArgs); -} -export interface ApiKeyArgs { - readonly description?: fabric.MaybeComputed; - readonly enabled?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly stageKey?: fabric.MaybeComputed<{ - restApi: fabric.MaybeComputed; - stageName: fabric.MaybeComputed; - }>[]; - readonly value?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/authorizer.d.ts b/_typescript_docs/pulumi-aws/apigateway/authorizer.d.ts deleted file mode 100644 index e2203d8e10dd..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/authorizer.d.ts +++ /dev/null @@ -1,28 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/authorizer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class Authorizer extends fabric.Resource { - readonly authorizerCredentials?: fabric.Computed; - readonly authorizerResultTtlInSeconds?: fabric.Computed; - readonly authorizerUri: fabric.Computed; - readonly identitySource?: fabric.Computed; - readonly identityValidationExpression?: fabric.Computed; - readonly name: fabric.Computed; - readonly restApi: fabric.Computed; - readonly type?: fabric.Computed; - constructor(urnName: string, args: AuthorizerArgs); -} -export interface AuthorizerArgs { - readonly authorizerCredentials?: fabric.MaybeComputed; - readonly authorizerResultTtlInSeconds?: fabric.MaybeComputed; - readonly authorizerUri: fabric.MaybeComputed; - readonly identitySource?: fabric.MaybeComputed; - readonly identityValidationExpression?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly restApi: fabric.MaybeComputed; - readonly type?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/basePathMapping.d.ts b/_typescript_docs/pulumi-aws/apigateway/basePathMapping.d.ts deleted file mode 100644 index a009de8af6b9..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/basePathMapping.d.ts +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/basePathMapping.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class BasePathMapping extends fabric.Resource { - readonly restApi: fabric.Computed; - readonly basePath?: fabric.Computed; - readonly domainName: fabric.Computed; - readonly stageName?: fabric.Computed; - constructor(urnName: string, args: BasePathMappingArgs); -} -export interface BasePathMappingArgs { - readonly restApi: fabric.MaybeComputed; - readonly basePath?: fabric.MaybeComputed; - readonly domainName: fabric.MaybeComputed; - readonly stageName?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/clientCertificate.d.ts b/_typescript_docs/pulumi-aws/apigateway/clientCertificate.d.ts deleted file mode 100644 index fc61bc05a3d4..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/clientCertificate.d.ts +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/clientCertificate.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ClientCertificate extends fabric.Resource { - readonly createdDate: fabric.Computed; - readonly description?: fabric.Computed; - readonly expirationDate: fabric.Computed; - readonly pemEncodedCertificate: fabric.Computed; - constructor(urnName: string, args: ClientCertificateArgs); -} -export interface ClientCertificateArgs { - readonly description?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/deployment.d.ts b/_typescript_docs/pulumi-aws/apigateway/deployment.d.ts deleted file mode 100644 index 02bbcda74666..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/deployment.d.ts +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/deployment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class Deployment extends fabric.Resource { - readonly createdDate: fabric.Computed; - readonly description?: fabric.Computed; - readonly executionArn: fabric.Computed; - readonly invokeUrl: fabric.Computed; - readonly restApi: fabric.Computed; - readonly stageDescription?: fabric.Computed; - readonly stageName: fabric.Computed; - readonly variables?: fabric.Computed<{ - [key: string]: string; - }>; - constructor(urnName: string, args: DeploymentArgs); -} -export interface DeploymentArgs { - readonly description?: fabric.MaybeComputed; - readonly restApi: fabric.MaybeComputed; - readonly stageDescription?: fabric.MaybeComputed; - readonly stageName: fabric.MaybeComputed; - readonly variables?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/domainName.d.ts b/_typescript_docs/pulumi-aws/apigateway/domainName.d.ts deleted file mode 100644 index 0b931edbd7a4..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/domainName.d.ts +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/domainName.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DomainName extends fabric.Resource { - readonly certificateArn?: fabric.Computed; - readonly certificateBody?: fabric.Computed; - readonly certificateChain?: fabric.Computed; - readonly certificateName?: fabric.Computed; - readonly certificatePrivateKey?: fabric.Computed; - readonly certificateUploadDate: fabric.Computed; - readonly cloudfrontDomainName: fabric.Computed; - readonly cloudfrontZoneId: fabric.Computed; - readonly domainName: fabric.Computed; - constructor(urnName: string, args: DomainNameArgs); -} -export interface DomainNameArgs { - readonly certificateArn?: fabric.MaybeComputed; - readonly certificateBody?: fabric.MaybeComputed; - readonly certificateChain?: fabric.MaybeComputed; - readonly certificateName?: fabric.MaybeComputed; - readonly certificatePrivateKey?: fabric.MaybeComputed; - readonly domainName: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/integration.d.ts b/_typescript_docs/pulumi-aws/apigateway/integration.d.ts deleted file mode 100644 index b13824a600c2..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/integration.d.ts +++ /dev/null @@ -1,48 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/integration.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class Integration extends fabric.Resource { - readonly cacheKeyParameters?: fabric.Computed; - readonly cacheNamespace: fabric.Computed; - readonly contentHandling?: fabric.Computed; - readonly credentials?: fabric.Computed; - readonly httpMethod: fabric.Computed; - readonly integrationHttpMethod?: fabric.Computed; - readonly passthroughBehavior: fabric.Computed; - readonly requestParameters?: fabric.Computed<{ - [key: string]: string; - }>; - readonly requestParametersInJson?: fabric.Computed; - readonly requestTemplates?: fabric.Computed<{ - [key: string]: string; - }>; - readonly resourceId: fabric.Computed; - readonly restApi: fabric.Computed; - readonly type: fabric.Computed; - readonly uri?: fabric.Computed; - constructor(urnName: string, args: IntegrationArgs); -} -export interface IntegrationArgs { - readonly cacheKeyParameters?: fabric.MaybeComputed>[]; - readonly cacheNamespace?: fabric.MaybeComputed; - readonly contentHandling?: fabric.MaybeComputed; - readonly credentials?: fabric.MaybeComputed; - readonly httpMethod: fabric.MaybeComputed; - readonly integrationHttpMethod?: fabric.MaybeComputed; - readonly passthroughBehavior?: fabric.MaybeComputed; - readonly requestParameters?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - readonly requestParametersInJson?: fabric.MaybeComputed; - readonly requestTemplates?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - readonly resourceId: fabric.MaybeComputed; - readonly restApi: fabric.MaybeComputed; - readonly type: fabric.MaybeComputed; - readonly uri?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/integrationResponse.d.ts b/_typescript_docs/pulumi-aws/apigateway/integrationResponse.d.ts deleted file mode 100644 index ac2c5880d7d5..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/integrationResponse.d.ts +++ /dev/null @@ -1,38 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/integrationResponse.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class IntegrationResponse extends fabric.Resource { - readonly contentHandling?: fabric.Computed; - readonly httpMethod: fabric.Computed; - readonly resourceId: fabric.Computed; - readonly responseParameters?: fabric.Computed<{ - [key: string]: string; - }>; - readonly responseParametersInJson?: fabric.Computed; - readonly responseTemplates?: fabric.Computed<{ - [key: string]: string; - }>; - readonly restApi: fabric.Computed; - readonly selectionPattern?: fabric.Computed; - readonly statusCode: fabric.Computed; - constructor(urnName: string, args: IntegrationResponseArgs); -} -export interface IntegrationResponseArgs { - readonly contentHandling?: fabric.MaybeComputed; - readonly httpMethod: fabric.MaybeComputed; - readonly resourceId: fabric.MaybeComputed; - readonly responseParameters?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - readonly responseParametersInJson?: fabric.MaybeComputed; - readonly responseTemplates?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - readonly restApi: fabric.MaybeComputed; - readonly selectionPattern?: fabric.MaybeComputed; - readonly statusCode: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/method.d.ts b/_typescript_docs/pulumi-aws/apigateway/method.d.ts deleted file mode 100644 index b9531f1ed2ac..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/method.d.ts +++ /dev/null @@ -1,40 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/method.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class Method extends fabric.Resource { - readonly apiKeyRequired?: fabric.Computed; - readonly authorization: fabric.Computed; - readonly authorizerId?: fabric.Computed; - readonly httpMethod: fabric.Computed; - readonly requestModels?: fabric.Computed<{ - [key: string]: string; - }>; - readonly requestParameters?: fabric.Computed<{ - [key: string]: boolean; - }>; - readonly requestParametersInJson?: fabric.Computed; - readonly requestValidatorId?: fabric.Computed; - readonly resourceId: fabric.Computed; - readonly restApi: fabric.Computed; - constructor(urnName: string, args: MethodArgs); -} -export interface MethodArgs { - readonly apiKeyRequired?: fabric.MaybeComputed; - readonly authorization: fabric.MaybeComputed; - readonly authorizerId?: fabric.MaybeComputed; - readonly httpMethod: fabric.MaybeComputed; - readonly requestModels?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - readonly requestParameters?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - readonly requestParametersInJson?: fabric.MaybeComputed; - readonly requestValidatorId?: fabric.MaybeComputed; - readonly resourceId: fabric.MaybeComputed; - readonly restApi: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/methodResponse.d.ts b/_typescript_docs/pulumi-aws/apigateway/methodResponse.d.ts deleted file mode 100644 index 911fa9141965..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/methodResponse.d.ts +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/methodResponse.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class MethodResponse extends fabric.Resource { - readonly httpMethod: fabric.Computed; - readonly resourceId: fabric.Computed; - readonly responseModels?: fabric.Computed<{ - [key: string]: string; - }>; - readonly responseParameters?: fabric.Computed<{ - [key: string]: boolean; - }>; - readonly responseParametersInJson?: fabric.Computed; - readonly restApi: fabric.Computed; - readonly statusCode: fabric.Computed; - constructor(urnName: string, args: MethodResponseArgs); -} -export interface MethodResponseArgs { - readonly httpMethod: fabric.MaybeComputed; - readonly resourceId: fabric.MaybeComputed; - readonly responseModels?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - readonly responseParameters?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - readonly responseParametersInJson?: fabric.MaybeComputed; - readonly restApi: fabric.MaybeComputed; - readonly statusCode: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/methodSettings.d.ts b/_typescript_docs/pulumi-aws/apigateway/methodSettings.d.ts deleted file mode 100644 index a3cc217f2df1..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/methodSettings.d.ts +++ /dev/null @@ -1,42 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/methodSettings.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class MethodSettings extends fabric.Resource { - readonly methodPath: fabric.Computed; - readonly restApi: fabric.Computed; - readonly settings: fabric.Computed<{ - cacheDataEncrypted?: boolean; - cacheTtlInSeconds?: number; - cachingEnabled?: boolean; - dataTraceEnabled?: boolean; - loggingLevel?: string; - metricsEnabled?: boolean; - requireAuthorizationForCacheControl?: boolean; - throttlingBurstLimit?: number; - throttlingRateLimit?: number; - unauthorizedCacheControlHeaderStrategy?: string; - }[]>; - readonly stageName: fabric.Computed; - constructor(urnName: string, args: MethodSettingsArgs); -} -export interface MethodSettingsArgs { - readonly methodPath: fabric.MaybeComputed; - readonly restApi: fabric.MaybeComputed; - readonly settings: fabric.MaybeComputed<{ - cacheDataEncrypted?: fabric.MaybeComputed; - cacheTtlInSeconds?: fabric.MaybeComputed; - cachingEnabled?: fabric.MaybeComputed; - dataTraceEnabled?: fabric.MaybeComputed; - loggingLevel?: fabric.MaybeComputed; - metricsEnabled?: fabric.MaybeComputed; - requireAuthorizationForCacheControl?: fabric.MaybeComputed; - throttlingBurstLimit?: fabric.MaybeComputed; - throttlingRateLimit?: fabric.MaybeComputed; - unauthorizedCacheControlHeaderStrategy?: fabric.MaybeComputed; - }>[]; - readonly stageName: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/model.d.ts b/_typescript_docs/pulumi-aws/apigateway/model.d.ts deleted file mode 100644 index 483e574b5ed6..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/model.d.ts +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/model.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class Model extends fabric.Resource { - readonly contentType: fabric.Computed; - readonly description?: fabric.Computed; - readonly name: fabric.Computed; - readonly restApi: fabric.Computed; - readonly schema?: fabric.Computed; - constructor(urnName: string, args: ModelArgs); -} -export interface ModelArgs { - readonly contentType: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly restApi: fabric.MaybeComputed; - readonly schema?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/requestValidator.d.ts b/_typescript_docs/pulumi-aws/apigateway/requestValidator.d.ts deleted file mode 100644 index 0234b9a2cddc..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/requestValidator.d.ts +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/requestValidator.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class RequestValidator extends fabric.Resource { - readonly name: fabric.Computed; - readonly restApi: fabric.Computed; - readonly validateRequestBody?: fabric.Computed; - readonly validateRequestParameters?: fabric.Computed; - constructor(urnName: string, args: RequestValidatorArgs); -} -export interface RequestValidatorArgs { - readonly name?: fabric.MaybeComputed; - readonly restApi: fabric.MaybeComputed; - readonly validateRequestBody?: fabric.MaybeComputed; - readonly validateRequestParameters?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/resource.d.ts b/_typescript_docs/pulumi-aws/apigateway/resource.d.ts deleted file mode 100644 index c2f3e30fa566..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/resource.d.ts +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/resource.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { RestApi } from "./restApi"; -export declare class Resource extends fabric.Resource { - readonly parentId: fabric.Computed; - readonly path: fabric.Computed; - readonly pathPart: fabric.Computed; - readonly restApi: fabric.Computed; - constructor(urnName: string, args: ResourceArgs); -} -export interface ResourceArgs { - readonly parentId: fabric.MaybeComputed; - readonly pathPart: fabric.MaybeComputed; - readonly restApi: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/response.d.ts b/_typescript_docs/pulumi-aws/apigateway/response.d.ts deleted file mode 100644 index e9005491861d..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/response.d.ts +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/response.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Response extends fabric.Resource { - readonly responseParameters?: fabric.Computed<{ - [key: string]: string; - }>; - readonly responseTemplates?: fabric.Computed<{ - [key: string]: string; - }>; - readonly responseType: fabric.Computed; - readonly restApiId: fabric.Computed; - readonly statusCode?: fabric.Computed; - constructor(urnName: string, args: ResponseArgs); -} -export interface ResponseArgs { - readonly responseParameters?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - readonly responseTemplates?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - readonly responseType: fabric.MaybeComputed; - readonly restApiId: fabric.MaybeComputed; - readonly statusCode?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/restApi.d.ts b/_typescript_docs/pulumi-aws/apigateway/restApi.d.ts deleted file mode 100644 index d28d8ff46c74..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/restApi.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/restApi.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class RestApi extends fabric.Resource { - readonly binaryMediaTypes?: fabric.Computed; - readonly body?: fabric.Computed; - readonly createdDate: fabric.Computed; - readonly description?: fabric.Computed; - readonly name: fabric.Computed; - readonly rootResourceId: fabric.Computed; - constructor(urnName: string, args: RestApiArgs); -} -export interface RestApiArgs { - readonly binaryMediaTypes?: fabric.MaybeComputed>[]; - readonly body?: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/stage.d.ts b/_typescript_docs/pulumi-aws/apigateway/stage.d.ts deleted file mode 100644 index 98ce248a57e2..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/stage.d.ts +++ /dev/null @@ -1,35 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/stage.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { Deployment } from "./deployment"; -import { RestApi } from "./restApi"; -export declare class Stage extends fabric.Resource { - readonly cacheClusterEnabled?: fabric.Computed; - readonly cacheClusterSize?: fabric.Computed; - readonly clientCertificateId?: fabric.Computed; - readonly deployment: fabric.Computed; - readonly description?: fabric.Computed; - readonly documentationVersion?: fabric.Computed; - readonly restApi: fabric.Computed; - readonly stageName: fabric.Computed; - readonly variables?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: StageArgs); -} -export interface StageArgs { - readonly cacheClusterEnabled?: fabric.MaybeComputed; - readonly cacheClusterSize?: fabric.MaybeComputed; - readonly clientCertificateId?: fabric.MaybeComputed; - readonly deployment: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly documentationVersion?: fabric.MaybeComputed; - readonly restApi: fabric.MaybeComputed; - readonly stageName: fabric.MaybeComputed; - readonly variables?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/usagePlan.d.ts b/_typescript_docs/pulumi-aws/apigateway/usagePlan.d.ts deleted file mode 100644 index 18ff8390b5ea..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/usagePlan.d.ts +++ /dev/null @@ -1,43 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/usagePlan.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class UsagePlan extends fabric.Resource { - readonly apiStages?: fabric.Computed<{ - apiId: string; - stage: string; - }[]>; - readonly description?: fabric.Computed; - readonly name: fabric.Computed; - readonly productCode?: fabric.Computed; - readonly quotaSettings?: fabric.Computed<{ - limit: number; - offset?: number; - period: string; - }[]>; - readonly throttleSettings?: fabric.Computed<{ - burstLimit?: number; - rateLimit?: number; - }[]>; - constructor(urnName: string, args: UsagePlanArgs); -} -export interface UsagePlanArgs { - readonly apiStages?: fabric.MaybeComputed<{ - apiId: fabric.MaybeComputed; - stage: fabric.MaybeComputed; - }>[]; - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly productCode?: fabric.MaybeComputed; - readonly quotaSettings?: fabric.MaybeComputed<{ - limit: fabric.MaybeComputed; - offset?: fabric.MaybeComputed; - period: fabric.MaybeComputed; - }>[]; - readonly throttleSettings?: fabric.MaybeComputed<{ - burstLimit?: fabric.MaybeComputed; - rateLimit?: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/apigateway/usagePlanKey.d.ts b/_typescript_docs/pulumi-aws/apigateway/usagePlanKey.d.ts deleted file mode 100644 index 9445f3562d75..000000000000 --- a/_typescript_docs/pulumi-aws/apigateway/usagePlanKey.d.ts +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: apigateway/usagePlanKey.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class UsagePlanKey extends fabric.Resource { - readonly keyId: fabric.Computed; - readonly keyType: fabric.Computed; - readonly name: fabric.Computed; - readonly usagePlanId: fabric.Computed; - readonly value: fabric.Computed; - constructor(urnName: string, args: UsagePlanKeyArgs); -} -export interface UsagePlanKeyArgs { - readonly keyId: fabric.MaybeComputed; - readonly keyType: fabric.MaybeComputed; - readonly usagePlanId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/appautoscaling/policy.d.ts b/_typescript_docs/pulumi-aws/appautoscaling/policy.d.ts deleted file mode 100644 index 429f7fe7848e..000000000000 --- a/_typescript_docs/pulumi-aws/appautoscaling/policy.d.ts +++ /dev/null @@ -1,42 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: appautoscaling/policy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Policy extends fabric.Resource { - readonly adjustmentType: fabric.Computed; - readonly alarms?: fabric.Computed; - readonly arn: fabric.Computed; - readonly cooldown: fabric.Computed; - readonly metricAggregationType: fabric.Computed; - readonly minAdjustmentMagnitude?: fabric.Computed; - readonly name: fabric.Computed; - readonly policyType?: fabric.Computed; - readonly resourceId: fabric.Computed; - readonly scalableDimension: fabric.Computed; - readonly serviceNamespace: fabric.Computed; - readonly stepAdjustment?: fabric.Computed<{ - metricIntervalLowerBound?: string; - metricIntervalUpperBound?: string; - scalingAdjustment: number; - }[]>; - constructor(urnName: string, args: PolicyArgs); -} -export interface PolicyArgs { - readonly adjustmentType: fabric.MaybeComputed; - readonly alarms?: fabric.MaybeComputed>[]; - readonly cooldown: fabric.MaybeComputed; - readonly metricAggregationType: fabric.MaybeComputed; - readonly minAdjustmentMagnitude?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly policyType?: fabric.MaybeComputed; - readonly resourceId: fabric.MaybeComputed; - readonly scalableDimension: fabric.MaybeComputed; - readonly serviceNamespace: fabric.MaybeComputed; - readonly stepAdjustment?: fabric.MaybeComputed<{ - metricIntervalLowerBound?: fabric.MaybeComputed; - metricIntervalUpperBound?: fabric.MaybeComputed; - scalingAdjustment: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/appautoscaling/target.d.ts b/_typescript_docs/pulumi-aws/appautoscaling/target.d.ts deleted file mode 100644 index 13f96ff358af..000000000000 --- a/_typescript_docs/pulumi-aws/appautoscaling/target.d.ts +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: appautoscaling/target.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Target extends fabric.Resource { - readonly maxCapacity: fabric.Computed; - readonly minCapacity: fabric.Computed; - readonly resourceId: fabric.Computed; - readonly roleArn: fabric.Computed; - readonly scalableDimension: fabric.Computed; - readonly serviceNamespace: fabric.Computed; - constructor(urnName: string, args: TargetArgs); -} -export interface TargetArgs { - readonly maxCapacity: fabric.MaybeComputed; - readonly minCapacity: fabric.MaybeComputed; - readonly resourceId: fabric.MaybeComputed; - readonly roleArn: fabric.MaybeComputed; - readonly scalableDimension: fabric.MaybeComputed; - readonly serviceNamespace: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/arn.d.ts b/_typescript_docs/pulumi-aws/arn.d.ts deleted file mode 100644 index 9f27b84e3d22..000000000000 --- a/_typescript_docs/pulumi-aws/arn.d.ts +++ /dev/null @@ -1,6 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: arn.d.ts ---- -export declare type ARN = string; diff --git a/_typescript_docs/pulumi-aws/autoscaling/attachment.d.ts b/_typescript_docs/pulumi-aws/autoscaling/attachment.d.ts deleted file mode 100644 index 8d4fe6a2adfc..000000000000 --- a/_typescript_docs/pulumi-aws/autoscaling/attachment.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: autoscaling/attachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Attachment extends fabric.Resource { - readonly albTargetGroupArn?: fabric.Computed; - readonly autoscalingGroupName: fabric.Computed; - readonly elb?: fabric.Computed; - constructor(urnName: string, args: AttachmentArgs); -} -export interface AttachmentArgs { - readonly albTargetGroupArn?: fabric.MaybeComputed; - readonly autoscalingGroupName: fabric.MaybeComputed; - readonly elb?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/autoscaling/group.d.ts b/_typescript_docs/pulumi-aws/autoscaling/group.d.ts deleted file mode 100644 index 0f2595e08ea4..000000000000 --- a/_typescript_docs/pulumi-aws/autoscaling/group.d.ts +++ /dev/null @@ -1,92 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: autoscaling/group.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Group extends fabric.Resource { - readonly arn: fabric.Computed; - readonly availabilityZones: fabric.Computed; - readonly defaultCooldown: fabric.Computed; - readonly desiredCapacity: fabric.Computed; - readonly enabledMetrics?: fabric.Computed; - readonly forceDelete?: fabric.Computed; - readonly healthCheckGracePeriod?: fabric.Computed; - readonly healthCheckType: fabric.Computed; - readonly initialLifecycleHook?: fabric.Computed<{ - defaultResult: string; - heartbeatTimeout?: number; - lifecycleTransition: string; - name: string; - notificationMetadata?: string; - notificationTargetArn?: string; - roleArn?: string; - }[]>; - readonly launchConfiguration: fabric.Computed; - readonly loadBalancers: fabric.Computed; - readonly maxSize: fabric.Computed; - readonly metricsGranularity?: fabric.Computed; - readonly minElbCapacity?: fabric.Computed; - readonly minSize: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly placementGroup?: fabric.Computed; - readonly protectFromScaleIn?: fabric.Computed; - readonly suspendedProcesses?: fabric.Computed; - readonly tag?: fabric.Computed<{ - key: string; - propagateAtLaunch: boolean; - value: string; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }[]>; - readonly targetGroupArns: fabric.Computed; - readonly terminationPolicies?: fabric.Computed; - readonly vpcZoneIdentifier: fabric.Computed; - readonly waitForCapacityTimeout?: fabric.Computed; - readonly waitForElbCapacity?: fabric.Computed; - constructor(urnName: string, args: GroupArgs); -} -export interface GroupArgs { - readonly availabilityZones?: fabric.MaybeComputed>[]; - readonly defaultCooldown?: fabric.MaybeComputed; - readonly desiredCapacity?: fabric.MaybeComputed; - readonly enabledMetrics?: fabric.MaybeComputed>[]; - readonly forceDelete?: fabric.MaybeComputed; - readonly healthCheckGracePeriod?: fabric.MaybeComputed; - readonly healthCheckType?: fabric.MaybeComputed; - readonly initialLifecycleHook?: fabric.MaybeComputed<{ - defaultResult?: fabric.MaybeComputed; - heartbeatTimeout?: fabric.MaybeComputed; - lifecycleTransition: fabric.MaybeComputed; - name: fabric.MaybeComputed; - notificationMetadata?: fabric.MaybeComputed; - notificationTargetArn?: fabric.MaybeComputed; - roleArn?: fabric.MaybeComputed; - }>[]; - readonly launchConfiguration: fabric.MaybeComputed; - readonly loadBalancers?: fabric.MaybeComputed>[]; - readonly maxSize: fabric.MaybeComputed; - readonly metricsGranularity?: fabric.MaybeComputed; - readonly minElbCapacity?: fabric.MaybeComputed; - readonly minSize: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly placementGroup?: fabric.MaybeComputed; - readonly protectFromScaleIn?: fabric.MaybeComputed; - readonly suspendedProcesses?: fabric.MaybeComputed>[]; - readonly tag?: fabric.MaybeComputed<{ - key: fabric.MaybeComputed; - propagateAtLaunch: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed>[]; - readonly targetGroupArns?: fabric.MaybeComputed>[]; - readonly terminationPolicies?: fabric.MaybeComputed>[]; - readonly vpcZoneIdentifier?: fabric.MaybeComputed>[]; - readonly waitForCapacityTimeout?: fabric.MaybeComputed; - readonly waitForElbCapacity?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/autoscaling/lifecycleHook.d.ts b/_typescript_docs/pulumi-aws/autoscaling/lifecycleHook.d.ts deleted file mode 100644 index 19fc90c23b5a..000000000000 --- a/_typescript_docs/pulumi-aws/autoscaling/lifecycleHook.d.ts +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: autoscaling/lifecycleHook.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LifecycleHook extends fabric.Resource { - readonly autoscalingGroupName: fabric.Computed; - readonly defaultResult: fabric.Computed; - readonly heartbeatTimeout?: fabric.Computed; - readonly lifecycleTransition: fabric.Computed; - readonly name: fabric.Computed; - readonly notificationMetadata?: fabric.Computed; - readonly notificationTargetArn?: fabric.Computed; - readonly roleArn?: fabric.Computed; - constructor(urnName: string, args: LifecycleHookArgs); -} -export interface LifecycleHookArgs { - readonly autoscalingGroupName: fabric.MaybeComputed; - readonly defaultResult?: fabric.MaybeComputed; - readonly heartbeatTimeout?: fabric.MaybeComputed; - readonly lifecycleTransition: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly notificationMetadata?: fabric.MaybeComputed; - readonly notificationTargetArn?: fabric.MaybeComputed; - readonly roleArn?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/autoscaling/notification.d.ts b/_typescript_docs/pulumi-aws/autoscaling/notification.d.ts deleted file mode 100644 index 3a7ab6e7c0b6..000000000000 --- a/_typescript_docs/pulumi-aws/autoscaling/notification.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: autoscaling/notification.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Notification extends fabric.Resource { - readonly groupNames: fabric.Computed; - readonly notifications: fabric.Computed; - readonly topicArn: fabric.Computed; - constructor(urnName: string, args: NotificationArgs); -} -export interface NotificationArgs { - readonly groupNames: fabric.MaybeComputed>[]; - readonly notifications: fabric.MaybeComputed>[]; - readonly topicArn: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/autoscaling/policy.d.ts b/_typescript_docs/pulumi-aws/autoscaling/policy.d.ts deleted file mode 100644 index 0827aebeabb0..000000000000 --- a/_typescript_docs/pulumi-aws/autoscaling/policy.d.ts +++ /dev/null @@ -1,42 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: autoscaling/policy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Policy extends fabric.Resource { - readonly adjustmentType: fabric.Computed; - readonly arn: fabric.Computed; - readonly autoscalingGroupName: fabric.Computed; - readonly cooldown?: fabric.Computed; - readonly estimatedInstanceWarmup?: fabric.Computed; - readonly metricAggregationType: fabric.Computed; - readonly minAdjustmentMagnitude?: fabric.Computed; - readonly minAdjustmentStep?: fabric.Computed; - readonly name: fabric.Computed; - readonly policyType?: fabric.Computed; - readonly scalingAdjustment?: fabric.Computed; - readonly stepAdjustment?: fabric.Computed<{ - metricIntervalLowerBound?: string; - metricIntervalUpperBound?: string; - scalingAdjustment: number; - }[]>; - constructor(urnName: string, args: PolicyArgs); -} -export interface PolicyArgs { - readonly adjustmentType: fabric.MaybeComputed; - readonly autoscalingGroupName: fabric.MaybeComputed; - readonly cooldown?: fabric.MaybeComputed; - readonly estimatedInstanceWarmup?: fabric.MaybeComputed; - readonly metricAggregationType?: fabric.MaybeComputed; - readonly minAdjustmentMagnitude?: fabric.MaybeComputed; - readonly minAdjustmentStep?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly policyType?: fabric.MaybeComputed; - readonly scalingAdjustment?: fabric.MaybeComputed; - readonly stepAdjustment?: fabric.MaybeComputed<{ - metricIntervalLowerBound?: fabric.MaybeComputed; - metricIntervalUpperBound?: fabric.MaybeComputed; - scalingAdjustment: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/autoscaling/schedule.d.ts b/_typescript_docs/pulumi-aws/autoscaling/schedule.d.ts deleted file mode 100644 index 0c09625cca59..000000000000 --- a/_typescript_docs/pulumi-aws/autoscaling/schedule.d.ts +++ /dev/null @@ -1,28 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: autoscaling/schedule.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Schedule extends fabric.Resource { - readonly arn: fabric.Computed; - readonly autoscalingGroupName: fabric.Computed; - readonly desiredCapacity: fabric.Computed; - readonly endTime: fabric.Computed; - readonly maxSize: fabric.Computed; - readonly minSize: fabric.Computed; - readonly recurrence: fabric.Computed; - readonly scheduledActionName: fabric.Computed; - readonly startTime: fabric.Computed; - constructor(urnName: string, args: ScheduleArgs); -} -export interface ScheduleArgs { - readonly autoscalingGroupName: fabric.MaybeComputed; - readonly desiredCapacity?: fabric.MaybeComputed; - readonly endTime?: fabric.MaybeComputed; - readonly maxSize?: fabric.MaybeComputed; - readonly minSize?: fabric.MaybeComputed; - readonly recurrence?: fabric.MaybeComputed; - readonly scheduledActionName: fabric.MaybeComputed; - readonly startTime?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cfg/deliveryChannel.d.ts b/_typescript_docs/pulumi-aws/cfg/deliveryChannel.d.ts deleted file mode 100644 index aebc7f9cdaf4..000000000000 --- a/_typescript_docs/pulumi-aws/cfg/deliveryChannel.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cfg/deliveryChannel.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DeliveryChannel extends fabric.Resource { - readonly name: fabric.Computed; - readonly s3BucketName: fabric.Computed; - readonly s3KeyPrefix?: fabric.Computed; - readonly snapshotDeliveryProperties?: fabric.Computed<{ - deliveryFrequency?: string; - }[]>; - readonly snsTopicArn?: fabric.Computed; - constructor(urnName: string, args: DeliveryChannelArgs); -} -export interface DeliveryChannelArgs { - readonly name?: fabric.MaybeComputed; - readonly s3BucketName: fabric.MaybeComputed; - readonly s3KeyPrefix?: fabric.MaybeComputed; - readonly snapshotDeliveryProperties?: fabric.MaybeComputed<{ - deliveryFrequency?: fabric.MaybeComputed; - }>[]; - readonly snsTopicArn?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cfg/recorder.d.ts b/_typescript_docs/pulumi-aws/cfg/recorder.d.ts deleted file mode 100644 index dc9ac2ef04a2..000000000000 --- a/_typescript_docs/pulumi-aws/cfg/recorder.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cfg/recorder.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Recorder extends fabric.Resource { - readonly name: fabric.Computed; - readonly recordingGroup: fabric.Computed<{ - allSupported?: boolean; - includeGlobalResourceTypes?: boolean; - resourceTypes?: string[]; - }[]>; - readonly roleArn: fabric.Computed; - constructor(urnName: string, args: RecorderArgs); -} -export interface RecorderArgs { - readonly name?: fabric.MaybeComputed; - readonly recordingGroup?: fabric.MaybeComputed<{ - allSupported?: fabric.MaybeComputed; - includeGlobalResourceTypes?: fabric.MaybeComputed; - resourceTypes?: fabric.MaybeComputed>[]; - }>[]; - readonly roleArn: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cfg/recorderStatus.d.ts b/_typescript_docs/pulumi-aws/cfg/recorderStatus.d.ts deleted file mode 100644 index b4d103d9bec6..000000000000 --- a/_typescript_docs/pulumi-aws/cfg/recorderStatus.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cfg/recorderStatus.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class RecorderStatus extends fabric.Resource { - readonly isEnabled: fabric.Computed; - readonly name: fabric.Computed; - constructor(urnName: string, args: RecorderStatusArgs); -} -export interface RecorderStatusArgs { - readonly isEnabled: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cfg/rule.d.ts b/_typescript_docs/pulumi-aws/cfg/rule.d.ts deleted file mode 100644 index 3c634eccefdc..000000000000 --- a/_typescript_docs/pulumi-aws/cfg/rule.d.ts +++ /dev/null @@ -1,51 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cfg/rule.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Rule extends fabric.Resource { - readonly arn: fabric.Computed; - readonly description?: fabric.Computed; - readonly inputParameters?: fabric.Computed; - readonly maximumExecutionFrequency?: fabric.Computed; - readonly name: fabric.Computed; - readonly ruleId: fabric.Computed; - readonly scope?: fabric.Computed<{ - complianceResourceId?: string; - complianceResourceTypes?: string[]; - tagKey?: string; - tagValue?: string; - }[]>; - readonly source: fabric.Computed<{ - owner: string; - sourceDetail?: { - eventSource?: string; - maximumExecutionFrequency?: string; - messageType?: string; - }[]; - sourceIdentifier: string; - }[]>; - constructor(urnName: string, args: RuleArgs); -} -export interface RuleArgs { - readonly description?: fabric.MaybeComputed; - readonly inputParameters?: fabric.MaybeComputed; - readonly maximumExecutionFrequency?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly scope?: fabric.MaybeComputed<{ - complianceResourceId?: fabric.MaybeComputed; - complianceResourceTypes?: fabric.MaybeComputed>[]; - tagKey?: fabric.MaybeComputed; - tagValue?: fabric.MaybeComputed; - }>[]; - readonly source: fabric.MaybeComputed<{ - owner: fabric.MaybeComputed; - sourceDetail?: fabric.MaybeComputed<{ - eventSource?: fabric.MaybeComputed; - maximumExecutionFrequency?: fabric.MaybeComputed; - messageType?: fabric.MaybeComputed; - }>[]; - sourceIdentifier: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/cloudformation/stack.d.ts b/_typescript_docs/pulumi-aws/cloudformation/stack.d.ts deleted file mode 100644 index 9e69d2746150..000000000000 --- a/_typescript_docs/pulumi-aws/cloudformation/stack.d.ts +++ /dev/null @@ -1,48 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudformation/stack.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Stack extends fabric.Resource { - readonly capabilities?: fabric.Computed; - readonly disableRollback?: fabric.Computed; - readonly iamRoleArn?: fabric.Computed; - readonly name: fabric.Computed; - readonly notificationArns?: fabric.Computed; - readonly onFailure?: fabric.Computed; - readonly outputs: fabric.Computed<{ - [key: string]: any; - }>; - readonly parameters: fabric.Computed<{ - [key: string]: any; - }>; - readonly policyBody: fabric.Computed; - readonly policyUrl?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly templateBody: fabric.Computed; - readonly templateUrl?: fabric.Computed; - readonly timeoutInMinutes?: fabric.Computed; - constructor(urnName: string, args: StackArgs); -} -export interface StackArgs { - readonly capabilities?: fabric.MaybeComputed>[]; - readonly disableRollback?: fabric.MaybeComputed; - readonly iamRoleArn?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly notificationArns?: fabric.MaybeComputed>[]; - readonly onFailure?: fabric.MaybeComputed; - readonly parameters?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly policyBody?: fabric.MaybeComputed; - readonly policyUrl?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly templateBody?: fabric.MaybeComputed; - readonly templateUrl?: fabric.MaybeComputed; - readonly timeoutInMinutes?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cloudfront/distribution.d.ts b/_typescript_docs/pulumi-aws/cloudfront/distribution.d.ts deleted file mode 100644 index 927dbd17af56..000000000000 --- a/_typescript_docs/pulumi-aws/cloudfront/distribution.d.ts +++ /dev/null @@ -1,236 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudfront/distribution.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Distribution extends fabric.Resource { - readonly activeTrustedSigners: fabric.Computed<{ - [key: string]: any; - }>; - readonly aliases?: fabric.Computed; - readonly arn: fabric.Computed; - readonly cacheBehavior?: fabric.Computed<{ - allowedMethods: string[]; - cachedMethods: string[]; - compress?: boolean; - defaultTtl: number; - forwardedValues: { - cookies: { - forward: string; - whitelistedNames?: string[]; - }[]; - headers?: string[]; - queryString: boolean; - queryStringCacheKeys?: string[]; - }[]; - lambdaFunctionAssociation?: { - eventType: string; - lambdaArn: string; - }[]; - maxTtl: number; - minTtl: number; - pathPattern: string; - smoothStreaming?: boolean; - targetOriginId: string; - trustedSigners?: string[]; - viewerProtocolPolicy: string; - }[]>; - readonly callerReference: fabric.Computed; - readonly comment?: fabric.Computed; - readonly customErrorResponse?: fabric.Computed<{ - errorCachingMinTtl?: number; - errorCode: number; - responseCode?: number; - responsePagePath?: string; - }[]>; - readonly defaultCacheBehavior: fabric.Computed<{ - allowedMethods: string[]; - cachedMethods: string[]; - compress?: boolean; - defaultTtl: number; - forwardedValues: { - cookies: { - forward: string; - whitelistedNames?: string[]; - }[]; - headers?: string[]; - queryString: boolean; - queryStringCacheKeys?: string[]; - }[]; - lambdaFunctionAssociation?: { - eventType: string; - lambdaArn: string; - }[]; - maxTtl: number; - minTtl: number; - smoothStreaming?: boolean; - targetOriginId: string; - trustedSigners?: string[]; - viewerProtocolPolicy: string; - }[]>; - readonly defaultRootObject?: fabric.Computed; - readonly domainName: fabric.Computed; - readonly enabled: fabric.Computed; - readonly etag: fabric.Computed; - readonly hostedZoneId: fabric.Computed; - readonly httpVersion?: fabric.Computed; - readonly inProgressValidationBatches: fabric.Computed; - readonly isIpv6Enabled?: fabric.Computed; - readonly lastModifiedTime: fabric.Computed; - readonly loggingConfig?: fabric.Computed<{ - bucket: string; - includeCookies?: boolean; - prefix?: string; - }[]>; - readonly origin: fabric.Computed<{ - customHeader?: { - name: string; - value: string; - }[]; - customOriginConfig?: { - httpPort: number; - httpsPort: number; - originKeepaliveTimeout?: number; - originProtocolPolicy: string; - originReadTimeout?: number; - originSslProtocols: string[]; - }[]; - domainName: string; - originId: string; - originPath?: string; - s3OriginConfig?: { - originAccessIdentity: string; - }[]; - }[]>; - readonly priceClass?: fabric.Computed; - readonly restrictions: fabric.Computed<{ - geoRestriction: { - locations?: string[]; - restrictionType: string; - }[]; - }[]>; - readonly retainOnDelete?: fabric.Computed; - readonly status: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly viewerCertificate: fabric.Computed<{ - acmCertificateArn?: string; - cloudfrontDefaultCertificate?: boolean; - iamCertificateId?: string; - minimumProtocolVersion?: string; - sslSupportMethod?: string; - }[]>; - readonly webAclId?: fabric.Computed; - constructor(urnName: string, args: DistributionArgs); -} -export interface DistributionArgs { - readonly aliases?: fabric.MaybeComputed>[]; - readonly cacheBehavior?: fabric.MaybeComputed<{ - allowedMethods: fabric.MaybeComputed>[]; - cachedMethods: fabric.MaybeComputed>[]; - compress?: fabric.MaybeComputed; - defaultTtl: fabric.MaybeComputed; - forwardedValues: fabric.MaybeComputed<{ - cookies: fabric.MaybeComputed<{ - forward: fabric.MaybeComputed; - whitelistedNames?: fabric.MaybeComputed>[]; - }>[]; - headers?: fabric.MaybeComputed>[]; - queryString: fabric.MaybeComputed; - queryStringCacheKeys?: fabric.MaybeComputed>[]; - }>[]; - lambdaFunctionAssociation?: fabric.MaybeComputed<{ - eventType: fabric.MaybeComputed; - lambdaArn: fabric.MaybeComputed; - }>[]; - maxTtl: fabric.MaybeComputed; - minTtl: fabric.MaybeComputed; - pathPattern: fabric.MaybeComputed; - smoothStreaming?: fabric.MaybeComputed; - targetOriginId: fabric.MaybeComputed; - trustedSigners?: fabric.MaybeComputed>[]; - viewerProtocolPolicy: fabric.MaybeComputed; - }>[]; - readonly comment?: fabric.MaybeComputed; - readonly customErrorResponse?: fabric.MaybeComputed<{ - errorCachingMinTtl?: fabric.MaybeComputed; - errorCode: fabric.MaybeComputed; - responseCode?: fabric.MaybeComputed; - responsePagePath?: fabric.MaybeComputed; - }>[]; - readonly defaultCacheBehavior: fabric.MaybeComputed<{ - allowedMethods: fabric.MaybeComputed>[]; - cachedMethods: fabric.MaybeComputed>[]; - compress?: fabric.MaybeComputed; - defaultTtl: fabric.MaybeComputed; - forwardedValues: fabric.MaybeComputed<{ - cookies: fabric.MaybeComputed<{ - forward: fabric.MaybeComputed; - whitelistedNames?: fabric.MaybeComputed>[]; - }>[]; - headers?: fabric.MaybeComputed>[]; - queryString: fabric.MaybeComputed; - queryStringCacheKeys?: fabric.MaybeComputed>[]; - }>[]; - lambdaFunctionAssociation?: fabric.MaybeComputed<{ - eventType: fabric.MaybeComputed; - lambdaArn: fabric.MaybeComputed; - }>[]; - maxTtl: fabric.MaybeComputed; - minTtl: fabric.MaybeComputed; - smoothStreaming?: fabric.MaybeComputed; - targetOriginId: fabric.MaybeComputed; - trustedSigners?: fabric.MaybeComputed>[]; - viewerProtocolPolicy: fabric.MaybeComputed; - }>[]; - readonly defaultRootObject?: fabric.MaybeComputed; - readonly enabled: fabric.MaybeComputed; - readonly httpVersion?: fabric.MaybeComputed; - readonly isIpv6Enabled?: fabric.MaybeComputed; - readonly loggingConfig?: fabric.MaybeComputed<{ - bucket: fabric.MaybeComputed; - includeCookies?: fabric.MaybeComputed; - prefix?: fabric.MaybeComputed; - }>[]; - readonly origin: fabric.MaybeComputed<{ - customHeader?: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - customOriginConfig?: fabric.MaybeComputed<{ - httpPort: fabric.MaybeComputed; - httpsPort: fabric.MaybeComputed; - originKeepaliveTimeout?: fabric.MaybeComputed; - originProtocolPolicy: fabric.MaybeComputed; - originReadTimeout?: fabric.MaybeComputed; - originSslProtocols: fabric.MaybeComputed>[]; - }>[]; - domainName: fabric.MaybeComputed; - originId: fabric.MaybeComputed; - originPath?: fabric.MaybeComputed; - s3OriginConfig?: fabric.MaybeComputed<{ - originAccessIdentity: fabric.MaybeComputed; - }>[]; - }>[]; - readonly priceClass?: fabric.MaybeComputed; - readonly restrictions: fabric.MaybeComputed<{ - geoRestriction: fabric.MaybeComputed<{ - locations?: fabric.MaybeComputed>[]; - restrictionType: fabric.MaybeComputed; - }>[]; - }>[]; - readonly retainOnDelete?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly viewerCertificate: fabric.MaybeComputed<{ - acmCertificateArn?: fabric.MaybeComputed; - cloudfrontDefaultCertificate?: fabric.MaybeComputed; - iamCertificateId?: fabric.MaybeComputed; - minimumProtocolVersion?: fabric.MaybeComputed; - sslSupportMethod?: fabric.MaybeComputed; - }>[]; - readonly webAclId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cloudfront/originAccessIdentity.d.ts b/_typescript_docs/pulumi-aws/cloudfront/originAccessIdentity.d.ts deleted file mode 100644 index a32d00245908..000000000000 --- a/_typescript_docs/pulumi-aws/cloudfront/originAccessIdentity.d.ts +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudfront/originAccessIdentity.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class OriginAccessIdentity extends fabric.Resource { - readonly callerReference: fabric.Computed; - readonly cloudfrontAccessIdentityPath: fabric.Computed; - readonly comment?: fabric.Computed; - readonly etag: fabric.Computed; - readonly iamArn: fabric.Computed; - readonly s3CanonicalUserId: fabric.Computed; - constructor(urnName: string, args: OriginAccessIdentityArgs); -} -export interface OriginAccessIdentityArgs { - readonly comment?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cloudtrail/trail.d.ts b/_typescript_docs/pulumi-aws/cloudtrail/trail.d.ts deleted file mode 100644 index 17dc53c1ca49..000000000000 --- a/_typescript_docs/pulumi-aws/cloudtrail/trail.d.ts +++ /dev/null @@ -1,41 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudtrail/trail.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Trail extends fabric.Resource { - readonly arn: fabric.Computed; - readonly cloudWatchLogsGroupArn?: fabric.Computed; - readonly cloudWatchLogsRoleArn?: fabric.Computed; - readonly enableLogFileValidation?: fabric.Computed; - readonly enableLogging?: fabric.Computed; - readonly homeRegion: fabric.Computed; - readonly includeGlobalServiceEvents?: fabric.Computed; - readonly isMultiRegionTrail?: fabric.Computed; - readonly kmsKeyId?: fabric.Computed; - readonly name: fabric.Computed; - readonly s3BucketName: fabric.Computed; - readonly s3KeyPrefix?: fabric.Computed; - readonly snsTopicName?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: TrailArgs); -} -export interface TrailArgs { - readonly cloudWatchLogsGroupArn?: fabric.MaybeComputed; - readonly cloudWatchLogsRoleArn?: fabric.MaybeComputed; - readonly enableLogFileValidation?: fabric.MaybeComputed; - readonly enableLogging?: fabric.MaybeComputed; - readonly includeGlobalServiceEvents?: fabric.MaybeComputed; - readonly isMultiRegionTrail?: fabric.MaybeComputed; - readonly kmsKeyId?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly s3BucketName: fabric.MaybeComputed; - readonly s3KeyPrefix?: fabric.MaybeComputed; - readonly snsTopicName?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/cloudwatch/eventRule.d.ts b/_typescript_docs/pulumi-aws/cloudwatch/eventRule.d.ts deleted file mode 100644 index b90a4d91a8bb..000000000000 --- a/_typescript_docs/pulumi-aws/cloudwatch/eventRule.d.ts +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudwatch/eventRule.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class EventRule extends fabric.Resource { - readonly arn: fabric.Computed; - readonly description?: fabric.Computed; - readonly eventPattern?: fabric.Computed; - readonly isEnabled?: fabric.Computed; - readonly name: fabric.Computed; - readonly roleArn?: fabric.Computed; - readonly scheduleExpression?: fabric.Computed; - constructor(urnName: string, args: EventRuleArgs); -} -export interface EventRuleArgs { - readonly description?: fabric.MaybeComputed; - readonly eventPattern?: fabric.MaybeComputed; - readonly isEnabled?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly roleArn?: fabric.MaybeComputed; - readonly scheduleExpression?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cloudwatch/eventTarget.d.ts b/_typescript_docs/pulumi-aws/cloudwatch/eventTarget.d.ts deleted file mode 100644 index 41ebc24dba85..000000000000 --- a/_typescript_docs/pulumi-aws/cloudwatch/eventTarget.d.ts +++ /dev/null @@ -1,39 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudwatch/eventTarget.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class EventTarget extends fabric.Resource { - readonly arn: fabric.Computed; - readonly ecsTarget?: fabric.Computed<{ - taskCount?: number; - taskDefinitionArn: string; - }[]>; - readonly input?: fabric.Computed; - readonly inputPath?: fabric.Computed; - readonly roleArn?: fabric.Computed; - readonly rule: fabric.Computed; - readonly runCommandTargets?: fabric.Computed<{ - key: string; - values: string[]; - }[]>; - readonly targetId: fabric.Computed; - constructor(urnName: string, args: EventTargetArgs); -} -export interface EventTargetArgs { - readonly arn: fabric.MaybeComputed; - readonly ecsTarget?: fabric.MaybeComputed<{ - taskCount?: fabric.MaybeComputed; - taskDefinitionArn: fabric.MaybeComputed; - }>[]; - readonly input?: fabric.MaybeComputed; - readonly inputPath?: fabric.MaybeComputed; - readonly roleArn?: fabric.MaybeComputed; - readonly rule: fabric.MaybeComputed; - readonly runCommandTargets?: fabric.MaybeComputed<{ - key: fabric.MaybeComputed; - values: fabric.MaybeComputed>[]; - }>[]; - readonly targetId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cloudwatch/logDestination.d.ts b/_typescript_docs/pulumi-aws/cloudwatch/logDestination.d.ts deleted file mode 100644 index 38689577fdb6..000000000000 --- a/_typescript_docs/pulumi-aws/cloudwatch/logDestination.d.ts +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudwatch/logDestination.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LogDestination extends fabric.Resource { - readonly arn: fabric.Computed; - readonly name: fabric.Computed; - readonly roleArn: fabric.Computed; - readonly targetArn: fabric.Computed; - constructor(urnName: string, args: LogDestinationArgs); -} -export interface LogDestinationArgs { - readonly name?: fabric.MaybeComputed; - readonly roleArn: fabric.MaybeComputed; - readonly targetArn: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cloudwatch/logDestinationPolicy.d.ts b/_typescript_docs/pulumi-aws/cloudwatch/logDestinationPolicy.d.ts deleted file mode 100644 index 252fa24ff583..000000000000 --- a/_typescript_docs/pulumi-aws/cloudwatch/logDestinationPolicy.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudwatch/logDestinationPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LogDestinationPolicy extends fabric.Resource { - readonly accessPolicy: fabric.Computed; - readonly destinationName: fabric.Computed; - constructor(urnName: string, args: LogDestinationPolicyArgs); -} -export interface LogDestinationPolicyArgs { - readonly accessPolicy: fabric.MaybeComputed; - readonly destinationName: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cloudwatch/logGroup.d.ts b/_typescript_docs/pulumi-aws/cloudwatch/logGroup.d.ts deleted file mode 100644 index e04821d3ac33..000000000000 --- a/_typescript_docs/pulumi-aws/cloudwatch/logGroup.d.ts +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudwatch/logGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LogGroup extends fabric.Resource { - readonly arn: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly retentionInDays?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: LogGroupArgs); -} -export interface LogGroupArgs { - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly retentionInDays?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/cloudwatch/logMetricFilter.d.ts b/_typescript_docs/pulumi-aws/cloudwatch/logMetricFilter.d.ts deleted file mode 100644 index 7e8e50178353..000000000000 --- a/_typescript_docs/pulumi-aws/cloudwatch/logMetricFilter.d.ts +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudwatch/logMetricFilter.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LogMetricFilter extends fabric.Resource { - readonly logGroupName: fabric.Computed; - readonly metricTransformation: fabric.Computed<{ - name: string; - namespace: string; - value: string; - }[]>; - readonly name: fabric.Computed; - readonly pattern: fabric.Computed; - constructor(urnName: string, args: LogMetricFilterArgs); -} -export interface LogMetricFilterArgs { - readonly logGroupName: fabric.MaybeComputed; - readonly metricTransformation: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - namespace: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly pattern: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cloudwatch/logStream.d.ts b/_typescript_docs/pulumi-aws/cloudwatch/logStream.d.ts deleted file mode 100644 index a4fdd3afa639..000000000000 --- a/_typescript_docs/pulumi-aws/cloudwatch/logStream.d.ts +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudwatch/logStream.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LogStream extends fabric.Resource { - readonly arn: fabric.Computed; - readonly logGroupName: fabric.Computed; - readonly name: fabric.Computed; - constructor(urnName: string, args: LogStreamArgs); -} -export interface LogStreamArgs { - readonly logGroupName: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cloudwatch/logSubscriptionFilter.d.ts b/_typescript_docs/pulumi-aws/cloudwatch/logSubscriptionFilter.d.ts deleted file mode 100644 index e1380cfa83ae..000000000000 --- a/_typescript_docs/pulumi-aws/cloudwatch/logSubscriptionFilter.d.ts +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudwatch/logSubscriptionFilter.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { LogGroup } from "./logGroup"; -export declare class LogSubscriptionFilter extends fabric.Resource { - readonly destinationArn: fabric.Computed; - readonly filterPattern: fabric.Computed; - readonly logGroup: fabric.Computed; - readonly name: fabric.Computed; - readonly roleArn: fabric.Computed; - constructor(urnName: string, args: LogSubscriptionFilterArgs); -} -export interface LogSubscriptionFilterArgs { - readonly destinationArn: fabric.MaybeComputed; - readonly filterPattern: fabric.MaybeComputed; - readonly logGroup: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly roleArn?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/cloudwatch/metricAlarm.d.ts b/_typescript_docs/pulumi-aws/cloudwatch/metricAlarm.d.ts deleted file mode 100644 index 657607326c9a..000000000000 --- a/_typescript_docs/pulumi-aws/cloudwatch/metricAlarm.d.ts +++ /dev/null @@ -1,52 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cloudwatch/metricAlarm.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { Topic } from "../sns/topic"; -export declare class MetricAlarm extends fabric.Resource { - readonly actionsEnabled?: fabric.Computed; - readonly alarmActions?: fabric.Computed; - readonly alarmDescription?: fabric.Computed; - readonly name: fabric.Computed; - readonly comparisonOperator: fabric.Computed; - readonly dimensions?: fabric.Computed<{ - [key: string]: any; - }>; - readonly evaluateLowSampleCountPercentiles: fabric.Computed; - readonly evaluationPeriods: fabric.Computed; - readonly extendedStatistic?: fabric.Computed; - readonly insufficientDataActions?: fabric.Computed; - readonly metricName: fabric.Computed; - readonly namespace: fabric.Computed; - readonly okActions?: fabric.Computed; - readonly period: fabric.Computed; - readonly statistic?: fabric.Computed; - readonly threshold: fabric.Computed; - readonly treatMissingData?: fabric.Computed; - readonly unit?: fabric.Computed; - constructor(urnName: string, args: MetricAlarmArgs); -} -export interface MetricAlarmArgs { - readonly actionsEnabled?: fabric.MaybeComputed; - readonly alarmActions?: fabric.MaybeComputed>[]; - readonly alarmDescription?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly comparisonOperator: fabric.MaybeComputed; - readonly dimensions?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly evaluateLowSampleCountPercentiles?: fabric.MaybeComputed; - readonly evaluationPeriods: fabric.MaybeComputed; - readonly extendedStatistic?: fabric.MaybeComputed; - readonly insufficientDataActions?: fabric.MaybeComputed>[]; - readonly metricName: fabric.MaybeComputed; - readonly namespace: fabric.MaybeComputed; - readonly okActions?: fabric.MaybeComputed>[]; - readonly period: fabric.MaybeComputed; - readonly statistic?: fabric.MaybeComputed; - readonly threshold: fabric.MaybeComputed; - readonly treatMissingData?: fabric.MaybeComputed; - readonly unit?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/codebuild/project.d.ts b/_typescript_docs/pulumi-aws/codebuild/project.d.ts deleted file mode 100644 index c27bf5b1a4e4..000000000000 --- a/_typescript_docs/pulumi-aws/codebuild/project.d.ts +++ /dev/null @@ -1,81 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: codebuild/project.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Project extends fabric.Resource { - readonly artifacts: fabric.Computed<{ - location?: string; - name?: string; - namespaceType?: string; - packaging?: string; - path?: string; - type: string; - }[]>; - readonly buildTimeout?: fabric.Computed; - readonly description: fabric.Computed; - readonly encryptionKey: fabric.Computed; - readonly environment: fabric.Computed<{ - computeType: string; - environmentVariable: { - name: string; - value: string; - }[]; - image: string; - privilegedMode?: boolean; - type: string; - }[]>; - readonly name: fabric.Computed; - readonly serviceRole: fabric.Computed; - readonly source: fabric.Computed<{ - auth?: { - resource?: string; - type: string; - }[]; - buildspec?: string; - location?: string; - type: string; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: ProjectArgs); -} -export interface ProjectArgs { - readonly artifacts: fabric.MaybeComputed<{ - location?: fabric.MaybeComputed; - name?: fabric.MaybeComputed; - namespaceType?: fabric.MaybeComputed; - packaging?: fabric.MaybeComputed; - path?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly buildTimeout?: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly encryptionKey?: fabric.MaybeComputed; - readonly environment: fabric.MaybeComputed<{ - computeType: fabric.MaybeComputed; - environmentVariable?: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - image: fabric.MaybeComputed; - privilegedMode?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly serviceRole?: fabric.MaybeComputed; - readonly source: fabric.MaybeComputed<{ - auth?: fabric.MaybeComputed<{ - resource?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - buildspec?: fabric.MaybeComputed; - location?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/codecommit/repository.d.ts b/_typescript_docs/pulumi-aws/codecommit/repository.d.ts deleted file mode 100644 index 99ea22d47b99..000000000000 --- a/_typescript_docs/pulumi-aws/codecommit/repository.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: codecommit/repository.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Repository extends fabric.Resource { - readonly arn: fabric.Computed; - readonly cloneUrlHttp: fabric.Computed; - readonly cloneUrlSsh: fabric.Computed; - readonly defaultBranch?: fabric.Computed; - readonly description?: fabric.Computed; - readonly repositoryId: fabric.Computed; - readonly repositoryName: fabric.Computed; - constructor(urnName: string, args: RepositoryArgs); -} -export interface RepositoryArgs { - readonly defaultBranch?: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly repositoryName: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/codecommit/trigger.d.ts b/_typescript_docs/pulumi-aws/codecommit/trigger.d.ts deleted file mode 100644 index d618ae844397..000000000000 --- a/_typescript_docs/pulumi-aws/codecommit/trigger.d.ts +++ /dev/null @@ -1,28 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: codecommit/trigger.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Trigger extends fabric.Resource { - readonly configurationId: fabric.Computed; - readonly repositoryName: fabric.Computed; - readonly trigger: fabric.Computed<{ - branches?: string[]; - customData?: string; - destinationArn: string; - events: string[]; - name: string; - }[]>; - constructor(urnName: string, args: TriggerArgs); -} -export interface TriggerArgs { - readonly repositoryName: fabric.MaybeComputed; - readonly trigger: fabric.MaybeComputed<{ - branches?: fabric.MaybeComputed>[]; - customData?: fabric.MaybeComputed; - destinationArn: fabric.MaybeComputed; - events: fabric.MaybeComputed>[]; - name: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/codedeploy/application.d.ts b/_typescript_docs/pulumi-aws/codedeploy/application.d.ts deleted file mode 100644 index 97207ca25ace..000000000000 --- a/_typescript_docs/pulumi-aws/codedeploy/application.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: codedeploy/application.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Application extends fabric.Resource { - readonly name: fabric.Computed; - readonly uniqueId: fabric.Computed; - constructor(urnName: string, args: ApplicationArgs); -} -export interface ApplicationArgs { - readonly name?: fabric.MaybeComputed; - readonly uniqueId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/codedeploy/deploymentConfig.d.ts b/_typescript_docs/pulumi-aws/codedeploy/deploymentConfig.d.ts deleted file mode 100644 index 1851b08c1870..000000000000 --- a/_typescript_docs/pulumi-aws/codedeploy/deploymentConfig.d.ts +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: codedeploy/deploymentConfig.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DeploymentConfig extends fabric.Resource { - readonly deploymentConfigId: fabric.Computed; - readonly deploymentConfigName: fabric.Computed; - readonly minimumHealthyHosts: fabric.Computed<{ - type: string; - value?: number; - }[]>; - constructor(urnName: string, args: DeploymentConfigArgs); -} -export interface DeploymentConfigArgs { - readonly deploymentConfigName: fabric.MaybeComputed; - readonly minimumHealthyHosts: fabric.MaybeComputed<{ - type: fabric.MaybeComputed; - value?: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/codedeploy/deploymentGroup.d.ts b/_typescript_docs/pulumi-aws/codedeploy/deploymentGroup.d.ts deleted file mode 100644 index 30fd25b54598..000000000000 --- a/_typescript_docs/pulumi-aws/codedeploy/deploymentGroup.d.ts +++ /dev/null @@ -1,69 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: codedeploy/deploymentGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DeploymentGroup extends fabric.Resource { - readonly alarmConfiguration?: fabric.Computed<{ - alarms?: string[]; - enabled?: boolean; - ignorePollAlarmFailure?: boolean; - }[]>; - readonly appName: fabric.Computed; - readonly autoRollbackConfiguration?: fabric.Computed<{ - enabled?: boolean; - events?: string[]; - }[]>; - readonly autoscalingGroups?: fabric.Computed; - readonly deploymentConfigName?: fabric.Computed; - readonly deploymentGroupName: fabric.Computed; - readonly ec2TagFilter?: fabric.Computed<{ - key?: string; - type?: string; - value?: string; - }[]>; - readonly onPremisesInstanceTagFilter?: fabric.Computed<{ - key?: string; - type?: string; - value?: string; - }[]>; - readonly serviceRoleArn: fabric.Computed; - readonly triggerConfiguration?: fabric.Computed<{ - triggerEvents: string[]; - triggerName: string; - triggerTargetArn: string; - }[]>; - constructor(urnName: string, args: DeploymentGroupArgs); -} -export interface DeploymentGroupArgs { - readonly alarmConfiguration?: fabric.MaybeComputed<{ - alarms?: fabric.MaybeComputed>[]; - enabled?: fabric.MaybeComputed; - ignorePollAlarmFailure?: fabric.MaybeComputed; - }>[]; - readonly appName: fabric.MaybeComputed; - readonly autoRollbackConfiguration?: fabric.MaybeComputed<{ - enabled?: fabric.MaybeComputed; - events?: fabric.MaybeComputed>[]; - }>[]; - readonly autoscalingGroups?: fabric.MaybeComputed>[]; - readonly deploymentConfigName?: fabric.MaybeComputed; - readonly deploymentGroupName: fabric.MaybeComputed; - readonly ec2TagFilter?: fabric.MaybeComputed<{ - key?: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - value?: fabric.MaybeComputed; - }>[]; - readonly onPremisesInstanceTagFilter?: fabric.MaybeComputed<{ - key?: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - value?: fabric.MaybeComputed; - }>[]; - readonly serviceRoleArn: fabric.MaybeComputed; - readonly triggerConfiguration?: fabric.MaybeComputed<{ - triggerEvents: fabric.MaybeComputed>[]; - triggerName: fabric.MaybeComputed; - triggerTargetArn: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/codepipeline/pipeline.d.ts b/_typescript_docs/pulumi-aws/codepipeline/pipeline.d.ts deleted file mode 100644 index 04c050946d9a..000000000000 --- a/_typescript_docs/pulumi-aws/codepipeline/pipeline.d.ts +++ /dev/null @@ -1,65 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: codepipeline/pipeline.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Pipeline extends fabric.Resource { - readonly artifactStore: fabric.Computed<{ - encryptionKey?: { - id: string; - type: string; - }[]; - location: string; - type: string; - }[]>; - readonly name: fabric.Computed; - readonly roleArn: fabric.Computed; - readonly stage: fabric.Computed<{ - action: { - category: string; - configuration?: { - [key: string]: any; - }; - inputArtifacts?: string[]; - name: string; - outputArtifacts?: string[]; - owner: string; - provider: string; - roleArn?: string; - runOrder: number; - version: string; - }[]; - name: string; - }[]>; - constructor(urnName: string, args: PipelineArgs); -} -export interface PipelineArgs { - readonly artifactStore: fabric.MaybeComputed<{ - encryptionKey?: fabric.MaybeComputed<{ - id: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - location: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly roleArn: fabric.MaybeComputed; - readonly stage: fabric.MaybeComputed<{ - action: fabric.MaybeComputed<{ - category: fabric.MaybeComputed; - configuration?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - inputArtifacts?: fabric.MaybeComputed>[]; - name: fabric.MaybeComputed; - outputArtifacts?: fabric.MaybeComputed>[]; - owner: fabric.MaybeComputed; - provider: fabric.MaybeComputed; - roleArn?: fabric.MaybeComputed; - runOrder?: fabric.MaybeComputed; - version: fabric.MaybeComputed; - }>[]; - name: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/cognito/identityPool.d.ts b/_typescript_docs/pulumi-aws/cognito/identityPool.d.ts deleted file mode 100644 index 5d478f0f6c5c..000000000000 --- a/_typescript_docs/pulumi-aws/cognito/identityPool.d.ts +++ /dev/null @@ -1,37 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: cognito/identityPool.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class IdentityPool extends fabric.Resource { - readonly allowUnauthenticatedIdentities?: fabric.Computed; - readonly cognitoIdentityProviders?: fabric.Computed<{ - clientId?: string; - providerName?: string; - serverSideTokenCheck?: boolean; - }[]>; - readonly developerProviderName?: fabric.Computed; - readonly identityPoolName: fabric.Computed; - readonly openidConnectProviderArns?: fabric.Computed; - readonly samlProviderArns?: fabric.Computed; - readonly supportedLoginProviders?: fabric.Computed<{ - [key: string]: string; - }>; - constructor(urnName: string, args: IdentityPoolArgs); -} -export interface IdentityPoolArgs { - readonly allowUnauthenticatedIdentities?: fabric.MaybeComputed; - readonly cognitoIdentityProviders?: fabric.MaybeComputed<{ - clientId?: fabric.MaybeComputed; - providerName?: fabric.MaybeComputed; - serverSideTokenCheck?: fabric.MaybeComputed; - }>[]; - readonly developerProviderName?: fabric.MaybeComputed; - readonly identityPoolName: fabric.MaybeComputed; - readonly openidConnectProviderArns?: fabric.MaybeComputed>[]; - readonly samlProviderArns?: fabric.MaybeComputed>[]; - readonly supportedLoginProviders?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; -} diff --git a/_typescript_docs/pulumi-aws/config/require.d.ts b/_typescript_docs/pulumi-aws/config/require.d.ts deleted file mode 100644 index 75f35940e13a..000000000000 --- a/_typescript_docs/pulumi-aws/config/require.d.ts +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: config/require.d.ts ---- -import { Region } from "../region"; -export declare function requireRegion(): Region; diff --git a/_typescript_docs/pulumi-aws/config/vars.d.ts b/_typescript_docs/pulumi-aws/config/vars.d.ts deleted file mode 100644 index 184c8c27affd..000000000000 --- a/_typescript_docs/pulumi-aws/config/vars.d.ts +++ /dev/null @@ -1,47 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: config/vars.d.ts ---- -import { Region } from "../region"; -export declare let accessKey: string | undefined; -export declare let allowedAccountIds: string[] | undefined; -export declare let assumeRole: { - externalId?: string; - policy?: string; - roleArn?: string; - sessionName?: string; -}[] | undefined; -export declare let dynamodbEndpoint: string | undefined; -export declare let endpoints: { - cloudformation?: string; - cloudwatch?: string; - cloudwatchevents?: string; - cloudwatchlogs?: string; - devicefarm?: string; - dynamodb?: string; - ec2?: string; - elb?: string; - iam?: string; - kinesis?: string; - kms?: string; - rds?: string; - s3?: string; - sns?: string; - sqs?: string; -}[] | undefined; -export declare let forbiddenAccountIds: string[] | undefined; -export declare let insecure: boolean | undefined; -export declare let kinesisEndpoint: string | undefined; -export declare let maxRetries: number | undefined; -export declare let profile: string | undefined; -export declare let region: Region; -export declare let s3ForcePathStyle: boolean | undefined; -export declare let secretKey: string | undefined; -export declare let sharedCredentialsFile: string | undefined; -export declare let skipCredentialsValidation: boolean | undefined; -export declare let skipGetEc2Platforms: boolean | undefined; -export declare let skipMetadataApiCheck: boolean | undefined; -export declare let skipRegionValidation: boolean | undefined; -export declare let skipRequestingAccountId: boolean | undefined; -export declare let token: string | undefined; diff --git a/_typescript_docs/pulumi-aws/devicefarm/project.d.ts b/_typescript_docs/pulumi-aws/devicefarm/project.d.ts deleted file mode 100644 index 59b073b77442..000000000000 --- a/_typescript_docs/pulumi-aws/devicefarm/project.d.ts +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: devicefarm/project.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Project extends fabric.Resource { - readonly arn: fabric.Computed; - readonly name: fabric.Computed; - constructor(urnName: string, args: ProjectArgs); -} -export interface ProjectArgs { - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/directoryservice/directory.d.ts b/_typescript_docs/pulumi-aws/directoryservice/directory.d.ts deleted file mode 100644 index 0618cc6b8dd4..000000000000 --- a/_typescript_docs/pulumi-aws/directoryservice/directory.d.ts +++ /dev/null @@ -1,49 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: directoryservice/directory.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Directory extends fabric.Resource { - readonly accessUrl: fabric.Computed; - readonly alias: fabric.Computed; - readonly connectSettings?: fabric.Computed<{ - customerDnsIps: string[]; - customerUsername: string; - subnetIds: string[]; - vpcId: string; - }[]>; - readonly description?: fabric.Computed; - readonly dnsIpAddresses: fabric.Computed; - readonly enableSso?: fabric.Computed; - readonly name: fabric.Computed; - readonly password: fabric.Computed; - readonly shortName: fabric.Computed; - readonly size?: fabric.Computed; - readonly type?: fabric.Computed; - readonly vpcSettings?: fabric.Computed<{ - subnetIds: string[]; - vpcId: string; - }[]>; - constructor(urnName: string, args: DirectoryArgs); -} -export interface DirectoryArgs { - readonly alias?: fabric.MaybeComputed; - readonly connectSettings?: fabric.MaybeComputed<{ - customerDnsIps: fabric.MaybeComputed>[]; - customerUsername: fabric.MaybeComputed; - subnetIds: fabric.MaybeComputed>[]; - vpcId: fabric.MaybeComputed; - }>[]; - readonly description?: fabric.MaybeComputed; - readonly enableSso?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly password: fabric.MaybeComputed; - readonly shortName?: fabric.MaybeComputed; - readonly size?: fabric.MaybeComputed; - readonly type?: fabric.MaybeComputed; - readonly vpcSettings?: fabric.MaybeComputed<{ - subnetIds: fabric.MaybeComputed>[]; - vpcId: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/dms/certificate.d.ts b/_typescript_docs/pulumi-aws/dms/certificate.d.ts deleted file mode 100644 index e2f7bf73ed10..000000000000 --- a/_typescript_docs/pulumi-aws/dms/certificate.d.ts +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: dms/certificate.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Certificate extends fabric.Resource { - readonly certificateArn: fabric.Computed; - readonly certificateId: fabric.Computed; - readonly certificatePem?: fabric.Computed; - readonly certificateWallet?: fabric.Computed; - constructor(urnName: string, args: CertificateArgs); -} -export interface CertificateArgs { - readonly certificateId: fabric.MaybeComputed; - readonly certificatePem?: fabric.MaybeComputed; - readonly certificateWallet?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/dms/endpoint.d.ts b/_typescript_docs/pulumi-aws/dms/endpoint.d.ts deleted file mode 100644 index 3a087c7ad6ac..000000000000 --- a/_typescript_docs/pulumi-aws/dms/endpoint.d.ts +++ /dev/null @@ -1,44 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: dms/endpoint.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Endpoint extends fabric.Resource { - readonly certificateArn: fabric.Computed; - readonly databaseName?: fabric.Computed; - readonly endpointArn: fabric.Computed; - readonly endpointId: fabric.Computed; - readonly endpointType: fabric.Computed; - readonly engineName: fabric.Computed; - readonly extraConnectionAttributes: fabric.Computed; - readonly kmsKeyArn: fabric.Computed; - readonly password?: fabric.Computed; - readonly port?: fabric.Computed; - readonly serverName?: fabric.Computed; - readonly serviceAccessRole?: fabric.Computed; - readonly sslMode: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly username?: fabric.Computed; - constructor(urnName: string, args: EndpointArgs); -} -export interface EndpointArgs { - readonly certificateArn?: fabric.MaybeComputed; - readonly databaseName?: fabric.MaybeComputed; - readonly endpointId: fabric.MaybeComputed; - readonly endpointType: fabric.MaybeComputed; - readonly engineName: fabric.MaybeComputed; - readonly extraConnectionAttributes?: fabric.MaybeComputed; - readonly kmsKeyArn?: fabric.MaybeComputed; - readonly password?: fabric.MaybeComputed; - readonly port?: fabric.MaybeComputed; - readonly serverName?: fabric.MaybeComputed; - readonly serviceAccessRole?: fabric.MaybeComputed; - readonly sslMode?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly username?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/dms/replicationInstance.d.ts b/_typescript_docs/pulumi-aws/dms/replicationInstance.d.ts deleted file mode 100644 index 7684d947adee..000000000000 --- a/_typescript_docs/pulumi-aws/dms/replicationInstance.d.ts +++ /dev/null @@ -1,46 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: dms/replicationInstance.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ReplicationInstance extends fabric.Resource { - readonly allocatedStorage: fabric.Computed; - readonly applyImmediately?: fabric.Computed; - readonly autoMinorVersionUpgrade: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly engineVersion: fabric.Computed; - readonly kmsKeyArn: fabric.Computed; - readonly multiAz: fabric.Computed; - readonly preferredMaintenanceWindow: fabric.Computed; - readonly publiclyAccessible: fabric.Computed; - readonly replicationInstanceArn: fabric.Computed; - readonly replicationInstanceClass: fabric.Computed; - readonly replicationInstanceId: fabric.Computed; - readonly replicationInstancePrivateIps: fabric.Computed; - readonly replicationInstancePublicIps: fabric.Computed; - readonly replicationSubnetGroupId: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcSecurityGroupIds: fabric.Computed; - constructor(urnName: string, args: ReplicationInstanceArgs); -} -export interface ReplicationInstanceArgs { - readonly allocatedStorage?: fabric.MaybeComputed; - readonly applyImmediately?: fabric.MaybeComputed; - readonly autoMinorVersionUpgrade?: fabric.MaybeComputed; - readonly availabilityZone?: fabric.MaybeComputed; - readonly engineVersion?: fabric.MaybeComputed; - readonly kmsKeyArn?: fabric.MaybeComputed; - readonly multiAz?: fabric.MaybeComputed; - readonly preferredMaintenanceWindow?: fabric.MaybeComputed; - readonly publiclyAccessible?: fabric.MaybeComputed; - readonly replicationInstanceClass: fabric.MaybeComputed; - readonly replicationInstanceId: fabric.MaybeComputed; - readonly replicationSubnetGroupId?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcSecurityGroupIds?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/dms/replicationSubnetGroup.d.ts b/_typescript_docs/pulumi-aws/dms/replicationSubnetGroup.d.ts deleted file mode 100644 index f15e79422b13..000000000000 --- a/_typescript_docs/pulumi-aws/dms/replicationSubnetGroup.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: dms/replicationSubnetGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ReplicationSubnetGroup extends fabric.Resource { - readonly replicationSubnetGroupArn: fabric.Computed; - readonly replicationSubnetGroupDescription: fabric.Computed; - readonly replicationSubnetGroupId: fabric.Computed; - readonly subnetIds: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: ReplicationSubnetGroupArgs); -} -export interface ReplicationSubnetGroupArgs { - readonly replicationSubnetGroupDescription: fabric.MaybeComputed; - readonly replicationSubnetGroupId: fabric.MaybeComputed; - readonly subnetIds: fabric.MaybeComputed>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/dms/replicationTask.d.ts b/_typescript_docs/pulumi-aws/dms/replicationTask.d.ts deleted file mode 100644 index 12b58d029bfd..000000000000 --- a/_typescript_docs/pulumi-aws/dms/replicationTask.d.ts +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: dms/replicationTask.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ReplicationTask extends fabric.Resource { - readonly cdcStartTime?: fabric.Computed; - readonly migrationType: fabric.Computed; - readonly replicationInstanceArn: fabric.Computed; - readonly replicationTaskArn: fabric.Computed; - readonly replicationTaskId: fabric.Computed; - readonly replicationTaskSettings?: fabric.Computed; - readonly sourceEndpointArn: fabric.Computed; - readonly tableMappings: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly targetEndpointArn: fabric.Computed; - constructor(urnName: string, args: ReplicationTaskArgs); -} -export interface ReplicationTaskArgs { - readonly cdcStartTime?: fabric.MaybeComputed; - readonly migrationType: fabric.MaybeComputed; - readonly replicationInstanceArn: fabric.MaybeComputed; - readonly replicationTaskId: fabric.MaybeComputed; - readonly replicationTaskSettings?: fabric.MaybeComputed; - readonly sourceEndpointArn: fabric.MaybeComputed; - readonly tableMappings: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly targetEndpointArn: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/dynamodb/table.d.ts b/_typescript_docs/pulumi-aws/dynamodb/table.d.ts deleted file mode 100644 index 766cce073c5b..000000000000 --- a/_typescript_docs/pulumi-aws/dynamodb/table.d.ts +++ /dev/null @@ -1,80 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: dynamodb/table.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Table extends fabric.Resource { - readonly arn: fabric.Computed; - readonly attribute: fabric.Computed<{ - name: string; - type: string; - }[]>; - readonly globalSecondaryIndex?: fabric.Computed<{ - hashKey: string; - name: string; - nonKeyAttributes?: string[]; - projectionType: string; - rangeKey?: string; - readCapacity: number; - writeCapacity: number; - }[]>; - readonly hashKey: fabric.Computed; - readonly localSecondaryIndex?: fabric.Computed<{ - name: string; - nonKeyAttributes?: string[]; - projectionType: string; - rangeKey: string; - }[]>; - readonly name: fabric.Computed; - readonly rangeKey?: fabric.Computed; - readonly readCapacity: fabric.Computed; - readonly streamArn: fabric.Computed; - readonly streamEnabled: fabric.Computed; - readonly streamLabel: fabric.Computed; - readonly streamViewType: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly ttl?: fabric.Computed<{ - attributeName: string; - enabled: boolean; - }[]>; - readonly writeCapacity: fabric.Computed; - constructor(urnName: string, args: TableArgs); -} -export interface TableArgs { - readonly attribute: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly globalSecondaryIndex?: fabric.MaybeComputed<{ - hashKey: fabric.MaybeComputed; - name: fabric.MaybeComputed; - nonKeyAttributes?: fabric.MaybeComputed>[]; - projectionType: fabric.MaybeComputed; - rangeKey?: fabric.MaybeComputed; - readCapacity: fabric.MaybeComputed; - writeCapacity: fabric.MaybeComputed; - }>[]; - readonly hashKey: fabric.MaybeComputed; - readonly localSecondaryIndex?: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - nonKeyAttributes?: fabric.MaybeComputed>[]; - projectionType: fabric.MaybeComputed; - rangeKey: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly rangeKey?: fabric.MaybeComputed; - readonly readCapacity: fabric.MaybeComputed; - readonly streamEnabled?: fabric.MaybeComputed; - readonly streamViewType?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly ttl?: fabric.MaybeComputed<{ - attributeName: fabric.MaybeComputed; - enabled: fabric.MaybeComputed; - }>[]; - readonly writeCapacity: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ebs/snapshot.d.ts b/_typescript_docs/pulumi-aws/ebs/snapshot.d.ts deleted file mode 100644 index 01f5b04b447c..000000000000 --- a/_typescript_docs/pulumi-aws/ebs/snapshot.d.ts +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ebs/snapshot.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Snapshot extends fabric.Resource { - readonly dataEncryptionKeyId: fabric.Computed; - readonly description?: fabric.Computed; - readonly encrypted: fabric.Computed; - readonly kmsKeyId: fabric.Computed; - readonly ownerAlias: fabric.Computed; - readonly ownerId: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly volumeId: fabric.Computed; - readonly volumeSize: fabric.Computed; - constructor(urnName: string, args: SnapshotArgs); -} -export interface SnapshotArgs { - readonly description?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly volumeId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ebs/volume.d.ts b/_typescript_docs/pulumi-aws/ebs/volume.d.ts deleted file mode 100644 index ebac9b69d2da..000000000000 --- a/_typescript_docs/pulumi-aws/ebs/volume.d.ts +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ebs/volume.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Volume extends fabric.Resource { - readonly availabilityZone: fabric.Computed; - readonly encrypted: fabric.Computed; - readonly iops: fabric.Computed; - readonly kmsKeyId: fabric.Computed; - readonly size: fabric.Computed; - readonly snapshotId: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly type: fabric.Computed; - constructor(urnName: string, args: VolumeArgs); -} -export interface VolumeArgs { - readonly availabilityZone: fabric.MaybeComputed; - readonly encrypted?: fabric.MaybeComputed; - readonly iops?: fabric.MaybeComputed; - readonly kmsKeyId?: fabric.MaybeComputed; - readonly size?: fabric.MaybeComputed; - readonly snapshotId?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly type?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/ami.d.ts b/_typescript_docs/pulumi-aws/ec2/ami.d.ts deleted file mode 100644 index 0545a05bf22f..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/ami.d.ts +++ /dev/null @@ -1,63 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/ami.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Ami extends fabric.Resource { - readonly architecture?: fabric.Computed; - readonly description?: fabric.Computed; - readonly ebsBlockDevice: fabric.Computed<{ - deleteOnTermination?: boolean; - deviceName: string; - encrypted?: boolean; - iops?: number; - snapshotId?: string; - volumeSize: number; - volumeType?: string; - }[]>; - readonly ephemeralBlockDevice: fabric.Computed<{ - deviceName: string; - virtualName: string; - }[]>; - readonly amiId: fabric.Computed; - readonly imageLocation: fabric.Computed; - readonly kernelId?: fabric.Computed; - readonly manageEbsSnapshots: fabric.Computed; - readonly name: fabric.Computed; - readonly ramdiskId?: fabric.Computed; - readonly rootDeviceName?: fabric.Computed; - readonly sriovNetSupport?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly virtualizationType?: fabric.Computed; - constructor(urnName: string, args: AmiArgs); -} -export interface AmiArgs { - readonly architecture?: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly ebsBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - deviceName: fabric.MaybeComputed; - encrypted?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - snapshotId?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly ephemeralBlockDevice?: fabric.MaybeComputed<{ - deviceName: fabric.MaybeComputed; - virtualName: fabric.MaybeComputed; - }>[]; - readonly imageLocation?: fabric.MaybeComputed; - readonly kernelId?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly ramdiskId?: fabric.MaybeComputed; - readonly rootDeviceName?: fabric.MaybeComputed; - readonly sriovNetSupport?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly virtualizationType?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/amiCopy.d.ts b/_typescript_docs/pulumi-aws/ec2/amiCopy.d.ts deleted file mode 100644 index 2165f895fe2d..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/amiCopy.d.ts +++ /dev/null @@ -1,64 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/amiCopy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class AmiCopy extends fabric.Resource { - readonly architecture: fabric.Computed; - readonly description?: fabric.Computed; - readonly ebsBlockDevice: fabric.Computed<{ - deleteOnTermination: boolean; - deviceName: string; - encrypted: boolean; - iops: number; - snapshotId: string; - volumeSize: number; - volumeType: string; - }[]>; - readonly encrypted?: fabric.Computed; - readonly ephemeralBlockDevice: fabric.Computed<{ - deviceName: string; - virtualName: string; - }[]>; - readonly amiId: fabric.Computed; - readonly imageLocation: fabric.Computed; - readonly kernelId: fabric.Computed; - readonly kmsKeyId: fabric.Computed; - readonly manageEbsSnapshots: fabric.Computed; - readonly name: fabric.Computed; - readonly ramdiskId: fabric.Computed; - readonly rootDeviceName: fabric.Computed; - readonly sourceAmiId: fabric.Computed; - readonly sourceAmiRegion: fabric.Computed; - readonly sriovNetSupport: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly virtualizationType: fabric.Computed; - constructor(urnName: string, args: AmiCopyArgs); -} -export interface AmiCopyArgs { - readonly description?: fabric.MaybeComputed; - readonly ebsBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - deviceName?: fabric.MaybeComputed; - encrypted?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - snapshotId?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly encrypted?: fabric.MaybeComputed; - readonly ephemeralBlockDevice?: fabric.MaybeComputed<{ - deviceName?: fabric.MaybeComputed; - virtualName?: fabric.MaybeComputed; - }>[]; - readonly kmsKeyId?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly sourceAmiId: fabric.MaybeComputed; - readonly sourceAmiRegion: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ec2/amiFromInstance.d.ts b/_typescript_docs/pulumi-aws/ec2/amiFromInstance.d.ts deleted file mode 100644 index 59be23b3ccff..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/amiFromInstance.d.ts +++ /dev/null @@ -1,60 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/amiFromInstance.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class AmiFromInstance extends fabric.Resource { - readonly architecture: fabric.Computed; - readonly description?: fabric.Computed; - readonly ebsBlockDevice: fabric.Computed<{ - deleteOnTermination: boolean; - deviceName: string; - encrypted: boolean; - iops: number; - snapshotId: string; - volumeSize: number; - volumeType: string; - }[]>; - readonly ephemeralBlockDevice: fabric.Computed<{ - deviceName: string; - virtualName: string; - }[]>; - readonly amiId: fabric.Computed; - readonly imageLocation: fabric.Computed; - readonly kernelId: fabric.Computed; - readonly manageEbsSnapshots: fabric.Computed; - readonly name: fabric.Computed; - readonly ramdiskId: fabric.Computed; - readonly rootDeviceName: fabric.Computed; - readonly snapshotWithoutReboot?: fabric.Computed; - readonly sourceInstanceId: fabric.Computed; - readonly sriovNetSupport: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly virtualizationType: fabric.Computed; - constructor(urnName: string, args: AmiFromInstanceArgs); -} -export interface AmiFromInstanceArgs { - readonly description?: fabric.MaybeComputed; - readonly ebsBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - deviceName?: fabric.MaybeComputed; - encrypted?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - snapshotId?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly ephemeralBlockDevice?: fabric.MaybeComputed<{ - deviceName?: fabric.MaybeComputed; - virtualName?: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly snapshotWithoutReboot?: fabric.MaybeComputed; - readonly sourceInstanceId: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ec2/amiLaunchPermission.d.ts b/_typescript_docs/pulumi-aws/ec2/amiLaunchPermission.d.ts deleted file mode 100644 index 1e3fbfc6483c..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/amiLaunchPermission.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/amiLaunchPermission.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class AmiLaunchPermission extends fabric.Resource { - readonly accountId: fabric.Computed; - readonly imageId: fabric.Computed; - constructor(urnName: string, args: AmiLaunchPermissionArgs); -} -export interface AmiLaunchPermissionArgs { - readonly accountId: fabric.MaybeComputed; - readonly imageId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/customerGateway.d.ts b/_typescript_docs/pulumi-aws/ec2/customerGateway.d.ts deleted file mode 100644 index a6fe6f0690fa..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/customerGateway.d.ts +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/customerGateway.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class CustomerGateway extends fabric.Resource { - readonly bgpAsn: fabric.Computed; - readonly ipAddress: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly type: fabric.Computed; - constructor(urnName: string, args: CustomerGatewayArgs); -} -export interface CustomerGatewayArgs { - readonly bgpAsn: fabric.MaybeComputed; - readonly ipAddress: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly type: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/defaultNetworkAcl.d.ts b/_typescript_docs/pulumi-aws/ec2/defaultNetworkAcl.d.ts deleted file mode 100644 index 2c0a14722c45..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/defaultNetworkAcl.d.ts +++ /dev/null @@ -1,66 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/defaultNetworkAcl.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DefaultNetworkAcl extends fabric.Resource { - readonly defaultNetworkAclId: fabric.Computed; - readonly egress?: fabric.Computed<{ - action: string; - cidrBlock?: string; - fromPort: number; - icmpCode?: number; - icmpType?: number; - ipv6CidrBlock?: string; - protocol: string; - ruleNo: number; - toPort: number; - }[]>; - readonly ingress?: fabric.Computed<{ - action: string; - cidrBlock?: string; - fromPort: number; - icmpCode?: number; - icmpType?: number; - ipv6CidrBlock?: string; - protocol: string; - ruleNo: number; - toPort: number; - }[]>; - readonly subnetIds?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: DefaultNetworkAclArgs); -} -export interface DefaultNetworkAclArgs { - readonly defaultNetworkAclId: fabric.MaybeComputed; - readonly egress?: fabric.MaybeComputed<{ - action: fabric.MaybeComputed; - cidrBlock?: fabric.MaybeComputed; - fromPort: fabric.MaybeComputed; - icmpCode?: fabric.MaybeComputed; - icmpType?: fabric.MaybeComputed; - ipv6CidrBlock?: fabric.MaybeComputed; - protocol: fabric.MaybeComputed; - ruleNo: fabric.MaybeComputed; - toPort: fabric.MaybeComputed; - }>[]; - readonly ingress?: fabric.MaybeComputed<{ - action: fabric.MaybeComputed; - cidrBlock?: fabric.MaybeComputed; - fromPort: fabric.MaybeComputed; - icmpCode?: fabric.MaybeComputed; - icmpType?: fabric.MaybeComputed; - ipv6CidrBlock?: fabric.MaybeComputed; - protocol: fabric.MaybeComputed; - ruleNo: fabric.MaybeComputed; - toPort: fabric.MaybeComputed; - }>[]; - readonly subnetIds?: fabric.MaybeComputed>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ec2/defaultRouteTable.d.ts b/_typescript_docs/pulumi-aws/ec2/defaultRouteTable.d.ts deleted file mode 100644 index ed6fb76efa56..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/defaultRouteTable.d.ts +++ /dev/null @@ -1,42 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/defaultRouteTable.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DefaultRouteTable extends fabric.Resource { - readonly defaultRouteTableId: fabric.Computed; - readonly propagatingVgws?: fabric.Computed; - readonly route: fabric.Computed<{ - cidrBlock?: string; - egressOnlyGatewayId?: string; - gatewayId?: string; - instanceId?: string; - ipv6CidrBlock?: string; - natGatewayId?: string; - networkInterfaceId?: string; - vpcPeeringConnectionId?: string; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: DefaultRouteTableArgs); -} -export interface DefaultRouteTableArgs { - readonly defaultRouteTableId: fabric.MaybeComputed; - readonly propagatingVgws?: fabric.MaybeComputed>[]; - readonly route?: fabric.MaybeComputed<{ - cidrBlock?: fabric.MaybeComputed; - egressOnlyGatewayId?: fabric.MaybeComputed; - gatewayId?: fabric.MaybeComputed; - instanceId?: fabric.MaybeComputed; - ipv6CidrBlock?: fabric.MaybeComputed; - natGatewayId?: fabric.MaybeComputed; - networkInterfaceId?: fabric.MaybeComputed; - vpcPeeringConnectionId?: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ec2/defaultSecurityGroup.d.ts b/_typescript_docs/pulumi-aws/ec2/defaultSecurityGroup.d.ts deleted file mode 100644 index a5cffcc7fa00..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/defaultSecurityGroup.d.ts +++ /dev/null @@ -1,59 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/defaultSecurityGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DefaultSecurityGroup extends fabric.Resource { - readonly egress?: fabric.Computed<{ - cidrBlocks?: string[]; - fromPort: number; - ipv6CidrBlocks?: string[]; - prefixListIds?: string[]; - protocol: string; - securityGroups?: string[]; - self?: boolean; - toPort: number; - }[]>; - readonly ingress?: fabric.Computed<{ - cidrBlocks?: string[]; - fromPort: number; - ipv6CidrBlocks?: string[]; - protocol: string; - securityGroups?: string[]; - self?: boolean; - toPort: number; - }[]>; - readonly name: fabric.Computed; - readonly ownerId: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: DefaultSecurityGroupArgs); -} -export interface DefaultSecurityGroupArgs { - readonly egress?: fabric.MaybeComputed<{ - cidrBlocks?: fabric.MaybeComputed>[]; - fromPort: fabric.MaybeComputed; - ipv6CidrBlocks?: fabric.MaybeComputed>[]; - prefixListIds?: fabric.MaybeComputed>[]; - protocol: fabric.MaybeComputed; - securityGroups?: fabric.MaybeComputed>[]; - self?: fabric.MaybeComputed; - toPort: fabric.MaybeComputed; - }>[]; - readonly ingress?: fabric.MaybeComputed<{ - cidrBlocks?: fabric.MaybeComputed>[]; - fromPort: fabric.MaybeComputed; - ipv6CidrBlocks?: fabric.MaybeComputed>[]; - protocol: fabric.MaybeComputed; - securityGroups?: fabric.MaybeComputed>[]; - self?: fabric.MaybeComputed; - toPort: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/defaultSubnet.d.ts b/_typescript_docs/pulumi-aws/ec2/defaultSubnet.d.ts deleted file mode 100644 index 81731184ac8c..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/defaultSubnet.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/defaultSubnet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DefaultSubnet extends fabric.Resource { - readonly assignIpv6AddressOnCreation: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly cidrBlock: fabric.Computed; - readonly ipv6CidrBlock: fabric.Computed; - readonly ipv6CidrBlockAssociationId: fabric.Computed; - readonly mapPublicIpOnLaunch: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: DefaultSubnetArgs); -} -export interface DefaultSubnetArgs { - readonly availabilityZone: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ec2/defaultVpc.d.ts b/_typescript_docs/pulumi-aws/ec2/defaultVpc.d.ts deleted file mode 100644 index 5dd89244ff59..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/defaultVpc.d.ts +++ /dev/null @@ -1,35 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/defaultVpc.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DefaultVpc extends fabric.Resource { - readonly assignGeneratedIpv6CidrBlock: fabric.Computed; - readonly cidrBlock: fabric.Computed; - readonly defaultNetworkAclId: fabric.Computed; - readonly defaultRouteTableId: fabric.Computed; - readonly defaultSecurityGroupId: fabric.Computed; - readonly dhcpOptionsId: fabric.Computed; - readonly enableClassiclink: fabric.Computed; - readonly enableClassiclinkDnsSupport: fabric.Computed; - readonly enableDnsHostnames: fabric.Computed; - readonly enableDnsSupport?: fabric.Computed; - readonly instanceTenancy: fabric.Computed; - readonly ipv6AssociationId: fabric.Computed; - readonly ipv6CidrBlock: fabric.Computed; - readonly mainRouteTableId: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: DefaultVpcArgs); -} -export interface DefaultVpcArgs { - readonly enableClassiclink?: fabric.MaybeComputed; - readonly enableClassiclinkDnsSupport?: fabric.MaybeComputed; - readonly enableDnsHostnames?: fabric.MaybeComputed; - readonly enableDnsSupport?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ec2/defaultVpcDhcpOptions.d.ts b/_typescript_docs/pulumi-aws/ec2/defaultVpcDhcpOptions.d.ts deleted file mode 100644 index 309c690ecd78..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/defaultVpcDhcpOptions.d.ts +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/defaultVpcDhcpOptions.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DefaultVpcDhcpOptions extends fabric.Resource { - readonly domainName: fabric.Computed; - readonly domainNameServers: fabric.Computed; - readonly netbiosNameServers?: fabric.Computed; - readonly netbiosNodeType?: fabric.Computed; - readonly ntpServers: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: DefaultVpcDhcpOptionsArgs); -} -export interface DefaultVpcDhcpOptionsArgs { - readonly netbiosNameServers?: fabric.MaybeComputed>[]; - readonly netbiosNodeType?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ec2/egressOnlyInternetGateway.d.ts b/_typescript_docs/pulumi-aws/ec2/egressOnlyInternetGateway.d.ts deleted file mode 100644 index 46787033c7ae..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/egressOnlyInternetGateway.d.ts +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/egressOnlyInternetGateway.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class EgressOnlyInternetGateway extends fabric.Resource { - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: EgressOnlyInternetGatewayArgs); -} -export interface EgressOnlyInternetGatewayArgs { - readonly vpcId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/eip.d.ts b/_typescript_docs/pulumi-aws/ec2/eip.d.ts deleted file mode 100644 index 71aa8e94ca55..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/eip.d.ts +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/eip.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Eip extends fabric.Resource { - readonly allocationId: fabric.Computed; - readonly associateWithPrivateIp?: fabric.Computed; - readonly associationId: fabric.Computed; - readonly domain: fabric.Computed; - readonly instance: fabric.Computed; - readonly networkInterface: fabric.Computed; - readonly privateIp: fabric.Computed; - readonly publicIp: fabric.Computed; - readonly vpc: fabric.Computed; - constructor(urnName: string, args: EipArgs); -} -export interface EipArgs { - readonly associateWithPrivateIp?: fabric.MaybeComputed; - readonly instance?: fabric.MaybeComputed; - readonly networkInterface?: fabric.MaybeComputed; - readonly vpc?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/eipAssociation.d.ts b/_typescript_docs/pulumi-aws/ec2/eipAssociation.d.ts deleted file mode 100644 index 1789ed2eed51..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/eipAssociation.d.ts +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/eipAssociation.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class EipAssociation extends fabric.Resource { - readonly allocationId: fabric.Computed; - readonly allowReassociation?: fabric.Computed; - readonly instanceId: fabric.Computed; - readonly networkInterfaceId: fabric.Computed; - readonly privateIpAddress: fabric.Computed; - readonly publicIp: fabric.Computed; - constructor(urnName: string, args: EipAssociationArgs); -} -export interface EipAssociationArgs { - readonly allocationId?: fabric.MaybeComputed; - readonly allowReassociation?: fabric.MaybeComputed; - readonly instanceId?: fabric.MaybeComputed; - readonly networkInterfaceId?: fabric.MaybeComputed; - readonly privateIpAddress?: fabric.MaybeComputed; - readonly publicIp?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/flowLog.d.ts b/_typescript_docs/pulumi-aws/ec2/flowLog.d.ts deleted file mode 100644 index f3a049d7fc15..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/flowLog.d.ts +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/flowLog.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class FlowLog extends fabric.Resource { - readonly eniId?: fabric.Computed; - readonly iamRoleArn: fabric.Computed; - readonly logGroupName: fabric.Computed; - readonly subnetId?: fabric.Computed; - readonly trafficType: fabric.Computed; - readonly vpcId?: fabric.Computed; - constructor(urnName: string, args: FlowLogArgs); -} -export interface FlowLogArgs { - readonly eniId?: fabric.MaybeComputed; - readonly iamRoleArn: fabric.MaybeComputed; - readonly logGroupName: fabric.MaybeComputed; - readonly subnetId?: fabric.MaybeComputed; - readonly trafficType: fabric.MaybeComputed; - readonly vpcId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/instance.d.ts b/_typescript_docs/pulumi-aws/ec2/instance.d.ts deleted file mode 100644 index d8e0242c0b83..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/instance.d.ts +++ /dev/null @@ -1,120 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/instance.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { InstanceType } from "./instanceType"; -export declare class Instance extends fabric.Resource { - readonly ami: fabric.Computed; - readonly associatePublicIpAddress: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly disableApiTermination?: fabric.Computed; - readonly ebsBlockDevice: fabric.Computed<{ - deleteOnTermination?: boolean; - deviceName: string; - encrypted: boolean; - iops: number; - snapshotId: string; - volumeSize: number; - volumeType: string; - }[]>; - readonly ebsOptimized?: fabric.Computed; - readonly ephemeralBlockDevice: fabric.Computed<{ - deviceName: string; - noDevice?: boolean; - virtualName?: string; - }[]>; - readonly iamInstanceProfile?: fabric.Computed; - readonly instanceInitiatedShutdownBehavior?: fabric.Computed; - readonly instanceState: fabric.Computed; - readonly instanceType: fabric.Computed; - readonly ipv6AddressCount: fabric.Computed; - readonly ipv6Addresses: fabric.Computed; - readonly keyName: fabric.Computed; - readonly monitoring?: fabric.Computed; - readonly networkInterface: fabric.Computed<{ - deleteOnTermination?: boolean; - deviceIndex: number; - networkInterfaceId: string; - }[]>; - readonly networkInterfaceId: fabric.Computed; - readonly placementGroup: fabric.Computed; - readonly primaryNetworkInterfaceId: fabric.Computed; - readonly privateDns: fabric.Computed; - readonly privateIp: fabric.Computed; - readonly publicDns: fabric.Computed; - readonly publicIp: fabric.Computed; - readonly rootBlockDevice: fabric.Computed<{ - deleteOnTermination?: boolean; - iops: number; - volumeSize: number; - volumeType: string; - }[]>; - readonly securityGroups: fabric.Computed; - readonly sourceDestCheck?: fabric.Computed; - readonly subnetId: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly tenancy: fabric.Computed; - readonly userData?: fabric.Computed; - readonly volumeTags: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcSecurityGroupIds: fabric.Computed; - constructor(urnName: string, args: InstanceArgs); -} -export interface InstanceArgs { - readonly ami: fabric.MaybeComputed; - readonly associatePublicIpAddress?: fabric.MaybeComputed; - readonly availabilityZone?: fabric.MaybeComputed; - readonly disableApiTermination?: fabric.MaybeComputed; - readonly ebsBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - deviceName: fabric.MaybeComputed; - encrypted?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - snapshotId?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly ebsOptimized?: fabric.MaybeComputed; - readonly ephemeralBlockDevice?: fabric.MaybeComputed<{ - deviceName: fabric.MaybeComputed; - noDevice?: fabric.MaybeComputed; - virtualName?: fabric.MaybeComputed; - }>[]; - readonly iamInstanceProfile?: fabric.MaybeComputed; - readonly instanceInitiatedShutdownBehavior?: fabric.MaybeComputed; - readonly instanceType: fabric.MaybeComputed; - readonly ipv6AddressCount?: fabric.MaybeComputed; - readonly ipv6Addresses?: fabric.MaybeComputed>[]; - readonly keyName?: fabric.MaybeComputed; - readonly monitoring?: fabric.MaybeComputed; - readonly networkInterface?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - deviceIndex: fabric.MaybeComputed; - networkInterfaceId: fabric.MaybeComputed; - }>[]; - readonly placementGroup?: fabric.MaybeComputed; - readonly privateIp?: fabric.MaybeComputed; - readonly rootBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly securityGroups?: fabric.MaybeComputed>[]; - readonly sourceDestCheck?: fabric.MaybeComputed; - readonly subnetId?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly tenancy?: fabric.MaybeComputed; - readonly userData?: fabric.MaybeComputed; - readonly volumeTags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcSecurityGroupIds?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/ec2/instanceMaps.d.ts b/_typescript_docs/pulumi-aws/ec2/instanceMaps.d.ts deleted file mode 100644 index 536e88303f3a..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/instanceMaps.d.ts +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/instanceMaps.d.ts ---- -export declare let instanceTypeArch: { - [instanceType: string]: string; -}; -export declare let regionArchLinuxAMI: { - [region: string]: { - [arch: string]: string; - }; -}; -export declare function getLinuxAMI(instanceType: string): string; diff --git a/_typescript_docs/pulumi-aws/ec2/instanceType.d.ts b/_typescript_docs/pulumi-aws/ec2/instanceType.d.ts deleted file mode 100644 index d5ec46ab361a..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/instanceType.d.ts +++ /dev/null @@ -1,63 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/instanceType.d.ts ---- -export declare let C3Instance2XLarge: InstanceType; -export declare let C3Instance4XLarge: InstanceType; -export declare let C3Instance8XLarge: InstanceType; -export declare let C3InstanceLarge: InstanceType; -export declare let C3InstanceXLarge: InstanceType; -export declare let C4Instance2XLarge: InstanceType; -export declare let C4Instance4XLarge: InstanceType; -export declare let C4Instance8XLarge: InstanceType; -export declare let C4InstanceLarge: InstanceType; -export declare let C4InstanceXLarge: InstanceType; -export declare let D2Instance2XLarge: InstanceType; -export declare let D2Instance4XLarge: InstanceType; -export declare let D2Instance8XLarge: InstanceType; -export declare let D2InstanceXLarge: InstanceType; -export declare let F1Instance16XLarge: InstanceType; -export declare let F1Instance2XLarge: InstanceType; -export declare let G2Instance2XLarge: InstanceType; -export declare let G2Instance8XLarge: InstanceType; -export declare let I3Instance16XLarge: InstanceType; -export declare let I3Instance2XLarge: InstanceType; -export declare let I3Instance4XLarge: InstanceType; -export declare let I3Instance8XLarge: InstanceType; -export declare let I3InstanceLarge: InstanceType; -export declare let I3InstanceXLarge: InstanceType; -export declare let M3Instance2XLarge: InstanceType; -export declare let M3InstanceLarge: InstanceType; -export declare let M3InstanceMedium: InstanceType; -export declare let M3InstanceXLarge: InstanceType; -export declare let M4Instance10XLarge: InstanceType; -export declare let M4Instance16XLarge: InstanceType; -export declare let M4Instance2XLarge: InstanceType; -export declare let M4Instance4XLarge: InstanceType; -export declare let M4InstanceLarge: InstanceType; -export declare let M4InstanceXLarge: InstanceType; -export declare let P2Instance16XLarge: InstanceType; -export declare let P2Instance8XLarge: InstanceType; -export declare let P2InstanceXLarge: InstanceType; -export declare let R3Instance2XLarge: InstanceType; -export declare let R3Instance4XLarge: InstanceType; -export declare let R3Instance8XLarge: InstanceType; -export declare let R3InstanceLarge: InstanceType; -export declare let R3InstanceXLarge: InstanceType; -export declare let R4Instance16XLarge: InstanceType; -export declare let R4Instance2XLarge: InstanceType; -export declare let R4Instance4XLarge: InstanceType; -export declare let R4Instance8XLarge: InstanceType; -export declare let R4InstanceLarge: InstanceType; -export declare let R4InstanceXLarge: InstanceType; -export declare let T2Instance2XLarge: InstanceType; -export declare let T2InstanceLarge: InstanceType; -export declare let T2InstanceMedium: InstanceType; -export declare let T2InstanceMicro: InstanceType; -export declare let T2InstanceNano: InstanceType; -export declare let T2InstanceSmall: InstanceType; -export declare let T2InstanceXLarge: InstanceType; -export declare let X1Instance16XLarge: InstanceType; -export declare let X1Instance32XLarge: InstanceType; -export declare type InstanceType = "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c3.large" | "c3.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c4.large" | "c4.xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d2.xlarge" | "f1.16xlarge" | "f1.2xlarge" | "g2.2xlarge" | "g2.8xlarge" | "i3.16xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.large" | "i3.xlarge" | "m3.2xlarge" | "m3.large" | "m3.medium" | "m3.xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.large" | "m4.xlarge" | "p2.16xlarge" | "p2.8xlarge" | "p2.xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r3.large" | "r3.xlarge" | "r4.16xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.large" | "r4.xlarge" | "t2.2xlarge" | "t2.large" | "t2.medium" | "t2.micro" | "t2.nano" | "t2.small" | "t2.xlarge" | "x1.16xlarge" | "x1.32xlarge"; diff --git a/_typescript_docs/pulumi-aws/ec2/internetGateway.d.ts b/_typescript_docs/pulumi-aws/ec2/internetGateway.d.ts deleted file mode 100644 index f9f9b5bc842b..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/internetGateway.d.ts +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/internetGateway.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class InternetGateway extends fabric.Resource { - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId?: fabric.Computed; - constructor(urnName: string, args: InternetGatewayArgs); -} -export interface InternetGatewayArgs { - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/keyPair.d.ts b/_typescript_docs/pulumi-aws/ec2/keyPair.d.ts deleted file mode 100644 index 82b83ac76584..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/keyPair.d.ts +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/keyPair.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class KeyPair extends fabric.Resource { - readonly fingerprint: fabric.Computed; - readonly keyName: fabric.Computed; - readonly keyNamePrefix?: fabric.Computed; - readonly publicKey: fabric.Computed; - constructor(urnName: string, args: KeyPairArgs); -} -export interface KeyPairArgs { - readonly keyName?: fabric.MaybeComputed; - readonly keyNamePrefix?: fabric.MaybeComputed; - readonly publicKey: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/launchConfiguration.d.ts b/_typescript_docs/pulumi-aws/ec2/launchConfiguration.d.ts deleted file mode 100644 index 2c5207003fb7..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/launchConfiguration.d.ts +++ /dev/null @@ -1,79 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/launchConfiguration.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LaunchConfiguration extends fabric.Resource { - readonly associatePublicIpAddress?: fabric.Computed; - readonly ebsBlockDevice: fabric.Computed<{ - deleteOnTermination?: boolean; - deviceName: string; - encrypted: boolean; - iops: number; - snapshotId: string; - volumeSize: number; - volumeType: string; - }[]>; - readonly ebsOptimized: fabric.Computed; - readonly enableMonitoring?: fabric.Computed; - readonly ephemeralBlockDevice?: fabric.Computed<{ - deviceName: string; - virtualName: string; - }[]>; - readonly iamInstanceProfile?: fabric.Computed; - readonly imageId: fabric.Computed; - readonly instanceType: fabric.Computed; - readonly keyName: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly placementTenancy?: fabric.Computed; - readonly rootBlockDevice: fabric.Computed<{ - deleteOnTermination?: boolean; - iops: number; - volumeSize: number; - volumeType: string; - }[]>; - readonly securityGroups?: fabric.Computed; - readonly spotPrice?: fabric.Computed; - readonly userData?: fabric.Computed; - readonly vpcClassicLinkId?: fabric.Computed; - readonly vpcClassicLinkSecurityGroups?: fabric.Computed; - constructor(urnName: string, args: LaunchConfigurationArgs); -} -export interface LaunchConfigurationArgs { - readonly associatePublicIpAddress?: fabric.MaybeComputed; - readonly ebsBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - deviceName: fabric.MaybeComputed; - encrypted?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - snapshotId?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly ebsOptimized?: fabric.MaybeComputed; - readonly enableMonitoring?: fabric.MaybeComputed; - readonly ephemeralBlockDevice?: fabric.MaybeComputed<{ - deviceName: fabric.MaybeComputed; - virtualName: fabric.MaybeComputed; - }>[]; - readonly iamInstanceProfile?: fabric.MaybeComputed; - readonly imageId: fabric.MaybeComputed; - readonly instanceType: fabric.MaybeComputed; - readonly keyName?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly placementTenancy?: fabric.MaybeComputed; - readonly rootBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly securityGroups?: fabric.MaybeComputed>[]; - readonly spotPrice?: fabric.MaybeComputed; - readonly userData?: fabric.MaybeComputed; - readonly vpcClassicLinkId?: fabric.MaybeComputed; - readonly vpcClassicLinkSecurityGroups?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/ec2/mainRouteTableAssociation.d.ts b/_typescript_docs/pulumi-aws/ec2/mainRouteTableAssociation.d.ts deleted file mode 100644 index 67a82de1c9de..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/mainRouteTableAssociation.d.ts +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/mainRouteTableAssociation.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class MainRouteTableAssociation extends fabric.Resource { - readonly originalRouteTableId: fabric.Computed; - readonly routeTableId: fabric.Computed; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: MainRouteTableAssociationArgs); -} -export interface MainRouteTableAssociationArgs { - readonly routeTableId: fabric.MaybeComputed; - readonly vpcId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/natGateway.d.ts b/_typescript_docs/pulumi-aws/ec2/natGateway.d.ts deleted file mode 100644 index 500272d6ccbb..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/natGateway.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/natGateway.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class NatGateway extends fabric.Resource { - readonly allocationId: fabric.Computed; - readonly networkInterfaceId: fabric.Computed; - readonly privateIp: fabric.Computed; - readonly publicIp: fabric.Computed; - readonly subnetId: fabric.Computed; - constructor(urnName: string, args: NatGatewayArgs); -} -export interface NatGatewayArgs { - readonly allocationId: fabric.MaybeComputed; - readonly networkInterfaceId?: fabric.MaybeComputed; - readonly privateIp?: fabric.MaybeComputed; - readonly publicIp?: fabric.MaybeComputed; - readonly subnetId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/networkAcl.d.ts b/_typescript_docs/pulumi-aws/ec2/networkAcl.d.ts deleted file mode 100644 index abc98f3a33b5..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/networkAcl.d.ts +++ /dev/null @@ -1,67 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/networkAcl.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class NetworkAcl extends fabric.Resource { - readonly egress: fabric.Computed<{ - action: string; - cidrBlock?: string; - fromPort: number; - icmpCode?: number; - icmpType?: number; - ipv6CidrBlock?: string; - protocol: string; - ruleNo: number; - toPort: number; - }[]>; - readonly ingress: fabric.Computed<{ - action: string; - cidrBlock?: string; - fromPort: number; - icmpCode?: number; - icmpType?: number; - ipv6CidrBlock?: string; - protocol: string; - ruleNo: number; - toPort: number; - }[]>; - readonly subnetId?: fabric.Computed; - readonly subnetIds: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: NetworkAclArgs); -} -export interface NetworkAclArgs { - readonly egress?: fabric.MaybeComputed<{ - action: fabric.MaybeComputed; - cidrBlock?: fabric.MaybeComputed; - fromPort: fabric.MaybeComputed; - icmpCode?: fabric.MaybeComputed; - icmpType?: fabric.MaybeComputed; - ipv6CidrBlock?: fabric.MaybeComputed; - protocol: fabric.MaybeComputed; - ruleNo: fabric.MaybeComputed; - toPort: fabric.MaybeComputed; - }>[]; - readonly ingress?: fabric.MaybeComputed<{ - action: fabric.MaybeComputed; - cidrBlock?: fabric.MaybeComputed; - fromPort: fabric.MaybeComputed; - icmpCode?: fabric.MaybeComputed; - icmpType?: fabric.MaybeComputed; - ipv6CidrBlock?: fabric.MaybeComputed; - protocol: fabric.MaybeComputed; - ruleNo: fabric.MaybeComputed; - toPort: fabric.MaybeComputed; - }>[]; - readonly subnetId?: fabric.MaybeComputed; - readonly subnetIds?: fabric.MaybeComputed>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/networkAclRule.d.ts b/_typescript_docs/pulumi-aws/ec2/networkAclRule.d.ts deleted file mode 100644 index 66d7847afe92..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/networkAclRule.d.ts +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/networkAclRule.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class NetworkAclRule extends fabric.Resource { - readonly cidrBlock?: fabric.Computed; - readonly egress?: fabric.Computed; - readonly fromPort?: fabric.Computed; - readonly icmpCode?: fabric.Computed; - readonly icmpType?: fabric.Computed; - readonly ipv6CidrBlock?: fabric.Computed; - readonly networkAclId: fabric.Computed; - readonly protocol: fabric.Computed; - readonly ruleAction: fabric.Computed; - readonly ruleNumber: fabric.Computed; - readonly toPort?: fabric.Computed; - constructor(urnName: string, args: NetworkAclRuleArgs); -} -export interface NetworkAclRuleArgs { - readonly cidrBlock?: fabric.MaybeComputed; - readonly egress?: fabric.MaybeComputed; - readonly fromPort?: fabric.MaybeComputed; - readonly icmpCode?: fabric.MaybeComputed; - readonly icmpType?: fabric.MaybeComputed; - readonly ipv6CidrBlock?: fabric.MaybeComputed; - readonly networkAclId: fabric.MaybeComputed; - readonly protocol: fabric.MaybeComputed; - readonly ruleAction: fabric.MaybeComputed; - readonly ruleNumber: fabric.MaybeComputed; - readonly toPort?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/networkInterface.d.ts b/_typescript_docs/pulumi-aws/ec2/networkInterface.d.ts deleted file mode 100644 index 7d7be2c5f879..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/networkInterface.d.ts +++ /dev/null @@ -1,41 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/networkInterface.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class NetworkInterface extends fabric.Resource { - readonly attachment: fabric.Computed<{ - attachmentId: string; - deviceIndex: number; - instance: string; - }[]>; - readonly description?: fabric.Computed; - readonly privateIp: fabric.Computed; - readonly privateIps: fabric.Computed; - readonly privateIpsCount: fabric.Computed; - readonly securityGroups: fabric.Computed; - readonly sourceDestCheck?: fabric.Computed; - readonly subnetId: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: NetworkInterfaceArgs); -} -export interface NetworkInterfaceArgs { - readonly attachment?: fabric.MaybeComputed<{ - attachmentId?: fabric.MaybeComputed; - deviceIndex: fabric.MaybeComputed; - instance: fabric.MaybeComputed; - }>[]; - readonly description?: fabric.MaybeComputed; - readonly privateIp?: fabric.MaybeComputed; - readonly privateIps?: fabric.MaybeComputed>[]; - readonly privateIpsCount?: fabric.MaybeComputed; - readonly securityGroups?: fabric.MaybeComputed>[]; - readonly sourceDestCheck?: fabric.MaybeComputed; - readonly subnetId: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ec2/networkInterfaceAttachment.d.ts b/_typescript_docs/pulumi-aws/ec2/networkInterfaceAttachment.d.ts deleted file mode 100644 index c156582097dd..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/networkInterfaceAttachment.d.ts +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/networkInterfaceAttachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class NetworkInterfaceAttachment extends fabric.Resource { - readonly attachmentId: fabric.Computed; - readonly deviceIndex: fabric.Computed; - readonly instanceId: fabric.Computed; - readonly networkInterfaceId: fabric.Computed; - readonly status: fabric.Computed; - constructor(urnName: string, args: NetworkInterfaceAttachmentArgs); -} -export interface NetworkInterfaceAttachmentArgs { - readonly deviceIndex: fabric.MaybeComputed; - readonly instanceId: fabric.MaybeComputed; - readonly networkInterfaceId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/networkInterfaceSecurityGroupAttachment.d.ts b/_typescript_docs/pulumi-aws/ec2/networkInterfaceSecurityGroupAttachment.d.ts deleted file mode 100644 index 586ae2500c28..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/networkInterfaceSecurityGroupAttachment.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/networkInterfaceSecurityGroupAttachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class NetworkInterfaceSecurityGroupAttachment extends fabric.Resource { - readonly networkInterfaceId: fabric.Computed; - readonly securityGroupId: fabric.Computed; - constructor(urnName: string, args: NetworkInterfaceSecurityGroupAttachmentArgs); -} -export interface NetworkInterfaceSecurityGroupAttachmentArgs { - readonly networkInterfaceId: fabric.MaybeComputed; - readonly securityGroupId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/placementGroup.d.ts b/_typescript_docs/pulumi-aws/ec2/placementGroup.d.ts deleted file mode 100644 index c842624dee40..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/placementGroup.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/placementGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class PlacementGroup extends fabric.Resource { - readonly name: fabric.Computed; - readonly strategy: fabric.Computed; - constructor(urnName: string, args: PlacementGroupArgs); -} -export interface PlacementGroupArgs { - readonly name?: fabric.MaybeComputed; - readonly strategy: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/proxyProtocolPolicy.d.ts b/_typescript_docs/pulumi-aws/ec2/proxyProtocolPolicy.d.ts deleted file mode 100644 index 2789702004b9..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/proxyProtocolPolicy.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/proxyProtocolPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ProxyProtocolPolicy extends fabric.Resource { - readonly instancePorts: fabric.Computed; - readonly loadBalancer: fabric.Computed; - constructor(urnName: string, args: ProxyProtocolPolicyArgs); -} -export interface ProxyProtocolPolicyArgs { - readonly instancePorts: fabric.MaybeComputed>[]; - readonly loadBalancer: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/route.d.ts b/_typescript_docs/pulumi-aws/ec2/route.d.ts deleted file mode 100644 index aefe0ae114d5..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/route.d.ts +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/route.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Route extends fabric.Resource { - readonly destinationCidrBlock?: fabric.Computed; - readonly destinationIpv6CidrBlock?: fabric.Computed; - readonly destinationPrefixListId: fabric.Computed; - readonly egressOnlyGatewayId: fabric.Computed; - readonly gatewayId: fabric.Computed; - readonly instanceId: fabric.Computed; - readonly instanceOwnerId: fabric.Computed; - readonly natGatewayId: fabric.Computed; - readonly networkInterfaceId: fabric.Computed; - readonly origin: fabric.Computed; - readonly routeTableId: fabric.Computed; - readonly state: fabric.Computed; - readonly vpcPeeringConnectionId?: fabric.Computed; - constructor(urnName: string, args: RouteArgs); -} -export interface RouteArgs { - readonly destinationCidrBlock?: fabric.MaybeComputed; - readonly destinationIpv6CidrBlock?: fabric.MaybeComputed; - readonly egressOnlyGatewayId?: fabric.MaybeComputed; - readonly gatewayId?: fabric.MaybeComputed; - readonly instanceId?: fabric.MaybeComputed; - readonly natGatewayId?: fabric.MaybeComputed; - readonly networkInterfaceId?: fabric.MaybeComputed; - readonly routeTableId: fabric.MaybeComputed; - readonly vpcPeeringConnectionId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/routeTable.d.ts b/_typescript_docs/pulumi-aws/ec2/routeTable.d.ts deleted file mode 100644 index 961d29e43841..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/routeTable.d.ts +++ /dev/null @@ -1,41 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/routeTable.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class RouteTable extends fabric.Resource { - readonly propagatingVgws: fabric.Computed; - readonly route: fabric.Computed<{ - cidrBlock?: string; - egressOnlyGatewayId?: string; - gatewayId?: string; - instanceId?: string; - ipv6CidrBlock?: string; - natGatewayId?: string; - networkInterfaceId?: string; - vpcPeeringConnectionId?: string; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: RouteTableArgs); -} -export interface RouteTableArgs { - readonly propagatingVgws?: fabric.MaybeComputed>[]; - readonly route?: fabric.MaybeComputed<{ - cidrBlock?: fabric.MaybeComputed; - egressOnlyGatewayId?: fabric.MaybeComputed; - gatewayId?: fabric.MaybeComputed; - instanceId?: fabric.MaybeComputed; - ipv6CidrBlock?: fabric.MaybeComputed; - natGatewayId?: fabric.MaybeComputed; - networkInterfaceId?: fabric.MaybeComputed; - vpcPeeringConnectionId?: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/routeTableAssociation.d.ts b/_typescript_docs/pulumi-aws/ec2/routeTableAssociation.d.ts deleted file mode 100644 index 4f3f86c0f4c6..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/routeTableAssociation.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/routeTableAssociation.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class RouteTableAssociation extends fabric.Resource { - readonly routeTableId: fabric.Computed; - readonly subnetId: fabric.Computed; - constructor(urnName: string, args: RouteTableAssociationArgs); -} -export interface RouteTableAssociationArgs { - readonly routeTableId: fabric.MaybeComputed; - readonly subnetId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/securityGroup.d.ts b/_typescript_docs/pulumi-aws/ec2/securityGroup.d.ts deleted file mode 100644 index e1fe14fb87cd..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/securityGroup.d.ts +++ /dev/null @@ -1,64 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/securityGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SecurityGroup extends fabric.Resource { - readonly description?: fabric.Computed; - readonly egress: fabric.Computed<{ - cidrBlocks?: string[]; - fromPort: number; - ipv6CidrBlocks?: string[]; - prefixListIds?: string[]; - protocol: string; - securityGroups?: string[]; - self?: boolean; - toPort: number; - }[]>; - readonly ingress: fabric.Computed<{ - cidrBlocks?: string[]; - fromPort: number; - ipv6CidrBlocks?: string[]; - protocol: string; - securityGroups?: string[]; - self?: boolean; - toPort: number; - }[]>; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly ownerId: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: SecurityGroupArgs); -} -export interface SecurityGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly egress?: fabric.MaybeComputed<{ - cidrBlocks?: fabric.MaybeComputed>[]; - fromPort: fabric.MaybeComputed; - ipv6CidrBlocks?: fabric.MaybeComputed>[]; - prefixListIds?: fabric.MaybeComputed>[]; - protocol: fabric.MaybeComputed; - securityGroups?: fabric.MaybeComputed>[]; - self?: fabric.MaybeComputed; - toPort: fabric.MaybeComputed; - }>[]; - readonly ingress?: fabric.MaybeComputed<{ - cidrBlocks?: fabric.MaybeComputed>[]; - fromPort: fabric.MaybeComputed; - ipv6CidrBlocks?: fabric.MaybeComputed>[]; - protocol: fabric.MaybeComputed; - securityGroups?: fabric.MaybeComputed>[]; - self?: fabric.MaybeComputed; - toPort: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/securityGroupRule.d.ts b/_typescript_docs/pulumi-aws/ec2/securityGroupRule.d.ts deleted file mode 100644 index 975fc6ce232c..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/securityGroupRule.d.ts +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/securityGroupRule.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SecurityGroupRule extends fabric.Resource { - readonly cidrBlocks?: fabric.Computed; - readonly fromPort: fabric.Computed; - readonly ipv6CidrBlocks?: fabric.Computed; - readonly prefixListIds?: fabric.Computed; - readonly protocol: fabric.Computed; - readonly securityGroupId: fabric.Computed; - readonly self?: fabric.Computed; - readonly sourceSecurityGroupId: fabric.Computed; - readonly toPort: fabric.Computed; - readonly type: fabric.Computed; - constructor(urnName: string, args: SecurityGroupRuleArgs); -} -export interface SecurityGroupRuleArgs { - readonly cidrBlocks?: fabric.MaybeComputed>[]; - readonly fromPort: fabric.MaybeComputed; - readonly ipv6CidrBlocks?: fabric.MaybeComputed>[]; - readonly prefixListIds?: fabric.MaybeComputed>[]; - readonly protocol: fabric.MaybeComputed; - readonly securityGroupId: fabric.MaybeComputed; - readonly self?: fabric.MaybeComputed; - readonly sourceSecurityGroupId?: fabric.MaybeComputed; - readonly toPort: fabric.MaybeComputed; - readonly type: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/snapshotCreateVolumePermission.d.ts b/_typescript_docs/pulumi-aws/ec2/snapshotCreateVolumePermission.d.ts deleted file mode 100644 index 9a405619905e..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/snapshotCreateVolumePermission.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/snapshotCreateVolumePermission.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SnapshotCreateVolumePermission extends fabric.Resource { - readonly accountId: fabric.Computed; - readonly snapshotId: fabric.Computed; - constructor(urnName: string, args: SnapshotCreateVolumePermissionArgs); -} -export interface SnapshotCreateVolumePermissionArgs { - readonly accountId: fabric.MaybeComputed; - readonly snapshotId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/spotDatafeedSubscription.d.ts b/_typescript_docs/pulumi-aws/ec2/spotDatafeedSubscription.d.ts deleted file mode 100644 index 79d1c721c9d1..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/spotDatafeedSubscription.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/spotDatafeedSubscription.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SpotDatafeedSubscription extends fabric.Resource { - readonly bucket: fabric.Computed; - readonly prefix?: fabric.Computed; - constructor(urnName: string, args: SpotDatafeedSubscriptionArgs); -} -export interface SpotDatafeedSubscriptionArgs { - readonly bucket: fabric.MaybeComputed; - readonly prefix?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/spotFleetRequest.d.ts b/_typescript_docs/pulumi-aws/ec2/spotFleetRequest.d.ts deleted file mode 100644 index 9a0b292066ec..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/spotFleetRequest.d.ts +++ /dev/null @@ -1,103 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/spotFleetRequest.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SpotFleetRequest extends fabric.Resource { - readonly allocationStrategy?: fabric.Computed; - readonly clientToken: fabric.Computed; - readonly excessCapacityTerminationPolicy?: fabric.Computed; - readonly iamFleetRole: fabric.Computed; - readonly launchSpecification: fabric.Computed<{ - ami: string; - associatePublicIpAddress?: boolean; - availabilityZone: string; - ebsBlockDevice: { - deleteOnTermination?: boolean; - deviceName: string; - encrypted: boolean; - iops: number; - snapshotId: string; - volumeSize: number; - volumeType: string; - }[]; - ebsOptimized?: boolean; - ephemeralBlockDevice: { - deviceName: string; - virtualName: string; - }[]; - iamInstanceProfile?: string; - instanceType: string; - keyName: string; - monitoring?: boolean; - placementGroup: string; - placementTenancy?: string; - rootBlockDevice: { - deleteOnTermination?: boolean; - iops: number; - volumeSize: number; - volumeType: string; - }[]; - spotPrice?: string; - subnetId: string; - userData?: string; - vpcSecurityGroupIds: string[]; - weightedCapacity?: string; - }[]>; - readonly replaceUnhealthyInstances?: fabric.Computed; - readonly spotPrice: fabric.Computed; - readonly spotRequestState: fabric.Computed; - readonly targetCapacity: fabric.Computed; - readonly terminateInstancesWithExpiration?: fabric.Computed; - readonly validFrom?: fabric.Computed; - readonly validUntil?: fabric.Computed; - constructor(urnName: string, args: SpotFleetRequestArgs); -} -export interface SpotFleetRequestArgs { - readonly allocationStrategy?: fabric.MaybeComputed; - readonly excessCapacityTerminationPolicy?: fabric.MaybeComputed; - readonly iamFleetRole: fabric.MaybeComputed; - readonly launchSpecification: fabric.MaybeComputed<{ - ami: fabric.MaybeComputed; - associatePublicIpAddress?: fabric.MaybeComputed; - availabilityZone?: fabric.MaybeComputed; - ebsBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - deviceName: fabric.MaybeComputed; - encrypted?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - snapshotId?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - ebsOptimized?: fabric.MaybeComputed; - ephemeralBlockDevice?: fabric.MaybeComputed<{ - deviceName: fabric.MaybeComputed; - virtualName: fabric.MaybeComputed; - }>[]; - iamInstanceProfile?: fabric.MaybeComputed; - instanceType: fabric.MaybeComputed; - keyName?: fabric.MaybeComputed; - monitoring?: fabric.MaybeComputed; - placementGroup?: fabric.MaybeComputed; - placementTenancy?: fabric.MaybeComputed; - rootBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - spotPrice?: fabric.MaybeComputed; - subnetId?: fabric.MaybeComputed; - userData?: fabric.MaybeComputed; - vpcSecurityGroupIds?: fabric.MaybeComputed>[]; - weightedCapacity?: fabric.MaybeComputed; - }>[]; - readonly replaceUnhealthyInstances?: fabric.MaybeComputed; - readonly spotPrice: fabric.MaybeComputed; - readonly targetCapacity: fabric.MaybeComputed; - readonly terminateInstancesWithExpiration?: fabric.MaybeComputed; - readonly validFrom?: fabric.MaybeComputed; - readonly validUntil?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/spotInstanceRequest.d.ts b/_typescript_docs/pulumi-aws/ec2/spotInstanceRequest.d.ts deleted file mode 100644 index 3fa3852a655a..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/spotInstanceRequest.d.ts +++ /dev/null @@ -1,132 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/spotInstanceRequest.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SpotInstanceRequest extends fabric.Resource { - readonly ami: fabric.Computed; - readonly associatePublicIpAddress: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly blockDurationMinutes?: fabric.Computed; - readonly disableApiTermination?: fabric.Computed; - readonly ebsBlockDevice: fabric.Computed<{ - deleteOnTermination?: boolean; - deviceName: string; - encrypted: boolean; - iops: number; - snapshotId: string; - volumeSize: number; - volumeType: string; - }[]>; - readonly ebsOptimized?: fabric.Computed; - readonly ephemeralBlockDevice: fabric.Computed<{ - deviceName: string; - noDevice?: boolean; - virtualName?: string; - }[]>; - readonly iamInstanceProfile?: fabric.Computed; - readonly instanceInitiatedShutdownBehavior?: fabric.Computed; - readonly instanceState: fabric.Computed; - readonly instanceType: fabric.Computed; - readonly ipv6AddressCount: fabric.Computed; - readonly ipv6Addresses: fabric.Computed; - readonly keyName: fabric.Computed; - readonly launchGroup?: fabric.Computed; - readonly monitoring?: fabric.Computed; - readonly networkInterface: fabric.Computed<{ - deleteOnTermination?: boolean; - deviceIndex: number; - networkInterfaceId: string; - }[]>; - readonly networkInterfaceId: fabric.Computed; - readonly placementGroup: fabric.Computed; - readonly primaryNetworkInterfaceId: fabric.Computed; - readonly privateDns: fabric.Computed; - readonly privateIp: fabric.Computed; - readonly publicDns: fabric.Computed; - readonly publicIp: fabric.Computed; - readonly rootBlockDevice: fabric.Computed<{ - deleteOnTermination?: boolean; - iops: number; - volumeSize: number; - volumeType: string; - }[]>; - readonly securityGroups: fabric.Computed; - readonly sourceDestCheck?: fabric.Computed; - readonly spotBidStatus: fabric.Computed; - readonly spotInstanceId: fabric.Computed; - readonly spotPrice: fabric.Computed; - readonly spotRequestState: fabric.Computed; - readonly spotType?: fabric.Computed; - readonly subnetId: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly tenancy: fabric.Computed; - readonly userData?: fabric.Computed; - readonly volumeTags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcSecurityGroupIds: fabric.Computed; - readonly waitForFulfillment?: fabric.Computed; - constructor(urnName: string, args: SpotInstanceRequestArgs); -} -export interface SpotInstanceRequestArgs { - readonly ami: fabric.MaybeComputed; - readonly associatePublicIpAddress?: fabric.MaybeComputed; - readonly availabilityZone?: fabric.MaybeComputed; - readonly blockDurationMinutes?: fabric.MaybeComputed; - readonly disableApiTermination?: fabric.MaybeComputed; - readonly ebsBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - deviceName: fabric.MaybeComputed; - encrypted?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - snapshotId?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly ebsOptimized?: fabric.MaybeComputed; - readonly ephemeralBlockDevice?: fabric.MaybeComputed<{ - deviceName: fabric.MaybeComputed; - noDevice?: fabric.MaybeComputed; - virtualName?: fabric.MaybeComputed; - }>[]; - readonly iamInstanceProfile?: fabric.MaybeComputed; - readonly instanceInitiatedShutdownBehavior?: fabric.MaybeComputed; - readonly instanceType: fabric.MaybeComputed; - readonly ipv6AddressCount?: fabric.MaybeComputed; - readonly ipv6Addresses?: fabric.MaybeComputed>[]; - readonly keyName?: fabric.MaybeComputed; - readonly launchGroup?: fabric.MaybeComputed; - readonly monitoring?: fabric.MaybeComputed; - readonly networkInterface?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - deviceIndex: fabric.MaybeComputed; - networkInterfaceId: fabric.MaybeComputed; - }>[]; - readonly placementGroup?: fabric.MaybeComputed; - readonly privateIp?: fabric.MaybeComputed; - readonly rootBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly securityGroups?: fabric.MaybeComputed>[]; - readonly sourceDestCheck?: fabric.MaybeComputed; - readonly spotPrice: fabric.MaybeComputed; - readonly spotType?: fabric.MaybeComputed; - readonly subnetId?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly tenancy?: fabric.MaybeComputed; - readonly userData?: fabric.MaybeComputed; - readonly volumeTags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly waitForFulfillment?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/subnet.d.ts b/_typescript_docs/pulumi-aws/ec2/subnet.d.ts deleted file mode 100644 index 7b626d8cf40e..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/subnet.d.ts +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/subnet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Subnet extends fabric.Resource { - readonly assignIpv6AddressOnCreation?: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly cidrBlock: fabric.Computed; - readonly ipv6CidrBlock: fabric.Computed; - readonly ipv6CidrBlockAssociationId: fabric.Computed; - readonly mapPublicIpOnLaunch?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: SubnetArgs); -} -export interface SubnetArgs { - readonly assignIpv6AddressOnCreation?: fabric.MaybeComputed; - readonly availabilityZone?: fabric.MaybeComputed; - readonly cidrBlock: fabric.MaybeComputed; - readonly ipv6CidrBlock?: fabric.MaybeComputed; - readonly mapPublicIpOnLaunch?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/volumeAttachment.d.ts b/_typescript_docs/pulumi-aws/ec2/volumeAttachment.d.ts deleted file mode 100644 index b0d872a5a8ed..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/volumeAttachment.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/volumeAttachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VolumeAttachment extends fabric.Resource { - readonly deviceName: fabric.Computed; - readonly forceDetach: fabric.Computed; - readonly instanceId: fabric.Computed; - readonly skipDestroy: fabric.Computed; - readonly volumeId: fabric.Computed; - constructor(urnName: string, args: VolumeAttachmentArgs); -} -export interface VolumeAttachmentArgs { - readonly deviceName: fabric.MaybeComputed; - readonly forceDetach?: fabric.MaybeComputed; - readonly instanceId: fabric.MaybeComputed; - readonly skipDestroy?: fabric.MaybeComputed; - readonly volumeId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpc.d.ts b/_typescript_docs/pulumi-aws/ec2/vpc.d.ts deleted file mode 100644 index 7de5d3e5ae73..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpc.d.ts +++ /dev/null @@ -1,38 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpc.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Vpc extends fabric.Resource { - readonly assignGeneratedIpv6CidrBlock?: fabric.Computed; - readonly cidrBlock: fabric.Computed; - readonly defaultNetworkAclId: fabric.Computed; - readonly defaultRouteTableId: fabric.Computed; - readonly defaultSecurityGroupId: fabric.Computed; - readonly dhcpOptionsId: fabric.Computed; - readonly enableClassiclink: fabric.Computed; - readonly enableClassiclinkDnsSupport: fabric.Computed; - readonly enableDnsHostnames: fabric.Computed; - readonly enableDnsSupport?: fabric.Computed; - readonly instanceTenancy: fabric.Computed; - readonly ipv6AssociationId: fabric.Computed; - readonly ipv6CidrBlock: fabric.Computed; - readonly mainRouteTableId: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: VpcArgs); -} -export interface VpcArgs { - readonly assignGeneratedIpv6CidrBlock?: fabric.MaybeComputed; - readonly cidrBlock: fabric.MaybeComputed; - readonly enableClassiclink?: fabric.MaybeComputed; - readonly enableClassiclinkDnsSupport?: fabric.MaybeComputed; - readonly enableDnsHostnames?: fabric.MaybeComputed; - readonly enableDnsSupport?: fabric.MaybeComputed; - readonly instanceTenancy?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpcDhcpOptions.d.ts b/_typescript_docs/pulumi-aws/ec2/vpcDhcpOptions.d.ts deleted file mode 100644 index 8f386e42f88a..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpcDhcpOptions.d.ts +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpcDhcpOptions.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpcDhcpOptions extends fabric.Resource { - readonly domainName?: fabric.Computed; - readonly domainNameServers?: fabric.Computed; - readonly netbiosNameServers?: fabric.Computed; - readonly netbiosNodeType?: fabric.Computed; - readonly ntpServers?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: VpcDhcpOptionsArgs); -} -export interface VpcDhcpOptionsArgs { - readonly domainName?: fabric.MaybeComputed; - readonly domainNameServers?: fabric.MaybeComputed>[]; - readonly netbiosNameServers?: fabric.MaybeComputed>[]; - readonly netbiosNodeType?: fabric.MaybeComputed; - readonly ntpServers?: fabric.MaybeComputed>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpcDhcpOptionsAssociation.d.ts b/_typescript_docs/pulumi-aws/ec2/vpcDhcpOptionsAssociation.d.ts deleted file mode 100644 index 0884593dab17..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpcDhcpOptionsAssociation.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpcDhcpOptionsAssociation.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpcDhcpOptionsAssociation extends fabric.Resource { - readonly dhcpOptionsId: fabric.Computed; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: VpcDhcpOptionsAssociationArgs); -} -export interface VpcDhcpOptionsAssociationArgs { - readonly dhcpOptionsId: fabric.MaybeComputed; - readonly vpcId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpcEndpoint.d.ts b/_typescript_docs/pulumi-aws/ec2/vpcEndpoint.d.ts deleted file mode 100644 index 6d6d7f358719..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpcEndpoint.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpcEndpoint.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpcEndpoint extends fabric.Resource { - readonly cidrBlocks: fabric.Computed; - readonly policy: fabric.Computed; - readonly prefixListId: fabric.Computed; - readonly routeTableIds: fabric.Computed; - readonly serviceName: fabric.Computed; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: VpcEndpointArgs); -} -export interface VpcEndpointArgs { - readonly policy?: fabric.MaybeComputed; - readonly routeTableIds?: fabric.MaybeComputed>[]; - readonly serviceName: fabric.MaybeComputed; - readonly vpcId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpcEndpointRouteTableAssociation.d.ts b/_typescript_docs/pulumi-aws/ec2/vpcEndpointRouteTableAssociation.d.ts deleted file mode 100644 index d05aaa5f63dd..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpcEndpointRouteTableAssociation.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpcEndpointRouteTableAssociation.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpcEndpointRouteTableAssociation extends fabric.Resource { - readonly routeTableId: fabric.Computed; - readonly vpcEndpointId: fabric.Computed; - constructor(urnName: string, args: VpcEndpointRouteTableAssociationArgs); -} -export interface VpcEndpointRouteTableAssociationArgs { - readonly routeTableId: fabric.MaybeComputed; - readonly vpcEndpointId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpcPeeringConnection.d.ts b/_typescript_docs/pulumi-aws/ec2/vpcPeeringConnection.d.ts deleted file mode 100644 index 04fdf39a377a..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpcPeeringConnection.d.ts +++ /dev/null @@ -1,46 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpcPeeringConnection.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpcPeeringConnection extends fabric.Resource { - readonly acceptStatus: fabric.Computed; - readonly accepter: fabric.Computed<{ - allowClassicLinkToRemoteVpc?: boolean; - allowRemoteVpcDnsResolution?: boolean; - allowVpcToRemoteClassicLink?: boolean; - }[]>; - readonly autoAccept?: fabric.Computed; - readonly peerOwnerId: fabric.Computed; - readonly peerVpcId: fabric.Computed; - readonly requester: fabric.Computed<{ - allowClassicLinkToRemoteVpc?: boolean; - allowRemoteVpcDnsResolution?: boolean; - allowVpcToRemoteClassicLink?: boolean; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: VpcPeeringConnectionArgs); -} -export interface VpcPeeringConnectionArgs { - readonly accepter?: fabric.MaybeComputed<{ - allowClassicLinkToRemoteVpc?: fabric.MaybeComputed; - allowRemoteVpcDnsResolution?: fabric.MaybeComputed; - allowVpcToRemoteClassicLink?: fabric.MaybeComputed; - }>[]; - readonly autoAccept?: fabric.MaybeComputed; - readonly peerOwnerId?: fabric.MaybeComputed; - readonly peerVpcId: fabric.MaybeComputed; - readonly requester?: fabric.MaybeComputed<{ - allowClassicLinkToRemoteVpc?: fabric.MaybeComputed; - allowRemoteVpcDnsResolution?: fabric.MaybeComputed; - allowVpcToRemoteClassicLink?: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpcPeeringConnectionAccepter.d.ts b/_typescript_docs/pulumi-aws/ec2/vpcPeeringConnectionAccepter.d.ts deleted file mode 100644 index 77cad063f834..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpcPeeringConnectionAccepter.d.ts +++ /dev/null @@ -1,45 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpcPeeringConnectionAccepter.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpcPeeringConnectionAccepter extends fabric.Resource { - readonly acceptStatus: fabric.Computed; - readonly accepter: fabric.Computed<{ - allowClassicLinkToRemoteVpc?: boolean; - allowRemoteVpcDnsResolution?: boolean; - allowVpcToRemoteClassicLink?: boolean; - }[]>; - readonly autoAccept?: fabric.Computed; - readonly peerOwnerId: fabric.Computed; - readonly peerVpcId: fabric.Computed; - readonly requester: fabric.Computed<{ - allowClassicLinkToRemoteVpc?: boolean; - allowRemoteVpcDnsResolution?: boolean; - allowVpcToRemoteClassicLink?: boolean; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - readonly vpcPeeringConnectionId: fabric.Computed; - constructor(urnName: string, args: VpcPeeringConnectionAccepterArgs); -} -export interface VpcPeeringConnectionAccepterArgs { - readonly accepter?: fabric.MaybeComputed<{ - allowClassicLinkToRemoteVpc?: fabric.MaybeComputed; - allowRemoteVpcDnsResolution?: fabric.MaybeComputed; - allowVpcToRemoteClassicLink?: fabric.MaybeComputed; - }>[]; - readonly autoAccept?: fabric.MaybeComputed; - readonly requester?: fabric.MaybeComputed<{ - allowClassicLinkToRemoteVpc?: fabric.MaybeComputed; - allowRemoteVpcDnsResolution?: fabric.MaybeComputed; - allowVpcToRemoteClassicLink?: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcPeeringConnectionId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpnConnection.d.ts b/_typescript_docs/pulumi-aws/ec2/vpnConnection.d.ts deleted file mode 100644 index d9827f39d812..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpnConnection.d.ts +++ /dev/null @@ -1,63 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpnConnection.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpnConnection extends fabric.Resource { - readonly customerGatewayConfiguration: fabric.Computed; - readonly customerGatewayId: fabric.Computed; - readonly routes: fabric.Computed<{ - destinationCidrBlock: string; - source: string; - state: string; - }[]>; - readonly staticRoutesOnly: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly tunnel1Address: fabric.Computed; - readonly tunnel1BgpAsn: fabric.Computed; - readonly tunnel1BgpHoldtime: fabric.Computed; - readonly tunnel1CgwInsideAddress: fabric.Computed; - readonly tunnel1PresharedKey: fabric.Computed; - readonly tunnel1VgwInsideAddress: fabric.Computed; - readonly tunnel2Address: fabric.Computed; - readonly tunnel2BgpAsn: fabric.Computed; - readonly tunnel2BgpHoldtime: fabric.Computed; - readonly tunnel2CgwInsideAddress: fabric.Computed; - readonly tunnel2PresharedKey: fabric.Computed; - readonly tunnel2VgwInsideAddress: fabric.Computed; - readonly type: fabric.Computed; - readonly vgwTelemetry: fabric.Computed<{ - acceptedRouteCount: number; - lastStatusChange: string; - outsideIpAddress: string; - status: string; - statusMessage: string; - }[]>; - readonly vpnGatewayId: fabric.Computed; - constructor(urnName: string, args: VpnConnectionArgs); -} -export interface VpnConnectionArgs { - readonly customerGatewayConfiguration?: fabric.MaybeComputed; - readonly customerGatewayId: fabric.MaybeComputed; - readonly routes?: fabric.MaybeComputed<{ - destinationCidrBlock?: fabric.MaybeComputed; - source?: fabric.MaybeComputed; - state?: fabric.MaybeComputed; - }>[]; - readonly staticRoutesOnly?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly type: fabric.MaybeComputed; - readonly vgwTelemetry?: fabric.MaybeComputed<{ - acceptedRouteCount?: fabric.MaybeComputed; - lastStatusChange?: fabric.MaybeComputed; - outsideIpAddress?: fabric.MaybeComputed; - status?: fabric.MaybeComputed; - statusMessage?: fabric.MaybeComputed; - }>[]; - readonly vpnGatewayId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpnConnectionRoute.d.ts b/_typescript_docs/pulumi-aws/ec2/vpnConnectionRoute.d.ts deleted file mode 100644 index 45e0939ba277..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpnConnectionRoute.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpnConnectionRoute.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpnConnectionRoute extends fabric.Resource { - readonly destinationCidrBlock: fabric.Computed; - readonly vpnConnectionId: fabric.Computed; - constructor(urnName: string, args: VpnConnectionRouteArgs); -} -export interface VpnConnectionRouteArgs { - readonly destinationCidrBlock: fabric.MaybeComputed; - readonly vpnConnectionId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpnGateway.d.ts b/_typescript_docs/pulumi-aws/ec2/vpnGateway.d.ts deleted file mode 100644 index ad754ceea3bb..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpnGateway.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpnGateway.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpnGateway extends fabric.Resource { - readonly availabilityZone?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: VpnGatewayArgs); -} -export interface VpnGatewayArgs { - readonly availabilityZone?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpnGatewayAttachment.d.ts b/_typescript_docs/pulumi-aws/ec2/vpnGatewayAttachment.d.ts deleted file mode 100644 index e4bb4931c77d..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpnGatewayAttachment.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpnGatewayAttachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpnGatewayAttachment extends fabric.Resource { - readonly vpcId: fabric.Computed; - readonly vpnGatewayId: fabric.Computed; - constructor(urnName: string, args: VpnGatewayAttachmentArgs); -} -export interface VpnGatewayAttachmentArgs { - readonly vpcId: fabric.MaybeComputed; - readonly vpnGatewayId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ec2/vpnGatewayRoutePropagation.d.ts b/_typescript_docs/pulumi-aws/ec2/vpnGatewayRoutePropagation.d.ts deleted file mode 100644 index 57724f6e55e2..000000000000 --- a/_typescript_docs/pulumi-aws/ec2/vpnGatewayRoutePropagation.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ec2/vpnGatewayRoutePropagation.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class VpnGatewayRoutePropagation extends fabric.Resource { - readonly routeTableId: fabric.Computed; - readonly vpnGatewayId: fabric.Computed; - constructor(urnName: string, args: VpnGatewayRoutePropagationArgs); -} -export interface VpnGatewayRoutePropagationArgs { - readonly routeTableId: fabric.MaybeComputed; - readonly vpnGatewayId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ecr/repository.d.ts b/_typescript_docs/pulumi-aws/ecr/repository.d.ts deleted file mode 100644 index f2acc454af62..000000000000 --- a/_typescript_docs/pulumi-aws/ecr/repository.d.ts +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ecr/repository.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Repository extends fabric.Resource { - readonly arn: fabric.Computed; - readonly name: fabric.Computed; - readonly registryId: fabric.Computed; - readonly repositoryUrl: fabric.Computed; - constructor(urnName: string, args: RepositoryArgs); -} -export interface RepositoryArgs { - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ecr/repositoryPolicy.d.ts b/_typescript_docs/pulumi-aws/ecr/repositoryPolicy.d.ts deleted file mode 100644 index 388f95559f7f..000000000000 --- a/_typescript_docs/pulumi-aws/ecr/repositoryPolicy.d.ts +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ecr/repositoryPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class RepositoryPolicy extends fabric.Resource { - readonly policy: fabric.Computed; - readonly registryId: fabric.Computed; - readonly repository: fabric.Computed; - constructor(urnName: string, args: RepositoryPolicyArgs); -} -export interface RepositoryPolicyArgs { - readonly policy: fabric.MaybeComputed; - readonly repository: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ecs/cluster.d.ts b/_typescript_docs/pulumi-aws/ecs/cluster.d.ts deleted file mode 100644 index dd1a394c25fe..000000000000 --- a/_typescript_docs/pulumi-aws/ecs/cluster.d.ts +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ecs/cluster.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Cluster extends fabric.Resource { - readonly name: fabric.Computed; - constructor(urnName: string, args: ClusterArgs); -} -export interface ClusterArgs { - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ecs/service.d.ts b/_typescript_docs/pulumi-aws/ecs/service.d.ts deleted file mode 100644 index 0d53a22bb3cd..000000000000 --- a/_typescript_docs/pulumi-aws/ecs/service.d.ts +++ /dev/null @@ -1,53 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ecs/service.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Service extends fabric.Resource { - readonly cluster: fabric.Computed; - readonly deploymentMaximumPercent?: fabric.Computed; - readonly deploymentMinimumHealthyPercent?: fabric.Computed; - readonly desiredCount?: fabric.Computed; - readonly iamRole?: fabric.Computed; - readonly loadBalancer?: fabric.Computed<{ - containerName: string; - containerPort: number; - elbName?: string; - targetGroupArn?: string; - }[]>; - readonly name: fabric.Computed; - readonly placementConstraints?: fabric.Computed<{ - expression?: string; - type: string; - }[]>; - readonly placementStrategy?: fabric.Computed<{ - field?: string; - type: string; - }[]>; - readonly taskDefinition: fabric.Computed; - constructor(urnName: string, args: ServiceArgs); -} -export interface ServiceArgs { - readonly cluster?: fabric.MaybeComputed; - readonly deploymentMaximumPercent?: fabric.MaybeComputed; - readonly deploymentMinimumHealthyPercent?: fabric.MaybeComputed; - readonly desiredCount?: fabric.MaybeComputed; - readonly iamRole?: fabric.MaybeComputed; - readonly loadBalancer?: fabric.MaybeComputed<{ - containerName: fabric.MaybeComputed; - containerPort: fabric.MaybeComputed; - elbName?: fabric.MaybeComputed; - targetGroupArn?: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly placementConstraints?: fabric.MaybeComputed<{ - expression?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly placementStrategy?: fabric.MaybeComputed<{ - field?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly taskDefinition: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ecs/taskDefinition.d.ts b/_typescript_docs/pulumi-aws/ecs/taskDefinition.d.ts deleted file mode 100644 index 241e03feec90..000000000000 --- a/_typescript_docs/pulumi-aws/ecs/taskDefinition.d.ts +++ /dev/null @@ -1,37 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ecs/taskDefinition.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class TaskDefinition extends fabric.Resource { - readonly arn: fabric.Computed; - readonly containerDefinitions: fabric.Computed; - readonly family: fabric.Computed; - readonly networkMode: fabric.Computed; - readonly placementConstraints?: fabric.Computed<{ - expression?: string; - type: string; - }[]>; - readonly revision: fabric.Computed; - readonly taskRoleArn?: fabric.Computed; - readonly volume?: fabric.Computed<{ - hostPath?: string; - name: string; - }[]>; - constructor(urnName: string, args: TaskDefinitionArgs); -} -export interface TaskDefinitionArgs { - readonly containerDefinitions: fabric.MaybeComputed; - readonly family: fabric.MaybeComputed; - readonly networkMode?: fabric.MaybeComputed; - readonly placementConstraints?: fabric.MaybeComputed<{ - expression?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly taskRoleArn?: fabric.MaybeComputed; - readonly volume?: fabric.MaybeComputed<{ - hostPath?: fabric.MaybeComputed; - name: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/efs/fileSystem.d.ts b/_typescript_docs/pulumi-aws/efs/fileSystem.d.ts deleted file mode 100644 index e5653d0c2f42..000000000000 --- a/_typescript_docs/pulumi-aws/efs/fileSystem.d.ts +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: efs/fileSystem.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class FileSystem extends fabric.Resource { - readonly creationToken: fabric.Computed; - readonly performanceMode: fabric.Computed; - readonly referenceName: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: FileSystemArgs); -} -export interface FileSystemArgs { - readonly creationToken?: fabric.MaybeComputed; - readonly performanceMode?: fabric.MaybeComputed; - readonly referenceName?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/efs/mountTarget.d.ts b/_typescript_docs/pulumi-aws/efs/mountTarget.d.ts deleted file mode 100644 index c675ea50006e..000000000000 --- a/_typescript_docs/pulumi-aws/efs/mountTarget.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: efs/mountTarget.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class MountTarget extends fabric.Resource { - readonly dnsName: fabric.Computed; - readonly fileSystemId: fabric.Computed; - readonly ipAddress: fabric.Computed; - readonly networkInterfaceId: fabric.Computed; - readonly securityGroups: fabric.Computed; - readonly subnetId: fabric.Computed; - constructor(urnName: string, args: MountTargetArgs); -} -export interface MountTargetArgs { - readonly fileSystemId: fabric.MaybeComputed; - readonly ipAddress?: fabric.MaybeComputed; - readonly securityGroups?: fabric.MaybeComputed>[]; - readonly subnetId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticache/cluster.d.ts b/_typescript_docs/pulumi-aws/elasticache/cluster.d.ts deleted file mode 100644 index a60d5dd08683..000000000000 --- a/_typescript_docs/pulumi-aws/elasticache/cluster.d.ts +++ /dev/null @@ -1,66 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticache/cluster.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Cluster extends fabric.Resource { - readonly applyImmediately: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly availabilityZones?: fabric.Computed; - readonly azMode: fabric.Computed; - readonly cacheNodes: fabric.Computed<{ - address: string; - availabilityZone: string; - id: string; - port: number; - }[]>; - readonly clusterAddress: fabric.Computed; - readonly clusterId: fabric.Computed; - readonly configurationEndpoint: fabric.Computed; - readonly engine: fabric.Computed; - readonly engineVersion: fabric.Computed; - readonly maintenanceWindow: fabric.Computed; - readonly nodeType: fabric.Computed; - readonly notificationTopicArn?: fabric.Computed; - readonly numCacheNodes: fabric.Computed; - readonly parameterGroupName: fabric.Computed; - readonly port: fabric.Computed; - readonly replicationGroupId: fabric.Computed; - readonly securityGroupIds: fabric.Computed; - readonly securityGroupNames: fabric.Computed; - readonly snapshotArns?: fabric.Computed; - readonly snapshotName?: fabric.Computed; - readonly snapshotRetentionLimit?: fabric.Computed; - readonly snapshotWindow: fabric.Computed; - readonly subnetGroupName: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: ClusterArgs); -} -export interface ClusterArgs { - readonly applyImmediately?: fabric.MaybeComputed; - readonly availabilityZone?: fabric.MaybeComputed; - readonly availabilityZones?: fabric.MaybeComputed>[]; - readonly azMode?: fabric.MaybeComputed; - readonly clusterId: fabric.MaybeComputed; - readonly engine: fabric.MaybeComputed; - readonly engineVersion?: fabric.MaybeComputed; - readonly maintenanceWindow?: fabric.MaybeComputed; - readonly nodeType: fabric.MaybeComputed; - readonly notificationTopicArn?: fabric.MaybeComputed; - readonly numCacheNodes: fabric.MaybeComputed; - readonly parameterGroupName?: fabric.MaybeComputed; - readonly port: fabric.MaybeComputed; - readonly securityGroupIds?: fabric.MaybeComputed>[]; - readonly securityGroupNames?: fabric.MaybeComputed>[]; - readonly snapshotArns?: fabric.MaybeComputed>[]; - readonly snapshotName?: fabric.MaybeComputed; - readonly snapshotRetentionLimit?: fabric.MaybeComputed; - readonly snapshotWindow?: fabric.MaybeComputed; - readonly subnetGroupName?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/elasticache/parameterGroup.d.ts b/_typescript_docs/pulumi-aws/elasticache/parameterGroup.d.ts deleted file mode 100644 index 33ba00d361e0..000000000000 --- a/_typescript_docs/pulumi-aws/elasticache/parameterGroup.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticache/parameterGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ParameterGroup extends fabric.Resource { - readonly description?: fabric.Computed; - readonly family: fabric.Computed; - readonly name: fabric.Computed; - readonly parameter?: fabric.Computed<{ - name: string; - value: string; - }[]>; - constructor(urnName: string, args: ParameterGroupArgs); -} -export interface ParameterGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly family: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly parameter?: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/elasticache/replicationGroup.d.ts b/_typescript_docs/pulumi-aws/elasticache/replicationGroup.d.ts deleted file mode 100644 index c8212bc6cba1..000000000000 --- a/_typescript_docs/pulumi-aws/elasticache/replicationGroup.d.ts +++ /dev/null @@ -1,69 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticache/replicationGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ReplicationGroup extends fabric.Resource { - readonly applyImmediately: fabric.Computed; - readonly autoMinorVersionUpgrade?: fabric.Computed; - readonly automaticFailoverEnabled?: fabric.Computed; - readonly availabilityZones?: fabric.Computed; - readonly clusterMode?: fabric.Computed<{ - numNodeGroups: number; - replicasPerNodeGroup: number; - }[]>; - readonly configurationEndpointAddress: fabric.Computed; - readonly engine?: fabric.Computed; - readonly engineVersion: fabric.Computed; - readonly maintenanceWindow: fabric.Computed; - readonly nodeType: fabric.Computed; - readonly notificationTopicArn?: fabric.Computed; - readonly numberCacheClusters: fabric.Computed; - readonly parameterGroupName: fabric.Computed; - readonly port: fabric.Computed; - readonly primaryEndpointAddress: fabric.Computed; - readonly replicationGroupDescription: fabric.Computed; - readonly replicationGroupId: fabric.Computed; - readonly securityGroupIds: fabric.Computed; - readonly securityGroupNames: fabric.Computed; - readonly snapshotArns?: fabric.Computed; - readonly snapshotName?: fabric.Computed; - readonly snapshotRetentionLimit?: fabric.Computed; - readonly snapshotWindow: fabric.Computed; - readonly subnetGroupName: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: ReplicationGroupArgs); -} -export interface ReplicationGroupArgs { - readonly applyImmediately?: fabric.MaybeComputed; - readonly autoMinorVersionUpgrade?: fabric.MaybeComputed; - readonly automaticFailoverEnabled?: fabric.MaybeComputed; - readonly availabilityZones?: fabric.MaybeComputed>[]; - readonly clusterMode?: fabric.MaybeComputed<{ - numNodeGroups: fabric.MaybeComputed; - replicasPerNodeGroup: fabric.MaybeComputed; - }>[]; - readonly engine?: fabric.MaybeComputed; - readonly engineVersion?: fabric.MaybeComputed; - readonly maintenanceWindow?: fabric.MaybeComputed; - readonly nodeType: fabric.MaybeComputed; - readonly notificationTopicArn?: fabric.MaybeComputed; - readonly numberCacheClusters?: fabric.MaybeComputed; - readonly parameterGroupName?: fabric.MaybeComputed; - readonly port: fabric.MaybeComputed; - readonly replicationGroupDescription: fabric.MaybeComputed; - readonly replicationGroupId: fabric.MaybeComputed; - readonly securityGroupIds?: fabric.MaybeComputed>[]; - readonly securityGroupNames?: fabric.MaybeComputed>[]; - readonly snapshotArns?: fabric.MaybeComputed>[]; - readonly snapshotName?: fabric.MaybeComputed; - readonly snapshotRetentionLimit?: fabric.MaybeComputed; - readonly snapshotWindow?: fabric.MaybeComputed; - readonly subnetGroupName?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/elasticache/securityGroup.d.ts b/_typescript_docs/pulumi-aws/elasticache/securityGroup.d.ts deleted file mode 100644 index e8089a530460..000000000000 --- a/_typescript_docs/pulumi-aws/elasticache/securityGroup.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticache/securityGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SecurityGroup extends fabric.Resource { - readonly description?: fabric.Computed; - readonly name: fabric.Computed; - readonly securityGroupNames: fabric.Computed; - constructor(urnName: string, args: SecurityGroupArgs); -} -export interface SecurityGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly securityGroupNames: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/elasticache/subnetGroup.d.ts b/_typescript_docs/pulumi-aws/elasticache/subnetGroup.d.ts deleted file mode 100644 index 5a9524c04c29..000000000000 --- a/_typescript_docs/pulumi-aws/elasticache/subnetGroup.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticache/subnetGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SubnetGroup extends fabric.Resource { - readonly description?: fabric.Computed; - readonly name: fabric.Computed; - readonly subnetIds: fabric.Computed; - constructor(urnName: string, args: SubnetGroupArgs); -} -export interface SubnetGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly subnetIds: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/elasticbeanstalk/application.d.ts b/_typescript_docs/pulumi-aws/elasticbeanstalk/application.d.ts deleted file mode 100644 index 559ec28ceb26..000000000000 --- a/_typescript_docs/pulumi-aws/elasticbeanstalk/application.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticbeanstalk/application.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Application extends fabric.Resource { - readonly description?: fabric.Computed; - readonly name: fabric.Computed; - constructor(urnName: string, args: ApplicationArgs); -} -export interface ApplicationArgs { - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticbeanstalk/applicationVersion.d.ts b/_typescript_docs/pulumi-aws/elasticbeanstalk/applicationVersion.d.ts deleted file mode 100644 index 7a32299d6223..000000000000 --- a/_typescript_docs/pulumi-aws/elasticbeanstalk/applicationVersion.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticbeanstalk/applicationVersion.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { Bucket } from "../s3/bucket"; -import { Application } from "./application"; -export declare class ApplicationVersion extends fabric.Resource { - readonly application: fabric.Computed; - readonly bucket: fabric.Computed; - readonly description?: fabric.Computed; - readonly forceDelete?: fabric.Computed; - readonly key: fabric.Computed; - readonly name: fabric.Computed; - constructor(urnName: string, args: ApplicationVersionArgs); -} -export interface ApplicationVersionArgs { - readonly application: fabric.MaybeComputed; - readonly bucket: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly forceDelete?: fabric.MaybeComputed; - readonly key: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticbeanstalk/configurationTemplate.d.ts b/_typescript_docs/pulumi-aws/elasticbeanstalk/configurationTemplate.d.ts deleted file mode 100644 index 0a2d0a174e71..000000000000 --- a/_typescript_docs/pulumi-aws/elasticbeanstalk/configurationTemplate.d.ts +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticbeanstalk/configurationTemplate.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ConfigurationTemplate extends fabric.Resource { - readonly application: fabric.Computed; - readonly description?: fabric.Computed; - readonly environmentId?: fabric.Computed; - readonly name: fabric.Computed; - readonly setting: fabric.Computed<{ - name: string; - namespace: string; - resource?: string; - value: string; - }[]>; - readonly solutionStackName?: fabric.Computed; - constructor(urnName: string, args: ConfigurationTemplateArgs); -} -export interface ConfigurationTemplateArgs { - readonly application: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly environmentId?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly setting?: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - namespace: fabric.MaybeComputed; - resource?: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - readonly solutionStackName?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticbeanstalk/environment.d.ts b/_typescript_docs/pulumi-aws/elasticbeanstalk/environment.d.ts deleted file mode 100644 index 982aab1d6bd0..000000000000 --- a/_typescript_docs/pulumi-aws/elasticbeanstalk/environment.d.ts +++ /dev/null @@ -1,64 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticbeanstalk/environment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { Application } from "./application"; -import { ApplicationVersion } from "./applicationVersion"; -export declare class Environment extends fabric.Resource { - readonly allSettings: fabric.Computed<{ - name: string; - namespace: string; - resource?: string; - value: string; - }[]>; - readonly application: fabric.Computed; - readonly autoscalingGroups: fabric.Computed; - readonly cname: fabric.Computed; - readonly cnamePrefix: fabric.Computed; - readonly description?: fabric.Computed; - readonly instances: fabric.Computed; - readonly launchConfigurations: fabric.Computed; - readonly loadBalancers: fabric.Computed; - readonly name: fabric.Computed; - readonly pollInterval?: fabric.Computed; - readonly queues: fabric.Computed; - readonly setting?: fabric.Computed<{ - name: string; - namespace: string; - resource?: string; - value: string; - }[]>; - readonly solutionStackName: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly templateName?: fabric.Computed; - readonly tier?: fabric.Computed; - readonly triggers: fabric.Computed; - readonly version: fabric.Computed; - readonly waitForReadyTimeout?: fabric.Computed; - constructor(urnName: string, args: EnvironmentArgs); -} -export interface EnvironmentArgs { - readonly application: fabric.MaybeComputed; - readonly cnamePrefix?: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly pollInterval?: fabric.MaybeComputed; - readonly setting?: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - namespace: fabric.MaybeComputed; - resource?: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - readonly solutionStackName?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly templateName?: fabric.MaybeComputed; - readonly tier?: fabric.MaybeComputed; - readonly version?: fabric.MaybeComputed; - readonly waitForReadyTimeout?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancing/attachment.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancing/attachment.d.ts deleted file mode 100644 index b1b0659497dc..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancing/attachment.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancing/attachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Attachment extends fabric.Resource { - readonly elb: fabric.Computed; - readonly instance: fabric.Computed; - constructor(urnName: string, args: AttachmentArgs); -} -export interface AttachmentArgs { - readonly elb: fabric.MaybeComputed; - readonly instance: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancing/cookieStickinessPolicy.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancing/cookieStickinessPolicy.d.ts deleted file mode 100644 index 5096337b3053..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancing/cookieStickinessPolicy.d.ts +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancing/cookieStickinessPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class CookieStickinessPolicy extends fabric.Resource { - readonly cookieExpirationPeriod?: fabric.Computed; - readonly lbPort: fabric.Computed; - readonly loadBalancer: fabric.Computed; - readonly name: fabric.Computed; - constructor(urnName: string, args: CookieStickinessPolicyArgs); -} -export interface CookieStickinessPolicyArgs { - readonly cookieExpirationPeriod?: fabric.MaybeComputed; - readonly lbPort: fabric.MaybeComputed; - readonly loadBalancer: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancing/listenerPolicy.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancing/listenerPolicy.d.ts deleted file mode 100644 index 81f248d1a19c..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancing/listenerPolicy.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancing/listenerPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ListenerPolicy extends fabric.Resource { - readonly loadBalancerName: fabric.Computed; - readonly loadBalancerPort: fabric.Computed; - readonly policyNames?: fabric.Computed; - constructor(urnName: string, args: ListenerPolicyArgs); -} -export interface ListenerPolicyArgs { - readonly loadBalancerName: fabric.MaybeComputed; - readonly loadBalancerPort: fabric.MaybeComputed; - readonly policyNames?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancing/loadBalancer.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancing/loadBalancer.d.ts deleted file mode 100644 index 7f376051db2a..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancing/loadBalancer.d.ts +++ /dev/null @@ -1,84 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancing/loadBalancer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LoadBalancer extends fabric.Resource { - readonly accessLogs?: fabric.Computed<{ - bucket: string; - bucketPrefix?: string; - enabled?: boolean; - interval?: number; - }[]>; - readonly availabilityZones: fabric.Computed; - readonly connectionDraining?: fabric.Computed; - readonly connectionDrainingTimeout?: fabric.Computed; - readonly crossZoneLoadBalancing?: fabric.Computed; - readonly dnsName: fabric.Computed; - readonly healthCheck: fabric.Computed<{ - healthyThreshold: number; - interval: number; - target: string; - timeout: number; - unhealthyThreshold: number; - }[]>; - readonly idleTimeout?: fabric.Computed; - readonly instances: fabric.Computed; - readonly internal: fabric.Computed; - readonly listener: fabric.Computed<{ - instancePort: number; - instanceProtocol: string; - lbPort: number; - lbProtocol: string; - sslCertificateId?: string; - }[]>; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly securityGroups: fabric.Computed; - readonly sourceSecurityGroup: fabric.Computed; - readonly sourceSecurityGroupId: fabric.Computed; - readonly subnets: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly zoneId: fabric.Computed; - constructor(urnName: string, args: LoadBalancerArgs); -} -export interface LoadBalancerArgs { - readonly accessLogs?: fabric.MaybeComputed<{ - bucket: fabric.MaybeComputed; - bucketPrefix?: fabric.MaybeComputed; - enabled?: fabric.MaybeComputed; - interval?: fabric.MaybeComputed; - }>[]; - readonly availabilityZones?: fabric.MaybeComputed>[]; - readonly connectionDraining?: fabric.MaybeComputed; - readonly connectionDrainingTimeout?: fabric.MaybeComputed; - readonly crossZoneLoadBalancing?: fabric.MaybeComputed; - readonly healthCheck?: fabric.MaybeComputed<{ - healthyThreshold: fabric.MaybeComputed; - interval: fabric.MaybeComputed; - target: fabric.MaybeComputed; - timeout: fabric.MaybeComputed; - unhealthyThreshold: fabric.MaybeComputed; - }>[]; - readonly idleTimeout?: fabric.MaybeComputed; - readonly instances?: fabric.MaybeComputed>[]; - readonly internal?: fabric.MaybeComputed; - readonly listener: fabric.MaybeComputed<{ - instancePort: fabric.MaybeComputed; - instanceProtocol: fabric.MaybeComputed; - lbPort: fabric.MaybeComputed; - lbProtocol: fabric.MaybeComputed; - sslCertificateId?: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly securityGroups?: fabric.MaybeComputed>[]; - readonly sourceSecurityGroup?: fabric.MaybeComputed; - readonly subnets?: fabric.MaybeComputed>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancing/loadBalancerBackendServerPolicy.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancing/loadBalancerBackendServerPolicy.d.ts deleted file mode 100644 index 6e1d985b963a..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancing/loadBalancerBackendServerPolicy.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancing/loadBalancerBackendServerPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LoadBalancerBackendServerPolicy extends fabric.Resource { - readonly instancePort: fabric.Computed; - readonly loadBalancerName: fabric.Computed; - readonly policyNames?: fabric.Computed; - constructor(urnName: string, args: LoadBalancerBackendServerPolicyArgs); -} -export interface LoadBalancerBackendServerPolicyArgs { - readonly instancePort: fabric.MaybeComputed; - readonly loadBalancerName: fabric.MaybeComputed; - readonly policyNames?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancing/loadBalancerPolicy.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancing/loadBalancerPolicy.d.ts deleted file mode 100644 index 78686cd4171e..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancing/loadBalancerPolicy.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancing/loadBalancerPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LoadBalancerPolicy extends fabric.Resource { - readonly loadBalancerName: fabric.Computed; - readonly policyAttribute?: fabric.Computed<{ - name?: string; - value?: string; - }[]>; - readonly policyName: fabric.Computed; - readonly policyTypeName: fabric.Computed; - constructor(urnName: string, args: LoadBalancerPolicyArgs); -} -export interface LoadBalancerPolicyArgs { - readonly loadBalancerName: fabric.MaybeComputed; - readonly policyAttribute?: fabric.MaybeComputed<{ - name?: fabric.MaybeComputed; - value?: fabric.MaybeComputed; - }>[]; - readonly policyName: fabric.MaybeComputed; - readonly policyTypeName: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancing/sslNegotiationPolicy.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancing/sslNegotiationPolicy.d.ts deleted file mode 100644 index 10f0d96dd7ef..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancing/sslNegotiationPolicy.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancing/sslNegotiationPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SslNegotiationPolicy extends fabric.Resource { - readonly attribute?: fabric.Computed<{ - name: string; - value: string; - }[]>; - readonly lbPort: fabric.Computed; - readonly loadBalancer: fabric.Computed; - readonly name: fabric.Computed; - constructor(urnName: string, args: SslNegotiationPolicyArgs); -} -export interface SslNegotiationPolicyArgs { - readonly attribute?: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - readonly lbPort: fabric.MaybeComputed; - readonly loadBalancer: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancingv2/listener.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancingv2/listener.d.ts deleted file mode 100644 index 15eaca5b97d7..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancingv2/listener.d.ts +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancingv2/listener.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Listener extends fabric.Resource { - readonly arn: fabric.Computed; - readonly certificateArn?: fabric.Computed; - readonly defaultAction: fabric.Computed<{ - targetGroupArn: string; - type: string; - }[]>; - readonly loadBalancerArn: fabric.Computed; - readonly port: fabric.Computed; - readonly protocol?: fabric.Computed; - readonly sslPolicy: fabric.Computed; - constructor(urnName: string, args: ListenerArgs); -} -export interface ListenerArgs { - readonly certificateArn?: fabric.MaybeComputed; - readonly defaultAction: fabric.MaybeComputed<{ - targetGroupArn: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly loadBalancerArn: fabric.MaybeComputed; - readonly port: fabric.MaybeComputed; - readonly protocol?: fabric.MaybeComputed; - readonly sslPolicy?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancingv2/listenerRule.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancingv2/listenerRule.d.ts deleted file mode 100644 index 87fe37cbb4cd..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancingv2/listenerRule.d.ts +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancingv2/listenerRule.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ListenerRule extends fabric.Resource { - readonly action: fabric.Computed<{ - targetGroupArn: string; - type: string; - }[]>; - readonly arn: fabric.Computed; - readonly condition: fabric.Computed<{ - field?: string; - values?: string[]; - }[]>; - readonly listenerArn: fabric.Computed; - readonly priority: fabric.Computed; - constructor(urnName: string, args: ListenerRuleArgs); -} -export interface ListenerRuleArgs { - readonly action: fabric.MaybeComputed<{ - targetGroupArn: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly condition: fabric.MaybeComputed<{ - field?: fabric.MaybeComputed; - values?: fabric.MaybeComputed>[]; - }>[]; - readonly listenerArn: fabric.MaybeComputed; - readonly priority: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancingv2/loadBalancer.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancingv2/loadBalancer.d.ts deleted file mode 100644 index 1f8dd15f488d..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancingv2/loadBalancer.d.ts +++ /dev/null @@ -1,48 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancingv2/loadBalancer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class LoadBalancer extends fabric.Resource { - readonly accessLogs?: fabric.Computed<{ - bucket: string; - enabled?: boolean; - prefix?: string; - }[]>; - readonly arn: fabric.Computed; - readonly arnSuffix: fabric.Computed; - readonly dnsName: fabric.Computed; - readonly enableDeletionProtection?: fabric.Computed; - readonly idleTimeout?: fabric.Computed; - readonly internal: fabric.Computed; - readonly ipAddressType: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly securityGroups: fabric.Computed; - readonly subnets: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - readonly zoneId: fabric.Computed; - constructor(urnName: string, args: LoadBalancerArgs); -} -export interface LoadBalancerArgs { - readonly accessLogs?: fabric.MaybeComputed<{ - bucket: fabric.MaybeComputed; - enabled?: fabric.MaybeComputed; - prefix?: fabric.MaybeComputed; - }>[]; - readonly enableDeletionProtection?: fabric.MaybeComputed; - readonly idleTimeout?: fabric.MaybeComputed; - readonly internal?: fabric.MaybeComputed; - readonly ipAddressType?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly securityGroups?: fabric.MaybeComputed>[]; - readonly subnets: fabric.MaybeComputed>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancingv2/targetGroup.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancingv2/targetGroup.d.ts deleted file mode 100644 index 133375107dea..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancingv2/targetGroup.d.ts +++ /dev/null @@ -1,61 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancingv2/targetGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class TargetGroup extends fabric.Resource { - readonly arn: fabric.Computed; - readonly arnSuffix: fabric.Computed; - readonly deregistrationDelay?: fabric.Computed; - readonly healthCheck: fabric.Computed<{ - healthyThreshold?: number; - interval?: number; - matcher?: string; - path?: string; - port?: string; - protocol?: string; - timeout?: number; - unhealthyThreshold?: number; - }[]>; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly port: fabric.Computed; - readonly protocol: fabric.Computed; - readonly stickiness: fabric.Computed<{ - cookieDuration?: number; - enabled?: boolean; - type: string; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: TargetGroupArgs); -} -export interface TargetGroupArgs { - readonly deregistrationDelay?: fabric.MaybeComputed; - readonly healthCheck?: fabric.MaybeComputed<{ - healthyThreshold?: fabric.MaybeComputed; - interval?: fabric.MaybeComputed; - matcher?: fabric.MaybeComputed; - path?: fabric.MaybeComputed; - port?: fabric.MaybeComputed; - protocol?: fabric.MaybeComputed; - timeout?: fabric.MaybeComputed; - unhealthyThreshold?: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly port: fabric.MaybeComputed; - readonly protocol: fabric.MaybeComputed; - readonly stickiness?: fabric.MaybeComputed<{ - cookieDuration?: fabric.MaybeComputed; - enabled?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticloadbalancingv2/targetGroupAttachment.d.ts b/_typescript_docs/pulumi-aws/elasticloadbalancingv2/targetGroupAttachment.d.ts deleted file mode 100644 index 27c88786e2a5..000000000000 --- a/_typescript_docs/pulumi-aws/elasticloadbalancingv2/targetGroupAttachment.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticloadbalancingv2/targetGroupAttachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class TargetGroupAttachment extends fabric.Resource { - readonly port?: fabric.Computed; - readonly targetGroupArn: fabric.Computed; - readonly targetId: fabric.Computed; - constructor(urnName: string, args: TargetGroupAttachmentArgs); -} -export interface TargetGroupAttachmentArgs { - readonly port?: fabric.MaybeComputed; - readonly targetGroupArn: fabric.MaybeComputed; - readonly targetId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elasticsearch/domain.d.ts b/_typescript_docs/pulumi-aws/elasticsearch/domain.d.ts deleted file mode 100644 index 9774649e74df..000000000000 --- a/_typescript_docs/pulumi-aws/elasticsearch/domain.d.ts +++ /dev/null @@ -1,66 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticsearch/domain.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Domain extends fabric.Resource { - readonly accessPolicies: fabric.Computed; - readonly advancedOptions: fabric.Computed<{ - [key: string]: any; - }>; - readonly arn: fabric.Computed; - readonly clusterConfig: fabric.Computed<{ - dedicatedMasterCount?: number; - dedicatedMasterEnabled?: boolean; - dedicatedMasterType?: string; - instanceCount?: number; - instanceType?: string; - zoneAwarenessEnabled?: boolean; - }[]>; - readonly domainId: fabric.Computed; - readonly domainName: fabric.Computed; - readonly ebsOptions: fabric.Computed<{ - ebsEnabled: boolean; - iops?: number; - volumeSize?: number; - volumeType: string; - }[]>; - readonly elasticsearchVersion?: fabric.Computed; - readonly endpoint: fabric.Computed; - readonly snapshotOptions?: fabric.Computed<{ - automatedSnapshotStartHour: number; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: DomainArgs); -} -export interface DomainArgs { - readonly accessPolicies?: fabric.MaybeComputed; - readonly advancedOptions?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly clusterConfig?: fabric.MaybeComputed<{ - dedicatedMasterCount?: fabric.MaybeComputed; - dedicatedMasterEnabled?: fabric.MaybeComputed; - dedicatedMasterType?: fabric.MaybeComputed; - instanceCount?: fabric.MaybeComputed; - instanceType?: fabric.MaybeComputed; - zoneAwarenessEnabled?: fabric.MaybeComputed; - }>[]; - readonly domainName: fabric.MaybeComputed; - readonly ebsOptions?: fabric.MaybeComputed<{ - ebsEnabled: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly elasticsearchVersion?: fabric.MaybeComputed; - readonly snapshotOptions?: fabric.MaybeComputed<{ - automatedSnapshotStartHour: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/elasticsearch/domainPolicy.d.ts b/_typescript_docs/pulumi-aws/elasticsearch/domainPolicy.d.ts deleted file mode 100644 index d06673647528..000000000000 --- a/_typescript_docs/pulumi-aws/elasticsearch/domainPolicy.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elasticsearch/domainPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DomainPolicy extends fabric.Resource { - readonly accessPolicies: fabric.Computed; - readonly domainName: fabric.Computed; - constructor(urnName: string, args: DomainPolicyArgs); -} -export interface DomainPolicyArgs { - readonly accessPolicies: fabric.MaybeComputed; - readonly domainName: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/elastictranscoder/pipeline.d.ts b/_typescript_docs/pulumi-aws/elastictranscoder/pipeline.d.ts deleted file mode 100644 index 95594ccc7140..000000000000 --- a/_typescript_docs/pulumi-aws/elastictranscoder/pipeline.d.ts +++ /dev/null @@ -1,70 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elastictranscoder/pipeline.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Pipeline extends fabric.Resource { - readonly arn: fabric.Computed; - readonly awsKmsKeyArn?: fabric.Computed; - readonly contentConfig: fabric.Computed<{ - bucket: string; - storageClass?: string; - }[]>; - readonly contentConfigPermissions?: fabric.Computed<{ - access?: string[]; - grantee?: string; - granteeType?: string; - }[]>; - readonly inputBucket: fabric.Computed; - readonly name: fabric.Computed; - readonly notifications?: fabric.Computed<{ - completed?: string; - error?: string; - progressing?: string; - warning?: string; - }[]>; - readonly outputBucket: fabric.Computed; - readonly role: fabric.Computed; - readonly thumbnailConfig: fabric.Computed<{ - bucket: string; - storageClass?: string; - }[]>; - readonly thumbnailConfigPermissions?: fabric.Computed<{ - access?: string[]; - grantee?: string; - granteeType?: string; - }[]>; - constructor(urnName: string, args: PipelineArgs); -} -export interface PipelineArgs { - readonly awsKmsKeyArn?: fabric.MaybeComputed; - readonly contentConfig?: fabric.MaybeComputed<{ - bucket?: fabric.MaybeComputed; - storageClass?: fabric.MaybeComputed; - }>[]; - readonly contentConfigPermissions?: fabric.MaybeComputed<{ - access?: fabric.MaybeComputed>[]; - grantee?: fabric.MaybeComputed; - granteeType?: fabric.MaybeComputed; - }>[]; - readonly inputBucket: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly notifications?: fabric.MaybeComputed<{ - completed?: fabric.MaybeComputed; - error?: fabric.MaybeComputed; - progressing?: fabric.MaybeComputed; - warning?: fabric.MaybeComputed; - }>[]; - readonly outputBucket?: fabric.MaybeComputed; - readonly role: fabric.MaybeComputed; - readonly thumbnailConfig?: fabric.MaybeComputed<{ - bucket?: fabric.MaybeComputed; - storageClass?: fabric.MaybeComputed; - }>[]; - readonly thumbnailConfigPermissions?: fabric.MaybeComputed<{ - access?: fabric.MaybeComputed>[]; - grantee?: fabric.MaybeComputed; - granteeType?: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/elastictranscoder/preset.d.ts b/_typescript_docs/pulumi-aws/elastictranscoder/preset.d.ts deleted file mode 100644 index 04eba553051c..000000000000 --- a/_typescript_docs/pulumi-aws/elastictranscoder/preset.d.ts +++ /dev/null @@ -1,126 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: elastictranscoder/preset.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Preset extends fabric.Resource { - readonly arn: fabric.Computed; - readonly audio?: fabric.Computed<{ - audioPackingMode?: string; - bitRate?: string; - channels?: string; - codec?: string; - sampleRate?: string; - }[]>; - readonly audioCodecOptions?: fabric.Computed<{ - bitDepth?: string; - bitOrder?: string; - profile?: string; - signed?: string; - }[]>; - readonly container: fabric.Computed; - readonly description?: fabric.Computed; - readonly name: fabric.Computed; - readonly thumbnails?: fabric.Computed<{ - aspectRatio?: string; - format?: string; - interval?: string; - maxHeight?: string; - maxWidth?: string; - paddingPolicy?: string; - resolution?: string; - sizingPolicy?: string; - }[]>; - readonly type: fabric.Computed; - readonly video?: fabric.Computed<{ - aspectRatio?: string; - bitRate?: string; - codec?: string; - displayAspectRatio?: string; - fixedGop?: string; - frameRate?: string; - keyframesMaxDist?: string; - maxFrameRate?: string; - maxHeight?: string; - maxWidth?: string; - paddingPolicy?: string; - resolution?: string; - sizingPolicy?: string; - }[]>; - readonly videoCodecOptions?: fabric.Computed<{ - [key: string]: any; - }>; - readonly videoWatermarks?: fabric.Computed<{ - horizontalAlign?: string; - horizontalOffset?: string; - id?: string; - maxHeight?: string; - maxWidth?: string; - opacity?: string; - sizingPolicy?: string; - target?: string; - verticalAlign?: string; - verticalOffset?: string; - }[]>; - constructor(urnName: string, args: PresetArgs); -} -export interface PresetArgs { - readonly audio?: fabric.MaybeComputed<{ - audioPackingMode?: fabric.MaybeComputed; - bitRate?: fabric.MaybeComputed; - channels?: fabric.MaybeComputed; - codec?: fabric.MaybeComputed; - sampleRate?: fabric.MaybeComputed; - }>[]; - readonly audioCodecOptions?: fabric.MaybeComputed<{ - bitDepth?: fabric.MaybeComputed; - bitOrder?: fabric.MaybeComputed; - profile?: fabric.MaybeComputed; - signed?: fabric.MaybeComputed; - }>[]; - readonly container: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly thumbnails?: fabric.MaybeComputed<{ - aspectRatio?: fabric.MaybeComputed; - format?: fabric.MaybeComputed; - interval?: fabric.MaybeComputed; - maxHeight?: fabric.MaybeComputed; - maxWidth?: fabric.MaybeComputed; - paddingPolicy?: fabric.MaybeComputed; - resolution?: fabric.MaybeComputed; - sizingPolicy?: fabric.MaybeComputed; - }>[]; - readonly type?: fabric.MaybeComputed; - readonly video?: fabric.MaybeComputed<{ - aspectRatio?: fabric.MaybeComputed; - bitRate?: fabric.MaybeComputed; - codec?: fabric.MaybeComputed; - displayAspectRatio?: fabric.MaybeComputed; - fixedGop?: fabric.MaybeComputed; - frameRate?: fabric.MaybeComputed; - keyframesMaxDist?: fabric.MaybeComputed; - maxFrameRate?: fabric.MaybeComputed; - maxHeight?: fabric.MaybeComputed; - maxWidth?: fabric.MaybeComputed; - paddingPolicy?: fabric.MaybeComputed; - resolution?: fabric.MaybeComputed; - sizingPolicy?: fabric.MaybeComputed; - }>[]; - readonly videoCodecOptions?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly videoWatermarks?: fabric.MaybeComputed<{ - horizontalAlign?: fabric.MaybeComputed; - horizontalOffset?: fabric.MaybeComputed; - id?: fabric.MaybeComputed; - maxHeight?: fabric.MaybeComputed; - maxWidth?: fabric.MaybeComputed; - opacity?: fabric.MaybeComputed; - sizingPolicy?: fabric.MaybeComputed; - target?: fabric.MaybeComputed; - verticalAlign?: fabric.MaybeComputed; - verticalOffset?: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/emr/cluster.d.ts b/_typescript_docs/pulumi-aws/emr/cluster.d.ts deleted file mode 100644 index bbff9b455035..000000000000 --- a/_typescript_docs/pulumi-aws/emr/cluster.d.ts +++ /dev/null @@ -1,77 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: emr/cluster.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Cluster extends fabric.Resource { - readonly applications?: fabric.Computed; - readonly autoscalingRole?: fabric.Computed; - readonly bootstrapAction?: fabric.Computed<{ - args?: string[]; - name: string; - path: string; - }[]>; - readonly clusterState: fabric.Computed; - readonly configurations?: fabric.Computed; - readonly coreInstanceCount?: fabric.Computed; - readonly coreInstanceType: fabric.Computed; - readonly ec2Attributes?: fabric.Computed<{ - additionalMasterSecurityGroups?: string; - additionalSlaveSecurityGroups?: string; - emrManagedMasterSecurityGroup?: string; - emrManagedSlaveSecurityGroup?: string; - instanceProfile: string; - keyName?: string; - serviceAccessSecurityGroup?: string; - subnetId?: string; - }[]>; - readonly keepJobFlowAliveWhenNoSteps: fabric.Computed; - readonly logUri?: fabric.Computed; - readonly masterInstanceType: fabric.Computed; - readonly masterPublicDns: fabric.Computed; - readonly name: fabric.Computed; - readonly releaseLabel: fabric.Computed; - readonly securityConfiguration?: fabric.Computed; - readonly serviceRole: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly terminationProtection: fabric.Computed; - readonly visibleToAllUsers?: fabric.Computed; - constructor(urnName: string, args: ClusterArgs); -} -export interface ClusterArgs { - readonly applications?: fabric.MaybeComputed>[]; - readonly autoscalingRole?: fabric.MaybeComputed; - readonly bootstrapAction?: fabric.MaybeComputed<{ - args?: fabric.MaybeComputed>[]; - name: fabric.MaybeComputed; - path: fabric.MaybeComputed; - }>[]; - readonly configurations?: fabric.MaybeComputed; - readonly coreInstanceCount?: fabric.MaybeComputed; - readonly coreInstanceType?: fabric.MaybeComputed; - readonly ec2Attributes?: fabric.MaybeComputed<{ - additionalMasterSecurityGroups?: fabric.MaybeComputed; - additionalSlaveSecurityGroups?: fabric.MaybeComputed; - emrManagedMasterSecurityGroup?: fabric.MaybeComputed; - emrManagedSlaveSecurityGroup?: fabric.MaybeComputed; - instanceProfile: fabric.MaybeComputed; - keyName?: fabric.MaybeComputed; - serviceAccessSecurityGroup?: fabric.MaybeComputed; - subnetId?: fabric.MaybeComputed; - }>[]; - readonly keepJobFlowAliveWhenNoSteps?: fabric.MaybeComputed; - readonly logUri?: fabric.MaybeComputed; - readonly masterInstanceType: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly releaseLabel: fabric.MaybeComputed; - readonly securityConfiguration?: fabric.MaybeComputed; - readonly serviceRole: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly terminationProtection?: fabric.MaybeComputed; - readonly visibleToAllUsers?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/emr/instanceGroup.d.ts b/_typescript_docs/pulumi-aws/emr/instanceGroup.d.ts deleted file mode 100644 index fb987aaaa117..000000000000 --- a/_typescript_docs/pulumi-aws/emr/instanceGroup.d.ts +++ /dev/null @@ -1,35 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: emr/instanceGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class InstanceGroup extends fabric.Resource { - readonly clusterId: fabric.Computed; - readonly ebsConfig?: fabric.Computed<{ - iops?: number; - size: number; - type: string; - volumesPerInstance?: number; - }[]>; - readonly ebsOptimized?: fabric.Computed; - readonly instanceCount?: fabric.Computed; - readonly instanceType: fabric.Computed; - readonly name: fabric.Computed; - readonly runningInstanceCount: fabric.Computed; - readonly status: fabric.Computed; - constructor(urnName: string, args: InstanceGroupArgs); -} -export interface InstanceGroupArgs { - readonly clusterId: fabric.MaybeComputed; - readonly ebsConfig?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type: fabric.MaybeComputed; - volumesPerInstance?: fabric.MaybeComputed; - }>[]; - readonly ebsOptimized?: fabric.MaybeComputed; - readonly instanceCount?: fabric.MaybeComputed; - readonly instanceType: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/emr/securityConfiguration.d.ts b/_typescript_docs/pulumi-aws/emr/securityConfiguration.d.ts deleted file mode 100644 index e8d262b9b0eb..000000000000 --- a/_typescript_docs/pulumi-aws/emr/securityConfiguration.d.ts +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: emr/securityConfiguration.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SecurityConfiguration extends fabric.Resource { - readonly configuration: fabric.Computed; - readonly creationDate: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - constructor(urnName: string, args: SecurityConfigurationArgs); -} -export interface SecurityConfigurationArgs { - readonly configuration: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/glacier/vault.d.ts b/_typescript_docs/pulumi-aws/glacier/vault.d.ts deleted file mode 100644 index 1a82e8091691..000000000000 --- a/_typescript_docs/pulumi-aws/glacier/vault.d.ts +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: glacier/vault.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Vault extends fabric.Resource { - readonly accessPolicy?: fabric.Computed; - readonly arn: fabric.Computed; - readonly location: fabric.Computed; - readonly name: fabric.Computed; - readonly notification?: fabric.Computed<{ - events: string[]; - snsTopic: string; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: VaultArgs); -} -export interface VaultArgs { - readonly accessPolicy?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly notification?: fabric.MaybeComputed<{ - events: fabric.MaybeComputed>[]; - snsTopic: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/iam/accessKey.d.ts b/_typescript_docs/pulumi-aws/iam/accessKey.d.ts deleted file mode 100644 index e8f4f32edefa..000000000000 --- a/_typescript_docs/pulumi-aws/iam/accessKey.d.ts +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/accessKey.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class AccessKey extends fabric.Resource { - readonly encryptedSecret: fabric.Computed; - readonly keyFingerprint: fabric.Computed; - readonly pgpKey?: fabric.Computed; - readonly secret: fabric.Computed; - readonly sesSmtpPassword: fabric.Computed; - readonly status: fabric.Computed; - readonly user: fabric.Computed; - constructor(urnName: string, args: AccessKeyArgs); -} -export interface AccessKeyArgs { - readonly pgpKey?: fabric.MaybeComputed; - readonly user: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/accountAlias.d.ts b/_typescript_docs/pulumi-aws/iam/accountAlias.d.ts deleted file mode 100644 index 2ea2c00cca49..000000000000 --- a/_typescript_docs/pulumi-aws/iam/accountAlias.d.ts +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/accountAlias.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class AccountAlias extends fabric.Resource { - readonly accountAlias: fabric.Computed; - constructor(urnName: string, args: AccountAliasArgs); -} -export interface AccountAliasArgs { - readonly accountAlias: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/accountPasswordPolicy.d.ts b/_typescript_docs/pulumi-aws/iam/accountPasswordPolicy.d.ts deleted file mode 100644 index cb2b5f0b37dc..000000000000 --- a/_typescript_docs/pulumi-aws/iam/accountPasswordPolicy.d.ts +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/accountPasswordPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class AccountPasswordPolicy extends fabric.Resource { - readonly allowUsersToChangePassword?: fabric.Computed; - readonly expirePasswords: fabric.Computed; - readonly hardExpiry: fabric.Computed; - readonly maxPasswordAge: fabric.Computed; - readonly minimumPasswordLength?: fabric.Computed; - readonly passwordReusePrevention: fabric.Computed; - readonly requireLowercaseCharacters: fabric.Computed; - readonly requireNumbers: fabric.Computed; - readonly requireSymbols: fabric.Computed; - readonly requireUppercaseCharacters: fabric.Computed; - constructor(urnName: string, args: AccountPasswordPolicyArgs); -} -export interface AccountPasswordPolicyArgs { - readonly allowUsersToChangePassword?: fabric.MaybeComputed; - readonly hardExpiry?: fabric.MaybeComputed; - readonly maxPasswordAge?: fabric.MaybeComputed; - readonly minimumPasswordLength?: fabric.MaybeComputed; - readonly passwordReusePrevention?: fabric.MaybeComputed; - readonly requireLowercaseCharacters?: fabric.MaybeComputed; - readonly requireNumbers?: fabric.MaybeComputed; - readonly requireSymbols?: fabric.MaybeComputed; - readonly requireUppercaseCharacters?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/group.d.ts b/_typescript_docs/pulumi-aws/iam/group.d.ts deleted file mode 100644 index 999797d5615d..000000000000 --- a/_typescript_docs/pulumi-aws/iam/group.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/group.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Group extends fabric.Resource { - readonly arn: fabric.Computed; - readonly name: fabric.Computed; - readonly path?: fabric.Computed; - readonly uniqueId: fabric.Computed; - constructor(urnName: string, args: GroupArgs); -} -export interface GroupArgs { - readonly name?: fabric.MaybeComputed; - readonly path?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/groupMembership.d.ts b/_typescript_docs/pulumi-aws/iam/groupMembership.d.ts deleted file mode 100644 index c4b10cd1d393..000000000000 --- a/_typescript_docs/pulumi-aws/iam/groupMembership.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/groupMembership.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class GroupMembership extends fabric.Resource { - readonly group: fabric.Computed; - readonly name: fabric.Computed; - readonly users: fabric.Computed; - constructor(urnName: string, args: GroupMembershipArgs); -} -export interface GroupMembershipArgs { - readonly group: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly users: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/iam/groupPolicy.d.ts b/_typescript_docs/pulumi-aws/iam/groupPolicy.d.ts deleted file mode 100644 index ea11a1f615af..000000000000 --- a/_typescript_docs/pulumi-aws/iam/groupPolicy.d.ts +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/groupPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class GroupPolicy extends fabric.Resource { - readonly group: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly policy: fabric.Computed; - constructor(urnName: string, args: GroupPolicyArgs); -} -export interface GroupPolicyArgs { - readonly group: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly policy: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/groupPolicyAttachment.d.ts b/_typescript_docs/pulumi-aws/iam/groupPolicyAttachment.d.ts deleted file mode 100644 index 15081d595ccc..000000000000 --- a/_typescript_docs/pulumi-aws/iam/groupPolicyAttachment.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/groupPolicyAttachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { ARN } from "../index"; -import { Group } from "./group"; -export declare class GroupPolicyAttachment extends fabric.Resource { - readonly group: fabric.Computed; - readonly policyArn: fabric.Computed; - constructor(urnName: string, args: GroupPolicyAttachmentArgs); -} -export interface GroupPolicyAttachmentArgs { - readonly group: fabric.MaybeComputed; - readonly policyArn: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/instanceProfile.d.ts b/_typescript_docs/pulumi-aws/iam/instanceProfile.d.ts deleted file mode 100644 index fa6f7bf2971f..000000000000 --- a/_typescript_docs/pulumi-aws/iam/instanceProfile.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/instanceProfile.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { Role } from "./role"; -export declare class InstanceProfile extends fabric.Resource { - readonly arn: fabric.Computed; - readonly createDate: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly path?: fabric.Computed; - readonly role: fabric.Computed; - readonly roles: fabric.Computed; - readonly uniqueId: fabric.Computed; - constructor(urnName: string, args: InstanceProfileArgs); -} -export interface InstanceProfileArgs { - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly path?: fabric.MaybeComputed; - readonly role?: fabric.MaybeComputed; - readonly roles?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/iam/managedPolicies.d.ts b/_typescript_docs/pulumi-aws/iam/managedPolicies.d.ts deleted file mode 100644 index fce64c392962..000000000000 --- a/_typescript_docs/pulumi-aws/iam/managedPolicies.d.ts +++ /dev/null @@ -1,265 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/managedPolicies.d.ts ---- -import { ARN } from "../arn"; -export declare const AWSAccountActivityAccess: ARN; -export declare const AWSAccountUsageReportAccess: ARN; -export declare const AWSAgentlessDiscoveryService: ARN; -export declare const AWSApplicationDiscoveryAgentAccess: ARN; -export declare const AWSApplicationDiscoveryServiceFullAccess: ARN; -export declare const AWSBatchFullAccess: ARN; -export declare const AWSBatchServiceRole: ARN; -export declare const AWSCertificateManagerFullAccess: ARN; -export declare const AWSCertificateManagerReadOnly: ARN; -export declare const AWSCloudFormationReadOnlyAccess: ARN; -export declare const AWSCloudHSMFullAccess: ARN; -export declare const AWSCloudHSMReadOnlyAccess: ARN; -export declare const AWSCloudHSMRole: ARN; -export declare const AWSCloudTrailFullAccess: ARN; -export declare const AWSCloudTrailReadOnlyAccess: ARN; -export declare const AWSCodeBuildAdminAccess: ARN; -export declare const AWSCodeBuildDeveloperAccess: ARN; -export declare const AWSCodeBuildReadOnlyAccess: ARN; -export declare const AWSCodeCommitFullAccess: ARN; -export declare const AWSCodeCommitPowerUser: ARN; -export declare const AWSCodeCommitReadOnly: ARN; -export declare const AWSCodeDeployDeployerAccess: ARN; -export declare const AWSCodeDeployFullAccess: ARN; -export declare const AWSCodeDeployReadOnlyAccess: ARN; -export declare const AWSCodeDeployRole: ARN; -export declare const AWSCodePipelineApproverAccess: ARN; -export declare const AWSCodePipelineCustomActionAccess: ARN; -export declare const AWSCodePipelineFullAccess: ARN; -export declare const AWSCodePipelineReadOnlyAccess: ARN; -export declare const AWSCodeStarFullAccess: ARN; -export declare const AWSCodeStarServiceRole: ARN; -export declare const AWSConfigRole: ARN; -export declare const AWSConfigRulesExecutionRole: ARN; -export declare const AWSConfigUserAccess: ARN; -export declare const AWSConnector: ARN; -export declare const AWSDataPipelineRole: ARN; -export declare const AWSDataPipeline_FullAccess: ARN; -export declare const AWSDataPipeline_PowerUser: ARN; -export declare const AWSDeviceFarmFullAccess: ARN; -export declare const AWSDirectConnectFullAccess: ARN; -export declare const AWSDirectConnectReadOnlyAccess: ARN; -export declare const AWSDirectoryServiceFullAccess: ARN; -export declare const AWSDirectoryServiceReadOnlyAccess: ARN; -export declare const AWSElasticBeanstalkCustomPlatformforEC2Role: ARN; -export declare const AWSElasticBeanstalkEnhancedHealth: ARN; -export declare const AWSElasticBeanstalkFullAccess: ARN; -export declare const AWSElasticBeanstalkMulticontainerDocker: ARN; -export declare const AWSElasticBeanstalkReadOnlyAccess: ARN; -export declare const AWSElasticBeanstalkService: ARN; -export declare const AWSElasticBeanstalkWebTier: ARN; -export declare const AWSElasticBeanstalkWorkerTier: ARN; -export declare const AWSGreengrassFullAccess: ARN; -export declare const AWSGreengrassResourceAccessRolePolicy: ARN; -export declare const AWSHealthFullAccess: ARN; -export declare const AWSImportExportFullAccess: ARN; -export declare const AWSImportExportReadOnlyAccess: ARN; -export declare const AWSIoTConfigAccess: ARN; -export declare const AWSIoTConfigReadOnlyAccess: ARN; -export declare const AWSIoTDataAccess: ARN; -export declare const AWSIoTFullAccess: ARN; -export declare const AWSIoTLogging: ARN; -export declare const AWSIoTRuleActions: ARN; -export declare const AWSKeyManagementServicePowerUser: ARN; -export declare const AWSLambdaBasicExecutionRole: ARN; -export declare const AWSLambdaDynamoDBExecutionRole: ARN; -export declare const AWSLambdaENIManagementAccess: ARN; -export declare const AWSLambdaExecute: ARN; -export declare const AWSLambdaFullAccess: ARN; -export declare const AWSLambdaInvocationDynamoDB: ARN; -export declare const AWSLambdaKinesisExecutionRole: ARN; -export declare const AWSLambdaReadOnlyAccess: ARN; -export declare const AWSLambdaRole: ARN; -export declare const AWSLambdaVPCAccessExecutionRole: ARN; -export declare const AWSMarketplaceFullAccess: ARN; -export declare const AWSMarketplaceGetEntitlements: ARN; -export declare const AWSMarketplaceManageSubscriptions: ARN; -export declare const AWSMarketplaceMeteringFullAccess: ARN; -export declare const AWSMarketplaceReadonly: ARN; -export declare const AWSMobileHub_FullAccess: ARN; -export declare const AWSMobileHub_ReadOnly: ARN; -export declare const AWSMobileHub_ServiceUseOnly: ARN; -export declare const AWSOpsWorksCMInstanceProfileRole: ARN; -export declare const AWSOpsWorksCMServiceRole: ARN; -export declare const AWSOpsWorksCloudWatchLogs: ARN; -export declare const AWSOpsWorksFullAccess: ARN; -export declare const AWSOpsWorksInstanceRegistration: ARN; -export declare const AWSOpsWorksRegisterCLI: ARN; -export declare const AWSOpsWorksRole: ARN; -export declare const AWSQuickSightDescribeRDS: ARN; -export declare const AWSQuickSightDescribeRedshift: ARN; -export declare const AWSQuickSightListIAM: ARN; -export declare const AWSQuicksightAthenaAccess: ARN; -export declare const AWSStepFunctionsConsoleFullAccess: ARN; -export declare const AWSStepFunctionsFullAccess: ARN; -export declare const AWSStepFunctionsReadOnlyAccess: ARN; -export declare const AWSStorageGatewayFullAccess: ARN; -export declare const AWSStorageGatewayReadOnlyAccess: ARN; -export declare const AWSSupportAccess: ARN; -export declare const AWSWAFFullAccess: ARN; -export declare const AWSWAFReadOnlyAccess: ARN; -export declare const AWSXrayFullAccess: ARN; -export declare const AWSXrayReadOnlyAccess: ARN; -export declare const AWSXrayWriteOnlyAccess: ARN; -export declare const AdministratorAccess: ARN; -export declare const AmazonAPIGatewayAdministrator: ARN; -export declare const AmazonAPIGatewayInvokeFullAccess: ARN; -export declare const AmazonAPIGatewayPushToCloudWatchLogs: ARN; -export declare const AmazonAppStreamFullAccess: ARN; -export declare const AmazonAppStreamReadOnlyAccess: ARN; -export declare const AmazonAppStreamServiceAccess: ARN; -export declare const AmazonAthenaFullAccess: ARN; -export declare const AmazonCloudDirectoryFullAccess: ARN; -export declare const AmazonCloudDirectoryReadOnlyAccess: ARN; -export declare const AmazonCognitoDeveloperAuthenticatedIdentities: ARN; -export declare const AmazonCognitoPowerUser: ARN; -export declare const AmazonCognitoReadOnly: ARN; -export declare const AmazonDMSCloudWatchLogsRole: ARN; -export declare const AmazonDMSRedshiftS3Role: ARN; -export declare const AmazonDMSVPCManagementRole: ARN; -export declare const AmazonDRSVPCManagement: ARN; -export declare const AmazonDynamoDBFullAccess: ARN; -export declare const AmazonDynamoDBFullAccesswithDataPipeline: ARN; -export declare const AmazonDynamoDBReadOnlyAccess: ARN; -export declare const AmazonEC2ContainerRegistryFullAccess: ARN; -export declare const AmazonEC2ContainerRegistryPowerUser: ARN; -export declare const AmazonEC2ContainerRegistryReadOnly: ARN; -export declare const AmazonEC2ContainerServiceAutoscaleRole: ARN; -export declare const AmazonEC2ContainerServiceFullAccess: ARN; -export declare const AmazonEC2ContainerServiceRole: ARN; -export declare const AmazonEC2ContainerServiceforEC2Role: ARN; -export declare const AmazonEC2FullAccess: ARN; -export declare const AmazonEC2ReadOnlyAccess: ARN; -export declare const AmazonEC2ReportsAccess: ARN; -export declare const AmazonEC2RoleforAWSCodeDeploy: ARN; -export declare const AmazonEC2RoleforDataPipelineRole: ARN; -export declare const AmazonEC2RoleforSSM: ARN; -export declare const AmazonEC2SpotFleetAutoscaleRole: ARN; -export declare const AmazonEC2SpotFleetRole: ARN; -export declare const AmazonESFullAccess: ARN; -export declare const AmazonESReadOnlyAccess: ARN; -export declare const AmazonElastiCacheFullAccess: ARN; -export declare const AmazonElastiCacheReadOnlyAccess: ARN; -export declare const AmazonElasticFileSystemFullAccess: ARN; -export declare const AmazonElasticFileSystemReadOnlyAccess: ARN; -export declare const AmazonElasticMapReduceFullAccess: ARN; -export declare const AmazonElasticMapReduceReadOnlyAccess: ARN; -export declare const AmazonElasticMapReduceRole: ARN; -export declare const AmazonElasticMapReduceforAutoScalingRole: ARN; -export declare const AmazonElasticMapReduceforEC2Role: ARN; -export declare const AmazonElasticTranscoderFullAccess: ARN; -export declare const AmazonElasticTranscoderJobsSubmitter: ARN; -export declare const AmazonElasticTranscoderReadOnlyAccess: ARN; -export declare const AmazonElasticTranscoderRole: ARN; -export declare const AmazonGlacierFullAccess: ARN; -export declare const AmazonGlacierReadOnlyAccess: ARN; -export declare const AmazonInspectorFullAccess: ARN; -export declare const AmazonInspectorReadOnlyAccess: ARN; -export declare const AmazonKinesisAnalyticsFullAccess: ARN; -export declare const AmazonKinesisAnalyticsReadOnly: ARN; -export declare const AmazonKinesisFirehoseFullAccess: ARN; -export declare const AmazonKinesisFirehoseReadOnlyAccess: ARN; -export declare const AmazonKinesisFullAccess: ARN; -export declare const AmazonKinesisReadOnlyAccess: ARN; -export declare const AmazonLexFullAccess: ARN; -export declare const AmazonLexReadOnly: ARN; -export declare const AmazonLexRunBotsOnly: ARN; -export declare const AmazonMachineLearningBatchPredictionsAccess: ARN; -export declare const AmazonMachineLearningCreateOnlyAccess: ARN; -export declare const AmazonMachineLearningFullAccess: ARN; -export declare const AmazonMachineLearningManageRealTimeEndpointOnlyAccess: ARN; -export declare const AmazonMachineLearningReadOnlyAccess: ARN; -export declare const AmazonMachineLearningRealTimePredictionOnlyAccess: ARN; -export declare const AmazonMachineLearningRoleforRedshiftDataSource: ARN; -export declare const AmazonMechanicalTurkFullAccess: ARN; -export declare const AmazonMechanicalTurkReadOnly: ARN; -export declare const AmazonMobileAnalyticsFinancialReportAccess: ARN; -export declare const AmazonMobileAnalyticsFullAccess: ARN; -export declare const AmazonMobileAnalyticsNonfinancialReportAccess: ARN; -export declare const AmazonMobileAnalyticsWriteOnlyAccess: ARN; -export declare const AmazonPollyFullAccess: ARN; -export declare const AmazonPollyReadOnlyAccess: ARN; -export declare const AmazonRDSDirectoryServiceAccess: ARN; -export declare const AmazonRDSEnhancedMonitoringRole: ARN; -export declare const AmazonRDSFullAccess: ARN; -export declare const AmazonRDSReadOnlyAccess: ARN; -export declare const AmazonRedshiftFullAccess: ARN; -export declare const AmazonRedshiftReadOnlyAccess: ARN; -export declare const AmazonRekognitionFullAccess: ARN; -export declare const AmazonRekognitionReadOnlyAccess: ARN; -export declare const AmazonRoute53DomainsFullAccess: ARN; -export declare const AmazonRoute53DomainsReadOnlyAccess: ARN; -export declare const AmazonRoute53FullAccess: ARN; -export declare const AmazonRoute53ReadOnlyAccess: ARN; -export declare const AmazonS3FullAccess: ARN; -export declare const AmazonS3ReadOnlyAccess: ARN; -export declare const AmazonSESFullAccess: ARN; -export declare const AmazonSESReadOnlyAccess: ARN; -export declare const AmazonSNSFullAccess: ARN; -export declare const AmazonSNSReadOnlyAccess: ARN; -export declare const AmazonSNSRole: ARN; -export declare const AmazonSQSFullAccess: ARN; -export declare const AmazonSQSReadOnlyAccess: ARN; -export declare const AmazonSSMAutomationRole: ARN; -export declare const AmazonSSMFullAccess: ARN; -export declare const AmazonSSMMaintenanceWindowRole: ARN; -export declare const AmazonSSMReadOnlyAccess: ARN; -export declare const AmazonVPCFullAccess: ARN; -export declare const AmazonVPCReadOnlyAccess: ARN; -export declare const AmazonWorkMailFullAccess: ARN; -export declare const AmazonWorkMailReadOnlyAccess: ARN; -export declare const AmazonWorkSpacesAdmin: ARN; -export declare const AmazonWorkSpacesApplicationManagerAdminAccess: ARN; -export declare const AmazonZocaloFullAccess: ARN; -export declare const AmazonZocaloReadOnlyAccess: ARN; -export declare const ApplicationAutoScalingForAmazonAppStreamAccess: ARN; -export declare const AutoScalingConsoleFullAccess: ARN; -export declare const AutoScalingConsoleReadOnlyAccess: ARN; -export declare const AutoScalingFullAccess: ARN; -export declare const AutoScalingNotificationAccessRole: ARN; -export declare const AutoScalingReadOnlyAccess: ARN; -export declare const Billing: ARN; -export declare const CloudFrontFullAccess: ARN; -export declare const CloudFrontReadOnlyAccess: ARN; -export declare const CloudSearchFullAccess: ARN; -export declare const CloudSearchReadOnlyAccess: ARN; -export declare const CloudWatchActionsEC2Access: ARN; -export declare const CloudWatchEventsBuiltInTargetExecutionAccess: ARN; -export declare const CloudWatchEventsFullAccess: ARN; -export declare const CloudWatchEventsInvocationAccess: ARN; -export declare const CloudWatchEventsReadOnlyAccess: ARN; -export declare const CloudWatchFullAccess: ARN; -export declare const CloudWatchLogsFullAccess: ARN; -export declare const CloudWatchLogsReadOnlyAccess: ARN; -export declare const CloudWatchReadOnlyAccess: ARN; -export declare const DataScientist: ARN; -export declare const DatabaseAdministrator: ARN; -export declare const IAMFullAccess: ARN; -export declare const IAMReadOnlyAccess: ARN; -export declare const IAMSelfManageServiceSpecificCredentials: ARN; -export declare const IAMUserChangePassword: ARN; -export declare const IAMUserSSHKeys: ARN; -export declare const NetworkAdministrator: ARN; -export declare const PowerUserAccess: ARN; -export declare const RDSCloudHsmAuthorizationRole: ARN; -export declare const ReadOnlyAccess: ARN; -export declare const ResourceGroupsandTagEditorFullAccess: ARN; -export declare const ResourceGroupsandTagEditorReadOnlyAccess: ARN; -export declare const SecurityAudit: ARN; -export declare const ServerMigrationConnector: ARN; -export declare const ServerMigrationServiceRole: ARN; -export declare const ServiceCatalogAdminFullAccess: ARN; -export declare const ServiceCatalogAdminReadOnlyAccess: ARN; -export declare const ServiceCatalogEndUserAccess: ARN; -export declare const ServiceCatalogEndUserFullAccess: ARN; -export declare const SimpleWorkflowFullAccess: ARN; -export declare const SupportUser: ARN; -export declare const SystemAdministrator: ARN; -export declare const VMImportExportRoleForAWSConnector: ARN; -export declare const ViewOnlyAccess: ARN; diff --git a/_typescript_docs/pulumi-aws/iam/openIdConnectProvider.d.ts b/_typescript_docs/pulumi-aws/iam/openIdConnectProvider.d.ts deleted file mode 100644 index e3083f18ea8f..000000000000 --- a/_typescript_docs/pulumi-aws/iam/openIdConnectProvider.d.ts +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/openIdConnectProvider.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class OpenIdConnectProvider extends fabric.Resource { - readonly arn: fabric.Computed; - readonly clientIdList: fabric.Computed; - readonly thumbprintList: fabric.Computed; - readonly url: fabric.Computed; - constructor(urnName: string, args: OpenIdConnectProviderArgs); -} -export interface OpenIdConnectProviderArgs { - readonly clientIdList: fabric.MaybeComputed>[]; - readonly thumbprintList: fabric.MaybeComputed>[]; - readonly url: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/policy.d.ts b/_typescript_docs/pulumi-aws/iam/policy.d.ts deleted file mode 100644 index 90a2f85bccbc..000000000000 --- a/_typescript_docs/pulumi-aws/iam/policy.d.ts +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/policy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Policy extends fabric.Resource { - readonly arn: fabric.Computed; - readonly description?: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly path?: fabric.Computed; - readonly policy: fabric.Computed; - constructor(urnName: string, args: PolicyArgs); -} -export interface PolicyArgs { - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly path?: fabric.MaybeComputed; - readonly policy: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/policyAttachment.d.ts b/_typescript_docs/pulumi-aws/iam/policyAttachment.d.ts deleted file mode 100644 index 3f65c679ca71..000000000000 --- a/_typescript_docs/pulumi-aws/iam/policyAttachment.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/policyAttachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { ARN } from "../index"; -import { Group } from "./group"; -import { Role } from "./role"; -import { User } from "./user"; -export declare class PolicyAttachment extends fabric.Resource { - readonly groups?: fabric.Computed; - readonly name: fabric.Computed; - readonly policyArn: fabric.Computed; - readonly roles?: fabric.Computed; - readonly users?: fabric.Computed; - constructor(urnName: string, args: PolicyAttachmentArgs); -} -export interface PolicyAttachmentArgs { - readonly groups?: fabric.MaybeComputed>[]; - readonly name?: fabric.MaybeComputed; - readonly policyArn: fabric.MaybeComputed; - readonly roles?: fabric.MaybeComputed>[]; - readonly users?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/iam/role.d.ts b/_typescript_docs/pulumi-aws/iam/role.d.ts deleted file mode 100644 index 2b4b2255196c..000000000000 --- a/_typescript_docs/pulumi-aws/iam/role.d.ts +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/role.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Role extends fabric.Resource { - readonly arn: fabric.Computed; - readonly assumeRolePolicy: fabric.Computed; - readonly createDate: fabric.Computed; - readonly description?: fabric.Computed; - readonly forceDetachPolicies?: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly path?: fabric.Computed; - readonly uniqueId: fabric.Computed; - constructor(urnName: string, args: RoleArgs); -} -export interface RoleArgs { - readonly assumeRolePolicy: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly forceDetachPolicies?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly path?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/rolePolicy.d.ts b/_typescript_docs/pulumi-aws/iam/rolePolicy.d.ts deleted file mode 100644 index 7f2df497ff2e..000000000000 --- a/_typescript_docs/pulumi-aws/iam/rolePolicy.d.ts +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/rolePolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class RolePolicy extends fabric.Resource { - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly policy: fabric.Computed; - readonly role: fabric.Computed; - constructor(urnName: string, args: RolePolicyArgs); -} -export interface RolePolicyArgs { - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly policy: fabric.MaybeComputed; - readonly role: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/rolePolicyAttachment.d.ts b/_typescript_docs/pulumi-aws/iam/rolePolicyAttachment.d.ts deleted file mode 100644 index 9345972a6e1d..000000000000 --- a/_typescript_docs/pulumi-aws/iam/rolePolicyAttachment.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/rolePolicyAttachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { ARN } from "../index"; -import { Role } from "./role"; -export declare class RolePolicyAttachment extends fabric.Resource { - readonly policyArn: fabric.Computed; - readonly role: fabric.Computed; - constructor(urnName: string, args: RolePolicyAttachmentArgs); -} -export interface RolePolicyAttachmentArgs { - readonly policyArn: fabric.MaybeComputed; - readonly role: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/samlProvider.d.ts b/_typescript_docs/pulumi-aws/iam/samlProvider.d.ts deleted file mode 100644 index 737136cdc593..000000000000 --- a/_typescript_docs/pulumi-aws/iam/samlProvider.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/samlProvider.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SamlProvider extends fabric.Resource { - readonly arn: fabric.Computed; - readonly name: fabric.Computed; - readonly samlMetadataDocument: fabric.Computed; - readonly validUntil: fabric.Computed; - constructor(urnName: string, args: SamlProviderArgs); -} -export interface SamlProviderArgs { - readonly name?: fabric.MaybeComputed; - readonly samlMetadataDocument: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/serverCertificate.d.ts b/_typescript_docs/pulumi-aws/iam/serverCertificate.d.ts deleted file mode 100644 index b1aa9f0237c4..000000000000 --- a/_typescript_docs/pulumi-aws/iam/serverCertificate.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/serverCertificate.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ServerCertificate extends fabric.Resource { - readonly arn: fabric.Computed; - readonly certificateBody: fabric.Computed; - readonly certificateChain?: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly path?: fabric.Computed; - readonly privateKey: fabric.Computed; - constructor(urnName: string, args: ServerCertificateArgs); -} -export interface ServerCertificateArgs { - readonly arn?: fabric.MaybeComputed; - readonly certificateBody: fabric.MaybeComputed; - readonly certificateChain?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly path?: fabric.MaybeComputed; - readonly privateKey: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/sshKey.d.ts b/_typescript_docs/pulumi-aws/iam/sshKey.d.ts deleted file mode 100644 index 19ddcaa5cec4..000000000000 --- a/_typescript_docs/pulumi-aws/iam/sshKey.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/sshKey.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SshKey extends fabric.Resource { - readonly encoding: fabric.Computed; - readonly fingerprint: fabric.Computed; - readonly publicKey: fabric.Computed; - readonly sshPublicKeyId: fabric.Computed; - readonly status: fabric.Computed; - readonly username: fabric.Computed; - constructor(urnName: string, args: SshKeyArgs); -} -export interface SshKeyArgs { - readonly encoding: fabric.MaybeComputed; - readonly publicKey: fabric.MaybeComputed; - readonly status?: fabric.MaybeComputed; - readonly username: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/user.d.ts b/_typescript_docs/pulumi-aws/iam/user.d.ts deleted file mode 100644 index 3f3650ea68b6..000000000000 --- a/_typescript_docs/pulumi-aws/iam/user.d.ts +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/user.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class User extends fabric.Resource { - readonly arn: fabric.Computed; - readonly forceDestroy?: fabric.Computed; - readonly name: fabric.Computed; - readonly path?: fabric.Computed; - readonly uniqueId: fabric.Computed; - constructor(urnName: string, args: UserArgs); -} -export interface UserArgs { - readonly forceDestroy?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly path?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/userLoginProfile.d.ts b/_typescript_docs/pulumi-aws/iam/userLoginProfile.d.ts deleted file mode 100644 index aaffeeb671a5..000000000000 --- a/_typescript_docs/pulumi-aws/iam/userLoginProfile.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/userLoginProfile.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class UserLoginProfile extends fabric.Resource { - readonly encryptedPassword: fabric.Computed; - readonly keyFingerprint: fabric.Computed; - readonly passwordLength?: fabric.Computed; - readonly passwordResetRequired?: fabric.Computed; - readonly pgpKey: fabric.Computed; - readonly user: fabric.Computed; - constructor(urnName: string, args: UserLoginProfileArgs); -} -export interface UserLoginProfileArgs { - readonly passwordLength?: fabric.MaybeComputed; - readonly passwordResetRequired?: fabric.MaybeComputed; - readonly pgpKey: fabric.MaybeComputed; - readonly user: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/userPolicy.d.ts b/_typescript_docs/pulumi-aws/iam/userPolicy.d.ts deleted file mode 100644 index 7484d95aeea9..000000000000 --- a/_typescript_docs/pulumi-aws/iam/userPolicy.d.ts +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/userPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class UserPolicy extends fabric.Resource { - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly policy: fabric.Computed; - readonly user: fabric.Computed; - constructor(urnName: string, args: UserPolicyArgs); -} -export interface UserPolicyArgs { - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly policy: fabric.MaybeComputed; - readonly user: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/iam/userPolicyAttachment.d.ts b/_typescript_docs/pulumi-aws/iam/userPolicyAttachment.d.ts deleted file mode 100644 index c8aa193055e0..000000000000 --- a/_typescript_docs/pulumi-aws/iam/userPolicyAttachment.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iam/userPolicyAttachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { ARN } from "../index"; -import { User } from "./user"; -export declare class UserPolicyAttachment extends fabric.Resource { - readonly policyArn: fabric.Computed; - readonly user: fabric.Computed; - constructor(urnName: string, args: UserPolicyAttachmentArgs); -} -export interface UserPolicyAttachmentArgs { - readonly policyArn: fabric.MaybeComputed; - readonly user: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/index.html b/_typescript_docs/pulumi-aws/index.html deleted file mode 100644 index 9f4c8d1c5c61..000000000000 --- a/_typescript_docs/pulumi-aws/index.html +++ /dev/null @@ -1,4 +0,0 @@ ---- -layout: typescript-repo -repo: pulumi-aws ---- diff --git a/_typescript_docs/pulumi-aws/inspector/assessmentTarget.d.ts b/_typescript_docs/pulumi-aws/inspector/assessmentTarget.d.ts deleted file mode 100644 index 15754f759ebf..000000000000 --- a/_typescript_docs/pulumi-aws/inspector/assessmentTarget.d.ts +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: inspector/assessmentTarget.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class AssessmentTarget extends fabric.Resource { - readonly arn: fabric.Computed; - readonly name: fabric.Computed; - readonly resourceGroupArn: fabric.Computed; - constructor(urnName: string, args: AssessmentTargetArgs); -} -export interface AssessmentTargetArgs { - readonly name?: fabric.MaybeComputed; - readonly resourceGroupArn: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/inspector/assessmentTemplate.d.ts b/_typescript_docs/pulumi-aws/inspector/assessmentTemplate.d.ts deleted file mode 100644 index 90447874375a..000000000000 --- a/_typescript_docs/pulumi-aws/inspector/assessmentTemplate.d.ts +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: inspector/assessmentTemplate.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class AssessmentTemplate extends fabric.Resource { - readonly arn: fabric.Computed; - readonly duration: fabric.Computed; - readonly name: fabric.Computed; - readonly rulesPackageArns: fabric.Computed; - readonly targetArn: fabric.Computed; - constructor(urnName: string, args: AssessmentTemplateArgs); -} -export interface AssessmentTemplateArgs { - readonly duration: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly rulesPackageArns: fabric.MaybeComputed>[]; - readonly targetArn: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/inspector/resourceGroup.d.ts b/_typescript_docs/pulumi-aws/inspector/resourceGroup.d.ts deleted file mode 100644 index 3d14c9845894..000000000000 --- a/_typescript_docs/pulumi-aws/inspector/resourceGroup.d.ts +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: inspector/resourceGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ResourceGroup extends fabric.Resource { - readonly arn: fabric.Computed; - readonly tags: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: ResourceGroupArgs); -} -export interface ResourceGroupArgs { - readonly tags: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/iot/policy.d.ts b/_typescript_docs/pulumi-aws/iot/policy.d.ts deleted file mode 100644 index 78bd78fe8b1a..000000000000 --- a/_typescript_docs/pulumi-aws/iot/policy.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: iot/policy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Policy extends fabric.Resource { - readonly arn: fabric.Computed; - readonly defaultVersionId: fabric.Computed; - readonly name: fabric.Computed; - readonly policy: fabric.Computed; - constructor(urnName: string, args: PolicyArgs); -} -export interface PolicyArgs { - readonly name?: fabric.MaybeComputed; - readonly policy: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/kinesis/firehoseDeliveryStream.d.ts b/_typescript_docs/pulumi-aws/kinesis/firehoseDeliveryStream.d.ts deleted file mode 100644 index 5fe1d1f49661..000000000000 --- a/_typescript_docs/pulumi-aws/kinesis/firehoseDeliveryStream.d.ts +++ /dev/null @@ -1,111 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: kinesis/firehoseDeliveryStream.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class FirehoseDeliveryStream extends fabric.Resource { - readonly arn: fabric.Computed; - readonly destination: fabric.Computed; - readonly destinationId: fabric.Computed; - readonly elasticsearchConfiguration?: fabric.Computed<{ - bufferingInterval?: number; - bufferingSize?: number; - cloudwatchLoggingOptions: { - enabled?: boolean; - logGroupName?: string; - logStreamName?: string; - }[]; - domainArn: string; - indexName: string; - indexRotationPeriod?: string; - retryDuration?: number; - roleArn: string; - s3BackupMode?: string; - typeName?: string; - }[]>; - readonly name: fabric.Computed; - readonly redshiftConfiguration?: fabric.Computed<{ - cloudwatchLoggingOptions: { - enabled?: boolean; - logGroupName?: string; - logStreamName?: string; - }[]; - clusterJdbcurl: string; - copyOptions?: string; - dataTableColumns?: string; - dataTableName: string; - password: string; - retryDuration?: number; - roleArn: string; - username: string; - }[]>; - readonly s3Configuration: fabric.Computed<{ - bucketArn: string; - bufferInterval?: number; - bufferSize?: number; - cloudwatchLoggingOptions: { - enabled?: boolean; - logGroupName?: string; - logStreamName?: string; - }[]; - compressionFormat?: string; - kmsKeyArn?: string; - prefix?: string; - roleArn: string; - }[]>; - readonly versionId: fabric.Computed; - constructor(urnName: string, args: FirehoseDeliveryStreamArgs); -} -export interface FirehoseDeliveryStreamArgs { - readonly arn?: fabric.MaybeComputed; - readonly destination: fabric.MaybeComputed; - readonly destinationId?: fabric.MaybeComputed; - readonly elasticsearchConfiguration?: fabric.MaybeComputed<{ - bufferingInterval?: fabric.MaybeComputed; - bufferingSize?: fabric.MaybeComputed; - cloudwatchLoggingOptions?: fabric.MaybeComputed<{ - enabled?: fabric.MaybeComputed; - logGroupName?: fabric.MaybeComputed; - logStreamName?: fabric.MaybeComputed; - }>[]; - domainArn: fabric.MaybeComputed; - indexName: fabric.MaybeComputed; - indexRotationPeriod?: fabric.MaybeComputed; - retryDuration?: fabric.MaybeComputed; - roleArn: fabric.MaybeComputed; - s3BackupMode?: fabric.MaybeComputed; - typeName?: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly redshiftConfiguration?: fabric.MaybeComputed<{ - cloudwatchLoggingOptions?: fabric.MaybeComputed<{ - enabled?: fabric.MaybeComputed; - logGroupName?: fabric.MaybeComputed; - logStreamName?: fabric.MaybeComputed; - }>[]; - clusterJdbcurl: fabric.MaybeComputed; - copyOptions?: fabric.MaybeComputed; - dataTableColumns?: fabric.MaybeComputed; - dataTableName: fabric.MaybeComputed; - password: fabric.MaybeComputed; - retryDuration?: fabric.MaybeComputed; - roleArn: fabric.MaybeComputed; - username: fabric.MaybeComputed; - }>[]; - readonly s3Configuration: fabric.MaybeComputed<{ - bucketArn: fabric.MaybeComputed; - bufferInterval?: fabric.MaybeComputed; - bufferSize?: fabric.MaybeComputed; - cloudwatchLoggingOptions?: fabric.MaybeComputed<{ - enabled?: fabric.MaybeComputed; - logGroupName?: fabric.MaybeComputed; - logStreamName?: fabric.MaybeComputed; - }>[]; - compressionFormat?: fabric.MaybeComputed; - kmsKeyArn?: fabric.MaybeComputed; - prefix?: fabric.MaybeComputed; - roleArn: fabric.MaybeComputed; - }>[]; - readonly versionId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/kinesis/stream.d.ts b/_typescript_docs/pulumi-aws/kinesis/stream.d.ts deleted file mode 100644 index 23032ff2895d..000000000000 --- a/_typescript_docs/pulumi-aws/kinesis/stream.d.ts +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: kinesis/stream.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Stream extends fabric.Resource { - readonly arn: fabric.Computed; - readonly name: fabric.Computed; - readonly retentionPeriod?: fabric.Computed; - readonly shardCount: fabric.Computed; - readonly shardLevelMetrics?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: StreamArgs); -} -export interface StreamArgs { - readonly arn?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly retentionPeriod?: fabric.MaybeComputed; - readonly shardCount: fabric.MaybeComputed; - readonly shardLevelMetrics?: fabric.MaybeComputed>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/kms/alias.d.ts b/_typescript_docs/pulumi-aws/kms/alias.d.ts deleted file mode 100644 index 1b5429bd4cb7..000000000000 --- a/_typescript_docs/pulumi-aws/kms/alias.d.ts +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: kms/alias.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Alias extends fabric.Resource { - readonly arn: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly targetKeyId: fabric.Computed; - constructor(urnName: string, args: AliasArgs); -} -export interface AliasArgs { - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly targetKeyId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/kms/key.d.ts b/_typescript_docs/pulumi-aws/kms/key.d.ts deleted file mode 100644 index 9b99c3721350..000000000000 --- a/_typescript_docs/pulumi-aws/kms/key.d.ts +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: kms/key.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Key extends fabric.Resource { - readonly arn: fabric.Computed; - readonly deletionWindowInDays?: fabric.Computed; - readonly description: fabric.Computed; - readonly enableKeyRotation?: fabric.Computed; - readonly isEnabled?: fabric.Computed; - readonly keyId: fabric.Computed; - readonly keyUsage: fabric.Computed; - readonly policy: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: KeyArgs); -} -export interface KeyArgs { - readonly deletionWindowInDays?: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly enableKeyRotation?: fabric.MaybeComputed; - readonly isEnabled?: fabric.MaybeComputed; - readonly keyUsage?: fabric.MaybeComputed; - readonly policy?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/lambda/alias.d.ts b/_typescript_docs/pulumi-aws/lambda/alias.d.ts deleted file mode 100644 index 5bb47e970f95..000000000000 --- a/_typescript_docs/pulumi-aws/lambda/alias.d.ts +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: lambda/alias.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Alias extends fabric.Resource { - readonly arn: fabric.Computed; - readonly description?: fabric.Computed; - readonly functionName: fabric.Computed; - readonly functionVersion: fabric.Computed; - readonly name: fabric.Computed; - constructor(urnName: string, args: AliasArgs); -} -export interface AliasArgs { - readonly description?: fabric.MaybeComputed; - readonly functionName: fabric.MaybeComputed; - readonly functionVersion: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/lambda/eventSourceMapping.d.ts b/_typescript_docs/pulumi-aws/lambda/eventSourceMapping.d.ts deleted file mode 100644 index 4e30298909f3..000000000000 --- a/_typescript_docs/pulumi-aws/lambda/eventSourceMapping.d.ts +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: lambda/eventSourceMapping.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class EventSourceMapping extends fabric.Resource { - readonly batchSize?: fabric.Computed; - readonly enabled?: fabric.Computed; - readonly eventSourceArn: fabric.Computed; - readonly functionArn: fabric.Computed; - readonly functionName: fabric.Computed; - readonly lastModified: fabric.Computed; - readonly lastProcessingResult: fabric.Computed; - readonly startingPosition: fabric.Computed; - readonly state: fabric.Computed; - readonly stateTransitionReason: fabric.Computed; - readonly uuid: fabric.Computed; - constructor(urnName: string, args: EventSourceMappingArgs); -} -export interface EventSourceMappingArgs { - readonly batchSize?: fabric.MaybeComputed; - readonly enabled?: fabric.MaybeComputed; - readonly eventSourceArn: fabric.MaybeComputed; - readonly functionName: fabric.MaybeComputed; - readonly startingPosition: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/lambda/function.d.ts b/_typescript_docs/pulumi-aws/lambda/function.d.ts deleted file mode 100644 index 82147467c97b..000000000000 --- a/_typescript_docs/pulumi-aws/lambda/function.d.ts +++ /dev/null @@ -1,83 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: lambda/function.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { ARN } from "../index"; -export declare class Function extends fabric.Resource { - readonly arn: fabric.Computed; - readonly deadLetterConfig?: fabric.Computed<{ - targetArn: string; - }[]>; - readonly description?: fabric.Computed; - readonly environment?: fabric.Computed<{ - variables?: { - [key: string]: string; - }; - }[]>; - readonly code?: fabric.Computed; - readonly name: fabric.Computed; - readonly handler: fabric.Computed; - readonly invokeArn: fabric.Computed; - readonly kmsKeyArn?: fabric.Computed; - readonly lastModified: fabric.Computed; - readonly memorySize?: fabric.Computed; - readonly publish?: fabric.Computed; - readonly qualifiedArn: fabric.Computed; - readonly role: fabric.Computed; - readonly runtime: fabric.Computed; - readonly s3Bucket?: fabric.Computed; - readonly s3Key?: fabric.Computed; - readonly s3ObjectVersion?: fabric.Computed; - readonly sourceCodeHash: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly timeout?: fabric.Computed; - readonly tracingConfig: fabric.Computed<{ - mode: string; - }[]>; - readonly version: fabric.Computed; - readonly vpcConfig?: fabric.Computed<{ - securityGroupIds: string[]; - subnetIds: string[]; - vpcId: string; - }[]>; - constructor(urnName: string, args: FunctionArgs); -} -export interface FunctionArgs { - readonly deadLetterConfig?: fabric.MaybeComputed<{ - targetArn: fabric.MaybeComputed; - }>[]; - readonly description?: fabric.MaybeComputed; - readonly environment?: fabric.MaybeComputed<{ - variables?: fabric.MaybeComputed<{ - [key: string]: fabric.MaybeComputed; - }>; - }>[]; - readonly code?: fabric.asset.Archive; - readonly name?: fabric.MaybeComputed; - readonly handler: fabric.MaybeComputed; - readonly kmsKeyArn?: fabric.MaybeComputed; - readonly memorySize?: fabric.MaybeComputed; - readonly publish?: fabric.MaybeComputed; - readonly role: fabric.MaybeComputed; - readonly runtime: fabric.MaybeComputed; - readonly s3Bucket?: fabric.MaybeComputed; - readonly s3Key?: fabric.MaybeComputed; - readonly s3ObjectVersion?: fabric.MaybeComputed; - readonly sourceCodeHash?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly timeout?: fabric.MaybeComputed; - readonly tracingConfig?: fabric.MaybeComputed<{ - mode: fabric.MaybeComputed; - }>[]; - readonly vpcConfig?: fabric.MaybeComputed<{ - securityGroupIds: fabric.MaybeComputed>[]; - subnetIds: fabric.MaybeComputed>[]; - vpcId?: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/lambda/permission.d.ts b/_typescript_docs/pulumi-aws/lambda/permission.d.ts deleted file mode 100644 index eb07a2b093fa..000000000000 --- a/_typescript_docs/pulumi-aws/lambda/permission.d.ts +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: lambda/permission.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { Function } from "./function"; -export declare class Permission extends fabric.Resource { - readonly action: fabric.Computed; - readonly function: fabric.Computed; - readonly principal: fabric.Computed; - readonly qualifier?: fabric.Computed; - readonly sourceAccount?: fabric.Computed; - readonly sourceArn?: fabric.Computed; - readonly statementId: fabric.Computed; - constructor(urnName: string, args: PermissionArgs); -} -export interface PermissionArgs { - readonly action: fabric.MaybeComputed; - readonly function: fabric.MaybeComputed; - readonly principal: fabric.MaybeComputed; - readonly qualifier?: fabric.MaybeComputed; - readonly sourceAccount?: fabric.MaybeComputed; - readonly sourceArn?: fabric.MaybeComputed; - readonly statementId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/lambda/runtimes.d.ts b/_typescript_docs/pulumi-aws/lambda/runtimes.d.ts deleted file mode 100644 index 936e30d80a56..000000000000 --- a/_typescript_docs/pulumi-aws/lambda/runtimes.d.ts +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: lambda/runtimes.d.ts ---- -export declare type Runtime = "dotnetcore1.0" | "java8" | "nodejs4.3-edge" | "nodejs4.3" | "nodejs6.10" | "nodejs" | "python2.7"; -export declare let DotnetCore1d0Runtime: Runtime; -export declare let Java8Runtime: Runtime; -export declare let NodeJS4d3EdgeRuntime: Runtime; -export declare let NodeJS4d3Runtime: Runtime; -export declare let NodeJS6d10Runtime: Runtime; -export declare let NodeJSRuntime: Runtime; -export declare let Python2d7Runtime: Runtime; diff --git a/_typescript_docs/pulumi-aws/lightsail/domain.d.ts b/_typescript_docs/pulumi-aws/lightsail/domain.d.ts deleted file mode 100644 index f515cd7348d7..000000000000 --- a/_typescript_docs/pulumi-aws/lightsail/domain.d.ts +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: lightsail/domain.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Domain extends fabric.Resource { - readonly arn: fabric.Computed; - readonly domainName: fabric.Computed; - constructor(urnName: string, args: DomainArgs); -} -export interface DomainArgs { - readonly domainName: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/lightsail/instance.d.ts b/_typescript_docs/pulumi-aws/lightsail/instance.d.ts deleted file mode 100644 index 3b9a7bef7913..000000000000 --- a/_typescript_docs/pulumi-aws/lightsail/instance.d.ts +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: lightsail/instance.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Instance extends fabric.Resource { - readonly arn: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly blueprintId: fabric.Computed; - readonly bundleId: fabric.Computed; - readonly cpuCount: fabric.Computed; - readonly createdAt: fabric.Computed; - readonly ipv6Address: fabric.Computed; - readonly isStaticIp: fabric.Computed; - readonly keyPairName?: fabric.Computed; - readonly name: fabric.Computed; - readonly privateIpAddress: fabric.Computed; - readonly publicIpAddress: fabric.Computed; - readonly ramSize: fabric.Computed; - readonly userData?: fabric.Computed; - readonly username: fabric.Computed; - constructor(urnName: string, args: InstanceArgs); -} -export interface InstanceArgs { - readonly availabilityZone: fabric.MaybeComputed; - readonly blueprintId: fabric.MaybeComputed; - readonly bundleId: fabric.MaybeComputed; - readonly keyPairName?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly userData?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/lightsail/keyPair.d.ts b/_typescript_docs/pulumi-aws/lightsail/keyPair.d.ts deleted file mode 100644 index 0a32a0ceb0ee..000000000000 --- a/_typescript_docs/pulumi-aws/lightsail/keyPair.d.ts +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: lightsail/keyPair.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class KeyPair extends fabric.Resource { - readonly arn: fabric.Computed; - readonly encryptedFingerprint: fabric.Computed; - readonly encryptedPrivateKey: fabric.Computed; - readonly fingerprint: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly pgpKey?: fabric.Computed; - readonly privateKey: fabric.Computed; - readonly publicKey: fabric.Computed; - constructor(urnName: string, args: KeyPairArgs); -} -export interface KeyPairArgs { - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly pgpKey?: fabric.MaybeComputed; - readonly publicKey?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/lightsail/staticIp.d.ts b/_typescript_docs/pulumi-aws/lightsail/staticIp.d.ts deleted file mode 100644 index 821df4b25831..000000000000 --- a/_typescript_docs/pulumi-aws/lightsail/staticIp.d.ts +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: lightsail/staticIp.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class StaticIp extends fabric.Resource { - readonly arn: fabric.Computed; - readonly ipAddress: fabric.Computed; - readonly name: fabric.Computed; - readonly supportCode: fabric.Computed; - constructor(urnName: string, args: StaticIpArgs); -} -export interface StaticIpArgs { - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/lightsail/staticIpAttachment.d.ts b/_typescript_docs/pulumi-aws/lightsail/staticIpAttachment.d.ts deleted file mode 100644 index 410fc42133dd..000000000000 --- a/_typescript_docs/pulumi-aws/lightsail/staticIpAttachment.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: lightsail/staticIpAttachment.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class StaticIpAttachment extends fabric.Resource { - readonly instanceName: fabric.Computed; - readonly staticIpName: fabric.Computed; - constructor(urnName: string, args: StaticIpAttachmentArgs); -} -export interface StaticIpAttachmentArgs { - readonly instanceName: fabric.MaybeComputed; - readonly staticIpName: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/application.d.ts b/_typescript_docs/pulumi-aws/opsworks/application.d.ts deleted file mode 100644 index 487a704ec30c..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/application.d.ts +++ /dev/null @@ -1,76 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/application.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Application extends fabric.Resource { - readonly appSource: fabric.Computed<{ - password?: string; - revision?: string; - sshKey?: string; - type: string; - url?: string; - username?: string; - }[]>; - readonly autoBundleOnDeploy?: fabric.Computed; - readonly awsFlowRubySettings?: fabric.Computed; - readonly dataSourceArn?: fabric.Computed; - readonly dataSourceDatabaseName?: fabric.Computed; - readonly dataSourceType?: fabric.Computed; - readonly description?: fabric.Computed; - readonly documentRoot?: fabric.Computed; - readonly domains?: fabric.Computed; - readonly enableSsl?: fabric.Computed; - readonly environment?: fabric.Computed<{ - key: string; - secure?: boolean; - value: string; - }[]>; - readonly applicationId: fabric.Computed; - readonly name: fabric.Computed; - readonly railsEnv?: fabric.Computed; - readonly shortName: fabric.Computed; - readonly sslConfiguration?: fabric.Computed<{ - certificate: string; - chain?: string; - privateKey: string; - }[]>; - readonly stackId: fabric.Computed; - readonly type: fabric.Computed; - constructor(urnName: string, args: ApplicationArgs); -} -export interface ApplicationArgs { - readonly appSource?: fabric.MaybeComputed<{ - password?: fabric.MaybeComputed; - revision?: fabric.MaybeComputed; - sshKey?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - url?: fabric.MaybeComputed; - username?: fabric.MaybeComputed; - }>[]; - readonly autoBundleOnDeploy?: fabric.MaybeComputed; - readonly awsFlowRubySettings?: fabric.MaybeComputed; - readonly dataSourceArn?: fabric.MaybeComputed; - readonly dataSourceDatabaseName?: fabric.MaybeComputed; - readonly dataSourceType?: fabric.MaybeComputed; - readonly description?: fabric.MaybeComputed; - readonly documentRoot?: fabric.MaybeComputed; - readonly domains?: fabric.MaybeComputed>[]; - readonly enableSsl?: fabric.MaybeComputed; - readonly environment?: fabric.MaybeComputed<{ - key: fabric.MaybeComputed; - secure?: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly railsEnv?: fabric.MaybeComputed; - readonly shortName?: fabric.MaybeComputed; - readonly sslConfiguration?: fabric.MaybeComputed<{ - certificate: fabric.MaybeComputed; - chain?: fabric.MaybeComputed; - privateKey: fabric.MaybeComputed; - }>[]; - readonly stackId: fabric.MaybeComputed; - readonly type: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/customLayer.d.ts b/_typescript_docs/pulumi-aws/opsworks/customLayer.d.ts deleted file mode 100644 index 94c3214fa2da..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/customLayer.d.ts +++ /dev/null @@ -1,68 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/customLayer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class CustomLayer extends fabric.Resource { - readonly autoAssignElasticIps?: fabric.Computed; - readonly autoAssignPublicIps?: fabric.Computed; - readonly autoHealing?: fabric.Computed; - readonly customConfigureRecipes?: fabric.Computed; - readonly customDeployRecipes?: fabric.Computed; - readonly customInstanceProfileArn?: fabric.Computed; - readonly customJson?: fabric.Computed; - readonly customSecurityGroupIds?: fabric.Computed; - readonly customSetupRecipes?: fabric.Computed; - readonly customShutdownRecipes?: fabric.Computed; - readonly customUndeployRecipes?: fabric.Computed; - readonly drainElbOnShutdown?: fabric.Computed; - readonly ebsVolume?: fabric.Computed<{ - iops?: number; - mountPoint: string; - numberOfDisks: number; - raidLevel?: string; - size: number; - type?: string; - }[]>; - readonly elasticLoadBalancer?: fabric.Computed; - readonly layerId: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceShutdownTimeout?: fabric.Computed; - readonly name: fabric.Computed; - readonly shortName: fabric.Computed; - readonly stackId: fabric.Computed; - readonly systemPackages?: fabric.Computed; - readonly useEbsOptimizedInstances?: fabric.Computed; - constructor(urnName: string, args: CustomLayerArgs); -} -export interface CustomLayerArgs { - readonly autoAssignElasticIps?: fabric.MaybeComputed; - readonly autoAssignPublicIps?: fabric.MaybeComputed; - readonly autoHealing?: fabric.MaybeComputed; - readonly customConfigureRecipes?: fabric.MaybeComputed>[]; - readonly customDeployRecipes?: fabric.MaybeComputed>[]; - readonly customInstanceProfileArn?: fabric.MaybeComputed; - readonly customJson?: fabric.MaybeComputed; - readonly customSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly customSetupRecipes?: fabric.MaybeComputed>[]; - readonly customShutdownRecipes?: fabric.MaybeComputed>[]; - readonly customUndeployRecipes?: fabric.MaybeComputed>[]; - readonly drainElbOnShutdown?: fabric.MaybeComputed; - readonly ebsVolume?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - mountPoint: fabric.MaybeComputed; - numberOfDisks: fabric.MaybeComputed; - raidLevel?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - }>[]; - readonly elasticLoadBalancer?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceShutdownTimeout?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly shortName: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly systemPackages?: fabric.MaybeComputed>[]; - readonly useEbsOptimizedInstances?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/gangliaLayer.d.ts b/_typescript_docs/pulumi-aws/opsworks/gangliaLayer.d.ts deleted file mode 100644 index c7529778d28d..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/gangliaLayer.d.ts +++ /dev/null @@ -1,72 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/gangliaLayer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class GangliaLayer extends fabric.Resource { - readonly autoAssignElasticIps?: fabric.Computed; - readonly autoAssignPublicIps?: fabric.Computed; - readonly autoHealing?: fabric.Computed; - readonly customConfigureRecipes?: fabric.Computed; - readonly customDeployRecipes?: fabric.Computed; - readonly customInstanceProfileArn?: fabric.Computed; - readonly customJson?: fabric.Computed; - readonly customSecurityGroupIds?: fabric.Computed; - readonly customSetupRecipes?: fabric.Computed; - readonly customShutdownRecipes?: fabric.Computed; - readonly customUndeployRecipes?: fabric.Computed; - readonly drainElbOnShutdown?: fabric.Computed; - readonly ebsVolume?: fabric.Computed<{ - iops?: number; - mountPoint: string; - numberOfDisks: number; - raidLevel?: string; - size: number; - type?: string; - }[]>; - readonly elasticLoadBalancer?: fabric.Computed; - readonly layerId: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceShutdownTimeout?: fabric.Computed; - readonly name: fabric.Computed; - readonly password: fabric.Computed; - readonly stackId: fabric.Computed; - readonly systemPackages?: fabric.Computed; - readonly url?: fabric.Computed; - readonly useEbsOptimizedInstances?: fabric.Computed; - readonly username?: fabric.Computed; - constructor(urnName: string, args: GangliaLayerArgs); -} -export interface GangliaLayerArgs { - readonly autoAssignElasticIps?: fabric.MaybeComputed; - readonly autoAssignPublicIps?: fabric.MaybeComputed; - readonly autoHealing?: fabric.MaybeComputed; - readonly customConfigureRecipes?: fabric.MaybeComputed>[]; - readonly customDeployRecipes?: fabric.MaybeComputed>[]; - readonly customInstanceProfileArn?: fabric.MaybeComputed; - readonly customJson?: fabric.MaybeComputed; - readonly customSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly customSetupRecipes?: fabric.MaybeComputed>[]; - readonly customShutdownRecipes?: fabric.MaybeComputed>[]; - readonly customUndeployRecipes?: fabric.MaybeComputed>[]; - readonly drainElbOnShutdown?: fabric.MaybeComputed; - readonly ebsVolume?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - mountPoint: fabric.MaybeComputed; - numberOfDisks: fabric.MaybeComputed; - raidLevel?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - }>[]; - readonly elasticLoadBalancer?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceShutdownTimeout?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly password: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly systemPackages?: fabric.MaybeComputed>[]; - readonly url?: fabric.MaybeComputed; - readonly useEbsOptimizedInstances?: fabric.MaybeComputed; - readonly username?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/haproxyLayer.d.ts b/_typescript_docs/pulumi-aws/opsworks/haproxyLayer.d.ts deleted file mode 100644 index e6fedfff9134..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/haproxyLayer.d.ts +++ /dev/null @@ -1,78 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/haproxyLayer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class HaproxyLayer extends fabric.Resource { - readonly autoAssignElasticIps?: fabric.Computed; - readonly autoAssignPublicIps?: fabric.Computed; - readonly autoHealing?: fabric.Computed; - readonly customConfigureRecipes?: fabric.Computed; - readonly customDeployRecipes?: fabric.Computed; - readonly customInstanceProfileArn?: fabric.Computed; - readonly customJson?: fabric.Computed; - readonly customSecurityGroupIds?: fabric.Computed; - readonly customSetupRecipes?: fabric.Computed; - readonly customShutdownRecipes?: fabric.Computed; - readonly customUndeployRecipes?: fabric.Computed; - readonly drainElbOnShutdown?: fabric.Computed; - readonly ebsVolume?: fabric.Computed<{ - iops?: number; - mountPoint: string; - numberOfDisks: number; - raidLevel?: string; - size: number; - type?: string; - }[]>; - readonly elasticLoadBalancer?: fabric.Computed; - readonly healthcheckMethod?: fabric.Computed; - readonly healthcheckUrl?: fabric.Computed; - readonly layerId: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceShutdownTimeout?: fabric.Computed; - readonly name: fabric.Computed; - readonly stackId: fabric.Computed; - readonly statsEnabled?: fabric.Computed; - readonly statsPassword: fabric.Computed; - readonly statsUrl?: fabric.Computed; - readonly statsUser?: fabric.Computed; - readonly systemPackages?: fabric.Computed; - readonly useEbsOptimizedInstances?: fabric.Computed; - constructor(urnName: string, args: HaproxyLayerArgs); -} -export interface HaproxyLayerArgs { - readonly autoAssignElasticIps?: fabric.MaybeComputed; - readonly autoAssignPublicIps?: fabric.MaybeComputed; - readonly autoHealing?: fabric.MaybeComputed; - readonly customConfigureRecipes?: fabric.MaybeComputed>[]; - readonly customDeployRecipes?: fabric.MaybeComputed>[]; - readonly customInstanceProfileArn?: fabric.MaybeComputed; - readonly customJson?: fabric.MaybeComputed; - readonly customSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly customSetupRecipes?: fabric.MaybeComputed>[]; - readonly customShutdownRecipes?: fabric.MaybeComputed>[]; - readonly customUndeployRecipes?: fabric.MaybeComputed>[]; - readonly drainElbOnShutdown?: fabric.MaybeComputed; - readonly ebsVolume?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - mountPoint: fabric.MaybeComputed; - numberOfDisks: fabric.MaybeComputed; - raidLevel?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - }>[]; - readonly elasticLoadBalancer?: fabric.MaybeComputed; - readonly healthcheckMethod?: fabric.MaybeComputed; - readonly healthcheckUrl?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceShutdownTimeout?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly statsEnabled?: fabric.MaybeComputed; - readonly statsPassword: fabric.MaybeComputed; - readonly statsUrl?: fabric.MaybeComputed; - readonly statsUser?: fabric.MaybeComputed; - readonly systemPackages?: fabric.MaybeComputed>[]; - readonly useEbsOptimizedInstances?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/instance.d.ts b/_typescript_docs/pulumi-aws/opsworks/instance.d.ts deleted file mode 100644 index 0469b15e928b..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/instance.d.ts +++ /dev/null @@ -1,132 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/instance.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Instance extends fabric.Resource { - readonly agentVersion?: fabric.Computed; - readonly amiId: fabric.Computed; - readonly architecture?: fabric.Computed; - readonly autoScalingType?: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly createdAt: fabric.Computed; - readonly deleteEbs?: fabric.Computed; - readonly deleteEip?: fabric.Computed; - readonly ebsBlockDevice: fabric.Computed<{ - deleteOnTermination?: boolean; - deviceName: string; - iops: number; - snapshotId: string; - volumeSize: number; - volumeType: string; - }[]>; - readonly ebsOptimized?: fabric.Computed; - readonly ec2InstanceId: fabric.Computed; - readonly ecsClusterArn: fabric.Computed; - readonly elasticIp: fabric.Computed; - readonly ephemeralBlockDevice: fabric.Computed<{ - deviceName: string; - virtualName: string; - }[]>; - readonly hostname: fabric.Computed; - readonly instanceId: fabric.Computed; - readonly infrastructureClass: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceProfileArn: fabric.Computed; - readonly instanceType?: fabric.Computed; - readonly lastServiceErrorId: fabric.Computed; - readonly layerIds: fabric.Computed; - readonly os: fabric.Computed; - readonly platform: fabric.Computed; - readonly privateDns: fabric.Computed; - readonly privateIp: fabric.Computed; - readonly publicDns: fabric.Computed; - readonly publicIp: fabric.Computed; - readonly registeredBy: fabric.Computed; - readonly reportedAgentVersion: fabric.Computed; - readonly reportedOsFamily: fabric.Computed; - readonly reportedOsName: fabric.Computed; - readonly reportedOsVersion: fabric.Computed; - readonly rootBlockDevice: fabric.Computed<{ - deleteOnTermination?: boolean; - iops: number; - volumeSize: number; - volumeType: string; - }[]>; - readonly rootDeviceType: fabric.Computed; - readonly rootDeviceVolumeId: fabric.Computed; - readonly securityGroupIds: fabric.Computed; - readonly sshHostDsaKeyFingerprint: fabric.Computed; - readonly sshHostRsaKeyFingerprint: fabric.Computed; - readonly sshKeyName: fabric.Computed; - readonly stackId: fabric.Computed; - readonly state?: fabric.Computed; - readonly status: fabric.Computed; - readonly subnetId: fabric.Computed; - readonly tenancy: fabric.Computed; - readonly virtualizationType: fabric.Computed; - constructor(urnName: string, args: InstanceArgs); -} -export interface InstanceArgs { - readonly agentVersion?: fabric.MaybeComputed; - readonly amiId?: fabric.MaybeComputed; - readonly architecture?: fabric.MaybeComputed; - readonly autoScalingType?: fabric.MaybeComputed; - readonly availabilityZone?: fabric.MaybeComputed; - readonly createdAt?: fabric.MaybeComputed; - readonly deleteEbs?: fabric.MaybeComputed; - readonly deleteEip?: fabric.MaybeComputed; - readonly ebsBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - deviceName: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - snapshotId?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly ebsOptimized?: fabric.MaybeComputed; - readonly ec2InstanceId?: fabric.MaybeComputed; - readonly ecsClusterArn?: fabric.MaybeComputed; - readonly elasticIp?: fabric.MaybeComputed; - readonly ephemeralBlockDevice?: fabric.MaybeComputed<{ - deviceName: fabric.MaybeComputed; - virtualName: fabric.MaybeComputed; - }>[]; - readonly hostname?: fabric.MaybeComputed; - readonly infrastructureClass?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceProfileArn?: fabric.MaybeComputed; - readonly instanceType?: fabric.MaybeComputed; - readonly lastServiceErrorId?: fabric.MaybeComputed; - readonly layerIds: fabric.MaybeComputed>[]; - readonly os?: fabric.MaybeComputed; - readonly platform?: fabric.MaybeComputed; - readonly privateDns?: fabric.MaybeComputed; - readonly privateIp?: fabric.MaybeComputed; - readonly publicDns?: fabric.MaybeComputed; - readonly publicIp?: fabric.MaybeComputed; - readonly registeredBy?: fabric.MaybeComputed; - readonly reportedAgentVersion?: fabric.MaybeComputed; - readonly reportedOsFamily?: fabric.MaybeComputed; - readonly reportedOsName?: fabric.MaybeComputed; - readonly reportedOsVersion?: fabric.MaybeComputed; - readonly rootBlockDevice?: fabric.MaybeComputed<{ - deleteOnTermination?: fabric.MaybeComputed; - iops?: fabric.MaybeComputed; - volumeSize?: fabric.MaybeComputed; - volumeType?: fabric.MaybeComputed; - }>[]; - readonly rootDeviceType?: fabric.MaybeComputed; - readonly rootDeviceVolumeId?: fabric.MaybeComputed; - readonly securityGroupIds?: fabric.MaybeComputed>[]; - readonly sshHostDsaKeyFingerprint?: fabric.MaybeComputed; - readonly sshHostRsaKeyFingerprint?: fabric.MaybeComputed; - readonly sshKeyName?: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly state?: fabric.MaybeComputed; - readonly status?: fabric.MaybeComputed; - readonly subnetId?: fabric.MaybeComputed; - readonly tenancy?: fabric.MaybeComputed; - readonly virtualizationType?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/javaAppLayer.d.ts b/_typescript_docs/pulumi-aws/opsworks/javaAppLayer.d.ts deleted file mode 100644 index 1ef833f184fe..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/javaAppLayer.d.ts +++ /dev/null @@ -1,76 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/javaAppLayer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class JavaAppLayer extends fabric.Resource { - readonly appServer?: fabric.Computed; - readonly appServerVersion?: fabric.Computed; - readonly autoAssignElasticIps?: fabric.Computed; - readonly autoAssignPublicIps?: fabric.Computed; - readonly autoHealing?: fabric.Computed; - readonly customConfigureRecipes?: fabric.Computed; - readonly customDeployRecipes?: fabric.Computed; - readonly customInstanceProfileArn?: fabric.Computed; - readonly customJson?: fabric.Computed; - readonly customSecurityGroupIds?: fabric.Computed; - readonly customSetupRecipes?: fabric.Computed; - readonly customShutdownRecipes?: fabric.Computed; - readonly customUndeployRecipes?: fabric.Computed; - readonly drainElbOnShutdown?: fabric.Computed; - readonly ebsVolume?: fabric.Computed<{ - iops?: number; - mountPoint: string; - numberOfDisks: number; - raidLevel?: string; - size: number; - type?: string; - }[]>; - readonly elasticLoadBalancer?: fabric.Computed; - readonly layerId: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceShutdownTimeout?: fabric.Computed; - readonly jvmOptions?: fabric.Computed; - readonly jvmType?: fabric.Computed; - readonly jvmVersion?: fabric.Computed; - readonly name: fabric.Computed; - readonly stackId: fabric.Computed; - readonly systemPackages?: fabric.Computed; - readonly useEbsOptimizedInstances?: fabric.Computed; - constructor(urnName: string, args: JavaAppLayerArgs); -} -export interface JavaAppLayerArgs { - readonly appServer?: fabric.MaybeComputed; - readonly appServerVersion?: fabric.MaybeComputed; - readonly autoAssignElasticIps?: fabric.MaybeComputed; - readonly autoAssignPublicIps?: fabric.MaybeComputed; - readonly autoHealing?: fabric.MaybeComputed; - readonly customConfigureRecipes?: fabric.MaybeComputed>[]; - readonly customDeployRecipes?: fabric.MaybeComputed>[]; - readonly customInstanceProfileArn?: fabric.MaybeComputed; - readonly customJson?: fabric.MaybeComputed; - readonly customSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly customSetupRecipes?: fabric.MaybeComputed>[]; - readonly customShutdownRecipes?: fabric.MaybeComputed>[]; - readonly customUndeployRecipes?: fabric.MaybeComputed>[]; - readonly drainElbOnShutdown?: fabric.MaybeComputed; - readonly ebsVolume?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - mountPoint: fabric.MaybeComputed; - numberOfDisks: fabric.MaybeComputed; - raidLevel?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - }>[]; - readonly elasticLoadBalancer?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceShutdownTimeout?: fabric.MaybeComputed; - readonly jvmOptions?: fabric.MaybeComputed; - readonly jvmType?: fabric.MaybeComputed; - readonly jvmVersion?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly systemPackages?: fabric.MaybeComputed>[]; - readonly useEbsOptimizedInstances?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/memcachedLayer.d.ts b/_typescript_docs/pulumi-aws/opsworks/memcachedLayer.d.ts deleted file mode 100644 index 303204385c8a..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/memcachedLayer.d.ts +++ /dev/null @@ -1,68 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/memcachedLayer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class MemcachedLayer extends fabric.Resource { - readonly allocatedMemory?: fabric.Computed; - readonly autoAssignElasticIps?: fabric.Computed; - readonly autoAssignPublicIps?: fabric.Computed; - readonly autoHealing?: fabric.Computed; - readonly customConfigureRecipes?: fabric.Computed; - readonly customDeployRecipes?: fabric.Computed; - readonly customInstanceProfileArn?: fabric.Computed; - readonly customJson?: fabric.Computed; - readonly customSecurityGroupIds?: fabric.Computed; - readonly customSetupRecipes?: fabric.Computed; - readonly customShutdownRecipes?: fabric.Computed; - readonly customUndeployRecipes?: fabric.Computed; - readonly drainElbOnShutdown?: fabric.Computed; - readonly ebsVolume?: fabric.Computed<{ - iops?: number; - mountPoint: string; - numberOfDisks: number; - raidLevel?: string; - size: number; - type?: string; - }[]>; - readonly elasticLoadBalancer?: fabric.Computed; - readonly layerId: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceShutdownTimeout?: fabric.Computed; - readonly name: fabric.Computed; - readonly stackId: fabric.Computed; - readonly systemPackages?: fabric.Computed; - readonly useEbsOptimizedInstances?: fabric.Computed; - constructor(urnName: string, args: MemcachedLayerArgs); -} -export interface MemcachedLayerArgs { - readonly allocatedMemory?: fabric.MaybeComputed; - readonly autoAssignElasticIps?: fabric.MaybeComputed; - readonly autoAssignPublicIps?: fabric.MaybeComputed; - readonly autoHealing?: fabric.MaybeComputed; - readonly customConfigureRecipes?: fabric.MaybeComputed>[]; - readonly customDeployRecipes?: fabric.MaybeComputed>[]; - readonly customInstanceProfileArn?: fabric.MaybeComputed; - readonly customJson?: fabric.MaybeComputed; - readonly customSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly customSetupRecipes?: fabric.MaybeComputed>[]; - readonly customShutdownRecipes?: fabric.MaybeComputed>[]; - readonly customUndeployRecipes?: fabric.MaybeComputed>[]; - readonly drainElbOnShutdown?: fabric.MaybeComputed; - readonly ebsVolume?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - mountPoint: fabric.MaybeComputed; - numberOfDisks: fabric.MaybeComputed; - raidLevel?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - }>[]; - readonly elasticLoadBalancer?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceShutdownTimeout?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly systemPackages?: fabric.MaybeComputed>[]; - readonly useEbsOptimizedInstances?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/mysqlLayer.d.ts b/_typescript_docs/pulumi-aws/opsworks/mysqlLayer.d.ts deleted file mode 100644 index 1a6f3a765157..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/mysqlLayer.d.ts +++ /dev/null @@ -1,70 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/mysqlLayer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class MysqlLayer extends fabric.Resource { - readonly autoAssignElasticIps?: fabric.Computed; - readonly autoAssignPublicIps?: fabric.Computed; - readonly autoHealing?: fabric.Computed; - readonly customConfigureRecipes?: fabric.Computed; - readonly customDeployRecipes?: fabric.Computed; - readonly customInstanceProfileArn?: fabric.Computed; - readonly customJson?: fabric.Computed; - readonly customSecurityGroupIds?: fabric.Computed; - readonly customSetupRecipes?: fabric.Computed; - readonly customShutdownRecipes?: fabric.Computed; - readonly customUndeployRecipes?: fabric.Computed; - readonly drainElbOnShutdown?: fabric.Computed; - readonly ebsVolume?: fabric.Computed<{ - iops?: number; - mountPoint: string; - numberOfDisks: number; - raidLevel?: string; - size: number; - type?: string; - }[]>; - readonly elasticLoadBalancer?: fabric.Computed; - readonly layerId: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceShutdownTimeout?: fabric.Computed; - readonly name: fabric.Computed; - readonly rootPassword?: fabric.Computed; - readonly rootPasswordOnAllInstances?: fabric.Computed; - readonly stackId: fabric.Computed; - readonly systemPackages?: fabric.Computed; - readonly useEbsOptimizedInstances?: fabric.Computed; - constructor(urnName: string, args: MysqlLayerArgs); -} -export interface MysqlLayerArgs { - readonly autoAssignElasticIps?: fabric.MaybeComputed; - readonly autoAssignPublicIps?: fabric.MaybeComputed; - readonly autoHealing?: fabric.MaybeComputed; - readonly customConfigureRecipes?: fabric.MaybeComputed>[]; - readonly customDeployRecipes?: fabric.MaybeComputed>[]; - readonly customInstanceProfileArn?: fabric.MaybeComputed; - readonly customJson?: fabric.MaybeComputed; - readonly customSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly customSetupRecipes?: fabric.MaybeComputed>[]; - readonly customShutdownRecipes?: fabric.MaybeComputed>[]; - readonly customUndeployRecipes?: fabric.MaybeComputed>[]; - readonly drainElbOnShutdown?: fabric.MaybeComputed; - readonly ebsVolume?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - mountPoint: fabric.MaybeComputed; - numberOfDisks: fabric.MaybeComputed; - raidLevel?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - }>[]; - readonly elasticLoadBalancer?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceShutdownTimeout?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly rootPassword?: fabric.MaybeComputed; - readonly rootPasswordOnAllInstances?: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly systemPackages?: fabric.MaybeComputed>[]; - readonly useEbsOptimizedInstances?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/nodejsAppLayer.d.ts b/_typescript_docs/pulumi-aws/opsworks/nodejsAppLayer.d.ts deleted file mode 100644 index bd8184b0d60b..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/nodejsAppLayer.d.ts +++ /dev/null @@ -1,68 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/nodejsAppLayer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class NodejsAppLayer extends fabric.Resource { - readonly autoAssignElasticIps?: fabric.Computed; - readonly autoAssignPublicIps?: fabric.Computed; - readonly autoHealing?: fabric.Computed; - readonly customConfigureRecipes?: fabric.Computed; - readonly customDeployRecipes?: fabric.Computed; - readonly customInstanceProfileArn?: fabric.Computed; - readonly customJson?: fabric.Computed; - readonly customSecurityGroupIds?: fabric.Computed; - readonly customSetupRecipes?: fabric.Computed; - readonly customShutdownRecipes?: fabric.Computed; - readonly customUndeployRecipes?: fabric.Computed; - readonly drainElbOnShutdown?: fabric.Computed; - readonly ebsVolume?: fabric.Computed<{ - iops?: number; - mountPoint: string; - numberOfDisks: number; - raidLevel?: string; - size: number; - type?: string; - }[]>; - readonly elasticLoadBalancer?: fabric.Computed; - readonly layerId: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceShutdownTimeout?: fabric.Computed; - readonly name: fabric.Computed; - readonly nodejsVersion?: fabric.Computed; - readonly stackId: fabric.Computed; - readonly systemPackages?: fabric.Computed; - readonly useEbsOptimizedInstances?: fabric.Computed; - constructor(urnName: string, args: NodejsAppLayerArgs); -} -export interface NodejsAppLayerArgs { - readonly autoAssignElasticIps?: fabric.MaybeComputed; - readonly autoAssignPublicIps?: fabric.MaybeComputed; - readonly autoHealing?: fabric.MaybeComputed; - readonly customConfigureRecipes?: fabric.MaybeComputed>[]; - readonly customDeployRecipes?: fabric.MaybeComputed>[]; - readonly customInstanceProfileArn?: fabric.MaybeComputed; - readonly customJson?: fabric.MaybeComputed; - readonly customSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly customSetupRecipes?: fabric.MaybeComputed>[]; - readonly customShutdownRecipes?: fabric.MaybeComputed>[]; - readonly customUndeployRecipes?: fabric.MaybeComputed>[]; - readonly drainElbOnShutdown?: fabric.MaybeComputed; - readonly ebsVolume?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - mountPoint: fabric.MaybeComputed; - numberOfDisks: fabric.MaybeComputed; - raidLevel?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - }>[]; - readonly elasticLoadBalancer?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceShutdownTimeout?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly nodejsVersion?: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly systemPackages?: fabric.MaybeComputed>[]; - readonly useEbsOptimizedInstances?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/permission.d.ts b/_typescript_docs/pulumi-aws/opsworks/permission.d.ts deleted file mode 100644 index f7a60ee4d5e8..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/permission.d.ts +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/permission.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Permission extends fabric.Resource { - readonly allowSsh: fabric.Computed; - readonly allowSudo: fabric.Computed; - readonly permissionId: fabric.Computed; - readonly level: fabric.Computed; - readonly stackId: fabric.Computed; - readonly userArn: fabric.Computed; - constructor(urnName: string, args: PermissionArgs); -} -export interface PermissionArgs { - readonly allowSsh?: fabric.MaybeComputed; - readonly allowSudo?: fabric.MaybeComputed; - readonly level?: fabric.MaybeComputed; - readonly stackId?: fabric.MaybeComputed; - readonly userArn: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/phpAppLayer.d.ts b/_typescript_docs/pulumi-aws/opsworks/phpAppLayer.d.ts deleted file mode 100644 index eb55adf2f713..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/phpAppLayer.d.ts +++ /dev/null @@ -1,66 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/phpAppLayer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class PhpAppLayer extends fabric.Resource { - readonly autoAssignElasticIps?: fabric.Computed; - readonly autoAssignPublicIps?: fabric.Computed; - readonly autoHealing?: fabric.Computed; - readonly customConfigureRecipes?: fabric.Computed; - readonly customDeployRecipes?: fabric.Computed; - readonly customInstanceProfileArn?: fabric.Computed; - readonly customJson?: fabric.Computed; - readonly customSecurityGroupIds?: fabric.Computed; - readonly customSetupRecipes?: fabric.Computed; - readonly customShutdownRecipes?: fabric.Computed; - readonly customUndeployRecipes?: fabric.Computed; - readonly drainElbOnShutdown?: fabric.Computed; - readonly ebsVolume?: fabric.Computed<{ - iops?: number; - mountPoint: string; - numberOfDisks: number; - raidLevel?: string; - size: number; - type?: string; - }[]>; - readonly elasticLoadBalancer?: fabric.Computed; - readonly layerId: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceShutdownTimeout?: fabric.Computed; - readonly name: fabric.Computed; - readonly stackId: fabric.Computed; - readonly systemPackages?: fabric.Computed; - readonly useEbsOptimizedInstances?: fabric.Computed; - constructor(urnName: string, args: PhpAppLayerArgs); -} -export interface PhpAppLayerArgs { - readonly autoAssignElasticIps?: fabric.MaybeComputed; - readonly autoAssignPublicIps?: fabric.MaybeComputed; - readonly autoHealing?: fabric.MaybeComputed; - readonly customConfigureRecipes?: fabric.MaybeComputed>[]; - readonly customDeployRecipes?: fabric.MaybeComputed>[]; - readonly customInstanceProfileArn?: fabric.MaybeComputed; - readonly customJson?: fabric.MaybeComputed; - readonly customSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly customSetupRecipes?: fabric.MaybeComputed>[]; - readonly customShutdownRecipes?: fabric.MaybeComputed>[]; - readonly customUndeployRecipes?: fabric.MaybeComputed>[]; - readonly drainElbOnShutdown?: fabric.MaybeComputed; - readonly ebsVolume?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - mountPoint: fabric.MaybeComputed; - numberOfDisks: fabric.MaybeComputed; - raidLevel?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - }>[]; - readonly elasticLoadBalancer?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceShutdownTimeout?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly systemPackages?: fabric.MaybeComputed>[]; - readonly useEbsOptimizedInstances?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/railsAppLayer.d.ts b/_typescript_docs/pulumi-aws/opsworks/railsAppLayer.d.ts deleted file mode 100644 index 8c97421595fe..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/railsAppLayer.d.ts +++ /dev/null @@ -1,78 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/railsAppLayer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class RailsAppLayer extends fabric.Resource { - readonly appServer?: fabric.Computed; - readonly autoAssignElasticIps?: fabric.Computed; - readonly autoAssignPublicIps?: fabric.Computed; - readonly autoHealing?: fabric.Computed; - readonly bundlerVersion?: fabric.Computed; - readonly customConfigureRecipes?: fabric.Computed; - readonly customDeployRecipes?: fabric.Computed; - readonly customInstanceProfileArn?: fabric.Computed; - readonly customJson?: fabric.Computed; - readonly customSecurityGroupIds?: fabric.Computed; - readonly customSetupRecipes?: fabric.Computed; - readonly customShutdownRecipes?: fabric.Computed; - readonly customUndeployRecipes?: fabric.Computed; - readonly drainElbOnShutdown?: fabric.Computed; - readonly ebsVolume?: fabric.Computed<{ - iops?: number; - mountPoint: string; - numberOfDisks: number; - raidLevel?: string; - size: number; - type?: string; - }[]>; - readonly elasticLoadBalancer?: fabric.Computed; - readonly layerId: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceShutdownTimeout?: fabric.Computed; - readonly manageBundler?: fabric.Computed; - readonly name: fabric.Computed; - readonly passengerVersion?: fabric.Computed; - readonly rubyVersion?: fabric.Computed; - readonly rubygemsVersion?: fabric.Computed; - readonly stackId: fabric.Computed; - readonly systemPackages?: fabric.Computed; - readonly useEbsOptimizedInstances?: fabric.Computed; - constructor(urnName: string, args: RailsAppLayerArgs); -} -export interface RailsAppLayerArgs { - readonly appServer?: fabric.MaybeComputed; - readonly autoAssignElasticIps?: fabric.MaybeComputed; - readonly autoAssignPublicIps?: fabric.MaybeComputed; - readonly autoHealing?: fabric.MaybeComputed; - readonly bundlerVersion?: fabric.MaybeComputed; - readonly customConfigureRecipes?: fabric.MaybeComputed>[]; - readonly customDeployRecipes?: fabric.MaybeComputed>[]; - readonly customInstanceProfileArn?: fabric.MaybeComputed; - readonly customJson?: fabric.MaybeComputed; - readonly customSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly customSetupRecipes?: fabric.MaybeComputed>[]; - readonly customShutdownRecipes?: fabric.MaybeComputed>[]; - readonly customUndeployRecipes?: fabric.MaybeComputed>[]; - readonly drainElbOnShutdown?: fabric.MaybeComputed; - readonly ebsVolume?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - mountPoint: fabric.MaybeComputed; - numberOfDisks: fabric.MaybeComputed; - raidLevel?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - }>[]; - readonly elasticLoadBalancer?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceShutdownTimeout?: fabric.MaybeComputed; - readonly manageBundler?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly passengerVersion?: fabric.MaybeComputed; - readonly rubyVersion?: fabric.MaybeComputed; - readonly rubygemsVersion?: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly systemPackages?: fabric.MaybeComputed>[]; - readonly useEbsOptimizedInstances?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/rdsDbInstance.d.ts b/_typescript_docs/pulumi-aws/opsworks/rdsDbInstance.d.ts deleted file mode 100644 index e8c077575544..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/rdsDbInstance.d.ts +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/rdsDbInstance.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class RdsDbInstance extends fabric.Resource { - readonly dbPassword: fabric.Computed; - readonly dbUser: fabric.Computed; - readonly instanceId: fabric.Computed; - readonly rdsDbInstanceArn: fabric.Computed; - readonly stackId: fabric.Computed; - constructor(urnName: string, args: RdsDbInstanceArgs); -} -export interface RdsDbInstanceArgs { - readonly dbPassword: fabric.MaybeComputed; - readonly dbUser: fabric.MaybeComputed; - readonly rdsDbInstanceArn: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/stack.d.ts b/_typescript_docs/pulumi-aws/opsworks/stack.d.ts deleted file mode 100644 index 2a673e0b8142..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/stack.d.ts +++ /dev/null @@ -1,69 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/stack.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Stack extends fabric.Resource { - readonly agentVersion: fabric.Computed; - readonly berkshelfVersion?: fabric.Computed; - readonly color?: fabric.Computed; - readonly configurationManagerName?: fabric.Computed; - readonly configurationManagerVersion?: fabric.Computed; - readonly customCookbooksSource: fabric.Computed<{ - password?: string; - revision?: string; - sshKey?: string; - type: string; - url: string; - username?: string; - }[]>; - readonly customJson?: fabric.Computed; - readonly defaultAvailabilityZone: fabric.Computed; - readonly defaultInstanceProfileArn: fabric.Computed; - readonly defaultOs?: fabric.Computed; - readonly defaultRootDeviceType?: fabric.Computed; - readonly defaultSshKeyName?: fabric.Computed; - readonly defaultSubnetId: fabric.Computed; - readonly hostnameTheme?: fabric.Computed; - readonly stackId: fabric.Computed; - readonly manageBerkshelf?: fabric.Computed; - readonly name: fabric.Computed; - readonly region: fabric.Computed; - readonly serviceRoleArn: fabric.Computed; - readonly stackEndpoint: fabric.Computed; - readonly useCustomCookbooks?: fabric.Computed; - readonly useOpsworksSecurityGroups?: fabric.Computed; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: StackArgs); -} -export interface StackArgs { - readonly agentVersion?: fabric.MaybeComputed; - readonly berkshelfVersion?: fabric.MaybeComputed; - readonly color?: fabric.MaybeComputed; - readonly configurationManagerName?: fabric.MaybeComputed; - readonly configurationManagerVersion?: fabric.MaybeComputed; - readonly customCookbooksSource?: fabric.MaybeComputed<{ - password?: fabric.MaybeComputed; - revision?: fabric.MaybeComputed; - sshKey?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - url: fabric.MaybeComputed; - username?: fabric.MaybeComputed; - }>[]; - readonly customJson?: fabric.MaybeComputed; - readonly defaultAvailabilityZone?: fabric.MaybeComputed; - readonly defaultInstanceProfileArn: fabric.MaybeComputed; - readonly defaultOs?: fabric.MaybeComputed; - readonly defaultRootDeviceType?: fabric.MaybeComputed; - readonly defaultSshKeyName?: fabric.MaybeComputed; - readonly defaultSubnetId?: fabric.MaybeComputed; - readonly hostnameTheme?: fabric.MaybeComputed; - readonly manageBerkshelf?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly region: fabric.MaybeComputed; - readonly serviceRoleArn: fabric.MaybeComputed; - readonly useCustomCookbooks?: fabric.MaybeComputed; - readonly useOpsworksSecurityGroups?: fabric.MaybeComputed; - readonly vpcId?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/staticWebLayer.d.ts b/_typescript_docs/pulumi-aws/opsworks/staticWebLayer.d.ts deleted file mode 100644 index 306f9519c5d9..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/staticWebLayer.d.ts +++ /dev/null @@ -1,66 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/staticWebLayer.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class StaticWebLayer extends fabric.Resource { - readonly autoAssignElasticIps?: fabric.Computed; - readonly autoAssignPublicIps?: fabric.Computed; - readonly autoHealing?: fabric.Computed; - readonly customConfigureRecipes?: fabric.Computed; - readonly customDeployRecipes?: fabric.Computed; - readonly customInstanceProfileArn?: fabric.Computed; - readonly customJson?: fabric.Computed; - readonly customSecurityGroupIds?: fabric.Computed; - readonly customSetupRecipes?: fabric.Computed; - readonly customShutdownRecipes?: fabric.Computed; - readonly customUndeployRecipes?: fabric.Computed; - readonly drainElbOnShutdown?: fabric.Computed; - readonly ebsVolume?: fabric.Computed<{ - iops?: number; - mountPoint: string; - numberOfDisks: number; - raidLevel?: string; - size: number; - type?: string; - }[]>; - readonly elasticLoadBalancer?: fabric.Computed; - readonly layerId: fabric.Computed; - readonly installUpdatesOnBoot?: fabric.Computed; - readonly instanceShutdownTimeout?: fabric.Computed; - readonly name: fabric.Computed; - readonly stackId: fabric.Computed; - readonly systemPackages?: fabric.Computed; - readonly useEbsOptimizedInstances?: fabric.Computed; - constructor(urnName: string, args: StaticWebLayerArgs); -} -export interface StaticWebLayerArgs { - readonly autoAssignElasticIps?: fabric.MaybeComputed; - readonly autoAssignPublicIps?: fabric.MaybeComputed; - readonly autoHealing?: fabric.MaybeComputed; - readonly customConfigureRecipes?: fabric.MaybeComputed>[]; - readonly customDeployRecipes?: fabric.MaybeComputed>[]; - readonly customInstanceProfileArn?: fabric.MaybeComputed; - readonly customJson?: fabric.MaybeComputed; - readonly customSecurityGroupIds?: fabric.MaybeComputed>[]; - readonly customSetupRecipes?: fabric.MaybeComputed>[]; - readonly customShutdownRecipes?: fabric.MaybeComputed>[]; - readonly customUndeployRecipes?: fabric.MaybeComputed>[]; - readonly drainElbOnShutdown?: fabric.MaybeComputed; - readonly ebsVolume?: fabric.MaybeComputed<{ - iops?: fabric.MaybeComputed; - mountPoint: fabric.MaybeComputed; - numberOfDisks: fabric.MaybeComputed; - raidLevel?: fabric.MaybeComputed; - size: fabric.MaybeComputed; - type?: fabric.MaybeComputed; - }>[]; - readonly elasticLoadBalancer?: fabric.MaybeComputed; - readonly installUpdatesOnBoot?: fabric.MaybeComputed; - readonly instanceShutdownTimeout?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly stackId: fabric.MaybeComputed; - readonly systemPackages?: fabric.MaybeComputed>[]; - readonly useEbsOptimizedInstances?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/opsworks/userProfile.d.ts b/_typescript_docs/pulumi-aws/opsworks/userProfile.d.ts deleted file mode 100644 index ee50d4d005fb..000000000000 --- a/_typescript_docs/pulumi-aws/opsworks/userProfile.d.ts +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: opsworks/userProfile.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class UserProfile extends fabric.Resource { - readonly allowSelfManagement?: fabric.Computed; - readonly profileId: fabric.Computed; - readonly sshPublicKey?: fabric.Computed; - readonly sshUsername: fabric.Computed; - readonly userArn: fabric.Computed; - constructor(urnName: string, args: UserProfileArgs); -} -export interface UserProfileArgs { - readonly allowSelfManagement?: fabric.MaybeComputed; - readonly sshPublicKey?: fabric.MaybeComputed; - readonly sshUsername: fabric.MaybeComputed; - readonly userArn: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/rds/cluster.d.ts b/_typescript_docs/pulumi-aws/rds/cluster.d.ts deleted file mode 100644 index 7adb0376f4d7..000000000000 --- a/_typescript_docs/pulumi-aws/rds/cluster.d.ts +++ /dev/null @@ -1,65 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: rds/cluster.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Cluster extends fabric.Resource { - readonly applyImmediately: fabric.Computed; - readonly availabilityZones: fabric.Computed; - readonly backupRetentionPeriod?: fabric.Computed; - readonly clusterIdentifier: fabric.Computed; - readonly clusterIdentifierPrefix: fabric.Computed; - readonly clusterMembers: fabric.Computed; - readonly clusterResourceId: fabric.Computed; - readonly databaseName: fabric.Computed; - readonly dbClusterParameterGroupName: fabric.Computed; - readonly dbSubnetGroupName: fabric.Computed; - readonly endpoint: fabric.Computed; - readonly engine: fabric.Computed; - readonly finalSnapshotIdentifier?: fabric.Computed; - readonly iamDatabaseAuthenticationEnabled?: fabric.Computed; - readonly kmsKeyId: fabric.Computed; - readonly masterPassword?: fabric.Computed; - readonly masterUsername: fabric.Computed; - readonly port: fabric.Computed; - readonly preferredBackupWindow: fabric.Computed; - readonly preferredMaintenanceWindow: fabric.Computed; - readonly readerEndpoint: fabric.Computed; - readonly replicationSourceIdentifier?: fabric.Computed; - readonly skipFinalSnapshot?: fabric.Computed; - readonly snapshotIdentifier?: fabric.Computed; - readonly storageEncrypted?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcSecurityGroupIds: fabric.Computed; - constructor(urnName: string, args: ClusterArgs); -} -export interface ClusterArgs { - readonly applyImmediately?: fabric.MaybeComputed; - readonly availabilityZones?: fabric.MaybeComputed>[]; - readonly backupRetentionPeriod?: fabric.MaybeComputed; - readonly clusterIdentifier?: fabric.MaybeComputed; - readonly clusterIdentifierPrefix?: fabric.MaybeComputed; - readonly clusterMembers?: fabric.MaybeComputed>[]; - readonly databaseName?: fabric.MaybeComputed; - readonly dbClusterParameterGroupName?: fabric.MaybeComputed; - readonly dbSubnetGroupName?: fabric.MaybeComputed; - readonly finalSnapshotIdentifier?: fabric.MaybeComputed; - readonly iamDatabaseAuthenticationEnabled?: fabric.MaybeComputed; - readonly kmsKeyId?: fabric.MaybeComputed; - readonly masterPassword?: fabric.MaybeComputed; - readonly masterUsername?: fabric.MaybeComputed; - readonly port?: fabric.MaybeComputed; - readonly preferredBackupWindow?: fabric.MaybeComputed; - readonly preferredMaintenanceWindow?: fabric.MaybeComputed; - readonly replicationSourceIdentifier?: fabric.MaybeComputed; - readonly skipFinalSnapshot?: fabric.MaybeComputed; - readonly snapshotIdentifier?: fabric.MaybeComputed; - readonly storageEncrypted?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcSecurityGroupIds?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/rds/clusterInstance.d.ts b/_typescript_docs/pulumi-aws/rds/clusterInstance.d.ts deleted file mode 100644 index dd69d89c7e5f..000000000000 --- a/_typescript_docs/pulumi-aws/rds/clusterInstance.d.ts +++ /dev/null @@ -1,51 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: rds/clusterInstance.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ClusterInstance extends fabric.Resource { - readonly applyImmediately: fabric.Computed; - readonly autoMinorVersionUpgrade?: fabric.Computed; - readonly clusterIdentifier: fabric.Computed; - readonly dbParameterGroupName: fabric.Computed; - readonly dbSubnetGroupName: fabric.Computed; - readonly dbiResourceId: fabric.Computed; - readonly endpoint: fabric.Computed; - readonly identifier: fabric.Computed; - readonly identifierPrefix: fabric.Computed; - readonly instanceClass: fabric.Computed; - readonly kmsKeyId: fabric.Computed; - readonly monitoringInterval?: fabric.Computed; - readonly monitoringRoleArn: fabric.Computed; - readonly port: fabric.Computed; - readonly preferredBackupWindow: fabric.Computed; - readonly preferredMaintenanceWindow: fabric.Computed; - readonly promotionTier?: fabric.Computed; - readonly publiclyAccessible?: fabric.Computed; - readonly storageEncrypted: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly writer: fabric.Computed; - constructor(urnName: string, args: ClusterInstanceArgs); -} -export interface ClusterInstanceArgs { - readonly applyImmediately?: fabric.MaybeComputed; - readonly autoMinorVersionUpgrade?: fabric.MaybeComputed; - readonly clusterIdentifier: fabric.MaybeComputed; - readonly dbParameterGroupName?: fabric.MaybeComputed; - readonly dbSubnetGroupName?: fabric.MaybeComputed; - readonly identifier?: fabric.MaybeComputed; - readonly identifierPrefix?: fabric.MaybeComputed; - readonly instanceClass: fabric.MaybeComputed; - readonly monitoringInterval?: fabric.MaybeComputed; - readonly monitoringRoleArn?: fabric.MaybeComputed; - readonly preferredBackupWindow?: fabric.MaybeComputed; - readonly preferredMaintenanceWindow?: fabric.MaybeComputed; - readonly promotionTier?: fabric.MaybeComputed; - readonly publiclyAccessible?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/rds/clusterParameterGroup.d.ts b/_typescript_docs/pulumi-aws/rds/clusterParameterGroup.d.ts deleted file mode 100644 index 2b09d820e49f..000000000000 --- a/_typescript_docs/pulumi-aws/rds/clusterParameterGroup.d.ts +++ /dev/null @@ -1,36 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: rds/clusterParameterGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ClusterParameterGroup extends fabric.Resource { - readonly arn: fabric.Computed; - readonly description?: fabric.Computed; - readonly family: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix: fabric.Computed; - readonly parameter?: fabric.Computed<{ - applyMethod?: string; - name: string; - value: string; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: ClusterParameterGroupArgs); -} -export interface ClusterParameterGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly family: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly parameter?: fabric.MaybeComputed<{ - applyMethod?: fabric.MaybeComputed; - name: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/rds/eventSubscription.d.ts b/_typescript_docs/pulumi-aws/rds/eventSubscription.d.ts deleted file mode 100644 index 42f29ba8fb7f..000000000000 --- a/_typescript_docs/pulumi-aws/rds/eventSubscription.d.ts +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: rds/eventSubscription.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class EventSubscription extends fabric.Resource { - readonly customerAwsId: fabric.Computed; - readonly enabled?: fabric.Computed; - readonly eventCategories?: fabric.Computed; - readonly name: fabric.Computed; - readonly snsTopic: fabric.Computed; - readonly sourceIds?: fabric.Computed; - readonly sourceType?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: EventSubscriptionArgs); -} -export interface EventSubscriptionArgs { - readonly enabled?: fabric.MaybeComputed; - readonly eventCategories?: fabric.MaybeComputed>[]; - readonly name?: fabric.MaybeComputed; - readonly snsTopic: fabric.MaybeComputed; - readonly sourceIds?: fabric.MaybeComputed>[]; - readonly sourceType?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/rds/instance.d.ts b/_typescript_docs/pulumi-aws/rds/instance.d.ts deleted file mode 100644 index 4dcb3cd7206e..000000000000 --- a/_typescript_docs/pulumi-aws/rds/instance.d.ts +++ /dev/null @@ -1,102 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: rds/instance.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Instance extends fabric.Resource { - readonly address: fabric.Computed; - readonly allocatedStorage: fabric.Computed; - readonly allowMajorVersionUpgrade?: fabric.Computed; - readonly applyImmediately: fabric.Computed; - readonly arn: fabric.Computed; - readonly autoMinorVersionUpgrade?: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly backupRetentionPeriod: fabric.Computed; - readonly backupWindow: fabric.Computed; - readonly characterSetName: fabric.Computed; - readonly copyTagsToSnapshot?: fabric.Computed; - readonly dbSubnetGroupName: fabric.Computed; - readonly endpoint: fabric.Computed; - readonly engine: fabric.Computed; - readonly engineVersion: fabric.Computed; - readonly finalSnapshotIdentifier?: fabric.Computed; - readonly hostedZoneId: fabric.Computed; - readonly iamDatabaseAuthenticationEnabled?: fabric.Computed; - readonly identifier: fabric.Computed; - readonly identifierPrefix: fabric.Computed; - readonly instanceClass: fabric.Computed; - readonly iops?: fabric.Computed; - readonly kmsKeyId: fabric.Computed; - readonly licenseModel: fabric.Computed; - readonly maintenanceWindow: fabric.Computed; - readonly monitoringInterval?: fabric.Computed; - readonly monitoringRoleArn: fabric.Computed; - readonly multiAz: fabric.Computed; - readonly name: fabric.Computed; - readonly optionGroupName: fabric.Computed; - readonly parameterGroupName: fabric.Computed; - readonly password?: fabric.Computed; - readonly port: fabric.Computed; - readonly publiclyAccessible?: fabric.Computed; - readonly replicas: fabric.Computed; - readonly replicateSourceDb?: fabric.Computed; - readonly resourceId: fabric.Computed; - readonly securityGroupNames?: fabric.Computed; - readonly skipFinalSnapshot?: fabric.Computed; - readonly snapshotIdentifier?: fabric.Computed; - readonly status: fabric.Computed; - readonly storageEncrypted?: fabric.Computed; - readonly storageType: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly timezone: fabric.Computed; - readonly username: fabric.Computed; - readonly vpcSecurityGroupIds: fabric.Computed; - constructor(urnName: string, args: InstanceArgs); -} -export interface InstanceArgs { - readonly allocatedStorage?: fabric.MaybeComputed; - readonly allowMajorVersionUpgrade?: fabric.MaybeComputed; - readonly applyImmediately?: fabric.MaybeComputed; - readonly autoMinorVersionUpgrade?: fabric.MaybeComputed; - readonly availabilityZone?: fabric.MaybeComputed; - readonly backupRetentionPeriod?: fabric.MaybeComputed; - readonly backupWindow?: fabric.MaybeComputed; - readonly characterSetName?: fabric.MaybeComputed; - readonly copyTagsToSnapshot?: fabric.MaybeComputed; - readonly dbSubnetGroupName?: fabric.MaybeComputed; - readonly engine?: fabric.MaybeComputed; - readonly engineVersion?: fabric.MaybeComputed; - readonly finalSnapshotIdentifier?: fabric.MaybeComputed; - readonly iamDatabaseAuthenticationEnabled?: fabric.MaybeComputed; - readonly identifier?: fabric.MaybeComputed; - readonly identifierPrefix?: fabric.MaybeComputed; - readonly instanceClass: fabric.MaybeComputed; - readonly iops?: fabric.MaybeComputed; - readonly kmsKeyId?: fabric.MaybeComputed; - readonly licenseModel?: fabric.MaybeComputed; - readonly maintenanceWindow?: fabric.MaybeComputed; - readonly monitoringInterval?: fabric.MaybeComputed; - readonly monitoringRoleArn?: fabric.MaybeComputed; - readonly multiAz?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly optionGroupName?: fabric.MaybeComputed; - readonly parameterGroupName?: fabric.MaybeComputed; - readonly password?: fabric.MaybeComputed; - readonly port?: fabric.MaybeComputed; - readonly publiclyAccessible?: fabric.MaybeComputed; - readonly replicateSourceDb?: fabric.MaybeComputed; - readonly securityGroupNames?: fabric.MaybeComputed>[]; - readonly skipFinalSnapshot?: fabric.MaybeComputed; - readonly snapshotIdentifier?: fabric.MaybeComputed; - readonly storageEncrypted?: fabric.MaybeComputed; - readonly storageType?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly timezone?: fabric.MaybeComputed; - readonly username?: fabric.MaybeComputed; - readonly vpcSecurityGroupIds?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/rds/optionGroup.d.ts b/_typescript_docs/pulumi-aws/rds/optionGroup.d.ts deleted file mode 100644 index 2570cf278a5f..000000000000 --- a/_typescript_docs/pulumi-aws/rds/optionGroup.d.ts +++ /dev/null @@ -1,48 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: rds/optionGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class OptionGroup extends fabric.Resource { - readonly arn: fabric.Computed; - readonly engineName: fabric.Computed; - readonly majorEngineVersion: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix: fabric.Computed; - readonly option?: fabric.Computed<{ - dbSecurityGroupMemberships?: string[]; - optionName: string; - optionSettings?: { - name: string; - value: string; - }[]; - port?: number; - vpcSecurityGroupMemberships?: string[]; - }[]>; - readonly optionGroupDescription?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: OptionGroupArgs); -} -export interface OptionGroupArgs { - readonly engineName: fabric.MaybeComputed; - readonly majorEngineVersion: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly option?: fabric.MaybeComputed<{ - dbSecurityGroupMemberships?: fabric.MaybeComputed>[]; - optionName: fabric.MaybeComputed; - optionSettings?: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - port?: fabric.MaybeComputed; - vpcSecurityGroupMemberships?: fabric.MaybeComputed>[]; - }>[]; - readonly optionGroupDescription?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/rds/parameterGroup.d.ts b/_typescript_docs/pulumi-aws/rds/parameterGroup.d.ts deleted file mode 100644 index fc2ca71f3836..000000000000 --- a/_typescript_docs/pulumi-aws/rds/parameterGroup.d.ts +++ /dev/null @@ -1,36 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: rds/parameterGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ParameterGroup extends fabric.Resource { - readonly arn: fabric.Computed; - readonly description?: fabric.Computed; - readonly family: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix: fabric.Computed; - readonly parameter?: fabric.Computed<{ - applyMethod?: string; - name: string; - value: string; - }[]>; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: ParameterGroupArgs); -} -export interface ParameterGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly family: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly parameter?: fabric.MaybeComputed<{ - applyMethod?: fabric.MaybeComputed; - name: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/rds/securityGroup.d.ts b/_typescript_docs/pulumi-aws/rds/securityGroup.d.ts deleted file mode 100644 index 0f5c31d4dd60..000000000000 --- a/_typescript_docs/pulumi-aws/rds/securityGroup.d.ts +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: rds/securityGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SecurityGroup extends fabric.Resource { - readonly arn: fabric.Computed; - readonly description?: fabric.Computed; - readonly ingress: fabric.Computed<{ - cidr?: string; - securityGroupId: string; - securityGroupName: string; - securityGroupOwnerId: string; - }[]>; - readonly name: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: SecurityGroupArgs); -} -export interface SecurityGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly ingress: fabric.MaybeComputed<{ - cidr?: fabric.MaybeComputed; - securityGroupId?: fabric.MaybeComputed; - securityGroupName?: fabric.MaybeComputed; - securityGroupOwnerId?: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/rds/snapshot.d.ts b/_typescript_docs/pulumi-aws/rds/snapshot.d.ts deleted file mode 100644 index f3c11b8f7beb..000000000000 --- a/_typescript_docs/pulumi-aws/rds/snapshot.d.ts +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: rds/snapshot.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Snapshot extends fabric.Resource { - readonly allocatedStorage: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly dbInstanceIdentifier: fabric.Computed; - readonly dbSnapshotArn: fabric.Computed; - readonly dbSnapshotIdentifier: fabric.Computed; - readonly encrypted: fabric.Computed; - readonly engine: fabric.Computed; - readonly engineVersion: fabric.Computed; - readonly iops: fabric.Computed; - readonly kmsKeyId: fabric.Computed; - readonly licenseModel: fabric.Computed; - readonly optionGroupName: fabric.Computed; - readonly port: fabric.Computed; - readonly snapshotType: fabric.Computed; - readonly sourceDbSnapshotIdentifier: fabric.Computed; - readonly sourceRegion: fabric.Computed; - readonly status: fabric.Computed; - readonly storageType: fabric.Computed; - readonly vpcId: fabric.Computed; - constructor(urnName: string, args: SnapshotArgs); -} -export interface SnapshotArgs { - readonly dbInstanceIdentifier: fabric.MaybeComputed; - readonly dbSnapshotIdentifier: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/rds/subnetGroup.d.ts b/_typescript_docs/pulumi-aws/rds/subnetGroup.d.ts deleted file mode 100644 index 665096724271..000000000000 --- a/_typescript_docs/pulumi-aws/rds/subnetGroup.d.ts +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: rds/subnetGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SubnetGroup extends fabric.Resource { - readonly arn: fabric.Computed; - readonly description?: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix: fabric.Computed; - readonly subnetIds: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: SubnetGroupArgs); -} -export interface SubnetGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly subnetIds: fabric.MaybeComputed>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/redshift/cluster.d.ts b/_typescript_docs/pulumi-aws/redshift/cluster.d.ts deleted file mode 100644 index 86243abcb8f8..000000000000 --- a/_typescript_docs/pulumi-aws/redshift/cluster.d.ts +++ /dev/null @@ -1,85 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: redshift/cluster.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Cluster extends fabric.Resource { - readonly allowVersionUpgrade?: fabric.Computed; - readonly automatedSnapshotRetentionPeriod?: fabric.Computed; - readonly availabilityZone: fabric.Computed; - readonly bucketName: fabric.Computed; - readonly clusterIdentifier: fabric.Computed; - readonly clusterParameterGroupName: fabric.Computed; - readonly clusterPublicKey: fabric.Computed; - readonly clusterRevisionNumber: fabric.Computed; - readonly clusterSecurityGroups: fabric.Computed; - readonly clusterSubnetGroupName: fabric.Computed; - readonly clusterType: fabric.Computed; - readonly clusterVersion?: fabric.Computed; - readonly databaseName: fabric.Computed; - readonly elasticIp?: fabric.Computed; - readonly enableLogging?: fabric.Computed; - readonly encrypted: fabric.Computed; - readonly endpoint: fabric.Computed; - readonly enhancedVpcRouting: fabric.Computed; - readonly finalSnapshotIdentifier?: fabric.Computed; - readonly iamRoles: fabric.Computed; - readonly kmsKeyId: fabric.Computed; - readonly masterPassword?: fabric.Computed; - readonly masterUsername?: fabric.Computed; - readonly nodeType: fabric.Computed; - readonly numberOfNodes?: fabric.Computed; - readonly ownerAccount?: fabric.Computed; - readonly port?: fabric.Computed; - readonly preferredMaintenanceWindow: fabric.Computed; - readonly publiclyAccessible?: fabric.Computed; - readonly s3KeyPrefix: fabric.Computed; - readonly skipFinalSnapshot?: fabric.Computed; - readonly snapshotClusterIdentifier?: fabric.Computed; - readonly snapshotIdentifier?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcSecurityGroupIds: fabric.Computed; - constructor(urnName: string, args: ClusterArgs); -} -export interface ClusterArgs { - readonly allowVersionUpgrade?: fabric.MaybeComputed; - readonly automatedSnapshotRetentionPeriod?: fabric.MaybeComputed; - readonly availabilityZone?: fabric.MaybeComputed; - readonly bucketName?: fabric.MaybeComputed; - readonly clusterIdentifier: fabric.MaybeComputed; - readonly clusterParameterGroupName?: fabric.MaybeComputed; - readonly clusterPublicKey?: fabric.MaybeComputed; - readonly clusterRevisionNumber?: fabric.MaybeComputed; - readonly clusterSecurityGroups?: fabric.MaybeComputed>[]; - readonly clusterSubnetGroupName?: fabric.MaybeComputed; - readonly clusterType?: fabric.MaybeComputed; - readonly clusterVersion?: fabric.MaybeComputed; - readonly databaseName?: fabric.MaybeComputed; - readonly elasticIp?: fabric.MaybeComputed; - readonly enableLogging?: fabric.MaybeComputed; - readonly encrypted?: fabric.MaybeComputed; - readonly endpoint?: fabric.MaybeComputed; - readonly enhancedVpcRouting?: fabric.MaybeComputed; - readonly finalSnapshotIdentifier?: fabric.MaybeComputed; - readonly iamRoles?: fabric.MaybeComputed>[]; - readonly kmsKeyId?: fabric.MaybeComputed; - readonly masterPassword?: fabric.MaybeComputed; - readonly masterUsername?: fabric.MaybeComputed; - readonly nodeType: fabric.MaybeComputed; - readonly numberOfNodes?: fabric.MaybeComputed; - readonly ownerAccount?: fabric.MaybeComputed; - readonly port?: fabric.MaybeComputed; - readonly preferredMaintenanceWindow?: fabric.MaybeComputed; - readonly publiclyAccessible?: fabric.MaybeComputed; - readonly s3KeyPrefix?: fabric.MaybeComputed; - readonly skipFinalSnapshot?: fabric.MaybeComputed; - readonly snapshotClusterIdentifier?: fabric.MaybeComputed; - readonly snapshotIdentifier?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcSecurityGroupIds?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/redshift/parameterGroup.d.ts b/_typescript_docs/pulumi-aws/redshift/parameterGroup.d.ts deleted file mode 100644 index f6688278196c..000000000000 --- a/_typescript_docs/pulumi-aws/redshift/parameterGroup.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: redshift/parameterGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ParameterGroup extends fabric.Resource { - readonly description?: fabric.Computed; - readonly family: fabric.Computed; - readonly name: fabric.Computed; - readonly parameter?: fabric.Computed<{ - name: string; - value: string; - }[]>; - constructor(urnName: string, args: ParameterGroupArgs); -} -export interface ParameterGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly family: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly parameter?: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/redshift/securityGroup.d.ts b/_typescript_docs/pulumi-aws/redshift/securityGroup.d.ts deleted file mode 100644 index d28ae5248958..000000000000 --- a/_typescript_docs/pulumi-aws/redshift/securityGroup.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: redshift/securityGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SecurityGroup extends fabric.Resource { - readonly description?: fabric.Computed; - readonly ingress: fabric.Computed<{ - cidr?: string; - securityGroupName: string; - securityGroupOwnerId: string; - }[]>; - readonly name: fabric.Computed; - constructor(urnName: string, args: SecurityGroupArgs); -} -export interface SecurityGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly ingress: fabric.MaybeComputed<{ - cidr?: fabric.MaybeComputed; - securityGroupName?: fabric.MaybeComputed; - securityGroupOwnerId?: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/redshift/subnetGroup.d.ts b/_typescript_docs/pulumi-aws/redshift/subnetGroup.d.ts deleted file mode 100644 index d3a71e54bb38..000000000000 --- a/_typescript_docs/pulumi-aws/redshift/subnetGroup.d.ts +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: redshift/subnetGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SubnetGroup extends fabric.Resource { - readonly description?: fabric.Computed; - readonly name: fabric.Computed; - readonly subnetIds: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - constructor(urnName: string, args: SubnetGroupArgs); -} -export interface SubnetGroupArgs { - readonly description?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly subnetIds: fabric.MaybeComputed>[]; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; -} diff --git a/_typescript_docs/pulumi-aws/region.d.ts b/_typescript_docs/pulumi-aws/region.d.ts deleted file mode 100644 index 6e5c65f0201a..000000000000 --- a/_typescript_docs/pulumi-aws/region.d.ts +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: region.d.ts ---- -export declare let APNortheast1Region: Region; -export declare let APNortheast2Region: Region; -export declare let APSouth1Region: Region; -export declare let APSouthEast2Region: Region; -export declare let APSoutheast1Region: Region; -export declare let CACentralRegion: Region; -export declare let EUCentral1Region: Region; -export declare let EUWest1Region: Region; -export declare let EUWest2Region: Region; -export declare let SAEast1Region: Region; -export declare let USEast1Region: Region; -export declare let USEast2Region: Region; -export declare let USWest1Region: Region; -export declare let USWest2Region: Region; -export declare type Region = "ap-northeast-1" | "ap-northeast-2" | "ap-south-1" | "ap-southeast-2" | "ap-southeast-1" | "ca-central" | "eu-central-1" | "eu-west-1" | "eu-west-2" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2"; diff --git a/_typescript_docs/pulumi-aws/route53/delegationSet.d.ts b/_typescript_docs/pulumi-aws/route53/delegationSet.d.ts deleted file mode 100644 index 6e3a773c8bb0..000000000000 --- a/_typescript_docs/pulumi-aws/route53/delegationSet.d.ts +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: route53/delegationSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DelegationSet extends fabric.Resource { - readonly nameServers: fabric.Computed; - readonly referenceName?: fabric.Computed; - constructor(urnName: string, args: DelegationSetArgs); -} -export interface DelegationSetArgs { - readonly referenceName?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/route53/healthCheck.d.ts b/_typescript_docs/pulumi-aws/route53/healthCheck.d.ts deleted file mode 100644 index 4a050173d86d..000000000000 --- a/_typescript_docs/pulumi-aws/route53/healthCheck.d.ts +++ /dev/null @@ -1,53 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: route53/healthCheck.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class HealthCheck extends fabric.Resource { - readonly childHealthThreshold?: fabric.Computed; - readonly childHealthchecks?: fabric.Computed; - readonly cloudwatchAlarmName?: fabric.Computed; - readonly cloudwatchAlarmRegion?: fabric.Computed; - readonly enableSni: fabric.Computed; - readonly failureThreshold?: fabric.Computed; - readonly fqdn?: fabric.Computed; - readonly insufficientDataHealthStatus?: fabric.Computed; - readonly invertHealthcheck?: fabric.Computed; - readonly ipAddress?: fabric.Computed; - readonly measureLatency?: fabric.Computed; - readonly port?: fabric.Computed; - readonly referenceName?: fabric.Computed; - readonly regions?: fabric.Computed; - readonly requestInterval?: fabric.Computed; - readonly resourcePath?: fabric.Computed; - readonly searchString?: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly type: fabric.Computed; - constructor(urnName: string, args: HealthCheckArgs); -} -export interface HealthCheckArgs { - readonly childHealthThreshold?: fabric.MaybeComputed; - readonly childHealthchecks?: fabric.MaybeComputed>[]; - readonly cloudwatchAlarmName?: fabric.MaybeComputed; - readonly cloudwatchAlarmRegion?: fabric.MaybeComputed; - readonly enableSni?: fabric.MaybeComputed; - readonly failureThreshold?: fabric.MaybeComputed; - readonly fqdn?: fabric.MaybeComputed; - readonly insufficientDataHealthStatus?: fabric.MaybeComputed; - readonly invertHealthcheck?: fabric.MaybeComputed; - readonly ipAddress?: fabric.MaybeComputed; - readonly measureLatency?: fabric.MaybeComputed; - readonly port?: fabric.MaybeComputed; - readonly referenceName?: fabric.MaybeComputed; - readonly regions?: fabric.MaybeComputed>[]; - readonly requestInterval?: fabric.MaybeComputed; - readonly resourcePath?: fabric.MaybeComputed; - readonly searchString?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly type: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/route53/record.d.ts b/_typescript_docs/pulumi-aws/route53/record.d.ts deleted file mode 100644 index 6a4c3366a333..000000000000 --- a/_typescript_docs/pulumi-aws/route53/record.d.ts +++ /dev/null @@ -1,64 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: route53/record.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Record extends fabric.Resource { - readonly alias?: fabric.Computed<{ - evaluateTargetHealth: boolean; - name: string; - zoneId: string; - }[]>; - readonly failoverRoutingPolicy?: fabric.Computed<{ - type: string; - }[]>; - readonly fqdn: fabric.Computed; - readonly geolocationRoutingPolicy?: fabric.Computed<{ - continent?: string; - country?: string; - subdivision?: string; - }[]>; - readonly healthCheckId?: fabric.Computed; - readonly latencyRoutingPolicy?: fabric.Computed<{ - region: string; - }[]>; - readonly name: fabric.Computed; - readonly records?: fabric.Computed; - readonly setIdentifier?: fabric.Computed; - readonly ttl?: fabric.Computed; - readonly type: fabric.Computed; - readonly weightedRoutingPolicy?: fabric.Computed<{ - weight: number; - }[]>; - readonly zoneId: fabric.Computed; - constructor(urnName: string, args: RecordArgs); -} -export interface RecordArgs { - readonly alias?: fabric.MaybeComputed<{ - evaluateTargetHealth: fabric.MaybeComputed; - name: fabric.MaybeComputed; - zoneId: fabric.MaybeComputed; - }>[]; - readonly failoverRoutingPolicy?: fabric.MaybeComputed<{ - type: fabric.MaybeComputed; - }>[]; - readonly geolocationRoutingPolicy?: fabric.MaybeComputed<{ - continent?: fabric.MaybeComputed; - country?: fabric.MaybeComputed; - subdivision?: fabric.MaybeComputed; - }>[]; - readonly healthCheckId?: fabric.MaybeComputed; - readonly latencyRoutingPolicy?: fabric.MaybeComputed<{ - region: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly records?: fabric.MaybeComputed>[]; - readonly setIdentifier?: fabric.MaybeComputed; - readonly ttl?: fabric.MaybeComputed; - readonly type: fabric.MaybeComputed; - readonly weightedRoutingPolicy?: fabric.MaybeComputed<{ - weight: fabric.MaybeComputed; - }>[]; - readonly zoneId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/route53/zone.d.ts b/_typescript_docs/pulumi-aws/route53/zone.d.ts deleted file mode 100644 index 3aa52d042319..000000000000 --- a/_typescript_docs/pulumi-aws/route53/zone.d.ts +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: route53/zone.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Zone extends fabric.Resource { - readonly comment?: fabric.Computed; - readonly delegationSetId?: fabric.Computed; - readonly forceDestroy?: fabric.Computed; - readonly name: fabric.Computed; - readonly nameServers: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly vpcId?: fabric.Computed; - readonly vpcRegion: fabric.Computed; - readonly zoneId: fabric.Computed; - constructor(urnName: string, args: ZoneArgs); -} -export interface ZoneArgs { - readonly comment?: fabric.MaybeComputed; - readonly delegationSetId?: fabric.MaybeComputed; - readonly forceDestroy?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly vpcId?: fabric.MaybeComputed; - readonly vpcRegion?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/route53/zoneAssociation.d.ts b/_typescript_docs/pulumi-aws/route53/zoneAssociation.d.ts deleted file mode 100644 index 3a3332cd1cb8..000000000000 --- a/_typescript_docs/pulumi-aws/route53/zoneAssociation.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: route53/zoneAssociation.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ZoneAssociation extends fabric.Resource { - readonly vpcId: fabric.Computed; - readonly vpcRegion: fabric.Computed; - readonly zoneId: fabric.Computed; - constructor(urnName: string, args: ZoneAssociationArgs); -} -export interface ZoneAssociationArgs { - readonly vpcId: fabric.MaybeComputed; - readonly vpcRegion?: fabric.MaybeComputed; - readonly zoneId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/s3/bucket.d.ts b/_typescript_docs/pulumi-aws/s3/bucket.d.ts deleted file mode 100644 index 6dabce882636..000000000000 --- a/_typescript_docs/pulumi-aws/s3/bucket.d.ts +++ /dev/null @@ -1,160 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: s3/bucket.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Bucket extends fabric.Resource { - readonly accelerationStatus: fabric.Computed; - readonly acl?: fabric.Computed; - readonly arn: fabric.Computed; - readonly bucket: fabric.Computed; - readonly bucketDomainName: fabric.Computed; - readonly bucketPrefix?: fabric.Computed; - readonly corsRule?: fabric.Computed<{ - allowedHeaders?: string[]; - allowedMethods: string[]; - allowedOrigins: string[]; - exposeHeaders?: string[]; - maxAgeSeconds?: number; - }[]>; - readonly forceDestroy?: fabric.Computed; - readonly hostedZoneId: fabric.Computed; - readonly lifecycleRule?: fabric.Computed<{ - abortIncompleteMultipartUploadDays?: number; - enabled: boolean; - expiration?: { - date?: string; - days?: number; - expiredObjectDeleteMarker?: boolean; - }[]; - id: string; - noncurrentVersionExpiration?: { - days?: number; - }[]; - noncurrentVersionTransition?: { - days?: number; - storageClass: string; - }[]; - prefix?: string; - tags?: { - [key: string]: any; - }; - transition?: { - date?: string; - days?: number; - storageClass: string; - }[]; - }[]>; - readonly logging?: fabric.Computed<{ - targetBucket: string; - targetPrefix?: string; - }[]>; - readonly policy?: fabric.Computed; - readonly region: fabric.Computed; - readonly replicationConfiguration?: fabric.Computed<{ - role: string; - rules: { - destination: { - bucket: string; - storageClass?: string; - }[]; - id?: string; - prefix: string; - status: string; - }[]; - }[]>; - readonly requestPayer: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly versioning: fabric.Computed<{ - enabled?: boolean; - mfaDelete?: boolean; - }[]>; - readonly website?: fabric.Computed<{ - errorDocument?: string; - indexDocument?: string; - redirectAllRequestsTo?: string; - routingRules?: string; - }[]>; - readonly websiteDomain: fabric.Computed; - readonly websiteEndpoint: fabric.Computed; - constructor(urnName: string, args: BucketArgs); -} -export interface BucketArgs { - readonly accelerationStatus?: fabric.MaybeComputed; - readonly acl?: fabric.MaybeComputed; - readonly arn?: fabric.MaybeComputed; - readonly bucket?: fabric.MaybeComputed; - readonly bucketPrefix?: fabric.MaybeComputed; - readonly corsRule?: fabric.MaybeComputed<{ - allowedHeaders?: fabric.MaybeComputed>[]; - allowedMethods: fabric.MaybeComputed>[]; - allowedOrigins: fabric.MaybeComputed>[]; - exposeHeaders?: fabric.MaybeComputed>[]; - maxAgeSeconds?: fabric.MaybeComputed; - }>[]; - readonly forceDestroy?: fabric.MaybeComputed; - readonly hostedZoneId?: fabric.MaybeComputed; - readonly lifecycleRule?: fabric.MaybeComputed<{ - abortIncompleteMultipartUploadDays?: fabric.MaybeComputed; - enabled: fabric.MaybeComputed; - expiration?: fabric.MaybeComputed<{ - date?: fabric.MaybeComputed; - days?: fabric.MaybeComputed; - expiredObjectDeleteMarker?: fabric.MaybeComputed; - }>[]; - id?: fabric.MaybeComputed; - noncurrentVersionExpiration?: fabric.MaybeComputed<{ - days?: fabric.MaybeComputed; - }>[]; - noncurrentVersionTransition?: fabric.MaybeComputed<{ - days?: fabric.MaybeComputed; - storageClass: fabric.MaybeComputed; - }>[]; - prefix?: fabric.MaybeComputed; - tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - transition?: fabric.MaybeComputed<{ - date?: fabric.MaybeComputed; - days?: fabric.MaybeComputed; - storageClass: fabric.MaybeComputed; - }>[]; - }>[]; - readonly logging?: fabric.MaybeComputed<{ - targetBucket: fabric.MaybeComputed; - targetPrefix?: fabric.MaybeComputed; - }>[]; - readonly policy?: fabric.MaybeComputed; - readonly region?: fabric.MaybeComputed; - readonly replicationConfiguration?: fabric.MaybeComputed<{ - role: fabric.MaybeComputed; - rules: fabric.MaybeComputed<{ - destination: fabric.MaybeComputed<{ - bucket: fabric.MaybeComputed; - storageClass?: fabric.MaybeComputed; - }>[]; - id?: fabric.MaybeComputed; - prefix: fabric.MaybeComputed; - status: fabric.MaybeComputed; - }>[]; - }>[]; - readonly requestPayer?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly versioning?: fabric.MaybeComputed<{ - enabled?: fabric.MaybeComputed; - mfaDelete?: fabric.MaybeComputed; - }>[]; - readonly website?: fabric.MaybeComputed<{ - errorDocument?: fabric.MaybeComputed; - indexDocument?: fabric.MaybeComputed; - redirectAllRequestsTo?: fabric.MaybeComputed; - routingRules?: fabric.MaybeComputed; - }>[]; - readonly websiteDomain?: fabric.MaybeComputed; - readonly websiteEndpoint?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/s3/bucketNotification.d.ts b/_typescript_docs/pulumi-aws/s3/bucketNotification.d.ts deleted file mode 100644 index ff0c0779dad5..000000000000 --- a/_typescript_docs/pulumi-aws/s3/bucketNotification.d.ts +++ /dev/null @@ -1,55 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: s3/bucketNotification.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class BucketNotification extends fabric.Resource { - readonly bucket: fabric.Computed; - readonly lambdaFunction?: fabric.Computed<{ - events: string[]; - filterPrefix?: string; - filterSuffix?: string; - id: string; - lambdaFunctionArn?: string; - }[]>; - readonly queue?: fabric.Computed<{ - events: string[]; - filterPrefix?: string; - filterSuffix?: string; - id: string; - queueArn: string; - }[]>; - readonly topic?: fabric.Computed<{ - events: string[]; - filterPrefix?: string; - filterSuffix?: string; - id: string; - topicArn: string; - }[]>; - constructor(urnName: string, args: BucketNotificationArgs); -} -export interface BucketNotificationArgs { - readonly bucket: fabric.MaybeComputed; - readonly lambdaFunction?: fabric.MaybeComputed<{ - events: fabric.MaybeComputed>[]; - filterPrefix?: fabric.MaybeComputed; - filterSuffix?: fabric.MaybeComputed; - id?: fabric.MaybeComputed; - lambdaFunctionArn?: fabric.MaybeComputed; - }>[]; - readonly queue?: fabric.MaybeComputed<{ - events: fabric.MaybeComputed>[]; - filterPrefix?: fabric.MaybeComputed; - filterSuffix?: fabric.MaybeComputed; - id?: fabric.MaybeComputed; - queueArn: fabric.MaybeComputed; - }>[]; - readonly topic?: fabric.MaybeComputed<{ - events: fabric.MaybeComputed>[]; - filterPrefix?: fabric.MaybeComputed; - filterSuffix?: fabric.MaybeComputed; - id?: fabric.MaybeComputed; - topicArn: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/s3/bucketObject.d.ts b/_typescript_docs/pulumi-aws/s3/bucketObject.d.ts deleted file mode 100644 index 18e5f6f8c7fd..000000000000 --- a/_typescript_docs/pulumi-aws/s3/bucketObject.d.ts +++ /dev/null @@ -1,49 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: s3/bucketObject.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { Bucket } from "./bucket"; -export declare class BucketObject extends fabric.Resource { - readonly acl?: fabric.Computed; - readonly bucket: fabric.Computed; - readonly cacheControl?: fabric.Computed; - readonly content?: fabric.Computed; - readonly contentDisposition?: fabric.Computed; - readonly contentEncoding?: fabric.Computed; - readonly contentLanguage?: fabric.Computed; - readonly contentType: fabric.Computed; - readonly etag: fabric.Computed; - readonly key: fabric.Computed; - readonly kmsKeyId?: fabric.Computed; - readonly serverSideEncryption: fabric.Computed; - readonly source?: fabric.Computed; - readonly storageClass: fabric.Computed; - readonly tags?: fabric.Computed<{ - [key: string]: any; - }>; - readonly versionId: fabric.Computed; - readonly websiteRedirect?: fabric.Computed; - constructor(urnName: string, args: BucketObjectArgs); -} -export interface BucketObjectArgs { - readonly acl?: fabric.MaybeComputed; - readonly bucket: fabric.MaybeComputed; - readonly cacheControl?: fabric.MaybeComputed; - readonly content?: fabric.MaybeComputed; - readonly contentDisposition?: fabric.MaybeComputed; - readonly contentEncoding?: fabric.MaybeComputed; - readonly contentLanguage?: fabric.MaybeComputed; - readonly contentType?: fabric.MaybeComputed; - readonly etag?: fabric.MaybeComputed; - readonly key?: fabric.MaybeComputed; - readonly kmsKeyId?: fabric.MaybeComputed; - readonly serverSideEncryption?: fabric.MaybeComputed; - readonly source?: fabric.asset.Asset; - readonly storageClass?: fabric.MaybeComputed; - readonly tags?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly websiteRedirect?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/s3/bucketPolicy.d.ts b/_typescript_docs/pulumi-aws/s3/bucketPolicy.d.ts deleted file mode 100644 index b4c1c5d703a3..000000000000 --- a/_typescript_docs/pulumi-aws/s3/bucketPolicy.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: s3/bucketPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class BucketPolicy extends fabric.Resource { - readonly bucket: fabric.Computed; - readonly policy: fabric.Computed; - constructor(urnName: string, args: BucketPolicyArgs); -} -export interface BucketPolicyArgs { - readonly bucket: fabric.MaybeComputed; - readonly policy: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/serverless/function.d.ts b/_typescript_docs/pulumi-aws/serverless/function.d.ts deleted file mode 100644 index 19073ea06151..000000000000 --- a/_typescript_docs/pulumi-aws/serverless/function.d.ts +++ /dev/null @@ -1,37 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: serverless/function.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { Role, RolePolicyAttachment } from "../iam"; -import * as lambda from "../lambda"; -import { ARN } from "../arn"; -export interface Context { - callbackWaitsForEmptyEventLoop: boolean; - readonly functionName: string; - readonly functionVersion: string; - readonly invokedFunctionArn: string; - readonly memoryLimitInMB: string; - readonly awsRequestId: string; - readonly logGroupName: string; - readonly logStreamName: string; - readonly identity: any; - readonly clientContext: any; - getRemainingTimeInMillis(): string; -} -export declare type Handler = (event: any, context: Context, callback: (error: any, result: any) => void) => any; -export interface FunctionOptions { - policies: ARN[]; - timeout?: number; - memorySize?: number; - deadLetterConfig?: { - targetArn: fabric.MaybeComputed; - }; -} -export declare class Function { - readonly lambda: lambda.Function; - readonly role: Role; - readonly policies: RolePolicyAttachment[]; - constructor(name: string, options: FunctionOptions, func: Handler); -} diff --git a/_typescript_docs/pulumi-aws/ses/activeReceiptRuleSet.d.ts b/_typescript_docs/pulumi-aws/ses/activeReceiptRuleSet.d.ts deleted file mode 100644 index 0115974567e1..000000000000 --- a/_typescript_docs/pulumi-aws/ses/activeReceiptRuleSet.d.ts +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ses/activeReceiptRuleSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ActiveReceiptRuleSet extends fabric.Resource { - readonly ruleSetName: fabric.Computed; - constructor(urnName: string, args: ActiveReceiptRuleSetArgs); -} -export interface ActiveReceiptRuleSetArgs { - readonly ruleSetName: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ses/confgurationSet.d.ts b/_typescript_docs/pulumi-aws/ses/confgurationSet.d.ts deleted file mode 100644 index 2fc416e873b6..000000000000 --- a/_typescript_docs/pulumi-aws/ses/confgurationSet.d.ts +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ses/confgurationSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ConfgurationSet extends fabric.Resource { - readonly name: fabric.Computed; - constructor(urnName: string, args: ConfgurationSetArgs); -} -export interface ConfgurationSetArgs { - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ses/domainIdentity.d.ts b/_typescript_docs/pulumi-aws/ses/domainIdentity.d.ts deleted file mode 100644 index c33a53c1f779..000000000000 --- a/_typescript_docs/pulumi-aws/ses/domainIdentity.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ses/domainIdentity.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class DomainIdentity extends fabric.Resource { - readonly arn: fabric.Computed; - readonly domain: fabric.Computed; - readonly verificationToken: fabric.Computed; - constructor(urnName: string, args: DomainIdentityArgs); -} -export interface DomainIdentityArgs { - readonly domain: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ses/eventDestination.d.ts b/_typescript_docs/pulumi-aws/ses/eventDestination.d.ts deleted file mode 100644 index 6a3236230371..000000000000 --- a/_typescript_docs/pulumi-aws/ses/eventDestination.d.ts +++ /dev/null @@ -1,37 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ses/eventDestination.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class EventDestination extends fabric.Resource { - readonly cloudwatchDestination?: fabric.Computed<{ - defaultValue: string; - dimensionName: string; - valueSource: string; - }[]>; - readonly configurationSetName: fabric.Computed; - readonly enabled?: fabric.Computed; - readonly kinesisDestination?: fabric.Computed<{ - roleArn: string; - streamArn: string; - }[]>; - readonly matchingTypes: fabric.Computed; - readonly name: fabric.Computed; - constructor(urnName: string, args: EventDestinationArgs); -} -export interface EventDestinationArgs { - readonly cloudwatchDestination?: fabric.MaybeComputed<{ - defaultValue: fabric.MaybeComputed; - dimensionName: fabric.MaybeComputed; - valueSource: fabric.MaybeComputed; - }>[]; - readonly configurationSetName: fabric.MaybeComputed; - readonly enabled?: fabric.MaybeComputed; - readonly kinesisDestination?: fabric.MaybeComputed<{ - roleArn: fabric.MaybeComputed; - streamArn: fabric.MaybeComputed; - }>[]; - readonly matchingTypes: fabric.MaybeComputed>[]; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ses/receiptFilter.d.ts b/_typescript_docs/pulumi-aws/ses/receiptFilter.d.ts deleted file mode 100644 index 1df7ec8f1c8a..000000000000 --- a/_typescript_docs/pulumi-aws/ses/receiptFilter.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ses/receiptFilter.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ReceiptFilter extends fabric.Resource { - readonly cidr: fabric.Computed; - readonly name: fabric.Computed; - readonly policy: fabric.Computed; - constructor(urnName: string, args: ReceiptFilterArgs); -} -export interface ReceiptFilterArgs { - readonly cidr: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly policy: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ses/receiptRule.d.ts b/_typescript_docs/pulumi-aws/ses/receiptRule.d.ts deleted file mode 100644 index e460bf9e0d1e..000000000000 --- a/_typescript_docs/pulumi-aws/ses/receiptRule.d.ts +++ /dev/null @@ -1,105 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ses/receiptRule.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ReceiptRule extends fabric.Resource { - readonly addHeaderAction?: fabric.Computed<{ - headerName: string; - headerValue: string; - position: number; - }[]>; - readonly after?: fabric.Computed; - readonly bounceAction?: fabric.Computed<{ - message: string; - position: number; - sender: string; - smtpReplyCode: string; - statusCode?: string; - topicArn?: string; - }[]>; - readonly enabled: fabric.Computed; - readonly lambdaAction?: fabric.Computed<{ - functionArn: string; - invocationType: string; - position: number; - topicArn?: string; - }[]>; - readonly name: fabric.Computed; - readonly recipients?: fabric.Computed; - readonly ruleSetName: fabric.Computed; - readonly s3Action?: fabric.Computed<{ - bucketName: string; - kmsKeyArn?: string; - objectKeyPrefix?: string; - position: number; - topicArn?: string; - }[]>; - readonly scanEnabled: fabric.Computed; - readonly snsAction?: fabric.Computed<{ - position: number; - topicArn: string; - }[]>; - readonly stopAction?: fabric.Computed<{ - position: number; - scope: string; - topicArn?: string; - }[]>; - readonly tlsPolicy: fabric.Computed; - readonly workmailAction?: fabric.Computed<{ - organizationArn: string; - position: number; - topicArn?: string; - }[]>; - constructor(urnName: string, args: ReceiptRuleArgs); -} -export interface ReceiptRuleArgs { - readonly addHeaderAction?: fabric.MaybeComputed<{ - headerName: fabric.MaybeComputed; - headerValue: fabric.MaybeComputed; - position: fabric.MaybeComputed; - }>[]; - readonly after?: fabric.MaybeComputed; - readonly bounceAction?: fabric.MaybeComputed<{ - message: fabric.MaybeComputed; - position: fabric.MaybeComputed; - sender: fabric.MaybeComputed; - smtpReplyCode: fabric.MaybeComputed; - statusCode?: fabric.MaybeComputed; - topicArn?: fabric.MaybeComputed; - }>[]; - readonly enabled?: fabric.MaybeComputed; - readonly lambdaAction?: fabric.MaybeComputed<{ - functionArn: fabric.MaybeComputed; - invocationType?: fabric.MaybeComputed; - position: fabric.MaybeComputed; - topicArn?: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly recipients?: fabric.MaybeComputed>[]; - readonly ruleSetName: fabric.MaybeComputed; - readonly s3Action?: fabric.MaybeComputed<{ - bucketName: fabric.MaybeComputed; - kmsKeyArn?: fabric.MaybeComputed; - objectKeyPrefix?: fabric.MaybeComputed; - position: fabric.MaybeComputed; - topicArn?: fabric.MaybeComputed; - }>[]; - readonly scanEnabled?: fabric.MaybeComputed; - readonly snsAction?: fabric.MaybeComputed<{ - position: fabric.MaybeComputed; - topicArn: fabric.MaybeComputed; - }>[]; - readonly stopAction?: fabric.MaybeComputed<{ - position: fabric.MaybeComputed; - scope: fabric.MaybeComputed; - topicArn?: fabric.MaybeComputed; - }>[]; - readonly tlsPolicy?: fabric.MaybeComputed; - readonly workmailAction?: fabric.MaybeComputed<{ - organizationArn: fabric.MaybeComputed; - position: fabric.MaybeComputed; - topicArn?: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/ses/receiptRuleSet.d.ts b/_typescript_docs/pulumi-aws/ses/receiptRuleSet.d.ts deleted file mode 100644 index 9163e87261a9..000000000000 --- a/_typescript_docs/pulumi-aws/ses/receiptRuleSet.d.ts +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ses/receiptRuleSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ReceiptRuleSet extends fabric.Resource { - readonly ruleSetName: fabric.Computed; - constructor(urnName: string, args: ReceiptRuleSetArgs); -} -export interface ReceiptRuleSetArgs { - readonly ruleSetName: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/sfn/activity.d.ts b/_typescript_docs/pulumi-aws/sfn/activity.d.ts deleted file mode 100644 index 858f2d02b677..000000000000 --- a/_typescript_docs/pulumi-aws/sfn/activity.d.ts +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: sfn/activity.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Activity extends fabric.Resource { - readonly creationDate: fabric.Computed; - readonly name: fabric.Computed; - constructor(urnName: string, args: ActivityArgs); -} -export interface ActivityArgs { - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/sfn/stateMachine.d.ts b/_typescript_docs/pulumi-aws/sfn/stateMachine.d.ts deleted file mode 100644 index 6d569eb087b4..000000000000 --- a/_typescript_docs/pulumi-aws/sfn/stateMachine.d.ts +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: sfn/stateMachine.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class StateMachine extends fabric.Resource { - readonly creationDate: fabric.Computed; - readonly definition: fabric.Computed; - readonly name: fabric.Computed; - readonly roleArn: fabric.Computed; - readonly status: fabric.Computed; - constructor(urnName: string, args: StateMachineArgs); -} -export interface StateMachineArgs { - readonly definition: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly roleArn: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/simpledb/domain.d.ts b/_typescript_docs/pulumi-aws/simpledb/domain.d.ts deleted file mode 100644 index 7f6e5cedb80c..000000000000 --- a/_typescript_docs/pulumi-aws/simpledb/domain.d.ts +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: simpledb/domain.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Domain extends fabric.Resource { - readonly name: fabric.Computed; - constructor(urnName: string, args: DomainArgs); -} -export interface DomainArgs { - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/sns/topic.d.ts b/_typescript_docs/pulumi-aws/sns/topic.d.ts deleted file mode 100644 index 830b5a93ba23..000000000000 --- a/_typescript_docs/pulumi-aws/sns/topic.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: sns/topic.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { ARN } from "../index"; -export declare class Topic extends fabric.Resource { - readonly arn: fabric.Computed; - readonly deliveryPolicy?: fabric.Computed; - readonly displayName?: fabric.Computed; - readonly name: fabric.Computed; - readonly policy: fabric.Computed; - constructor(urnName: string, args: TopicArgs); -} -export interface TopicArgs { - readonly deliveryPolicy?: fabric.MaybeComputed; - readonly displayName?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly policy?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/sns/topicPolicy.d.ts b/_typescript_docs/pulumi-aws/sns/topicPolicy.d.ts deleted file mode 100644 index 83444fc1ae2b..000000000000 --- a/_typescript_docs/pulumi-aws/sns/topicPolicy.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: sns/topicPolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class TopicPolicy extends fabric.Resource { - readonly arn: fabric.Computed; - readonly policy: fabric.Computed; - constructor(urnName: string, args: TopicPolicyArgs); -} -export interface TopicPolicyArgs { - readonly arn: fabric.MaybeComputed; - readonly policy: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/sns/topicSubscription.d.ts b/_typescript_docs/pulumi-aws/sns/topicSubscription.d.ts deleted file mode 100644 index 76e2690adcf5..000000000000 --- a/_typescript_docs/pulumi-aws/sns/topicSubscription.d.ts +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: sns/topicSubscription.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -import { Topic } from "./topic"; -export declare class TopicSubscription extends fabric.Resource { - readonly arn: fabric.Computed; - readonly confirmationTimeoutInMinutes?: fabric.Computed; - readonly deliveryPolicy?: fabric.Computed; - readonly endpoint: fabric.Computed; - readonly endpointAutoConfirms?: fabric.Computed; - readonly protocol: fabric.Computed; - readonly rawMessageDelivery?: fabric.Computed; - readonly topic: fabric.Computed; - constructor(urnName: string, args: TopicSubscriptionArgs); -} -export interface TopicSubscriptionArgs { - readonly confirmationTimeoutInMinutes?: fabric.MaybeComputed; - readonly deliveryPolicy?: fabric.MaybeComputed; - readonly endpoint: fabric.MaybeComputed; - readonly endpointAutoConfirms?: fabric.MaybeComputed; - readonly protocol: fabric.MaybeComputed; - readonly rawMessageDelivery?: fabric.MaybeComputed; - readonly topic: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/sqs/queue.d.ts b/_typescript_docs/pulumi-aws/sqs/queue.d.ts deleted file mode 100644 index 32d7a8c46874..000000000000 --- a/_typescript_docs/pulumi-aws/sqs/queue.d.ts +++ /dev/null @@ -1,38 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: sqs/queue.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Queue extends fabric.Resource { - readonly arn: fabric.Computed; - readonly contentBasedDeduplication?: fabric.Computed; - readonly delaySeconds?: fabric.Computed; - readonly fifoQueue?: fabric.Computed; - readonly kmsDataKeyReusePeriodSeconds: fabric.Computed; - readonly kmsMasterKeyId?: fabric.Computed; - readonly maxMessageSize?: fabric.Computed; - readonly messageRetentionSeconds?: fabric.Computed; - readonly name: fabric.Computed; - readonly namePrefix?: fabric.Computed; - readonly policy: fabric.Computed; - readonly receiveWaitTimeSeconds?: fabric.Computed; - readonly redrivePolicy?: fabric.Computed; - readonly visibilityTimeoutSeconds?: fabric.Computed; - constructor(urnName: string, args: QueueArgs); -} -export interface QueueArgs { - readonly contentBasedDeduplication?: fabric.MaybeComputed; - readonly delaySeconds?: fabric.MaybeComputed; - readonly fifoQueue?: fabric.MaybeComputed; - readonly kmsDataKeyReusePeriodSeconds?: fabric.MaybeComputed; - readonly kmsMasterKeyId?: fabric.MaybeComputed; - readonly maxMessageSize?: fabric.MaybeComputed; - readonly messageRetentionSeconds?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly namePrefix?: fabric.MaybeComputed; - readonly policy?: fabric.MaybeComputed; - readonly receiveWaitTimeSeconds?: fabric.MaybeComputed; - readonly redrivePolicy?: fabric.MaybeComputed; - readonly visibilityTimeoutSeconds?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/sqs/queuePolicy.d.ts b/_typescript_docs/pulumi-aws/sqs/queuePolicy.d.ts deleted file mode 100644 index 2b01d017e833..000000000000 --- a/_typescript_docs/pulumi-aws/sqs/queuePolicy.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: sqs/queuePolicy.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class QueuePolicy extends fabric.Resource { - readonly policy: fabric.Computed; - readonly queueUrl: fabric.Computed; - constructor(urnName: string, args: QueuePolicyArgs); -} -export interface QueuePolicyArgs { - readonly policy: fabric.MaybeComputed; - readonly queueUrl: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ssm/activation.d.ts b/_typescript_docs/pulumi-aws/ssm/activation.d.ts deleted file mode 100644 index 8aaa9a24c8b8..000000000000 --- a/_typescript_docs/pulumi-aws/ssm/activation.d.ts +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ssm/activation.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Activation extends fabric.Resource { - readonly description?: fabric.Computed; - readonly expirationDate?: fabric.Computed; - readonly expired: fabric.Computed; - readonly iamRole: fabric.Computed; - readonly name: fabric.Computed; - readonly registrationCount: fabric.Computed; - readonly registrationLimit?: fabric.Computed; - constructor(urnName: string, args: ActivationArgs); -} -export interface ActivationArgs { - readonly description?: fabric.MaybeComputed; - readonly expirationDate?: fabric.MaybeComputed; - readonly iamRole: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly registrationLimit?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ssm/association.d.ts b/_typescript_docs/pulumi-aws/ssm/association.d.ts deleted file mode 100644 index 10b595a51065..000000000000 --- a/_typescript_docs/pulumi-aws/ssm/association.d.ts +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ssm/association.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Association extends fabric.Resource { - readonly associationId: fabric.Computed; - readonly instanceId?: fabric.Computed; - readonly name: fabric.Computed; - readonly parameters: fabric.Computed<{ - [key: string]: any; - }>; - readonly targets: fabric.Computed<{ - key: string; - values: string[]; - }[]>; - constructor(urnName: string, args: AssociationArgs); -} -export interface AssociationArgs { - readonly instanceId?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly parameters?: fabric.MaybeComputed<{ - [key: string]: any; - }>; - readonly targets?: fabric.MaybeComputed<{ - key: fabric.MaybeComputed; - values: fabric.MaybeComputed>[]; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/ssm/document.d.ts b/_typescript_docs/pulumi-aws/ssm/document.d.ts deleted file mode 100644 index b28d8c9b582b..000000000000 --- a/_typescript_docs/pulumi-aws/ssm/document.d.ts +++ /dev/null @@ -1,46 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ssm/document.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Document extends fabric.Resource { - readonly arn: fabric.Computed; - readonly content: fabric.Computed; - readonly createdDate: fabric.Computed; - readonly defaultVersion: fabric.Computed; - readonly description: fabric.Computed; - readonly documentType: fabric.Computed; - readonly hash: fabric.Computed; - readonly hashType: fabric.Computed; - readonly latestVersion: fabric.Computed; - readonly name: fabric.Computed; - readonly owner: fabric.Computed; - readonly parameter: fabric.Computed<{ - defaultValue?: string; - description?: string; - name?: string; - type?: string; - }[]>; - readonly permissions?: fabric.Computed<{ - [key: string]: { - accountIds: string; - type: string; - }; - }>; - readonly platformTypes: fabric.Computed; - readonly schemaVersion: fabric.Computed; - readonly status: fabric.Computed; - constructor(urnName: string, args: DocumentArgs); -} -export interface DocumentArgs { - readonly content: fabric.MaybeComputed; - readonly documentType: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly permissions?: fabric.MaybeComputed<{ - [key: string]: { - accountIds: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }; - }>; -} diff --git a/_typescript_docs/pulumi-aws/ssm/maintenanceWindow.d.ts b/_typescript_docs/pulumi-aws/ssm/maintenanceWindow.d.ts deleted file mode 100644 index f3dc5b8d8ff6..000000000000 --- a/_typescript_docs/pulumi-aws/ssm/maintenanceWindow.d.ts +++ /dev/null @@ -1,23 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ssm/maintenanceWindow.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class MaintenanceWindow extends fabric.Resource { - readonly allowUnassociatedTargets?: fabric.Computed; - readonly cutoff: fabric.Computed; - readonly duration: fabric.Computed; - readonly enabled?: fabric.Computed; - readonly name: fabric.Computed; - readonly schedule: fabric.Computed; - constructor(urnName: string, args: MaintenanceWindowArgs); -} -export interface MaintenanceWindowArgs { - readonly allowUnassociatedTargets?: fabric.MaybeComputed; - readonly cutoff: fabric.MaybeComputed; - readonly duration: fabric.MaybeComputed; - readonly enabled?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly schedule: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ssm/maintenanceWindowTarget.d.ts b/_typescript_docs/pulumi-aws/ssm/maintenanceWindowTarget.d.ts deleted file mode 100644 index 0df1883d9a12..000000000000 --- a/_typescript_docs/pulumi-aws/ssm/maintenanceWindowTarget.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ssm/maintenanceWindowTarget.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class MaintenanceWindowTarget extends fabric.Resource { - readonly ownerInformation?: fabric.Computed; - readonly resourceType: fabric.Computed; - readonly targets: fabric.Computed<{ - key: string; - values: string[]; - }[]>; - readonly windowId: fabric.Computed; - constructor(urnName: string, args: MaintenanceWindowTargetArgs); -} -export interface MaintenanceWindowTargetArgs { - readonly ownerInformation?: fabric.MaybeComputed; - readonly resourceType: fabric.MaybeComputed; - readonly targets: fabric.MaybeComputed<{ - key: fabric.MaybeComputed; - values: fabric.MaybeComputed>[]; - }>[]; - readonly windowId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ssm/maintenanceWindowTask.d.ts b/_typescript_docs/pulumi-aws/ssm/maintenanceWindowTask.d.ts deleted file mode 100644 index ecb5e10e4608..000000000000 --- a/_typescript_docs/pulumi-aws/ssm/maintenanceWindowTask.d.ts +++ /dev/null @@ -1,51 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ssm/maintenanceWindowTask.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class MaintenanceWindowTask extends fabric.Resource { - readonly loggingInfo?: fabric.Computed<{ - s3BucketName: string; - s3BucketPrefix?: string; - s3Region: string; - }[]>; - readonly maxConcurrency: fabric.Computed; - readonly maxErrors: fabric.Computed; - readonly priority?: fabric.Computed; - readonly serviceRoleArn: fabric.Computed; - readonly targets: fabric.Computed<{ - key: string; - values: string[]; - }[]>; - readonly taskArn: fabric.Computed; - readonly taskParameters?: fabric.Computed<{ - name: string; - values: string[]; - }[]>; - readonly taskType: fabric.Computed; - readonly windowId: fabric.Computed; - constructor(urnName: string, args: MaintenanceWindowTaskArgs); -} -export interface MaintenanceWindowTaskArgs { - readonly loggingInfo?: fabric.MaybeComputed<{ - s3BucketName: fabric.MaybeComputed; - s3BucketPrefix?: fabric.MaybeComputed; - s3Region: fabric.MaybeComputed; - }>[]; - readonly maxConcurrency: fabric.MaybeComputed; - readonly maxErrors: fabric.MaybeComputed; - readonly priority?: fabric.MaybeComputed; - readonly serviceRoleArn: fabric.MaybeComputed; - readonly targets: fabric.MaybeComputed<{ - key: fabric.MaybeComputed; - values: fabric.MaybeComputed>[]; - }>[]; - readonly taskArn: fabric.MaybeComputed; - readonly taskParameters?: fabric.MaybeComputed<{ - name: fabric.MaybeComputed; - values: fabric.MaybeComputed>[]; - }>[]; - readonly taskType: fabric.MaybeComputed; - readonly windowId: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ssm/parameter.d.ts b/_typescript_docs/pulumi-aws/ssm/parameter.d.ts deleted file mode 100644 index 5ce0d95635aa..000000000000 --- a/_typescript_docs/pulumi-aws/ssm/parameter.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ssm/parameter.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Parameter extends fabric.Resource { - readonly keyId?: fabric.Computed; - readonly name: fabric.Computed; - readonly overwrite?: fabric.Computed; - readonly type: fabric.Computed; - readonly value: fabric.Computed; - constructor(urnName: string, args: ParameterArgs); -} -export interface ParameterArgs { - readonly keyId?: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly overwrite?: fabric.MaybeComputed; - readonly type: fabric.MaybeComputed; - readonly value: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/ssm/patchBaseline.d.ts b/_typescript_docs/pulumi-aws/ssm/patchBaseline.d.ts deleted file mode 100644 index 088b4b5e8cd7..000000000000 --- a/_typescript_docs/pulumi-aws/ssm/patchBaseline.d.ts +++ /dev/null @@ -1,41 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ssm/patchBaseline.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class PatchBaseline extends fabric.Resource { - readonly approvalRule?: fabric.Computed<{ - approveAfterDays: number; - patchFilter: { - key: string; - values: string[]; - }[]; - }[]>; - readonly approvedPatches?: fabric.Computed; - readonly description?: fabric.Computed; - readonly globalFilter?: fabric.Computed<{ - key: string; - values: string[]; - }[]>; - readonly name: fabric.Computed; - readonly rejectedPatches?: fabric.Computed; - constructor(urnName: string, args: PatchBaselineArgs); -} -export interface PatchBaselineArgs { - readonly approvalRule?: fabric.MaybeComputed<{ - approveAfterDays: fabric.MaybeComputed; - patchFilter: fabric.MaybeComputed<{ - key: fabric.MaybeComputed; - values: fabric.MaybeComputed>[]; - }>[]; - }>[]; - readonly approvedPatches?: fabric.MaybeComputed>[]; - readonly description?: fabric.MaybeComputed; - readonly globalFilter?: fabric.MaybeComputed<{ - key: fabric.MaybeComputed; - values: fabric.MaybeComputed>[]; - }>[]; - readonly name?: fabric.MaybeComputed; - readonly rejectedPatches?: fabric.MaybeComputed>[]; -} diff --git a/_typescript_docs/pulumi-aws/ssm/patchGroup.d.ts b/_typescript_docs/pulumi-aws/ssm/patchGroup.d.ts deleted file mode 100644 index 023167e2829d..000000000000 --- a/_typescript_docs/pulumi-aws/ssm/patchGroup.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: ssm/patchGroup.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class PatchGroup extends fabric.Resource { - readonly baselineId: fabric.Computed; - readonly patchGroup: fabric.Computed; - constructor(urnName: string, args: PatchGroupArgs); -} -export interface PatchGroupArgs { - readonly baselineId: fabric.MaybeComputed; - readonly patchGroup: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/waf/byteMatchSet.d.ts b/_typescript_docs/pulumi-aws/waf/byteMatchSet.d.ts deleted file mode 100644 index fe5455e2558b..000000000000 --- a/_typescript_docs/pulumi-aws/waf/byteMatchSet.d.ts +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: waf/byteMatchSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ByteMatchSet extends fabric.Resource { - readonly byteMatchTuples?: fabric.Computed<{ - fieldToMatch: { - data?: string; - type: string; - }[]; - positionalConstraint: string; - targetString?: string; - textTransformation: string; - }[]>; - readonly name: fabric.Computed; - constructor(urnName: string, args: ByteMatchSetArgs); -} -export interface ByteMatchSetArgs { - readonly byteMatchTuples?: fabric.MaybeComputed<{ - fieldToMatch: fabric.MaybeComputed<{ - data?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - positionalConstraint: fabric.MaybeComputed; - targetString?: fabric.MaybeComputed; - textTransformation: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/waf/ipSet.d.ts b/_typescript_docs/pulumi-aws/waf/ipSet.d.ts deleted file mode 100644 index b39d65c23c5e..000000000000 --- a/_typescript_docs/pulumi-aws/waf/ipSet.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: waf/ipSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class IpSet extends fabric.Resource { - readonly ipSetDescriptors?: fabric.Computed<{ - type: string; - value: string; - }[]>; - readonly name: fabric.Computed; - constructor(urnName: string, args: IpSetArgs); -} -export interface IpSetArgs { - readonly ipSetDescriptors?: fabric.MaybeComputed<{ - type: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/waf/rule.d.ts b/_typescript_docs/pulumi-aws/waf/rule.d.ts deleted file mode 100644 index 63b33ec5562d..000000000000 --- a/_typescript_docs/pulumi-aws/waf/rule.d.ts +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: waf/rule.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class Rule extends fabric.Resource { - readonly metricName: fabric.Computed; - readonly name: fabric.Computed; - readonly predicates?: fabric.Computed<{ - dataId?: string; - negated: boolean; - type: string; - }[]>; - constructor(urnName: string, args: RuleArgs); -} -export interface RuleArgs { - readonly metricName: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly predicates?: fabric.MaybeComputed<{ - dataId?: fabric.MaybeComputed; - negated: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/waf/sizeConstraintSet.d.ts b/_typescript_docs/pulumi-aws/waf/sizeConstraintSet.d.ts deleted file mode 100644 index 2415e7fd2b24..000000000000 --- a/_typescript_docs/pulumi-aws/waf/sizeConstraintSet.d.ts +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: waf/sizeConstraintSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SizeConstraintSet extends fabric.Resource { - readonly name: fabric.Computed; - readonly sizeConstraints?: fabric.Computed<{ - comparisonOperator: string; - fieldToMatch: { - data?: string; - type: string; - }[]; - size: number; - textTransformation: string; - }[]>; - constructor(urnName: string, args: SizeConstraintSetArgs); -} -export interface SizeConstraintSetArgs { - readonly name?: fabric.MaybeComputed; - readonly sizeConstraints?: fabric.MaybeComputed<{ - comparisonOperator: fabric.MaybeComputed; - fieldToMatch: fabric.MaybeComputed<{ - data?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - size: fabric.MaybeComputed; - textTransformation: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/waf/sqlInjectionMatchSet.d.ts b/_typescript_docs/pulumi-aws/waf/sqlInjectionMatchSet.d.ts deleted file mode 100644 index 8a5dce16a012..000000000000 --- a/_typescript_docs/pulumi-aws/waf/sqlInjectionMatchSet.d.ts +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: waf/sqlInjectionMatchSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class SqlInjectionMatchSet extends fabric.Resource { - readonly name: fabric.Computed; - readonly sqlInjectionMatchTuples?: fabric.Computed<{ - fieldToMatch: { - data?: string; - type: string; - }[]; - textTransformation: string; - }[]>; - constructor(urnName: string, args: SqlInjectionMatchSetArgs); -} -export interface SqlInjectionMatchSetArgs { - readonly name?: fabric.MaybeComputed; - readonly sqlInjectionMatchTuples?: fabric.MaybeComputed<{ - fieldToMatch: fabric.MaybeComputed<{ - data?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - textTransformation: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/waf/webAcl.d.ts b/_typescript_docs/pulumi-aws/waf/webAcl.d.ts deleted file mode 100644 index d1f74b9a66c4..000000000000 --- a/_typescript_docs/pulumi-aws/waf/webAcl.d.ts +++ /dev/null @@ -1,35 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: waf/webAcl.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class WebAcl extends fabric.Resource { - readonly defaultAction: fabric.Computed<{ - type: string; - }[]>; - readonly metricName: fabric.Computed; - readonly name: fabric.Computed; - readonly rules?: fabric.Computed<{ - action: { - type: string; - }[]; - priority: number; - ruleId: string; - }[]>; - constructor(urnName: string, args: WebAclArgs); -} -export interface WebAclArgs { - readonly defaultAction: fabric.MaybeComputed<{ - type: fabric.MaybeComputed; - }>[]; - readonly metricName: fabric.MaybeComputed; - readonly name?: fabric.MaybeComputed; - readonly rules?: fabric.MaybeComputed<{ - action: fabric.MaybeComputed<{ - type: fabric.MaybeComputed; - }>[]; - priority: fabric.MaybeComputed; - ruleId: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/waf/xssMatchSet.d.ts b/_typescript_docs/pulumi-aws/waf/xssMatchSet.d.ts deleted file mode 100644 index 257b588fb4c0..000000000000 --- a/_typescript_docs/pulumi-aws/waf/xssMatchSet.d.ts +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: waf/xssMatchSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class XssMatchSet extends fabric.Resource { - readonly name: fabric.Computed; - readonly xssMatchTuples?: fabric.Computed<{ - fieldToMatch: { - data?: string; - type: string; - }[]; - textTransformation: string; - }[]>; - constructor(urnName: string, args: XssMatchSetArgs); -} -export interface XssMatchSetArgs { - readonly name?: fabric.MaybeComputed; - readonly xssMatchTuples?: fabric.MaybeComputed<{ - fieldToMatch: fabric.MaybeComputed<{ - data?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - textTransformation: fabric.MaybeComputed; - }>[]; -} diff --git a/_typescript_docs/pulumi-aws/wafregional/byteMatchSet.d.ts b/_typescript_docs/pulumi-aws/wafregional/byteMatchSet.d.ts deleted file mode 100644 index 87b866dba097..000000000000 --- a/_typescript_docs/pulumi-aws/wafregional/byteMatchSet.d.ts +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: wafregional/byteMatchSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class ByteMatchSet extends fabric.Resource { - readonly byteMatchTuple?: fabric.Computed<{ - fieldToMatch: { - data?: string; - type: string; - }[]; - positionalConstraint: string; - targetString?: string; - textTransformation: string; - }[]>; - readonly name: fabric.Computed; - constructor(urnName: string, args: ByteMatchSetArgs); -} -export interface ByteMatchSetArgs { - readonly byteMatchTuple?: fabric.MaybeComputed<{ - fieldToMatch: fabric.MaybeComputed<{ - data?: fabric.MaybeComputed; - type: fabric.MaybeComputed; - }>[]; - positionalConstraint: fabric.MaybeComputed; - targetString?: fabric.MaybeComputed; - textTransformation: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-aws/wafregional/ipSet.d.ts b/_typescript_docs/pulumi-aws/wafregional/ipSet.d.ts deleted file mode 100644 index b24d1dfbc0a2..000000000000 --- a/_typescript_docs/pulumi-aws/wafregional/ipSet.d.ts +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-aws -subpath: wafregional/ipSet.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export declare class IpSet extends fabric.Resource { - readonly ipSetDescriptor?: fabric.Computed<{ - type: string; - value: string; - }[]>; - readonly name: fabric.Computed; - constructor(urnName: string, args: IpSetArgs); -} -export interface IpSetArgs { - readonly ipSetDescriptor?: fabric.MaybeComputed<{ - type: fabric.MaybeComputed; - value: fabric.MaybeComputed; - }>[]; - readonly name?: fabric.MaybeComputed; -} diff --git a/_typescript_docs/pulumi-fabric/asset/archive.d.ts b/_typescript_docs/pulumi-fabric/asset/archive.d.ts deleted file mode 100644 index 6fe8e20d3c63..000000000000 --- a/_typescript_docs/pulumi-fabric/asset/archive.d.ts +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: asset/archive.d.ts ---- -import { Computed, MaybeComputed } from "../computed"; -import { Asset } from "./asset"; -export declare abstract class Archive { -} -export declare type AssetMap = { - [name: string]: Asset; -}; -export declare class AssetArchive extends Archive { - readonly assets: Computed; - constructor(assets: MaybeComputed); -} -export declare class FileArchive extends Archive { - readonly path: Computed; - constructor(path: MaybeComputed); -} -export declare class RemoteArchive extends Archive { - readonly uri: Computed; - constructor(uri: MaybeComputed); -} diff --git a/_typescript_docs/pulumi-fabric/asset/asset.d.ts b/_typescript_docs/pulumi-fabric/asset/asset.d.ts deleted file mode 100644 index 6b0d8bf9307c..000000000000 --- a/_typescript_docs/pulumi-fabric/asset/asset.d.ts +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: asset/asset.d.ts ---- -import { Computed, MaybeComputed } from "../computed"; -export declare abstract class Asset { -} -export declare class FileAsset extends Asset { - readonly path: Computed; - constructor(path: MaybeComputed); -} -export declare class StringAsset extends Asset { - readonly text: Computed; - constructor(text: MaybeComputed); -} -export declare class RemoteAsset extends Asset { - readonly uri: Computed; - constructor(uri: MaybeComputed); -} diff --git a/_typescript_docs/pulumi-fabric/computed.d.ts b/_typescript_docs/pulumi-fabric/computed.d.ts deleted file mode 100644 index 7e206d77b67d..000000000000 --- a/_typescript_docs/pulumi-fabric/computed.d.ts +++ /dev/null @@ -1,9 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: computed.d.ts ---- -export interface Computed { - mapValue(callback: (v: T) => MaybeComputed): Computed; -} -export declare type MaybeComputed = T | Computed | Promise; diff --git a/_typescript_docs/pulumi-fabric/config.d.ts b/_typescript_docs/pulumi-fabric/config.d.ts deleted file mode 100644 index cb29751342da..000000000000 --- a/_typescript_docs/pulumi-fabric/config.d.ts +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: config.d.ts ---- -export declare class Config { - readonly name: string; - constructor(name: string); - get(key: string): string | undefined; - getBoolean(key: string): boolean | undefined; - getNumber(key: string): number | undefined; - getObject(key: string): T | undefined; - require(key: string): string; - requireBoolean(key: string): boolean; - requireNumber(key: string): number; - requireObject(key: string): T; - private fullKey(key); -} diff --git a/_typescript_docs/pulumi-fabric/index.html b/_typescript_docs/pulumi-fabric/index.html deleted file mode 100644 index 146ffa50f3bd..000000000000 --- a/_typescript_docs/pulumi-fabric/index.html +++ /dev/null @@ -1,4 +0,0 @@ ---- -layout: typescript-repo -repo: pulumi-fabric ---- diff --git a/_typescript_docs/pulumi-fabric/resource.d.ts b/_typescript_docs/pulumi-fabric/resource.d.ts deleted file mode 100644 index 548e0d3bf16d..000000000000 --- a/_typescript_docs/pulumi-fabric/resource.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: resource.d.ts ---- -import { Computed, MaybeComputed } from "./computed"; -export declare type ID = string; -export declare type URN = string; -export declare abstract class Resource { - readonly id: Computed; - readonly urn: Computed; - constructor(t: string, name: string, props: { - [key: string]: MaybeComputed | undefined; - }); -} diff --git a/_typescript_docs/pulumi-fabric/runtime/closure.d.ts b/_typescript_docs/pulumi-fabric/runtime/closure.d.ts deleted file mode 100644 index 056e97995c0a..000000000000 --- a/_typescript_docs/pulumi-fabric/runtime/closure.d.ts +++ /dev/null @@ -1,35 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: runtime/closure.d.ts ---- -import { Computed } from "../computed"; -export interface Closure { - code: string; - runtime: string; - environment: Environment; -} -export declare type Environment = { - [key: string]: EnvironmentEntry; -}; -export interface EnvironmentEntry { - json?: any; - closure?: Closure; - obj?: Environment; - arr?: EnvironmentEntry[]; -} -export declare function serializeClosure(func: Function): Computed; -export interface AsyncClosure { - code: string; - runtime: string; - environment: AsyncEnvironment; -} -export declare type AsyncEnvironment = { - [key: string]: Promise; -}; -export interface AsyncEnvironmentEntry { - json?: any; - closure?: AsyncClosure; - obj?: AsyncEnvironment; - arr?: Promise[]; -} diff --git a/_typescript_docs/pulumi-fabric/runtime/config.d.ts b/_typescript_docs/pulumi-fabric/runtime/config.d.ts deleted file mode 100644 index 680c671b0a93..000000000000 --- a/_typescript_docs/pulumi-fabric/runtime/config.d.ts +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: runtime/config.d.ts ---- -export declare function setConfig(k: string, v: string): void; -export declare function getConfig(k: string): string | undefined; diff --git a/_typescript_docs/pulumi-fabric/runtime/debuggable.d.ts b/_typescript_docs/pulumi-fabric/runtime/debuggable.d.ts deleted file mode 100644 index 496110f00b9a..000000000000 --- a/_typescript_docs/pulumi-fabric/runtime/debuggable.d.ts +++ /dev/null @@ -1,6 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: runtime/debuggable.d.ts ---- -export declare function debuggablePromise(p: Promise, ctx?: any): Promise; diff --git a/_typescript_docs/pulumi-fabric/runtime/langhost.d.ts b/_typescript_docs/pulumi-fabric/runtime/langhost.d.ts deleted file mode 100644 index 9c945b012c56..000000000000 --- a/_typescript_docs/pulumi-fabric/runtime/langhost.d.ts +++ /dev/null @@ -1,9 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: runtime/langhost.d.ts ---- -export declare function serveLanguageHost(monitor: string, engine: string | undefined): { - server: any; - port: number; -}; diff --git a/_typescript_docs/pulumi-fabric/runtime/log.d.ts b/_typescript_docs/pulumi-fabric/runtime/log.d.ts deleted file mode 100644 index 2502202b4e7e..000000000000 --- a/_typescript_docs/pulumi-fabric/runtime/log.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: runtime/log.d.ts ---- -export declare class Log { - private static errcnt; - private static lastLog; - static hasErrors(): boolean; - static debug(msg: string): void; - static info(msg: string): void; - static warn(msg: string): void; - static error(msg: string): void; - private static log(engine, sev, msg); -} diff --git a/_typescript_docs/pulumi-fabric/runtime/property.d.ts b/_typescript_docs/pulumi-fabric/runtime/property.d.ts deleted file mode 100644 index 3fdb62486e3e..000000000000 --- a/_typescript_docs/pulumi-fabric/runtime/property.d.ts +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: runtime/property.d.ts ---- -import { Computed, MaybeComputed } from "../computed"; -export declare function isInsideMapValueCallback(): boolean; -export declare class Property implements Computed { - readonly inputPromise: Promise; - readonly outputPromise: Promise; - private input; - private output; - private resolveInput; - private resolveOutput; - constructor(value: MaybeComputed | undefined, setInput: boolean, setOutput: boolean); - private static resolveTo(p, value, setInput, setOutput); - mapValue(callback: (v: T) => MaybeComputed): Computed; - done(dryRun: boolean): void; - awaitingInput(): boolean; - awaitingOutput(): boolean; - setInput(value: T | undefined): void; - setOutput(value: T | undefined, isFinal: boolean, skipIfAlready: boolean): void; - toString(): string; -} diff --git a/_typescript_docs/pulumi-fabric/runtime/resource.d.ts b/_typescript_docs/pulumi-fabric/runtime/resource.d.ts deleted file mode 100644 index f2f64e42c521..000000000000 --- a/_typescript_docs/pulumi-fabric/runtime/resource.d.ts +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: runtime/resource.d.ts ---- -import { MaybeComputed } from "../computed"; -import { Resource } from "../resource"; -export declare function registerResource(res: Resource, t: string, name: string, props: { - [key: string]: MaybeComputed | undefined; -}): void; -export declare const unknownPropertyValue = "04da6b54-80e4-46f7-96ec-b56ff0331ba9"; -export declare const specialSigKey = "4dabf18193072939515e22adb298388d"; -export declare const specialAssetSig = "c44067f5952c0a294b673a41bacd8c17"; -export declare const specialArchiveSig = "0def7320c3a5731c473e5ecbe6d01bc7"; diff --git a/_typescript_docs/pulumi-fabric/runtime/settings.d.ts b/_typescript_docs/pulumi-fabric/runtime/settings.d.ts deleted file mode 100644 index 7cb92e66fa27..000000000000 --- a/_typescript_docs/pulumi-fabric/runtime/settings.d.ts +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: runtime/settings.d.ts ---- -export declare function errorString(err: Error): string; -export declare let dryRun: boolean; -export declare function hasMonitor(): boolean; -export declare function isDryRun(): boolean; -export declare function getMonitor(): Object | undefined; -export declare function getEngine(): Object | undefined; -export declare function configure(m: Object | undefined, e: Object | undefined, dr: boolean): void; -export declare function disconnect(): void; -export declare function rpcKeepAlive(): () => void; diff --git a/_typescript_docs/pulumi-fabric/tests/config.spec.d.ts b/_typescript_docs/pulumi-fabric/tests/config.spec.d.ts deleted file mode 100644 index 6176669365d9..000000000000 --- a/_typescript_docs/pulumi-fabric/tests/config.spec.d.ts +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: tests/config.spec.d.ts ---- diff --git a/_typescript_docs/pulumi-fabric/tests/init.spec.d.ts b/_typescript_docs/pulumi-fabric/tests/init.spec.d.ts deleted file mode 100644 index 2c08a20ab34d..000000000000 --- a/_typescript_docs/pulumi-fabric/tests/init.spec.d.ts +++ /dev/null @@ -1,6 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: tests/init.spec.d.ts ---- -import "../index"; diff --git a/_typescript_docs/pulumi-fabric/tests/runtime/closure.spec.d.ts b/_typescript_docs/pulumi-fabric/tests/runtime/closure.spec.d.ts deleted file mode 100644 index da5017882662..000000000000 --- a/_typescript_docs/pulumi-fabric/tests/runtime/closure.spec.d.ts +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: tests/runtime/closure.spec.d.ts ---- diff --git a/_typescript_docs/pulumi-fabric/tests/runtime/computed.spec.d.ts b/_typescript_docs/pulumi-fabric/tests/runtime/computed.spec.d.ts deleted file mode 100644 index 20ff633fd998..000000000000 --- a/_typescript_docs/pulumi-fabric/tests/runtime/computed.spec.d.ts +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: tests/runtime/computed.spec.d.ts ---- diff --git a/_typescript_docs/pulumi-fabric/tests/runtime/langhost/run.spec.d.ts b/_typescript_docs/pulumi-fabric/tests/runtime/langhost/run.spec.d.ts deleted file mode 100644 index 771b5e2f828f..000000000000 --- a/_typescript_docs/pulumi-fabric/tests/runtime/langhost/run.spec.d.ts +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: tests/runtime/langhost/run.spec.d.ts ---- diff --git a/_typescript_docs/pulumi-fabric/tests/util.d.ts b/_typescript_docs/pulumi-fabric/tests/util.d.ts deleted file mode 100644 index 14f70fc4f523..000000000000 --- a/_typescript_docs/pulumi-fabric/tests/util.d.ts +++ /dev/null @@ -1,10 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-fabric -subpath: tests/util.d.ts ---- -import { Computed } from "../index"; -export declare type MochaFunc = (err: Error) => void; -export declare function asyncTest(test: () => Promise): (func: MochaFunc) => void; -export declare function assertAsyncThrows(test: () => Promise): Promise; -export declare function computedToPromise(computed: Computed): Promise; diff --git a/_typescript_docs/pulumi-framework/api.d.ts b/_typescript_docs/pulumi-framework/api.d.ts deleted file mode 100644 index 7e5847e0e2f9..000000000000 --- a/_typescript_docs/pulumi-framework/api.d.ts +++ /dev/null @@ -1,56 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-framework -subpath: api.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export interface Request { - body: any; - method: string; - params: { - [param: string]: string; - }; - headers: { - [header: string]: string; - }; - query: { - [query: string]: string; - }; - path: string; -} -export interface Response { - status(code: number): Response; - setHeader(name: string, value: string): Response; - write(data: string): Response; - end(data?: string): void; - json(obj: any): void; -} -export declare type RouteHandler = (req: Request, res: Response, next: () => void) => void; -export declare class HttpAPI { - url?: fabric.Computed; - private api; - private deployment; - private swaggerSpec; - private apiName; - private lambdas; - private bucket; - constructor(apiName: string); - staticFile(path: string, filePath: string, contentType?: string): void; - private routeLambda(method, path, func); - private routePrepare(method, path); - route(method: string, path: string, middleware: RouteHandler[], handler: RouteHandler): void; - get(path: string, middleware: RouteHandler[], handler: RouteHandler): void; - put(path: string, middleware: RouteHandler[], handler: RouteHandler): void; - post(path: string, middleware: RouteHandler[], handler: RouteHandler): void; - delete(path: string, middleware: RouteHandler[], handler: RouteHandler): void; - options(path: string, middleware: RouteHandler[], handler: RouteHandler): void; - all(path: string, middleware: RouteHandler[], handler: RouteHandler): void; - publish(): fabric.Computed; - private attachCustomDomain(domain); -} -export interface Domain { - domainName: string; - certificateBody: string; - certificatePrivateKey: string; - certificateChain: string; -} diff --git a/_typescript_docs/pulumi-framework/function.d.ts b/_typescript_docs/pulumi-framework/function.d.ts deleted file mode 100644 index f872f12eb101..000000000000 --- a/_typescript_docs/pulumi-framework/function.d.ts +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-framework -subpath: function.d.ts ---- -import * as aws from "@pulumi/aws"; -export { Context, Handler } from "@pulumi/aws/serverless"; -export declare class LoggedFunction { - lambda: aws.lambda.Function; - role: aws.iam.Role; - constructor(name: string, policies: aws.ARN[], func: aws.serverless.Handler); -} diff --git a/_typescript_docs/pulumi-framework/index.html b/_typescript_docs/pulumi-framework/index.html deleted file mode 100644 index faee77f9bb45..000000000000 --- a/_typescript_docs/pulumi-framework/index.html +++ /dev/null @@ -1,4 +0,0 @@ ---- -layout: typescript-repo -repo: pulumi-framework ---- diff --git a/_typescript_docs/pulumi-framework/logCollector.d.ts b/_typescript_docs/pulumi-framework/logCollector.d.ts deleted file mode 100644 index 953c8537ed34..000000000000 --- a/_typescript_docs/pulumi-framework/logCollector.d.ts +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-framework -subpath: logCollector.d.ts ---- -import * as aws from "@pulumi/aws"; -export declare function getLogCollector(): aws.lambda.Function; diff --git a/_typescript_docs/pulumi-framework/sns.d.ts b/_typescript_docs/pulumi-framework/sns.d.ts deleted file mode 100644 index 730d210fc0d8..000000000000 --- a/_typescript_docs/pulumi-framework/sns.d.ts +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-framework -subpath: sns.d.ts ---- -import * as aws from "@pulumi/aws"; -export interface SNSItem { - SignatureVersion: string; - Timestamp: string; - Signature: string; - SigningCertUrl: string; - MessageId: string; - Message: string; - MessageAttributes: { - [key: string]: SNSMessageAttribute; - }; - Type: string; - UnsubscribeUrl: string; - TopicArn: string; - Subject: string; -} -export interface SNSMessageAttribute { - Type: string; - Value: string; -} -export declare function createSubscription(resName: string, topic: aws.sns.Topic, handler: (item: SNSItem) => Promise): aws.sns.TopicSubscription; diff --git a/_typescript_docs/pulumi-framework/table.d.ts b/_typescript_docs/pulumi-framework/table.d.ts deleted file mode 100644 index 8ab3a6cafea0..000000000000 --- a/_typescript_docs/pulumi-framework/table.d.ts +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-framework -subpath: table.d.ts ---- -import * as fabric from "@pulumi/pulumi-fabric"; -export interface TableOptions { - readCapacity?: number; - writeCapacity?: number; -} -export declare class Table { - private table; - private readonly readCapacity; - private readonly writeCapacity; - tableName: fabric.Computed; - readonly primaryKey: string; - readonly primaryKeyType: string; - get: (query: Object) => Promise; - insert: (item: Object) => Promise; - scan: () => Promise; - delete: (query: Object) => Promise; - update: (query: Object, updates: Object) => Promise; - constructor(name: string, primaryKey?: string, primaryKeyType?: "S" | "N" | "B", opts?: TableOptions); -} diff --git a/_typescript_docs/pulumi-framework/timer.d.ts b/_typescript_docs/pulumi-framework/timer.d.ts deleted file mode 100644 index 5cc0f7108f33..000000000000 --- a/_typescript_docs/pulumi-framework/timer.d.ts +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-framework -subpath: timer.d.ts ---- -export interface IntervalRate { - minutes?: number; - hours?: number; - days?: number; -} -export interface DailySchedule { - hourUTC?: number; - minuteUTC?: number; -} -export declare function interval(name: string, options: IntervalRate, handler: () => Promise): void; -export declare function cron(name: string, cronTab: string, handler: () => Promise): void; -export declare function daily(name: string, schedule: DailySchedule, handler: () => Promise): void; diff --git a/_typescript_docs/pulumi-framework/topic.d.ts b/_typescript_docs/pulumi-framework/topic.d.ts deleted file mode 100644 index 051a5406eb8b..000000000000 --- a/_typescript_docs/pulumi-framework/topic.d.ts +++ /dev/null @@ -1,15 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-framework -subpath: topic.d.ts ---- -export declare class Topic implements Stream { - private name; - private topic; - publish: (item: T) => Promise; - constructor(name: string); - subscribe(name: string, shandler: (item: T) => Promise): void; -} -export interface Stream { - subscribe(name: string, handler: (item: T) => Promise): void; -} diff --git a/_typescript_docs/pulumi-framework/unhandledError.d.ts b/_typescript_docs/pulumi-framework/unhandledError.d.ts deleted file mode 100644 index 2f0d343dd056..000000000000 --- a/_typescript_docs/pulumi-framework/unhandledError.d.ts +++ /dev/null @@ -1,9 +0,0 @@ ---- -layout: typescript-reference -repo: pulumi-framework -subpath: unhandledError.d.ts ---- -import * as aws from "@pulumi/aws"; -export declare function getUnhandledErrorTopic(): aws.sns.Topic; -export declare type ErrorHandler = (message: string, payload: any) => void; -export declare function onError(name: string, handler: ErrorHandler): void; diff --git a/libraries/index.md b/libraries/index.md new file mode 100644 index 000000000000..eb33cf553766 --- /dev/null +++ b/libraries/index.md @@ -0,0 +1,8 @@ +--- +layout: default +--- + +# Pulumi Libraries + +- [pulumi-aws](/libraries/pulumi-aws) +- [pulumi-framework](/libraries/pulumi-framework) diff --git a/libraries/pulumi-aws/assets/css/main.css b/libraries/pulumi-aws/assets/css/main.css new file mode 100644 index 000000000000..48b3645ce293 --- /dev/null +++ b/libraries/pulumi-aws/assets/css/main.css @@ -0,0 +1,865 @@ +/*! normalize.css v1.1.3 | MIT License | git.io/normalize */ +/* ========================================================================== HTML5 display definitions ========================================================================== */ +/** Correct `block` display not defined in IE 6/7/8/9 and Firefox 3. */ +article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } + +/** Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. */ +audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } + +/** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */ +audio:not([controls]) { display: none; height: 0; } + +/** Address styling not present in IE 7/8/9, Firefox 3, and Safari 4. Known issue: no IE 6 support. */ +[hidden] { display: none; } + +/* ========================================================================== Base ========================================================================== */ +/** 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using `em` units. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */ +html { font-size: 100%; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ font-family: sans-serif; } + +/** Address `font-family` inconsistency between `textarea` and other form elements. */ +button, input, select, textarea { font-family: sans-serif; } + +/** Address margins handled incorrectly in IE 6/7. */ +body { margin: 0; } + +/* ========================================================================== Links ========================================================================== */ +/** Address `outline` inconsistency between Chrome and other browsers. */ +a:focus { outline: thin dotted; } +a:active, a:hover { outline: 0; } + +/** Improve readability when focused and also mouse hovered in all browsers. */ +/* ========================================================================== Typography ========================================================================== */ +/** Address font sizes and margins set differently in IE 6/7. Address font sizes within `section` and `article` in Firefox 4+, Safari 5, and Chrome. */ +h1 { font-size: 2em; margin: 0.67em 0; } + +h2 { font-size: 1.5em; margin: 0.83em 0; } + +h3 { font-size: 1.17em; margin: 1em 0; } + +h4, .tsd-index-panel h3 { font-size: 1em; margin: 1.33em 0; } + +h5 { font-size: 0.83em; margin: 1.67em 0; } + +h6 { font-size: 0.67em; margin: 2.33em 0; } + +/** Address styling not present in IE 7/8/9, Safari 5, and Chrome. */ +abbr[title] { border-bottom: 1px dotted; } + +/** Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome. */ +b, strong { font-weight: bold; } + +blockquote { margin: 1em 40px; } + +/** Address styling not present in Safari 5 and Chrome. */ +dfn { font-style: italic; } + +/** Address differences between Firefox and other browsers. Known issue: no IE 6/7 normalization. */ +hr { box-sizing: content-box; height: 0; } + +/** Address styling not present in IE 6/7/8/9. */ +mark { background: #ff0; color: #000; } + +/** Address margins set differently in IE 6/7. */ +p, pre { margin: 1em 0; } + +/** Correct font family set oddly in IE 6, Safari 4/5, and Chrome. */ +code, kbd, pre, samp { font-family: monospace, serif; _font-family: "courier new", monospace; font-size: 1em; } + +/** Improve readability of pre-formatted text in all browsers. */ +pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; } + +/** Address CSS quotes not supported in IE 6/7. */ +q { quotes: none; } +q:before, q:after { content: ""; content: none; } + +/** Address `quotes` property not supported in Safari 4. */ +/** Address inconsistent and variable font size in all browsers. */ +small { font-size: 80%; } + +/** Prevent `sub` and `sup` affecting `line-height` in all browsers. */ +sub { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } + +sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; top: -0.5em; } + +sub { bottom: -0.25em; } + +/* ========================================================================== Lists ========================================================================== */ +/** Address margins set differently in IE 6/7. */ +dl, menu, ol, ul { margin: 1em 0; } + +dd { margin: 0 0 0 40px; } + +/** Address paddings set differently in IE 6/7. */ +menu, ol, ul { padding: 0 0 0 40px; } + +/** Correct list images handled incorrectly in IE 7. */ +nav ul, nav ol { list-style: none; list-style-image: none; } + +/* ========================================================================== Embedded content ========================================================================== */ +/** 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3. 2. Improve image quality when scaled in IE 7. */ +img { border: 0; /* 1 */ -ms-interpolation-mode: bicubic; } + +/* 2 */ +/** Correct overflow displayed oddly in IE 9. */ +svg:not(:root) { overflow: hidden; } + +/* ========================================================================== Figures ========================================================================== */ +/** Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11. */ +figure, form { margin: 0; } + +/* ========================================================================== Forms ========================================================================== */ +/** Correct margin displayed oddly in IE 6/7. */ +/** Define consistent border, margin, and padding. */ +fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } + +/** 1. Correct color not being inherited in IE 6/7/8/9. 2. Correct text not wrapping in Firefox 3. 3. Correct alignment displayed oddly in IE 6/7. */ +legend { border: 0; /* 1 */ padding: 0; white-space: normal; /* 2 */ *margin-left: -7px; } + +/* 3 */ +/** 1. Correct font size not being inherited in all browsers. 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5, and Chrome. 3. Improve appearance and consistency in all browsers. */ +button, input, select, textarea { font-size: 100%; /* 1 */ margin: 0; /* 2 */ vertical-align: baseline; /* 3 */ *vertical-align: middle; } + +/* 3 */ +/** Address Firefox 3+ setting `line-height` on `input` using `!important` in the UA stylesheet. */ +button, input { line-height: normal; } + +/** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+. Correct `select` style inheritance in Firefox 4+ and Opera. */ +button, select { text-transform: none; } + +/** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. 4. Remove inner spacing in IE 7 without affecting normal text inputs. Known issue: inner spacing remains in IE 6. */ +button, html input[type="button"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ *overflow: visible; } + +/* 4 */ +input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ *overflow: visible; } + +/* 4 */ +/** Re-set default cursor for disabled elements. */ +button[disabled], html input[disabled] { cursor: default; } + +/** 1. Address box sizing set to content-box in IE 8/9. 2. Remove excess padding in IE 8/9. 3. Remove excess padding in IE 7. Known issue: excess padding remains in IE 6. */ +input { /* 3 */ } +input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ *height: 13px; /* 3 */ *width: 13px; } +input[type="search"] { -webkit-appearance: textfield; /* 1 */ /* 2 */ box-sizing: content-box; } +input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } + +/** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */ +/** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */ +/** Remove inner padding and border in Firefox 3+. */ +button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } + +/** 1. Remove default vertical scrollbar in IE 6/7/8/9. 2. Improve readability and alignment in all browsers. */ +textarea { overflow: auto; /* 1 */ vertical-align: top; } + +/* 2 */ +/* ========================================================================== Tables ========================================================================== */ +/** Remove most spacing between table cells. */ +table { border-collapse: collapse; border-spacing: 0; } + +/* Visual Studio-like style based on original C# coloring by Jason Diamond */ +.hljs { display: inline-block; padding: 0.5em; background: white; color: black; } + +.hljs-comment, .hljs-annotation, .hljs-template_comment, .diff .hljs-header, .hljs-chunk, .apache .hljs-cbracket { color: #008000; } + +.hljs-keyword, .hljs-id, .hljs-built_in, .css .smalltalk .hljs-class, .hljs-winutils, .bash .hljs-variable, .tex .hljs-command, .hljs-request, .hljs-status, .nginx .hljs-title { color: #00f; } + +.xml .hljs-tag { color: #00f; } +.xml .hljs-tag .hljs-value { color: #00f; } + +.hljs-string, .hljs-title, .hljs-parent, .hljs-tag .hljs-value, .hljs-rules .hljs-value { color: #a31515; } + +.ruby .hljs-symbol { color: #a31515; } +.ruby .hljs-symbol .hljs-string { color: #a31515; } + +.hljs-template_tag, .django .hljs-variable, .hljs-addition, .hljs-flow, .hljs-stream, .apache .hljs-tag, .hljs-date, .tex .hljs-formula, .coffeescript .hljs-attribute { color: #a31515; } + +.ruby .hljs-string, .hljs-decorator, .hljs-filter .hljs-argument, .hljs-localvars, .hljs-array, .hljs-attr_selector, .hljs-pseudo, .hljs-pi, .hljs-doctype, .hljs-deletion, .hljs-envvar, .hljs-shebang, .hljs-preprocessor, .hljs-pragma, .userType, .apache .hljs-sqbracket, .nginx .hljs-built_in, .tex .hljs-special, .hljs-prompt { color: #2b91af; } + +.hljs-phpdoc, .hljs-javadoc, .hljs-xmlDocTag { color: #808080; } + +.vhdl .hljs-typename { font-weight: bold; } +.vhdl .hljs-string { color: #666666; } +.vhdl .hljs-literal { color: #a31515; } +.vhdl .hljs-attribute { color: #00b0e8; } + +.xml .hljs-attribute { color: #f00; } + +.col > :first-child, .col-1 > :first-child, .col-2 > :first-child, .col-3 > :first-child, .col-4 > :first-child, .col-5 > :first-child, .col-6 > :first-child, .col-7 > :first-child, .col-8 > :first-child, .col-9 > :first-child, .col-10 > :first-child, .col-11 > :first-child, .tsd-panel > :first-child, ul.tsd-descriptions > li > :first-child, .col > :first-child > :first-child, .col-1 > :first-child > :first-child, .col-2 > :first-child > :first-child, .col-3 > :first-child > :first-child, .col-4 > :first-child > :first-child, .col-5 > :first-child > :first-child, .col-6 > :first-child > :first-child, .col-7 > :first-child > :first-child, .col-8 > :first-child > :first-child, .col-9 > :first-child > :first-child, .col-10 > :first-child > :first-child, .col-11 > :first-child > :first-child, .tsd-panel > :first-child > :first-child, ul.tsd-descriptions > li > :first-child > :first-child, .col > :first-child > :first-child > :first-child, .col-1 > :first-child > :first-child > :first-child, .col-2 > :first-child > :first-child > :first-child, .col-3 > :first-child > :first-child > :first-child, .col-4 > :first-child > :first-child > :first-child, .col-5 > :first-child > :first-child > :first-child, .col-6 > :first-child > :first-child > :first-child, .col-7 > :first-child > :first-child > :first-child, .col-8 > :first-child > :first-child > :first-child, .col-9 > :first-child > :first-child > :first-child, .col-10 > :first-child > :first-child > :first-child, .col-11 > :first-child > :first-child > :first-child, .tsd-panel > :first-child > :first-child > :first-child, ul.tsd-descriptions > li > :first-child > :first-child > :first-child { margin-top: 0; } +.col > :last-child, .col-1 > :last-child, .col-2 > :last-child, .col-3 > :last-child, .col-4 > :last-child, .col-5 > :last-child, .col-6 > :last-child, .col-7 > :last-child, .col-8 > :last-child, .col-9 > :last-child, .col-10 > :last-child, .col-11 > :last-child, .tsd-panel > :last-child, ul.tsd-descriptions > li > :last-child, .col > :last-child > :last-child, .col-1 > :last-child > :last-child, .col-2 > :last-child > :last-child, .col-3 > :last-child > :last-child, .col-4 > :last-child > :last-child, .col-5 > :last-child > :last-child, .col-6 > :last-child > :last-child, .col-7 > :last-child > :last-child, .col-8 > :last-child > :last-child, .col-9 > :last-child > :last-child, .col-10 > :last-child > :last-child, .col-11 > :last-child > :last-child, .tsd-panel > :last-child > :last-child, ul.tsd-descriptions > li > :last-child > :last-child, .col > :last-child > :last-child > :last-child, .col-1 > :last-child > :last-child > :last-child, .col-2 > :last-child > :last-child > :last-child, .col-3 > :last-child > :last-child > :last-child, .col-4 > :last-child > :last-child > :last-child, .col-5 > :last-child > :last-child > :last-child, .col-6 > :last-child > :last-child > :last-child, .col-7 > :last-child > :last-child > :last-child, .col-8 > :last-child > :last-child > :last-child, .col-9 > :last-child > :last-child > :last-child, .col-10 > :last-child > :last-child > :last-child, .col-11 > :last-child > :last-child > :last-child, .tsd-panel > :last-child > :last-child > :last-child, ul.tsd-descriptions > li > :last-child > :last-child > :last-child { margin-bottom: 0; } + +.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; } +@media (max-width: 640px) { .container { padding: 0 20px; } } + +.container-main { padding-bottom: 200px; } + +.row { position: relative; margin: 0 -10px; } +.row:after { visibility: hidden; display: block; content: ""; clear: both; height: 0; } + +.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 { box-sizing: border-box; float: left; padding: 0 10px; } + +.col-1 { width: 8.33333%; } + +.offset-1 { margin-left: 8.33333%; } + +.col-2 { width: 16.66667%; } + +.offset-2 { margin-left: 16.66667%; } + +.col-3 { width: 25%; } + +.offset-3 { margin-left: 25%; } + +.col-4 { width: 33.33333%; } + +.offset-4 { margin-left: 33.33333%; } + +.col-5 { width: 41.66667%; } + +.offset-5 { margin-left: 41.66667%; } + +.col-6 { width: 50%; } + +.offset-6 { margin-left: 50%; } + +.col-7 { width: 58.33333%; } + +.offset-7 { margin-left: 58.33333%; } + +.col-8 { width: 66.66667%; } + +.offset-8 { margin-left: 66.66667%; } + +.col-9 { width: 75%; } + +.offset-9 { margin-left: 75%; } + +.col-10 { width: 83.33333%; } + +.offset-10 { margin-left: 83.33333%; } + +.col-11 { width: 91.66667%; } + +.offset-11 { margin-left: 91.66667%; } + +.tsd-kind-icon { display: block; position: relative; padding-left: 20px; text-indent: -20px; } +.tsd-kind-icon:before { content: ''; display: inline-block; vertical-align: middle; width: 17px; height: 17px; margin: 0 3px 2px 0; background-image: url(../images/icons.png); } +@media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { .tsd-kind-icon:before { background-image: url(../images/icons@2x.png); background-size: 238px 204px; } } + +.tsd-signature.tsd-kind-icon:before { background-position: 0 -153px; } + +.tsd-kind-object-literal > .tsd-kind-icon:before { background-position: 0px -17px; } +.tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -17px; } +.tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -17px; } + +.tsd-kind-class > .tsd-kind-icon:before { background-position: 0px -34px; } +.tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -34px; } +.tsd-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -34px; } + +.tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: 0px -51px; } +.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -51px; } +.tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -51px; } + +.tsd-kind-interface > .tsd-kind-icon:before { background-position: 0px -68px; } +.tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -68px; } +.tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -68px; } + +.tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: 0px -85px; } +.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -85px; } +.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -85px; } + +.tsd-kind-module > .tsd-kind-icon:before { background-position: 0px -102px; } +.tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -102px; } +.tsd-kind-module.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -102px; } + +.tsd-kind-external-module > .tsd-kind-icon:before { background-position: 0px -102px; } +.tsd-kind-external-module.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -102px; } +.tsd-kind-external-module.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -102px; } + +.tsd-kind-enum > .tsd-kind-icon:before { background-position: 0px -119px; } +.tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -119px; } +.tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -119px; } + +.tsd-kind-enum-member > .tsd-kind-icon:before { background-position: 0px -136px; } +.tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -136px; } +.tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -136px; } + +.tsd-kind-signature > .tsd-kind-icon:before { background-position: 0px -153px; } +.tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -153px; } +.tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -153px; } + +.tsd-kind-type-alias > .tsd-kind-icon:before { background-position: 0px -170px; } +.tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before { background-position: -17px -170px; } +.tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before { background-position: -34px -170px; } + +.tsd-kind-variable > .tsd-kind-icon:before { background-position: -136px -0px; } +.tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -0px; } +.tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; } +.tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -0px; } +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -0px; } +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -0px; } +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -0px; } +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; } +.tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -0px; } +.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -0px; } +.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; } +.tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -0px; } +.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -0px; } + +.tsd-kind-property > .tsd-kind-icon:before { background-position: -136px -0px; } +.tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -0px; } +.tsd-kind-property.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; } +.tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -0px; } +.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -0px; } +.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -0px; } +.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -0px; } +.tsd-kind-property.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; } +.tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -0px; } +.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -0px; } +.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -0px; } +.tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -0px; } +.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -0px; } + +.tsd-kind-get-signature > .tsd-kind-icon:before { background-position: -136px -17px; } +.tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -17px; } +.tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -17px; } +.tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -17px; } +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -17px; } +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -17px; } +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -17px; } +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -17px; } +.tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -17px; } +.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -17px; } +.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -17px; } +.tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -17px; } +.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -17px; } + +.tsd-kind-set-signature > .tsd-kind-icon:before { background-position: -136px -34px; } +.tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -34px; } +.tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -34px; } +.tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -34px; } +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -34px; } +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -34px; } +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -34px; } +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -34px; } +.tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -34px; } +.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -34px; } +.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -34px; } +.tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -34px; } +.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -34px; } + +.tsd-kind-accessor > .tsd-kind-icon:before { background-position: -136px -51px; } +.tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -51px; } +.tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -51px; } +.tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -51px; } +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -51px; } +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -51px; } +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -51px; } +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -51px; } +.tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -51px; } +.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -51px; } +.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -51px; } +.tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -51px; } +.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -51px; } + +.tsd-kind-function > .tsd-kind-icon:before { background-position: -136px -68px; } +.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -68px; } +.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; } +.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -68px; } +.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -68px; } +.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -68px; } +.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -68px; } +.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; } +.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -68px; } +.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -68px; } +.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; } +.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -68px; } +.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -68px; } + +.tsd-kind-method > .tsd-kind-icon:before { background-position: -136px -68px; } +.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -68px; } +.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; } +.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -68px; } +.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -68px; } +.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -68px; } +.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -68px; } +.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; } +.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -68px; } +.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -68px; } +.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; } +.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -68px; } +.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -68px; } + +.tsd-kind-call-signature > .tsd-kind-icon:before { background-position: -136px -68px; } +.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -68px; } +.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; } +.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -68px; } +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -68px; } +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -68px; } +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -68px; } +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; } +.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -68px; } +.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -68px; } +.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -68px; } +.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -68px; } +.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -68px; } + +.tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: -136px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -85px; } +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -85px; } + +.tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before { background-position: -136px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -85px; } +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -85px; } + +.tsd-kind-constructor > .tsd-kind-icon:before { background-position: -136px -102px; } +.tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -102px; } +.tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; } +.tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -102px; } +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -102px; } +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -102px; } +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -102px; } +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; } +.tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -102px; } +.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -102px; } +.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; } +.tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -102px; } +.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -102px; } + +.tsd-kind-constructor-signature > .tsd-kind-icon:before { background-position: -136px -102px; } +.tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -102px; } +.tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; } +.tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -102px; } +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -102px; } +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -102px; } +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -102px; } +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; } +.tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -102px; } +.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -102px; } +.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -102px; } +.tsd-kind-constructor-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -102px; } +.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -102px; } + +.tsd-kind-index-signature > .tsd-kind-icon:before { background-position: -136px -119px; } +.tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -119px; } +.tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -119px; } +.tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -119px; } +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -119px; } +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -119px; } +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -119px; } +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -119px; } +.tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -119px; } +.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -119px; } +.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -119px; } +.tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -119px; } +.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -119px; } + +.tsd-kind-event > .tsd-kind-icon:before { background-position: -136px -136px; } +.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -136px; } +.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -136px; } +.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -136px; } +.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -136px; } +.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -136px; } +.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -136px; } +.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -136px; } +.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -136px; } +.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -136px; } +.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -136px; } +.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -136px; } +.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -136px; } + +.tsd-is-static > .tsd-kind-icon:before { background-position: -136px -153px; } +.tsd-is-static.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -153px; } +.tsd-is-static.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -153px; } +.tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -153px; } +.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -153px; } +.tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -153px; } +.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -153px; } +.tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -153px; } +.tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -153px; } +.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -153px; } +.tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -153px; } +.tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -153px; } +.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -153px; } + +.tsd-is-static.tsd-kind-function > .tsd-kind-icon:before { background-position: -136px -170px; } +.tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -170px; } +.tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; } +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -170px; } +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -170px; } +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -170px; } +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -170px; } +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; } +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -170px; } +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -170px; } +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; } +.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -170px; } +.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -170px; } + +.tsd-is-static.tsd-kind-method > .tsd-kind-icon:before { background-position: -136px -170px; } +.tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -170px; } +.tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; } +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -170px; } +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -170px; } +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -170px; } +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -170px; } +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; } +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -170px; } +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -170px; } +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; } +.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -170px; } +.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -170px; } + +.tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before { background-position: -136px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -170px; } +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -170px; } + +.tsd-is-static.tsd-kind-event > .tsd-kind-icon:before { background-position: -136px -187px; } +.tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { background-position: -153px -187px; } +.tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -187px; } +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { background-position: -51px -187px; } +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { background-position: -68px -187px; } +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { background-position: -85px -187px; } +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited > .tsd-kind-icon:before { background-position: -102px -187px; } +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -187px; } +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { background-position: -170px -187px; } +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { background-position: -187px -187px; } +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { background-position: -119px -187px; } +.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { background-position: -204px -187px; } +.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited > .tsd-kind-icon:before { background-position: -221px -187px; } + +.no-transition { transition: none !important; } + +@-webkit-keyframes fade-in { from { opacity: 0; } + to { opacity: 1; } } + +@keyframes fade-in { from { opacity: 0; } + to { opacity: 1; } } +@-webkit-keyframes fade-out { from { opacity: 1; visibility: visible; } + to { opacity: 0; } } +@keyframes fade-out { from { opacity: 1; visibility: visible; } + to { opacity: 0; } } +@-webkit-keyframes fade-in-delayed { 0% { opacity: 0; } + 33% { opacity: 0; } + 100% { opacity: 1; } } +@keyframes fade-in-delayed { 0% { opacity: 0; } + 33% { opacity: 0; } + 100% { opacity: 1; } } +@-webkit-keyframes fade-out-delayed { 0% { opacity: 1; visibility: visible; } + 66% { opacity: 0; } + 100% { opacity: 0; } } +@keyframes fade-out-delayed { 0% { opacity: 1; visibility: visible; } + 66% { opacity: 0; } + 100% { opacity: 0; } } +@-webkit-keyframes shift-to-left { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); } + to { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); } } +@keyframes shift-to-left { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); } + to { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); } } +@-webkit-keyframes unshift-to-left { from { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); } + to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } +@keyframes unshift-to-left { from { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); } + to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } +@-webkit-keyframes pop-in-from-right { from { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); } + to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } +@keyframes pop-in-from-right { from { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); } + to { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } +@-webkit-keyframes pop-out-to-right { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); visibility: visible; } + to { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); } } +@keyframes pop-out-to-right { from { -webkit-transform: translate(0, 0); transform: translate(0, 0); visibility: visible; } + to { -webkit-transform: translate(100%, 0); transform: translate(100%, 0); } } +body { background: #fdfdfd; font-family: "Segoe UI", sans-serif; font-size: 16px; color: #222; } + +a { color: #4da6ff; text-decoration: none; } +a:hover { text-decoration: underline; } + +code, pre { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; padding: 0.2em; margin: 0; font-size: 14px; background-color: rgba(0, 0, 0, 0.04); } + +pre { padding: 10px; } +pre code { padding: 0; font-size: 100%; background-color: transparent; } + +.tsd-typography { line-height: 1.333em; } +.tsd-typography ul { list-style: square; padding: 0 0 0 20px; margin: 0; } +.tsd-typography h4, .tsd-typography .tsd-index-panel h3, .tsd-index-panel .tsd-typography h3, .tsd-typography h5, .tsd-typography h6 { font-size: 1em; margin: 0; } +.tsd-typography h5, .tsd-typography h6 { font-weight: normal; } +.tsd-typography p, .tsd-typography ul, .tsd-typography ol { margin: 1em 0; } + +@media (min-width: 901px) and (max-width: 1024px) { html.default .col-content { width: 72%; } + html.default .col-menu { width: 28%; } + html.default .tsd-navigation { padding-left: 10px; } } +@media (max-width: 900px) { html.default .col-content { float: none; width: 100%; } + html.default .col-menu { position: fixed !important; overflow: auto; -webkit-overflow-scrolling: touch; overflow-scrolling: touch; z-index: 1024; top: 0 !important; bottom: 0 !important; left: auto !important; right: 0 !important; width: 100%; padding: 20px 20px 0 0; max-width: 450px; visibility: hidden; background-color: #fff; -webkit-transform: translate(100%, 0); transform: translate(100%, 0); } + html.default .col-menu > *:last-child { padding-bottom: 20px; } + html.default .overlay { content: ""; display: block; position: fixed; z-index: 1023; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.75); visibility: hidden; } + html.default.to-has-menu .overlay { -webkit-animation: fade-in 0.4s; animation: fade-in 0.4s; } + html.default.to-has-menu header, html.default.to-has-menu footer, html.default.to-has-menu .col-content { -webkit-animation: shift-to-left 0.4s; animation: shift-to-left 0.4s; } + html.default.to-has-menu .col-menu { -webkit-animation: pop-in-from-right 0.4s; animation: pop-in-from-right 0.4s; } + html.default.from-has-menu .overlay { -webkit-animation: fade-out 0.4s; animation: fade-out 0.4s; } + html.default.from-has-menu header, html.default.from-has-menu footer, html.default.from-has-menu .col-content { -webkit-animation: unshift-to-left 0.4s; animation: unshift-to-left 0.4s; } + html.default.from-has-menu .col-menu { -webkit-animation: pop-out-to-right 0.4s; animation: pop-out-to-right 0.4s; } + html.default.has-menu body { overflow: hidden; } + html.default.has-menu .overlay { visibility: visible; } + html.default.has-menu header, html.default.has-menu footer, html.default.has-menu .col-content { -webkit-transform: translate(-25%, 0); transform: translate(-25%, 0); } + html.default.has-menu .col-menu { visibility: visible; -webkit-transform: translate(0, 0); transform: translate(0, 0); } } + +.tsd-page-title { padding: 70px 0 20px 0; margin: 0 0 40px 0; background: #fff; box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); } +.tsd-page-title h1 { margin: 0; } + +.tsd-breadcrumb { margin: 0; padding: 0; color: #808080; } +.tsd-breadcrumb a { color: #808080; text-decoration: none; } +.tsd-breadcrumb a:hover { text-decoration: underline; } +.tsd-breadcrumb li { display: inline; } +.tsd-breadcrumb li:after { content: " / "; } + +html.minimal .container { margin: 0; } +html.minimal .container-main { padding-top: 50px; padding-bottom: 0; } +html.minimal .content-wrap { padding-left: 300px; } +html.minimal .tsd-navigation { position: fixed !important; overflow: auto; -webkit-overflow-scrolling: touch; overflow-scrolling: touch; box-sizing: border-box; z-index: 1; left: 0; top: 40px; bottom: 0; width: 300px; padding: 20px; margin: 0; } +html.minimal .tsd-member .tsd-member { margin-left: 0; } +html.minimal .tsd-page-toolbar { position: fixed; z-index: 2; } +html.minimal #tsd-filter .tsd-filter-group { right: 0; -webkit-transform: none; transform: none; } +html.minimal footer { background-color: transparent; } +html.minimal footer .container { padding: 0; } +html.minimal .tsd-generator { padding: 0; } +@media (max-width: 900px) { html.minimal .tsd-navigation { display: none; } + html.minimal .content-wrap { padding-left: 0; } } + +dl.tsd-comment-tags { overflow: hidden; } +dl.tsd-comment-tags dt { clear: both; float: left; padding: 1px 5px; margin: 0 10px 0 0; border-radius: 4px; border: 1px solid #808080; color: #808080; font-size: 0.8em; font-weight: normal; } +dl.tsd-comment-tags dd { margin: 0 0 10px 0; } +dl.tsd-comment-tags p { margin: 0; } + +.tsd-panel.tsd-comment .lead { font-size: 1.1em; line-height: 1.333em; margin-bottom: 2em; } +.tsd-panel.tsd-comment .lead:last-child { margin-bottom: 0; } + +.toggle-protected .tsd-is-private { display: none; } + +.toggle-public .tsd-is-private, .toggle-public .tsd-is-protected, .toggle-public .tsd-is-private-protected { display: none; } + +.toggle-inherited .tsd-is-inherited { display: none; } + +.toggle-only-exported .tsd-is-not-exported { display: none; } + +.toggle-externals .tsd-is-external { display: none; } + +#tsd-filter { position: relative; display: inline-block; height: 40px; vertical-align: bottom; } +.no-filter #tsd-filter { display: none; } +#tsd-filter .tsd-filter-group { display: inline-block; height: 40px; vertical-align: bottom; white-space: nowrap; } +#tsd-filter input { display: none; } +@media (max-width: 900px) { #tsd-filter .tsd-filter-group { display: block; position: absolute; top: 40px; right: 20px; height: auto; background-color: #fff; visibility: hidden; -webkit-transform: translate(50%, 0); transform: translate(50%, 0); box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); } + .has-options #tsd-filter .tsd-filter-group { visibility: visible; } + .to-has-options #tsd-filter .tsd-filter-group { -webkit-animation: fade-in 0.2s; animation: fade-in 0.2s; } + .from-has-options #tsd-filter .tsd-filter-group { -webkit-animation: fade-out 0.2s; animation: fade-out 0.2s; } + #tsd-filter label, #tsd-filter .tsd-select { display: block; padding-right: 20px; } } + +footer { border-top: 1px solid #eee; background-color: #fff; } +footer.with-border-bottom { border-bottom: 1px solid #eee; } +footer .tsd-legend-group { font-size: 0; } +footer .tsd-legend { display: inline-block; width: 25%; padding: 0; font-size: 16px; list-style: none; line-height: 1.333em; vertical-align: top; } +@media (max-width: 900px) { footer .tsd-legend { width: 50%; } } + +.tsd-hierarchy { list-style: square; padding: 0 0 0 20px; margin: 0; } +.tsd-hierarchy .target { font-weight: bold; } + +.tsd-index-panel .tsd-index-content { margin-bottom: -30px !important; } +.tsd-index-panel .tsd-index-section { margin-bottom: 30px !important; } +.tsd-index-panel h3 { margin: 0 -20px 10px -20px; padding: 0 20px 10px 20px; border-bottom: 1px solid #eee; } +.tsd-index-panel ul.tsd-index-list { -webkit-column-count: 3; -moz-column-count: 3; -ms-column-count: 3; -o-column-count: 3; column-count: 3; -webkit-column-gap: 20px; -moz-column-gap: 20px; -ms-column-gap: 20px; -o-column-gap: 20px; column-gap: 20px; padding: 0; list-style: none; line-height: 1.333em; } +@media (max-width: 900px) { .tsd-index-panel ul.tsd-index-list { -webkit-column-count: 1; -moz-column-count: 1; -ms-column-count: 1; -o-column-count: 1; column-count: 1; } } +@media (min-width: 901px) and (max-width: 1024px) { .tsd-index-panel ul.tsd-index-list { -webkit-column-count: 2; -moz-column-count: 2; -ms-column-count: 2; -o-column-count: 2; column-count: 2; } } +.tsd-index-panel ul.tsd-index-list li { -webkit-column-break-inside: avoid; -moz-column-break-inside: avoid; -ms-column-break-inside: avoid; -o-column-break-inside: avoid; column-break-inside: avoid; -webkit-page-break-inside: avoid; -moz-page-break-inside: avoid; -ms-page-break-inside: avoid; -o-page-break-inside: avoid; page-break-inside: avoid; } +.tsd-index-panel a, .tsd-index-panel .tsd-parent-kind-module a { color: #9600ff; } +.tsd-index-panel .tsd-parent-kind-interface a { color: #7da01f; } +.tsd-index-panel .tsd-parent-kind-enum a { color: #cc9900; } +.tsd-index-panel .tsd-parent-kind-class a { color: #4da6ff; } +.tsd-index-panel .tsd-kind-module a { color: #9600ff; } +.tsd-index-panel .tsd-kind-interface a { color: #7da01f; } +.tsd-index-panel .tsd-kind-enum a { color: #cc9900; } +.tsd-index-panel .tsd-kind-class a { color: #4da6ff; } +.tsd-index-panel .tsd-is-private a { color: #808080; } + +.tsd-flag { display: inline-block; padding: 1px 5px; border-radius: 4px; color: #fff; background-color: #808080; text-indent: 0; font-size: 14px; font-weight: normal; } + +.tsd-anchor { position: absolute; top: -100px; } + +.tsd-member { position: relative; } +.tsd-member .tsd-anchor + h3 { margin-top: 0; margin-bottom: 0; border-bottom: none; } + +.tsd-navigation { padding: 0 0 0 40px; } +.tsd-navigation a { display: block; padding-top: 2px; padding-bottom: 2px; border-left: 2px solid transparent; color: #222; text-decoration: none; transition: border-left-color 0.1s; } +.tsd-navigation a:hover { text-decoration: underline; } +.tsd-navigation ul { margin: 0; padding: 0; list-style: none; } +.tsd-navigation li { padding: 0; } + +.tsd-navigation.primary { padding-bottom: 40px; } +.tsd-navigation.primary a { display: block; padding-top: 6px; padding-bottom: 6px; } +.tsd-navigation.primary ul li a { padding-left: 5px; } +.tsd-navigation.primary ul li li a { padding-left: 25px; } +.tsd-navigation.primary ul li li li a { padding-left: 45px; } +.tsd-navigation.primary ul li li li li a { padding-left: 65px; } +.tsd-navigation.primary ul li li li li li a { padding-left: 85px; } +.tsd-navigation.primary ul li li li li li li a { padding-left: 105px; } +.tsd-navigation.primary > ul { border-bottom: 1px solid #eee; } +.tsd-navigation.primary li { border-top: 1px solid #eee; } +.tsd-navigation.primary li.current > a { font-weight: bold; } +.tsd-navigation.primary li.label span { display: block; padding: 20px 0 6px 5px; color: #808080; } +.tsd-navigation.primary li.globals + li > span, .tsd-navigation.primary li.globals + li > a { padding-top: 20px; } + +.tsd-navigation.secondary ul { transition: opacity 0.2s; } +.tsd-navigation.secondary ul li a { padding-left: 25px; } +.tsd-navigation.secondary ul li li a { padding-left: 45px; } +.tsd-navigation.secondary ul li li li a { padding-left: 65px; } +.tsd-navigation.secondary ul li li li li a { padding-left: 85px; } +.tsd-navigation.secondary ul li li li li li a { padding-left: 105px; } +.tsd-navigation.secondary ul li li li li li li a { padding-left: 125px; } +.tsd-navigation.secondary ul.current a { border-left-color: #eee; } +.tsd-navigation.secondary li.focus > a, .tsd-navigation.secondary ul.current li.focus > a { border-left-color: #000; } +.tsd-navigation.secondary li.current { margin-top: 20px; margin-bottom: 20px; border-left-color: #eee; } +.tsd-navigation.secondary li.current > a { font-weight: bold; } + +@media (min-width: 901px) { .menu-sticky-wrap { position: static; } + .no-csspositionsticky .menu-sticky-wrap.sticky { position: fixed; } + .no-csspositionsticky .menu-sticky-wrap.sticky-current { position: fixed; } + .no-csspositionsticky .menu-sticky-wrap.sticky-current ul.before-current, .no-csspositionsticky .menu-sticky-wrap.sticky-current ul.after-current { opacity: 0; } + .no-csspositionsticky .menu-sticky-wrap.sticky-bottom { position: absolute; top: auto !important; left: auto !important; bottom: 0; right: 0; } + .csspositionsticky .menu-sticky-wrap.sticky { position: -webkit-sticky; position: sticky; } + .csspositionsticky .menu-sticky-wrap.sticky-current { position: -webkit-sticky; position: sticky; } } + +.tsd-panel { margin: 20px 0; padding: 20px; background-color: #fff; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); } +.tsd-panel:empty { display: none; } +.tsd-panel > h1, .tsd-panel > h2, .tsd-panel > h3 { margin: 1.5em -20px 10px -20px; padding: 0 20px 10px 20px; border-bottom: 1px solid #eee; } +.tsd-panel > h1.tsd-before-signature, .tsd-panel > h2.tsd-before-signature, .tsd-panel > h3.tsd-before-signature { margin-bottom: 0; border-bottom: 0; } +.tsd-panel table { display: block; width: 100%; overflow: auto; margin-top: 10px; word-break: normal; word-break: keep-all; } +.tsd-panel table th { font-weight: bold; } +.tsd-panel table th, .tsd-panel table td { padding: 6px 13px; border: 1px solid #ddd; } +.tsd-panel table tr { background-color: #fff; border-top: 1px solid #ccc; } +.tsd-panel table tr:nth-child(2n) { background-color: #f8f8f8; } + +.tsd-panel-group { margin: 60px 0; } +.tsd-panel-group > h1, .tsd-panel-group > h2, .tsd-panel-group > h3 { padding-left: 20px; padding-right: 20px; } + +#tsd-search { transition: background-color 0.2s; } +#tsd-search .title { position: relative; z-index: 2; } +#tsd-search .field { position: absolute; left: 0; top: 0; right: 40px; height: 40px; } +#tsd-search .field input { box-sizing: border-box; position: relative; top: -50px; z-index: 1; width: 100%; padding: 0 10px; opacity: 0; outline: 0; border: 0; background: transparent; color: #222; } +#tsd-search .field label { position: absolute; overflow: hidden; right: -40px; } +#tsd-search .field input, #tsd-search .title { transition: opacity 0.2s; } +#tsd-search .results { position: absolute; visibility: hidden; top: 40px; width: 100%; margin: 0; padding: 0; list-style: none; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); } +#tsd-search .results li { padding: 0 10px; background-color: #fdfdfd; } +#tsd-search .results li:nth-child(even) { background-color: #fff; } +#tsd-search .results li.state { display: none; } +#tsd-search .results li.current, #tsd-search .results li:hover { background-color: #eee; } +#tsd-search .results a { display: block; } +#tsd-search .results a:before { top: 10px; } +#tsd-search .results span.parent { color: #808080; font-weight: normal; } +#tsd-search.has-focus { background-color: #eee; } +#tsd-search.has-focus .field input { top: 0; opacity: 1; } +#tsd-search.has-focus .title { z-index: 0; opacity: 0; } +#tsd-search.has-focus .results { visibility: visible; } +#tsd-search.loading .results li.state.loading { display: block; } +#tsd-search.failure .results li.state.failure { display: block; } + +.tsd-signature { margin: 0 0 1em 0; padding: 10px; border: 1px solid #eee; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 14px; } +.tsd-signature.tsd-kind-icon { padding-left: 30px; } +.tsd-signature.tsd-kind-icon:before { top: 10px; left: 10px; } +.tsd-panel > .tsd-signature { margin-left: -20px; margin-right: -20px; border-width: 1px 0; } +.tsd-panel > .tsd-signature.tsd-kind-icon { padding-left: 40px; } +.tsd-panel > .tsd-signature.tsd-kind-icon:before { left: 20px; } + +.tsd-signature-symbol { color: #808080; font-weight: normal; } + +.tsd-signature-type { font-style: italic; font-weight: normal; } + +.tsd-signatures { padding: 0; margin: 0 0 1em 0; border: 1px solid #eee; } +.tsd-signatures .tsd-signature { margin: 0; border-width: 1px 0 0 0; transition: background-color 0.1s; } +.tsd-signatures .tsd-signature:first-child { border-top-width: 0; } +.tsd-signatures .tsd-signature.current { background-color: #eee; } +.tsd-signatures.active > .tsd-signature { cursor: pointer; } +.tsd-panel > .tsd-signatures { margin-left: -20px; margin-right: -20px; border-width: 1px 0; } +.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon { padding-left: 40px; } +.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before { left: 20px; } +.tsd-panel > a.anchor + .tsd-signatures { border-top-width: 0; margin-top: -20px; } + +ul.tsd-descriptions { position: relative; overflow: hidden; transition: height 0.3s; padding: 0; list-style: none; } +ul.tsd-descriptions.active > .tsd-description { display: none; } +ul.tsd-descriptions.active > .tsd-description.current { display: block; } +ul.tsd-descriptions.active > .tsd-description.fade-in { -webkit-animation: fade-in-delayed 0.3s; animation: fade-in-delayed 0.3s; } +ul.tsd-descriptions.active > .tsd-description.fade-out { -webkit-animation: fade-out-delayed 0.3s; animation: fade-out-delayed 0.3s; position: absolute; display: block; top: 0; left: 0; right: 0; opacity: 0; visibility: hidden; } +ul.tsd-descriptions h4, ul.tsd-descriptions .tsd-index-panel h3, .tsd-index-panel ul.tsd-descriptions h3 { font-size: 16px; margin: 1em 0 0.5em 0; } + +ul.tsd-parameters, ul.tsd-type-parameters { list-style: square; margin: 0; padding-left: 20px; } +ul.tsd-parameters > li.tsd-parameter-siganture, ul.tsd-type-parameters > li.tsd-parameter-siganture { list-style: none; margin-left: -20px; } +ul.tsd-parameters h5, ul.tsd-type-parameters h5 { font-size: 16px; margin: 1em 0 0.5em 0; } +ul.tsd-parameters .tsd-comment, ul.tsd-type-parameters .tsd-comment { margin-top: -0.5em; } + +.tsd-sources { font-size: 14px; color: #808080; margin: 0 0 1em 0; } +.tsd-sources a { color: #808080; text-decoration: underline; } +.tsd-sources ul, .tsd-sources p { margin: 0 !important; } +.tsd-sources ul { list-style: none; padding: 0; } + +.tsd-page-toolbar { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 40px; color: #333; background: #fff; border-bottom: 1px solid #eee; } +.tsd-page-toolbar a { color: #333; text-decoration: none; } +.tsd-page-toolbar a.title { font-weight: bold; } +.tsd-page-toolbar a.title:hover { text-decoration: underline; } +.tsd-page-toolbar .table-wrap { display: table; width: 100%; height: 40px; } +.tsd-page-toolbar .table-cell { display: table-cell; position: relative; white-space: nowrap; line-height: 40px; } +.tsd-page-toolbar .table-cell:first-child { width: 100%; } + +.tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before { content: ""; display: inline-block; width: 40px; height: 40px; margin: 0 -8px 0 0; background-image: url(../images/widgets.png); background-repeat: no-repeat; text-indent: -1024px; vertical-align: bottom; } +@media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { .tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before { background-image: url(../images/widgets@2x.png); background-size: 320px 40px; } } + +.tsd-widget { display: inline-block; overflow: hidden; opacity: 0.6; height: 40px; transition: opacity 0.1s, background-color 0.2s; vertical-align: bottom; cursor: pointer; } +.tsd-widget:hover { opacity: 0.8; } +.tsd-widget.active { opacity: 1; background-color: #eee; } +.tsd-widget.no-caption { width: 40px; } +.tsd-widget.no-caption:before { margin: 0; } +.tsd-widget.search:before { background-position: 0 0; } +.tsd-widget.menu:before { background-position: -40px 0; } +.tsd-widget.options:before { background-position: -80px 0; } +.tsd-widget.options, .tsd-widget.menu { display: none; } +@media (max-width: 900px) { .tsd-widget.options, .tsd-widget.menu { display: inline-block; } } +input[type=checkbox] + .tsd-widget:before { background-position: -120px 0; } +input[type=checkbox]:checked + .tsd-widget:before { background-position: -160px 0; } + +.tsd-select { position: relative; display: inline-block; height: 40px; transition: opacity 0.1s, background-color 0.2s; vertical-align: bottom; cursor: pointer; } +.tsd-select .tsd-select-label { opacity: 0.6; transition: opacity 0.2s; } +.tsd-select .tsd-select-label:before { background-position: -240px 0; } +.tsd-select.active .tsd-select-label { opacity: 0.8; } +.tsd-select.active .tsd-select-list { visibility: visible; opacity: 1; transition-delay: 0s; } +.tsd-select .tsd-select-list { position: absolute; visibility: hidden; top: 40px; left: 0; margin: 0; padding: 0; opacity: 0; list-style: none; box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); transition: visibility 0s 0.2s, opacity 0.2s; } +.tsd-select .tsd-select-list li { padding: 0 20px 0 0; background-color: #fdfdfd; } +.tsd-select .tsd-select-list li:before { background-position: 40px 0; } +.tsd-select .tsd-select-list li:nth-child(even) { background-color: #fff; } +.tsd-select .tsd-select-list li:hover { background-color: #eee; } +.tsd-select .tsd-select-list li.selected:before { background-position: -200px 0; } +@media (max-width: 900px) { .tsd-select .tsd-select-list { top: 0; left: auto; right: 100%; margin-right: -5px; } + .tsd-select .tsd-select-label:before { background-position: -280px 0; } } + +img { max-width: 100%; } diff --git a/libraries/pulumi-aws/assets/css/main.css.map b/libraries/pulumi-aws/assets/css/main.css.map new file mode 100644 index 000000000000..bc17fe48b353 --- /dev/null +++ b/libraries/pulumi-aws/assets/css/main.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": ";;;AASA,gGAAgG,GAC5F,OAAO,EAAE,KAAK;;;AAKlB,oBAAoB,GAChB,OAAO,EAAE,YAAY,EACrB,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,CAAC;;;AAMZ,qBAAqB,GACjB,OAAO,EAAE,IAAI,EACb,MAAM,EAAE,CAAC;;;AAMb,QAAQ,GACJ,OAAO,EAAE,IAAI;;;;AAYjB,IAAI,GACA,SAAS,EAAE,IAAI,UAEf,oBAAoB,EAAE,IAAI,UAE1B,wBAAwB,EAAE,IAAI,UAE9B,WAAW,EAAE,UAAU;;;AAM3B,+BAA+B,GAC3B,WAAW,EAAE,UAAU;;;AAK3B,IAAI,GACA,MAAM,EAAE,CAAC;;;;AAUT,OAAO,GACH,OAAO,EAAE,WAAW;AACxB,iBAAiB,GACb,OAAO,EAAE,CAAC;;;;;AAclB,EAAE,GACE,SAAS,EAAE,GAAG,EACd,MAAM,EAAE,QAAQ;;AAEpB,EAAE,GACE,SAAS,EAAE,KAAK,EAChB,MAAM,EAAE,QAAQ;;AAEpB,EAAE,GACE,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,KAAK;;AAEjB,uBAAE,GACE,SAAS,EAAE,GAAG,EACd,MAAM,EAAE,QAAQ;;AAEpB,EAAE,GACE,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,QAAQ;;AAEpB,EAAE,GACE,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,QAAQ;;;AAKpB,WAAW,GACP,aAAa,EAAE,UAAU;;;AAK7B,SAAS,GACL,WAAW,EAAE,IAAI;;AAErB,UAAU,GACN,MAAM,EAAE,QAAQ;;;AAKpB,GAAG,GACC,UAAU,EAAE,MAAM;;;AAMtB,EAAE,GACE,eAAe,EAAE,WAAW,EAC5B,UAAU,EAAE,WAAW,EACvB,MAAM,EAAE,CAAC;;;AAKb,IAAI,GACA,UAAU,EAAE,IAAI,EAChB,KAAK,EAAE,IAAI;;;AAKf,MAAM,GACF,MAAM,EAAE,KAAK;;;AAKjB,oBAAoB,GAChB,WAAW,EAAE,gBAAgB,EAC7B,YAAY,EAAE,wBAAwB,EACtC,SAAS,EAAE,GAAG;;;AAKlB,GAAG,GACC,WAAW,EAAE,GAAG,EAChB,WAAW,EAAE,QAAQ,EACrB,SAAS,EAAE,UAAU;;;AAKzB,CAAC,GACG,MAAM,EAAE,IAAI;AACZ,iBAAiB,GACb,OAAO,EAAE,EAAE,EACX,OAAO,EAAE,IAAI;;;;AAQrB,KAAK,GACD,SAAS,EAAE,GAAG;;;AAKlB,GAAG,GACC,SAAS,EAAE,GAAG,EACd,WAAW,EAAE,CAAC,EACd,QAAQ,EAAE,QAAQ,EAClB,cAAc,EAAE,QAAQ;;AAE5B,GAAG,GACC,SAAS,EAAE,GAAG,EACd,WAAW,EAAE,CAAC,EACd,QAAQ,EAAE,QAAQ,EAClB,cAAc,EAAE,QAAQ,EACxB,GAAG,EAAE,MAAM;;AAEf,GAAG,GACC,MAAM,EAAE,OAAO;;;;AASnB,gBAAgB,GACZ,MAAM,EAAE,KAAK;;AAEjB,EAAE,GACE,MAAM,EAAE,UAAU;;;AAKtB,YAAY,GACR,OAAO,EAAE,UAAU;;;AAMnB,cAAM,GACF,UAAU,EAAE,IAAI,EAChB,gBAAgB,EAAE,IAAI;;;;AAU9B,GAAG,GACC,MAAM,EAAE,CAAC,UAET,sBAAsB,EAAE,OAAO;;;;AAMnC,cAAc,GACV,QAAQ,EAAE,MAAM;;;;AASpB,YAAY,GACR,MAAM,EAAE,CAAC;;;;;AAYb,QAAQ,GACJ,MAAM,EAAE,iBAAiB,EACzB,MAAM,EAAE,KAAK,EACb,OAAO,EAAE,qBAAqB;;;AAOlC,MAAM,GACF,MAAM,EAAE,CAAC,UAET,OAAO,EAAE,CAAC,EACV,WAAW,EAAE,MAAM,UAEnB,YAAY,EAAE,IAAI;;;;AAStB,+BAA+B,GAC3B,SAAS,EAAE,IAAI,UAEf,MAAM,EAAE,CAAC,UAET,cAAc,EAAE,QAAQ,UAExB,eAAe,EAAE,MAAM;;;;AAO3B,aAAa,GACT,WAAW,EAAE,MAAM;;;AAQvB,cAAc,GACV,cAAc,EAAE,IAAI;;;AAWxB,iCAAiC,GAC7B,kBAAkB,EAAE,MAAM,UAE1B,MAAM,EAAE,OAAO,UAEf,SAAS,EAAE,OAAO;;;AAIlB,yCAAiC,GAC7B,kBAAkB,EAAE,MAAM,UAE1B,MAAM,EAAE,OAAO,UAEf,SAAS,EAAE,OAAO;;;;AAM1B,sCAAsC,GAClC,MAAM,EAAE,OAAO;;;AAQnB,KAAK;AACD,2CAAmC,GAC/B,UAAU,EAAE,UAAU,UAEtB,OAAO,EAAE,CAAC,UAEV,OAAO,EAAE,IAAI,UAEb,MAAM,EAAE,IAAI;AAEhB,oBAAgB,GACZ,kBAAkB,EAAE,SAAS,UAE7B,eAAe,EAAE,WAAW,EAC5B,kBAAkB,EAAE,WAAW,UAE/B,UAAU,EAAE,WAAW;AACvB,mGAA6D,GACzD,kBAAkB,EAAE,IAAI;;;;;AAcpC,iDAAiD,GAC7C,MAAM,EAAE,CAAC,EACT,OAAO,EAAE,CAAC;;;AAMd,QAAQ,GACJ,QAAQ,EAAE,IAAI,UAEd,cAAc,EAAE,GAAG;;;;;AAUvB,KAAK,GACD,eAAe,EAAE,QAAQ,EACzB,cAAc,EAAE,CAAC;;;ACnarB,KAAK,GACD,OAAO,EAAE,YAAY,EACrB,OAAO,EAAE,KAAK,EACd,UAAU,EAAE,KAAK,EACjB,KAAK,EAAE,KAAK;;AAEhB,gHAAgH,GAC5G,KAAK,EAAE,OAAO;;AAElB,+KAA+K,GAC3K,KAAK,EAAE,IAAI;;AAEf,cAAc,GACV,KAAK,EAAE,IAAI;AACX,0BAAW,GACP,KAAK,EAAE,IAAI;;AAEnB,uFAAuF,GACnF,KAAK,EAAE,OAAO;;AAElB,kBAAkB,GACd,KAAK,EAAE,OAAO;AACd,+BAAY,GACR,KAAK,EAAE,OAAO;;AAEtB,sKAAsK,GAClK,KAAK,EAAE,OAAO;;AAElB,sUAAsU,GAClU,KAAK,EAAE,OAAO;;AAElB,4CAA4C,GACxC,KAAK,EAAE,OAAO;;AAGd,oBAAc,GACV,WAAW,EAAE,IAAI;AACrB,kBAAY,GACR,KAAK,EAAE,OAAO;AAClB,mBAAa,GACT,KAAK,EAAE,OAAO;AAClB,qBAAe,GACX,KAAK,EAAE,OAAO;;AAEtB,oBAAoB,GAChB,KAAK,EAAE,IAAI;;AC5BX,4nDAAe,GAGX,UAAU,EAAE,CAAC;AAEjB,wiDAAc,GAGV,aAAa,EAAE,CAAC;;ACCxB,UAAU,GACN,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,MAAM;AAhCf,yBAAyB,GACrB,UAAC,GAkCD,OAAO,EAAE,MAAM;;AAEvB,eAAe,GACX,cAAc,EAAE,KAAK;;AAEzB,IAAI,GAEA,QAAQ,EAAE,QAAQ,EAClB,MAAM,EAAE,OAAO;ADpCf,UAAO,GACH,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,KAAK,EACd,OAAO,EAAE,EAAE,EACX,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,CAAC;;ACiCjB,8FAAI,GAEA,UAAU,EAAE,UAAU,EACtB,KAAK,EAAE,IAAI,EACX,OAAO,EAAE,MAAM;;AAGf,MAAc,GAEV,KAAK,EAAE,QAAkB;;AAE7B,SAAiB,GACb,WAAW,EAAE,QAAkB;;AALnC,MAAc,GAEV,KAAK,EAAE,SAAkB;;AAE7B,SAAiB,GACb,WAAW,EAAE,SAAkB;;AALnC,MAAc,GAEV,KAAK,EAAE,GAAkB;;AAE7B,SAAiB,GACb,WAAW,EAAE,GAAkB;;AALnC,MAAc,GAEV,KAAK,EAAE,SAAkB;;AAE7B,SAAiB,GACb,WAAW,EAAE,SAAkB;;AALnC,MAAc,GAEV,KAAK,EAAE,SAAkB;;AAE7B,SAAiB,GACb,WAAW,EAAE,SAAkB;;AALnC,MAAc,GAEV,KAAK,EAAE,GAAkB;;AAE7B,SAAiB,GACb,WAAW,EAAE,GAAkB;;AALnC,MAAc,GAEV,KAAK,EAAE,SAAkB;;AAE7B,SAAiB,GACb,WAAW,EAAE,SAAkB;;AALnC,MAAc,GAEV,KAAK,EAAE,SAAkB;;AAE7B,SAAiB,GACb,WAAW,EAAE,SAAkB;;AALnC,MAAc,GAEV,KAAK,EAAE,GAAkB;;AAE7B,SAAiB,GACb,WAAW,EAAE,GAAkB;;AALnC,OAAc,GAEV,KAAK,EAAE,SAAkB;;AAE7B,UAAiB,GACb,WAAW,EAAE,SAAkB;;AALnC,OAAc,GAEV,KAAK,EAAE,SAAkB;;AAE7B,UAAiB,GACb,WAAW,EAAE,SAAkB;;AC5BvC,cAAe,GACX,OAAO,EAAE,KAAK,EACd,QAAQ,EAAE,QAAQ,EAClB,YAAY,EAAE,IAAI,EAClB,WAAW,EAAE,KAAK;AAElB,qBAAS,GACL,OAAO,EAAE,EAAE,EACX,OAAO,EAAE,YAAY,EACrB,cAAc,EAAE,MAAM,EACtB,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,MAAM,EAAE,WAAW,EACnB,gBAAgB,EAAE,wBAAwB;AF3B9C,qGAAqG,GACjG,qBAAC,GE6BG,gBAAgB,EAAE,2BAA2B,EAC7C,eAAe,EAAE,WAAW;;AAKxC,mCAAoC,GAChC,mBAAmB,EAAE,QAAQ;;AA0BrB,gDAAwB,GACpB,mBAAmB,EAAE,SAAa;AAGtC,iEAA2C,GACvC,mBAAmB,EAAE,WAAuB;AAGhD,+DAAyC,GACrC,mBAAmB,EAAE,WAAqB;;AAT9C,uCAAwB,GACpB,mBAAmB,EAAE,SAAa;AAGtC,wDAA2C,GACvC,mBAAmB,EAAE,WAAuB;AAGhD,sDAAyC,GACrC,mBAAmB,EAAE,WAAqB;;AAT9C,8DAAwB,GACpB,mBAAmB,EAAE,SAAa;AAGtC,+EAA2C,GACvC,mBAAmB,EAAE,WAAuB;AAGhD,6EAAyC,GACrC,mBAAmB,EAAE,WAAqB;;AAT9C,2CAAwB,GACpB,mBAAmB,EAAE,SAAa;AAGtC,4DAA2C,GACvC,mBAAmB,EAAE,WAAuB;AAGhD,0DAAyC,GACrC,mBAAmB,EAAE,WAAqB;;AAT9C,kEAAwB,GACpB,mBAAmB,EAAE,SAAa;AAGtC,mFAA2C,GACvC,mBAAmB,EAAE,WAAuB;AAGhD,iFAAyC,GACrC,mBAAmB,EAAE,WAAqB;;AAT9C,wCAAwB,GACpB,mBAAmB,EAAE,UAAa;AAGtC,yDAA2C,GACvC,mBAAmB,EAAE,YAAuB;AAGhD,uDAAyC,GACrC,mBAAmB,EAAE,YAAqB;;AAT9C,iDAAwB,GACpB,mBAAmB,EAAE,UAAa;AAGtC,kEAA2C,GACvC,mBAAmB,EAAE,YAAuB;AAGhD,gEAAyC,GACrC,mBAAmB,EAAE,YAAqB;;AAT9C,sCAAwB,GACpB,mBAAmB,EAAE,UAAa;AAGtC,uDAA2C,GACvC,mBAAmB,EAAE,YAAuB;AAGhD,qDAAyC,GACrC,mBAAmB,EAAE,YAAqB;;AAT9C,6CAAwB,GACpB,mBAAmB,EAAE,UAAa;AAGtC,8DAA2C,GACvC,mBAAmB,EAAE,YAAuB;AAGhD,4DAAyC,GACrC,mBAAmB,EAAE,YAAqB;;AAT9C,2CAAwB,GACpB,mBAAmB,EAAE,UAAa;AAGtC,4DAA2C,GACvC,mBAAmB,EAAE,YAAuB;AAGhD,0DAAyC,GACrC,mBAAmB,EAAE,YAAqB;;AAT9C,4CAAwB,GACpB,mBAAmB,EAAE,UAAa;AAGtC,6DAA2C,GACvC,mBAAmB,EAAE,YAAuB;AAGhD,2DAAyC,GACrC,mBAAmB,EAAE,YAAqB;;AAiB9C,0CAAwB,GACpB,mBAAmB,EAAE,WAAe;AAGxC,2DAA2C,GACvC,mBAAmB,EAAE,WAAyB;AAGlD,yDAAyC,GACrC,mBAAmB,EAAE,WAAuB;AAI5C,gEAAwB,GACpB,mBAAmB,EAAE,UAA4B;AAGrD,iFAA2C,GACvC,mBAAmB,EAAE,UAAsC;AAG/D,iFAA2C,GACvC,mBAAmB,EAAE,UAA+B;AAGxD,kGAA4D,GACxD,mBAAmB,EAAE,WAAyC;AAGlE,+EAAyC,GACrC,mBAAmB,EAAE,WAAuB;AAKhD,+DAAwB,GACpB,mBAAmB,EAAE,WAAoB;AAG7C,gFAA2C,GACvC,mBAAmB,EAAE,WAA8B;AAGvD,8EAAyC,GACrC,mBAAmB,EAAE,WAAuB;AAKhD,oEAAwB,GACpB,mBAAmB,EAAE,WAAyB;AAGlD,qFAA2C,GACvC,mBAAmB,EAAE,WAAmC;;AAtDhE,0CAAwB,GACpB,mBAAmB,EAAE,WAAe;AAGxC,2DAA2C,GACvC,mBAAmB,EAAE,WAAyB;AAGlD,yDAAyC,GACrC,mBAAmB,EAAE,WAAuB;AAI5C,gEAAwB,GACpB,mBAAmB,EAAE,UAA4B;AAGrD,iFAA2C,GACvC,mBAAmB,EAAE,UAAsC;AAG/D,iFAA2C,GACvC,mBAAmB,EAAE,UAA+B;AAGxD,kGAA4D,GACxD,mBAAmB,EAAE,WAAyC;AAGlE,+EAAyC,GACrC,mBAAmB,EAAE,WAAuB;AAKhD,+DAAwB,GACpB,mBAAmB,EAAE,WAAoB;AAG7C,gFAA2C,GACvC,mBAAmB,EAAE,WAA8B;AAGvD,8EAAyC,GACrC,mBAAmB,EAAE,WAAuB;AAKhD,oEAAwB,GACpB,mBAAmB,EAAE,WAAyB;AAGlD,qFAA2C,GACvC,mBAAmB,EAAE,WAAmC;;AAtDhE,+CAAwB,GACpB,mBAAmB,EAAE,YAAe;AAGxC,gEAA2C,GACvC,mBAAmB,EAAE,YAAyB;AAGlD,8DAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAI5C,qEAAwB,GACpB,mBAAmB,EAAE,WAA4B;AAGrD,sFAA2C,GACvC,mBAAmB,EAAE,WAAsC;AAG/D,sFAA2C,GACvC,mBAAmB,EAAE,WAA+B;AAGxD,uGAA4D,GACxD,mBAAmB,EAAE,YAAyC;AAGlE,oFAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,oEAAwB,GACpB,mBAAmB,EAAE,YAAoB;AAG7C,qFAA2C,GACvC,mBAAmB,EAAE,YAA8B;AAGvD,mFAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,yEAAwB,GACpB,mBAAmB,EAAE,YAAyB;AAGlD,0FAA2C,GACvC,mBAAmB,EAAE,YAAmC;;AAtDhE,+CAAwB,GACpB,mBAAmB,EAAE,YAAe;AAGxC,gEAA2C,GACvC,mBAAmB,EAAE,YAAyB;AAGlD,8DAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAI5C,qEAAwB,GACpB,mBAAmB,EAAE,WAA4B;AAGrD,sFAA2C,GACvC,mBAAmB,EAAE,WAAsC;AAG/D,sFAA2C,GACvC,mBAAmB,EAAE,WAA+B;AAGxD,uGAA4D,GACxD,mBAAmB,EAAE,YAAyC;AAGlE,oFAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,oEAAwB,GACpB,mBAAmB,EAAE,YAAoB;AAG7C,qFAA2C,GACvC,mBAAmB,EAAE,YAA8B;AAGvD,mFAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,yEAAwB,GACpB,mBAAmB,EAAE,YAAyB;AAGlD,0FAA2C,GACvC,mBAAmB,EAAE,YAAmC;;AAtDhE,0CAAwB,GACpB,mBAAmB,EAAE,YAAe;AAGxC,2DAA2C,GACvC,mBAAmB,EAAE,YAAyB;AAGlD,yDAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAI5C,gEAAwB,GACpB,mBAAmB,EAAE,WAA4B;AAGrD,iFAA2C,GACvC,mBAAmB,EAAE,WAAsC;AAG/D,iFAA2C,GACvC,mBAAmB,EAAE,WAA+B;AAGxD,kGAA4D,GACxD,mBAAmB,EAAE,YAAyC;AAGlE,+EAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,+DAAwB,GACpB,mBAAmB,EAAE,YAAoB;AAG7C,gFAA2C,GACvC,mBAAmB,EAAE,YAA8B;AAGvD,8EAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,oEAAwB,GACpB,mBAAmB,EAAE,YAAyB;AAGlD,qFAA2C,GACvC,mBAAmB,EAAE,YAAmC;;AAtDhE,0CAAwB,GACpB,mBAAmB,EAAE,YAAe;AAGxC,2DAA2C,GACvC,mBAAmB,EAAE,YAAyB;AAGlD,yDAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAI5C,gEAAwB,GACpB,mBAAmB,EAAE,WAA4B;AAGrD,iFAA2C,GACvC,mBAAmB,EAAE,WAAsC;AAG/D,iFAA2C,GACvC,mBAAmB,EAAE,WAA+B;AAGxD,kGAA4D,GACxD,mBAAmB,EAAE,YAAyC;AAGlE,+EAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,+DAAwB,GACpB,mBAAmB,EAAE,YAAoB;AAG7C,gFAA2C,GACvC,mBAAmB,EAAE,YAA8B;AAGvD,8EAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,oEAAwB,GACpB,mBAAmB,EAAE,YAAyB;AAGlD,qFAA2C,GACvC,mBAAmB,EAAE,YAAmC;;AAtDhE,wCAAwB,GACpB,mBAAmB,EAAE,YAAe;AAGxC,yDAA2C,GACvC,mBAAmB,EAAE,YAAyB;AAGlD,uDAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAI5C,8DAAwB,GACpB,mBAAmB,EAAE,WAA4B;AAGrD,+EAA2C,GACvC,mBAAmB,EAAE,WAAsC;AAG/D,+EAA2C,GACvC,mBAAmB,EAAE,WAA+B;AAGxD,gGAA4D,GACxD,mBAAmB,EAAE,YAAyC;AAGlE,6EAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,6DAAwB,GACpB,mBAAmB,EAAE,YAAoB;AAG7C,8EAA2C,GACvC,mBAAmB,EAAE,YAA8B;AAGvD,4EAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,kEAAwB,GACpB,mBAAmB,EAAE,YAAyB;AAGlD,mFAA2C,GACvC,mBAAmB,EAAE,YAAmC;;AAtDhE,gDAAwB,GACpB,mBAAmB,EAAE,YAAe;AAGxC,iEAA2C,GACvC,mBAAmB,EAAE,YAAyB;AAGlD,+DAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAI5C,sEAAwB,GACpB,mBAAmB,EAAE,WAA4B;AAGrD,uFAA2C,GACvC,mBAAmB,EAAE,WAAsC;AAG/D,uFAA2C,GACvC,mBAAmB,EAAE,WAA+B;AAGxD,wGAA4D,GACxD,mBAAmB,EAAE,YAAyC;AAGlE,qFAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,qEAAwB,GACpB,mBAAmB,EAAE,YAAoB;AAG7C,sFAA2C,GACvC,mBAAmB,EAAE,YAA8B;AAGvD,oFAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,0EAAwB,GACpB,mBAAmB,EAAE,YAAyB;AAGlD,2FAA2C,GACvC,mBAAmB,EAAE,YAAmC;;AAtDhE,iEAAwB,GACpB,mBAAmB,EAAE,YAAe;AAGxC,kFAA2C,GACvC,mBAAmB,EAAE,YAAyB;AAGlD,gFAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAI5C,uFAAwB,GACpB,mBAAmB,EAAE,WAA4B;AAGrD,wGAA2C,GACvC,mBAAmB,EAAE,WAAsC;AAG/D,wGAA2C,GACvC,mBAAmB,EAAE,WAA+B;AAGxD,yHAA4D,GACxD,mBAAmB,EAAE,YAAyC;AAGlE,sGAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,sFAAwB,GACpB,mBAAmB,EAAE,YAAoB;AAG7C,uGAA2C,GACvC,mBAAmB,EAAE,YAA8B;AAGvD,qGAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,2FAAwB,GACpB,mBAAmB,EAAE,YAAyB;AAGlD,4GAA2C,GACvC,mBAAmB,EAAE,YAAmC;;AAtDhE,+DAAwB,GACpB,mBAAmB,EAAE,YAAe;AAGxC,gFAA2C,GACvC,mBAAmB,EAAE,YAAyB;AAGlD,8EAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAI5C,qFAAwB,GACpB,mBAAmB,EAAE,WAA4B;AAGrD,sGAA2C,GACvC,mBAAmB,EAAE,WAAsC;AAG/D,sGAA2C,GACvC,mBAAmB,EAAE,WAA+B;AAGxD,uHAA4D,GACxD,mBAAmB,EAAE,YAAyC;AAGlE,oGAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,oFAAwB,GACpB,mBAAmB,EAAE,YAAoB;AAG7C,qGAA2C,GACvC,mBAAmB,EAAE,YAA8B;AAGvD,mGAAyC,GACrC,mBAAmB,EAAE,YAAuB;AAKhD,yFAAwB,GACpB,mBAAmB,EAAE,YAAyB;AAGlD,0GAA2C,GACvC,mBAAmB,EAAE,YAAmC;;AAtDhE,6CAAwB,GACpB,mBAAmB,EAAE,aAAe;AAGxC,8DAA2C,GACvC,mBAAmB,EAAE,aAAyB;AAGlD,4DAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAI5C,mEAAwB,GACpB,mBAAmB,EAAE,YAA4B;AAGrD,oFAA2C,GACvC,mBAAmB,EAAE,YAAsC;AAG/D,oFAA2C,GACvC,mBAAmB,EAAE,YAA+B;AAGxD,qGAA4D,GACxD,mBAAmB,EAAE,aAAyC;AAGlE,kFAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,kEAAwB,GACpB,mBAAmB,EAAE,aAAoB;AAG7C,mFAA2C,GACvC,mBAAmB,EAAE,aAA8B;AAGvD,iFAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,uEAAwB,GACpB,mBAAmB,EAAE,aAAyB;AAGlD,wFAA2C,GACvC,mBAAmB,EAAE,aAAmC;;AAtDhE,uDAAwB,GACpB,mBAAmB,EAAE,aAAe;AAGxC,wEAA2C,GACvC,mBAAmB,EAAE,aAAyB;AAGlD,sEAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAI5C,6EAAwB,GACpB,mBAAmB,EAAE,YAA4B;AAGrD,8FAA2C,GACvC,mBAAmB,EAAE,YAAsC;AAG/D,8FAA2C,GACvC,mBAAmB,EAAE,YAA+B;AAGxD,+GAA4D,GACxD,mBAAmB,EAAE,aAAyC;AAGlE,4FAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,4EAAwB,GACpB,mBAAmB,EAAE,aAAoB;AAG7C,6FAA2C,GACvC,mBAAmB,EAAE,aAA8B;AAGvD,2FAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,iFAAwB,GACpB,mBAAmB,EAAE,aAAyB;AAGlD,kGAA2C,GACvC,mBAAmB,EAAE,aAAmC;;AAtDhE,iDAAwB,GACpB,mBAAmB,EAAE,aAAe;AAGxC,kEAA2C,GACvC,mBAAmB,EAAE,aAAyB;AAGlD,gEAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAI5C,uEAAwB,GACpB,mBAAmB,EAAE,YAA4B;AAGrD,wFAA2C,GACvC,mBAAmB,EAAE,YAAsC;AAG/D,wFAA2C,GACvC,mBAAmB,EAAE,YAA+B;AAGxD,yGAA4D,GACxD,mBAAmB,EAAE,aAAyC;AAGlE,sFAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,sEAAwB,GACpB,mBAAmB,EAAE,aAAoB;AAG7C,uFAA2C,GACvC,mBAAmB,EAAE,aAA8B;AAGvD,qFAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,2EAAwB,GACpB,mBAAmB,EAAE,aAAyB;AAGlD,4FAA2C,GACvC,mBAAmB,EAAE,aAAmC;;AAtDhE,uCAAwB,GACpB,mBAAmB,EAAE,aAAe;AAGxC,wDAA2C,GACvC,mBAAmB,EAAE,aAAyB;AAGlD,sDAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAI5C,6DAAwB,GACpB,mBAAmB,EAAE,YAA4B;AAGrD,8EAA2C,GACvC,mBAAmB,EAAE,YAAsC;AAG/D,8EAA2C,GACvC,mBAAmB,EAAE,YAA+B;AAGxD,+FAA4D,GACxD,mBAAmB,EAAE,aAAyC;AAGlE,4EAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,4DAAwB,GACpB,mBAAmB,EAAE,aAAoB;AAG7C,6EAA2C,GACvC,mBAAmB,EAAE,aAA8B;AAGvD,2EAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,iEAAwB,GACpB,mBAAmB,EAAE,aAAyB;AAGlD,kFAA2C,GACvC,mBAAmB,EAAE,aAAmC;;AAtDhE,sCAAwB,GACpB,mBAAmB,EAAE,aAAe;AAGxC,uDAA2C,GACvC,mBAAmB,EAAE,aAAyB;AAGlD,qDAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAI5C,4DAAwB,GACpB,mBAAmB,EAAE,YAA4B;AAGrD,6EAA2C,GACvC,mBAAmB,EAAE,YAAsC;AAG/D,6EAA2C,GACvC,mBAAmB,EAAE,YAA+B;AAGxD,8FAA4D,GACxD,mBAAmB,EAAE,aAAyC;AAGlE,2EAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,2DAAwB,GACpB,mBAAmB,EAAE,aAAoB;AAG7C,4EAA2C,GACvC,mBAAmB,EAAE,aAA8B;AAGvD,0EAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,gEAAwB,GACpB,mBAAmB,EAAE,aAAyB;AAGlD,iFAA2C,GACvC,mBAAmB,EAAE,aAAmC;;AAtDhE,wDAAwB,GACpB,mBAAmB,EAAE,aAAe;AAGxC,yEAA2C,GACvC,mBAAmB,EAAE,aAAyB;AAGlD,uEAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAI5C,8EAAwB,GACpB,mBAAmB,EAAE,YAA4B;AAGrD,+FAA2C,GACvC,mBAAmB,EAAE,YAAsC;AAG/D,+FAA2C,GACvC,mBAAmB,EAAE,YAA+B;AAGxD,gHAA4D,GACxD,mBAAmB,EAAE,aAAyC;AAGlE,6FAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,6EAAwB,GACpB,mBAAmB,EAAE,aAAoB;AAG7C,8FAA2C,GACvC,mBAAmB,EAAE,aAA8B;AAGvD,4FAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,kFAAwB,GACpB,mBAAmB,EAAE,aAAyB;AAGlD,mGAA2C,GACvC,mBAAmB,EAAE,aAAmC;;AAtDhE,sDAAwB,GACpB,mBAAmB,EAAE,aAAe;AAGxC,uEAA2C,GACvC,mBAAmB,EAAE,aAAyB;AAGlD,qEAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAI5C,4EAAwB,GACpB,mBAAmB,EAAE,YAA4B;AAGrD,6FAA2C,GACvC,mBAAmB,EAAE,YAAsC;AAG/D,6FAA2C,GACvC,mBAAmB,EAAE,YAA+B;AAGxD,8GAA4D,GACxD,mBAAmB,EAAE,aAAyC;AAGlE,2FAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,2EAAwB,GACpB,mBAAmB,EAAE,aAAoB;AAG7C,4FAA2C,GACvC,mBAAmB,EAAE,aAA8B;AAGvD,0FAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,gFAAwB,GACpB,mBAAmB,EAAE,aAAyB;AAGlD,iGAA2C,GACvC,mBAAmB,EAAE,aAAmC;;AAtDhE,8DAAwB,GACpB,mBAAmB,EAAE,aAAe;AAGxC,+EAA2C,GACvC,mBAAmB,EAAE,aAAyB;AAGlD,6EAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAI5C,oFAAwB,GACpB,mBAAmB,EAAE,YAA4B;AAGrD,qGAA2C,GACvC,mBAAmB,EAAE,YAAsC;AAG/D,qGAA2C,GACvC,mBAAmB,EAAE,YAA+B;AAGxD,sHAA4D,GACxD,mBAAmB,EAAE,aAAyC;AAGlE,mGAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,mFAAwB,GACpB,mBAAmB,EAAE,aAAoB;AAG7C,oGAA2C,GACvC,mBAAmB,EAAE,aAA8B;AAGvD,kGAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,wFAAwB,GACpB,mBAAmB,EAAE,aAAyB;AAGlD,yGAA2C,GACvC,mBAAmB,EAAE,aAAmC;;AAtDhE,qDAAwB,GACpB,mBAAmB,EAAE,aAAe;AAGxC,sEAA2C,GACvC,mBAAmB,EAAE,aAAyB;AAGlD,oEAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAI5C,2EAAwB,GACpB,mBAAmB,EAAE,YAA4B;AAGrD,4FAA2C,GACvC,mBAAmB,EAAE,YAAsC;AAG/D,4FAA2C,GACvC,mBAAmB,EAAE,YAA+B;AAGxD,6GAA4D,GACxD,mBAAmB,EAAE,aAAyC;AAGlE,0FAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,0EAAwB,GACpB,mBAAmB,EAAE,aAAoB;AAG7C,2FAA2C,GACvC,mBAAmB,EAAE,aAA8B;AAGvD,yFAAyC,GACrC,mBAAmB,EAAE,aAAuB;AAKhD,+EAAwB,GACpB,mBAAmB,EAAE,aAAyB;AAGlD,gGAA2C,GACvC,mBAAmB,EAAE,aAAmC;;AC/J5E,cAAc,GACV,UAAU,EAAE,eAAe;;4BAIvB,OAAO,EAAE,CAAC;OAEV,OAAO,EAAE,CAAC;6BAIV,OAAO,EAAE,CAAC,EACV,UAAU,EAAE,OAAO;OAEnB,OAAO,EAAE,CAAC;kCAIV,OAAO,EAAE,CAAC;QAEV,OAAO,EAAE,CAAC;SAEV,OAAO,EAAE,CAAC;mCAIV,OAAO,EAAE,CAAC,EACV,UAAU,EAAE,OAAO;QAEnB,OAAO,EAAE,CAAC;SAEV,OAAO,EAAE,CAAC;kCAIV,SAAS,EAAE,eAAc;OAEzB,SAAS,EAAE,kBAAiB;oCAI5B,SAAS,EAAE,kBAAiB;OAE5B,SAAS,EAAE,eAAc;sCAIzB,SAAS,EAAE,kBAAiB;OAE5B,SAAS,EAAE,eAAc;qCAIzB,SAAS,EAAE,eAAc,EACzB,UAAU,EAAE,OAAO;OAEnB,SAAS,EAAE,kBAAiB;ACxDpC,IAAI,GACA,UAAU,ECYK,OAAO,EDXtB,WAAW,ECAD,sBAAsB,EDChC,SAAS,ECED,IAAI,EDDZ,KAAK,ECUI,IAAI;;ADRjB,CAAC,GACG,KAAK,ECSI,OAAO,EDRhB,eAAe,EAAE,IAAI;AAErB,OAAO,GACH,eAAe,EAAE,SAAS;;AAElC,SAAS,GACL,WAAW,ECXI,iDAAiD,EDYhE,OAAO,EAAE,KAAK,EACd,MAAM,EAAE,CAAC,EACT,SAAS,ECXI,IAAI,EDYjB,gBAAgB,ECUI,mBAAgB;;ADRxC,GAAG,GACC,OAAO,EAAE,IAAI;AAEb,QAAI,GACA,OAAO,EAAE,CAAC,EACV,SAAS,EAAE,IAAI,EACf,gBAAgB,EAAE,WAAW;;AAErC,eAAe,GACX,WAAW,ECrBD,OAAO;ADuBjB,kBAAE,GACE,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,UAAU,EACnB,MAAM,EAAE,CAAC;AAEb,oIAAU,GACN,SAAS,EAAE,GAAG,EACd,MAAM,EAAE,CAAC;AAEb,sCAAM,GACF,WAAW,EAAE,MAAM;AAEvB,yDAAS,GACL,MAAM,EAAE,KAAK;;AHjCjB,iDAAiD,GKT7C,yBAAY,GACR,KAAK,EAAE,GAAG;EAEd,sBAAS,GACL,KAAK,EAAE,GAAG;EAEd,4BAAe,GACX,YAAY,EAAE,IAAI;ALY1B,yBAAyB,GKTrB,yBAAY,GACR,KAAK,EAAE,IAAI,EACX,KAAK,EAAE,IAAI;EAEf,sBAAS,GACL,QAAQ,EAAE,gBAAgB,EAC1B,QAAQ,EAAE,IAAI,EACd,0BAA0B,EAAE,KAAK,EACjC,kBAAkB,EAAE,KAAK,EACzB,OAAO,EAAE,IAAI,EACb,GAAG,EAAE,YAAY,EACjB,MAAM,EAAE,YAAY,EACpB,IAAI,EAAE,eAAe,EACrB,KAAK,EAAE,YAAY,EACnB,KAAK,EAAE,IAAI,EACX,OAAO,EAAE,aAAa,EACtB,SAAS,EAAE,KAAK,EAChB,UAAU,EAAE,MAAM,EAClB,gBAAgB,EDRd,IAAI,ECSN,SAAS,EAAE,kBAAiB;EAE5B,qCAAc,GACV,cAAc,EAAE,IAAI;EAE5B,qBAAQ,GACJ,OAAO,EAAE,EAAE,EACX,OAAO,EAAE,KAAK,EACd,QAAQ,EAAE,KAAK,EACf,OAAO,EAAE,IAAI,EACb,GAAG,EAAE,CAAC,EACN,IAAI,EAAE,CAAC,EACP,KAAK,EAAE,CAAC,EACR,MAAM,EAAE,CAAC,EACT,gBAAgB,EAAE,mBAAgB,EAClC,UAAU,EAAE,MAAM;EAGlB,iCAAQ,GACJ,SAAS,EAAE,YAAY;EAE3B,uGAAO,GAGH,SAAS,EAAE,kBAAkB;EAEjC,kCAAS,GACL,SAAS,EAAE,sBAAsB;EAGrC,mCAAQ,GACJ,SAAS,EAAE,aAAa;EAE5B,6GAAO,GAGH,SAAS,EAAE,oBAAoB;EAEnC,oCAAS,GACL,SAAS,EAAE,qBAAqB;EAGpC,0BAAI,GACA,QAAQ,EAAE,MAAM;EAEpB,8BAAQ,GACJ,UAAU,EAAE,OAAO;EAEvB,8FAAO,GAGH,SAAS,EAAE,kBAAkB;EAEjC,+BAAS,GACL,UAAU,EAAE,OAAO,EACnB,SAAS,EAAE,eAAc;;AAEzC,eAAe,GACX,OAAO,EAAE,aAAa,EACtB,MAAM,EAAE,UAAU,EAClB,UAAU,EDrEA,IAAI,ECsEd,UAAU,EAAE,2BAAwB;AAEpC,kBAAE,GACE,MAAM,EAAE,CAAC;;AAEjB,eAAe,GACX,MAAM,EAAE,CAAC,EACT,OAAO,EAAE,CAAC,EACV,KAAK,EDrFU,OAAO;ACuFtB,iBAAC,GACG,KAAK,EDxFM,OAAO,ECyFlB,eAAe,EAAE,IAAI;AAErB,uBAAO,GACH,eAAe,EAAE,SAAS;AAElC,kBAAE,GACE,OAAO,EAAE,MAAM;AAEf,wBAAO,GACH,OAAO,EAAE,KAAK;;AChHtB,uBAAU,GACN,MAAM,EAAE,CAAC;AAEb,4BAAe,GACX,WAAW,EAAE,IAAI,EACjB,cAAc,EAAE,CAAC;AAErB,0BAAa,GACT,YAAY,EAAE,KAAK;AAEvB,4BAAe,GACX,QAAQ,EAAE,gBAAgB,EAC1B,QAAQ,EAAE,IAAI,EACd,0BAA0B,EAAE,KAAK,EACjC,kBAAkB,EAAE,KAAK,EACzB,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,CAAC,EACV,IAAI,EAAE,CAAC,EACP,GAAG,EAAE,IAAI,EACT,MAAM,EAAE,CAAC,EACT,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,IAAI,EACb,MAAM,EAAE,CAAC;AAEb,oCAAuB,GACnB,WAAW,EAAE,CAAC;AAElB,8BAAiB,GACb,QAAQ,EAAE,KAAK,EACf,OAAO,EAAE,CAAC;AAEd,0CAA6B,GACzB,KAAK,EAAE,CAAC,EACR,SAAS,EAAE,IAAI;AAEnB,mBAAM,GACF,gBAAgB,EAAE,WAAW;AAE7B,8BAAU,GACN,OAAO,EAAE,CAAC;AAElB,2BAAc,GACV,OAAO,EAAE,CAAC;ANtBd,yBAAyB,GMyBrB,4BAAe,GACX,OAAO,EAAE,IAAI;EACjB,0BAAa,GACT,YAAY,EAAE,CAAC;;ACtC3B,mBAAmB,GACf,QAAQ,EAAE,MAAM;AAEhB,sBAAE,GACE,KAAK,EAAE,IAAI,EACX,KAAK,EAAE,IAAI,EACX,OAAO,EAAE,OAAO,EAChB,MAAM,EAAE,UAAU,EAClB,aAAa,EAAE,GAAG,EAClB,MAAM,EAAE,iBAA4B,EACpC,KAAK,EHIO,OAAO,EGHnB,SAAS,EAAE,KAAK,EAChB,WAAW,EAAE,MAAM;AAEvB,sBAAE,GACE,MAAM,EAAE,UAAU;AAEtB,qBAAC,GACG,MAAM,EAAE,CAAC;;AAYjB,4BAA4B,GACxB,SAAS,EAAE,KAAK,EAChB,WAAW,EHnCD,OAAO,EGoCjB,aAAa,EAAE,GAAG;AAElB,uCAAY,GACR,aAAa,EAAE,CAAC;;AC7CxB,iCAAiC,GAC7B,OAAO,EAAE,IAAI;;AAEjB,0GAA+B,GAG3B,OAAO,EAAE,IAAI;;AAEjB,mCAAmC,GAC/B,OAAO,EAAE,IAAI;;AAEjB,0CAA0C,GACtC,OAAO,EAAE,IAAI;;AAEjB,kCAAkC,GAC9B,OAAO,EAAE,IAAI;;AAKjB,WAAW,GACP,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,YAAY,EACrB,MAAM,EJaO,IAAI,EIZjB,cAAc,EAAE,MAAM;AAEtB,sBAAY,GACR,OAAO,EAAE,IAAI;AAEjB,6BAAiB,GACb,OAAO,EAAE,YAAY,EACrB,MAAM,EJKG,IAAI,EIJb,cAAc,EAAE,MAAM,EACtB,WAAW,EAAE,MAAM;AAEvB,iBAAK,GACD,OAAO,EAAE,IAAI;ARjBjB,yBAAyB,GQoBrB,6BAAiB,GACb,OAAO,EAAE,KAAK,EACd,QAAQ,EAAE,QAAQ,EAClB,GAAG,EJNE,IAAI,EIOT,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,gBAAgB,EJzBd,IAAI,EI0BN,UAAU,EAAE,MAAM,EAClB,SAAS,EAAE,iBAAgB,EAC3B,UAAU,EAAE,2BAAwB;EAEpC,0CAAc,GACV,UAAU,EAAE,OAAO;EAEvB,6CAAiB,GACb,SAAS,EAAE,YAAY;EAE3B,+CAAmB,GACf,SAAS,EAAE,aAAa;EAEhC,0CAAM,GAEF,OAAO,EAAE,KAAK,EACd,aAAa,EAAE,IAAI;;AChE/B,MAAM,GACF,UAAU,EAAE,cAA8B,EAC1C,gBAAgB,ELoBN,IAAI;AKlBd,yBAAoB,GAChB,aAAa,EAAE,cAA8B;AAEjD,wBAAiB,GACb,SAAS,EAAE,CAAC;AAEhB,kBAAW,GACP,OAAO,EAAE,YAAY,EACrB,KAAK,EAAE,GAAG,EACV,OAAO,EAAE,CAAC,EACV,SAAS,ELTL,IAAI,EKUR,UAAU,EAAE,IAAI,EAChB,WAAW,ELRL,OAAO,EKSb,cAAc,EAAE,GAAG;ATIvB,yBAAyB,GACrB,kBAAC,GSFG,KAAK,EAAE,GAAG;;ACHtB,cAAc,GACV,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,UAAU,EACnB,MAAM,EAAE,CAAC;AAET,sBAAO,GACH,WAAW,EAAE,IAAI;;ACArB,mCAAkB,GACd,aAAa,EAAE,gBAAgB;AAEnC,mCAAkB,GACd,aAAa,EAAE,eAAe;AAElC,mBAAE,GAEE,MAAM,EAAE,kBAAkB,EAC1B,OAAO,EAAE,gBAAgB,EACzB,aAAa,EAAE,cAA8B;AAEjD,kCAAiB,GZlCjB,oBAAoB,EAAE,CAAM,EAC5B,iBAAiB,EAAE,CAAM,EACzB,gBAAgB,EAAE,CAAM,EACxB,eAAe,EAAE,CAAM,EACvB,YAAY,EAAE,CAAM,EAJpB,kBAAoB,EAAE,IAAM,EAC5B,eAAiB,EAAE,IAAM,EACzB,cAAgB,EAAE,IAAM,EACxB,aAAe,EAAE,IAAM,EACvB,UAAY,EAAE,IAAM,EYiChB,OAAO,EAAE,CAAC,EACV,UAAU,EAAE,IAAI,EAChB,WAAW,EPhCL,OAAO;AJajB,yBAAyB,GACrB,kCAAC,GDrBL,oBAAoB,EAAE,CAAM,EAC5B,iBAAiB,EAAE,CAAM,EACzB,gBAAgB,EAAE,CAAM,EACxB,eAAe,EAAE,CAAM,EACvB,YAAY,EAAE,CAAM;ACMpB,iDAAiD,GAC7C,kCAAC,GDXL,oBAAoB,EAAE,CAAM,EAC5B,iBAAiB,EAAE,CAAM,EACzB,gBAAgB,EAAE,CAAM,EACxB,eAAe,EAAE,CAAM,EACvB,YAAY,EAAE,CAAM;AY2ChB,qCAAE,GZ/CN,2BAAoB,EAAE,KAAM,EAC5B,wBAAiB,EAAE,KAAM,EACzB,uBAAgB,EAAE,KAAM,EACxB,sBAAe,EAAE,KAAM,EACvB,mBAAY,EAAE,KAAM,EAJpB,yBAAoB,EAAE,KAAM,EAC5B,sBAAiB,EAAE,KAAM,EACzB,qBAAgB,EAAE,KAAM,EACxB,oBAAe,EAAE,KAAM,EACvB,iBAAY,EAAE,KAAM;AY+CpB,8DAAE,GAEE,KAAK,EPxBF,OAAO;AO0Bd,6CAA4B,GACxB,KAAK,EP1BQ,OAAO;AO4BxB,wCAAuB,GACnB,KAAK,EP5BG,OAAO;AO8BnB,yCAAwB,GACpB,KAAK,EP9BI,OAAO;AOiCpB,mCAAkB,GACd,KAAK,EPrCF,OAAO;AOuCd,sCAAqB,GACjB,KAAK,EPvCQ,OAAO;AOyCxB,iCAAgB,GACZ,KAAK,EPzCG,OAAO;AO2CnB,kCAAiB,GACb,KAAK,EP3CI,OAAO;AO6CpB,kCAAiB,GACb,KAAK,EP7CM,OAAO;;AQlC1B,SAAS,GACL,OAAO,EAAE,YAAY,EACrB,OAAO,EAAE,OAAO,EAChB,aAAa,EAAE,GAAG,EAClB,KAAK,ERsBgB,IAAI,EQrBzB,gBAAgB,ERoBA,OAAO,EQnBvB,WAAW,EAAE,CAAC,EACd,SAAS,ERDI,IAAI,EQEjB,WAAW,EAAE,MAAM;;AAEvB,WAAW,GACP,QAAQ,EAAE,QAAQ,EAClB,GAAG,EAAE,MAAM;;AAEf,WAAW,GACP,QAAQ,EAAE,QAAQ;AAElB,4BAAgB,GACZ,UAAU,EAAE,CAAC,EACb,aAAa,EAAE,CAAC,EAChB,aAAa,EAAE,IAAI;;ACN3B,eAAe,GACX,OAAO,EAAE,UAAU;AAEnB,iBAAC,GACG,OAAO,EAAE,KAAK,EACd,WAAW,EAAE,GAAG,EAChB,cAAc,EAAE,GAAG,EACnB,WAAW,EAAE,qBAAqB,EAClC,KAAK,ETRA,IAAI,ESST,eAAe,EAAE,IAAI,EACrB,UAAU,EAAE,sBAAsB;AAElC,uBAAO,GACH,eAAe,EAAE,SAAS;AAElC,kBAAE,GACE,MAAM,EAAE,CAAC,EACT,OAAO,EAAE,CAAC,EACV,UAAU,EAAE,IAAI;AAEpB,kBAAE,GACE,OAAO,EAAE,CAAC;;AAmBlB,uBAAuB,GACnB,cAAc,EAAE,IAAI;AAEpB,yBAAC,GACG,OAAO,EAAE,KAAK,EACd,WAAW,EAAE,GAAG,EAChB,cAAc,EAAE,GAAG;AArDnB,+BAAG,GACC,YAAY,EAAE,GAAmC;AADrD,kCAAG,GACC,YAAY,EAAE,IAAmC;AADrD,qCAAG,GACC,YAAY,EAAE,IAAmC;AADrD,wCAAG,GACC,YAAY,EAAE,IAAmC;AADrD,2CAAG,GACC,YAAY,EAAE,IAAmC;AADrD,8CAAG,GACC,YAAY,EAAE,KAAmC;AAyDzD,4BAAI,GACA,aAAa,EAAE,cAA8B;AAEjD,0BAAE,GACE,UAAU,EAAE,cAA8B;AAE1C,sCAAa,GACT,WAAW,EAAE,IAAI;AAErB,qCAAY,GACR,OAAO,EAAE,KAAK,EACd,OAAO,EAAE,cAAc,EACvB,KAAK,ETzDE,OAAO;AS2DlB,2FAAsB,GAElB,WAAW,EAAE,IAAI;;AA+BzB,4BAAE,GAEE,UAAU,EAAE,YAAY;AA3GxB,iCAAG,GACC,YAAY,EAAE,IAAmC;AADrD,oCAAG,GACC,YAAY,EAAE,IAAmC;AADrD,uCAAG,GACC,YAAY,EAAE,IAAmC;AADrD,0CAAG,GACC,YAAY,EAAE,IAAmC;AADrD,6CAAG,GACC,YAAY,EAAE,KAAmC;AADrD,gDAAG,GACC,YAAY,EAAE,KAAmC;AA4GrD,sCAAW,GACP,iBAAiB,ET9FP,IAAI;ASgGtB,yFAAa,GAET,iBAAiB,ETtGE,IAAI;ASwG3B,oCAAU,GACN,UAAU,EAAE,IAAI,EAChB,aAAa,EAAE,IAAI,EACnB,iBAAiB,ETvGH,IAAI;ASyGlB,wCAAG,GACC,WAAW,EAAE,IAAI;;AbvGzB,yBAAyB,GACrB,iBAAC,Ga6GD,QAAQ,EAAE,MAAM;EAGZ,8CAAQ,GACJ,QAAQ,EAAE,KAAK;EAEnB,sDAAgB,GACZ,QAAQ,EAAE,KAAK;EAEf,iJAAkB,GAEd,OAAO,EAAE,CAAC;EAElB,qDAAe,GACX,QAAQ,EAAE,QAAQ,EAClB,GAAG,EAAE,eAAe,EACpB,IAAI,EAAE,eAAe,EACrB,MAAM,EAAE,CAAC,EACT,KAAK,EAAE,CAAC;EAGZ,2CAAQ,GACJ,QAAQ,EAAE,MAAM;EAEpB,mDAAgB,GACZ,QAAQ,EAAE,MAAM;;ACzJhC,UAAU,GAEN,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,IAAI,EACb,gBAAgB,EVUN,IAAI,EUTd,UAAU,EAAE,2BAAwB;AAEpC,gBAAO,GACH,OAAO,EAAE,IAAI;AAEjB,iDAAgB,GACZ,MAAM,EAAE,sBAAsB,EAC9B,OAAO,EAAE,gBAAgB,EACzB,aAAa,EAAE,cAA8B;AAE7C,gHAAsB,GAClB,aAAa,EAAE,CAAC,EAChB,aAAa,EAAE,CAAC;AAExB,gBAAK,GACD,OAAO,EAAE,KAAK,EACd,KAAK,EAAE,IAAI,EACX,QAAQ,EAAE,IAAI,EACd,UAAU,EAAE,IAAI,EAChB,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,QAAQ;AAEpB,mBAAE,GACE,WAAW,EAAE,IAAI;AAErB,wCAAM,GACF,OAAO,EAAE,QAAQ,EACjB,MAAM,EAAE,cAAc;AAE1B,mBAAE,GACE,gBAAgB,EAAE,IAAI,EACtB,UAAU,EAAE,cAAc;AAE1B,iCAAe,GACX,gBAAgB,EAAE,OAAO;;AAiBzC,gBAAgB,GACZ,MAAM,EAAE,MAAM;AAEd,mEAAgB,GACZ,YAAY,EAAE,IAAI,EAClB,aAAa,EAAE,IAAI;;ACrE3B,WAAW,GACP,UAAU,EAAE,qBAAqB;AAEjC,kBAAM,GACF,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,CAAC;AAEd,kBAAM,GACF,QAAQ,EAAE,QAAQ,EAClB,IAAI,EAAE,CAAC,EACP,GAAG,EAAE,CAAC,EACN,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI;AAEZ,wBAAK,GACD,UAAU,EAAE,UAAU,EACtB,QAAQ,EAAE,QAAQ,EAClB,GAAG,EAAE,KAAK,EACV,OAAO,EAAE,CAAC,EACV,KAAK,EAAE,IAAI,EACX,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,CAAC,EACV,OAAO,EAAE,CAAC,EACV,MAAM,EAAE,CAAC,EACT,UAAU,EAAE,WAAW,EACvB,KAAK,EXXJ,IAAI;AWaT,wBAAK,GACD,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,KAAK;AAEpB,4CAAa,GAET,UAAU,EAAE,YAAY;AAE5B,oBAAQ,GACJ,QAAQ,EAAE,QAAQ,EAClB,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,IAAI,EACT,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,CAAC,EACT,OAAO,EAAE,CAAC,EACV,UAAU,EAAE,IAAI,EAChB,UAAU,EAAE,2BAAwB;AAEpC,uBAAE,GACE,OAAO,EAAE,MAAM,EACf,gBAAgB,EXnCT,OAAO;AWqClB,uCAAkB,GACd,gBAAgB,EX7Bd,IAAI;AW+BV,6BAAQ,GACJ,OAAO,EAAE,IAAI;AAEjB,8DAAW,GAEP,gBAAgB,EXnCN,IAAI;AWqClB,sBAAC,GACG,OAAO,EAAE,KAAK;AAEd,6BAAQ,GACJ,GAAG,EAAE,IAAI;AAEjB,gCAAW,GACP,KAAK,EXpDE,OAAO,EWqDd,WAAW,EAAE,MAAM;AAE3B,qBAAW,GACP,gBAAgB,EXhDF,IAAI;AWkDlB,kCAAY,GACR,GAAG,EAAE,CAAC,EACN,OAAO,EAAE,CAAC;AAEd,4BAAM,GACF,OAAO,EAAE,CAAC,EACV,OAAO,EAAE,CAAC;AAEd,8BAAQ,GACJ,UAAU,EAAE,OAAO;AAE3B,6CAAmC,GAC/B,OAAO,EAAE,KAAK;AAElB,6CAAmC,GAC/B,OAAO,EAAE,KAAK;;AC3EtB,cAAc,GACV,MAAM,EAAE,SAAS,EACjB,OAAO,EAAE,IAAI,EACb,MAAM,EAAE,cAA8B,EACtC,WAAW,EZdI,iDAAiD,EYehE,SAAS,EZZI,IAAI;AYcjB,4BAAe,GACX,YAAY,EAAE,IAAI;AAElB,mCAAQ,GACJ,GAAG,EAAE,IAAI,EACT,IAAI,EAAE,IAAI;AAElB,2BAAc,GACV,WAAW,EAAE,KAAK,EAClB,YAAY,EAAE,KAAK,EACnB,YAAY,EAAE,KAAK;AAEnB,yCAAe,GACX,YAAY,EAAE,IAAI;AAElB,gDAAQ,GACJ,IAAI,EAAE,IAAI;;AAE1B,qBAAqB,GACjB,KAAK,EZxBU,OAAO,EYyBtB,WAAW,EAAE,MAAM;;AAEvB,mBAAmB,GACf,UAAU,EAAE,MAAM,EAClB,WAAW,EAAE,MAAM;;AAYvB,eAAe,GACX,OAAO,EAAE,CAAC,EACV,MAAM,EAAE,SAAS,EACjB,MAAM,EAAE,cAA8B;AAEtC,8BAAc,GACV,MAAM,EAAE,CAAC,EACT,YAAY,EAAE,SAAS,EACvB,UAAU,EAAE,qBAAqB;AAEjC,0CAAa,GACT,gBAAgB,EAAE,CAAC;AAEvB,sCAAS,GACL,gBAAgB,EZ/CN,IAAI;AYiDtB,uCAAyB,GACrB,MAAM,EAAE,OAAO;AAEnB,4BAAc,GACV,WAAW,EAAE,KAAK,EAClB,YAAY,EAAE,KAAK,EACnB,YAAY,EAAE,KAAK;AAEnB,yDAA4B,GACxB,YAAY,EAAE,IAAI;AAElB,gEAAQ,GACJ,IAAI,EAAE,IAAI;AAEtB,uCAAyB,GACrB,gBAAgB,EAAE,CAAC,EACnB,UAAU,EAAE,KAAK;;AAezB,mBAAmB,GACf,QAAQ,EAAE,QAAQ,EAClB,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,WAAW,EACvB,OAAO,EAAE,CAAC,EACV,UAAU,EAAE,IAAI;AAKhB,6CAA2B,GACvB,OAAO,EAAE,IAAI;AAEb,qDAAS,GACL,OAAO,EAAE,KAAK;AAElB,qDAAS,GACL,SAAS,EAAE,oBAAoB;AAEnC,sDAAU,GACN,SAAS,EAAE,qBAAqB,EAChC,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,KAAK,EACd,GAAG,EAAE,CAAC,EACN,IAAI,EAAE,CAAC,EACP,KAAK,EAAE,CAAC,EACR,OAAO,EAAE,CAAC,EACV,UAAU,EAAE,MAAM;AAE1B,wGAAE,GACE,SAAS,EZhIL,IAAI,EYiIR,MAAM,EAAE,aAAa;;AAE7B,yCAAkB,GAEd,UAAU,EAAE,MAAM,EAClB,MAAM,EAAE,CAAC,EACT,YAAY,EAAE,IAAI;AAElB,mGAA4B,GACxB,UAAU,EAAE,IAAI,EAChB,WAAW,EAAE,KAAK;AAEtB,+CAAE,GACE,SAAS,EZ9IL,IAAI,EY+IR,MAAM,EAAE,aAAa;AAEzB,mEAAY,GACR,UAAU,EAAE,MAAM;;AC9I1B,YAAY,GACR,SAAS,EbJI,IAAI,EaKjB,KAAK,EbIU,OAAO,EaHtB,MAAM,EAAE,SAAS;AAEjB,cAAC,GACG,KAAK,EbAM,OAAO,EaClB,eAAe,EAAE,SAAS;AAE9B,+BAAK,GACD,MAAM,EAAE,YAAY;AAExB,eAAE,GACE,UAAU,EAAE,IAAI,EAChB,OAAO,EAAE,CAAC;;ACXlB,iBAAiB,GACb,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,CAAC,EACV,GAAG,EAAE,CAAC,EACN,IAAI,EAAE,CAAC,EACP,KAAK,EAAE,IAAI,EACX,MAAM,EdoBO,IAAI,EcnBjB,KAAK,EdkBY,IAAI,EcjBrB,UAAU,EdgBE,IAAI,EcfhB,aAAa,EAAE,cAA8B;AAE7C,mBAAC,GACG,KAAK,EdaQ,IAAI,EcZjB,eAAe,EAAE,IAAI;AAErB,yBAAO,GACH,WAAW,EAAE,IAAI;AAErB,+BAAa,GACT,eAAe,EAAE,SAAS;AAElC,6BAAW,GACP,OAAO,EAAE,KAAK,EACd,KAAK,EAAE,IAAI,EACX,MAAM,EdEG,IAAI;AcAjB,6BAAW,GACP,OAAO,EAAE,UAAU,EACnB,QAAQ,EAAE,QAAQ,EAClB,WAAW,EAAE,MAAM,EACnB,WAAW,EdJF,IAAI;AcMb,yCAAa,GACT,KAAK,EAAE,IAAI;;AAGnB,gGAAQ,GACJ,OAAO,EAAE,EAAE,EACX,OAAO,EAAE,YAAY,EACrB,KAAK,EAAE,IAAI,EACX,MAAM,EAAE,IAAI,EACZ,MAAM,EAAE,UAAU,EAClB,gBAAgB,EAAE,0BAA0B,EAC5C,iBAAiB,EAAE,SAAS,EAC5B,WAAW,EAAE,OAAO,EACpB,cAAc,EAAE,MAAM;AnBzC1B,qGAAqG,GACjG,gGAAC,GmB2CG,gBAAgB,EAAE,6BAA6B,EAC/C,eAAe,EAAE,UAAU;;AAEvC,WAAW,GAEP,OAAO,EAAE,YAAY,EACrB,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,GAAG,EACZ,MAAM,Ed9BO,IAAI,Ec+BjB,UAAU,EAAE,mCAAmC,EAC/C,cAAc,EAAE,MAAM,EACtB,MAAM,EAAE,OAAO;AAEf,iBAAO,GACH,OAAO,EAAE,GAAG;AAEhB,kBAAQ,GACJ,OAAO,EAAE,CAAC,EACV,gBAAgB,EdvDF,IAAI;AcyDtB,sBAAY,GACR,KAAK,EAAE,IAAI;AAEX,6BAAQ,GACJ,MAAM,EAAE,CAAC;AAEjB,yBAAe,GACX,mBAAmB,EAAE,GAAG;AAE5B,uBAAa,GACT,mBAAmB,EAAE,OAAO;AAEhC,0BAAgB,GACZ,mBAAmB,EAAE,OAAO;AAEhC,qCAAU,GAEN,OAAO,EAAE,IAAI;AlB5EjB,yBAAyB,GACrB,qCAAC,GkB8EG,OAAO,EAAE,YAAY;AAE7B,yCAA+B,GAC3B,mBAAmB,EAAE,QAAQ;AAEjC,iDAAuC,GACnC,mBAAmB,EAAE,QAAQ;;AAErC,WAAW,GACP,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,YAAY,EACrB,MAAM,EdzEO,IAAI,Ec0EjB,UAAU,EAAE,mCAAmC,EAC/C,cAAc,EAAE,MAAM,EACtB,MAAM,EAAE,OAAO;AAEf,6BAAiB,GAEb,OAAO,EAAE,GAAG,EACZ,UAAU,EAAE,YAAY;AAExB,oCAAQ,GACJ,mBAAmB,EAAE,QAAQ;AAGjC,oCAAiB,GACb,OAAO,EAAE,GAAG;AAEhB,mCAAgB,GACZ,UAAU,EAAE,OAAO,EACnB,OAAO,EAAE,CAAC,EACV,gBAAgB,EAAE,EAAE;AAE5B,4BAAgB,GACZ,QAAQ,EAAE,QAAQ,EAClB,UAAU,EAAE,MAAM,EAClB,GAAG,EdlGM,IAAI,EcmGb,IAAI,EAAE,CAAC,EACP,MAAM,EAAE,CAAC,EACT,OAAO,EAAE,CAAC,EACV,OAAO,EAAE,CAAC,EACV,UAAU,EAAE,IAAI,EAChB,UAAU,EAAE,2BAAwB,EACpC,UAAU,EAAE,gCAAgC;AAE5C,+BAAE,GAEE,OAAO,EAAE,UAAU,EACnB,gBAAgB,EdvIT,OAAO;AcyId,sCAAQ,GACJ,mBAAmB,EAAE,MAAM;AAE/B,+CAAiB,GACb,gBAAgB,EdpIlB,IAAI;AcsIN,qCAAO,GACH,gBAAgB,EdtIV,IAAI;AcwId,+CAAiB,GACb,mBAAmB,EAAE,QAAQ;AlB3IzC,yBAAyB,GkB8IrB,4BAAgB,GACZ,GAAG,EAAE,CAAC,EACN,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,IAAI,EACX,YAAY,EAAE,IAAI;EAEtB,oCAAwB,GACpB,mBAAmB,EAAE,QAAQ;;ACzKzC,GAAG,GACC,SAAS,EAAE,IAAI", +"sources": ["../../../../src/default/assets/css/vendors/_normalize.sass","../../../../src/default/assets/css/vendors/_highlight.js.sass","../../../../src/default/assets/css/setup/_mixins.sass","../../../../src/default/assets/css/setup/_grid.sass","../../../../src/default/assets/css/setup/_icons.scss","../../../../src/default/assets/css/setup/_animations.sass","../../../../src/default/assets/css/setup/_typography.sass","../../../../src/default/assets/css/_constants.sass","../../../../src/default/assets/css/layouts/_default.sass","../../../../src/default/assets/css/layouts/_minimal.sass","../../../../src/default/assets/css/elements/_comment.sass","../../../../src/default/assets/css/elements/_filter.sass","../../../../src/default/assets/css/elements/_footer.sass","../../../../src/default/assets/css/elements/_hierarchy.sass","../../../../src/default/assets/css/elements/_index.sass","../../../../src/default/assets/css/elements/_member.sass","../../../../src/default/assets/css/elements/_navigation.sass","../../../../src/default/assets/css/elements/_panel.sass","../../../../src/default/assets/css/elements/_search.sass","../../../../src/default/assets/css/elements/_signatures.sass","../../../../src/default/assets/css/elements/_sources.sass","../../../../src/default/assets/css/elements/_toolbar.sass","../../../../src/default/assets/css/elements/_images.sass"], +"names": [], +"file": "main.css" +} diff --git a/libraries/pulumi-aws/assets/images/icons.png b/libraries/pulumi-aws/assets/images/icons.png new file mode 100644 index 000000000000..cb2d11573b9a Binary files /dev/null and b/libraries/pulumi-aws/assets/images/icons.png differ diff --git a/libraries/pulumi-aws/assets/images/icons@2x.png b/libraries/pulumi-aws/assets/images/icons@2x.png new file mode 100644 index 000000000000..8932ba20ffa4 Binary files /dev/null and b/libraries/pulumi-aws/assets/images/icons@2x.png differ diff --git a/libraries/pulumi-aws/assets/images/widgets.png b/libraries/pulumi-aws/assets/images/widgets.png new file mode 100644 index 000000000000..c7380532ac1b Binary files /dev/null and b/libraries/pulumi-aws/assets/images/widgets.png differ diff --git a/libraries/pulumi-aws/assets/images/widgets@2x.png b/libraries/pulumi-aws/assets/images/widgets@2x.png new file mode 100644 index 000000000000..4bbbd57272f3 Binary files /dev/null and b/libraries/pulumi-aws/assets/images/widgets@2x.png differ diff --git a/libraries/pulumi-aws/assets/js/main.js b/libraries/pulumi-aws/assets/js/main.js new file mode 100644 index 000000000000..528a3b02a9d9 --- /dev/null +++ b/libraries/pulumi-aws/assets/js/main.js @@ -0,0 +1,5 @@ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){function s(a){var b=a.length,c=n.type(a);return"function"!==c&&!n.isWindow(a)&&(!(1!==a.nodeType||!b)||("array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a))}function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}function D(a,b){for(;(a=a[b])&&1!==a.nodeType;);return a}function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+Math.random()}function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),"string"==typeof(c=a.getAttribute(d))){try{c="true"===c||"false"!==c&&("null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c)}catch(e){}M.set(a,b,c)}else c=void 0;return c}function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||n("