@cdk8s/awscdk-resolver 0.0.54 → 0.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/resolve.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/README.md +88 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/CreateGeneratedTemplateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DeleteGeneratedTemplateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DescribeGeneratedTemplateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/DescribeResourceScanCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/GetGeneratedTemplateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListGeneratedTemplatesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScanRelatedResourcesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScanResourcesCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/ListResourceScansCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/StartResourceScanCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/commands/UpdateGeneratedTemplateCommand.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +1677 -73
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/models_1.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListGeneratedTemplatesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScanRelatedResourcesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScanResourcesPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/pagination/ListResourceScansPaginator.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/CloudFormation.js +22 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateGeneratedTemplateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteGeneratedTemplateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeGeneratedTemplateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeResourceScanCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetGeneratedTemplateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListGeneratedTemplatesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanRelatedResourcesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanResourcesCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScansCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StartResourceScanCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateGeneratedTemplateCommand.js +24 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/index.js +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/models_0.js +104 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/models_1.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListGeneratedTemplatesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScanRelatedResourcesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScanResourcesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/ListResourceScansPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/index.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/protocols/Aws_query.js +1322 -92
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +77 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormationClient.d.ts +13 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateGeneratedTemplateCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteGeneratedTemplateCommand.d.ts +75 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeGeneratedTemplateCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeResourceScanCommand.d.ts +168 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetGeneratedTemplateCommand.d.ts +100 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListGeneratedTemplatesCommand.d.ts +112 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanRelatedResourcesCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanResourcesCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScansCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StartResourceScanCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StopStackSetOperationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/TestTypeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateGeneratedTemplateCommand.d.ts +156 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ValidateTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +4075 -3877
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_1.d.ts +974 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListGeneratedTemplatesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScanResourcesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/ListResourceScansPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/protocols/Aws_query.d.ts +99 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +187 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormationClient.d.ts +66 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateGeneratedTemplateCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteGeneratedTemplateCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeGeneratedTemplateCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeResourceScanCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetGeneratedTemplateCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListGeneratedTemplatesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanRelatedResourcesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanResourcesCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScansCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StopStackSetOperationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/TestTypeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateGeneratedTemplateCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ValidateTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +250 -99
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_1.d.ts +132 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListGeneratedTemplatesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScanRelatedResourcesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScanResourcesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/ListResourceScansPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/protocols/Aws_query.d.ts +132 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.d.ts +6 -2
- package/node_modules/@aws-sdk/client-cloudformation/package.json +13 -13
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +14 -13
- package/node_modules/@aws-sdk/client-sso/package.json +10 -10
- package/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-sso-oidc/README.md +274 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDC.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/SSOOIDCClient.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/CreateTokenCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/CreateTokenWithIAMCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/RegisterClientCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/StartDeviceAuthorizationCommand.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/credentialDefaultProvider.js +29 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/EndpointParameters.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +1115 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/SSOOIDCServiceException.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/protocols/Aws_restJson1.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js +49 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js +24 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeExtensions.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDC.js +15 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDCClient.js +38 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenWithIAMCommand.js +27 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js +25 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/credentialDefaultProvider.js +3 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/EndpointParameters.js +14 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/endpointResolver.js +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/SSOOIDCServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/models_0.js +217 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +553 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.js +44 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.shared.js +20 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeExtensions.js +18 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDC.d.ts +75 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDCClient.d.ts +210 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenWithIAMCommand.d.ts +243 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/RegisterClientCommand.d.ts +107 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/credentialDefaultProvider.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/extensionConfiguration.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/index.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/SSOOIDCServiceException.d.ts +13 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +734 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/protocols/Aws_restJson1.d.ts +38 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.native.d.ts +45 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDC.d.ts +73 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDCClient.d.ts +142 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +26 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenWithIAMCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/credentialDefaultProvider.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +201 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso-oidc/package.json +103 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +1 -29
- package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +1 -29
- package/node_modules/@aws-sdk/client-sts/dist-cjs/credentialDefaultProvider.js +29 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +1 -78
- package/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +1412 -72
- package/node_modules/@aws-sdk/client-sts/dist-cjs/models/STSServiceException.js +1 -12
- package/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +1 -149
- package/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1 -1084
- package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +3 -4
- package/node_modules/@aws-sdk/client-sts/dist-es/credentialDefaultProvider.js +3 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +3 -4
- package/node_modules/@aws-sdk/client-sts/dist-types/credentialDefaultProvider.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +3 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +8 -3
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/credentialDefaultProvider.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +26 -14
- package/node_modules/@aws-sdk/client-sts/package.json +14 -12
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +5 -3
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +2 -1
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +4 -1
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +32 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +65 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +59 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +59 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +53 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/package.json +67 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +71 -43
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/loadSts.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/loadSts.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +4 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +4 -6
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +2 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +3 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +10 -9
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +9 -6
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +3 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/loadSts.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +1 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +6 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +8 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/loadSts.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +4 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +1 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +6 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +3 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +7 -6
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +24 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +11 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +5 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +17 -14
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +5 -2
- package/node_modules/@aws-sdk/credential-provider-node/package.json +8 -7
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +4 -1
- package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +31 -7
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +5 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +7 -5
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +4 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +6 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +5 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +7 -5
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/loadSts.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +6 -5
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/loadSts.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +4 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +14 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/loadSts.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +12 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/loadSts.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -2
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/middleware-host-header/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/middleware-logger/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +3 -3
- package/node_modules/@aws-sdk/middleware-signing/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +3 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +4 -4
- package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +27 -24
- package/node_modules/@aws-sdk/token-providers/dist-cjs/loadSsoOidc.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +2 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +3 -3
- package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +2 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/loadSsoOidc.js +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +2 -2
- package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +3 -3
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +2 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +2 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/loadSsoOidc.d.ts +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +7 -2
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +7 -2
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/loadSsoOidc.d.ts +2 -0
- package/node_modules/@aws-sdk/token-providers/package.json +6 -43
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +3 -171
- package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +15 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +4 -0
- package/node_modules/@aws-sdk/types/package.json +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +4 -24
- package/node_modules/@aws-sdk/util-endpoints/package.json +2 -2
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/package.json +5 -5
- package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-browser.js +0 -1032
- package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-node.js +0 -1038
- package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-browser.js +0 -1010
- package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-node.js +0 -1017
- package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-browser.d.ts +0 -191
- package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-node.d.ts +0 -191
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-browser.d.ts +0 -235
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-node.d.ts +0 -235
@@ -0,0 +1,7 @@
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
2
|
+
import { ListGeneratedTemplatesCommandInput, ListGeneratedTemplatesCommandOutput } from "../commands/ListGeneratedTemplatesCommand";
|
3
|
+
import { CloudFormationPaginationConfiguration } from "./Interfaces";
|
4
|
+
/**
|
5
|
+
* @public
|
6
|
+
*/
|
7
|
+
export declare const paginateListGeneratedTemplates: (config: CloudFormationPaginationConfiguration, input: ListGeneratedTemplatesCommandInput, ...rest: any[]) => Paginator<ListGeneratedTemplatesCommandOutput>;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
2
|
+
import { ListResourceScanRelatedResourcesCommandInput, ListResourceScanRelatedResourcesCommandOutput } from "../commands/ListResourceScanRelatedResourcesCommand";
|
3
|
+
import { CloudFormationPaginationConfiguration } from "./Interfaces";
|
4
|
+
/**
|
5
|
+
* @public
|
6
|
+
*/
|
7
|
+
export declare const paginateListResourceScanRelatedResources: (config: CloudFormationPaginationConfiguration, input: ListResourceScanRelatedResourcesCommandInput, ...rest: any[]) => Paginator<ListResourceScanRelatedResourcesCommandOutput>;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
2
|
+
import { ListResourceScanResourcesCommandInput, ListResourceScanResourcesCommandOutput } from "../commands/ListResourceScanResourcesCommand";
|
3
|
+
import { CloudFormationPaginationConfiguration } from "./Interfaces";
|
4
|
+
/**
|
5
|
+
* @public
|
6
|
+
*/
|
7
|
+
export declare const paginateListResourceScanResources: (config: CloudFormationPaginationConfiguration, input: ListResourceScanResourcesCommandInput, ...rest: any[]) => Paginator<ListResourceScanResourcesCommandOutput>;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
2
|
+
import { ListResourceScansCommandInput, ListResourceScansCommandOutput } from "../commands/ListResourceScansCommand";
|
3
|
+
import { CloudFormationPaginationConfiguration } from "./Interfaces";
|
4
|
+
/**
|
5
|
+
* @public
|
6
|
+
*/
|
7
|
+
export declare const paginateListResourceScans: (config: CloudFormationPaginationConfiguration, input: ListResourceScansCommandInput, ...rest: any[]) => Paginator<ListResourceScansCommandOutput>;
|
@@ -5,7 +5,11 @@ export * from "./DescribeStacksPaginator";
|
|
5
5
|
export * from "./Interfaces";
|
6
6
|
export * from "./ListChangeSetsPaginator";
|
7
7
|
export * from "./ListExportsPaginator";
|
8
|
+
export * from "./ListGeneratedTemplatesPaginator";
|
8
9
|
export * from "./ListImportsPaginator";
|
10
|
+
export * from "./ListResourceScanRelatedResourcesPaginator";
|
11
|
+
export * from "./ListResourceScanResourcesPaginator";
|
12
|
+
export * from "./ListResourceScansPaginator";
|
9
13
|
export * from "./ListStackInstancesPaginator";
|
10
14
|
export * from "./ListStackResourcesPaginator";
|
11
15
|
export * from "./ListStackSetOperationResultsPaginator";
|
@@ -6,12 +6,14 @@ import { BatchDescribeTypeConfigurationsCommandInput, BatchDescribeTypeConfigura
|
|
6
6
|
import { CancelUpdateStackCommandInput, CancelUpdateStackCommandOutput } from "../commands/CancelUpdateStackCommand";
|
7
7
|
import { ContinueUpdateRollbackCommandInput, ContinueUpdateRollbackCommandOutput } from "../commands/ContinueUpdateRollbackCommand";
|
8
8
|
import { CreateChangeSetCommandInput, CreateChangeSetCommandOutput } from "../commands/CreateChangeSetCommand";
|
9
|
+
import { CreateGeneratedTemplateCommandInput, CreateGeneratedTemplateCommandOutput } from "../commands/CreateGeneratedTemplateCommand";
|
9
10
|
import { CreateStackCommandInput, CreateStackCommandOutput } from "../commands/CreateStackCommand";
|
10
11
|
import { CreateStackInstancesCommandInput, CreateStackInstancesCommandOutput } from "../commands/CreateStackInstancesCommand";
|
11
12
|
import { CreateStackSetCommandInput, CreateStackSetCommandOutput } from "../commands/CreateStackSetCommand";
|
12
13
|
import { DeactivateOrganizationsAccessCommandInput, DeactivateOrganizationsAccessCommandOutput } from "../commands/DeactivateOrganizationsAccessCommand";
|
13
14
|
import { DeactivateTypeCommandInput, DeactivateTypeCommandOutput } from "../commands/DeactivateTypeCommand";
|
14
15
|
import { DeleteChangeSetCommandInput, DeleteChangeSetCommandOutput } from "../commands/DeleteChangeSetCommand";
|
16
|
+
import { DeleteGeneratedTemplateCommandInput, DeleteGeneratedTemplateCommandOutput } from "../commands/DeleteGeneratedTemplateCommand";
|
15
17
|
import { DeleteStackCommandInput, DeleteStackCommandOutput } from "../commands/DeleteStackCommand";
|
16
18
|
import { DeleteStackInstancesCommandInput, DeleteStackInstancesCommandOutput } from "../commands/DeleteStackInstancesCommand";
|
17
19
|
import { DeleteStackSetCommandInput, DeleteStackSetCommandOutput } from "../commands/DeleteStackSetCommand";
|
@@ -19,8 +21,10 @@ import { DeregisterTypeCommandInput, DeregisterTypeCommandOutput } from "../comm
|
|
19
21
|
import { DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput } from "../commands/DescribeAccountLimitsCommand";
|
20
22
|
import { DescribeChangeSetCommandInput, DescribeChangeSetCommandOutput } from "../commands/DescribeChangeSetCommand";
|
21
23
|
import { DescribeChangeSetHooksCommandInput, DescribeChangeSetHooksCommandOutput } from "../commands/DescribeChangeSetHooksCommand";
|
24
|
+
import { DescribeGeneratedTemplateCommandInput, DescribeGeneratedTemplateCommandOutput } from "../commands/DescribeGeneratedTemplateCommand";
|
22
25
|
import { DescribeOrganizationsAccessCommandInput, DescribeOrganizationsAccessCommandOutput } from "../commands/DescribeOrganizationsAccessCommand";
|
23
26
|
import { DescribePublisherCommandInput, DescribePublisherCommandOutput } from "../commands/DescribePublisherCommand";
|
27
|
+
import { DescribeResourceScanCommandInput, DescribeResourceScanCommandOutput } from "../commands/DescribeResourceScanCommand";
|
24
28
|
import { DescribeStackDriftDetectionStatusCommandInput, DescribeStackDriftDetectionStatusCommandOutput } from "../commands/DescribeStackDriftDetectionStatusCommand";
|
25
29
|
import { DescribeStackEventsCommandInput, DescribeStackEventsCommandOutput } from "../commands/DescribeStackEventsCommand";
|
26
30
|
import { DescribeStackInstanceCommandInput, DescribeStackInstanceCommandOutput } from "../commands/DescribeStackInstanceCommand";
|
@@ -37,13 +41,18 @@ import { DetectStackResourceDriftCommandInput, DetectStackResourceDriftCommandOu
|
|
37
41
|
import { DetectStackSetDriftCommandInput, DetectStackSetDriftCommandOutput } from "../commands/DetectStackSetDriftCommand";
|
38
42
|
import { EstimateTemplateCostCommandInput, EstimateTemplateCostCommandOutput } from "../commands/EstimateTemplateCostCommand";
|
39
43
|
import { ExecuteChangeSetCommandInput, ExecuteChangeSetCommandOutput } from "../commands/ExecuteChangeSetCommand";
|
44
|
+
import { GetGeneratedTemplateCommandInput, GetGeneratedTemplateCommandOutput } from "../commands/GetGeneratedTemplateCommand";
|
40
45
|
import { GetStackPolicyCommandInput, GetStackPolicyCommandOutput } from "../commands/GetStackPolicyCommand";
|
41
46
|
import { GetTemplateCommandInput, GetTemplateCommandOutput } from "../commands/GetTemplateCommand";
|
42
47
|
import { GetTemplateSummaryCommandInput, GetTemplateSummaryCommandOutput } from "../commands/GetTemplateSummaryCommand";
|
43
48
|
import { ImportStacksToStackSetCommandInput, ImportStacksToStackSetCommandOutput } from "../commands/ImportStacksToStackSetCommand";
|
44
49
|
import { ListChangeSetsCommandInput, ListChangeSetsCommandOutput } from "../commands/ListChangeSetsCommand";
|
45
50
|
import { ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand";
|
51
|
+
import { ListGeneratedTemplatesCommandInput, ListGeneratedTemplatesCommandOutput } from "../commands/ListGeneratedTemplatesCommand";
|
46
52
|
import { ListImportsCommandInput, ListImportsCommandOutput } from "../commands/ListImportsCommand";
|
53
|
+
import { ListResourceScanRelatedResourcesCommandInput, ListResourceScanRelatedResourcesCommandOutput } from "../commands/ListResourceScanRelatedResourcesCommand";
|
54
|
+
import { ListResourceScanResourcesCommandInput, ListResourceScanResourcesCommandOutput } from "../commands/ListResourceScanResourcesCommand";
|
55
|
+
import { ListResourceScansCommandInput, ListResourceScansCommandOutput } from "../commands/ListResourceScansCommand";
|
47
56
|
import { ListStackInstanceResourceDriftsCommandInput, ListStackInstanceResourceDriftsCommandOutput } from "../commands/ListStackInstanceResourceDriftsCommand";
|
48
57
|
import { ListStackInstancesCommandInput, ListStackInstancesCommandOutput } from "../commands/ListStackInstancesCommand";
|
49
58
|
import { ListStackResourcesCommandInput, ListStackResourcesCommandOutput } from "../commands/ListStackResourcesCommand";
|
@@ -63,8 +72,10 @@ import { SetStackPolicyCommandInput, SetStackPolicyCommandOutput } from "../comm
|
|
63
72
|
import { SetTypeConfigurationCommandInput, SetTypeConfigurationCommandOutput } from "../commands/SetTypeConfigurationCommand";
|
64
73
|
import { SetTypeDefaultVersionCommandInput, SetTypeDefaultVersionCommandOutput } from "../commands/SetTypeDefaultVersionCommand";
|
65
74
|
import { SignalResourceCommandInput, SignalResourceCommandOutput } from "../commands/SignalResourceCommand";
|
75
|
+
import { StartResourceScanCommandInput, StartResourceScanCommandOutput } from "../commands/StartResourceScanCommand";
|
66
76
|
import { StopStackSetOperationCommandInput, StopStackSetOperationCommandOutput } from "../commands/StopStackSetOperationCommand";
|
67
77
|
import { TestTypeCommandInput, TestTypeCommandOutput } from "../commands/TestTypeCommand";
|
78
|
+
import { UpdateGeneratedTemplateCommandInput, UpdateGeneratedTemplateCommandOutput } from "../commands/UpdateGeneratedTemplateCommand";
|
68
79
|
import { UpdateStackCommandInput, UpdateStackCommandOutput } from "../commands/UpdateStackCommand";
|
69
80
|
import { UpdateStackInstancesCommandInput, UpdateStackInstancesCommandOutput } from "../commands/UpdateStackInstancesCommand";
|
70
81
|
import { UpdateStackSetCommandInput, UpdateStackSetCommandOutput } from "../commands/UpdateStackSetCommand";
|
@@ -94,6 +105,10 @@ export declare const se_ContinueUpdateRollbackCommand: (input: ContinueUpdateRol
|
|
94
105
|
* serializeAws_queryCreateChangeSetCommand
|
95
106
|
*/
|
96
107
|
export declare const se_CreateChangeSetCommand: (input: CreateChangeSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
108
|
+
/**
|
109
|
+
* serializeAws_queryCreateGeneratedTemplateCommand
|
110
|
+
*/
|
111
|
+
export declare const se_CreateGeneratedTemplateCommand: (input: CreateGeneratedTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
97
112
|
/**
|
98
113
|
* serializeAws_queryCreateStackCommand
|
99
114
|
*/
|
@@ -118,6 +133,10 @@ export declare const se_DeactivateTypeCommand: (input: DeactivateTypeCommandInpu
|
|
118
133
|
* serializeAws_queryDeleteChangeSetCommand
|
119
134
|
*/
|
120
135
|
export declare const se_DeleteChangeSetCommand: (input: DeleteChangeSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
136
|
+
/**
|
137
|
+
* serializeAws_queryDeleteGeneratedTemplateCommand
|
138
|
+
*/
|
139
|
+
export declare const se_DeleteGeneratedTemplateCommand: (input: DeleteGeneratedTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
121
140
|
/**
|
122
141
|
* serializeAws_queryDeleteStackCommand
|
123
142
|
*/
|
@@ -146,6 +165,10 @@ export declare const se_DescribeChangeSetCommand: (input: DescribeChangeSetComma
|
|
146
165
|
* serializeAws_queryDescribeChangeSetHooksCommand
|
147
166
|
*/
|
148
167
|
export declare const se_DescribeChangeSetHooksCommand: (input: DescribeChangeSetHooksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
168
|
+
/**
|
169
|
+
* serializeAws_queryDescribeGeneratedTemplateCommand
|
170
|
+
*/
|
171
|
+
export declare const se_DescribeGeneratedTemplateCommand: (input: DescribeGeneratedTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
149
172
|
/**
|
150
173
|
* serializeAws_queryDescribeOrganizationsAccessCommand
|
151
174
|
*/
|
@@ -154,6 +177,10 @@ export declare const se_DescribeOrganizationsAccessCommand: (input: DescribeOrga
|
|
154
177
|
* serializeAws_queryDescribePublisherCommand
|
155
178
|
*/
|
156
179
|
export declare const se_DescribePublisherCommand: (input: DescribePublisherCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
180
|
+
/**
|
181
|
+
* serializeAws_queryDescribeResourceScanCommand
|
182
|
+
*/
|
183
|
+
export declare const se_DescribeResourceScanCommand: (input: DescribeResourceScanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
157
184
|
/**
|
158
185
|
* serializeAws_queryDescribeStackDriftDetectionStatusCommand
|
159
186
|
*/
|
@@ -218,6 +245,10 @@ export declare const se_EstimateTemplateCostCommand: (input: EstimateTemplateCos
|
|
218
245
|
* serializeAws_queryExecuteChangeSetCommand
|
219
246
|
*/
|
220
247
|
export declare const se_ExecuteChangeSetCommand: (input: ExecuteChangeSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
248
|
+
/**
|
249
|
+
* serializeAws_queryGetGeneratedTemplateCommand
|
250
|
+
*/
|
251
|
+
export declare const se_GetGeneratedTemplateCommand: (input: GetGeneratedTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
221
252
|
/**
|
222
253
|
* serializeAws_queryGetStackPolicyCommand
|
223
254
|
*/
|
@@ -242,10 +273,26 @@ export declare const se_ListChangeSetsCommand: (input: ListChangeSetsCommandInpu
|
|
242
273
|
* serializeAws_queryListExportsCommand
|
243
274
|
*/
|
244
275
|
export declare const se_ListExportsCommand: (input: ListExportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
276
|
+
/**
|
277
|
+
* serializeAws_queryListGeneratedTemplatesCommand
|
278
|
+
*/
|
279
|
+
export declare const se_ListGeneratedTemplatesCommand: (input: ListGeneratedTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
245
280
|
/**
|
246
281
|
* serializeAws_queryListImportsCommand
|
247
282
|
*/
|
248
283
|
export declare const se_ListImportsCommand: (input: ListImportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
284
|
+
/**
|
285
|
+
* serializeAws_queryListResourceScanRelatedResourcesCommand
|
286
|
+
*/
|
287
|
+
export declare const se_ListResourceScanRelatedResourcesCommand: (input: ListResourceScanRelatedResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
288
|
+
/**
|
289
|
+
* serializeAws_queryListResourceScanResourcesCommand
|
290
|
+
*/
|
291
|
+
export declare const se_ListResourceScanResourcesCommand: (input: ListResourceScanResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
292
|
+
/**
|
293
|
+
* serializeAws_queryListResourceScansCommand
|
294
|
+
*/
|
295
|
+
export declare const se_ListResourceScansCommand: (input: ListResourceScansCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
249
296
|
/**
|
250
297
|
* serializeAws_queryListStackInstanceResourceDriftsCommand
|
251
298
|
*/
|
@@ -322,6 +369,10 @@ export declare const se_SetTypeDefaultVersionCommand: (input: SetTypeDefaultVers
|
|
322
369
|
* serializeAws_querySignalResourceCommand
|
323
370
|
*/
|
324
371
|
export declare const se_SignalResourceCommand: (input: SignalResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
372
|
+
/**
|
373
|
+
* serializeAws_queryStartResourceScanCommand
|
374
|
+
*/
|
375
|
+
export declare const se_StartResourceScanCommand: (input: StartResourceScanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
325
376
|
/**
|
326
377
|
* serializeAws_queryStopStackSetOperationCommand
|
327
378
|
*/
|
@@ -330,6 +381,10 @@ export declare const se_StopStackSetOperationCommand: (input: StopStackSetOperat
|
|
330
381
|
* serializeAws_queryTestTypeCommand
|
331
382
|
*/
|
332
383
|
export declare const se_TestTypeCommand: (input: TestTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
384
|
+
/**
|
385
|
+
* serializeAws_queryUpdateGeneratedTemplateCommand
|
386
|
+
*/
|
387
|
+
export declare const se_UpdateGeneratedTemplateCommand: (input: UpdateGeneratedTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
333
388
|
/**
|
334
389
|
* serializeAws_queryUpdateStackCommand
|
335
390
|
*/
|
@@ -374,6 +429,10 @@ export declare const de_ContinueUpdateRollbackCommand: (output: __HttpResponse,
|
|
374
429
|
* deserializeAws_queryCreateChangeSetCommand
|
375
430
|
*/
|
376
431
|
export declare const de_CreateChangeSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChangeSetCommandOutput>;
|
432
|
+
/**
|
433
|
+
* deserializeAws_queryCreateGeneratedTemplateCommand
|
434
|
+
*/
|
435
|
+
export declare const de_CreateGeneratedTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGeneratedTemplateCommandOutput>;
|
377
436
|
/**
|
378
437
|
* deserializeAws_queryCreateStackCommand
|
379
438
|
*/
|
@@ -398,6 +457,10 @@ export declare const de_DeactivateTypeCommand: (output: __HttpResponse, context:
|
|
398
457
|
* deserializeAws_queryDeleteChangeSetCommand
|
399
458
|
*/
|
400
459
|
export declare const de_DeleteChangeSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChangeSetCommandOutput>;
|
460
|
+
/**
|
461
|
+
* deserializeAws_queryDeleteGeneratedTemplateCommand
|
462
|
+
*/
|
463
|
+
export declare const de_DeleteGeneratedTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGeneratedTemplateCommandOutput>;
|
401
464
|
/**
|
402
465
|
* deserializeAws_queryDeleteStackCommand
|
403
466
|
*/
|
@@ -426,6 +489,10 @@ export declare const de_DescribeChangeSetCommand: (output: __HttpResponse, conte
|
|
426
489
|
* deserializeAws_queryDescribeChangeSetHooksCommand
|
427
490
|
*/
|
428
491
|
export declare const de_DescribeChangeSetHooksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeChangeSetHooksCommandOutput>;
|
492
|
+
/**
|
493
|
+
* deserializeAws_queryDescribeGeneratedTemplateCommand
|
494
|
+
*/
|
495
|
+
export declare const de_DescribeGeneratedTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGeneratedTemplateCommandOutput>;
|
429
496
|
/**
|
430
497
|
* deserializeAws_queryDescribeOrganizationsAccessCommand
|
431
498
|
*/
|
@@ -434,6 +501,10 @@ export declare const de_DescribeOrganizationsAccessCommand: (output: __HttpRespo
|
|
434
501
|
* deserializeAws_queryDescribePublisherCommand
|
435
502
|
*/
|
436
503
|
export declare const de_DescribePublisherCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePublisherCommandOutput>;
|
504
|
+
/**
|
505
|
+
* deserializeAws_queryDescribeResourceScanCommand
|
506
|
+
*/
|
507
|
+
export declare const de_DescribeResourceScanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeResourceScanCommandOutput>;
|
437
508
|
/**
|
438
509
|
* deserializeAws_queryDescribeStackDriftDetectionStatusCommand
|
439
510
|
*/
|
@@ -498,6 +569,10 @@ export declare const de_EstimateTemplateCostCommand: (output: __HttpResponse, co
|
|
498
569
|
* deserializeAws_queryExecuteChangeSetCommand
|
499
570
|
*/
|
500
571
|
export declare const de_ExecuteChangeSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteChangeSetCommandOutput>;
|
572
|
+
/**
|
573
|
+
* deserializeAws_queryGetGeneratedTemplateCommand
|
574
|
+
*/
|
575
|
+
export declare const de_GetGeneratedTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGeneratedTemplateCommandOutput>;
|
501
576
|
/**
|
502
577
|
* deserializeAws_queryGetStackPolicyCommand
|
503
578
|
*/
|
@@ -522,10 +597,26 @@ export declare const de_ListChangeSetsCommand: (output: __HttpResponse, context:
|
|
522
597
|
* deserializeAws_queryListExportsCommand
|
523
598
|
*/
|
524
599
|
export declare const de_ListExportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExportsCommandOutput>;
|
600
|
+
/**
|
601
|
+
* deserializeAws_queryListGeneratedTemplatesCommand
|
602
|
+
*/
|
603
|
+
export declare const de_ListGeneratedTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGeneratedTemplatesCommandOutput>;
|
525
604
|
/**
|
526
605
|
* deserializeAws_queryListImportsCommand
|
527
606
|
*/
|
528
607
|
export declare const de_ListImportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListImportsCommandOutput>;
|
608
|
+
/**
|
609
|
+
* deserializeAws_queryListResourceScanRelatedResourcesCommand
|
610
|
+
*/
|
611
|
+
export declare const de_ListResourceScanRelatedResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourceScanRelatedResourcesCommandOutput>;
|
612
|
+
/**
|
613
|
+
* deserializeAws_queryListResourceScanResourcesCommand
|
614
|
+
*/
|
615
|
+
export declare const de_ListResourceScanResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourceScanResourcesCommandOutput>;
|
616
|
+
/**
|
617
|
+
* deserializeAws_queryListResourceScansCommand
|
618
|
+
*/
|
619
|
+
export declare const de_ListResourceScansCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourceScansCommandOutput>;
|
529
620
|
/**
|
530
621
|
* deserializeAws_queryListStackInstanceResourceDriftsCommand
|
531
622
|
*/
|
@@ -602,6 +693,10 @@ export declare const de_SetTypeDefaultVersionCommand: (output: __HttpResponse, c
|
|
602
693
|
* deserializeAws_querySignalResourceCommand
|
603
694
|
*/
|
604
695
|
export declare const de_SignalResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SignalResourceCommandOutput>;
|
696
|
+
/**
|
697
|
+
* deserializeAws_queryStartResourceScanCommand
|
698
|
+
*/
|
699
|
+
export declare const de_StartResourceScanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartResourceScanCommandOutput>;
|
605
700
|
/**
|
606
701
|
* deserializeAws_queryStopStackSetOperationCommand
|
607
702
|
*/
|
@@ -610,6 +705,10 @@ export declare const de_StopStackSetOperationCommand: (output: __HttpResponse, c
|
|
610
705
|
* deserializeAws_queryTestTypeCommand
|
611
706
|
*/
|
612
707
|
export declare const de_TestTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TestTypeCommandOutput>;
|
708
|
+
/**
|
709
|
+
* deserializeAws_queryUpdateGeneratedTemplateCommand
|
710
|
+
*/
|
711
|
+
export declare const de_UpdateGeneratedTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGeneratedTemplateCommandOutput>;
|
613
712
|
/**
|
614
713
|
* deserializeAws_queryUpdateStackCommand
|
615
714
|
*/
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: CloudFormationClientConfig) => {
|
|
7
7
|
runtime: string;
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
10
|
-
credentialDefaultProvider: (
|
10
|
+
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
|
11
11
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
@@ -24,6 +24,10 @@ import {
|
|
24
24
|
CreateChangeSetCommandInput,
|
25
25
|
CreateChangeSetCommandOutput,
|
26
26
|
} from "./commands/CreateChangeSetCommand";
|
27
|
+
import {
|
28
|
+
CreateGeneratedTemplateCommandInput,
|
29
|
+
CreateGeneratedTemplateCommandOutput,
|
30
|
+
} from "./commands/CreateGeneratedTemplateCommand";
|
27
31
|
import {
|
28
32
|
CreateStackCommandInput,
|
29
33
|
CreateStackCommandOutput,
|
@@ -48,6 +52,10 @@ import {
|
|
48
52
|
DeleteChangeSetCommandInput,
|
49
53
|
DeleteChangeSetCommandOutput,
|
50
54
|
} from "./commands/DeleteChangeSetCommand";
|
55
|
+
import {
|
56
|
+
DeleteGeneratedTemplateCommandInput,
|
57
|
+
DeleteGeneratedTemplateCommandOutput,
|
58
|
+
} from "./commands/DeleteGeneratedTemplateCommand";
|
51
59
|
import {
|
52
60
|
DeleteStackCommandInput,
|
53
61
|
DeleteStackCommandOutput,
|
@@ -76,6 +84,10 @@ import {
|
|
76
84
|
DescribeChangeSetHooksCommandInput,
|
77
85
|
DescribeChangeSetHooksCommandOutput,
|
78
86
|
} from "./commands/DescribeChangeSetHooksCommand";
|
87
|
+
import {
|
88
|
+
DescribeGeneratedTemplateCommandInput,
|
89
|
+
DescribeGeneratedTemplateCommandOutput,
|
90
|
+
} from "./commands/DescribeGeneratedTemplateCommand";
|
79
91
|
import {
|
80
92
|
DescribeOrganizationsAccessCommandInput,
|
81
93
|
DescribeOrganizationsAccessCommandOutput,
|
@@ -84,6 +96,10 @@ import {
|
|
84
96
|
DescribePublisherCommandInput,
|
85
97
|
DescribePublisherCommandOutput,
|
86
98
|
} from "./commands/DescribePublisherCommand";
|
99
|
+
import {
|
100
|
+
DescribeResourceScanCommandInput,
|
101
|
+
DescribeResourceScanCommandOutput,
|
102
|
+
} from "./commands/DescribeResourceScanCommand";
|
87
103
|
import {
|
88
104
|
DescribeStackDriftDetectionStatusCommandInput,
|
89
105
|
DescribeStackDriftDetectionStatusCommandOutput,
|
@@ -148,6 +164,10 @@ import {
|
|
148
164
|
ExecuteChangeSetCommandInput,
|
149
165
|
ExecuteChangeSetCommandOutput,
|
150
166
|
} from "./commands/ExecuteChangeSetCommand";
|
167
|
+
import {
|
168
|
+
GetGeneratedTemplateCommandInput,
|
169
|
+
GetGeneratedTemplateCommandOutput,
|
170
|
+
} from "./commands/GetGeneratedTemplateCommand";
|
151
171
|
import {
|
152
172
|
GetStackPolicyCommandInput,
|
153
173
|
GetStackPolicyCommandOutput,
|
@@ -172,10 +192,26 @@ import {
|
|
172
192
|
ListExportsCommandInput,
|
173
193
|
ListExportsCommandOutput,
|
174
194
|
} from "./commands/ListExportsCommand";
|
195
|
+
import {
|
196
|
+
ListGeneratedTemplatesCommandInput,
|
197
|
+
ListGeneratedTemplatesCommandOutput,
|
198
|
+
} from "./commands/ListGeneratedTemplatesCommand";
|
175
199
|
import {
|
176
200
|
ListImportsCommandInput,
|
177
201
|
ListImportsCommandOutput,
|
178
202
|
} from "./commands/ListImportsCommand";
|
203
|
+
import {
|
204
|
+
ListResourceScanRelatedResourcesCommandInput,
|
205
|
+
ListResourceScanRelatedResourcesCommandOutput,
|
206
|
+
} from "./commands/ListResourceScanRelatedResourcesCommand";
|
207
|
+
import {
|
208
|
+
ListResourceScanResourcesCommandInput,
|
209
|
+
ListResourceScanResourcesCommandOutput,
|
210
|
+
} from "./commands/ListResourceScanResourcesCommand";
|
211
|
+
import {
|
212
|
+
ListResourceScansCommandInput,
|
213
|
+
ListResourceScansCommandOutput,
|
214
|
+
} from "./commands/ListResourceScansCommand";
|
179
215
|
import {
|
180
216
|
ListStackInstanceResourceDriftsCommandInput,
|
181
217
|
ListStackInstanceResourceDriftsCommandOutput,
|
@@ -252,6 +288,10 @@ import {
|
|
252
288
|
SignalResourceCommandInput,
|
253
289
|
SignalResourceCommandOutput,
|
254
290
|
} from "./commands/SignalResourceCommand";
|
291
|
+
import {
|
292
|
+
StartResourceScanCommandInput,
|
293
|
+
StartResourceScanCommandOutput,
|
294
|
+
} from "./commands/StartResourceScanCommand";
|
255
295
|
import {
|
256
296
|
StopStackSetOperationCommandInput,
|
257
297
|
StopStackSetOperationCommandOutput,
|
@@ -260,6 +300,10 @@ import {
|
|
260
300
|
TestTypeCommandInput,
|
261
301
|
TestTypeCommandOutput,
|
262
302
|
} from "./commands/TestTypeCommand";
|
303
|
+
import {
|
304
|
+
UpdateGeneratedTemplateCommandInput,
|
305
|
+
UpdateGeneratedTemplateCommandOutput,
|
306
|
+
} from "./commands/UpdateGeneratedTemplateCommand";
|
263
307
|
import {
|
264
308
|
UpdateStackCommandInput,
|
265
309
|
UpdateStackCommandOutput,
|
@@ -359,6 +403,19 @@ export interface CloudFormation {
|
|
359
403
|
options: __HttpHandlerOptions,
|
360
404
|
cb: (err: any, data?: CreateChangeSetCommandOutput) => void
|
361
405
|
): void;
|
406
|
+
createGeneratedTemplate(
|
407
|
+
args: CreateGeneratedTemplateCommandInput,
|
408
|
+
options?: __HttpHandlerOptions
|
409
|
+
): Promise<CreateGeneratedTemplateCommandOutput>;
|
410
|
+
createGeneratedTemplate(
|
411
|
+
args: CreateGeneratedTemplateCommandInput,
|
412
|
+
cb: (err: any, data?: CreateGeneratedTemplateCommandOutput) => void
|
413
|
+
): void;
|
414
|
+
createGeneratedTemplate(
|
415
|
+
args: CreateGeneratedTemplateCommandInput,
|
416
|
+
options: __HttpHandlerOptions,
|
417
|
+
cb: (err: any, data?: CreateGeneratedTemplateCommandOutput) => void
|
418
|
+
): void;
|
362
419
|
createStack(
|
363
420
|
args: CreateStackCommandInput,
|
364
421
|
options?: __HttpHandlerOptions
|
@@ -437,6 +494,19 @@ export interface CloudFormation {
|
|
437
494
|
options: __HttpHandlerOptions,
|
438
495
|
cb: (err: any, data?: DeleteChangeSetCommandOutput) => void
|
439
496
|
): void;
|
497
|
+
deleteGeneratedTemplate(
|
498
|
+
args: DeleteGeneratedTemplateCommandInput,
|
499
|
+
options?: __HttpHandlerOptions
|
500
|
+
): Promise<DeleteGeneratedTemplateCommandOutput>;
|
501
|
+
deleteGeneratedTemplate(
|
502
|
+
args: DeleteGeneratedTemplateCommandInput,
|
503
|
+
cb: (err: any, data?: DeleteGeneratedTemplateCommandOutput) => void
|
504
|
+
): void;
|
505
|
+
deleteGeneratedTemplate(
|
506
|
+
args: DeleteGeneratedTemplateCommandInput,
|
507
|
+
options: __HttpHandlerOptions,
|
508
|
+
cb: (err: any, data?: DeleteGeneratedTemplateCommandOutput) => void
|
509
|
+
): void;
|
440
510
|
deleteStack(
|
441
511
|
args: DeleteStackCommandInput,
|
442
512
|
options?: __HttpHandlerOptions
|
@@ -528,6 +598,19 @@ export interface CloudFormation {
|
|
528
598
|
options: __HttpHandlerOptions,
|
529
599
|
cb: (err: any, data?: DescribeChangeSetHooksCommandOutput) => void
|
530
600
|
): void;
|
601
|
+
describeGeneratedTemplate(
|
602
|
+
args: DescribeGeneratedTemplateCommandInput,
|
603
|
+
options?: __HttpHandlerOptions
|
604
|
+
): Promise<DescribeGeneratedTemplateCommandOutput>;
|
605
|
+
describeGeneratedTemplate(
|
606
|
+
args: DescribeGeneratedTemplateCommandInput,
|
607
|
+
cb: (err: any, data?: DescribeGeneratedTemplateCommandOutput) => void
|
608
|
+
): void;
|
609
|
+
describeGeneratedTemplate(
|
610
|
+
args: DescribeGeneratedTemplateCommandInput,
|
611
|
+
options: __HttpHandlerOptions,
|
612
|
+
cb: (err: any, data?: DescribeGeneratedTemplateCommandOutput) => void
|
613
|
+
): void;
|
531
614
|
describeOrganizationsAccess(
|
532
615
|
args: DescribeOrganizationsAccessCommandInput,
|
533
616
|
options?: __HttpHandlerOptions
|
@@ -554,6 +637,19 @@ export interface CloudFormation {
|
|
554
637
|
options: __HttpHandlerOptions,
|
555
638
|
cb: (err: any, data?: DescribePublisherCommandOutput) => void
|
556
639
|
): void;
|
640
|
+
describeResourceScan(
|
641
|
+
args: DescribeResourceScanCommandInput,
|
642
|
+
options?: __HttpHandlerOptions
|
643
|
+
): Promise<DescribeResourceScanCommandOutput>;
|
644
|
+
describeResourceScan(
|
645
|
+
args: DescribeResourceScanCommandInput,
|
646
|
+
cb: (err: any, data?: DescribeResourceScanCommandOutput) => void
|
647
|
+
): void;
|
648
|
+
describeResourceScan(
|
649
|
+
args: DescribeResourceScanCommandInput,
|
650
|
+
options: __HttpHandlerOptions,
|
651
|
+
cb: (err: any, data?: DescribeResourceScanCommandOutput) => void
|
652
|
+
): void;
|
557
653
|
describeStackDriftDetectionStatus(
|
558
654
|
args: DescribeStackDriftDetectionStatusCommandInput,
|
559
655
|
options?: __HttpHandlerOptions
|
@@ -768,6 +864,19 @@ export interface CloudFormation {
|
|
768
864
|
options: __HttpHandlerOptions,
|
769
865
|
cb: (err: any, data?: ExecuteChangeSetCommandOutput) => void
|
770
866
|
): void;
|
867
|
+
getGeneratedTemplate(
|
868
|
+
args: GetGeneratedTemplateCommandInput,
|
869
|
+
options?: __HttpHandlerOptions
|
870
|
+
): Promise<GetGeneratedTemplateCommandOutput>;
|
871
|
+
getGeneratedTemplate(
|
872
|
+
args: GetGeneratedTemplateCommandInput,
|
873
|
+
cb: (err: any, data?: GetGeneratedTemplateCommandOutput) => void
|
874
|
+
): void;
|
875
|
+
getGeneratedTemplate(
|
876
|
+
args: GetGeneratedTemplateCommandInput,
|
877
|
+
options: __HttpHandlerOptions,
|
878
|
+
cb: (err: any, data?: GetGeneratedTemplateCommandOutput) => void
|
879
|
+
): void;
|
771
880
|
getStackPolicy(
|
772
881
|
args: GetStackPolicyCommandInput,
|
773
882
|
options?: __HttpHandlerOptions
|
@@ -846,6 +955,19 @@ export interface CloudFormation {
|
|
846
955
|
options: __HttpHandlerOptions,
|
847
956
|
cb: (err: any, data?: ListExportsCommandOutput) => void
|
848
957
|
): void;
|
958
|
+
listGeneratedTemplates(
|
959
|
+
args: ListGeneratedTemplatesCommandInput,
|
960
|
+
options?: __HttpHandlerOptions
|
961
|
+
): Promise<ListGeneratedTemplatesCommandOutput>;
|
962
|
+
listGeneratedTemplates(
|
963
|
+
args: ListGeneratedTemplatesCommandInput,
|
964
|
+
cb: (err: any, data?: ListGeneratedTemplatesCommandOutput) => void
|
965
|
+
): void;
|
966
|
+
listGeneratedTemplates(
|
967
|
+
args: ListGeneratedTemplatesCommandInput,
|
968
|
+
options: __HttpHandlerOptions,
|
969
|
+
cb: (err: any, data?: ListGeneratedTemplatesCommandOutput) => void
|
970
|
+
): void;
|
849
971
|
listImports(
|
850
972
|
args: ListImportsCommandInput,
|
851
973
|
options?: __HttpHandlerOptions
|
@@ -859,6 +981,45 @@ export interface CloudFormation {
|
|
859
981
|
options: __HttpHandlerOptions,
|
860
982
|
cb: (err: any, data?: ListImportsCommandOutput) => void
|
861
983
|
): void;
|
984
|
+
listResourceScanRelatedResources(
|
985
|
+
args: ListResourceScanRelatedResourcesCommandInput,
|
986
|
+
options?: __HttpHandlerOptions
|
987
|
+
): Promise<ListResourceScanRelatedResourcesCommandOutput>;
|
988
|
+
listResourceScanRelatedResources(
|
989
|
+
args: ListResourceScanRelatedResourcesCommandInput,
|
990
|
+
cb: (err: any, data?: ListResourceScanRelatedResourcesCommandOutput) => void
|
991
|
+
): void;
|
992
|
+
listResourceScanRelatedResources(
|
993
|
+
args: ListResourceScanRelatedResourcesCommandInput,
|
994
|
+
options: __HttpHandlerOptions,
|
995
|
+
cb: (err: any, data?: ListResourceScanRelatedResourcesCommandOutput) => void
|
996
|
+
): void;
|
997
|
+
listResourceScanResources(
|
998
|
+
args: ListResourceScanResourcesCommandInput,
|
999
|
+
options?: __HttpHandlerOptions
|
1000
|
+
): Promise<ListResourceScanResourcesCommandOutput>;
|
1001
|
+
listResourceScanResources(
|
1002
|
+
args: ListResourceScanResourcesCommandInput,
|
1003
|
+
cb: (err: any, data?: ListResourceScanResourcesCommandOutput) => void
|
1004
|
+
): void;
|
1005
|
+
listResourceScanResources(
|
1006
|
+
args: ListResourceScanResourcesCommandInput,
|
1007
|
+
options: __HttpHandlerOptions,
|
1008
|
+
cb: (err: any, data?: ListResourceScanResourcesCommandOutput) => void
|
1009
|
+
): void;
|
1010
|
+
listResourceScans(
|
1011
|
+
args: ListResourceScansCommandInput,
|
1012
|
+
options?: __HttpHandlerOptions
|
1013
|
+
): Promise<ListResourceScansCommandOutput>;
|
1014
|
+
listResourceScans(
|
1015
|
+
args: ListResourceScansCommandInput,
|
1016
|
+
cb: (err: any, data?: ListResourceScansCommandOutput) => void
|
1017
|
+
): void;
|
1018
|
+
listResourceScans(
|
1019
|
+
args: ListResourceScansCommandInput,
|
1020
|
+
options: __HttpHandlerOptions,
|
1021
|
+
cb: (err: any, data?: ListResourceScansCommandOutput) => void
|
1022
|
+
): void;
|
862
1023
|
listStackInstanceResourceDrifts(
|
863
1024
|
args: ListStackInstanceResourceDriftsCommandInput,
|
864
1025
|
options?: __HttpHandlerOptions
|
@@ -1106,6 +1267,19 @@ export interface CloudFormation {
|
|
1106
1267
|
options: __HttpHandlerOptions,
|
1107
1268
|
cb: (err: any, data?: SignalResourceCommandOutput) => void
|
1108
1269
|
): void;
|
1270
|
+
startResourceScan(
|
1271
|
+
args: StartResourceScanCommandInput,
|
1272
|
+
options?: __HttpHandlerOptions
|
1273
|
+
): Promise<StartResourceScanCommandOutput>;
|
1274
|
+
startResourceScan(
|
1275
|
+
args: StartResourceScanCommandInput,
|
1276
|
+
cb: (err: any, data?: StartResourceScanCommandOutput) => void
|
1277
|
+
): void;
|
1278
|
+
startResourceScan(
|
1279
|
+
args: StartResourceScanCommandInput,
|
1280
|
+
options: __HttpHandlerOptions,
|
1281
|
+
cb: (err: any, data?: StartResourceScanCommandOutput) => void
|
1282
|
+
): void;
|
1109
1283
|
stopStackSetOperation(
|
1110
1284
|
args: StopStackSetOperationCommandInput,
|
1111
1285
|
options?: __HttpHandlerOptions
|
@@ -1132,6 +1306,19 @@ export interface CloudFormation {
|
|
1132
1306
|
options: __HttpHandlerOptions,
|
1133
1307
|
cb: (err: any, data?: TestTypeCommandOutput) => void
|
1134
1308
|
): void;
|
1309
|
+
updateGeneratedTemplate(
|
1310
|
+
args: UpdateGeneratedTemplateCommandInput,
|
1311
|
+
options?: __HttpHandlerOptions
|
1312
|
+
): Promise<UpdateGeneratedTemplateCommandOutput>;
|
1313
|
+
updateGeneratedTemplate(
|
1314
|
+
args: UpdateGeneratedTemplateCommandInput,
|
1315
|
+
cb: (err: any, data?: UpdateGeneratedTemplateCommandOutput) => void
|
1316
|
+
): void;
|
1317
|
+
updateGeneratedTemplate(
|
1318
|
+
args: UpdateGeneratedTemplateCommandInput,
|
1319
|
+
options: __HttpHandlerOptions,
|
1320
|
+
cb: (err: any, data?: UpdateGeneratedTemplateCommandOutput) => void
|
1321
|
+
): void;
|
1135
1322
|
updateStack(
|
1136
1323
|
args: UpdateStackCommandInput,
|
1137
1324
|
options?: __HttpHandlerOptions
|