@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
package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormationClient.d.ts
CHANGED
|
@@ -69,6 +69,10 @@ import {
|
|
|
69
69
|
CreateChangeSetCommandInput,
|
|
70
70
|
CreateChangeSetCommandOutput,
|
|
71
71
|
} from "./commands/CreateChangeSetCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreateGeneratedTemplateCommandInput,
|
|
74
|
+
CreateGeneratedTemplateCommandOutput,
|
|
75
|
+
} from "./commands/CreateGeneratedTemplateCommand";
|
|
72
76
|
import {
|
|
73
77
|
CreateStackCommandInput,
|
|
74
78
|
CreateStackCommandOutput,
|
|
@@ -93,6 +97,10 @@ import {
|
|
|
93
97
|
DeleteChangeSetCommandInput,
|
|
94
98
|
DeleteChangeSetCommandOutput,
|
|
95
99
|
} from "./commands/DeleteChangeSetCommand";
|
|
100
|
+
import {
|
|
101
|
+
DeleteGeneratedTemplateCommandInput,
|
|
102
|
+
DeleteGeneratedTemplateCommandOutput,
|
|
103
|
+
} from "./commands/DeleteGeneratedTemplateCommand";
|
|
96
104
|
import {
|
|
97
105
|
DeleteStackCommandInput,
|
|
98
106
|
DeleteStackCommandOutput,
|
|
@@ -121,6 +129,10 @@ import {
|
|
|
121
129
|
DescribeChangeSetHooksCommandInput,
|
|
122
130
|
DescribeChangeSetHooksCommandOutput,
|
|
123
131
|
} from "./commands/DescribeChangeSetHooksCommand";
|
|
132
|
+
import {
|
|
133
|
+
DescribeGeneratedTemplateCommandInput,
|
|
134
|
+
DescribeGeneratedTemplateCommandOutput,
|
|
135
|
+
} from "./commands/DescribeGeneratedTemplateCommand";
|
|
124
136
|
import {
|
|
125
137
|
DescribeOrganizationsAccessCommandInput,
|
|
126
138
|
DescribeOrganizationsAccessCommandOutput,
|
|
@@ -129,6 +141,10 @@ import {
|
|
|
129
141
|
DescribePublisherCommandInput,
|
|
130
142
|
DescribePublisherCommandOutput,
|
|
131
143
|
} from "./commands/DescribePublisherCommand";
|
|
144
|
+
import {
|
|
145
|
+
DescribeResourceScanCommandInput,
|
|
146
|
+
DescribeResourceScanCommandOutput,
|
|
147
|
+
} from "./commands/DescribeResourceScanCommand";
|
|
132
148
|
import {
|
|
133
149
|
DescribeStackDriftDetectionStatusCommandInput,
|
|
134
150
|
DescribeStackDriftDetectionStatusCommandOutput,
|
|
@@ -193,6 +209,10 @@ import {
|
|
|
193
209
|
ExecuteChangeSetCommandInput,
|
|
194
210
|
ExecuteChangeSetCommandOutput,
|
|
195
211
|
} from "./commands/ExecuteChangeSetCommand";
|
|
212
|
+
import {
|
|
213
|
+
GetGeneratedTemplateCommandInput,
|
|
214
|
+
GetGeneratedTemplateCommandOutput,
|
|
215
|
+
} from "./commands/GetGeneratedTemplateCommand";
|
|
196
216
|
import {
|
|
197
217
|
GetStackPolicyCommandInput,
|
|
198
218
|
GetStackPolicyCommandOutput,
|
|
@@ -217,10 +237,26 @@ import {
|
|
|
217
237
|
ListExportsCommandInput,
|
|
218
238
|
ListExportsCommandOutput,
|
|
219
239
|
} from "./commands/ListExportsCommand";
|
|
240
|
+
import {
|
|
241
|
+
ListGeneratedTemplatesCommandInput,
|
|
242
|
+
ListGeneratedTemplatesCommandOutput,
|
|
243
|
+
} from "./commands/ListGeneratedTemplatesCommand";
|
|
220
244
|
import {
|
|
221
245
|
ListImportsCommandInput,
|
|
222
246
|
ListImportsCommandOutput,
|
|
223
247
|
} from "./commands/ListImportsCommand";
|
|
248
|
+
import {
|
|
249
|
+
ListResourceScanRelatedResourcesCommandInput,
|
|
250
|
+
ListResourceScanRelatedResourcesCommandOutput,
|
|
251
|
+
} from "./commands/ListResourceScanRelatedResourcesCommand";
|
|
252
|
+
import {
|
|
253
|
+
ListResourceScanResourcesCommandInput,
|
|
254
|
+
ListResourceScanResourcesCommandOutput,
|
|
255
|
+
} from "./commands/ListResourceScanResourcesCommand";
|
|
256
|
+
import {
|
|
257
|
+
ListResourceScansCommandInput,
|
|
258
|
+
ListResourceScansCommandOutput,
|
|
259
|
+
} from "./commands/ListResourceScansCommand";
|
|
224
260
|
import {
|
|
225
261
|
ListStackInstanceResourceDriftsCommandInput,
|
|
226
262
|
ListStackInstanceResourceDriftsCommandOutput,
|
|
@@ -297,6 +333,10 @@ import {
|
|
|
297
333
|
SignalResourceCommandInput,
|
|
298
334
|
SignalResourceCommandOutput,
|
|
299
335
|
} from "./commands/SignalResourceCommand";
|
|
336
|
+
import {
|
|
337
|
+
StartResourceScanCommandInput,
|
|
338
|
+
StartResourceScanCommandOutput,
|
|
339
|
+
} from "./commands/StartResourceScanCommand";
|
|
300
340
|
import {
|
|
301
341
|
StopStackSetOperationCommandInput,
|
|
302
342
|
StopStackSetOperationCommandOutput,
|
|
@@ -305,6 +345,10 @@ import {
|
|
|
305
345
|
TestTypeCommandInput,
|
|
306
346
|
TestTypeCommandOutput,
|
|
307
347
|
} from "./commands/TestTypeCommand";
|
|
348
|
+
import {
|
|
349
|
+
UpdateGeneratedTemplateCommandInput,
|
|
350
|
+
UpdateGeneratedTemplateCommandOutput,
|
|
351
|
+
} from "./commands/UpdateGeneratedTemplateCommand";
|
|
308
352
|
import {
|
|
309
353
|
UpdateStackCommandInput,
|
|
310
354
|
UpdateStackCommandOutput,
|
|
@@ -339,12 +383,14 @@ export type ServiceInputTypes =
|
|
|
339
383
|
| CancelUpdateStackCommandInput
|
|
340
384
|
| ContinueUpdateRollbackCommandInput
|
|
341
385
|
| CreateChangeSetCommandInput
|
|
386
|
+
| CreateGeneratedTemplateCommandInput
|
|
342
387
|
| CreateStackCommandInput
|
|
343
388
|
| CreateStackInstancesCommandInput
|
|
344
389
|
| CreateStackSetCommandInput
|
|
345
390
|
| DeactivateOrganizationsAccessCommandInput
|
|
346
391
|
| DeactivateTypeCommandInput
|
|
347
392
|
| DeleteChangeSetCommandInput
|
|
393
|
+
| DeleteGeneratedTemplateCommandInput
|
|
348
394
|
| DeleteStackCommandInput
|
|
349
395
|
| DeleteStackInstancesCommandInput
|
|
350
396
|
| DeleteStackSetCommandInput
|
|
@@ -352,8 +398,10 @@ export type ServiceInputTypes =
|
|
|
352
398
|
| DescribeAccountLimitsCommandInput
|
|
353
399
|
| DescribeChangeSetCommandInput
|
|
354
400
|
| DescribeChangeSetHooksCommandInput
|
|
401
|
+
| DescribeGeneratedTemplateCommandInput
|
|
355
402
|
| DescribeOrganizationsAccessCommandInput
|
|
356
403
|
| DescribePublisherCommandInput
|
|
404
|
+
| DescribeResourceScanCommandInput
|
|
357
405
|
| DescribeStackDriftDetectionStatusCommandInput
|
|
358
406
|
| DescribeStackEventsCommandInput
|
|
359
407
|
| DescribeStackInstanceCommandInput
|
|
@@ -370,13 +418,18 @@ export type ServiceInputTypes =
|
|
|
370
418
|
| DetectStackSetDriftCommandInput
|
|
371
419
|
| EstimateTemplateCostCommandInput
|
|
372
420
|
| ExecuteChangeSetCommandInput
|
|
421
|
+
| GetGeneratedTemplateCommandInput
|
|
373
422
|
| GetStackPolicyCommandInput
|
|
374
423
|
| GetTemplateCommandInput
|
|
375
424
|
| GetTemplateSummaryCommandInput
|
|
376
425
|
| ImportStacksToStackSetCommandInput
|
|
377
426
|
| ListChangeSetsCommandInput
|
|
378
427
|
| ListExportsCommandInput
|
|
428
|
+
| ListGeneratedTemplatesCommandInput
|
|
379
429
|
| ListImportsCommandInput
|
|
430
|
+
| ListResourceScanRelatedResourcesCommandInput
|
|
431
|
+
| ListResourceScanResourcesCommandInput
|
|
432
|
+
| ListResourceScansCommandInput
|
|
380
433
|
| ListStackInstanceResourceDriftsCommandInput
|
|
381
434
|
| ListStackInstancesCommandInput
|
|
382
435
|
| ListStackResourcesCommandInput
|
|
@@ -396,8 +449,10 @@ export type ServiceInputTypes =
|
|
|
396
449
|
| SetTypeConfigurationCommandInput
|
|
397
450
|
| SetTypeDefaultVersionCommandInput
|
|
398
451
|
| SignalResourceCommandInput
|
|
452
|
+
| StartResourceScanCommandInput
|
|
399
453
|
| StopStackSetOperationCommandInput
|
|
400
454
|
| TestTypeCommandInput
|
|
455
|
+
| UpdateGeneratedTemplateCommandInput
|
|
401
456
|
| UpdateStackCommandInput
|
|
402
457
|
| UpdateStackInstancesCommandInput
|
|
403
458
|
| UpdateStackSetCommandInput
|
|
@@ -410,12 +465,14 @@ export type ServiceOutputTypes =
|
|
|
410
465
|
| CancelUpdateStackCommandOutput
|
|
411
466
|
| ContinueUpdateRollbackCommandOutput
|
|
412
467
|
| CreateChangeSetCommandOutput
|
|
468
|
+
| CreateGeneratedTemplateCommandOutput
|
|
413
469
|
| CreateStackCommandOutput
|
|
414
470
|
| CreateStackInstancesCommandOutput
|
|
415
471
|
| CreateStackSetCommandOutput
|
|
416
472
|
| DeactivateOrganizationsAccessCommandOutput
|
|
417
473
|
| DeactivateTypeCommandOutput
|
|
418
474
|
| DeleteChangeSetCommandOutput
|
|
475
|
+
| DeleteGeneratedTemplateCommandOutput
|
|
419
476
|
| DeleteStackCommandOutput
|
|
420
477
|
| DeleteStackInstancesCommandOutput
|
|
421
478
|
| DeleteStackSetCommandOutput
|
|
@@ -423,8 +480,10 @@ export type ServiceOutputTypes =
|
|
|
423
480
|
| DescribeAccountLimitsCommandOutput
|
|
424
481
|
| DescribeChangeSetCommandOutput
|
|
425
482
|
| DescribeChangeSetHooksCommandOutput
|
|
483
|
+
| DescribeGeneratedTemplateCommandOutput
|
|
426
484
|
| DescribeOrganizationsAccessCommandOutput
|
|
427
485
|
| DescribePublisherCommandOutput
|
|
486
|
+
| DescribeResourceScanCommandOutput
|
|
428
487
|
| DescribeStackDriftDetectionStatusCommandOutput
|
|
429
488
|
| DescribeStackEventsCommandOutput
|
|
430
489
|
| DescribeStackInstanceCommandOutput
|
|
@@ -441,13 +500,18 @@ export type ServiceOutputTypes =
|
|
|
441
500
|
| DetectStackSetDriftCommandOutput
|
|
442
501
|
| EstimateTemplateCostCommandOutput
|
|
443
502
|
| ExecuteChangeSetCommandOutput
|
|
503
|
+
| GetGeneratedTemplateCommandOutput
|
|
444
504
|
| GetStackPolicyCommandOutput
|
|
445
505
|
| GetTemplateCommandOutput
|
|
446
506
|
| GetTemplateSummaryCommandOutput
|
|
447
507
|
| ImportStacksToStackSetCommandOutput
|
|
448
508
|
| ListChangeSetsCommandOutput
|
|
449
509
|
| ListExportsCommandOutput
|
|
510
|
+
| ListGeneratedTemplatesCommandOutput
|
|
450
511
|
| ListImportsCommandOutput
|
|
512
|
+
| ListResourceScanRelatedResourcesCommandOutput
|
|
513
|
+
| ListResourceScanResourcesCommandOutput
|
|
514
|
+
| ListResourceScansCommandOutput
|
|
451
515
|
| ListStackInstanceResourceDriftsCommandOutput
|
|
452
516
|
| ListStackInstancesCommandOutput
|
|
453
517
|
| ListStackResourcesCommandOutput
|
|
@@ -467,8 +531,10 @@ export type ServiceOutputTypes =
|
|
|
467
531
|
| SetTypeConfigurationCommandOutput
|
|
468
532
|
| SetTypeDefaultVersionCommandOutput
|
|
469
533
|
| SignalResourceCommandOutput
|
|
534
|
+
| StartResourceScanCommandOutput
|
|
470
535
|
| StopStackSetOperationCommandOutput
|
|
471
536
|
| TestTypeCommandOutput
|
|
537
|
+
| UpdateGeneratedTemplateCommandOutput
|
|
472
538
|
| UpdateStackCommandOutput
|
|
473
539
|
| UpdateStackInstancesCommandOutput
|
|
474
540
|
| UpdateStackSetCommandOutput
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateGeneratedTemplateInput,
|
|
10
|
+
CreateGeneratedTemplateOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface CreateGeneratedTemplateCommandInput
|
|
14
|
+
extends CreateGeneratedTemplateInput {}
|
|
15
|
+
export interface CreateGeneratedTemplateCommandOutput
|
|
16
|
+
extends CreateGeneratedTemplateOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateGeneratedTemplateCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateGeneratedTemplateCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateGeneratedTemplateCommandInput,
|
|
23
|
+
CreateGeneratedTemplateCommandOutput,
|
|
24
|
+
CloudFormationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreateGeneratedTemplateCommand extends CreateGeneratedTemplateCommand_base {}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import { DeleteGeneratedTemplateInput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
export interface DeleteGeneratedTemplateCommandInput
|
|
11
|
+
extends DeleteGeneratedTemplateInput {}
|
|
12
|
+
export interface DeleteGeneratedTemplateCommandOutput
|
|
13
|
+
extends __MetadataBearer {}
|
|
14
|
+
declare const DeleteGeneratedTemplateCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: DeleteGeneratedTemplateCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
DeleteGeneratedTemplateCommandInput,
|
|
19
|
+
DeleteGeneratedTemplateCommandOutput,
|
|
20
|
+
CloudFormationClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class DeleteGeneratedTemplateCommand extends DeleteGeneratedTemplateCommand_base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeGeneratedTemplateInput,
|
|
10
|
+
DescribeGeneratedTemplateOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface DescribeGeneratedTemplateCommandInput
|
|
14
|
+
extends DescribeGeneratedTemplateInput {}
|
|
15
|
+
export interface DescribeGeneratedTemplateCommandOutput
|
|
16
|
+
extends DescribeGeneratedTemplateOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DescribeGeneratedTemplateCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeGeneratedTemplateCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DescribeGeneratedTemplateCommandInput,
|
|
23
|
+
DescribeGeneratedTemplateCommandOutput,
|
|
24
|
+
CloudFormationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DescribeGeneratedTemplateCommand extends DescribeGeneratedTemplateCommand_base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeResourceScanInput,
|
|
10
|
+
DescribeResourceScanOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface DescribeResourceScanCommandInput
|
|
14
|
+
extends DescribeResourceScanInput {}
|
|
15
|
+
export interface DescribeResourceScanCommandOutput
|
|
16
|
+
extends DescribeResourceScanOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DescribeResourceScanCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeResourceScanCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DescribeResourceScanCommandInput,
|
|
23
|
+
DescribeResourceScanCommandOutput,
|
|
24
|
+
CloudFormationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DescribeResourceScanCommand extends DescribeResourceScanCommand_base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
GetGeneratedTemplateInput,
|
|
10
|
+
GetGeneratedTemplateOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface GetGeneratedTemplateCommandInput
|
|
14
|
+
extends GetGeneratedTemplateInput {}
|
|
15
|
+
export interface GetGeneratedTemplateCommandOutput
|
|
16
|
+
extends GetGeneratedTemplateOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetGeneratedTemplateCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetGeneratedTemplateCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetGeneratedTemplateCommandInput,
|
|
23
|
+
GetGeneratedTemplateCommandOutput,
|
|
24
|
+
CloudFormationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GetGeneratedTemplateCommand extends GetGeneratedTemplateCommand_base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListGeneratedTemplatesInput,
|
|
10
|
+
ListGeneratedTemplatesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListGeneratedTemplatesCommandInput
|
|
14
|
+
extends ListGeneratedTemplatesInput {}
|
|
15
|
+
export interface ListGeneratedTemplatesCommandOutput
|
|
16
|
+
extends ListGeneratedTemplatesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListGeneratedTemplatesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListGeneratedTemplatesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListGeneratedTemplatesCommandInput,
|
|
23
|
+
ListGeneratedTemplatesCommandOutput,
|
|
24
|
+
CloudFormationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListGeneratedTemplatesCommand extends ListGeneratedTemplatesCommand_base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListResourceScanRelatedResourcesInput,
|
|
10
|
+
ListResourceScanRelatedResourcesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListResourceScanRelatedResourcesCommandInput
|
|
14
|
+
extends ListResourceScanRelatedResourcesInput {}
|
|
15
|
+
export interface ListResourceScanRelatedResourcesCommandOutput
|
|
16
|
+
extends ListResourceScanRelatedResourcesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListResourceScanRelatedResourcesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListResourceScanRelatedResourcesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListResourceScanRelatedResourcesCommandInput,
|
|
23
|
+
ListResourceScanRelatedResourcesCommandOutput,
|
|
24
|
+
CloudFormationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListResourceScanRelatedResourcesCommand extends ListResourceScanRelatedResourcesCommand_base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListResourceScanResourcesInput,
|
|
10
|
+
ListResourceScanResourcesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListResourceScanResourcesCommandInput
|
|
14
|
+
extends ListResourceScanResourcesInput {}
|
|
15
|
+
export interface ListResourceScanResourcesCommandOutput
|
|
16
|
+
extends ListResourceScanResourcesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListResourceScanResourcesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListResourceScanResourcesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListResourceScanResourcesCommandInput,
|
|
23
|
+
ListResourceScanResourcesCommandOutput,
|
|
24
|
+
CloudFormationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListResourceScanResourcesCommand extends ListResourceScanResourcesCommand_base {}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListResourceScansInput,
|
|
10
|
+
ListResourceScansOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListResourceScansCommandInput extends ListResourceScansInput {}
|
|
14
|
+
export interface ListResourceScansCommandOutput
|
|
15
|
+
extends ListResourceScansOutput,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const ListResourceScansCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: ListResourceScansCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
ListResourceScansCommandInput,
|
|
22
|
+
ListResourceScansCommandOutput,
|
|
23
|
+
CloudFormationClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class ListResourceScansCommand extends ListResourceScansCommand_base {}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
StartResourceScanInput,
|
|
10
|
+
StartResourceScanOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface StartResourceScanCommandInput extends StartResourceScanInput {}
|
|
14
|
+
export interface StartResourceScanCommandOutput
|
|
15
|
+
extends StartResourceScanOutput,
|
|
16
|
+
__MetadataBearer {}
|
|
17
|
+
declare const StartResourceScanCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: StartResourceScanCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
StartResourceScanCommandInput,
|
|
22
|
+
StartResourceScanCommandOutput,
|
|
23
|
+
CloudFormationClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class StartResourceScanCommand extends StartResourceScanCommand_base {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
StopStackSetOperationInput,
|
|
10
10
|
StopStackSetOperationOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer, $Command };
|
|
13
13
|
export interface StopStackSetOperationCommandInput
|
|
14
14
|
extends StopStackSetOperationInput {}
|
package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/TestTypeCommand.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFormationClient";
|
|
8
|
-
import { TestTypeInput, TestTypeOutput } from "../models/
|
|
8
|
+
import { TestTypeInput, TestTypeOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer, $Command };
|
|
10
10
|
export interface TestTypeCommandInput extends TestTypeInput {}
|
|
11
11
|
export interface TestTypeCommandOutput
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateGeneratedTemplateInput,
|
|
10
|
+
UpdateGeneratedTemplateOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface UpdateGeneratedTemplateCommandInput
|
|
14
|
+
extends UpdateGeneratedTemplateInput {}
|
|
15
|
+
export interface UpdateGeneratedTemplateCommandOutput
|
|
16
|
+
extends UpdateGeneratedTemplateOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateGeneratedTemplateCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateGeneratedTemplateCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateGeneratedTemplateCommandInput,
|
|
23
|
+
UpdateGeneratedTemplateCommandOutput,
|
|
24
|
+
CloudFormationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class UpdateGeneratedTemplateCommand extends UpdateGeneratedTemplateCommand_base {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFormationClient";
|
|
8
|
-
import { UpdateStackInput, UpdateStackOutput } from "../models/
|
|
8
|
+
import { UpdateStackInput, UpdateStackOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer, $Command };
|
|
10
10
|
export interface UpdateStackCommandInput extends UpdateStackInput {}
|
|
11
11
|
export interface UpdateStackCommandOutput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateStackInstancesInput,
|
|
10
10
|
UpdateStackInstancesOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer, $Command };
|
|
13
13
|
export interface UpdateStackInstancesCommandInput
|
|
14
14
|
extends UpdateStackInstancesInput {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFormationClient";
|
|
8
|
-
import { UpdateStackSetInput, UpdateStackSetOutput } from "../models/
|
|
8
|
+
import { UpdateStackSetInput, UpdateStackSetOutput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer, $Command };
|
|
10
10
|
export interface UpdateStackSetCommandInput extends UpdateStackSetInput {}
|
|
11
11
|
export interface UpdateStackSetCommandOutput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateTerminationProtectionInput,
|
|
10
10
|
UpdateTerminationProtectionOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer, $Command };
|
|
13
13
|
export interface UpdateTerminationProtectionCommandInput
|
|
14
14
|
extends UpdateTerminationProtectionInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ValidateTemplateInput,
|
|
10
10
|
ValidateTemplateOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer, $Command };
|
|
13
13
|
export interface ValidateTemplateCommandInput extends ValidateTemplateInput {}
|
|
14
14
|
export interface ValidateTemplateCommandOutput
|