@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 @@
|
|
1
|
+
module.exports = require("../index.js");
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports = require("../index.js");
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports = require("../index.js");
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports = require("../index.js");
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports = require("../index.js");
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
4
4
|
const tslib_1 = require("tslib");
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
6
|
-
const client_sts_1 = require("@aws-sdk/client-sts");
|
7
6
|
const core_1 = require("@aws-sdk/core");
|
8
7
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
9
8
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
@@ -30,7 +29,7 @@ const getRuntimeConfig = (config) => {
|
|
30
29
|
runtime: "node",
|
31
30
|
defaultsMode,
|
32
31
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
33
|
-
credentialDefaultProvider: config?.credentialDefaultProvider ??
|
32
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
34
33
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
35
34
|
(0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
36
35
|
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
@@ -6,12 +6,14 @@ import { BatchDescribeTypeConfigurationsCommand, } from "./commands/BatchDescrib
|
|
6
6
|
import { CancelUpdateStackCommand, } from "./commands/CancelUpdateStackCommand";
|
7
7
|
import { ContinueUpdateRollbackCommand, } from "./commands/ContinueUpdateRollbackCommand";
|
8
8
|
import { CreateChangeSetCommand, } from "./commands/CreateChangeSetCommand";
|
9
|
+
import { CreateGeneratedTemplateCommand, } from "./commands/CreateGeneratedTemplateCommand";
|
9
10
|
import { CreateStackCommand } from "./commands/CreateStackCommand";
|
10
11
|
import { CreateStackInstancesCommand, } from "./commands/CreateStackInstancesCommand";
|
11
12
|
import { CreateStackSetCommand, } from "./commands/CreateStackSetCommand";
|
12
13
|
import { DeactivateOrganizationsAccessCommand, } from "./commands/DeactivateOrganizationsAccessCommand";
|
13
14
|
import { DeactivateTypeCommand, } from "./commands/DeactivateTypeCommand";
|
14
15
|
import { DeleteChangeSetCommand, } from "./commands/DeleteChangeSetCommand";
|
16
|
+
import { DeleteGeneratedTemplateCommand, } from "./commands/DeleteGeneratedTemplateCommand";
|
15
17
|
import { DeleteStackCommand } from "./commands/DeleteStackCommand";
|
16
18
|
import { DeleteStackInstancesCommand, } from "./commands/DeleteStackInstancesCommand";
|
17
19
|
import { DeleteStackSetCommand, } from "./commands/DeleteStackSetCommand";
|
@@ -19,8 +21,10 @@ import { DeregisterTypeCommand, } from "./commands/DeregisterTypeCommand";
|
|
19
21
|
import { DescribeAccountLimitsCommand, } from "./commands/DescribeAccountLimitsCommand";
|
20
22
|
import { DescribeChangeSetCommand, } from "./commands/DescribeChangeSetCommand";
|
21
23
|
import { DescribeChangeSetHooksCommand, } from "./commands/DescribeChangeSetHooksCommand";
|
24
|
+
import { DescribeGeneratedTemplateCommand, } from "./commands/DescribeGeneratedTemplateCommand";
|
22
25
|
import { DescribeOrganizationsAccessCommand, } from "./commands/DescribeOrganizationsAccessCommand";
|
23
26
|
import { DescribePublisherCommand, } from "./commands/DescribePublisherCommand";
|
27
|
+
import { DescribeResourceScanCommand, } from "./commands/DescribeResourceScanCommand";
|
24
28
|
import { DescribeStackDriftDetectionStatusCommand, } from "./commands/DescribeStackDriftDetectionStatusCommand";
|
25
29
|
import { DescribeStackEventsCommand, } from "./commands/DescribeStackEventsCommand";
|
26
30
|
import { DescribeStackInstanceCommand, } from "./commands/DescribeStackInstanceCommand";
|
@@ -37,13 +41,18 @@ import { DetectStackResourceDriftCommand, } from "./commands/DetectStackResource
|
|
37
41
|
import { DetectStackSetDriftCommand, } from "./commands/DetectStackSetDriftCommand";
|
38
42
|
import { EstimateTemplateCostCommand, } from "./commands/EstimateTemplateCostCommand";
|
39
43
|
import { ExecuteChangeSetCommand, } from "./commands/ExecuteChangeSetCommand";
|
44
|
+
import { GetGeneratedTemplateCommand, } from "./commands/GetGeneratedTemplateCommand";
|
40
45
|
import { GetStackPolicyCommand, } from "./commands/GetStackPolicyCommand";
|
41
46
|
import { GetTemplateCommand } from "./commands/GetTemplateCommand";
|
42
47
|
import { GetTemplateSummaryCommand, } from "./commands/GetTemplateSummaryCommand";
|
43
48
|
import { ImportStacksToStackSetCommand, } from "./commands/ImportStacksToStackSetCommand";
|
44
49
|
import { ListChangeSetsCommand, } from "./commands/ListChangeSetsCommand";
|
45
50
|
import { ListExportsCommand } from "./commands/ListExportsCommand";
|
51
|
+
import { ListGeneratedTemplatesCommand, } from "./commands/ListGeneratedTemplatesCommand";
|
46
52
|
import { ListImportsCommand } from "./commands/ListImportsCommand";
|
53
|
+
import { ListResourceScanRelatedResourcesCommand, } from "./commands/ListResourceScanRelatedResourcesCommand";
|
54
|
+
import { ListResourceScanResourcesCommand, } from "./commands/ListResourceScanResourcesCommand";
|
55
|
+
import { ListResourceScansCommand, } from "./commands/ListResourceScansCommand";
|
47
56
|
import { ListStackInstanceResourceDriftsCommand, } from "./commands/ListStackInstanceResourceDriftsCommand";
|
48
57
|
import { ListStackInstancesCommand, } from "./commands/ListStackInstancesCommand";
|
49
58
|
import { ListStackResourcesCommand, } from "./commands/ListStackResourcesCommand";
|
@@ -63,8 +72,10 @@ import { SetStackPolicyCommand, } from "./commands/SetStackPolicyCommand";
|
|
63
72
|
import { SetTypeConfigurationCommand, } from "./commands/SetTypeConfigurationCommand";
|
64
73
|
import { SetTypeDefaultVersionCommand, } from "./commands/SetTypeDefaultVersionCommand";
|
65
74
|
import { SignalResourceCommand, } from "./commands/SignalResourceCommand";
|
75
|
+
import { StartResourceScanCommand, } from "./commands/StartResourceScanCommand";
|
66
76
|
import { StopStackSetOperationCommand, } from "./commands/StopStackSetOperationCommand";
|
67
77
|
import { TestTypeCommand } from "./commands/TestTypeCommand";
|
78
|
+
import { UpdateGeneratedTemplateCommand, } from "./commands/UpdateGeneratedTemplateCommand";
|
68
79
|
import { UpdateStackCommand } from "./commands/UpdateStackCommand";
|
69
80
|
import { UpdateStackInstancesCommand, } from "./commands/UpdateStackInstancesCommand";
|
70
81
|
import { UpdateStackSetCommand, } from "./commands/UpdateStackSetCommand";
|
@@ -77,12 +88,14 @@ const commands = {
|
|
77
88
|
CancelUpdateStackCommand,
|
78
89
|
ContinueUpdateRollbackCommand,
|
79
90
|
CreateChangeSetCommand,
|
91
|
+
CreateGeneratedTemplateCommand,
|
80
92
|
CreateStackCommand,
|
81
93
|
CreateStackInstancesCommand,
|
82
94
|
CreateStackSetCommand,
|
83
95
|
DeactivateOrganizationsAccessCommand,
|
84
96
|
DeactivateTypeCommand,
|
85
97
|
DeleteChangeSetCommand,
|
98
|
+
DeleteGeneratedTemplateCommand,
|
86
99
|
DeleteStackCommand,
|
87
100
|
DeleteStackInstancesCommand,
|
88
101
|
DeleteStackSetCommand,
|
@@ -90,8 +103,10 @@ const commands = {
|
|
90
103
|
DescribeAccountLimitsCommand,
|
91
104
|
DescribeChangeSetCommand,
|
92
105
|
DescribeChangeSetHooksCommand,
|
106
|
+
DescribeGeneratedTemplateCommand,
|
93
107
|
DescribeOrganizationsAccessCommand,
|
94
108
|
DescribePublisherCommand,
|
109
|
+
DescribeResourceScanCommand,
|
95
110
|
DescribeStackDriftDetectionStatusCommand,
|
96
111
|
DescribeStackEventsCommand,
|
97
112
|
DescribeStackInstanceCommand,
|
@@ -108,13 +123,18 @@ const commands = {
|
|
108
123
|
DetectStackSetDriftCommand,
|
109
124
|
EstimateTemplateCostCommand,
|
110
125
|
ExecuteChangeSetCommand,
|
126
|
+
GetGeneratedTemplateCommand,
|
111
127
|
GetStackPolicyCommand,
|
112
128
|
GetTemplateCommand,
|
113
129
|
GetTemplateSummaryCommand,
|
114
130
|
ImportStacksToStackSetCommand,
|
115
131
|
ListChangeSetsCommand,
|
116
132
|
ListExportsCommand,
|
133
|
+
ListGeneratedTemplatesCommand,
|
117
134
|
ListImportsCommand,
|
135
|
+
ListResourceScanRelatedResourcesCommand,
|
136
|
+
ListResourceScanResourcesCommand,
|
137
|
+
ListResourceScansCommand,
|
118
138
|
ListStackInstanceResourceDriftsCommand,
|
119
139
|
ListStackInstancesCommand,
|
120
140
|
ListStackResourcesCommand,
|
@@ -134,8 +154,10 @@ const commands = {
|
|
134
154
|
SetTypeConfigurationCommand,
|
135
155
|
SetTypeDefaultVersionCommand,
|
136
156
|
SignalResourceCommand,
|
157
|
+
StartResourceScanCommand,
|
137
158
|
StopStackSetOperationCommand,
|
138
159
|
TestTypeCommand,
|
160
|
+
UpdateGeneratedTemplateCommand,
|
139
161
|
UpdateStackCommand,
|
140
162
|
UpdateStackInstancesCommand,
|
141
163
|
UpdateStackSetCommand,
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_CreateGeneratedTemplateCommand, se_CreateGeneratedTemplateCommand } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class CreateGeneratedTemplateCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "CreateGeneratedTemplate", {})
|
19
|
+
.n("CloudFormationClient", "CreateGeneratedTemplateCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_CreateGeneratedTemplateCommand)
|
22
|
+
.de(de_CreateGeneratedTemplateCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_DeleteGeneratedTemplateCommand, se_DeleteGeneratedTemplateCommand } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class DeleteGeneratedTemplateCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "DeleteGeneratedTemplate", {})
|
19
|
+
.n("CloudFormationClient", "DeleteGeneratedTemplateCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_DeleteGeneratedTemplateCommand)
|
22
|
+
.de(de_DeleteGeneratedTemplateCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_DescribeGeneratedTemplateCommand, se_DescribeGeneratedTemplateCommand } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class DescribeGeneratedTemplateCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "DescribeGeneratedTemplate", {})
|
19
|
+
.n("CloudFormationClient", "DescribeGeneratedTemplateCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_DescribeGeneratedTemplateCommand)
|
22
|
+
.de(de_DescribeGeneratedTemplateCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeResourceScanCommand.js
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_DescribeResourceScanCommand, se_DescribeResourceScanCommand } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class DescribeResourceScanCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "DescribeResourceScan", {})
|
19
|
+
.n("CloudFormationClient", "DescribeResourceScanCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_DescribeResourceScanCommand)
|
22
|
+
.de(de_DescribeResourceScanCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetGeneratedTemplateCommand.js
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_GetGeneratedTemplateCommand, se_GetGeneratedTemplateCommand } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class GetGeneratedTemplateCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "GetGeneratedTemplate", {})
|
19
|
+
.n("CloudFormationClient", "GetGeneratedTemplateCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_GetGeneratedTemplateCommand)
|
22
|
+
.de(de_GetGeneratedTemplateCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_ListGeneratedTemplatesCommand, se_ListGeneratedTemplatesCommand } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class ListGeneratedTemplatesCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "ListGeneratedTemplates", {})
|
19
|
+
.n("CloudFormationClient", "ListGeneratedTemplatesCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_ListGeneratedTemplatesCommand)
|
22
|
+
.de(de_ListGeneratedTemplatesCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_ListResourceScanRelatedResourcesCommand, se_ListResourceScanRelatedResourcesCommand, } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class ListResourceScanRelatedResourcesCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "ListResourceScanRelatedResources", {})
|
19
|
+
.n("CloudFormationClient", "ListResourceScanRelatedResourcesCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_ListResourceScanRelatedResourcesCommand)
|
22
|
+
.de(de_ListResourceScanRelatedResourcesCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_ListResourceScanResourcesCommand, se_ListResourceScanResourcesCommand } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class ListResourceScanResourcesCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "ListResourceScanResources", {})
|
19
|
+
.n("CloudFormationClient", "ListResourceScanResourcesCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_ListResourceScanResourcesCommand)
|
22
|
+
.de(de_ListResourceScanResourcesCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScansCommand.js
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_ListResourceScansCommand, se_ListResourceScansCommand } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class ListResourceScansCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "ListResourceScans", {})
|
19
|
+
.n("CloudFormationClient", "ListResourceScansCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_ListResourceScansCommand)
|
22
|
+
.de(de_ListResourceScansCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StartResourceScanCommand.js
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_StartResourceScanCommand, se_StartResourceScanCommand } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class StartResourceScanCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "StartResourceScan", {})
|
19
|
+
.n("CloudFormationClient", "StartResourceScanCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_StartResourceScanCommand)
|
22
|
+
.de(de_StartResourceScanCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
5
|
+
import { de_UpdateGeneratedTemplateCommand, se_UpdateGeneratedTemplateCommand } from "../protocols/Aws_query";
|
6
|
+
export { $Command };
|
7
|
+
export class UpdateGeneratedTemplateCommand extends $Command
|
8
|
+
.classBuilder()
|
9
|
+
.ep({
|
10
|
+
...commonParams,
|
11
|
+
})
|
12
|
+
.m(function (Command, cs, config, o) {
|
13
|
+
return [
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
16
|
+
];
|
17
|
+
})
|
18
|
+
.s("CloudFormation", "UpdateGeneratedTemplate", {})
|
19
|
+
.n("CloudFormationClient", "UpdateGeneratedTemplateCommand")
|
20
|
+
.f(void 0, void 0)
|
21
|
+
.ser(se_UpdateGeneratedTemplateCommand)
|
22
|
+
.de(de_UpdateGeneratedTemplateCommand)
|
23
|
+
.build() {
|
24
|
+
}
|
@@ -4,12 +4,14 @@ export * from "./BatchDescribeTypeConfigurationsCommand";
|
|
4
4
|
export * from "./CancelUpdateStackCommand";
|
5
5
|
export * from "./ContinueUpdateRollbackCommand";
|
6
6
|
export * from "./CreateChangeSetCommand";
|
7
|
+
export * from "./CreateGeneratedTemplateCommand";
|
7
8
|
export * from "./CreateStackCommand";
|
8
9
|
export * from "./CreateStackInstancesCommand";
|
9
10
|
export * from "./CreateStackSetCommand";
|
10
11
|
export * from "./DeactivateOrganizationsAccessCommand";
|
11
12
|
export * from "./DeactivateTypeCommand";
|
12
13
|
export * from "./DeleteChangeSetCommand";
|
14
|
+
export * from "./DeleteGeneratedTemplateCommand";
|
13
15
|
export * from "./DeleteStackCommand";
|
14
16
|
export * from "./DeleteStackInstancesCommand";
|
15
17
|
export * from "./DeleteStackSetCommand";
|
@@ -17,8 +19,10 @@ export * from "./DeregisterTypeCommand";
|
|
17
19
|
export * from "./DescribeAccountLimitsCommand";
|
18
20
|
export * from "./DescribeChangeSetCommand";
|
19
21
|
export * from "./DescribeChangeSetHooksCommand";
|
22
|
+
export * from "./DescribeGeneratedTemplateCommand";
|
20
23
|
export * from "./DescribeOrganizationsAccessCommand";
|
21
24
|
export * from "./DescribePublisherCommand";
|
25
|
+
export * from "./DescribeResourceScanCommand";
|
22
26
|
export * from "./DescribeStackDriftDetectionStatusCommand";
|
23
27
|
export * from "./DescribeStackEventsCommand";
|
24
28
|
export * from "./DescribeStackInstanceCommand";
|
@@ -35,13 +39,18 @@ export * from "./DetectStackResourceDriftCommand";
|
|
35
39
|
export * from "./DetectStackSetDriftCommand";
|
36
40
|
export * from "./EstimateTemplateCostCommand";
|
37
41
|
export * from "./ExecuteChangeSetCommand";
|
42
|
+
export * from "./GetGeneratedTemplateCommand";
|
38
43
|
export * from "./GetStackPolicyCommand";
|
39
44
|
export * from "./GetTemplateCommand";
|
40
45
|
export * from "./GetTemplateSummaryCommand";
|
41
46
|
export * from "./ImportStacksToStackSetCommand";
|
42
47
|
export * from "./ListChangeSetsCommand";
|
43
48
|
export * from "./ListExportsCommand";
|
49
|
+
export * from "./ListGeneratedTemplatesCommand";
|
44
50
|
export * from "./ListImportsCommand";
|
51
|
+
export * from "./ListResourceScanRelatedResourcesCommand";
|
52
|
+
export * from "./ListResourceScanResourcesCommand";
|
53
|
+
export * from "./ListResourceScansCommand";
|
45
54
|
export * from "./ListStackInstanceResourceDriftsCommand";
|
46
55
|
export * from "./ListStackInstancesCommand";
|
47
56
|
export * from "./ListStackResourcesCommand";
|
@@ -61,8 +70,10 @@ export * from "./SetStackPolicyCommand";
|
|
61
70
|
export * from "./SetTypeConfigurationCommand";
|
62
71
|
export * from "./SetTypeDefaultVersionCommand";
|
63
72
|
export * from "./SignalResourceCommand";
|
73
|
+
export * from "./StartResourceScanCommand";
|
64
74
|
export * from "./StopStackSetOperationCommand";
|
65
75
|
export * from "./TestTypeCommand";
|
76
|
+
export * from "./UpdateGeneratedTemplateCommand";
|
66
77
|
export * from "./UpdateStackCommand";
|
67
78
|
export * from "./UpdateStackInstancesCommand";
|
68
79
|
export * from "./UpdateStackSetCommand";
|
@@ -247,6 +247,27 @@ export class LimitExceededException extends __BaseException {
|
|
247
247
|
this.Message = opts.Message;
|
248
248
|
}
|
249
249
|
}
|
250
|
+
export class ConcurrentResourcesLimitExceededException extends __BaseException {
|
251
|
+
constructor(opts) {
|
252
|
+
super({
|
253
|
+
name: "ConcurrentResourcesLimitExceededException",
|
254
|
+
$fault: "client",
|
255
|
+
...opts,
|
256
|
+
});
|
257
|
+
this.name = "ConcurrentResourcesLimitExceededException";
|
258
|
+
this.$fault = "client";
|
259
|
+
Object.setPrototypeOf(this, ConcurrentResourcesLimitExceededException.prototype);
|
260
|
+
this.Message = opts.Message;
|
261
|
+
}
|
262
|
+
}
|
263
|
+
export const GeneratedTemplateDeletionPolicy = {
|
264
|
+
DELETE: "DELETE",
|
265
|
+
RETAIN: "RETAIN",
|
266
|
+
};
|
267
|
+
export const GeneratedTemplateUpdateReplacePolicy = {
|
268
|
+
DELETE: "DELETE",
|
269
|
+
RETAIN: "RETAIN",
|
270
|
+
};
|
250
271
|
export const OnFailure = {
|
251
272
|
DELETE: "DELETE",
|
252
273
|
DO_NOTHING: "DO_NOTHING",
|
@@ -355,6 +376,19 @@ export class InvalidChangeSetStatusException extends __BaseException {
|
|
355
376
|
this.Message = opts.Message;
|
356
377
|
}
|
357
378
|
}
|
379
|
+
export class GeneratedTemplateNotFoundException extends __BaseException {
|
380
|
+
constructor(opts) {
|
381
|
+
super({
|
382
|
+
name: "GeneratedTemplateNotFoundException",
|
383
|
+
$fault: "client",
|
384
|
+
...opts,
|
385
|
+
});
|
386
|
+
this.name = "GeneratedTemplateNotFoundException";
|
387
|
+
this.$fault = "client";
|
388
|
+
Object.setPrototypeOf(this, GeneratedTemplateNotFoundException.prototype);
|
389
|
+
this.Message = opts.Message;
|
390
|
+
}
|
391
|
+
}
|
358
392
|
export class StackSetNotEmptyException extends __BaseException {
|
359
393
|
constructor(opts) {
|
360
394
|
super({
|
@@ -373,6 +407,27 @@ export const RegistryType = {
|
|
373
407
|
MODULE: "MODULE",
|
374
408
|
RESOURCE: "RESOURCE",
|
375
409
|
};
|
410
|
+
export const GeneratedTemplateResourceStatus = {
|
411
|
+
COMPLETE: "COMPLETE",
|
412
|
+
FAILED: "FAILED",
|
413
|
+
IN_PROGRESS: "IN_PROGRESS",
|
414
|
+
PENDING: "PENDING",
|
415
|
+
};
|
416
|
+
export const WarningType = {
|
417
|
+
MUTUALLY_EXCLUSIVE_PROPERTIES: "MUTUALLY_EXCLUSIVE_PROPERTIES",
|
418
|
+
MUTUALLY_EXCLUSIVE_TYPES: "MUTUALLY_EXCLUSIVE_TYPES",
|
419
|
+
UNSUPPORTED_PROPERTIES: "UNSUPPORTED_PROPERTIES",
|
420
|
+
};
|
421
|
+
export const GeneratedTemplateStatus = {
|
422
|
+
COMPLETE: "COMPLETE",
|
423
|
+
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
424
|
+
CREATE_PENDING: "CREATE_PENDING",
|
425
|
+
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
|
426
|
+
DELETE_PENDING: "DELETE_PENDING",
|
427
|
+
FAILED: "FAILED",
|
428
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
429
|
+
UPDATE_PENDING: "UPDATE_PENDING",
|
430
|
+
};
|
376
431
|
export const OrganizationStatus = {
|
377
432
|
DISABLED: "DISABLED",
|
378
433
|
DISABLED_PERMANENTLY: "DISABLED_PERMANENTLY",
|
@@ -387,6 +442,25 @@ export const PublisherStatus = {
|
|
387
442
|
UNVERIFIED: "UNVERIFIED",
|
388
443
|
VERIFIED: "VERIFIED",
|
389
444
|
};
|
445
|
+
export const ResourceScanStatus = {
|
446
|
+
COMPLETE: "COMPLETE",
|
447
|
+
EXPIRED: "EXPIRED",
|
448
|
+
FAILED: "FAILED",
|
449
|
+
IN_PROGRESS: "IN_PROGRESS",
|
450
|
+
};
|
451
|
+
export class ResourceScanNotFoundException extends __BaseException {
|
452
|
+
constructor(opts) {
|
453
|
+
super({
|
454
|
+
name: "ResourceScanNotFoundException",
|
455
|
+
$fault: "client",
|
456
|
+
...opts,
|
457
|
+
});
|
458
|
+
this.name = "ResourceScanNotFoundException";
|
459
|
+
this.$fault = "client";
|
460
|
+
Object.setPrototypeOf(this, ResourceScanNotFoundException.prototype);
|
461
|
+
this.Message = opts.Message;
|
462
|
+
}
|
463
|
+
}
|
390
464
|
export const StackDriftDetectionStatus = {
|
391
465
|
DETECTION_COMPLETE: "DETECTION_COMPLETE",
|
392
466
|
DETECTION_FAILED: "DETECTION_FAILED",
|
@@ -545,6 +619,10 @@ export const RegistrationStatus = {
|
|
545
619
|
FAILED: "FAILED",
|
546
620
|
IN_PROGRESS: "IN_PROGRESS",
|
547
621
|
};
|
622
|
+
export const TemplateFormat = {
|
623
|
+
JSON: "JSON",
|
624
|
+
YAML: "YAML",
|
625
|
+
};
|
548
626
|
export const TemplateStage = {
|
549
627
|
Original: "Original",
|
550
628
|
Processed: "Processed",
|
@@ -562,6 +640,19 @@ export class StackNotFoundException extends __BaseException {
|
|
562
640
|
this.Message = opts.Message;
|
563
641
|
}
|
564
642
|
}
|
643
|
+
export class ResourceScanInProgressException extends __BaseException {
|
644
|
+
constructor(opts) {
|
645
|
+
super({
|
646
|
+
name: "ResourceScanInProgressException",
|
647
|
+
$fault: "client",
|
648
|
+
...opts,
|
649
|
+
});
|
650
|
+
this.name = "ResourceScanInProgressException";
|
651
|
+
this.$fault = "client";
|
652
|
+
Object.setPrototypeOf(this, ResourceScanInProgressException.prototype);
|
653
|
+
this.Message = opts.Message;
|
654
|
+
}
|
655
|
+
}
|
565
656
|
export const StackInstanceFilterName = {
|
566
657
|
DETAILED_STATUS: "DETAILED_STATUS",
|
567
658
|
DRIFT_STATUS: "DRIFT_STATUS",
|
@@ -634,3 +725,16 @@ export const ResourceSignalStatus = {
|
|
634
725
|
FAILURE: "FAILURE",
|
635
726
|
SUCCESS: "SUCCESS",
|
636
727
|
};
|
728
|
+
export class ResourceScanLimitExceededException extends __BaseException {
|
729
|
+
constructor(opts) {
|
730
|
+
super({
|
731
|
+
name: "ResourceScanLimitExceededException",
|
732
|
+
$fault: "client",
|
733
|
+
...opts,
|
734
|
+
});
|
735
|
+
this.name = "ResourceScanLimitExceededException";
|
736
|
+
this.$fault = "client";
|
737
|
+
Object.setPrototypeOf(this, ResourceScanLimitExceededException.prototype);
|
738
|
+
this.Message = opts.Message;
|
739
|
+
}
|
740
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
2
|
+
import { CloudFormationClient } from "../CloudFormationClient";
|
3
|
+
import { ListGeneratedTemplatesCommand, } from "../commands/ListGeneratedTemplatesCommand";
|
4
|
+
export const paginateListGeneratedTemplates = createPaginator(CloudFormationClient, ListGeneratedTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
2
|
+
import { CloudFormationClient } from "../CloudFormationClient";
|
3
|
+
import { ListResourceScanRelatedResourcesCommand, } from "../commands/ListResourceScanRelatedResourcesCommand";
|
4
|
+
export const paginateListResourceScanRelatedResources = createPaginator(CloudFormationClient, ListResourceScanRelatedResourcesCommand, "NextToken", "NextToken", "MaxResults");
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
2
|
+
import { CloudFormationClient } from "../CloudFormationClient";
|
3
|
+
import { ListResourceScanResourcesCommand, } from "../commands/ListResourceScanResourcesCommand";
|
4
|
+
export const paginateListResourceScanResources = createPaginator(CloudFormationClient, ListResourceScanResourcesCommand, "NextToken", "NextToken", "MaxResults");
|