@aws-sdk/client-proton 3.34.0 → 3.37.0
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/CHANGELOG.md +47 -0
- package/dist-cjs/Proton.js +742 -0
- package/dist-cjs/ProtonClient.js +35 -0
- package/dist-cjs/commands/AcceptEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/CancelEnvironmentDeploymentCommand.js +36 -0
- package/dist-cjs/commands/CancelServiceInstanceDeploymentCommand.js +36 -0
- package/dist-cjs/commands/CancelServicePipelineDeploymentCommand.js +36 -0
- package/dist-cjs/commands/CreateEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/CreateEnvironmentCommand.js +36 -0
- package/dist-cjs/commands/CreateEnvironmentTemplateCommand.js +36 -0
- package/dist-cjs/commands/CreateEnvironmentTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/CreateServiceCommand.js +36 -0
- package/dist-cjs/commands/CreateServiceTemplateCommand.js +36 -0
- package/dist-cjs/commands/CreateServiceTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/DeleteEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +36 -0
- package/dist-cjs/commands/DeleteEnvironmentTemplateCommand.js +36 -0
- package/dist-cjs/commands/DeleteEnvironmentTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/DeleteServiceCommand.js +36 -0
- package/dist-cjs/commands/DeleteServiceTemplateCommand.js +36 -0
- package/dist-cjs/commands/DeleteServiceTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/GetAccountSettingsCommand.js +36 -0
- package/dist-cjs/commands/GetEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/GetEnvironmentCommand.js +36 -0
- package/dist-cjs/commands/GetEnvironmentTemplateCommand.js +36 -0
- package/dist-cjs/commands/GetEnvironmentTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/GetServiceCommand.js +36 -0
- package/dist-cjs/commands/GetServiceInstanceCommand.js +36 -0
- package/dist-cjs/commands/GetServiceTemplateCommand.js +36 -0
- package/dist-cjs/commands/GetServiceTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/ListEnvironmentAccountConnectionsCommand.js +36 -0
- package/dist-cjs/commands/ListEnvironmentTemplateVersionsCommand.js +36 -0
- package/dist-cjs/commands/ListEnvironmentTemplatesCommand.js +36 -0
- package/dist-cjs/commands/ListEnvironmentsCommand.js +36 -0
- package/dist-cjs/commands/ListServiceInstancesCommand.js +36 -0
- package/dist-cjs/commands/ListServiceTemplateVersionsCommand.js +36 -0
- package/dist-cjs/commands/ListServiceTemplatesCommand.js +36 -0
- package/dist-cjs/commands/ListServicesCommand.js +36 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
- package/dist-cjs/commands/RejectEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/TagResourceCommand.js +36 -0
- package/dist-cjs/commands/UntagResourceCommand.js +36 -0
- package/dist-cjs/commands/UpdateAccountSettingsCommand.js +36 -0
- package/dist-cjs/commands/UpdateEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/UpdateEnvironmentCommand.js +36 -0
- package/dist-cjs/commands/UpdateEnvironmentTemplateCommand.js +36 -0
- package/dist-cjs/commands/UpdateEnvironmentTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/UpdateServiceCommand.js +36 -0
- package/dist-cjs/commands/UpdateServiceInstanceCommand.js +36 -0
- package/dist-cjs/commands/UpdateServicePipelineCommand.js +36 -0
- package/dist-cjs/commands/UpdateServiceTemplateCommand.js +36 -0
- package/dist-cjs/commands/UpdateServiceTemplateVersionCommand.js +36 -0
- package/dist-cjs/endpoints.js +56 -0
- package/dist-cjs/index.js +73 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +981 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListEnvironmentAccountConnectionsPaginator.js +35 -0
- package/dist-cjs/pagination/ListEnvironmentTemplateVersionsPaginator.js +35 -0
- package/dist-cjs/pagination/ListEnvironmentTemplatesPaginator.js +35 -0
- package/dist-cjs/pagination/ListEnvironmentsPaginator.js +35 -0
- package/dist-cjs/pagination/ListServiceInstancesPaginator.js +35 -0
- package/dist-cjs/pagination/ListServiceTemplateVersionsPaginator.js +35 -0
- package/dist-cjs/pagination/ListServiceTemplatesPaginator.js +35 -0
- package/dist-cjs/pagination/ListServicesPaginator.js +35 -0
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +35 -0
- package/dist-cjs/protocols/Aws_json1_0.js +6064 -0
- package/dist-cjs/runtimeConfig.browser.js +37 -0
- package/dist-cjs/runtimeConfig.js +42 -0
- package/dist-cjs/runtimeConfig.native.js +16 -0
- package/dist-cjs/runtimeConfig.shared.js +17 -0
- package/dist-cjs/waiters/waitForEnvironmentDeployed.js +45 -0
- package/dist-cjs/waiters/waitForEnvironmentTemplateVersionRegistered.js +54 -0
- package/dist-cjs/waiters/waitForServiceCreated.js +63 -0
- package/dist-cjs/waiters/waitForServiceDeleted.js +39 -0
- package/dist-cjs/waiters/waitForServiceInstanceDeployed.js +45 -0
- package/dist-cjs/waiters/waitForServicePipelineDeployed.js +45 -0
- package/dist-cjs/waiters/waitForServiceTemplateVersionRegistered.js +54 -0
- package/dist-cjs/waiters/waitForServiceUpdated.js +72 -0
- package/dist-es/Proton.js +745 -0
- package/dist-es/ProtonClient.js +37 -0
- package/dist-es/commands/AcceptEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/CancelEnvironmentDeploymentCommand.js +39 -0
- package/dist-es/commands/CancelServiceInstanceDeploymentCommand.js +39 -0
- package/dist-es/commands/CancelServicePipelineDeploymentCommand.js +39 -0
- package/dist-es/commands/CreateEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/CreateEnvironmentCommand.js +39 -0
- package/dist-es/commands/CreateEnvironmentTemplateCommand.js +39 -0
- package/dist-es/commands/CreateEnvironmentTemplateVersionCommand.js +39 -0
- package/dist-es/commands/CreateServiceCommand.js +39 -0
- package/dist-es/commands/CreateServiceTemplateCommand.js +39 -0
- package/dist-es/commands/CreateServiceTemplateVersionCommand.js +39 -0
- package/dist-es/commands/DeleteEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/DeleteEnvironmentCommand.js +39 -0
- package/dist-es/commands/DeleteEnvironmentTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteEnvironmentTemplateVersionCommand.js +39 -0
- package/dist-es/commands/DeleteServiceCommand.js +39 -0
- package/dist-es/commands/DeleteServiceTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteServiceTemplateVersionCommand.js +39 -0
- package/dist-es/commands/GetAccountSettingsCommand.js +39 -0
- package/dist-es/commands/GetEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/GetEnvironmentCommand.js +39 -0
- package/dist-es/commands/GetEnvironmentTemplateCommand.js +39 -0
- package/dist-es/commands/GetEnvironmentTemplateVersionCommand.js +39 -0
- package/dist-es/commands/GetServiceCommand.js +39 -0
- package/dist-es/commands/GetServiceInstanceCommand.js +39 -0
- package/dist-es/commands/GetServiceTemplateCommand.js +39 -0
- package/dist-es/commands/GetServiceTemplateVersionCommand.js +39 -0
- package/dist-es/commands/ListEnvironmentAccountConnectionsCommand.js +39 -0
- package/dist-es/commands/ListEnvironmentTemplateVersionsCommand.js +39 -0
- package/dist-es/commands/ListEnvironmentTemplatesCommand.js +39 -0
- package/dist-es/commands/ListEnvironmentsCommand.js +39 -0
- package/dist-es/commands/ListServiceInstancesCommand.js +39 -0
- package/dist-es/commands/ListServiceTemplateVersionsCommand.js +39 -0
- package/dist-es/commands/ListServiceTemplatesCommand.js +39 -0
- package/dist-es/commands/ListServicesCommand.js +39 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
- package/dist-es/commands/RejectEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/TagResourceCommand.js +39 -0
- package/dist-es/commands/UntagResourceCommand.js +39 -0
- package/dist-es/commands/UpdateAccountSettingsCommand.js +39 -0
- package/dist-es/commands/UpdateEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/UpdateEnvironmentCommand.js +39 -0
- package/dist-es/commands/UpdateEnvironmentTemplateCommand.js +39 -0
- package/dist-es/commands/UpdateEnvironmentTemplateVersionCommand.js +39 -0
- package/dist-es/commands/UpdateServiceCommand.js +39 -0
- package/dist-es/commands/UpdateServiceInstanceCommand.js +39 -0
- package/dist-es/commands/UpdateServicePipelineCommand.js +39 -0
- package/dist-es/commands/UpdateServiceTemplateCommand.js +39 -0
- package/dist-es/commands/UpdateServiceTemplateVersionCommand.js +39 -0
- package/dist-es/endpoints.js +52 -0
- package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
- package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
- package/dist-es/models/models_0.js +620 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListEnvironmentAccountConnectionsPaginator.js +74 -0
- package/dist-es/pagination/ListEnvironmentTemplateVersionsPaginator.js +74 -0
- package/dist-es/pagination/ListEnvironmentTemplatesPaginator.js +74 -0
- package/dist-es/pagination/ListEnvironmentsPaginator.js +74 -0
- package/dist-es/pagination/ListServiceInstancesPaginator.js +74 -0
- package/dist-es/pagination/ListServiceTemplateVersionsPaginator.js +74 -0
- package/dist-es/pagination/ListServiceTemplatesPaginator.js +74 -0
- package/dist-es/pagination/ListServicesPaginator.js +74 -0
- package/dist-es/pagination/ListTagsForResourcePaginator.js +74 -0
- package/dist-es/protocols/Aws_json1_0.js +6335 -0
- package/dist-es/runtimeConfig.browser.js +16 -0
- package/dist-es/runtimeConfig.js +21 -0
- package/dist-es/runtimeConfig.native.js +8 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-es/waiters/waitForEnvironmentDeployed.js +60 -0
- package/dist-es/waiters/waitForEnvironmentTemplateVersionRegistered.js +69 -0
- package/dist-es/waiters/waitForServiceCreated.js +78 -0
- package/dist-es/waiters/waitForServiceDeleted.js +54 -0
- package/dist-es/waiters/waitForServiceInstanceDeployed.js +60 -0
- package/dist-es/waiters/waitForServicePipelineDeployed.js +60 -0
- package/dist-es/waiters/waitForServiceTemplateVersionRegistered.js +69 -0
- package/dist-es/waiters/waitForServiceUpdated.js +87 -0
- package/dist-types/Proton.d.ts +704 -0
- package/dist-types/ProtonClient.d.ts +301 -0
- package/dist-types/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +39 -0
- package/dist-types/commands/CancelEnvironmentDeploymentCommand.d.ts +49 -0
- package/dist-types/commands/CancelServiceInstanceDeploymentCommand.d.ts +49 -0
- package/dist-types/commands/CancelServicePipelineDeploymentCommand.d.ts +49 -0
- package/dist-types/commands/CreateEnvironmentAccountConnectionCommand.d.ts +39 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +38 -0
- package/dist-types/commands/CreateEnvironmentTemplateCommand.d.ts +50 -0
- package/dist-types/commands/CreateEnvironmentTemplateVersionCommand.d.ts +37 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +37 -0
- package/dist-types/commands/CreateServiceTemplateCommand.d.ts +39 -0
- package/dist-types/commands/CreateServiceTemplateVersionCommand.d.ts +37 -0
- package/dist-types/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +40 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +35 -0
- package/dist-types/commands/DeleteEnvironmentTemplateCommand.d.ts +35 -0
- package/dist-types/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +41 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +35 -0
- package/dist-types/commands/DeleteServiceTemplateCommand.d.ts +35 -0
- package/dist-types/commands/DeleteServiceTemplateVersionCommand.d.ts +41 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +35 -0
- package/dist-types/commands/GetEnvironmentAccountConnectionCommand.d.ts +37 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +35 -0
- package/dist-types/commands/GetEnvironmentTemplateCommand.d.ts +35 -0
- package/dist-types/commands/GetEnvironmentTemplateVersionCommand.d.ts +35 -0
- package/dist-types/commands/GetServiceCommand.d.ts +35 -0
- package/dist-types/commands/GetServiceInstanceCommand.d.ts +36 -0
- package/dist-types/commands/GetServiceTemplateCommand.d.ts +35 -0
- package/dist-types/commands/GetServiceTemplateVersionCommand.d.ts +35 -0
- package/dist-types/commands/ListEnvironmentAccountConnectionsCommand.d.ts +37 -0
- package/dist-types/commands/ListEnvironmentTemplateVersionsCommand.d.ts +35 -0
- package/dist-types/commands/ListEnvironmentTemplatesCommand.d.ts +35 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +35 -0
- package/dist-types/commands/ListServiceInstancesCommand.d.ts +35 -0
- package/dist-types/commands/ListServiceTemplateVersionsCommand.d.ts +35 -0
- package/dist-types/commands/ListServiceTemplatesCommand.d.ts +35 -0
- package/dist-types/commands/ListServicesCommand.d.ts +35 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
- package/dist-types/commands/RejectEnvironmentAccountConnectionCommand.d.ts +40 -0
- package/dist-types/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +35 -0
- package/dist-types/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +37 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +80 -0
- package/dist-types/commands/UpdateEnvironmentTemplateCommand.d.ts +35 -0
- package/dist-types/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +35 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +41 -0
- package/dist-types/commands/UpdateServiceInstanceCommand.d.ts +73 -0
- package/dist-types/commands/UpdateServicePipelineCommand.d.ts +73 -0
- package/dist-types/commands/UpdateServiceTemplateCommand.d.ts +35 -0
- package/dist-types/commands/UpdateServiceTemplateVersionCommand.d.ts +35 -0
- package/{dist/types → dist-types}/endpoints.d.ts +0 -0
- package/{index.ts → dist-types/index.d.ts} +0 -0
- package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
- package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListEnvironmentTemplatesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListServiceInstancesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListServiceTemplateVersionsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListServiceTemplatesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +149 -0
- package/{dist/types → dist-types}/runtimeConfig.browser.d.ts +0 -0
- package/dist-types/runtimeConfig.d.ts +37 -0
- package/{dist/types → dist-types}/runtimeConfig.native.d.ts +0 -0
- package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
- package/dist-types/ts3.4/Proton.d.ts +250 -0
- package/dist-types/ts3.4/ProtonClient.d.ts +116 -0
- package/dist-types/ts3.4/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CancelEnvironmentDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CancelServiceInstanceDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CancelServicePipelineDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateServiceTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateServiceTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteServiceTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteServiceTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEnvironmentTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEnvironmentTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentAccountConnectionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentTemplateVersionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentTemplatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServiceInstancesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServiceTemplateVersionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServiceTemplatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RejectEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServiceInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServicePipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServiceTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServiceTemplateVersionCommand.d.ts +17 -0
- package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1699 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentTemplatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServiceInstancesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServiceTemplateVersionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServiceTemplatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +149 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +35 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +35 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +34 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForEnvironmentDeployed.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServiceCreated.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServiceDeleted.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServiceInstanceDeployed.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServicePipelineDeployed.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServiceTemplateVersionRegistered.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServiceUpdated.d.ts +7 -0
- package/dist-types/waiters/waitForEnvironmentDeployed.d.ts +14 -0
- package/dist-types/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +14 -0
- package/dist-types/waiters/waitForServiceCreated.d.ts +14 -0
- package/dist-types/waiters/waitForServiceDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForServiceInstanceDeployed.d.ts +14 -0
- package/dist-types/waiters/waitForServicePipelineDeployed.d.ts +14 -0
- package/dist-types/waiters/waitForServiceTemplateVersionRegistered.d.ts +14 -0
- package/dist-types/waiters/waitForServiceUpdated.d.ts +14 -0
- package/package.json +46 -43
- package/Proton.ts +0 -2151
- package/ProtonClient.ts +0 -604
- package/commands/AcceptEnvironmentAccountConnectionCommand.ts +0 -106
- package/commands/CancelEnvironmentDeploymentCommand.ts +0 -111
- package/commands/CancelServiceInstanceDeploymentCommand.ts +0 -116
- package/commands/CancelServicePipelineDeploymentCommand.ts +0 -116
- package/commands/CreateEnvironmentAccountConnectionCommand.ts +0 -106
- package/commands/CreateEnvironmentCommand.ts +0 -97
- package/commands/CreateEnvironmentTemplateCommand.ts +0 -112
- package/commands/CreateEnvironmentTemplateVersionCommand.ts +0 -104
- package/commands/CreateServiceCommand.ts +0 -96
- package/commands/CreateServiceTemplateCommand.ts +0 -98
- package/commands/CreateServiceTemplateVersionCommand.ts +0 -101
- package/commands/DeleteEnvironmentAccountConnectionCommand.ts +0 -107
- package/commands/DeleteEnvironmentCommand.ts +0 -94
- package/commands/DeleteEnvironmentTemplateCommand.ts +0 -97
- package/commands/DeleteEnvironmentTemplateVersionCommand.ts +0 -108
- package/commands/DeleteServiceCommand.ts +0 -94
- package/commands/DeleteServiceTemplateCommand.ts +0 -94
- package/commands/DeleteServiceTemplateVersionCommand.ts +0 -105
- package/commands/GetAccountSettingsCommand.ts +0 -94
- package/commands/GetEnvironmentAccountConnectionCommand.ts +0 -104
- package/commands/GetEnvironmentCommand.ts +0 -94
- package/commands/GetEnvironmentTemplateCommand.ts +0 -94
- package/commands/GetEnvironmentTemplateVersionCommand.ts +0 -99
- package/commands/GetServiceCommand.ts +0 -94
- package/commands/GetServiceInstanceCommand.ts +0 -95
- package/commands/GetServiceTemplateCommand.ts +0 -94
- package/commands/GetServiceTemplateVersionCommand.ts +0 -97
- package/commands/ListEnvironmentAccountConnectionsCommand.ts +0 -104
- package/commands/ListEnvironmentTemplateVersionsCommand.ts +0 -102
- package/commands/ListEnvironmentTemplatesCommand.ts +0 -94
- package/commands/ListEnvironmentsCommand.ts +0 -94
- package/commands/ListServiceInstancesCommand.ts +0 -94
- package/commands/ListServiceTemplateVersionsCommand.ts +0 -97
- package/commands/ListServiceTemplatesCommand.ts +0 -94
- package/commands/ListServicesCommand.ts +0 -94
- package/commands/ListTagsForResourceCommand.ts +0 -94
- package/commands/RejectEnvironmentAccountConnectionCommand.ts +0 -107
- package/commands/TagResourceCommand.ts +0 -94
- package/commands/UntagResourceCommand.ts +0 -94
- package/commands/UpdateAccountSettingsCommand.ts +0 -94
- package/commands/UpdateEnvironmentAccountConnectionCommand.ts +0 -104
- package/commands/UpdateEnvironmentCommand.ts +0 -139
- package/commands/UpdateEnvironmentTemplateCommand.ts +0 -97
- package/commands/UpdateEnvironmentTemplateVersionCommand.ts +0 -102
- package/commands/UpdateServiceCommand.ts +0 -100
- package/commands/UpdateServiceInstanceCommand.ts +0 -132
- package/commands/UpdateServicePipelineCommand.ts +0 -132
- package/commands/UpdateServiceTemplateCommand.ts +0 -94
- package/commands/UpdateServiceTemplateVersionCommand.ts +0 -99
- package/dist/cjs/Proton.js +0 -866
- package/dist/cjs/Proton.js.map +0 -1
- package/dist/cjs/ProtonClient.js +0 -164
- package/dist/cjs/ProtonClient.js.map +0 -1
- package/dist/cjs/commands/AcceptEnvironmentAccountConnectionCommand.js +0 -65
- package/dist/cjs/commands/AcceptEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/CancelEnvironmentDeploymentCommand.js +0 -75
- package/dist/cjs/commands/CancelEnvironmentDeploymentCommand.js.map +0 -1
- package/dist/cjs/commands/CancelServiceInstanceDeploymentCommand.js +0 -75
- package/dist/cjs/commands/CancelServiceInstanceDeploymentCommand.js.map +0 -1
- package/dist/cjs/commands/CancelServicePipelineDeploymentCommand.js +0 -75
- package/dist/cjs/commands/CancelServicePipelineDeploymentCommand.js.map +0 -1
- package/dist/cjs/commands/CreateEnvironmentAccountConnectionCommand.js +0 -65
- package/dist/cjs/commands/CreateEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/CreateEnvironmentCommand.js +0 -64
- package/dist/cjs/commands/CreateEnvironmentCommand.js.map +0 -1
- package/dist/cjs/commands/CreateEnvironmentTemplateCommand.js +0 -76
- package/dist/cjs/commands/CreateEnvironmentTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/CreateEnvironmentTemplateVersionCommand.js +0 -63
- package/dist/cjs/commands/CreateEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/CreateServiceCommand.js +0 -63
- package/dist/cjs/commands/CreateServiceCommand.js.map +0 -1
- package/dist/cjs/commands/CreateServiceTemplateCommand.js +0 -65
- package/dist/cjs/commands/CreateServiceTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/CreateServiceTemplateVersionCommand.js +0 -63
- package/dist/cjs/commands/CreateServiceTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteEnvironmentAccountConnectionCommand.js +0 -66
- package/dist/cjs/commands/DeleteEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteEnvironmentCommand.js +0 -61
- package/dist/cjs/commands/DeleteEnvironmentCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteEnvironmentTemplateCommand.js +0 -61
- package/dist/cjs/commands/DeleteEnvironmentTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteEnvironmentTemplateVersionCommand.js +0 -67
- package/dist/cjs/commands/DeleteEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteServiceCommand.js +0 -61
- package/dist/cjs/commands/DeleteServiceCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteServiceTemplateCommand.js +0 -61
- package/dist/cjs/commands/DeleteServiceTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteServiceTemplateVersionCommand.js +0 -67
- package/dist/cjs/commands/DeleteServiceTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/GetAccountSettingsCommand.js +0 -61
- package/dist/cjs/commands/GetAccountSettingsCommand.js.map +0 -1
- package/dist/cjs/commands/GetEnvironmentAccountConnectionCommand.js +0 -63
- package/dist/cjs/commands/GetEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/GetEnvironmentCommand.js +0 -61
- package/dist/cjs/commands/GetEnvironmentCommand.js.map +0 -1
- package/dist/cjs/commands/GetEnvironmentTemplateCommand.js +0 -61
- package/dist/cjs/commands/GetEnvironmentTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/GetEnvironmentTemplateVersionCommand.js +0 -61
- package/dist/cjs/commands/GetEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/GetServiceCommand.js +0 -61
- package/dist/cjs/commands/GetServiceCommand.js.map +0 -1
- package/dist/cjs/commands/GetServiceInstanceCommand.js +0 -62
- package/dist/cjs/commands/GetServiceInstanceCommand.js.map +0 -1
- package/dist/cjs/commands/GetServiceTemplateCommand.js +0 -61
- package/dist/cjs/commands/GetServiceTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/GetServiceTemplateVersionCommand.js +0 -61
- package/dist/cjs/commands/GetServiceTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/ListEnvironmentAccountConnectionsCommand.js +0 -63
- package/dist/cjs/commands/ListEnvironmentAccountConnectionsCommand.js.map +0 -1
- package/dist/cjs/commands/ListEnvironmentTemplateVersionsCommand.js +0 -61
- package/dist/cjs/commands/ListEnvironmentTemplateVersionsCommand.js.map +0 -1
- package/dist/cjs/commands/ListEnvironmentTemplatesCommand.js +0 -61
- package/dist/cjs/commands/ListEnvironmentTemplatesCommand.js.map +0 -1
- package/dist/cjs/commands/ListEnvironmentsCommand.js +0 -61
- package/dist/cjs/commands/ListEnvironmentsCommand.js.map +0 -1
- package/dist/cjs/commands/ListServiceInstancesCommand.js +0 -61
- package/dist/cjs/commands/ListServiceInstancesCommand.js.map +0 -1
- package/dist/cjs/commands/ListServiceTemplateVersionsCommand.js +0 -61
- package/dist/cjs/commands/ListServiceTemplateVersionsCommand.js.map +0 -1
- package/dist/cjs/commands/ListServiceTemplatesCommand.js +0 -61
- package/dist/cjs/commands/ListServiceTemplatesCommand.js.map +0 -1
- package/dist/cjs/commands/ListServicesCommand.js +0 -61
- package/dist/cjs/commands/ListServicesCommand.js.map +0 -1
- package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -61
- package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/cjs/commands/RejectEnvironmentAccountConnectionCommand.js +0 -66
- package/dist/cjs/commands/RejectEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/TagResourceCommand.js +0 -61
- package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UntagResourceCommand.js +0 -61
- package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateAccountSettingsCommand.js +0 -61
- package/dist/cjs/commands/UpdateAccountSettingsCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateEnvironmentAccountConnectionCommand.js +0 -63
- package/dist/cjs/commands/UpdateEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateEnvironmentCommand.js +0 -106
- package/dist/cjs/commands/UpdateEnvironmentCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateEnvironmentTemplateCommand.js +0 -61
- package/dist/cjs/commands/UpdateEnvironmentTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateEnvironmentTemplateVersionCommand.js +0 -61
- package/dist/cjs/commands/UpdateEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateServiceCommand.js +0 -67
- package/dist/cjs/commands/UpdateServiceCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateServiceInstanceCommand.js +0 -99
- package/dist/cjs/commands/UpdateServiceInstanceCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateServicePipelineCommand.js +0 -99
- package/dist/cjs/commands/UpdateServicePipelineCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateServiceTemplateCommand.js +0 -61
- package/dist/cjs/commands/UpdateServiceTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateServiceTemplateVersionCommand.js +0 -61
- package/dist/cjs/commands/UpdateServiceTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/endpoints.js +0 -57
- package/dist/cjs/endpoints.js.map +0 -1
- package/dist/cjs/index.js +0 -74
- package/dist/cjs/index.js.map +0 -1
- package/dist/cjs/models/index.js +0 -5
- package/dist/cjs/models/index.js.map +0 -1
- package/dist/cjs/models/models_0.js +0 -1369
- package/dist/cjs/models/models_0.js.map +0 -1
- package/dist/cjs/package.json +0 -94
- package/dist/cjs/pagination/Interfaces.js +0 -3
- package/dist/cjs/pagination/Interfaces.js.map +0 -1
- package/dist/cjs/pagination/ListEnvironmentAccountConnectionsPaginator.js +0 -46
- package/dist/cjs/pagination/ListEnvironmentAccountConnectionsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListEnvironmentTemplateVersionsPaginator.js +0 -46
- package/dist/cjs/pagination/ListEnvironmentTemplateVersionsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListEnvironmentTemplatesPaginator.js +0 -46
- package/dist/cjs/pagination/ListEnvironmentTemplatesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListEnvironmentsPaginator.js +0 -46
- package/dist/cjs/pagination/ListEnvironmentsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListServiceInstancesPaginator.js +0 -46
- package/dist/cjs/pagination/ListServiceInstancesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListServiceTemplateVersionsPaginator.js +0 -46
- package/dist/cjs/pagination/ListServiceTemplateVersionsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListServiceTemplatesPaginator.js +0 -46
- package/dist/cjs/pagination/ListServiceTemplatesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListServicesPaginator.js +0 -46
- package/dist/cjs/pagination/ListServicesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListTagsForResourcePaginator.js +0 -46
- package/dist/cjs/pagination/ListTagsForResourcePaginator.js.map +0 -1
- package/dist/cjs/protocols/Aws_json1_0.js +0 -6070
- package/dist/cjs/protocols/Aws_json1_0.js.map +0 -1
- package/dist/cjs/runtimeConfig.browser.js +0 -41
- package/dist/cjs/runtimeConfig.browser.js.map +0 -1
- package/dist/cjs/runtimeConfig.js +0 -46
- package/dist/cjs/runtimeConfig.js.map +0 -1
- package/dist/cjs/runtimeConfig.native.js +0 -20
- package/dist/cjs/runtimeConfig.native.js.map +0 -1
- package/dist/cjs/runtimeConfig.shared.js +0 -21
- package/dist/cjs/runtimeConfig.shared.js.map +0 -1
- package/dist/cjs/waiters/waitForEnvironmentDeployed.js +0 -55
- package/dist/cjs/waiters/waitForEnvironmentDeployed.js.map +0 -1
- package/dist/cjs/waiters/waitForEnvironmentTemplateVersionRegistered.js +0 -64
- package/dist/cjs/waiters/waitForEnvironmentTemplateVersionRegistered.js.map +0 -1
- package/dist/cjs/waiters/waitForServiceCreated.js +0 -73
- package/dist/cjs/waiters/waitForServiceCreated.js.map +0 -1
- package/dist/cjs/waiters/waitForServiceDeleted.js +0 -49
- package/dist/cjs/waiters/waitForServiceDeleted.js.map +0 -1
- package/dist/cjs/waiters/waitForServiceInstanceDeployed.js +0 -55
- package/dist/cjs/waiters/waitForServiceInstanceDeployed.js.map +0 -1
- package/dist/cjs/waiters/waitForServicePipelineDeployed.js +0 -55
- package/dist/cjs/waiters/waitForServicePipelineDeployed.js.map +0 -1
- package/dist/cjs/waiters/waitForServiceTemplateVersionRegistered.js +0 -64
- package/dist/cjs/waiters/waitForServiceTemplateVersionRegistered.js.map +0 -1
- package/dist/cjs/waiters/waitForServiceUpdated.js +0 -82
- package/dist/cjs/waiters/waitForServiceUpdated.js.map +0 -1
- package/dist/es/Proton.js +0 -746
- package/dist/es/Proton.js.map +0 -1
- package/dist/es/ProtonClient.js +0 -38
- package/dist/es/ProtonClient.js.map +0 -1
- package/dist/es/commands/AcceptEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/AcceptEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/CancelEnvironmentDeploymentCommand.js +0 -40
- package/dist/es/commands/CancelEnvironmentDeploymentCommand.js.map +0 -1
- package/dist/es/commands/CancelServiceInstanceDeploymentCommand.js +0 -40
- package/dist/es/commands/CancelServiceInstanceDeploymentCommand.js.map +0 -1
- package/dist/es/commands/CancelServicePipelineDeploymentCommand.js +0 -40
- package/dist/es/commands/CancelServicePipelineDeploymentCommand.js.map +0 -1
- package/dist/es/commands/CreateEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/CreateEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/CreateEnvironmentCommand.js +0 -40
- package/dist/es/commands/CreateEnvironmentCommand.js.map +0 -1
- package/dist/es/commands/CreateEnvironmentTemplateCommand.js +0 -40
- package/dist/es/commands/CreateEnvironmentTemplateCommand.js.map +0 -1
- package/dist/es/commands/CreateEnvironmentTemplateVersionCommand.js +0 -40
- package/dist/es/commands/CreateEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/CreateServiceCommand.js +0 -40
- package/dist/es/commands/CreateServiceCommand.js.map +0 -1
- package/dist/es/commands/CreateServiceTemplateCommand.js +0 -40
- package/dist/es/commands/CreateServiceTemplateCommand.js.map +0 -1
- package/dist/es/commands/CreateServiceTemplateVersionCommand.js +0 -40
- package/dist/es/commands/CreateServiceTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/DeleteEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/DeleteEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/DeleteEnvironmentCommand.js +0 -40
- package/dist/es/commands/DeleteEnvironmentCommand.js.map +0 -1
- package/dist/es/commands/DeleteEnvironmentTemplateCommand.js +0 -40
- package/dist/es/commands/DeleteEnvironmentTemplateCommand.js.map +0 -1
- package/dist/es/commands/DeleteEnvironmentTemplateVersionCommand.js +0 -40
- package/dist/es/commands/DeleteEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/DeleteServiceCommand.js +0 -40
- package/dist/es/commands/DeleteServiceCommand.js.map +0 -1
- package/dist/es/commands/DeleteServiceTemplateCommand.js +0 -40
- package/dist/es/commands/DeleteServiceTemplateCommand.js.map +0 -1
- package/dist/es/commands/DeleteServiceTemplateVersionCommand.js +0 -40
- package/dist/es/commands/DeleteServiceTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/GetAccountSettingsCommand.js +0 -40
- package/dist/es/commands/GetAccountSettingsCommand.js.map +0 -1
- package/dist/es/commands/GetEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/GetEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/GetEnvironmentCommand.js +0 -40
- package/dist/es/commands/GetEnvironmentCommand.js.map +0 -1
- package/dist/es/commands/GetEnvironmentTemplateCommand.js +0 -40
- package/dist/es/commands/GetEnvironmentTemplateCommand.js.map +0 -1
- package/dist/es/commands/GetEnvironmentTemplateVersionCommand.js +0 -40
- package/dist/es/commands/GetEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/GetServiceCommand.js +0 -40
- package/dist/es/commands/GetServiceCommand.js.map +0 -1
- package/dist/es/commands/GetServiceInstanceCommand.js +0 -40
- package/dist/es/commands/GetServiceInstanceCommand.js.map +0 -1
- package/dist/es/commands/GetServiceTemplateCommand.js +0 -40
- package/dist/es/commands/GetServiceTemplateCommand.js.map +0 -1
- package/dist/es/commands/GetServiceTemplateVersionCommand.js +0 -40
- package/dist/es/commands/GetServiceTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/ListEnvironmentAccountConnectionsCommand.js +0 -40
- package/dist/es/commands/ListEnvironmentAccountConnectionsCommand.js.map +0 -1
- package/dist/es/commands/ListEnvironmentTemplateVersionsCommand.js +0 -40
- package/dist/es/commands/ListEnvironmentTemplateVersionsCommand.js.map +0 -1
- package/dist/es/commands/ListEnvironmentTemplatesCommand.js +0 -40
- package/dist/es/commands/ListEnvironmentTemplatesCommand.js.map +0 -1
- package/dist/es/commands/ListEnvironmentsCommand.js +0 -40
- package/dist/es/commands/ListEnvironmentsCommand.js.map +0 -1
- package/dist/es/commands/ListServiceInstancesCommand.js +0 -40
- package/dist/es/commands/ListServiceInstancesCommand.js.map +0 -1
- package/dist/es/commands/ListServiceTemplateVersionsCommand.js +0 -40
- package/dist/es/commands/ListServiceTemplateVersionsCommand.js.map +0 -1
- package/dist/es/commands/ListServiceTemplatesCommand.js +0 -40
- package/dist/es/commands/ListServiceTemplatesCommand.js.map +0 -1
- package/dist/es/commands/ListServicesCommand.js +0 -40
- package/dist/es/commands/ListServicesCommand.js.map +0 -1
- package/dist/es/commands/ListTagsForResourceCommand.js +0 -40
- package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/es/commands/RejectEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/RejectEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/TagResourceCommand.js +0 -40
- package/dist/es/commands/TagResourceCommand.js.map +0 -1
- package/dist/es/commands/UntagResourceCommand.js +0 -40
- package/dist/es/commands/UntagResourceCommand.js.map +0 -1
- package/dist/es/commands/UpdateAccountSettingsCommand.js +0 -40
- package/dist/es/commands/UpdateAccountSettingsCommand.js.map +0 -1
- package/dist/es/commands/UpdateEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/UpdateEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/UpdateEnvironmentCommand.js +0 -40
- package/dist/es/commands/UpdateEnvironmentCommand.js.map +0 -1
- package/dist/es/commands/UpdateEnvironmentTemplateCommand.js +0 -40
- package/dist/es/commands/UpdateEnvironmentTemplateCommand.js.map +0 -1
- package/dist/es/commands/UpdateEnvironmentTemplateVersionCommand.js +0 -40
- package/dist/es/commands/UpdateEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/UpdateServiceCommand.js +0 -40
- package/dist/es/commands/UpdateServiceCommand.js.map +0 -1
- package/dist/es/commands/UpdateServiceInstanceCommand.js +0 -40
- package/dist/es/commands/UpdateServiceInstanceCommand.js.map +0 -1
- package/dist/es/commands/UpdateServicePipelineCommand.js +0 -40
- package/dist/es/commands/UpdateServicePipelineCommand.js.map +0 -1
- package/dist/es/commands/UpdateServiceTemplateCommand.js +0 -40
- package/dist/es/commands/UpdateServiceTemplateCommand.js.map +0 -1
- package/dist/es/commands/UpdateServiceTemplateVersionCommand.js +0 -40
- package/dist/es/commands/UpdateServiceTemplateVersionCommand.js.map +0 -1
- package/dist/es/endpoints.js +0 -53
- package/dist/es/endpoints.js.map +0 -1
- package/dist/es/index.js +0 -71
- package/dist/es/index.js.map +0 -1
- package/dist/es/models/index.js +0 -2
- package/dist/es/models/index.js.map +0 -1
- package/dist/es/models/models_0.js +0 -621
- package/dist/es/models/models_0.js.map +0 -1
- package/dist/es/package.json +0 -94
- package/dist/es/pagination/Interfaces.js +0 -2
- package/dist/es/pagination/Interfaces.js.map +0 -1
- package/dist/es/pagination/ListEnvironmentAccountConnectionsPaginator.js +0 -75
- package/dist/es/pagination/ListEnvironmentAccountConnectionsPaginator.js.map +0 -1
- package/dist/es/pagination/ListEnvironmentTemplateVersionsPaginator.js +0 -75
- package/dist/es/pagination/ListEnvironmentTemplateVersionsPaginator.js.map +0 -1
- package/dist/es/pagination/ListEnvironmentTemplatesPaginator.js +0 -75
- package/dist/es/pagination/ListEnvironmentTemplatesPaginator.js.map +0 -1
- package/dist/es/pagination/ListEnvironmentsPaginator.js +0 -75
- package/dist/es/pagination/ListEnvironmentsPaginator.js.map +0 -1
- package/dist/es/pagination/ListServiceInstancesPaginator.js +0 -75
- package/dist/es/pagination/ListServiceInstancesPaginator.js.map +0 -1
- package/dist/es/pagination/ListServiceTemplateVersionsPaginator.js +0 -75
- package/dist/es/pagination/ListServiceTemplateVersionsPaginator.js.map +0 -1
- package/dist/es/pagination/ListServiceTemplatesPaginator.js +0 -75
- package/dist/es/pagination/ListServiceTemplatesPaginator.js.map +0 -1
- package/dist/es/pagination/ListServicesPaginator.js +0 -75
- package/dist/es/pagination/ListServicesPaginator.js.map +0 -1
- package/dist/es/pagination/ListTagsForResourcePaginator.js +0 -75
- package/dist/es/pagination/ListTagsForResourcePaginator.js.map +0 -1
- package/dist/es/protocols/Aws_json1_0.js +0 -6336
- package/dist/es/protocols/Aws_json1_0.js.map +0 -1
- package/dist/es/runtimeConfig.browser.js +0 -17
- package/dist/es/runtimeConfig.browser.js.map +0 -1
- package/dist/es/runtimeConfig.js +0 -22
- package/dist/es/runtimeConfig.js.map +0 -1
- package/dist/es/runtimeConfig.native.js +0 -9
- package/dist/es/runtimeConfig.native.js.map +0 -1
- package/dist/es/runtimeConfig.shared.js +0 -14
- package/dist/es/runtimeConfig.shared.js.map +0 -1
- package/dist/es/waiters/waitForEnvironmentDeployed.js +0 -61
- package/dist/es/waiters/waitForEnvironmentDeployed.js.map +0 -1
- package/dist/es/waiters/waitForEnvironmentTemplateVersionRegistered.js +0 -70
- package/dist/es/waiters/waitForEnvironmentTemplateVersionRegistered.js.map +0 -1
- package/dist/es/waiters/waitForServiceCreated.js +0 -79
- package/dist/es/waiters/waitForServiceCreated.js.map +0 -1
- package/dist/es/waiters/waitForServiceDeleted.js +0 -55
- package/dist/es/waiters/waitForServiceDeleted.js.map +0 -1
- package/dist/es/waiters/waitForServiceInstanceDeployed.js +0 -61
- package/dist/es/waiters/waitForServiceInstanceDeployed.js.map +0 -1
- package/dist/es/waiters/waitForServicePipelineDeployed.js +0 -61
- package/dist/es/waiters/waitForServicePipelineDeployed.js.map +0 -1
- package/dist/es/waiters/waitForServiceTemplateVersionRegistered.js +0 -70
- package/dist/es/waiters/waitForServiceTemplateVersionRegistered.js.map +0 -1
- package/dist/es/waiters/waitForServiceUpdated.js +0 -88
- package/dist/es/waiters/waitForServiceUpdated.js.map +0 -1
- package/dist/types/Proton.d.ts +0 -704
- package/dist/types/ProtonClient.d.ts +0 -301
- package/dist/types/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +0 -39
- package/dist/types/commands/CancelEnvironmentDeploymentCommand.d.ts +0 -49
- package/dist/types/commands/CancelServiceInstanceDeploymentCommand.d.ts +0 -49
- package/dist/types/commands/CancelServicePipelineDeploymentCommand.d.ts +0 -49
- package/dist/types/commands/CreateEnvironmentAccountConnectionCommand.d.ts +0 -39
- package/dist/types/commands/CreateEnvironmentCommand.d.ts +0 -38
- package/dist/types/commands/CreateEnvironmentTemplateCommand.d.ts +0 -50
- package/dist/types/commands/CreateEnvironmentTemplateVersionCommand.d.ts +0 -37
- package/dist/types/commands/CreateServiceCommand.d.ts +0 -37
- package/dist/types/commands/CreateServiceTemplateCommand.d.ts +0 -39
- package/dist/types/commands/CreateServiceTemplateVersionCommand.d.ts +0 -37
- package/dist/types/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +0 -40
- package/dist/types/commands/DeleteEnvironmentCommand.d.ts +0 -35
- package/dist/types/commands/DeleteEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +0 -41
- package/dist/types/commands/DeleteServiceCommand.d.ts +0 -35
- package/dist/types/commands/DeleteServiceTemplateCommand.d.ts +0 -35
- package/dist/types/commands/DeleteServiceTemplateVersionCommand.d.ts +0 -41
- package/dist/types/commands/GetAccountSettingsCommand.d.ts +0 -35
- package/dist/types/commands/GetEnvironmentAccountConnectionCommand.d.ts +0 -37
- package/dist/types/commands/GetEnvironmentCommand.d.ts +0 -35
- package/dist/types/commands/GetEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/commands/GetEnvironmentTemplateVersionCommand.d.ts +0 -35
- package/dist/types/commands/GetServiceCommand.d.ts +0 -35
- package/dist/types/commands/GetServiceInstanceCommand.d.ts +0 -36
- package/dist/types/commands/GetServiceTemplateCommand.d.ts +0 -35
- package/dist/types/commands/GetServiceTemplateVersionCommand.d.ts +0 -35
- package/dist/types/commands/ListEnvironmentAccountConnectionsCommand.d.ts +0 -37
- package/dist/types/commands/ListEnvironmentTemplateVersionsCommand.d.ts +0 -35
- package/dist/types/commands/ListEnvironmentTemplatesCommand.d.ts +0 -35
- package/dist/types/commands/ListEnvironmentsCommand.d.ts +0 -35
- package/dist/types/commands/ListServiceInstancesCommand.d.ts +0 -35
- package/dist/types/commands/ListServiceTemplateVersionsCommand.d.ts +0 -35
- package/dist/types/commands/ListServiceTemplatesCommand.d.ts +0 -35
- package/dist/types/commands/ListServicesCommand.d.ts +0 -35
- package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -35
- package/dist/types/commands/RejectEnvironmentAccountConnectionCommand.d.ts +0 -40
- package/dist/types/commands/TagResourceCommand.d.ts +0 -35
- package/dist/types/commands/UntagResourceCommand.d.ts +0 -35
- package/dist/types/commands/UpdateAccountSettingsCommand.d.ts +0 -35
- package/dist/types/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +0 -37
- package/dist/types/commands/UpdateEnvironmentCommand.d.ts +0 -80
- package/dist/types/commands/UpdateEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +0 -35
- package/dist/types/commands/UpdateServiceCommand.d.ts +0 -41
- package/dist/types/commands/UpdateServiceInstanceCommand.d.ts +0 -73
- package/dist/types/commands/UpdateServicePipelineCommand.d.ts +0 -73
- package/dist/types/commands/UpdateServiceTemplateCommand.d.ts +0 -35
- package/dist/types/commands/UpdateServiceTemplateVersionCommand.d.ts +0 -35
- package/dist/types/pagination/Interfaces.d.ts +0 -6
- package/dist/types/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListEnvironmentTemplatesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListEnvironmentsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListServiceInstancesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListServiceTemplateVersionsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListServiceTemplatesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListServicesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListTagsForResourcePaginator.d.ts +0 -4
- package/dist/types/protocols/Aws_json1_0.d.ts +0 -149
- package/dist/types/runtimeConfig.d.ts +0 -37
- package/dist/types/ts3.4/Proton.d.ts +0 -704
- package/dist/types/ts3.4/ProtonClient.d.ts +0 -301
- package/dist/types/ts3.4/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/CancelEnvironmentDeploymentCommand.d.ts +0 -49
- package/dist/types/ts3.4/commands/CancelServiceInstanceDeploymentCommand.d.ts +0 -49
- package/dist/types/ts3.4/commands/CancelServicePipelineDeploymentCommand.d.ts +0 -49
- package/dist/types/ts3.4/commands/CreateEnvironmentAccountConnectionCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/CreateEnvironmentCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateEnvironmentTemplateCommand.d.ts +0 -50
- package/dist/types/ts3.4/commands/CreateEnvironmentTemplateVersionCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/CreateServiceCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/CreateServiceTemplateCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/CreateServiceTemplateVersionCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/DeleteServiceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteServiceTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteServiceTemplateVersionCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/GetAccountSettingsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetEnvironmentAccountConnectionCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/GetEnvironmentCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetEnvironmentTemplateVersionCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetServiceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetServiceInstanceCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/GetServiceTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetServiceTemplateVersionCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListEnvironmentAccountConnectionsCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListEnvironmentTemplateVersionsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListEnvironmentTemplatesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListEnvironmentsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListServiceInstancesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListServiceTemplateVersionsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListServiceTemplatesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListServicesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/RejectEnvironmentAccountConnectionCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +0 -80
- package/dist/types/ts3.4/commands/UpdateEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateServiceCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/UpdateServiceInstanceCommand.d.ts +0 -73
- package/dist/types/ts3.4/commands/UpdateServicePipelineCommand.d.ts +0 -73
- package/dist/types/ts3.4/commands/UpdateServiceTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateServiceTemplateVersionCommand.d.ts +0 -35
- package/dist/types/ts3.4/models/models_0.d.ts +0 -2996
- package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist/types/ts3.4/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListEnvironmentTemplatesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListServiceInstancesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListServiceTemplateVersionsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListServiceTemplatesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListServicesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +0 -4
- package/dist/types/ts3.4/protocols/Aws_json1_0.d.ts +0 -149
- package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -37
- package/dist/types/ts3.4/runtimeConfig.d.ts +0 -37
- package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.shared.d.ts +0 -13
- package/dist/types/ts3.4/waiters/waitForEnvironmentDeployed.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServiceCreated.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServiceDeleted.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServiceInstanceDeployed.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServicePipelineDeployed.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServiceTemplateVersionRegistered.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServiceUpdated.d.ts +0 -14
- package/dist/types/waiters/waitForEnvironmentDeployed.d.ts +0 -14
- package/dist/types/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +0 -14
- package/dist/types/waiters/waitForServiceCreated.d.ts +0 -14
- package/dist/types/waiters/waitForServiceDeleted.d.ts +0 -14
- package/dist/types/waiters/waitForServiceInstanceDeployed.d.ts +0 -14
- package/dist/types/waiters/waitForServicePipelineDeployed.d.ts +0 -14
- package/dist/types/waiters/waitForServiceTemplateVersionRegistered.d.ts +0 -14
- package/dist/types/waiters/waitForServiceUpdated.d.ts +0 -14
- package/endpoints.ts +0 -57
- package/jest.config.js +0 -4
- package/models/models_0.ts +0 -3943
- package/pagination/Interfaces.ts +0 -7
- package/pagination/ListEnvironmentAccountConnectionsPaginator.ts +0 -58
- package/pagination/ListEnvironmentTemplateVersionsPaginator.ts +0 -58
- package/pagination/ListEnvironmentTemplatesPaginator.ts +0 -58
- package/pagination/ListEnvironmentsPaginator.ts +0 -58
- package/pagination/ListServiceInstancesPaginator.ts +0 -58
- package/pagination/ListServiceTemplateVersionsPaginator.ts +0 -58
- package/pagination/ListServiceTemplatesPaginator.ts +0 -58
- package/pagination/ListServicesPaginator.ts +0 -58
- package/pagination/ListTagsForResourcePaginator.ts +0 -58
- package/protocols/Aws_json1_0.ts +0 -7421
- package/runtimeConfig.browser.ts +0 -40
- package/runtimeConfig.native.ts +0 -16
- package/runtimeConfig.shared.ts +0 -16
- package/runtimeConfig.ts +0 -45
- package/tsconfig.es.json +0 -10
- package/tsconfig.json +0 -31
- package/tsconfig.types.json +0 -8
- package/waiters/waitForEnvironmentDeployed.ts +0 -54
- package/waiters/waitForEnvironmentTemplateVersionRegistered.ts +0 -68
- package/waiters/waitForServiceCreated.ts +0 -70
- package/waiters/waitForServiceDeleted.ts +0 -49
- package/waiters/waitForServiceInstanceDeployed.ts +0 -54
- package/waiters/waitForServicePipelineDeployed.ts +0 -54
- package/waiters/waitForServiceTemplateVersionRegistered.ts +0 -68
- package/waiters/waitForServiceUpdated.ts +0 -78
package/models/models_0.ts
DELETED
|
@@ -1,3943 +0,0 @@
|
|
|
1
|
-
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
3
|
-
|
|
4
|
-
export interface AcceptEnvironmentAccountConnectionInput {
|
|
5
|
-
/**
|
|
6
|
-
* <p>The ID of the environment account connection.</p>
|
|
7
|
-
*/
|
|
8
|
-
id: string | undefined;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export namespace AcceptEnvironmentAccountConnectionInput {
|
|
12
|
-
/**
|
|
13
|
-
* @internal
|
|
14
|
-
*/
|
|
15
|
-
export const filterSensitiveLog = (obj: AcceptEnvironmentAccountConnectionInput): any => ({
|
|
16
|
-
...obj,
|
|
17
|
-
});
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export enum EnvironmentAccountConnectionStatus {
|
|
21
|
-
CONNECTED = "CONNECTED",
|
|
22
|
-
PENDING = "PENDING",
|
|
23
|
-
REJECTED = "REJECTED",
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* <p>The environment account connection detail data.</p>
|
|
28
|
-
*/
|
|
29
|
-
export interface EnvironmentAccountConnection {
|
|
30
|
-
/**
|
|
31
|
-
* <p>The ID of the environment account connection.</p>
|
|
32
|
-
*/
|
|
33
|
-
id: string | undefined;
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* <p>The Amazon Resource Name (ARN) of the environment account connection.</p>
|
|
37
|
-
*/
|
|
38
|
-
arn: string | undefined;
|
|
39
|
-
|
|
40
|
-
/**
|
|
41
|
-
* <p>The ID of the management account that's connected to the environment account connection.</p>
|
|
42
|
-
*/
|
|
43
|
-
managementAccountId: string | undefined;
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* <p>The environment account that's connected to the environment account connection.</p>
|
|
47
|
-
*/
|
|
48
|
-
environmentAccountId: string | undefined;
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
* <p>The IAM service role that's associated with the environment account connection.</p>
|
|
52
|
-
*/
|
|
53
|
-
roleArn: string | undefined;
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* <p>The name of the environment that's associated with the environment account connection.</p>
|
|
57
|
-
*/
|
|
58
|
-
environmentName: string | undefined;
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* <p>The time when the environment account connection request was made.</p>
|
|
62
|
-
*/
|
|
63
|
-
requestedAt: Date | undefined;
|
|
64
|
-
|
|
65
|
-
/**
|
|
66
|
-
* <p>The time when the environment account connection was last modified.</p>
|
|
67
|
-
*/
|
|
68
|
-
lastModifiedAt: Date | undefined;
|
|
69
|
-
|
|
70
|
-
/**
|
|
71
|
-
* <p>The status of the environment account connection.</p>
|
|
72
|
-
*/
|
|
73
|
-
status: EnvironmentAccountConnectionStatus | string | undefined;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
export namespace EnvironmentAccountConnection {
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
export const filterSensitiveLog = (obj: EnvironmentAccountConnection): any => ({
|
|
81
|
-
...obj,
|
|
82
|
-
});
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export interface AcceptEnvironmentAccountConnectionOutput {
|
|
86
|
-
/**
|
|
87
|
-
* <p>The environment account connection data that's returned by AWS Proton.</p>
|
|
88
|
-
*/
|
|
89
|
-
environmentAccountConnection: EnvironmentAccountConnection | undefined;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
export namespace AcceptEnvironmentAccountConnectionOutput {
|
|
93
|
-
/**
|
|
94
|
-
* @internal
|
|
95
|
-
*/
|
|
96
|
-
export const filterSensitiveLog = (obj: AcceptEnvironmentAccountConnectionOutput): any => ({
|
|
97
|
-
...obj,
|
|
98
|
-
});
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
/**
|
|
102
|
-
* <p>There <i>isn't</i> sufficient access for performing this action.</p>
|
|
103
|
-
*/
|
|
104
|
-
export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
|
|
105
|
-
name: "AccessDeniedException";
|
|
106
|
-
$fault: "client";
|
|
107
|
-
message: string | undefined;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
export namespace AccessDeniedException {
|
|
111
|
-
/**
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
export const filterSensitiveLog = (obj: AccessDeniedException): any => ({
|
|
115
|
-
...obj,
|
|
116
|
-
...(obj.message && { message: SENSITIVE_STRING }),
|
|
117
|
-
});
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
/**
|
|
121
|
-
* <p>The request <i>couldn't</i> be made due to a conflicting operation or resource.</p>
|
|
122
|
-
*/
|
|
123
|
-
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
124
|
-
name: "ConflictException";
|
|
125
|
-
$fault: "client";
|
|
126
|
-
message: string | undefined;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
export namespace ConflictException {
|
|
130
|
-
/**
|
|
131
|
-
* @internal
|
|
132
|
-
*/
|
|
133
|
-
export const filterSensitiveLog = (obj: ConflictException): any => ({
|
|
134
|
-
...obj,
|
|
135
|
-
...(obj.message && { message: SENSITIVE_STRING }),
|
|
136
|
-
});
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
/**
|
|
140
|
-
* <p>The request failed to register with the service.</p>
|
|
141
|
-
*/
|
|
142
|
-
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
143
|
-
name: "InternalServerException";
|
|
144
|
-
$fault: "server";
|
|
145
|
-
$retryable: {};
|
|
146
|
-
message: string | undefined;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
export namespace InternalServerException {
|
|
150
|
-
/**
|
|
151
|
-
* @internal
|
|
152
|
-
*/
|
|
153
|
-
export const filterSensitiveLog = (obj: InternalServerException): any => ({
|
|
154
|
-
...obj,
|
|
155
|
-
...(obj.message && { message: SENSITIVE_STRING }),
|
|
156
|
-
});
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
/**
|
|
160
|
-
* <p>The requested resource <i>wasn't</i> found.</p>
|
|
161
|
-
*/
|
|
162
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
163
|
-
name: "ResourceNotFoundException";
|
|
164
|
-
$fault: "client";
|
|
165
|
-
message: string | undefined;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
export namespace ResourceNotFoundException {
|
|
169
|
-
/**
|
|
170
|
-
* @internal
|
|
171
|
-
*/
|
|
172
|
-
export const filterSensitiveLog = (obj: ResourceNotFoundException): any => ({
|
|
173
|
-
...obj,
|
|
174
|
-
...(obj.message && { message: SENSITIVE_STRING }),
|
|
175
|
-
});
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
/**
|
|
179
|
-
* <p>The request was denied due to request throttling.</p>
|
|
180
|
-
*/
|
|
181
|
-
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
182
|
-
name: "ThrottlingException";
|
|
183
|
-
$fault: "client";
|
|
184
|
-
$retryable: {
|
|
185
|
-
throttling: true;
|
|
186
|
-
};
|
|
187
|
-
message: string | undefined;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
export namespace ThrottlingException {
|
|
191
|
-
/**
|
|
192
|
-
* @internal
|
|
193
|
-
*/
|
|
194
|
-
export const filterSensitiveLog = (obj: ThrottlingException): any => ({
|
|
195
|
-
...obj,
|
|
196
|
-
...(obj.message && { message: SENSITIVE_STRING }),
|
|
197
|
-
});
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
/**
|
|
201
|
-
* <p>The input is invalid or an out-of-range value was supplied for the input parameter.</p>
|
|
202
|
-
*/
|
|
203
|
-
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
204
|
-
name: "ValidationException";
|
|
205
|
-
$fault: "client";
|
|
206
|
-
message: string | undefined;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
export namespace ValidationException {
|
|
210
|
-
/**
|
|
211
|
-
* @internal
|
|
212
|
-
*/
|
|
213
|
-
export const filterSensitiveLog = (obj: ValidationException): any => ({
|
|
214
|
-
...obj,
|
|
215
|
-
...(obj.message && { message: SENSITIVE_STRING }),
|
|
216
|
-
});
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
* <p>The AWS Proton pipeline service role data.</p>
|
|
221
|
-
*/
|
|
222
|
-
export interface AccountSettings {
|
|
223
|
-
/**
|
|
224
|
-
* <p>The Amazon Resource Name (ARN) of the AWS Proton pipeline service role.</p>
|
|
225
|
-
*/
|
|
226
|
-
pipelineServiceRoleArn?: string;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
export namespace AccountSettings {
|
|
230
|
-
/**
|
|
231
|
-
* @internal
|
|
232
|
-
*/
|
|
233
|
-
export const filterSensitiveLog = (obj: AccountSettings): any => ({
|
|
234
|
-
...obj,
|
|
235
|
-
});
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
export interface GetAccountSettingsInput {}
|
|
239
|
-
|
|
240
|
-
export namespace GetAccountSettingsInput {
|
|
241
|
-
/**
|
|
242
|
-
* @internal
|
|
243
|
-
*/
|
|
244
|
-
export const filterSensitiveLog = (obj: GetAccountSettingsInput): any => ({
|
|
245
|
-
...obj,
|
|
246
|
-
});
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
export interface GetAccountSettingsOutput {
|
|
250
|
-
/**
|
|
251
|
-
* <p>The AWS Proton pipeline service role detail data that's returned by AWS Proton.</p>
|
|
252
|
-
*/
|
|
253
|
-
accountSettings?: AccountSettings;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
export namespace GetAccountSettingsOutput {
|
|
257
|
-
/**
|
|
258
|
-
* @internal
|
|
259
|
-
*/
|
|
260
|
-
export const filterSensitiveLog = (obj: GetAccountSettingsOutput): any => ({
|
|
261
|
-
...obj,
|
|
262
|
-
});
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
export interface UpdateAccountSettingsInput {
|
|
266
|
-
/**
|
|
267
|
-
* <p>The Amazon Resource Name (ARN) of the AWS Proton pipeline service role.</p>
|
|
268
|
-
*/
|
|
269
|
-
pipelineServiceRoleArn?: string;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
export namespace UpdateAccountSettingsInput {
|
|
273
|
-
/**
|
|
274
|
-
* @internal
|
|
275
|
-
*/
|
|
276
|
-
export const filterSensitiveLog = (obj: UpdateAccountSettingsInput): any => ({
|
|
277
|
-
...obj,
|
|
278
|
-
});
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
export interface UpdateAccountSettingsOutput {
|
|
282
|
-
/**
|
|
283
|
-
* <p>The AWS Proton pipeline service role detail data that's returned by AWS Proton.</p>
|
|
284
|
-
*/
|
|
285
|
-
accountSettings: AccountSettings | undefined;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
export namespace UpdateAccountSettingsOutput {
|
|
289
|
-
/**
|
|
290
|
-
* @internal
|
|
291
|
-
*/
|
|
292
|
-
export const filterSensitiveLog = (obj: UpdateAccountSettingsOutput): any => ({
|
|
293
|
-
...obj,
|
|
294
|
-
});
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
export interface CancelEnvironmentDeploymentInput {
|
|
298
|
-
/**
|
|
299
|
-
* <p>The name of the environment with the deployment to cancel.</p>
|
|
300
|
-
*/
|
|
301
|
-
environmentName: string | undefined;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
export namespace CancelEnvironmentDeploymentInput {
|
|
305
|
-
/**
|
|
306
|
-
* @internal
|
|
307
|
-
*/
|
|
308
|
-
export const filterSensitiveLog = (obj: CancelEnvironmentDeploymentInput): any => ({
|
|
309
|
-
...obj,
|
|
310
|
-
});
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
export enum DeploymentStatus {
|
|
314
|
-
CANCELLED = "CANCELLED",
|
|
315
|
-
CANCELLING = "CANCELLING",
|
|
316
|
-
DELETE_COMPLETE = "DELETE_COMPLETE",
|
|
317
|
-
DELETE_FAILED = "DELETE_FAILED",
|
|
318
|
-
DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
|
|
319
|
-
FAILED = "FAILED",
|
|
320
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
321
|
-
SUCCEEDED = "SUCCEEDED",
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
export enum Provisioning {
|
|
325
|
-
CUSTOMER_MANAGED = "CUSTOMER_MANAGED",
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
/**
|
|
329
|
-
* <p>The environment detail data. An AWS Proton environment is a set resources shared across an AWS Proton service.</p>
|
|
330
|
-
*/
|
|
331
|
-
export interface Environment {
|
|
332
|
-
/**
|
|
333
|
-
* <p>The name of the environment.</p>
|
|
334
|
-
*/
|
|
335
|
-
name: string | undefined;
|
|
336
|
-
|
|
337
|
-
/**
|
|
338
|
-
* <p>The description of the environment.</p>
|
|
339
|
-
*/
|
|
340
|
-
description?: string;
|
|
341
|
-
|
|
342
|
-
/**
|
|
343
|
-
* <p>The time when the environment was created.</p>
|
|
344
|
-
*/
|
|
345
|
-
createdAt: Date | undefined;
|
|
346
|
-
|
|
347
|
-
/**
|
|
348
|
-
* <p>The time when a deployment of the environment was last attempted.</p>
|
|
349
|
-
*/
|
|
350
|
-
lastDeploymentAttemptedAt: Date | undefined;
|
|
351
|
-
|
|
352
|
-
/**
|
|
353
|
-
* <p>The time when the environment was last deployed successfully.</p>
|
|
354
|
-
*/
|
|
355
|
-
lastDeploymentSucceededAt: Date | undefined;
|
|
356
|
-
|
|
357
|
-
/**
|
|
358
|
-
* <p>The Amazon Resource Name (ARN) of the environment.</p>
|
|
359
|
-
*/
|
|
360
|
-
arn: string | undefined;
|
|
361
|
-
|
|
362
|
-
/**
|
|
363
|
-
* <p>The Amazon Resource Name (ARN) of the environment template.</p>
|
|
364
|
-
*/
|
|
365
|
-
templateName: string | undefined;
|
|
366
|
-
|
|
367
|
-
/**
|
|
368
|
-
* <p>The ID of the major version of the environment template.</p>
|
|
369
|
-
*/
|
|
370
|
-
templateMajorVersion: string | undefined;
|
|
371
|
-
|
|
372
|
-
/**
|
|
373
|
-
* <p>The ID of the minor version of the environment template.</p>
|
|
374
|
-
*/
|
|
375
|
-
templateMinorVersion: string | undefined;
|
|
376
|
-
|
|
377
|
-
/**
|
|
378
|
-
* <p>The environment deployment status.</p>
|
|
379
|
-
*/
|
|
380
|
-
deploymentStatus: DeploymentStatus | string | undefined;
|
|
381
|
-
|
|
382
|
-
/**
|
|
383
|
-
* <p>An environment deployment status message.</p>
|
|
384
|
-
*/
|
|
385
|
-
deploymentStatusMessage?: string;
|
|
386
|
-
|
|
387
|
-
/**
|
|
388
|
-
* <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make calls to other services on your
|
|
389
|
-
* behalf.</p>
|
|
390
|
-
*/
|
|
391
|
-
protonServiceRoleArn?: string;
|
|
392
|
-
|
|
393
|
-
/**
|
|
394
|
-
* <p>The ID of the environment account connection that's used to provision infrastructure resources in an environment account.</p>
|
|
395
|
-
*/
|
|
396
|
-
environmentAccountConnectionId?: string;
|
|
397
|
-
|
|
398
|
-
/**
|
|
399
|
-
* <p>The ID of the environment account that the environment infrastructure resources are provisioned in.</p>
|
|
400
|
-
*/
|
|
401
|
-
environmentAccountId?: string;
|
|
402
|
-
|
|
403
|
-
/**
|
|
404
|
-
* <p>The environment spec.</p>
|
|
405
|
-
*/
|
|
406
|
-
spec?: string;
|
|
407
|
-
|
|
408
|
-
/**
|
|
409
|
-
* <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
|
|
410
|
-
*/
|
|
411
|
-
provisioning?: Provisioning | string;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
export namespace Environment {
|
|
415
|
-
/**
|
|
416
|
-
* @internal
|
|
417
|
-
*/
|
|
418
|
-
export const filterSensitiveLog = (obj: Environment): any => ({
|
|
419
|
-
...obj,
|
|
420
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
421
|
-
...(obj.deploymentStatusMessage && { deploymentStatusMessage: SENSITIVE_STRING }),
|
|
422
|
-
...(obj.spec && { spec: SENSITIVE_STRING }),
|
|
423
|
-
});
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
export interface CancelEnvironmentDeploymentOutput {
|
|
427
|
-
/**
|
|
428
|
-
* <p>The environment summary data that's returned by AWS Proton.</p>
|
|
429
|
-
*/
|
|
430
|
-
environment: Environment | undefined;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
export namespace CancelEnvironmentDeploymentOutput {
|
|
434
|
-
/**
|
|
435
|
-
* @internal
|
|
436
|
-
*/
|
|
437
|
-
export const filterSensitiveLog = (obj: CancelEnvironmentDeploymentOutput): any => ({
|
|
438
|
-
...obj,
|
|
439
|
-
...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
|
|
440
|
-
});
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
export interface CancelServiceInstanceDeploymentInput {
|
|
444
|
-
/**
|
|
445
|
-
* <p>The name of the service instance with the deployment to cancel.</p>
|
|
446
|
-
*/
|
|
447
|
-
serviceInstanceName: string | undefined;
|
|
448
|
-
|
|
449
|
-
/**
|
|
450
|
-
* <p>The name of the service with the service instance deployment to cancel.</p>
|
|
451
|
-
*/
|
|
452
|
-
serviceName: string | undefined;
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
export namespace CancelServiceInstanceDeploymentInput {
|
|
456
|
-
/**
|
|
457
|
-
* @internal
|
|
458
|
-
*/
|
|
459
|
-
export const filterSensitiveLog = (obj: CancelServiceInstanceDeploymentInput): any => ({
|
|
460
|
-
...obj,
|
|
461
|
-
});
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
/**
|
|
465
|
-
* <p>The service instance detail data.</p>
|
|
466
|
-
*/
|
|
467
|
-
export interface ServiceInstance {
|
|
468
|
-
/**
|
|
469
|
-
* <p>The name of the service instance.</p>
|
|
470
|
-
*/
|
|
471
|
-
name: string | undefined;
|
|
472
|
-
|
|
473
|
-
/**
|
|
474
|
-
* <p>The Amazon Resource Name (ARN) of the service instance.</p>
|
|
475
|
-
*/
|
|
476
|
-
arn: string | undefined;
|
|
477
|
-
|
|
478
|
-
/**
|
|
479
|
-
* <p>The time when the service instance was created.</p>
|
|
480
|
-
*/
|
|
481
|
-
createdAt: Date | undefined;
|
|
482
|
-
|
|
483
|
-
/**
|
|
484
|
-
* <p>The time when a deployment of the service instance was last attempted.</p>
|
|
485
|
-
*/
|
|
486
|
-
lastDeploymentAttemptedAt: Date | undefined;
|
|
487
|
-
|
|
488
|
-
/**
|
|
489
|
-
* <p>The time when the service instance was last deployed successfully.</p>
|
|
490
|
-
*/
|
|
491
|
-
lastDeploymentSucceededAt: Date | undefined;
|
|
492
|
-
|
|
493
|
-
/**
|
|
494
|
-
* <p>The name of the service that the service instance belongs to.</p>
|
|
495
|
-
*/
|
|
496
|
-
serviceName: string | undefined;
|
|
497
|
-
|
|
498
|
-
/**
|
|
499
|
-
* <p>The name of the environment that the service instance was deployed into.</p>
|
|
500
|
-
*/
|
|
501
|
-
environmentName: string | undefined;
|
|
502
|
-
|
|
503
|
-
/**
|
|
504
|
-
* <p>The name of the service template that was used to create the service instance.</p>
|
|
505
|
-
*/
|
|
506
|
-
templateName: string | undefined;
|
|
507
|
-
|
|
508
|
-
/**
|
|
509
|
-
* <p>The ID of the major version of the service template that was used to create the service instance.</p>
|
|
510
|
-
*/
|
|
511
|
-
templateMajorVersion: string | undefined;
|
|
512
|
-
|
|
513
|
-
/**
|
|
514
|
-
* <p>The ID of the minor version of the service template that was used to create the service instance.</p>
|
|
515
|
-
*/
|
|
516
|
-
templateMinorVersion: string | undefined;
|
|
517
|
-
|
|
518
|
-
/**
|
|
519
|
-
* <p>The service instance deployment status.</p>
|
|
520
|
-
*/
|
|
521
|
-
deploymentStatus: DeploymentStatus | string | undefined;
|
|
522
|
-
|
|
523
|
-
/**
|
|
524
|
-
* <p>A service instance deployment status message.</p>
|
|
525
|
-
*/
|
|
526
|
-
deploymentStatusMessage?: string;
|
|
527
|
-
|
|
528
|
-
/**
|
|
529
|
-
* <p>The service spec that was used to create the service instance.</p>
|
|
530
|
-
*/
|
|
531
|
-
spec?: string;
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
export namespace ServiceInstance {
|
|
535
|
-
/**
|
|
536
|
-
* @internal
|
|
537
|
-
*/
|
|
538
|
-
export const filterSensitiveLog = (obj: ServiceInstance): any => ({
|
|
539
|
-
...obj,
|
|
540
|
-
...(obj.deploymentStatusMessage && { deploymentStatusMessage: SENSITIVE_STRING }),
|
|
541
|
-
...(obj.spec && { spec: SENSITIVE_STRING }),
|
|
542
|
-
});
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
export interface CancelServiceInstanceDeploymentOutput {
|
|
546
|
-
/**
|
|
547
|
-
* <p>The service instance summary data that's returned by AWS Proton.</p>
|
|
548
|
-
*/
|
|
549
|
-
serviceInstance: ServiceInstance | undefined;
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
export namespace CancelServiceInstanceDeploymentOutput {
|
|
553
|
-
/**
|
|
554
|
-
* @internal
|
|
555
|
-
*/
|
|
556
|
-
export const filterSensitiveLog = (obj: CancelServiceInstanceDeploymentOutput): any => ({
|
|
557
|
-
...obj,
|
|
558
|
-
...(obj.serviceInstance && { serviceInstance: ServiceInstance.filterSensitiveLog(obj.serviceInstance) }),
|
|
559
|
-
});
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
export interface CancelServicePipelineDeploymentInput {
|
|
563
|
-
/**
|
|
564
|
-
* <p>The name of the service with the service pipeline deployment to cancel.</p>
|
|
565
|
-
*/
|
|
566
|
-
serviceName: string | undefined;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
export namespace CancelServicePipelineDeploymentInput {
|
|
570
|
-
/**
|
|
571
|
-
* @internal
|
|
572
|
-
*/
|
|
573
|
-
export const filterSensitiveLog = (obj: CancelServicePipelineDeploymentInput): any => ({
|
|
574
|
-
...obj,
|
|
575
|
-
});
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
/**
|
|
579
|
-
* <p>The service pipeline detail data.</p>
|
|
580
|
-
*/
|
|
581
|
-
export interface ServicePipeline {
|
|
582
|
-
/**
|
|
583
|
-
* <p>The Amazon Resource Name (ARN) of the service pipeline.</p>
|
|
584
|
-
*/
|
|
585
|
-
arn: string | undefined;
|
|
586
|
-
|
|
587
|
-
/**
|
|
588
|
-
* <p>The time when the service pipeline was created.</p>
|
|
589
|
-
*/
|
|
590
|
-
createdAt: Date | undefined;
|
|
591
|
-
|
|
592
|
-
/**
|
|
593
|
-
* <p>The time when a deployment of the service pipeline was last attempted.</p>
|
|
594
|
-
*/
|
|
595
|
-
lastDeploymentAttemptedAt: Date | undefined;
|
|
596
|
-
|
|
597
|
-
/**
|
|
598
|
-
* <p>The time when the service pipeline was last deployed successfully.</p>
|
|
599
|
-
*/
|
|
600
|
-
lastDeploymentSucceededAt: Date | undefined;
|
|
601
|
-
|
|
602
|
-
/**
|
|
603
|
-
* <p>The name of the service template that was used to create the service pipeline.</p>
|
|
604
|
-
*/
|
|
605
|
-
templateName: string | undefined;
|
|
606
|
-
|
|
607
|
-
/**
|
|
608
|
-
* <p>The ID of the major version of the service template that was used to create the service pipeline.</p>
|
|
609
|
-
*/
|
|
610
|
-
templateMajorVersion: string | undefined;
|
|
611
|
-
|
|
612
|
-
/**
|
|
613
|
-
* <p>The ID of the minor version of the service template that was used to create the service pipeline.</p>
|
|
614
|
-
*/
|
|
615
|
-
templateMinorVersion: string | undefined;
|
|
616
|
-
|
|
617
|
-
/**
|
|
618
|
-
* <p>The deployment status of the service pipeline.</p>
|
|
619
|
-
*/
|
|
620
|
-
deploymentStatus: DeploymentStatus | string | undefined;
|
|
621
|
-
|
|
622
|
-
/**
|
|
623
|
-
* <p>A service pipeline deployment status message.</p>
|
|
624
|
-
*/
|
|
625
|
-
deploymentStatusMessage?: string;
|
|
626
|
-
|
|
627
|
-
/**
|
|
628
|
-
* <p>The service spec that was used to create the service pipeline.</p>
|
|
629
|
-
*/
|
|
630
|
-
spec?: string;
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
export namespace ServicePipeline {
|
|
634
|
-
/**
|
|
635
|
-
* @internal
|
|
636
|
-
*/
|
|
637
|
-
export const filterSensitiveLog = (obj: ServicePipeline): any => ({
|
|
638
|
-
...obj,
|
|
639
|
-
...(obj.deploymentStatusMessage && { deploymentStatusMessage: SENSITIVE_STRING }),
|
|
640
|
-
...(obj.spec && { spec: SENSITIVE_STRING }),
|
|
641
|
-
});
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
export interface CancelServicePipelineDeploymentOutput {
|
|
645
|
-
/**
|
|
646
|
-
* <p>The service pipeline detail data that's returned by AWS Proton.</p>
|
|
647
|
-
*/
|
|
648
|
-
pipeline: ServicePipeline | undefined;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
export namespace CancelServicePipelineDeploymentOutput {
|
|
652
|
-
/**
|
|
653
|
-
* @internal
|
|
654
|
-
*/
|
|
655
|
-
export const filterSensitiveLog = (obj: CancelServicePipelineDeploymentOutput): any => ({
|
|
656
|
-
...obj,
|
|
657
|
-
...(obj.pipeline && { pipeline: ServicePipeline.filterSensitiveLog(obj.pipeline) }),
|
|
658
|
-
});
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
export interface CreateEnvironmentAccountConnectionInput {
|
|
662
|
-
/**
|
|
663
|
-
* <p>When included, if two identicial requests are made with the same client token, AWS Proton returns the environment account connection that
|
|
664
|
-
* the first request created.</p>
|
|
665
|
-
*/
|
|
666
|
-
clientToken?: string;
|
|
667
|
-
|
|
668
|
-
/**
|
|
669
|
-
* <p>The ID of the management account that accepts or rejects the environment account connection. You create an manage the AWS Proton
|
|
670
|
-
* environment in this account. If the management account accepts the environment account connection, AWS Proton can use the associated IAM
|
|
671
|
-
* role to provision environment infrastructure resources in the associated environment account.</p>
|
|
672
|
-
*/
|
|
673
|
-
managementAccountId: string | undefined;
|
|
674
|
-
|
|
675
|
-
/**
|
|
676
|
-
* <p>The Amazon Resource Name (ARN) of the IAM service role that's created in the environment account. AWS Proton uses this role to provision
|
|
677
|
-
* infrastructure resources in the associated environment account.</p>
|
|
678
|
-
*/
|
|
679
|
-
roleArn: string | undefined;
|
|
680
|
-
|
|
681
|
-
/**
|
|
682
|
-
* <p>The name of the AWS Proton environment that's created in the associated management account.</p>
|
|
683
|
-
*/
|
|
684
|
-
environmentName: string | undefined;
|
|
685
|
-
}
|
|
686
|
-
|
|
687
|
-
export namespace CreateEnvironmentAccountConnectionInput {
|
|
688
|
-
/**
|
|
689
|
-
* @internal
|
|
690
|
-
*/
|
|
691
|
-
export const filterSensitiveLog = (obj: CreateEnvironmentAccountConnectionInput): any => ({
|
|
692
|
-
...obj,
|
|
693
|
-
});
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
export interface CreateEnvironmentAccountConnectionOutput {
|
|
697
|
-
/**
|
|
698
|
-
* <p>The environment account connection detail data that's returned by AWS Proton.</p>
|
|
699
|
-
*/
|
|
700
|
-
environmentAccountConnection: EnvironmentAccountConnection | undefined;
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
export namespace CreateEnvironmentAccountConnectionOutput {
|
|
704
|
-
/**
|
|
705
|
-
* @internal
|
|
706
|
-
*/
|
|
707
|
-
export const filterSensitiveLog = (obj: CreateEnvironmentAccountConnectionOutput): any => ({
|
|
708
|
-
...obj,
|
|
709
|
-
});
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
/**
|
|
713
|
-
* <p>A quota was exceeded. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-limits.html">AWS Proton
|
|
714
|
-
* Quotas</a> in the <i>AWS Proton Administrator Guide</i>.</p>
|
|
715
|
-
*/
|
|
716
|
-
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
717
|
-
name: "ServiceQuotaExceededException";
|
|
718
|
-
$fault: "client";
|
|
719
|
-
message: string | undefined;
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
export namespace ServiceQuotaExceededException {
|
|
723
|
-
/**
|
|
724
|
-
* @internal
|
|
725
|
-
*/
|
|
726
|
-
export const filterSensitiveLog = (obj: ServiceQuotaExceededException): any => ({
|
|
727
|
-
...obj,
|
|
728
|
-
...(obj.message && { message: SENSITIVE_STRING }),
|
|
729
|
-
});
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
export interface DeleteEnvironmentAccountConnectionInput {
|
|
733
|
-
/**
|
|
734
|
-
* <p>The ID of the environment account connection to delete.</p>
|
|
735
|
-
*/
|
|
736
|
-
id: string | undefined;
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
export namespace DeleteEnvironmentAccountConnectionInput {
|
|
740
|
-
/**
|
|
741
|
-
* @internal
|
|
742
|
-
*/
|
|
743
|
-
export const filterSensitiveLog = (obj: DeleteEnvironmentAccountConnectionInput): any => ({
|
|
744
|
-
...obj,
|
|
745
|
-
});
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
export interface DeleteEnvironmentAccountConnectionOutput {
|
|
749
|
-
/**
|
|
750
|
-
* <p>The environment account connection detail data that's returned by AWS Proton.</p>
|
|
751
|
-
*/
|
|
752
|
-
environmentAccountConnection?: EnvironmentAccountConnection;
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
export namespace DeleteEnvironmentAccountConnectionOutput {
|
|
756
|
-
/**
|
|
757
|
-
* @internal
|
|
758
|
-
*/
|
|
759
|
-
export const filterSensitiveLog = (obj: DeleteEnvironmentAccountConnectionOutput): any => ({
|
|
760
|
-
...obj,
|
|
761
|
-
});
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
export interface GetEnvironmentAccountConnectionInput {
|
|
765
|
-
/**
|
|
766
|
-
* <p>The ID of the environment account connection.</p>
|
|
767
|
-
*/
|
|
768
|
-
id: string | undefined;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
export namespace GetEnvironmentAccountConnectionInput {
|
|
772
|
-
/**
|
|
773
|
-
* @internal
|
|
774
|
-
*/
|
|
775
|
-
export const filterSensitiveLog = (obj: GetEnvironmentAccountConnectionInput): any => ({
|
|
776
|
-
...obj,
|
|
777
|
-
});
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
export interface GetEnvironmentAccountConnectionOutput {
|
|
781
|
-
/**
|
|
782
|
-
* <p>The environment account connection detail data that's returned by AWS Proton.</p>
|
|
783
|
-
*/
|
|
784
|
-
environmentAccountConnection: EnvironmentAccountConnection | undefined;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
export namespace GetEnvironmentAccountConnectionOutput {
|
|
788
|
-
/**
|
|
789
|
-
* @internal
|
|
790
|
-
*/
|
|
791
|
-
export const filterSensitiveLog = (obj: GetEnvironmentAccountConnectionOutput): any => ({
|
|
792
|
-
...obj,
|
|
793
|
-
});
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
export enum EnvironmentAccountConnectionRequesterAccountType {
|
|
797
|
-
ENVIRONMENT_ACCOUNT = "ENVIRONMENT_ACCOUNT",
|
|
798
|
-
MANAGEMENT_ACCOUNT = "MANAGEMENT_ACCOUNT",
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
export interface ListEnvironmentAccountConnectionsInput {
|
|
802
|
-
/**
|
|
803
|
-
* <p>The type of account making the <code>ListEnvironmentAccountConnections</code> request.</p>
|
|
804
|
-
*/
|
|
805
|
-
requestedBy: EnvironmentAccountConnectionRequesterAccountType | string | undefined;
|
|
806
|
-
|
|
807
|
-
/**
|
|
808
|
-
* <p>The environment name that's associated with each listed environment account connection.</p>
|
|
809
|
-
*/
|
|
810
|
-
environmentName?: string;
|
|
811
|
-
|
|
812
|
-
/**
|
|
813
|
-
* <p>The status details for each listed environment account connection.</p>
|
|
814
|
-
*/
|
|
815
|
-
statuses?: (EnvironmentAccountConnectionStatus | string)[];
|
|
816
|
-
|
|
817
|
-
/**
|
|
818
|
-
* <p>A token to indicate the location of the next environment account connection in the array of environment account connections, after the
|
|
819
|
-
* list of environment account connections that was previously requested.</p>
|
|
820
|
-
*/
|
|
821
|
-
nextToken?: string;
|
|
822
|
-
|
|
823
|
-
/**
|
|
824
|
-
* <p>The maximum number of environment account connections to list.</p>
|
|
825
|
-
*/
|
|
826
|
-
maxResults?: number;
|
|
827
|
-
}
|
|
828
|
-
|
|
829
|
-
export namespace ListEnvironmentAccountConnectionsInput {
|
|
830
|
-
/**
|
|
831
|
-
* @internal
|
|
832
|
-
*/
|
|
833
|
-
export const filterSensitiveLog = (obj: ListEnvironmentAccountConnectionsInput): any => ({
|
|
834
|
-
...obj,
|
|
835
|
-
});
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
/**
|
|
839
|
-
* <p>A summary of the environment account connection detail data.</p>
|
|
840
|
-
*/
|
|
841
|
-
export interface EnvironmentAccountConnectionSummary {
|
|
842
|
-
/**
|
|
843
|
-
* <p>The ID of the environment account connection.</p>
|
|
844
|
-
*/
|
|
845
|
-
id: string | undefined;
|
|
846
|
-
|
|
847
|
-
/**
|
|
848
|
-
* <p>The Amazon Resource Name (ARN) of the environment account connection.</p>
|
|
849
|
-
*/
|
|
850
|
-
arn: string | undefined;
|
|
851
|
-
|
|
852
|
-
/**
|
|
853
|
-
* <p>The ID of the management account that's connected to the environment account connection.</p>
|
|
854
|
-
*/
|
|
855
|
-
managementAccountId: string | undefined;
|
|
856
|
-
|
|
857
|
-
/**
|
|
858
|
-
* <p>The ID of the environment account that's connected to the environment account connection.</p>
|
|
859
|
-
*/
|
|
860
|
-
environmentAccountId: string | undefined;
|
|
861
|
-
|
|
862
|
-
/**
|
|
863
|
-
* <p>The IAM service role that's associated with the environment account connection.</p>
|
|
864
|
-
*/
|
|
865
|
-
roleArn: string | undefined;
|
|
866
|
-
|
|
867
|
-
/**
|
|
868
|
-
* <p>The name of the environment that's associated with the environment account connection.</p>
|
|
869
|
-
*/
|
|
870
|
-
environmentName: string | undefined;
|
|
871
|
-
|
|
872
|
-
/**
|
|
873
|
-
* <p>The time when the environment account connection request was made.</p>
|
|
874
|
-
*/
|
|
875
|
-
requestedAt: Date | undefined;
|
|
876
|
-
|
|
877
|
-
/**
|
|
878
|
-
* <p>The time when the environment account connection was last modified.</p>
|
|
879
|
-
*/
|
|
880
|
-
lastModifiedAt: Date | undefined;
|
|
881
|
-
|
|
882
|
-
/**
|
|
883
|
-
* <p>The status of the environment account connection.</p>
|
|
884
|
-
*/
|
|
885
|
-
status: EnvironmentAccountConnectionStatus | string | undefined;
|
|
886
|
-
}
|
|
887
|
-
|
|
888
|
-
export namespace EnvironmentAccountConnectionSummary {
|
|
889
|
-
/**
|
|
890
|
-
* @internal
|
|
891
|
-
*/
|
|
892
|
-
export const filterSensitiveLog = (obj: EnvironmentAccountConnectionSummary): any => ({
|
|
893
|
-
...obj,
|
|
894
|
-
});
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
export interface ListEnvironmentAccountConnectionsOutput {
|
|
898
|
-
/**
|
|
899
|
-
* <p>An array of environment account connections with details that's returned by AWS Proton. </p>
|
|
900
|
-
*/
|
|
901
|
-
environmentAccountConnections: EnvironmentAccountConnectionSummary[] | undefined;
|
|
902
|
-
|
|
903
|
-
/**
|
|
904
|
-
* <p>A token to indicate the location of the next environment account connection in the array of environment account connections, after the
|
|
905
|
-
* current requested list of environment account connections.</p>
|
|
906
|
-
*/
|
|
907
|
-
nextToken?: string;
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
export namespace ListEnvironmentAccountConnectionsOutput {
|
|
911
|
-
/**
|
|
912
|
-
* @internal
|
|
913
|
-
*/
|
|
914
|
-
export const filterSensitiveLog = (obj: ListEnvironmentAccountConnectionsOutput): any => ({
|
|
915
|
-
...obj,
|
|
916
|
-
});
|
|
917
|
-
}
|
|
918
|
-
|
|
919
|
-
export interface RejectEnvironmentAccountConnectionInput {
|
|
920
|
-
/**
|
|
921
|
-
* <p>The ID of the environment account connection to reject.</p>
|
|
922
|
-
*/
|
|
923
|
-
id: string | undefined;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
export namespace RejectEnvironmentAccountConnectionInput {
|
|
927
|
-
/**
|
|
928
|
-
* @internal
|
|
929
|
-
*/
|
|
930
|
-
export const filterSensitiveLog = (obj: RejectEnvironmentAccountConnectionInput): any => ({
|
|
931
|
-
...obj,
|
|
932
|
-
});
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
export interface RejectEnvironmentAccountConnectionOutput {
|
|
936
|
-
/**
|
|
937
|
-
* <p>The environment connection account detail data that's returned by AWS Proton.</p>
|
|
938
|
-
*/
|
|
939
|
-
environmentAccountConnection: EnvironmentAccountConnection | undefined;
|
|
940
|
-
}
|
|
941
|
-
|
|
942
|
-
export namespace RejectEnvironmentAccountConnectionOutput {
|
|
943
|
-
/**
|
|
944
|
-
* @internal
|
|
945
|
-
*/
|
|
946
|
-
export const filterSensitiveLog = (obj: RejectEnvironmentAccountConnectionOutput): any => ({
|
|
947
|
-
...obj,
|
|
948
|
-
});
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
export interface UpdateEnvironmentAccountConnectionInput {
|
|
952
|
-
/**
|
|
953
|
-
* <p>The ID of the environment account connection to update.</p>
|
|
954
|
-
*/
|
|
955
|
-
id: string | undefined;
|
|
956
|
-
|
|
957
|
-
/**
|
|
958
|
-
* <p>The Amazon Resource Name (ARN) of the IAM service role that is associated with the environment account connection to update.</p>
|
|
959
|
-
*/
|
|
960
|
-
roleArn: string | undefined;
|
|
961
|
-
}
|
|
962
|
-
|
|
963
|
-
export namespace UpdateEnvironmentAccountConnectionInput {
|
|
964
|
-
/**
|
|
965
|
-
* @internal
|
|
966
|
-
*/
|
|
967
|
-
export const filterSensitiveLog = (obj: UpdateEnvironmentAccountConnectionInput): any => ({
|
|
968
|
-
...obj,
|
|
969
|
-
});
|
|
970
|
-
}
|
|
971
|
-
|
|
972
|
-
export interface UpdateEnvironmentAccountConnectionOutput {
|
|
973
|
-
/**
|
|
974
|
-
* <p>The environment account connection detail data that's returned by AWS Proton.</p>
|
|
975
|
-
*/
|
|
976
|
-
environmentAccountConnection: EnvironmentAccountConnection | undefined;
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
export namespace UpdateEnvironmentAccountConnectionOutput {
|
|
980
|
-
/**
|
|
981
|
-
* @internal
|
|
982
|
-
*/
|
|
983
|
-
export const filterSensitiveLog = (obj: UpdateEnvironmentAccountConnectionOutput): any => ({
|
|
984
|
-
...obj,
|
|
985
|
-
});
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
/**
|
|
989
|
-
* <p>A description of a resource tag.</p>
|
|
990
|
-
*/
|
|
991
|
-
export interface Tag {
|
|
992
|
-
/**
|
|
993
|
-
* <p>The key of the resource tag.</p>
|
|
994
|
-
*/
|
|
995
|
-
key: string | undefined;
|
|
996
|
-
|
|
997
|
-
/**
|
|
998
|
-
* <p>The value of the resource tag.</p>
|
|
999
|
-
*/
|
|
1000
|
-
value: string | undefined;
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
|
-
export namespace Tag {
|
|
1004
|
-
/**
|
|
1005
|
-
* @internal
|
|
1006
|
-
*/
|
|
1007
|
-
export const filterSensitiveLog = (obj: Tag): any => ({
|
|
1008
|
-
...obj,
|
|
1009
|
-
});
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
export interface CreateEnvironmentInput {
|
|
1013
|
-
/**
|
|
1014
|
-
* <p>The name of the environment.</p>
|
|
1015
|
-
*/
|
|
1016
|
-
name: string | undefined;
|
|
1017
|
-
|
|
1018
|
-
/**
|
|
1019
|
-
* <p>The name of the environment template. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-templates.html">Environment Templates</a> in the <i>AWS Proton Administrator
|
|
1020
|
-
* Guide</i>.</p>
|
|
1021
|
-
*/
|
|
1022
|
-
templateName: string | undefined;
|
|
1023
|
-
|
|
1024
|
-
/**
|
|
1025
|
-
* <p>The ID of the major version of the environment template.</p>
|
|
1026
|
-
*/
|
|
1027
|
-
templateMajorVersion: string | undefined;
|
|
1028
|
-
|
|
1029
|
-
/**
|
|
1030
|
-
* <p>The ID of the minor version of the environment template.</p>
|
|
1031
|
-
*/
|
|
1032
|
-
templateMinorVersion?: string;
|
|
1033
|
-
|
|
1034
|
-
/**
|
|
1035
|
-
* <p>A description of the environment that's being created and deployed.</p>
|
|
1036
|
-
*/
|
|
1037
|
-
description?: string;
|
|
1038
|
-
|
|
1039
|
-
/**
|
|
1040
|
-
* <p>A link to a YAML formatted spec file that provides inputs as defined in the environment template bundle schema file. For more
|
|
1041
|
-
* information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-environments.html">Environments</a> in the
|
|
1042
|
-
* <i>AWS Proton Administrator Guide</i>.</p>
|
|
1043
|
-
*/
|
|
1044
|
-
spec: string | undefined;
|
|
1045
|
-
|
|
1046
|
-
/**
|
|
1047
|
-
* <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make calls to other services on your behalf. You
|
|
1048
|
-
* must include either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code> parameter and value.</p>
|
|
1049
|
-
*/
|
|
1050
|
-
protonServiceRoleArn?: string;
|
|
1051
|
-
|
|
1052
|
-
/**
|
|
1053
|
-
* <p>The ID of the environment account connection that you provide if you're provisioning your environment infrastructure resources to an
|
|
1054
|
-
* environment account. You must include either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code>
|
|
1055
|
-
* parameter and value. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
|
|
1056
|
-
*/
|
|
1057
|
-
environmentAccountConnectionId?: string;
|
|
1058
|
-
|
|
1059
|
-
/**
|
|
1060
|
-
* <p>Create tags for your environment. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
|
|
1061
|
-
*/
|
|
1062
|
-
tags?: Tag[];
|
|
1063
|
-
}
|
|
1064
|
-
|
|
1065
|
-
export namespace CreateEnvironmentInput {
|
|
1066
|
-
/**
|
|
1067
|
-
* @internal
|
|
1068
|
-
*/
|
|
1069
|
-
export const filterSensitiveLog = (obj: CreateEnvironmentInput): any => ({
|
|
1070
|
-
...obj,
|
|
1071
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1072
|
-
...(obj.spec && { spec: SENSITIVE_STRING }),
|
|
1073
|
-
});
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
export interface CreateEnvironmentOutput {
|
|
1077
|
-
/**
|
|
1078
|
-
* <p>The environment detail data that's returned by AWS Proton.</p>
|
|
1079
|
-
*/
|
|
1080
|
-
environment: Environment | undefined;
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
export namespace CreateEnvironmentOutput {
|
|
1084
|
-
/**
|
|
1085
|
-
* @internal
|
|
1086
|
-
*/
|
|
1087
|
-
export const filterSensitiveLog = (obj: CreateEnvironmentOutput): any => ({
|
|
1088
|
-
...obj,
|
|
1089
|
-
...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
|
|
1090
|
-
});
|
|
1091
|
-
}
|
|
1092
|
-
|
|
1093
|
-
export interface DeleteEnvironmentInput {
|
|
1094
|
-
/**
|
|
1095
|
-
* <p>The name of the environment to delete.</p>
|
|
1096
|
-
*/
|
|
1097
|
-
name: string | undefined;
|
|
1098
|
-
}
|
|
1099
|
-
|
|
1100
|
-
export namespace DeleteEnvironmentInput {
|
|
1101
|
-
/**
|
|
1102
|
-
* @internal
|
|
1103
|
-
*/
|
|
1104
|
-
export const filterSensitiveLog = (obj: DeleteEnvironmentInput): any => ({
|
|
1105
|
-
...obj,
|
|
1106
|
-
});
|
|
1107
|
-
}
|
|
1108
|
-
|
|
1109
|
-
export interface DeleteEnvironmentOutput {
|
|
1110
|
-
/**
|
|
1111
|
-
* <p>The environment detail data that's returned by AWS Proton.</p>
|
|
1112
|
-
*/
|
|
1113
|
-
environment?: Environment;
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
export namespace DeleteEnvironmentOutput {
|
|
1117
|
-
/**
|
|
1118
|
-
* @internal
|
|
1119
|
-
*/
|
|
1120
|
-
export const filterSensitiveLog = (obj: DeleteEnvironmentOutput): any => ({
|
|
1121
|
-
...obj,
|
|
1122
|
-
...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
|
|
1123
|
-
});
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
export interface GetEnvironmentInput {
|
|
1127
|
-
/**
|
|
1128
|
-
* <p>The name of the environment that you want to get the detail data for.</p>
|
|
1129
|
-
*/
|
|
1130
|
-
name: string | undefined;
|
|
1131
|
-
}
|
|
1132
|
-
|
|
1133
|
-
export namespace GetEnvironmentInput {
|
|
1134
|
-
/**
|
|
1135
|
-
* @internal
|
|
1136
|
-
*/
|
|
1137
|
-
export const filterSensitiveLog = (obj: GetEnvironmentInput): any => ({
|
|
1138
|
-
...obj,
|
|
1139
|
-
});
|
|
1140
|
-
}
|
|
1141
|
-
|
|
1142
|
-
export interface GetEnvironmentOutput {
|
|
1143
|
-
/**
|
|
1144
|
-
* <p>The environment detail data that's returned by AWS Proton.</p>
|
|
1145
|
-
*/
|
|
1146
|
-
environment: Environment | undefined;
|
|
1147
|
-
}
|
|
1148
|
-
|
|
1149
|
-
export namespace GetEnvironmentOutput {
|
|
1150
|
-
/**
|
|
1151
|
-
* @internal
|
|
1152
|
-
*/
|
|
1153
|
-
export const filterSensitiveLog = (obj: GetEnvironmentOutput): any => ({
|
|
1154
|
-
...obj,
|
|
1155
|
-
...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
|
|
1156
|
-
});
|
|
1157
|
-
}
|
|
1158
|
-
|
|
1159
|
-
/**
|
|
1160
|
-
* <p>A search filter for environment templates.</p>
|
|
1161
|
-
*/
|
|
1162
|
-
export interface EnvironmentTemplateFilter {
|
|
1163
|
-
/**
|
|
1164
|
-
* <p>Include <code>templateName</code> to filter search for a template name.</p>
|
|
1165
|
-
*/
|
|
1166
|
-
templateName: string | undefined;
|
|
1167
|
-
|
|
1168
|
-
/**
|
|
1169
|
-
* <p>Include <code>majorVersion</code> to filter search for a major version.</p>
|
|
1170
|
-
*/
|
|
1171
|
-
majorVersion: string | undefined;
|
|
1172
|
-
}
|
|
1173
|
-
|
|
1174
|
-
export namespace EnvironmentTemplateFilter {
|
|
1175
|
-
/**
|
|
1176
|
-
* @internal
|
|
1177
|
-
*/
|
|
1178
|
-
export const filterSensitiveLog = (obj: EnvironmentTemplateFilter): any => ({
|
|
1179
|
-
...obj,
|
|
1180
|
-
});
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
export interface ListEnvironmentsInput {
|
|
1184
|
-
/**
|
|
1185
|
-
* <p>A token to indicate the location of the next environment in the array of environments, after the list of environments that was
|
|
1186
|
-
* previously requested.</p>
|
|
1187
|
-
*/
|
|
1188
|
-
nextToken?: string;
|
|
1189
|
-
|
|
1190
|
-
/**
|
|
1191
|
-
* <p>The maximum number of environments to list.</p>
|
|
1192
|
-
*/
|
|
1193
|
-
maxResults?: number;
|
|
1194
|
-
|
|
1195
|
-
/**
|
|
1196
|
-
* <p>An array of the versions of the environment template.</p>
|
|
1197
|
-
*/
|
|
1198
|
-
environmentTemplates?: EnvironmentTemplateFilter[];
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
export namespace ListEnvironmentsInput {
|
|
1202
|
-
/**
|
|
1203
|
-
* @internal
|
|
1204
|
-
*/
|
|
1205
|
-
export const filterSensitiveLog = (obj: ListEnvironmentsInput): any => ({
|
|
1206
|
-
...obj,
|
|
1207
|
-
});
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1210
|
-
/**
|
|
1211
|
-
* <p>A summary of the environment detail data.</p>
|
|
1212
|
-
*/
|
|
1213
|
-
export interface EnvironmentSummary {
|
|
1214
|
-
/**
|
|
1215
|
-
* <p>The name of the environment.</p>
|
|
1216
|
-
*/
|
|
1217
|
-
name: string | undefined;
|
|
1218
|
-
|
|
1219
|
-
/**
|
|
1220
|
-
* <p>The description of the environment.</p>
|
|
1221
|
-
*/
|
|
1222
|
-
description?: string;
|
|
1223
|
-
|
|
1224
|
-
/**
|
|
1225
|
-
* <p>The time when the environment was created.</p>
|
|
1226
|
-
*/
|
|
1227
|
-
createdAt: Date | undefined;
|
|
1228
|
-
|
|
1229
|
-
/**
|
|
1230
|
-
* <p>The time when a deployment of the environment was last attempted.</p>
|
|
1231
|
-
*/
|
|
1232
|
-
lastDeploymentAttemptedAt: Date | undefined;
|
|
1233
|
-
|
|
1234
|
-
/**
|
|
1235
|
-
* <p>The time when the environment was last deployed successfully.</p>
|
|
1236
|
-
*/
|
|
1237
|
-
lastDeploymentSucceededAt: Date | undefined;
|
|
1238
|
-
|
|
1239
|
-
/**
|
|
1240
|
-
* <p>The Amazon Resource Name (ARN) of the environment.</p>
|
|
1241
|
-
*/
|
|
1242
|
-
arn: string | undefined;
|
|
1243
|
-
|
|
1244
|
-
/**
|
|
1245
|
-
* <p>The name of the environment template.</p>
|
|
1246
|
-
*/
|
|
1247
|
-
templateName: string | undefined;
|
|
1248
|
-
|
|
1249
|
-
/**
|
|
1250
|
-
* <p>The ID of the major version of the environment template.</p>
|
|
1251
|
-
*/
|
|
1252
|
-
templateMajorVersion: string | undefined;
|
|
1253
|
-
|
|
1254
|
-
/**
|
|
1255
|
-
* <p>The ID of the minor version of the environment template.</p>
|
|
1256
|
-
*/
|
|
1257
|
-
templateMinorVersion: string | undefined;
|
|
1258
|
-
|
|
1259
|
-
/**
|
|
1260
|
-
* <p>The environment deployment status.</p>
|
|
1261
|
-
*/
|
|
1262
|
-
deploymentStatus: DeploymentStatus | string | undefined;
|
|
1263
|
-
|
|
1264
|
-
/**
|
|
1265
|
-
* <p>An environment deployment status message.</p>
|
|
1266
|
-
*/
|
|
1267
|
-
deploymentStatusMessage?: string;
|
|
1268
|
-
|
|
1269
|
-
/**
|
|
1270
|
-
* <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make calls to other services on your
|
|
1271
|
-
* behalf.</p>
|
|
1272
|
-
*/
|
|
1273
|
-
protonServiceRoleArn?: string;
|
|
1274
|
-
|
|
1275
|
-
/**
|
|
1276
|
-
* <p>The ID of the environment account connection that the environment is associated with.</p>
|
|
1277
|
-
*/
|
|
1278
|
-
environmentAccountConnectionId?: string;
|
|
1279
|
-
|
|
1280
|
-
/**
|
|
1281
|
-
* <p>The ID of the environment account that the environment infrastructure resources are provisioned in.</p>
|
|
1282
|
-
*/
|
|
1283
|
-
environmentAccountId?: string;
|
|
1284
|
-
|
|
1285
|
-
/**
|
|
1286
|
-
* <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
|
|
1287
|
-
*/
|
|
1288
|
-
provisioning?: Provisioning | string;
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
export namespace EnvironmentSummary {
|
|
1292
|
-
/**
|
|
1293
|
-
* @internal
|
|
1294
|
-
*/
|
|
1295
|
-
export const filterSensitiveLog = (obj: EnvironmentSummary): any => ({
|
|
1296
|
-
...obj,
|
|
1297
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1298
|
-
...(obj.deploymentStatusMessage && { deploymentStatusMessage: SENSITIVE_STRING }),
|
|
1299
|
-
});
|
|
1300
|
-
}
|
|
1301
|
-
|
|
1302
|
-
export interface ListEnvironmentsOutput {
|
|
1303
|
-
/**
|
|
1304
|
-
* <p>A token to indicate the location of the next environment in the array of environments, after the current requested list of
|
|
1305
|
-
* environments.</p>
|
|
1306
|
-
*/
|
|
1307
|
-
nextToken?: string;
|
|
1308
|
-
|
|
1309
|
-
/**
|
|
1310
|
-
* <p>An array of environment detail data summaries.</p>
|
|
1311
|
-
*/
|
|
1312
|
-
environments: EnvironmentSummary[] | undefined;
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
export namespace ListEnvironmentsOutput {
|
|
1316
|
-
/**
|
|
1317
|
-
* @internal
|
|
1318
|
-
*/
|
|
1319
|
-
export const filterSensitiveLog = (obj: ListEnvironmentsOutput): any => ({
|
|
1320
|
-
...obj,
|
|
1321
|
-
...(obj.environments && {
|
|
1322
|
-
environments: obj.environments.map((item) => EnvironmentSummary.filterSensitiveLog(item)),
|
|
1323
|
-
}),
|
|
1324
|
-
});
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
export enum DeploymentUpdateType {
|
|
1328
|
-
CURRENT_VERSION = "CURRENT_VERSION",
|
|
1329
|
-
MAJOR_VERSION = "MAJOR_VERSION",
|
|
1330
|
-
MINOR_VERSION = "MINOR_VERSION",
|
|
1331
|
-
NONE = "NONE",
|
|
1332
|
-
}
|
|
1333
|
-
|
|
1334
|
-
export interface UpdateEnvironmentInput {
|
|
1335
|
-
/**
|
|
1336
|
-
* <p>The name of the environment to update.</p>
|
|
1337
|
-
*/
|
|
1338
|
-
name: string | undefined;
|
|
1339
|
-
|
|
1340
|
-
/**
|
|
1341
|
-
* <p>A description of the environment update.</p>
|
|
1342
|
-
*/
|
|
1343
|
-
description?: string;
|
|
1344
|
-
|
|
1345
|
-
/**
|
|
1346
|
-
* <p>The formatted specification that defines the update.</p>
|
|
1347
|
-
*/
|
|
1348
|
-
spec?: string;
|
|
1349
|
-
|
|
1350
|
-
/**
|
|
1351
|
-
* <p>The ID of the major version of the environment to update.</p>
|
|
1352
|
-
*/
|
|
1353
|
-
templateMajorVersion?: string;
|
|
1354
|
-
|
|
1355
|
-
/**
|
|
1356
|
-
* <p>The ID of the minor version of the environment to update.</p>
|
|
1357
|
-
*/
|
|
1358
|
-
templateMinorVersion?: string;
|
|
1359
|
-
|
|
1360
|
-
/**
|
|
1361
|
-
* <p>The Amazon Resource Name (ARN) of the AWS Proton service role that allows AWS Proton to make API calls to other services your
|
|
1362
|
-
* behalf.</p>
|
|
1363
|
-
*/
|
|
1364
|
-
protonServiceRoleArn?: string;
|
|
1365
|
-
|
|
1366
|
-
/**
|
|
1367
|
-
* <p>There are four modes for updating an environment as described in the following. The <code>deploymentType</code> field defines the
|
|
1368
|
-
* mode.</p>
|
|
1369
|
-
* <dl>
|
|
1370
|
-
* <dt/>
|
|
1371
|
-
* <dd>
|
|
1372
|
-
* <p>
|
|
1373
|
-
* <code>NONE</code>
|
|
1374
|
-
* </p>
|
|
1375
|
-
* <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
|
|
1376
|
-
* </dd>
|
|
1377
|
-
* <dt/>
|
|
1378
|
-
* <dd>
|
|
1379
|
-
* <p>
|
|
1380
|
-
* <code>CURRENT_VERSION</code>
|
|
1381
|
-
* </p>
|
|
1382
|
-
* <p>In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are
|
|
1383
|
-
* updated. <i>Don’t</i> include minor or major version parameters when you use this
|
|
1384
|
-
* <code>deployment-type</code>.</p>
|
|
1385
|
-
* </dd>
|
|
1386
|
-
* <dt/>
|
|
1387
|
-
* <dd>
|
|
1388
|
-
* <p>
|
|
1389
|
-
* <code>MINOR_VERSION</code>
|
|
1390
|
-
* </p>
|
|
1391
|
-
* <p>In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current
|
|
1392
|
-
* major version in use, by default. You can also specify a different minor version of the current major version in use.</p>
|
|
1393
|
-
* </dd>
|
|
1394
|
-
* <dt/>
|
|
1395
|
-
* <dd>
|
|
1396
|
-
* <p>
|
|
1397
|
-
* <code>MAJOR_VERSION</code>
|
|
1398
|
-
* </p>
|
|
1399
|
-
* <p>In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of
|
|
1400
|
-
* the current template, by default. You can also specify a different major version that is higher than the major version in use
|
|
1401
|
-
* and a minor version (optional).</p>
|
|
1402
|
-
* </dd>
|
|
1403
|
-
* </dl>
|
|
1404
|
-
*/
|
|
1405
|
-
deploymentType: DeploymentUpdateType | string | undefined;
|
|
1406
|
-
|
|
1407
|
-
/**
|
|
1408
|
-
* <p>The ID of the environment account connection.</p>
|
|
1409
|
-
* <p>You can only update to a new environment account connection if it was created in the same environment account that the current
|
|
1410
|
-
* environment account connection was created in and is associated with the current environment.</p>
|
|
1411
|
-
*/
|
|
1412
|
-
environmentAccountConnectionId?: string;
|
|
1413
|
-
}
|
|
1414
|
-
|
|
1415
|
-
export namespace UpdateEnvironmentInput {
|
|
1416
|
-
/**
|
|
1417
|
-
* @internal
|
|
1418
|
-
*/
|
|
1419
|
-
export const filterSensitiveLog = (obj: UpdateEnvironmentInput): any => ({
|
|
1420
|
-
...obj,
|
|
1421
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1422
|
-
...(obj.spec && { spec: SENSITIVE_STRING }),
|
|
1423
|
-
});
|
|
1424
|
-
}
|
|
1425
|
-
|
|
1426
|
-
export interface UpdateEnvironmentOutput {
|
|
1427
|
-
/**
|
|
1428
|
-
* <p>The environment detail data that's returned by AWS Proton.</p>
|
|
1429
|
-
*/
|
|
1430
|
-
environment: Environment | undefined;
|
|
1431
|
-
}
|
|
1432
|
-
|
|
1433
|
-
export namespace UpdateEnvironmentOutput {
|
|
1434
|
-
/**
|
|
1435
|
-
* @internal
|
|
1436
|
-
*/
|
|
1437
|
-
export const filterSensitiveLog = (obj: UpdateEnvironmentOutput): any => ({
|
|
1438
|
-
...obj,
|
|
1439
|
-
...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
|
|
1440
|
-
});
|
|
1441
|
-
}
|
|
1442
|
-
|
|
1443
|
-
export interface CreateEnvironmentTemplateInput {
|
|
1444
|
-
/**
|
|
1445
|
-
* <p>The name of the environment template.</p>
|
|
1446
|
-
*/
|
|
1447
|
-
name: string | undefined;
|
|
1448
|
-
|
|
1449
|
-
/**
|
|
1450
|
-
* <p>The environment template name as displayed in the developer interface.</p>
|
|
1451
|
-
*/
|
|
1452
|
-
displayName?: string;
|
|
1453
|
-
|
|
1454
|
-
/**
|
|
1455
|
-
* <p>A description of the environment template.</p>
|
|
1456
|
-
*/
|
|
1457
|
-
description?: string;
|
|
1458
|
-
|
|
1459
|
-
/**
|
|
1460
|
-
* <p>A customer provided encryption key that AWS Proton uses to encrypt data.</p>
|
|
1461
|
-
*/
|
|
1462
|
-
encryptionKey?: string;
|
|
1463
|
-
|
|
1464
|
-
/**
|
|
1465
|
-
* <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
|
|
1466
|
-
*/
|
|
1467
|
-
provisioning?: Provisioning | string;
|
|
1468
|
-
|
|
1469
|
-
/**
|
|
1470
|
-
* <p>Create tags for your environment template. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
|
|
1471
|
-
*/
|
|
1472
|
-
tags?: Tag[];
|
|
1473
|
-
}
|
|
1474
|
-
|
|
1475
|
-
export namespace CreateEnvironmentTemplateInput {
|
|
1476
|
-
/**
|
|
1477
|
-
* @internal
|
|
1478
|
-
*/
|
|
1479
|
-
export const filterSensitiveLog = (obj: CreateEnvironmentTemplateInput): any => ({
|
|
1480
|
-
...obj,
|
|
1481
|
-
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
1482
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1483
|
-
});
|
|
1484
|
-
}
|
|
1485
|
-
|
|
1486
|
-
/**
|
|
1487
|
-
* <p>The environment template data.</p>
|
|
1488
|
-
*/
|
|
1489
|
-
export interface EnvironmentTemplate {
|
|
1490
|
-
/**
|
|
1491
|
-
* <p>The name of the environment template.</p>
|
|
1492
|
-
*/
|
|
1493
|
-
name: string | undefined;
|
|
1494
|
-
|
|
1495
|
-
/**
|
|
1496
|
-
* <p>The Amazon Resource Name (ARN) of the environment template.</p>
|
|
1497
|
-
*/
|
|
1498
|
-
arn: string | undefined;
|
|
1499
|
-
|
|
1500
|
-
/**
|
|
1501
|
-
* <p>The time when the environment template was created.</p>
|
|
1502
|
-
*/
|
|
1503
|
-
createdAt: Date | undefined;
|
|
1504
|
-
|
|
1505
|
-
/**
|
|
1506
|
-
* <p>The time when the environment template was last modified.</p>
|
|
1507
|
-
*/
|
|
1508
|
-
lastModifiedAt: Date | undefined;
|
|
1509
|
-
|
|
1510
|
-
/**
|
|
1511
|
-
* <p>The name of the environment template as displayed in the developer interface.</p>
|
|
1512
|
-
*/
|
|
1513
|
-
displayName?: string;
|
|
1514
|
-
|
|
1515
|
-
/**
|
|
1516
|
-
* <p>A description of the environment template.</p>
|
|
1517
|
-
*/
|
|
1518
|
-
description?: string;
|
|
1519
|
-
|
|
1520
|
-
/**
|
|
1521
|
-
* <p>The ID of the recommended version of the environment template.</p>
|
|
1522
|
-
*/
|
|
1523
|
-
recommendedVersion?: string;
|
|
1524
|
-
|
|
1525
|
-
/**
|
|
1526
|
-
* <p>The customer provided encryption key for the environment template.</p>
|
|
1527
|
-
*/
|
|
1528
|
-
encryptionKey?: string;
|
|
1529
|
-
|
|
1530
|
-
/**
|
|
1531
|
-
* <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
|
|
1532
|
-
*/
|
|
1533
|
-
provisioning?: Provisioning | string;
|
|
1534
|
-
}
|
|
1535
|
-
|
|
1536
|
-
export namespace EnvironmentTemplate {
|
|
1537
|
-
/**
|
|
1538
|
-
* @internal
|
|
1539
|
-
*/
|
|
1540
|
-
export const filterSensitiveLog = (obj: EnvironmentTemplate): any => ({
|
|
1541
|
-
...obj,
|
|
1542
|
-
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
1543
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1544
|
-
});
|
|
1545
|
-
}
|
|
1546
|
-
|
|
1547
|
-
export interface CreateEnvironmentTemplateOutput {
|
|
1548
|
-
/**
|
|
1549
|
-
* <p>The environment template detail data that's returned by AWS Proton.</p>
|
|
1550
|
-
*/
|
|
1551
|
-
environmentTemplate: EnvironmentTemplate | undefined;
|
|
1552
|
-
}
|
|
1553
|
-
|
|
1554
|
-
export namespace CreateEnvironmentTemplateOutput {
|
|
1555
|
-
/**
|
|
1556
|
-
* @internal
|
|
1557
|
-
*/
|
|
1558
|
-
export const filterSensitiveLog = (obj: CreateEnvironmentTemplateOutput): any => ({
|
|
1559
|
-
...obj,
|
|
1560
|
-
...(obj.environmentTemplate && {
|
|
1561
|
-
environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
|
|
1562
|
-
}),
|
|
1563
|
-
});
|
|
1564
|
-
}
|
|
1565
|
-
|
|
1566
|
-
export interface DeleteEnvironmentTemplateInput {
|
|
1567
|
-
/**
|
|
1568
|
-
* <p>The name of the environment template to delete.</p>
|
|
1569
|
-
*/
|
|
1570
|
-
name: string | undefined;
|
|
1571
|
-
}
|
|
1572
|
-
|
|
1573
|
-
export namespace DeleteEnvironmentTemplateInput {
|
|
1574
|
-
/**
|
|
1575
|
-
* @internal
|
|
1576
|
-
*/
|
|
1577
|
-
export const filterSensitiveLog = (obj: DeleteEnvironmentTemplateInput): any => ({
|
|
1578
|
-
...obj,
|
|
1579
|
-
});
|
|
1580
|
-
}
|
|
1581
|
-
|
|
1582
|
-
export interface DeleteEnvironmentTemplateOutput {
|
|
1583
|
-
/**
|
|
1584
|
-
* <p>The environment template detail data that's returned by AWS Proton.</p>
|
|
1585
|
-
*/
|
|
1586
|
-
environmentTemplate?: EnvironmentTemplate;
|
|
1587
|
-
}
|
|
1588
|
-
|
|
1589
|
-
export namespace DeleteEnvironmentTemplateOutput {
|
|
1590
|
-
/**
|
|
1591
|
-
* @internal
|
|
1592
|
-
*/
|
|
1593
|
-
export const filterSensitiveLog = (obj: DeleteEnvironmentTemplateOutput): any => ({
|
|
1594
|
-
...obj,
|
|
1595
|
-
...(obj.environmentTemplate && {
|
|
1596
|
-
environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
|
|
1597
|
-
}),
|
|
1598
|
-
});
|
|
1599
|
-
}
|
|
1600
|
-
|
|
1601
|
-
export interface GetEnvironmentTemplateInput {
|
|
1602
|
-
/**
|
|
1603
|
-
* <p>The name of the environment template that you want to get the detail data for.</p>
|
|
1604
|
-
*/
|
|
1605
|
-
name: string | undefined;
|
|
1606
|
-
}
|
|
1607
|
-
|
|
1608
|
-
export namespace GetEnvironmentTemplateInput {
|
|
1609
|
-
/**
|
|
1610
|
-
* @internal
|
|
1611
|
-
*/
|
|
1612
|
-
export const filterSensitiveLog = (obj: GetEnvironmentTemplateInput): any => ({
|
|
1613
|
-
...obj,
|
|
1614
|
-
});
|
|
1615
|
-
}
|
|
1616
|
-
|
|
1617
|
-
export interface GetEnvironmentTemplateOutput {
|
|
1618
|
-
/**
|
|
1619
|
-
* <p>The environment template detail data that's returned by AWS Proton.</p>
|
|
1620
|
-
*/
|
|
1621
|
-
environmentTemplate: EnvironmentTemplate | undefined;
|
|
1622
|
-
}
|
|
1623
|
-
|
|
1624
|
-
export namespace GetEnvironmentTemplateOutput {
|
|
1625
|
-
/**
|
|
1626
|
-
* @internal
|
|
1627
|
-
*/
|
|
1628
|
-
export const filterSensitiveLog = (obj: GetEnvironmentTemplateOutput): any => ({
|
|
1629
|
-
...obj,
|
|
1630
|
-
...(obj.environmentTemplate && {
|
|
1631
|
-
environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
|
|
1632
|
-
}),
|
|
1633
|
-
});
|
|
1634
|
-
}
|
|
1635
|
-
|
|
1636
|
-
export interface ListEnvironmentTemplatesInput {
|
|
1637
|
-
/**
|
|
1638
|
-
* <p>A token to indicate the location of the next environment template in the array of environment templates, after the list of environment
|
|
1639
|
-
* templates that was previously requested.</p>
|
|
1640
|
-
*/
|
|
1641
|
-
nextToken?: string;
|
|
1642
|
-
|
|
1643
|
-
/**
|
|
1644
|
-
* <p>The maximum number of environment templates to list.</p>
|
|
1645
|
-
*/
|
|
1646
|
-
maxResults?: number;
|
|
1647
|
-
}
|
|
1648
|
-
|
|
1649
|
-
export namespace ListEnvironmentTemplatesInput {
|
|
1650
|
-
/**
|
|
1651
|
-
* @internal
|
|
1652
|
-
*/
|
|
1653
|
-
export const filterSensitiveLog = (obj: ListEnvironmentTemplatesInput): any => ({
|
|
1654
|
-
...obj,
|
|
1655
|
-
});
|
|
1656
|
-
}
|
|
1657
|
-
|
|
1658
|
-
/**
|
|
1659
|
-
* <p>The environment template data.</p>
|
|
1660
|
-
*/
|
|
1661
|
-
export interface EnvironmentTemplateSummary {
|
|
1662
|
-
/**
|
|
1663
|
-
* <p>The name of the environment template.</p>
|
|
1664
|
-
*/
|
|
1665
|
-
name: string | undefined;
|
|
1666
|
-
|
|
1667
|
-
/**
|
|
1668
|
-
* <p>The Amazon Resource Name (ARN) of the environment template.</p>
|
|
1669
|
-
*/
|
|
1670
|
-
arn: string | undefined;
|
|
1671
|
-
|
|
1672
|
-
/**
|
|
1673
|
-
* <p>The time when the environment template was created.</p>
|
|
1674
|
-
*/
|
|
1675
|
-
createdAt: Date | undefined;
|
|
1676
|
-
|
|
1677
|
-
/**
|
|
1678
|
-
* <p>The time when the environment template was last modified.</p>
|
|
1679
|
-
*/
|
|
1680
|
-
lastModifiedAt: Date | undefined;
|
|
1681
|
-
|
|
1682
|
-
/**
|
|
1683
|
-
* <p>The name of the environment template as displayed in the developer interface.</p>
|
|
1684
|
-
*/
|
|
1685
|
-
displayName?: string;
|
|
1686
|
-
|
|
1687
|
-
/**
|
|
1688
|
-
* <p>A description of the environment template.</p>
|
|
1689
|
-
*/
|
|
1690
|
-
description?: string;
|
|
1691
|
-
|
|
1692
|
-
/**
|
|
1693
|
-
* <p>The ID of the recommended version of the environment template.</p>
|
|
1694
|
-
*/
|
|
1695
|
-
recommendedVersion?: string;
|
|
1696
|
-
|
|
1697
|
-
/**
|
|
1698
|
-
* <p>When included, indicates that the environment template is for customer provisioned and managed infrastructure.</p>
|
|
1699
|
-
*/
|
|
1700
|
-
provisioning?: Provisioning | string;
|
|
1701
|
-
}
|
|
1702
|
-
|
|
1703
|
-
export namespace EnvironmentTemplateSummary {
|
|
1704
|
-
/**
|
|
1705
|
-
* @internal
|
|
1706
|
-
*/
|
|
1707
|
-
export const filterSensitiveLog = (obj: EnvironmentTemplateSummary): any => ({
|
|
1708
|
-
...obj,
|
|
1709
|
-
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
1710
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1711
|
-
});
|
|
1712
|
-
}
|
|
1713
|
-
|
|
1714
|
-
export interface ListEnvironmentTemplatesOutput {
|
|
1715
|
-
/**
|
|
1716
|
-
* <p>A token to indicate the location of the next environment template in the array of environment templates, after the current requested
|
|
1717
|
-
* list of environment templates.</p>
|
|
1718
|
-
*/
|
|
1719
|
-
nextToken?: string;
|
|
1720
|
-
|
|
1721
|
-
/**
|
|
1722
|
-
* <p>An array of environment templates with detail data.</p>
|
|
1723
|
-
*/
|
|
1724
|
-
templates: EnvironmentTemplateSummary[] | undefined;
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
|
-
export namespace ListEnvironmentTemplatesOutput {
|
|
1728
|
-
/**
|
|
1729
|
-
* @internal
|
|
1730
|
-
*/
|
|
1731
|
-
export const filterSensitiveLog = (obj: ListEnvironmentTemplatesOutput): any => ({
|
|
1732
|
-
...obj,
|
|
1733
|
-
...(obj.templates && {
|
|
1734
|
-
templates: obj.templates.map((item) => EnvironmentTemplateSummary.filterSensitiveLog(item)),
|
|
1735
|
-
}),
|
|
1736
|
-
});
|
|
1737
|
-
}
|
|
1738
|
-
|
|
1739
|
-
export interface UpdateEnvironmentTemplateInput {
|
|
1740
|
-
/**
|
|
1741
|
-
* <p>The name of the environment template to update.</p>
|
|
1742
|
-
*/
|
|
1743
|
-
name: string | undefined;
|
|
1744
|
-
|
|
1745
|
-
/**
|
|
1746
|
-
* <p>The name of the environment template to update as displayed in the developer interface.</p>
|
|
1747
|
-
*/
|
|
1748
|
-
displayName?: string;
|
|
1749
|
-
|
|
1750
|
-
/**
|
|
1751
|
-
* <p>A description of the environment template update.</p>
|
|
1752
|
-
*/
|
|
1753
|
-
description?: string;
|
|
1754
|
-
}
|
|
1755
|
-
|
|
1756
|
-
export namespace UpdateEnvironmentTemplateInput {
|
|
1757
|
-
/**
|
|
1758
|
-
* @internal
|
|
1759
|
-
*/
|
|
1760
|
-
export const filterSensitiveLog = (obj: UpdateEnvironmentTemplateInput): any => ({
|
|
1761
|
-
...obj,
|
|
1762
|
-
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
1763
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1764
|
-
});
|
|
1765
|
-
}
|
|
1766
|
-
|
|
1767
|
-
export interface UpdateEnvironmentTemplateOutput {
|
|
1768
|
-
/**
|
|
1769
|
-
* <p>The environment template detail data that's returned by AWS Proton.</p>
|
|
1770
|
-
*/
|
|
1771
|
-
environmentTemplate: EnvironmentTemplate | undefined;
|
|
1772
|
-
}
|
|
1773
|
-
|
|
1774
|
-
export namespace UpdateEnvironmentTemplateOutput {
|
|
1775
|
-
/**
|
|
1776
|
-
* @internal
|
|
1777
|
-
*/
|
|
1778
|
-
export const filterSensitiveLog = (obj: UpdateEnvironmentTemplateOutput): any => ({
|
|
1779
|
-
...obj,
|
|
1780
|
-
...(obj.environmentTemplate && {
|
|
1781
|
-
environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
|
|
1782
|
-
}),
|
|
1783
|
-
});
|
|
1784
|
-
}
|
|
1785
|
-
|
|
1786
|
-
/**
|
|
1787
|
-
* <p>Template bundle S3 bucket data.</p>
|
|
1788
|
-
*/
|
|
1789
|
-
export interface S3ObjectSource {
|
|
1790
|
-
/**
|
|
1791
|
-
* <p>The name of the S3 bucket that contains a template bundle.</p>
|
|
1792
|
-
*/
|
|
1793
|
-
bucket: string | undefined;
|
|
1794
|
-
|
|
1795
|
-
/**
|
|
1796
|
-
* <p>The path to the S3 bucket that contains a template bundle.</p>
|
|
1797
|
-
*/
|
|
1798
|
-
key: string | undefined;
|
|
1799
|
-
}
|
|
1800
|
-
|
|
1801
|
-
export namespace S3ObjectSource {
|
|
1802
|
-
/**
|
|
1803
|
-
* @internal
|
|
1804
|
-
*/
|
|
1805
|
-
export const filterSensitiveLog = (obj: S3ObjectSource): any => ({
|
|
1806
|
-
...obj,
|
|
1807
|
-
});
|
|
1808
|
-
}
|
|
1809
|
-
|
|
1810
|
-
/**
|
|
1811
|
-
* <p>Template version source data.</p>
|
|
1812
|
-
*/
|
|
1813
|
-
export type TemplateVersionSourceInput =
|
|
1814
|
-
| TemplateVersionSourceInput.S3Member
|
|
1815
|
-
| TemplateVersionSourceInput.$UnknownMember;
|
|
1816
|
-
|
|
1817
|
-
export namespace TemplateVersionSourceInput {
|
|
1818
|
-
/**
|
|
1819
|
-
* <p>An S3 source object that includes the template bundle S3 path and name for a template minor version.</p>
|
|
1820
|
-
*/
|
|
1821
|
-
export interface S3Member {
|
|
1822
|
-
s3: S3ObjectSource;
|
|
1823
|
-
$unknown?: never;
|
|
1824
|
-
}
|
|
1825
|
-
|
|
1826
|
-
export interface $UnknownMember {
|
|
1827
|
-
s3?: never;
|
|
1828
|
-
$unknown: [string, any];
|
|
1829
|
-
}
|
|
1830
|
-
|
|
1831
|
-
export interface Visitor<T> {
|
|
1832
|
-
s3: (value: S3ObjectSource) => T;
|
|
1833
|
-
_: (name: string, value: any) => T;
|
|
1834
|
-
}
|
|
1835
|
-
|
|
1836
|
-
export const visit = <T>(value: TemplateVersionSourceInput, visitor: Visitor<T>): T => {
|
|
1837
|
-
if (value.s3 !== undefined) return visitor.s3(value.s3);
|
|
1838
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1839
|
-
};
|
|
1840
|
-
|
|
1841
|
-
/**
|
|
1842
|
-
* @internal
|
|
1843
|
-
*/
|
|
1844
|
-
export const filterSensitiveLog = (obj: TemplateVersionSourceInput): any => {
|
|
1845
|
-
if (obj.s3 !== undefined) return { s3: S3ObjectSource.filterSensitiveLog(obj.s3) };
|
|
1846
|
-
if (obj.$unknown !== undefined) return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1847
|
-
};
|
|
1848
|
-
}
|
|
1849
|
-
|
|
1850
|
-
export interface CreateEnvironmentTemplateVersionInput {
|
|
1851
|
-
/**
|
|
1852
|
-
* <p>When included, if two identicial requests are made with the same client token, AWS Proton returns the environment template version that
|
|
1853
|
-
* the first request created.</p>
|
|
1854
|
-
*/
|
|
1855
|
-
clientToken?: string;
|
|
1856
|
-
|
|
1857
|
-
/**
|
|
1858
|
-
* <p>The name of the environment template.</p>
|
|
1859
|
-
*/
|
|
1860
|
-
templateName: string | undefined;
|
|
1861
|
-
|
|
1862
|
-
/**
|
|
1863
|
-
* <p>A description of the new version of an environment template.</p>
|
|
1864
|
-
*/
|
|
1865
|
-
description?: string;
|
|
1866
|
-
|
|
1867
|
-
/**
|
|
1868
|
-
* <p>To create a new minor version of the environment template, include a <code>majorVersion</code>.</p>
|
|
1869
|
-
* <p>To create a new major and minor version of the environment template, <i>exclude</i>
|
|
1870
|
-
* <code>majorVersion</code>.</p>
|
|
1871
|
-
*/
|
|
1872
|
-
majorVersion?: string;
|
|
1873
|
-
|
|
1874
|
-
/**
|
|
1875
|
-
* <p>An object that includes the template bundle S3 bucket path and name for the new version of an template.</p>
|
|
1876
|
-
*/
|
|
1877
|
-
source: TemplateVersionSourceInput | undefined;
|
|
1878
|
-
|
|
1879
|
-
/**
|
|
1880
|
-
* <p>Create tags for a new version of an environment template.</p>
|
|
1881
|
-
*/
|
|
1882
|
-
tags?: Tag[];
|
|
1883
|
-
}
|
|
1884
|
-
|
|
1885
|
-
export namespace CreateEnvironmentTemplateVersionInput {
|
|
1886
|
-
/**
|
|
1887
|
-
* @internal
|
|
1888
|
-
*/
|
|
1889
|
-
export const filterSensitiveLog = (obj: CreateEnvironmentTemplateVersionInput): any => ({
|
|
1890
|
-
...obj,
|
|
1891
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1892
|
-
...(obj.source && { source: TemplateVersionSourceInput.filterSensitiveLog(obj.source) }),
|
|
1893
|
-
});
|
|
1894
|
-
}
|
|
1895
|
-
|
|
1896
|
-
export enum TemplateVersionStatus {
|
|
1897
|
-
DRAFT = "DRAFT",
|
|
1898
|
-
PUBLISHED = "PUBLISHED",
|
|
1899
|
-
REGISTRATION_FAILED = "REGISTRATION_FAILED",
|
|
1900
|
-
REGISTRATION_IN_PROGRESS = "REGISTRATION_IN_PROGRESS",
|
|
1901
|
-
}
|
|
1902
|
-
|
|
1903
|
-
/**
|
|
1904
|
-
* <p>The environment template version data.</p>
|
|
1905
|
-
*/
|
|
1906
|
-
export interface EnvironmentTemplateVersion {
|
|
1907
|
-
/**
|
|
1908
|
-
* <p>The name of the version of an environment template.</p>
|
|
1909
|
-
*/
|
|
1910
|
-
templateName: string | undefined;
|
|
1911
|
-
|
|
1912
|
-
/**
|
|
1913
|
-
* <p>The ID of the latest major version that's associated with the version of an environment template.</p>
|
|
1914
|
-
*/
|
|
1915
|
-
majorVersion: string | undefined;
|
|
1916
|
-
|
|
1917
|
-
/**
|
|
1918
|
-
* <p>The ID of the minor version of an environment template.</p>
|
|
1919
|
-
*/
|
|
1920
|
-
minorVersion: string | undefined;
|
|
1921
|
-
|
|
1922
|
-
/**
|
|
1923
|
-
* <p>The ID of the recommended minor version of the environment template.</p>
|
|
1924
|
-
*/
|
|
1925
|
-
recommendedMinorVersion?: string;
|
|
1926
|
-
|
|
1927
|
-
/**
|
|
1928
|
-
* <p>The status of the version of an environment template.</p>
|
|
1929
|
-
*/
|
|
1930
|
-
status: TemplateVersionStatus | string | undefined;
|
|
1931
|
-
|
|
1932
|
-
/**
|
|
1933
|
-
* <p>The status message of the version of an environment template.</p>
|
|
1934
|
-
*/
|
|
1935
|
-
statusMessage?: string;
|
|
1936
|
-
|
|
1937
|
-
/**
|
|
1938
|
-
* <p>A description of the minor version of an environment template.</p>
|
|
1939
|
-
*/
|
|
1940
|
-
description?: string;
|
|
1941
|
-
|
|
1942
|
-
/**
|
|
1943
|
-
* <p>The Amazon Resource Name (ARN) of the version of an environment template.</p>
|
|
1944
|
-
*/
|
|
1945
|
-
arn: string | undefined;
|
|
1946
|
-
|
|
1947
|
-
/**
|
|
1948
|
-
* <p>The time when the version of an environment template was created.</p>
|
|
1949
|
-
*/
|
|
1950
|
-
createdAt: Date | undefined;
|
|
1951
|
-
|
|
1952
|
-
/**
|
|
1953
|
-
* <p>The time when the version of an environment template was last modified.</p>
|
|
1954
|
-
*/
|
|
1955
|
-
lastModifiedAt: Date | undefined;
|
|
1956
|
-
|
|
1957
|
-
/**
|
|
1958
|
-
* <p>The schema of the version of an environment template.</p>
|
|
1959
|
-
*/
|
|
1960
|
-
schema?: string;
|
|
1961
|
-
}
|
|
1962
|
-
|
|
1963
|
-
export namespace EnvironmentTemplateVersion {
|
|
1964
|
-
/**
|
|
1965
|
-
* @internal
|
|
1966
|
-
*/
|
|
1967
|
-
export const filterSensitiveLog = (obj: EnvironmentTemplateVersion): any => ({
|
|
1968
|
-
...obj,
|
|
1969
|
-
...(obj.statusMessage && { statusMessage: SENSITIVE_STRING }),
|
|
1970
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
1971
|
-
...(obj.schema && { schema: SENSITIVE_STRING }),
|
|
1972
|
-
});
|
|
1973
|
-
}
|
|
1974
|
-
|
|
1975
|
-
export interface CreateEnvironmentTemplateVersionOutput {
|
|
1976
|
-
/**
|
|
1977
|
-
* <p>The environment template detail data that's returned by AWS Proton.</p>
|
|
1978
|
-
*/
|
|
1979
|
-
environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
|
|
1980
|
-
}
|
|
1981
|
-
|
|
1982
|
-
export namespace CreateEnvironmentTemplateVersionOutput {
|
|
1983
|
-
/**
|
|
1984
|
-
* @internal
|
|
1985
|
-
*/
|
|
1986
|
-
export const filterSensitiveLog = (obj: CreateEnvironmentTemplateVersionOutput): any => ({
|
|
1987
|
-
...obj,
|
|
1988
|
-
...(obj.environmentTemplateVersion && {
|
|
1989
|
-
environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
|
|
1990
|
-
}),
|
|
1991
|
-
});
|
|
1992
|
-
}
|
|
1993
|
-
|
|
1994
|
-
export interface DeleteEnvironmentTemplateVersionInput {
|
|
1995
|
-
/**
|
|
1996
|
-
* <p>The name of the environment template.</p>
|
|
1997
|
-
*/
|
|
1998
|
-
templateName: string | undefined;
|
|
1999
|
-
|
|
2000
|
-
/**
|
|
2001
|
-
* <p>The environment template major version to delete.</p>
|
|
2002
|
-
*/
|
|
2003
|
-
majorVersion: string | undefined;
|
|
2004
|
-
|
|
2005
|
-
/**
|
|
2006
|
-
* <p>The environment template minor version to delete.</p>
|
|
2007
|
-
*/
|
|
2008
|
-
minorVersion: string | undefined;
|
|
2009
|
-
}
|
|
2010
|
-
|
|
2011
|
-
export namespace DeleteEnvironmentTemplateVersionInput {
|
|
2012
|
-
/**
|
|
2013
|
-
* @internal
|
|
2014
|
-
*/
|
|
2015
|
-
export const filterSensitiveLog = (obj: DeleteEnvironmentTemplateVersionInput): any => ({
|
|
2016
|
-
...obj,
|
|
2017
|
-
});
|
|
2018
|
-
}
|
|
2019
|
-
|
|
2020
|
-
export interface DeleteEnvironmentTemplateVersionOutput {
|
|
2021
|
-
/**
|
|
2022
|
-
* <p>The environment template version detail data that's returned by AWS Proton.</p>
|
|
2023
|
-
*/
|
|
2024
|
-
environmentTemplateVersion?: EnvironmentTemplateVersion;
|
|
2025
|
-
}
|
|
2026
|
-
|
|
2027
|
-
export namespace DeleteEnvironmentTemplateVersionOutput {
|
|
2028
|
-
/**
|
|
2029
|
-
* @internal
|
|
2030
|
-
*/
|
|
2031
|
-
export const filterSensitiveLog = (obj: DeleteEnvironmentTemplateVersionOutput): any => ({
|
|
2032
|
-
...obj,
|
|
2033
|
-
...(obj.environmentTemplateVersion && {
|
|
2034
|
-
environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
|
|
2035
|
-
}),
|
|
2036
|
-
});
|
|
2037
|
-
}
|
|
2038
|
-
|
|
2039
|
-
export interface GetEnvironmentTemplateVersionInput {
|
|
2040
|
-
/**
|
|
2041
|
-
* <p>The name of the environment template.</p>
|
|
2042
|
-
*/
|
|
2043
|
-
templateName: string | undefined;
|
|
2044
|
-
|
|
2045
|
-
/**
|
|
2046
|
-
* <p>To view environment template major version detail data, include <code>majorVersion</code>.</p>
|
|
2047
|
-
*/
|
|
2048
|
-
majorVersion: string | undefined;
|
|
2049
|
-
|
|
2050
|
-
/**
|
|
2051
|
-
* <p>To view environment template minor version detail data, include <code>minorVersion</code>.</p>
|
|
2052
|
-
*/
|
|
2053
|
-
minorVersion: string | undefined;
|
|
2054
|
-
}
|
|
2055
|
-
|
|
2056
|
-
export namespace GetEnvironmentTemplateVersionInput {
|
|
2057
|
-
/**
|
|
2058
|
-
* @internal
|
|
2059
|
-
*/
|
|
2060
|
-
export const filterSensitiveLog = (obj: GetEnvironmentTemplateVersionInput): any => ({
|
|
2061
|
-
...obj,
|
|
2062
|
-
});
|
|
2063
|
-
}
|
|
2064
|
-
|
|
2065
|
-
export interface GetEnvironmentTemplateVersionOutput {
|
|
2066
|
-
/**
|
|
2067
|
-
* <p>The environment template version detail data that's returned by AWS Proton.</p>
|
|
2068
|
-
*/
|
|
2069
|
-
environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
|
|
2070
|
-
}
|
|
2071
|
-
|
|
2072
|
-
export namespace GetEnvironmentTemplateVersionOutput {
|
|
2073
|
-
/**
|
|
2074
|
-
* @internal
|
|
2075
|
-
*/
|
|
2076
|
-
export const filterSensitiveLog = (obj: GetEnvironmentTemplateVersionOutput): any => ({
|
|
2077
|
-
...obj,
|
|
2078
|
-
...(obj.environmentTemplateVersion && {
|
|
2079
|
-
environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
|
|
2080
|
-
}),
|
|
2081
|
-
});
|
|
2082
|
-
}
|
|
2083
|
-
|
|
2084
|
-
export interface ListEnvironmentTemplateVersionsInput {
|
|
2085
|
-
/**
|
|
2086
|
-
* <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of an environment template,
|
|
2087
|
-
* after the list of major or minor versions that was previously requested.</p>
|
|
2088
|
-
*/
|
|
2089
|
-
nextToken?: string;
|
|
2090
|
-
|
|
2091
|
-
/**
|
|
2092
|
-
* <p>The maximum number of major or minor versions of an environment template to list.</p>
|
|
2093
|
-
*/
|
|
2094
|
-
maxResults?: number;
|
|
2095
|
-
|
|
2096
|
-
/**
|
|
2097
|
-
* <p>The name of the environment template.</p>
|
|
2098
|
-
*/
|
|
2099
|
-
templateName: string | undefined;
|
|
2100
|
-
|
|
2101
|
-
/**
|
|
2102
|
-
* <p>To view a list of minor of versions under a major version of an environment template, include <code>majorVersion</code>.</p>
|
|
2103
|
-
* <p>To view a list of major versions of an environment template, <i>exclude</i>
|
|
2104
|
-
* <code>majorVersion</code>.</p>
|
|
2105
|
-
*/
|
|
2106
|
-
majorVersion?: string;
|
|
2107
|
-
}
|
|
2108
|
-
|
|
2109
|
-
export namespace ListEnvironmentTemplateVersionsInput {
|
|
2110
|
-
/**
|
|
2111
|
-
* @internal
|
|
2112
|
-
*/
|
|
2113
|
-
export const filterSensitiveLog = (obj: ListEnvironmentTemplateVersionsInput): any => ({
|
|
2114
|
-
...obj,
|
|
2115
|
-
});
|
|
2116
|
-
}
|
|
2117
|
-
|
|
2118
|
-
/**
|
|
2119
|
-
* <p>A summary of the version of an environment template detail data.</p>
|
|
2120
|
-
*/
|
|
2121
|
-
export interface EnvironmentTemplateVersionSummary {
|
|
2122
|
-
/**
|
|
2123
|
-
* <p>The name of the version of an environment template.</p>
|
|
2124
|
-
*/
|
|
2125
|
-
templateName: string | undefined;
|
|
2126
|
-
|
|
2127
|
-
/**
|
|
2128
|
-
* <p>The ID of the latest major version that's associated with the version of an environment template.</p>
|
|
2129
|
-
*/
|
|
2130
|
-
majorVersion: string | undefined;
|
|
2131
|
-
|
|
2132
|
-
/**
|
|
2133
|
-
* <p>The ID of the version of an environment template.</p>
|
|
2134
|
-
*/
|
|
2135
|
-
minorVersion: string | undefined;
|
|
2136
|
-
|
|
2137
|
-
/**
|
|
2138
|
-
* <p>The ID of the recommended minor version of the environment template.</p>
|
|
2139
|
-
*/
|
|
2140
|
-
recommendedMinorVersion?: string;
|
|
2141
|
-
|
|
2142
|
-
/**
|
|
2143
|
-
* <p>The status of the version of an environment template.</p>
|
|
2144
|
-
*/
|
|
2145
|
-
status: TemplateVersionStatus | string | undefined;
|
|
2146
|
-
|
|
2147
|
-
/**
|
|
2148
|
-
* <p>The status message of the version of an environment template.</p>
|
|
2149
|
-
*/
|
|
2150
|
-
statusMessage?: string;
|
|
2151
|
-
|
|
2152
|
-
/**
|
|
2153
|
-
* <p>A description of the version of an environment template.</p>
|
|
2154
|
-
*/
|
|
2155
|
-
description?: string;
|
|
2156
|
-
|
|
2157
|
-
/**
|
|
2158
|
-
* <p>The Amazon Resource Name (ARN) of the version of an environment template.</p>
|
|
2159
|
-
*/
|
|
2160
|
-
arn: string | undefined;
|
|
2161
|
-
|
|
2162
|
-
/**
|
|
2163
|
-
* <p>The time when the version of an environment template was created.</p>
|
|
2164
|
-
*/
|
|
2165
|
-
createdAt: Date | undefined;
|
|
2166
|
-
|
|
2167
|
-
/**
|
|
2168
|
-
* <p>The time when the version of an environment template was last modified.</p>
|
|
2169
|
-
*/
|
|
2170
|
-
lastModifiedAt: Date | undefined;
|
|
2171
|
-
}
|
|
2172
|
-
|
|
2173
|
-
export namespace EnvironmentTemplateVersionSummary {
|
|
2174
|
-
/**
|
|
2175
|
-
* @internal
|
|
2176
|
-
*/
|
|
2177
|
-
export const filterSensitiveLog = (obj: EnvironmentTemplateVersionSummary): any => ({
|
|
2178
|
-
...obj,
|
|
2179
|
-
...(obj.statusMessage && { statusMessage: SENSITIVE_STRING }),
|
|
2180
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
2181
|
-
});
|
|
2182
|
-
}
|
|
2183
|
-
|
|
2184
|
-
export interface ListEnvironmentTemplateVersionsOutput {
|
|
2185
|
-
/**
|
|
2186
|
-
* <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of an environment template,
|
|
2187
|
-
* after the list of major or minor versions that was previously requested.</p>
|
|
2188
|
-
*/
|
|
2189
|
-
nextToken?: string;
|
|
2190
|
-
|
|
2191
|
-
/**
|
|
2192
|
-
* <p>An array of major or minor versions of an environment template detail data.</p>
|
|
2193
|
-
*/
|
|
2194
|
-
templateVersions: EnvironmentTemplateVersionSummary[] | undefined;
|
|
2195
|
-
}
|
|
2196
|
-
|
|
2197
|
-
export namespace ListEnvironmentTemplateVersionsOutput {
|
|
2198
|
-
/**
|
|
2199
|
-
* @internal
|
|
2200
|
-
*/
|
|
2201
|
-
export const filterSensitiveLog = (obj: ListEnvironmentTemplateVersionsOutput): any => ({
|
|
2202
|
-
...obj,
|
|
2203
|
-
...(obj.templateVersions && {
|
|
2204
|
-
templateVersions: obj.templateVersions.map((item) => EnvironmentTemplateVersionSummary.filterSensitiveLog(item)),
|
|
2205
|
-
}),
|
|
2206
|
-
});
|
|
2207
|
-
}
|
|
2208
|
-
|
|
2209
|
-
export interface UpdateEnvironmentTemplateVersionInput {
|
|
2210
|
-
/**
|
|
2211
|
-
* <p>The name of the environment template.</p>
|
|
2212
|
-
*/
|
|
2213
|
-
templateName: string | undefined;
|
|
2214
|
-
|
|
2215
|
-
/**
|
|
2216
|
-
* <p>To update a major version of an environment template, include <code>majorVersion</code>.</p>
|
|
2217
|
-
*/
|
|
2218
|
-
majorVersion: string | undefined;
|
|
2219
|
-
|
|
2220
|
-
/**
|
|
2221
|
-
* <p>To update a minor version of an environment template, include <code>minorVersion</code>.</p>
|
|
2222
|
-
*/
|
|
2223
|
-
minorVersion: string | undefined;
|
|
2224
|
-
|
|
2225
|
-
/**
|
|
2226
|
-
* <p>A description of environment template version to update.</p>
|
|
2227
|
-
*/
|
|
2228
|
-
description?: string;
|
|
2229
|
-
|
|
2230
|
-
/**
|
|
2231
|
-
* <p>The status of the environment template minor version to update.</p>
|
|
2232
|
-
*/
|
|
2233
|
-
status?: TemplateVersionStatus | string;
|
|
2234
|
-
}
|
|
2235
|
-
|
|
2236
|
-
export namespace UpdateEnvironmentTemplateVersionInput {
|
|
2237
|
-
/**
|
|
2238
|
-
* @internal
|
|
2239
|
-
*/
|
|
2240
|
-
export const filterSensitiveLog = (obj: UpdateEnvironmentTemplateVersionInput): any => ({
|
|
2241
|
-
...obj,
|
|
2242
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
2243
|
-
});
|
|
2244
|
-
}
|
|
2245
|
-
|
|
2246
|
-
export interface UpdateEnvironmentTemplateVersionOutput {
|
|
2247
|
-
/**
|
|
2248
|
-
* <p>The environment template version detail data that's returned by AWS Proton.</p>
|
|
2249
|
-
*/
|
|
2250
|
-
environmentTemplateVersion: EnvironmentTemplateVersion | undefined;
|
|
2251
|
-
}
|
|
2252
|
-
|
|
2253
|
-
export namespace UpdateEnvironmentTemplateVersionOutput {
|
|
2254
|
-
/**
|
|
2255
|
-
* @internal
|
|
2256
|
-
*/
|
|
2257
|
-
export const filterSensitiveLog = (obj: UpdateEnvironmentTemplateVersionOutput): any => ({
|
|
2258
|
-
...obj,
|
|
2259
|
-
...(obj.environmentTemplateVersion && {
|
|
2260
|
-
environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
|
|
2261
|
-
}),
|
|
2262
|
-
});
|
|
2263
|
-
}
|
|
2264
|
-
|
|
2265
|
-
export interface ListTagsForResourceInput {
|
|
2266
|
-
/**
|
|
2267
|
-
* <p>The Amazon Resource Name (ARN) of the resource for the listed tags.</p>
|
|
2268
|
-
*/
|
|
2269
|
-
resourceArn: string | undefined;
|
|
2270
|
-
|
|
2271
|
-
/**
|
|
2272
|
-
* <p>A token to indicate the location of the next resource tag in the array of resource tags, after the list of resource tags that was
|
|
2273
|
-
* previously requested.</p>
|
|
2274
|
-
*/
|
|
2275
|
-
nextToken?: string;
|
|
2276
|
-
|
|
2277
|
-
/**
|
|
2278
|
-
* <p>The maximum number of tags to list.</p>
|
|
2279
|
-
*/
|
|
2280
|
-
maxResults?: number;
|
|
2281
|
-
}
|
|
2282
|
-
|
|
2283
|
-
export namespace ListTagsForResourceInput {
|
|
2284
|
-
/**
|
|
2285
|
-
* @internal
|
|
2286
|
-
*/
|
|
2287
|
-
export const filterSensitiveLog = (obj: ListTagsForResourceInput): any => ({
|
|
2288
|
-
...obj,
|
|
2289
|
-
});
|
|
2290
|
-
}
|
|
2291
|
-
|
|
2292
|
-
export interface ListTagsForResourceOutput {
|
|
2293
|
-
/**
|
|
2294
|
-
* <p>An array of resource tags with detail data.</p>
|
|
2295
|
-
*/
|
|
2296
|
-
tags: Tag[] | undefined;
|
|
2297
|
-
|
|
2298
|
-
/**
|
|
2299
|
-
* <p>A token to indicate the location of the next resource tag in the array of resource tags, after the current requested list of resource
|
|
2300
|
-
* tags.</p>
|
|
2301
|
-
*/
|
|
2302
|
-
nextToken?: string;
|
|
2303
|
-
}
|
|
2304
|
-
|
|
2305
|
-
export namespace ListTagsForResourceOutput {
|
|
2306
|
-
/**
|
|
2307
|
-
* @internal
|
|
2308
|
-
*/
|
|
2309
|
-
export const filterSensitiveLog = (obj: ListTagsForResourceOutput): any => ({
|
|
2310
|
-
...obj,
|
|
2311
|
-
});
|
|
2312
|
-
}
|
|
2313
|
-
|
|
2314
|
-
export interface GetServiceInstanceInput {
|
|
2315
|
-
/**
|
|
2316
|
-
* <p>The name of a service instance that you want to get the detail data for.</p>
|
|
2317
|
-
*/
|
|
2318
|
-
name: string | undefined;
|
|
2319
|
-
|
|
2320
|
-
/**
|
|
2321
|
-
* <p>The name of the service that the service instance belongs to.</p>
|
|
2322
|
-
*/
|
|
2323
|
-
serviceName: string | undefined;
|
|
2324
|
-
}
|
|
2325
|
-
|
|
2326
|
-
export namespace GetServiceInstanceInput {
|
|
2327
|
-
/**
|
|
2328
|
-
* @internal
|
|
2329
|
-
*/
|
|
2330
|
-
export const filterSensitiveLog = (obj: GetServiceInstanceInput): any => ({
|
|
2331
|
-
...obj,
|
|
2332
|
-
});
|
|
2333
|
-
}
|
|
2334
|
-
|
|
2335
|
-
export interface GetServiceInstanceOutput {
|
|
2336
|
-
/**
|
|
2337
|
-
* <p>The service instance detail data that's returned by AWS Proton.</p>
|
|
2338
|
-
*/
|
|
2339
|
-
serviceInstance: ServiceInstance | undefined;
|
|
2340
|
-
}
|
|
2341
|
-
|
|
2342
|
-
export namespace GetServiceInstanceOutput {
|
|
2343
|
-
/**
|
|
2344
|
-
* @internal
|
|
2345
|
-
*/
|
|
2346
|
-
export const filterSensitiveLog = (obj: GetServiceInstanceOutput): any => ({
|
|
2347
|
-
...obj,
|
|
2348
|
-
...(obj.serviceInstance && { serviceInstance: ServiceInstance.filterSensitiveLog(obj.serviceInstance) }),
|
|
2349
|
-
});
|
|
2350
|
-
}
|
|
2351
|
-
|
|
2352
|
-
export interface ListServiceInstancesInput {
|
|
2353
|
-
/**
|
|
2354
|
-
* <p>The name of the service that the service instance belongs to.</p>
|
|
2355
|
-
*/
|
|
2356
|
-
serviceName?: string;
|
|
2357
|
-
|
|
2358
|
-
/**
|
|
2359
|
-
* <p>A token to indicate the location of the next service in the array of service instances, after the list of service instances that was
|
|
2360
|
-
* previously requested.</p>
|
|
2361
|
-
*/
|
|
2362
|
-
nextToken?: string;
|
|
2363
|
-
|
|
2364
|
-
/**
|
|
2365
|
-
* <p>The maximum number of service instances to list.</p>
|
|
2366
|
-
*/
|
|
2367
|
-
maxResults?: number;
|
|
2368
|
-
}
|
|
2369
|
-
|
|
2370
|
-
export namespace ListServiceInstancesInput {
|
|
2371
|
-
/**
|
|
2372
|
-
* @internal
|
|
2373
|
-
*/
|
|
2374
|
-
export const filterSensitiveLog = (obj: ListServiceInstancesInput): any => ({
|
|
2375
|
-
...obj,
|
|
2376
|
-
});
|
|
2377
|
-
}
|
|
2378
|
-
|
|
2379
|
-
/**
|
|
2380
|
-
* <p>A summary of the service instance detail data.</p>
|
|
2381
|
-
*/
|
|
2382
|
-
export interface ServiceInstanceSummary {
|
|
2383
|
-
/**
|
|
2384
|
-
* <p>The name of the service instance.</p>
|
|
2385
|
-
*/
|
|
2386
|
-
name: string | undefined;
|
|
2387
|
-
|
|
2388
|
-
/**
|
|
2389
|
-
* <p>The Amazon Resource Name (ARN) of the service instance.</p>
|
|
2390
|
-
*/
|
|
2391
|
-
arn: string | undefined;
|
|
2392
|
-
|
|
2393
|
-
/**
|
|
2394
|
-
* <p>The time when the service instance was created.</p>
|
|
2395
|
-
*/
|
|
2396
|
-
createdAt: Date | undefined;
|
|
2397
|
-
|
|
2398
|
-
/**
|
|
2399
|
-
* <p>The time when a deployment of the service was last attempted.</p>
|
|
2400
|
-
*/
|
|
2401
|
-
lastDeploymentAttemptedAt: Date | undefined;
|
|
2402
|
-
|
|
2403
|
-
/**
|
|
2404
|
-
* <p>The time when the service was last deployed successfully.</p>
|
|
2405
|
-
*/
|
|
2406
|
-
lastDeploymentSucceededAt: Date | undefined;
|
|
2407
|
-
|
|
2408
|
-
/**
|
|
2409
|
-
* <p>The name of the service that the service instance belongs to.</p>
|
|
2410
|
-
*/
|
|
2411
|
-
serviceName: string | undefined;
|
|
2412
|
-
|
|
2413
|
-
/**
|
|
2414
|
-
* <p>The name of the environment that the service instance was deployed into.</p>
|
|
2415
|
-
*/
|
|
2416
|
-
environmentName: string | undefined;
|
|
2417
|
-
|
|
2418
|
-
/**
|
|
2419
|
-
* <p>The name of the service template.</p>
|
|
2420
|
-
*/
|
|
2421
|
-
templateName: string | undefined;
|
|
2422
|
-
|
|
2423
|
-
/**
|
|
2424
|
-
* <p>The ID of the major version of a service template.</p>
|
|
2425
|
-
*/
|
|
2426
|
-
templateMajorVersion: string | undefined;
|
|
2427
|
-
|
|
2428
|
-
/**
|
|
2429
|
-
* <p>The ID of the minor version of a service template.</p>
|
|
2430
|
-
*/
|
|
2431
|
-
templateMinorVersion: string | undefined;
|
|
2432
|
-
|
|
2433
|
-
/**
|
|
2434
|
-
* <p>The service instance deployment status.</p>
|
|
2435
|
-
*/
|
|
2436
|
-
deploymentStatus: DeploymentStatus | string | undefined;
|
|
2437
|
-
|
|
2438
|
-
/**
|
|
2439
|
-
* <p>A service instance deployment status message.</p>
|
|
2440
|
-
*/
|
|
2441
|
-
deploymentStatusMessage?: string;
|
|
2442
|
-
}
|
|
2443
|
-
|
|
2444
|
-
export namespace ServiceInstanceSummary {
|
|
2445
|
-
/**
|
|
2446
|
-
* @internal
|
|
2447
|
-
*/
|
|
2448
|
-
export const filterSensitiveLog = (obj: ServiceInstanceSummary): any => ({
|
|
2449
|
-
...obj,
|
|
2450
|
-
...(obj.deploymentStatusMessage && { deploymentStatusMessage: SENSITIVE_STRING }),
|
|
2451
|
-
});
|
|
2452
|
-
}
|
|
2453
|
-
|
|
2454
|
-
export interface ListServiceInstancesOutput {
|
|
2455
|
-
/**
|
|
2456
|
-
* <p>A token to indicate the location of the next service instance in the array of service instances, after the current requested list of
|
|
2457
|
-
* service instances.</p>
|
|
2458
|
-
*/
|
|
2459
|
-
nextToken?: string;
|
|
2460
|
-
|
|
2461
|
-
/**
|
|
2462
|
-
* <p>An array of service instances with summaries of detail data.</p>
|
|
2463
|
-
*/
|
|
2464
|
-
serviceInstances: ServiceInstanceSummary[] | undefined;
|
|
2465
|
-
}
|
|
2466
|
-
|
|
2467
|
-
export namespace ListServiceInstancesOutput {
|
|
2468
|
-
/**
|
|
2469
|
-
* @internal
|
|
2470
|
-
*/
|
|
2471
|
-
export const filterSensitiveLog = (obj: ListServiceInstancesOutput): any => ({
|
|
2472
|
-
...obj,
|
|
2473
|
-
...(obj.serviceInstances && {
|
|
2474
|
-
serviceInstances: obj.serviceInstances.map((item) => ServiceInstanceSummary.filterSensitiveLog(item)),
|
|
2475
|
-
}),
|
|
2476
|
-
});
|
|
2477
|
-
}
|
|
2478
|
-
|
|
2479
|
-
export interface UpdateServiceInstanceInput {
|
|
2480
|
-
/**
|
|
2481
|
-
* <p>The name of the service instance to update.</p>
|
|
2482
|
-
*/
|
|
2483
|
-
name: string | undefined;
|
|
2484
|
-
|
|
2485
|
-
/**
|
|
2486
|
-
* <p>The name of the service that the service instance belongs to.</p>
|
|
2487
|
-
*/
|
|
2488
|
-
serviceName: string | undefined;
|
|
2489
|
-
|
|
2490
|
-
/**
|
|
2491
|
-
* <p>The deployment type.</p>
|
|
2492
|
-
* <p>There are four modes for updating a service instance as described in the following. The <code>deploymentType</code> field defines the
|
|
2493
|
-
* mode.</p>
|
|
2494
|
-
* <dl>
|
|
2495
|
-
* <dt/>
|
|
2496
|
-
* <dd>
|
|
2497
|
-
* <p>
|
|
2498
|
-
* <code>NONE</code>
|
|
2499
|
-
* </p>
|
|
2500
|
-
* <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
|
|
2501
|
-
* </dd>
|
|
2502
|
-
* <dt/>
|
|
2503
|
-
* <dd>
|
|
2504
|
-
* <p>
|
|
2505
|
-
* <code>CURRENT_VERSION</code>
|
|
2506
|
-
* </p>
|
|
2507
|
-
* <p>In this mode, the service instance is deployed and updated with the new spec that you provide. Only requested parameters are
|
|
2508
|
-
* updated. <i>Don’t</i> include minor or major version parameters when you use this
|
|
2509
|
-
* <code>deployment-type</code>.</p>
|
|
2510
|
-
* </dd>
|
|
2511
|
-
* <dt/>
|
|
2512
|
-
* <dd>
|
|
2513
|
-
* <p>
|
|
2514
|
-
* <code>MINOR_VERSION</code>
|
|
2515
|
-
* </p>
|
|
2516
|
-
* <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) minor version of the
|
|
2517
|
-
* current major version in use, by default. You can also specify a different minor version of the current major version in
|
|
2518
|
-
* use.</p>
|
|
2519
|
-
* </dd>
|
|
2520
|
-
* <dt/>
|
|
2521
|
-
* <dd>
|
|
2522
|
-
* <p>
|
|
2523
|
-
* <code>MAJOR_VERSION</code>
|
|
2524
|
-
* </p>
|
|
2525
|
-
* <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) major and minor version
|
|
2526
|
-
* of the current template, by default. You can also specify a different major version that is higher than the major version in
|
|
2527
|
-
* use and a minor version (optional).</p>
|
|
2528
|
-
* </dd>
|
|
2529
|
-
* </dl>
|
|
2530
|
-
*/
|
|
2531
|
-
deploymentType: DeploymentUpdateType | string | undefined;
|
|
2532
|
-
|
|
2533
|
-
/**
|
|
2534
|
-
* <p>The formatted specification that defines the service instance update.</p>
|
|
2535
|
-
*/
|
|
2536
|
-
spec?: string;
|
|
2537
|
-
|
|
2538
|
-
/**
|
|
2539
|
-
* <p>The major version of the service template to update.</p>
|
|
2540
|
-
*/
|
|
2541
|
-
templateMajorVersion?: string;
|
|
2542
|
-
|
|
2543
|
-
/**
|
|
2544
|
-
* <p>The minor version of the service template to update.</p>
|
|
2545
|
-
*/
|
|
2546
|
-
templateMinorVersion?: string;
|
|
2547
|
-
}
|
|
2548
|
-
|
|
2549
|
-
export namespace UpdateServiceInstanceInput {
|
|
2550
|
-
/**
|
|
2551
|
-
* @internal
|
|
2552
|
-
*/
|
|
2553
|
-
export const filterSensitiveLog = (obj: UpdateServiceInstanceInput): any => ({
|
|
2554
|
-
...obj,
|
|
2555
|
-
...(obj.spec && { spec: SENSITIVE_STRING }),
|
|
2556
|
-
});
|
|
2557
|
-
}
|
|
2558
|
-
|
|
2559
|
-
export interface UpdateServiceInstanceOutput {
|
|
2560
|
-
/**
|
|
2561
|
-
* <p>The service instance summary data returned by AWS Proton.</p>
|
|
2562
|
-
*/
|
|
2563
|
-
serviceInstance: ServiceInstance | undefined;
|
|
2564
|
-
}
|
|
2565
|
-
|
|
2566
|
-
export namespace UpdateServiceInstanceOutput {
|
|
2567
|
-
/**
|
|
2568
|
-
* @internal
|
|
2569
|
-
*/
|
|
2570
|
-
export const filterSensitiveLog = (obj: UpdateServiceInstanceOutput): any => ({
|
|
2571
|
-
...obj,
|
|
2572
|
-
...(obj.serviceInstance && { serviceInstance: ServiceInstance.filterSensitiveLog(obj.serviceInstance) }),
|
|
2573
|
-
});
|
|
2574
|
-
}
|
|
2575
|
-
|
|
2576
|
-
export interface UpdateServicePipelineInput {
|
|
2577
|
-
/**
|
|
2578
|
-
* <p>The name of the service to that the pipeline is associated with.</p>
|
|
2579
|
-
*/
|
|
2580
|
-
serviceName: string | undefined;
|
|
2581
|
-
|
|
2582
|
-
/**
|
|
2583
|
-
* <p>The spec for the service pipeline to update.</p>
|
|
2584
|
-
*/
|
|
2585
|
-
spec: string | undefined;
|
|
2586
|
-
|
|
2587
|
-
/**
|
|
2588
|
-
* <p>The deployment type.</p>
|
|
2589
|
-
* <p>There are four modes for updating a service pipeline as described in the following. The <code>deploymentType</code> field defines the
|
|
2590
|
-
* mode.</p>
|
|
2591
|
-
* <dl>
|
|
2592
|
-
* <dt/>
|
|
2593
|
-
* <dd>
|
|
2594
|
-
* <p>
|
|
2595
|
-
* <code>NONE</code>
|
|
2596
|
-
* </p>
|
|
2597
|
-
* <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
|
|
2598
|
-
* </dd>
|
|
2599
|
-
* <dt/>
|
|
2600
|
-
* <dd>
|
|
2601
|
-
* <p>
|
|
2602
|
-
* <code>CURRENT_VERSION</code>
|
|
2603
|
-
* </p>
|
|
2604
|
-
* <p>In this mode, the service pipeline is deployed and updated with the new spec that you provide. Only requested parameters are
|
|
2605
|
-
* updated. <i>Don’t</i> include minor or major version parameters when you use this
|
|
2606
|
-
* <code>deployment-type</code>.</p>
|
|
2607
|
-
* </dd>
|
|
2608
|
-
* <dt/>
|
|
2609
|
-
* <dd>
|
|
2610
|
-
* <p>
|
|
2611
|
-
* <code>MINOR_VERSION</code>
|
|
2612
|
-
* </p>
|
|
2613
|
-
* <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the
|
|
2614
|
-
* current major version in use, by default. You can also specify a different minor version of the current major version in
|
|
2615
|
-
* use.</p>
|
|
2616
|
-
* </dd>
|
|
2617
|
-
* <dt/>
|
|
2618
|
-
* <dd>
|
|
2619
|
-
* <p>
|
|
2620
|
-
* <code>MAJOR_VERSION</code>
|
|
2621
|
-
* </p>
|
|
2622
|
-
* <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) major and minor version
|
|
2623
|
-
* of the current template, by default. You can also specify a different major version that is higher than the major version in
|
|
2624
|
-
* use and a minor version (optional).</p>
|
|
2625
|
-
* </dd>
|
|
2626
|
-
* </dl>
|
|
2627
|
-
*/
|
|
2628
|
-
deploymentType: DeploymentUpdateType | string | undefined;
|
|
2629
|
-
|
|
2630
|
-
/**
|
|
2631
|
-
* <p>The major version of the service template that was used to create the service that the pipeline is associated with.</p>
|
|
2632
|
-
*/
|
|
2633
|
-
templateMajorVersion?: string;
|
|
2634
|
-
|
|
2635
|
-
/**
|
|
2636
|
-
* <p>The minor version of the service template that was used to create the service that the pipeline is associated with.</p>
|
|
2637
|
-
*/
|
|
2638
|
-
templateMinorVersion?: string;
|
|
2639
|
-
}
|
|
2640
|
-
|
|
2641
|
-
export namespace UpdateServicePipelineInput {
|
|
2642
|
-
/**
|
|
2643
|
-
* @internal
|
|
2644
|
-
*/
|
|
2645
|
-
export const filterSensitiveLog = (obj: UpdateServicePipelineInput): any => ({
|
|
2646
|
-
...obj,
|
|
2647
|
-
...(obj.spec && { spec: SENSITIVE_STRING }),
|
|
2648
|
-
});
|
|
2649
|
-
}
|
|
2650
|
-
|
|
2651
|
-
export interface UpdateServicePipelineOutput {
|
|
2652
|
-
/**
|
|
2653
|
-
* <p>The pipeline details returned by AWS Proton.</p>
|
|
2654
|
-
*/
|
|
2655
|
-
pipeline: ServicePipeline | undefined;
|
|
2656
|
-
}
|
|
2657
|
-
|
|
2658
|
-
export namespace UpdateServicePipelineOutput {
|
|
2659
|
-
/**
|
|
2660
|
-
* @internal
|
|
2661
|
-
*/
|
|
2662
|
-
export const filterSensitiveLog = (obj: UpdateServicePipelineOutput): any => ({
|
|
2663
|
-
...obj,
|
|
2664
|
-
...(obj.pipeline && { pipeline: ServicePipeline.filterSensitiveLog(obj.pipeline) }),
|
|
2665
|
-
});
|
|
2666
|
-
}
|
|
2667
|
-
|
|
2668
|
-
export interface CreateServiceInput {
|
|
2669
|
-
/**
|
|
2670
|
-
* <p>The service name.</p>
|
|
2671
|
-
*/
|
|
2672
|
-
name: string | undefined;
|
|
2673
|
-
|
|
2674
|
-
/**
|
|
2675
|
-
* <p>A description of the AWS Proton service.</p>
|
|
2676
|
-
*/
|
|
2677
|
-
description?: string;
|
|
2678
|
-
|
|
2679
|
-
/**
|
|
2680
|
-
* <p>The name of the service template that's used to create the service.</p>
|
|
2681
|
-
*/
|
|
2682
|
-
templateName: string | undefined;
|
|
2683
|
-
|
|
2684
|
-
/**
|
|
2685
|
-
* <p>The ID of the major version of the service template that was used to create the service.</p>
|
|
2686
|
-
*/
|
|
2687
|
-
templateMajorVersion: string | undefined;
|
|
2688
|
-
|
|
2689
|
-
/**
|
|
2690
|
-
* <p>The ID of the minor version of the service template that was used to create the service.</p>
|
|
2691
|
-
*/
|
|
2692
|
-
templateMinorVersion?: string;
|
|
2693
|
-
|
|
2694
|
-
/**
|
|
2695
|
-
* <p>A link to a spec file that provides inputs as defined in the service template bundle schema file. The spec file is in YAML format. Don’t
|
|
2696
|
-
* include pipeline inputs in the spec if your service template <i>doesn’t</i> include a service pipeline. For more
|
|
2697
|
-
* information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-create-svc.html.html">Create a service</a> in the
|
|
2698
|
-
* <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-create.html">Create a service</a> in the <i>AWS Proton User Guide</i>.</p>
|
|
2699
|
-
*/
|
|
2700
|
-
spec: string | undefined;
|
|
2701
|
-
|
|
2702
|
-
/**
|
|
2703
|
-
* <p>The Amazon Resource Name (ARN) of the repository connection. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html#setting-up-vcontrol">Set up repository connection</a> in the
|
|
2704
|
-
* <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection">Setting up with AWS Proton</a> in the <i>AWS Proton
|
|
2705
|
-
* User Guide</i>. <i>Don't</i> include this parameter if your service template <i>doesn't</i> include
|
|
2706
|
-
* a service pipeline.</p>
|
|
2707
|
-
*/
|
|
2708
|
-
repositoryConnectionArn?: string;
|
|
2709
|
-
|
|
2710
|
-
/**
|
|
2711
|
-
* <p>The ID of the code repository. <i>Don't</i> include this parameter if your service template <i>doesn't</i>
|
|
2712
|
-
* include a service pipeline.</p>
|
|
2713
|
-
*/
|
|
2714
|
-
repositoryId?: string;
|
|
2715
|
-
|
|
2716
|
-
/**
|
|
2717
|
-
* <p>The name of the code repository branch that holds the code that's deployed in AWS Proton. <i>Don't</i> include this
|
|
2718
|
-
* parameter if your service template <i>doesn't</i> include a service pipeline.</p>
|
|
2719
|
-
*/
|
|
2720
|
-
branchName?: string;
|
|
2721
|
-
|
|
2722
|
-
/**
|
|
2723
|
-
* <p>Create tags for your service. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
|
|
2724
|
-
*/
|
|
2725
|
-
tags?: Tag[];
|
|
2726
|
-
}
|
|
2727
|
-
|
|
2728
|
-
export namespace CreateServiceInput {
|
|
2729
|
-
/**
|
|
2730
|
-
* @internal
|
|
2731
|
-
*/
|
|
2732
|
-
export const filterSensitiveLog = (obj: CreateServiceInput): any => ({
|
|
2733
|
-
...obj,
|
|
2734
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
2735
|
-
...(obj.spec && { spec: SENSITIVE_STRING }),
|
|
2736
|
-
});
|
|
2737
|
-
}
|
|
2738
|
-
|
|
2739
|
-
export enum ServiceStatus {
|
|
2740
|
-
ACTIVE = "ACTIVE",
|
|
2741
|
-
CREATE_FAILED = "CREATE_FAILED",
|
|
2742
|
-
CREATE_FAILED_CLEANUP_COMPLETE = "CREATE_FAILED_CLEANUP_COMPLETE",
|
|
2743
|
-
CREATE_FAILED_CLEANUP_FAILED = "CREATE_FAILED_CLEANUP_FAILED",
|
|
2744
|
-
CREATE_FAILED_CLEANUP_IN_PROGRESS = "CREATE_FAILED_CLEANUP_IN_PROGRESS",
|
|
2745
|
-
CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
|
|
2746
|
-
DELETE_FAILED = "DELETE_FAILED",
|
|
2747
|
-
DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
|
|
2748
|
-
UPDATE_COMPLETE_CLEANUP_FAILED = "UPDATE_COMPLETE_CLEANUP_FAILED",
|
|
2749
|
-
UPDATE_FAILED = "UPDATE_FAILED",
|
|
2750
|
-
UPDATE_FAILED_CLEANUP_COMPLETE = "UPDATE_FAILED_CLEANUP_COMPLETE",
|
|
2751
|
-
UPDATE_FAILED_CLEANUP_FAILED = "UPDATE_FAILED_CLEANUP_FAILED",
|
|
2752
|
-
UPDATE_FAILED_CLEANUP_IN_PROGRESS = "UPDATE_FAILED_CLEANUP_IN_PROGRESS",
|
|
2753
|
-
UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
|
|
2754
|
-
}
|
|
2755
|
-
|
|
2756
|
-
/**
|
|
2757
|
-
* <p>The service detail data.</p>
|
|
2758
|
-
*/
|
|
2759
|
-
export interface Service {
|
|
2760
|
-
/**
|
|
2761
|
-
* <p>The name of the service.</p>
|
|
2762
|
-
*/
|
|
2763
|
-
name: string | undefined;
|
|
2764
|
-
|
|
2765
|
-
/**
|
|
2766
|
-
* <p>A description of a service.</p>
|
|
2767
|
-
*/
|
|
2768
|
-
description?: string;
|
|
2769
|
-
|
|
2770
|
-
/**
|
|
2771
|
-
* <p>The Amazon Resource Name (ARN) of the service.</p>
|
|
2772
|
-
*/
|
|
2773
|
-
arn: string | undefined;
|
|
2774
|
-
|
|
2775
|
-
/**
|
|
2776
|
-
* <p>The name of the service template.</p>
|
|
2777
|
-
*/
|
|
2778
|
-
templateName: string | undefined;
|
|
2779
|
-
|
|
2780
|
-
/**
|
|
2781
|
-
* <p>The time when the service was created.</p>
|
|
2782
|
-
*/
|
|
2783
|
-
createdAt: Date | undefined;
|
|
2784
|
-
|
|
2785
|
-
/**
|
|
2786
|
-
* <p>The time when the service was last modified.</p>
|
|
2787
|
-
*/
|
|
2788
|
-
lastModifiedAt: Date | undefined;
|
|
2789
|
-
|
|
2790
|
-
/**
|
|
2791
|
-
* <p>The status of the service.</p>
|
|
2792
|
-
*/
|
|
2793
|
-
status: ServiceStatus | string | undefined;
|
|
2794
|
-
|
|
2795
|
-
/**
|
|
2796
|
-
* <p>A service status message.</p>
|
|
2797
|
-
*/
|
|
2798
|
-
statusMessage?: string;
|
|
2799
|
-
|
|
2800
|
-
/**
|
|
2801
|
-
* <p>The formatted specification that defines the service.</p>
|
|
2802
|
-
*/
|
|
2803
|
-
spec: string | undefined;
|
|
2804
|
-
|
|
2805
|
-
/**
|
|
2806
|
-
* <p>The service pipeline detail data.</p>
|
|
2807
|
-
*/
|
|
2808
|
-
pipeline?: ServicePipeline;
|
|
2809
|
-
|
|
2810
|
-
/**
|
|
2811
|
-
* <p>The Amazon Resource Name (ARN) of the repository connection. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html#setting-up-vcontrol">Set up a repository connection</a> in the
|
|
2812
|
-
* <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection">Setting up with AWS Proton</a> in the <i>AWS Proton
|
|
2813
|
-
* User Guide</i>.</p>
|
|
2814
|
-
*/
|
|
2815
|
-
repositoryConnectionArn?: string;
|
|
2816
|
-
|
|
2817
|
-
/**
|
|
2818
|
-
* <p>The ID of the code repository.</p>
|
|
2819
|
-
*/
|
|
2820
|
-
repositoryId?: string;
|
|
2821
|
-
|
|
2822
|
-
/**
|
|
2823
|
-
* <p>The name of the code repository branch that holds the code that's deployed in AWS Proton.</p>
|
|
2824
|
-
*/
|
|
2825
|
-
branchName?: string;
|
|
2826
|
-
}
|
|
2827
|
-
|
|
2828
|
-
export namespace Service {
|
|
2829
|
-
/**
|
|
2830
|
-
* @internal
|
|
2831
|
-
*/
|
|
2832
|
-
export const filterSensitiveLog = (obj: Service): any => ({
|
|
2833
|
-
...obj,
|
|
2834
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
2835
|
-
...(obj.statusMessage && { statusMessage: SENSITIVE_STRING }),
|
|
2836
|
-
...(obj.spec && { spec: SENSITIVE_STRING }),
|
|
2837
|
-
...(obj.pipeline && { pipeline: ServicePipeline.filterSensitiveLog(obj.pipeline) }),
|
|
2838
|
-
});
|
|
2839
|
-
}
|
|
2840
|
-
|
|
2841
|
-
export interface CreateServiceOutput {
|
|
2842
|
-
/**
|
|
2843
|
-
* <p>The service detail data that's returned by AWS Proton.</p>
|
|
2844
|
-
*/
|
|
2845
|
-
service: Service | undefined;
|
|
2846
|
-
}
|
|
2847
|
-
|
|
2848
|
-
export namespace CreateServiceOutput {
|
|
2849
|
-
/**
|
|
2850
|
-
* @internal
|
|
2851
|
-
*/
|
|
2852
|
-
export const filterSensitiveLog = (obj: CreateServiceOutput): any => ({
|
|
2853
|
-
...obj,
|
|
2854
|
-
...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
|
|
2855
|
-
});
|
|
2856
|
-
}
|
|
2857
|
-
|
|
2858
|
-
export interface DeleteServiceInput {
|
|
2859
|
-
/**
|
|
2860
|
-
* <p>The name of the service to delete.</p>
|
|
2861
|
-
*/
|
|
2862
|
-
name: string | undefined;
|
|
2863
|
-
}
|
|
2864
|
-
|
|
2865
|
-
export namespace DeleteServiceInput {
|
|
2866
|
-
/**
|
|
2867
|
-
* @internal
|
|
2868
|
-
*/
|
|
2869
|
-
export const filterSensitiveLog = (obj: DeleteServiceInput): any => ({
|
|
2870
|
-
...obj,
|
|
2871
|
-
});
|
|
2872
|
-
}
|
|
2873
|
-
|
|
2874
|
-
export interface DeleteServiceOutput {
|
|
2875
|
-
/**
|
|
2876
|
-
* <p>The service detail data that's returned by AWS Proton.</p>
|
|
2877
|
-
*/
|
|
2878
|
-
service?: Service;
|
|
2879
|
-
}
|
|
2880
|
-
|
|
2881
|
-
export namespace DeleteServiceOutput {
|
|
2882
|
-
/**
|
|
2883
|
-
* @internal
|
|
2884
|
-
*/
|
|
2885
|
-
export const filterSensitiveLog = (obj: DeleteServiceOutput): any => ({
|
|
2886
|
-
...obj,
|
|
2887
|
-
...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
|
|
2888
|
-
});
|
|
2889
|
-
}
|
|
2890
|
-
|
|
2891
|
-
export interface GetServiceInput {
|
|
2892
|
-
/**
|
|
2893
|
-
* <p>The name of the service that you want to get the detail data for.</p>
|
|
2894
|
-
*/
|
|
2895
|
-
name: string | undefined;
|
|
2896
|
-
}
|
|
2897
|
-
|
|
2898
|
-
export namespace GetServiceInput {
|
|
2899
|
-
/**
|
|
2900
|
-
* @internal
|
|
2901
|
-
*/
|
|
2902
|
-
export const filterSensitiveLog = (obj: GetServiceInput): any => ({
|
|
2903
|
-
...obj,
|
|
2904
|
-
});
|
|
2905
|
-
}
|
|
2906
|
-
|
|
2907
|
-
export interface GetServiceOutput {
|
|
2908
|
-
/**
|
|
2909
|
-
* <p>The service detail data that's returned by AWS Proton.</p>
|
|
2910
|
-
*/
|
|
2911
|
-
service?: Service;
|
|
2912
|
-
}
|
|
2913
|
-
|
|
2914
|
-
export namespace GetServiceOutput {
|
|
2915
|
-
/**
|
|
2916
|
-
* @internal
|
|
2917
|
-
*/
|
|
2918
|
-
export const filterSensitiveLog = (obj: GetServiceOutput): any => ({
|
|
2919
|
-
...obj,
|
|
2920
|
-
...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
|
|
2921
|
-
});
|
|
2922
|
-
}
|
|
2923
|
-
|
|
2924
|
-
export interface ListServicesInput {
|
|
2925
|
-
/**
|
|
2926
|
-
* <p>A token to indicate the location of the next service in the array of services, after the list of services that was previously
|
|
2927
|
-
* requested.</p>
|
|
2928
|
-
*/
|
|
2929
|
-
nextToken?: string;
|
|
2930
|
-
|
|
2931
|
-
/**
|
|
2932
|
-
* <p>The maximum number of services to list.</p>
|
|
2933
|
-
*/
|
|
2934
|
-
maxResults?: number;
|
|
2935
|
-
}
|
|
2936
|
-
|
|
2937
|
-
export namespace ListServicesInput {
|
|
2938
|
-
/**
|
|
2939
|
-
* @internal
|
|
2940
|
-
*/
|
|
2941
|
-
export const filterSensitiveLog = (obj: ListServicesInput): any => ({
|
|
2942
|
-
...obj,
|
|
2943
|
-
});
|
|
2944
|
-
}
|
|
2945
|
-
|
|
2946
|
-
/**
|
|
2947
|
-
* <p>A summary of the service detail data.</p>
|
|
2948
|
-
*/
|
|
2949
|
-
export interface ServiceSummary {
|
|
2950
|
-
/**
|
|
2951
|
-
* <p>The name of the service.</p>
|
|
2952
|
-
*/
|
|
2953
|
-
name: string | undefined;
|
|
2954
|
-
|
|
2955
|
-
/**
|
|
2956
|
-
* <p>A description of the service.</p>
|
|
2957
|
-
*/
|
|
2958
|
-
description?: string;
|
|
2959
|
-
|
|
2960
|
-
/**
|
|
2961
|
-
* <p>The Amazon Resource Name (ARN) of the service.</p>
|
|
2962
|
-
*/
|
|
2963
|
-
arn: string | undefined;
|
|
2964
|
-
|
|
2965
|
-
/**
|
|
2966
|
-
* <p>The name of the service template.</p>
|
|
2967
|
-
*/
|
|
2968
|
-
templateName: string | undefined;
|
|
2969
|
-
|
|
2970
|
-
/**
|
|
2971
|
-
* <p>The time when the service was created.</p>
|
|
2972
|
-
*/
|
|
2973
|
-
createdAt: Date | undefined;
|
|
2974
|
-
|
|
2975
|
-
/**
|
|
2976
|
-
* <p>The time when the service was last modified.</p>
|
|
2977
|
-
*/
|
|
2978
|
-
lastModifiedAt: Date | undefined;
|
|
2979
|
-
|
|
2980
|
-
/**
|
|
2981
|
-
* <p>The status of the service.</p>
|
|
2982
|
-
*/
|
|
2983
|
-
status: ServiceStatus | string | undefined;
|
|
2984
|
-
|
|
2985
|
-
/**
|
|
2986
|
-
* <p>A service status message.</p>
|
|
2987
|
-
*/
|
|
2988
|
-
statusMessage?: string;
|
|
2989
|
-
}
|
|
2990
|
-
|
|
2991
|
-
export namespace ServiceSummary {
|
|
2992
|
-
/**
|
|
2993
|
-
* @internal
|
|
2994
|
-
*/
|
|
2995
|
-
export const filterSensitiveLog = (obj: ServiceSummary): any => ({
|
|
2996
|
-
...obj,
|
|
2997
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
2998
|
-
...(obj.statusMessage && { statusMessage: SENSITIVE_STRING }),
|
|
2999
|
-
});
|
|
3000
|
-
}
|
|
3001
|
-
|
|
3002
|
-
export interface ListServicesOutput {
|
|
3003
|
-
/**
|
|
3004
|
-
* <p>A token to indicate the location of the next service in the array of services, after the current requested list of services.</p>
|
|
3005
|
-
*/
|
|
3006
|
-
nextToken?: string;
|
|
3007
|
-
|
|
3008
|
-
/**
|
|
3009
|
-
* <p>An array of services with summaries of detail data.</p>
|
|
3010
|
-
*/
|
|
3011
|
-
services: ServiceSummary[] | undefined;
|
|
3012
|
-
}
|
|
3013
|
-
|
|
3014
|
-
export namespace ListServicesOutput {
|
|
3015
|
-
/**
|
|
3016
|
-
* @internal
|
|
3017
|
-
*/
|
|
3018
|
-
export const filterSensitiveLog = (obj: ListServicesOutput): any => ({
|
|
3019
|
-
...obj,
|
|
3020
|
-
...(obj.services && { services: obj.services.map((item) => ServiceSummary.filterSensitiveLog(item)) }),
|
|
3021
|
-
});
|
|
3022
|
-
}
|
|
3023
|
-
|
|
3024
|
-
export interface UpdateServiceInput {
|
|
3025
|
-
/**
|
|
3026
|
-
* <p>The name of the service to edit.</p>
|
|
3027
|
-
*/
|
|
3028
|
-
name: string | undefined;
|
|
3029
|
-
|
|
3030
|
-
/**
|
|
3031
|
-
* <p>The edited service description.</p>
|
|
3032
|
-
*/
|
|
3033
|
-
description?: string;
|
|
3034
|
-
|
|
3035
|
-
/**
|
|
3036
|
-
* <p>Lists the service instances to add and the existing service instances to remain. Omit the existing service instances to delete from the
|
|
3037
|
-
* list. <i>Don't</i> include edits to the existing service instances or pipeline. For more information, see <i>Edit a
|
|
3038
|
-
* service</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-svc-update.html">AWS Proton Administrator
|
|
3039
|
-
* Guide</a> or the <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-update.html">AWS Proton User Guide</a>.</p>
|
|
3040
|
-
*/
|
|
3041
|
-
spec?: string;
|
|
3042
|
-
}
|
|
3043
|
-
|
|
3044
|
-
export namespace UpdateServiceInput {
|
|
3045
|
-
/**
|
|
3046
|
-
* @internal
|
|
3047
|
-
*/
|
|
3048
|
-
export const filterSensitiveLog = (obj: UpdateServiceInput): any => ({
|
|
3049
|
-
...obj,
|
|
3050
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
3051
|
-
...(obj.spec && { spec: SENSITIVE_STRING }),
|
|
3052
|
-
});
|
|
3053
|
-
}
|
|
3054
|
-
|
|
3055
|
-
export interface UpdateServiceOutput {
|
|
3056
|
-
/**
|
|
3057
|
-
* <p>The service detail data that's returned by AWS Proton.</p>
|
|
3058
|
-
*/
|
|
3059
|
-
service: Service | undefined;
|
|
3060
|
-
}
|
|
3061
|
-
|
|
3062
|
-
export namespace UpdateServiceOutput {
|
|
3063
|
-
/**
|
|
3064
|
-
* @internal
|
|
3065
|
-
*/
|
|
3066
|
-
export const filterSensitiveLog = (obj: UpdateServiceOutput): any => ({
|
|
3067
|
-
...obj,
|
|
3068
|
-
...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
|
|
3069
|
-
});
|
|
3070
|
-
}
|
|
3071
|
-
|
|
3072
|
-
export interface CreateServiceTemplateInput {
|
|
3073
|
-
/**
|
|
3074
|
-
* <p>The name of the service template.</p>
|
|
3075
|
-
*/
|
|
3076
|
-
name: string | undefined;
|
|
3077
|
-
|
|
3078
|
-
/**
|
|
3079
|
-
* <p>The name of the service template as displayed in the developer interface.</p>
|
|
3080
|
-
*/
|
|
3081
|
-
displayName?: string;
|
|
3082
|
-
|
|
3083
|
-
/**
|
|
3084
|
-
* <p>A description of the service template.</p>
|
|
3085
|
-
*/
|
|
3086
|
-
description?: string;
|
|
3087
|
-
|
|
3088
|
-
/**
|
|
3089
|
-
* <p>A customer provided encryption key that's used to encrypt data.</p>
|
|
3090
|
-
*/
|
|
3091
|
-
encryptionKey?: string;
|
|
3092
|
-
|
|
3093
|
-
/**
|
|
3094
|
-
* <p>AWS Proton includes a service pipeline for your service by default. When included, this parameter indicates that an AWS Proton service
|
|
3095
|
-
* pipeline <i>won't</i> be included for your service. Once specified, this parameter <i>can't</i> be changed.
|
|
3096
|
-
* For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-template-bundles.html">Service template
|
|
3097
|
-
* bundles</a> in the <i>AWS Proton Administrator Guide</i>.</p>
|
|
3098
|
-
*/
|
|
3099
|
-
pipelineProvisioning?: Provisioning | string;
|
|
3100
|
-
|
|
3101
|
-
/**
|
|
3102
|
-
* <p>Create tags for your service template. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
|
|
3103
|
-
*/
|
|
3104
|
-
tags?: Tag[];
|
|
3105
|
-
}
|
|
3106
|
-
|
|
3107
|
-
export namespace CreateServiceTemplateInput {
|
|
3108
|
-
/**
|
|
3109
|
-
* @internal
|
|
3110
|
-
*/
|
|
3111
|
-
export const filterSensitiveLog = (obj: CreateServiceTemplateInput): any => ({
|
|
3112
|
-
...obj,
|
|
3113
|
-
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
3114
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
3115
|
-
});
|
|
3116
|
-
}
|
|
3117
|
-
|
|
3118
|
-
/**
|
|
3119
|
-
* <p>The service template detail data.</p>
|
|
3120
|
-
*/
|
|
3121
|
-
export interface ServiceTemplate {
|
|
3122
|
-
/**
|
|
3123
|
-
* <p>The name of the service template.</p>
|
|
3124
|
-
*/
|
|
3125
|
-
name: string | undefined;
|
|
3126
|
-
|
|
3127
|
-
/**
|
|
3128
|
-
* <p>The Amazon Resource Name (ARN) of the service template.</p>
|
|
3129
|
-
*/
|
|
3130
|
-
arn: string | undefined;
|
|
3131
|
-
|
|
3132
|
-
/**
|
|
3133
|
-
* <p>The time when the service template was created.</p>
|
|
3134
|
-
*/
|
|
3135
|
-
createdAt: Date | undefined;
|
|
3136
|
-
|
|
3137
|
-
/**
|
|
3138
|
-
* <p>The time when the service template was last modified.</p>
|
|
3139
|
-
*/
|
|
3140
|
-
lastModifiedAt: Date | undefined;
|
|
3141
|
-
|
|
3142
|
-
/**
|
|
3143
|
-
* <p>The service template name as displayed in the developer interface.</p>
|
|
3144
|
-
*/
|
|
3145
|
-
displayName?: string;
|
|
3146
|
-
|
|
3147
|
-
/**
|
|
3148
|
-
* <p>A description of the service template.</p>
|
|
3149
|
-
*/
|
|
3150
|
-
description?: string;
|
|
3151
|
-
|
|
3152
|
-
/**
|
|
3153
|
-
* <p>The ID of the recommended version of the service template.</p>
|
|
3154
|
-
*/
|
|
3155
|
-
recommendedVersion?: string;
|
|
3156
|
-
|
|
3157
|
-
/**
|
|
3158
|
-
* <p>The customer provided service template encryption key that's used to encrypt data.</p>
|
|
3159
|
-
*/
|
|
3160
|
-
encryptionKey?: string;
|
|
3161
|
-
|
|
3162
|
-
/**
|
|
3163
|
-
* <p>If <code>pipelineProvisioning</code> is <code>true</code>, a service pipeline is included in the service template. Otherwise, a service
|
|
3164
|
-
* pipeline <i>isn't</i> included in the service template.</p>
|
|
3165
|
-
*/
|
|
3166
|
-
pipelineProvisioning?: Provisioning | string;
|
|
3167
|
-
}
|
|
3168
|
-
|
|
3169
|
-
export namespace ServiceTemplate {
|
|
3170
|
-
/**
|
|
3171
|
-
* @internal
|
|
3172
|
-
*/
|
|
3173
|
-
export const filterSensitiveLog = (obj: ServiceTemplate): any => ({
|
|
3174
|
-
...obj,
|
|
3175
|
-
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
3176
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
3177
|
-
});
|
|
3178
|
-
}
|
|
3179
|
-
|
|
3180
|
-
export interface CreateServiceTemplateOutput {
|
|
3181
|
-
/**
|
|
3182
|
-
* <p>The service template detail data that's returned by AWS Proton.</p>
|
|
3183
|
-
*/
|
|
3184
|
-
serviceTemplate: ServiceTemplate | undefined;
|
|
3185
|
-
}
|
|
3186
|
-
|
|
3187
|
-
export namespace CreateServiceTemplateOutput {
|
|
3188
|
-
/**
|
|
3189
|
-
* @internal
|
|
3190
|
-
*/
|
|
3191
|
-
export const filterSensitiveLog = (obj: CreateServiceTemplateOutput): any => ({
|
|
3192
|
-
...obj,
|
|
3193
|
-
...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
|
|
3194
|
-
});
|
|
3195
|
-
}
|
|
3196
|
-
|
|
3197
|
-
export interface DeleteServiceTemplateInput {
|
|
3198
|
-
/**
|
|
3199
|
-
* <p>The name of the service template to delete.</p>
|
|
3200
|
-
*/
|
|
3201
|
-
name: string | undefined;
|
|
3202
|
-
}
|
|
3203
|
-
|
|
3204
|
-
export namespace DeleteServiceTemplateInput {
|
|
3205
|
-
/**
|
|
3206
|
-
* @internal
|
|
3207
|
-
*/
|
|
3208
|
-
export const filterSensitiveLog = (obj: DeleteServiceTemplateInput): any => ({
|
|
3209
|
-
...obj,
|
|
3210
|
-
});
|
|
3211
|
-
}
|
|
3212
|
-
|
|
3213
|
-
export interface DeleteServiceTemplateOutput {
|
|
3214
|
-
/**
|
|
3215
|
-
* <p>The service template detail data that's returned by AWS Proton.</p>
|
|
3216
|
-
*/
|
|
3217
|
-
serviceTemplate?: ServiceTemplate;
|
|
3218
|
-
}
|
|
3219
|
-
|
|
3220
|
-
export namespace DeleteServiceTemplateOutput {
|
|
3221
|
-
/**
|
|
3222
|
-
* @internal
|
|
3223
|
-
*/
|
|
3224
|
-
export const filterSensitiveLog = (obj: DeleteServiceTemplateOutput): any => ({
|
|
3225
|
-
...obj,
|
|
3226
|
-
...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
|
|
3227
|
-
});
|
|
3228
|
-
}
|
|
3229
|
-
|
|
3230
|
-
export interface GetServiceTemplateInput {
|
|
3231
|
-
/**
|
|
3232
|
-
* <p>The name of the service template that you want to get detail data for.</p>
|
|
3233
|
-
*/
|
|
3234
|
-
name: string | undefined;
|
|
3235
|
-
}
|
|
3236
|
-
|
|
3237
|
-
export namespace GetServiceTemplateInput {
|
|
3238
|
-
/**
|
|
3239
|
-
* @internal
|
|
3240
|
-
*/
|
|
3241
|
-
export const filterSensitiveLog = (obj: GetServiceTemplateInput): any => ({
|
|
3242
|
-
...obj,
|
|
3243
|
-
});
|
|
3244
|
-
}
|
|
3245
|
-
|
|
3246
|
-
export interface GetServiceTemplateOutput {
|
|
3247
|
-
/**
|
|
3248
|
-
* <p>The service template detail data that's returned by AWS Proton.</p>
|
|
3249
|
-
*/
|
|
3250
|
-
serviceTemplate: ServiceTemplate | undefined;
|
|
3251
|
-
}
|
|
3252
|
-
|
|
3253
|
-
export namespace GetServiceTemplateOutput {
|
|
3254
|
-
/**
|
|
3255
|
-
* @internal
|
|
3256
|
-
*/
|
|
3257
|
-
export const filterSensitiveLog = (obj: GetServiceTemplateOutput): any => ({
|
|
3258
|
-
...obj,
|
|
3259
|
-
...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
|
|
3260
|
-
});
|
|
3261
|
-
}
|
|
3262
|
-
|
|
3263
|
-
export interface ListServiceTemplatesInput {
|
|
3264
|
-
/**
|
|
3265
|
-
* <p>A token to indicate the location of the next service template in the array of service templates, after the list of service templates
|
|
3266
|
-
* previously requested.</p>
|
|
3267
|
-
*/
|
|
3268
|
-
nextToken?: string;
|
|
3269
|
-
|
|
3270
|
-
/**
|
|
3271
|
-
* <p>The maximum number of service templates to list.</p>
|
|
3272
|
-
*/
|
|
3273
|
-
maxResults?: number;
|
|
3274
|
-
}
|
|
3275
|
-
|
|
3276
|
-
export namespace ListServiceTemplatesInput {
|
|
3277
|
-
/**
|
|
3278
|
-
* @internal
|
|
3279
|
-
*/
|
|
3280
|
-
export const filterSensitiveLog = (obj: ListServiceTemplatesInput): any => ({
|
|
3281
|
-
...obj,
|
|
3282
|
-
});
|
|
3283
|
-
}
|
|
3284
|
-
|
|
3285
|
-
/**
|
|
3286
|
-
* <p>The service template summary data.</p>
|
|
3287
|
-
*/
|
|
3288
|
-
export interface ServiceTemplateSummary {
|
|
3289
|
-
/**
|
|
3290
|
-
* <p>The name of the service template.</p>
|
|
3291
|
-
*/
|
|
3292
|
-
name: string | undefined;
|
|
3293
|
-
|
|
3294
|
-
/**
|
|
3295
|
-
* <p>The Amazon Resource Name (ARN) of the service template.</p>
|
|
3296
|
-
*/
|
|
3297
|
-
arn: string | undefined;
|
|
3298
|
-
|
|
3299
|
-
/**
|
|
3300
|
-
* <p>The time when the service template was created.</p>
|
|
3301
|
-
*/
|
|
3302
|
-
createdAt: Date | undefined;
|
|
3303
|
-
|
|
3304
|
-
/**
|
|
3305
|
-
* <p>The time when the service template was last modified.</p>
|
|
3306
|
-
*/
|
|
3307
|
-
lastModifiedAt: Date | undefined;
|
|
3308
|
-
|
|
3309
|
-
/**
|
|
3310
|
-
* <p>The service template name as displayed in the developer interface.</p>
|
|
3311
|
-
*/
|
|
3312
|
-
displayName?: string;
|
|
3313
|
-
|
|
3314
|
-
/**
|
|
3315
|
-
* <p>A description of the service template.</p>
|
|
3316
|
-
*/
|
|
3317
|
-
description?: string;
|
|
3318
|
-
|
|
3319
|
-
/**
|
|
3320
|
-
* <p>The ID of the recommended version of the service template.</p>
|
|
3321
|
-
*/
|
|
3322
|
-
recommendedVersion?: string;
|
|
3323
|
-
|
|
3324
|
-
/**
|
|
3325
|
-
* <p>If <code>pipelineProvisioning</code> is <code>true</code>, a service pipeline is included in the service template, otherwise a service
|
|
3326
|
-
* pipeline <i>isn't</i> included in the service template.</p>
|
|
3327
|
-
*/
|
|
3328
|
-
pipelineProvisioning?: Provisioning | string;
|
|
3329
|
-
}
|
|
3330
|
-
|
|
3331
|
-
export namespace ServiceTemplateSummary {
|
|
3332
|
-
/**
|
|
3333
|
-
* @internal
|
|
3334
|
-
*/
|
|
3335
|
-
export const filterSensitiveLog = (obj: ServiceTemplateSummary): any => ({
|
|
3336
|
-
...obj,
|
|
3337
|
-
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
3338
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
3339
|
-
});
|
|
3340
|
-
}
|
|
3341
|
-
|
|
3342
|
-
export interface ListServiceTemplatesOutput {
|
|
3343
|
-
/**
|
|
3344
|
-
* <p>A token to indicate the location of the next service template in the array of service templates, after the current requested list of
|
|
3345
|
-
* service templates.</p>
|
|
3346
|
-
*/
|
|
3347
|
-
nextToken?: string;
|
|
3348
|
-
|
|
3349
|
-
/**
|
|
3350
|
-
* <p>An array of service templates with detail data.</p>
|
|
3351
|
-
*/
|
|
3352
|
-
templates: ServiceTemplateSummary[] | undefined;
|
|
3353
|
-
}
|
|
3354
|
-
|
|
3355
|
-
export namespace ListServiceTemplatesOutput {
|
|
3356
|
-
/**
|
|
3357
|
-
* @internal
|
|
3358
|
-
*/
|
|
3359
|
-
export const filterSensitiveLog = (obj: ListServiceTemplatesOutput): any => ({
|
|
3360
|
-
...obj,
|
|
3361
|
-
...(obj.templates && { templates: obj.templates.map((item) => ServiceTemplateSummary.filterSensitiveLog(item)) }),
|
|
3362
|
-
});
|
|
3363
|
-
}
|
|
3364
|
-
|
|
3365
|
-
export interface UpdateServiceTemplateInput {
|
|
3366
|
-
/**
|
|
3367
|
-
* <p>The name of the service template to update.</p>
|
|
3368
|
-
*/
|
|
3369
|
-
name: string | undefined;
|
|
3370
|
-
|
|
3371
|
-
/**
|
|
3372
|
-
* <p>The name of the service template to update as displayed in the developer interface.</p>
|
|
3373
|
-
*/
|
|
3374
|
-
displayName?: string;
|
|
3375
|
-
|
|
3376
|
-
/**
|
|
3377
|
-
* <p>A description of the service template update.</p>
|
|
3378
|
-
*/
|
|
3379
|
-
description?: string;
|
|
3380
|
-
}
|
|
3381
|
-
|
|
3382
|
-
export namespace UpdateServiceTemplateInput {
|
|
3383
|
-
/**
|
|
3384
|
-
* @internal
|
|
3385
|
-
*/
|
|
3386
|
-
export const filterSensitiveLog = (obj: UpdateServiceTemplateInput): any => ({
|
|
3387
|
-
...obj,
|
|
3388
|
-
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
3389
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
3390
|
-
});
|
|
3391
|
-
}
|
|
3392
|
-
|
|
3393
|
-
export interface UpdateServiceTemplateOutput {
|
|
3394
|
-
/**
|
|
3395
|
-
* <p>The service template detail data that's returned by AWS Proton.</p>
|
|
3396
|
-
*/
|
|
3397
|
-
serviceTemplate: ServiceTemplate | undefined;
|
|
3398
|
-
}
|
|
3399
|
-
|
|
3400
|
-
export namespace UpdateServiceTemplateOutput {
|
|
3401
|
-
/**
|
|
3402
|
-
* @internal
|
|
3403
|
-
*/
|
|
3404
|
-
export const filterSensitiveLog = (obj: UpdateServiceTemplateOutput): any => ({
|
|
3405
|
-
...obj,
|
|
3406
|
-
...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
|
|
3407
|
-
});
|
|
3408
|
-
}
|
|
3409
|
-
|
|
3410
|
-
/**
|
|
3411
|
-
* <p>Compatible environment template data.</p>
|
|
3412
|
-
*/
|
|
3413
|
-
export interface CompatibleEnvironmentTemplateInput {
|
|
3414
|
-
/**
|
|
3415
|
-
* <p>The compatible environment template name.</p>
|
|
3416
|
-
*/
|
|
3417
|
-
templateName: string | undefined;
|
|
3418
|
-
|
|
3419
|
-
/**
|
|
3420
|
-
* <p>The major version of the compatible environment template.</p>
|
|
3421
|
-
*/
|
|
3422
|
-
majorVersion: string | undefined;
|
|
3423
|
-
}
|
|
3424
|
-
|
|
3425
|
-
export namespace CompatibleEnvironmentTemplateInput {
|
|
3426
|
-
/**
|
|
3427
|
-
* @internal
|
|
3428
|
-
*/
|
|
3429
|
-
export const filterSensitiveLog = (obj: CompatibleEnvironmentTemplateInput): any => ({
|
|
3430
|
-
...obj,
|
|
3431
|
-
});
|
|
3432
|
-
}
|
|
3433
|
-
|
|
3434
|
-
export interface CreateServiceTemplateVersionInput {
|
|
3435
|
-
/**
|
|
3436
|
-
* <p>When included, if two identicial requests are made with the same client token, AWS Proton returns the service template version that the
|
|
3437
|
-
* first request created.</p>
|
|
3438
|
-
*/
|
|
3439
|
-
clientToken?: string;
|
|
3440
|
-
|
|
3441
|
-
/**
|
|
3442
|
-
* <p>The name of the service template.</p>
|
|
3443
|
-
*/
|
|
3444
|
-
templateName: string | undefined;
|
|
3445
|
-
|
|
3446
|
-
/**
|
|
3447
|
-
* <p>A description of the new version of a service template.</p>
|
|
3448
|
-
*/
|
|
3449
|
-
description?: string;
|
|
3450
|
-
|
|
3451
|
-
/**
|
|
3452
|
-
* <p>To create a new minor version of the service template, include a <code>majorVersion</code>.</p>
|
|
3453
|
-
* <p>To create a new major and minor version of the service template, <i>exclude</i>
|
|
3454
|
-
* <code>majorVersion</code>.</p>
|
|
3455
|
-
*/
|
|
3456
|
-
majorVersion?: string;
|
|
3457
|
-
|
|
3458
|
-
/**
|
|
3459
|
-
* <p>An object that includes the template bundle S3 bucket path and name for the new version of a service template.</p>
|
|
3460
|
-
*/
|
|
3461
|
-
source: TemplateVersionSourceInput | undefined;
|
|
3462
|
-
|
|
3463
|
-
/**
|
|
3464
|
-
* <p>An array of compatible environment template objects for the new version of a service template.</p>
|
|
3465
|
-
*/
|
|
3466
|
-
compatibleEnvironmentTemplates: CompatibleEnvironmentTemplateInput[] | undefined;
|
|
3467
|
-
|
|
3468
|
-
/**
|
|
3469
|
-
* <p>Create tags for a new version of a service template.</p>
|
|
3470
|
-
*/
|
|
3471
|
-
tags?: Tag[];
|
|
3472
|
-
}
|
|
3473
|
-
|
|
3474
|
-
export namespace CreateServiceTemplateVersionInput {
|
|
3475
|
-
/**
|
|
3476
|
-
* @internal
|
|
3477
|
-
*/
|
|
3478
|
-
export const filterSensitiveLog = (obj: CreateServiceTemplateVersionInput): any => ({
|
|
3479
|
-
...obj,
|
|
3480
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
3481
|
-
...(obj.source && { source: TemplateVersionSourceInput.filterSensitiveLog(obj.source) }),
|
|
3482
|
-
});
|
|
3483
|
-
}
|
|
3484
|
-
|
|
3485
|
-
/**
|
|
3486
|
-
* <p>Compatible environment template data.</p>
|
|
3487
|
-
*/
|
|
3488
|
-
export interface CompatibleEnvironmentTemplate {
|
|
3489
|
-
/**
|
|
3490
|
-
* <p>The compatible environment template name.</p>
|
|
3491
|
-
*/
|
|
3492
|
-
templateName: string | undefined;
|
|
3493
|
-
|
|
3494
|
-
/**
|
|
3495
|
-
* <p>The major version of the compatible environment template.</p>
|
|
3496
|
-
*/
|
|
3497
|
-
majorVersion: string | undefined;
|
|
3498
|
-
}
|
|
3499
|
-
|
|
3500
|
-
export namespace CompatibleEnvironmentTemplate {
|
|
3501
|
-
/**
|
|
3502
|
-
* @internal
|
|
3503
|
-
*/
|
|
3504
|
-
export const filterSensitiveLog = (obj: CompatibleEnvironmentTemplate): any => ({
|
|
3505
|
-
...obj,
|
|
3506
|
-
});
|
|
3507
|
-
}
|
|
3508
|
-
|
|
3509
|
-
/**
|
|
3510
|
-
* <p>The version of a service template detail data.</p>
|
|
3511
|
-
*/
|
|
3512
|
-
export interface ServiceTemplateVersion {
|
|
3513
|
-
/**
|
|
3514
|
-
* <p>The name of the version of a service template.</p>
|
|
3515
|
-
*/
|
|
3516
|
-
templateName: string | undefined;
|
|
3517
|
-
|
|
3518
|
-
/**
|
|
3519
|
-
* <p>The ID of the latest major version that's associated with the version of a service template.</p>
|
|
3520
|
-
*/
|
|
3521
|
-
majorVersion: string | undefined;
|
|
3522
|
-
|
|
3523
|
-
/**
|
|
3524
|
-
* <p>The ID of the minor version of a service template.</p>
|
|
3525
|
-
*/
|
|
3526
|
-
minorVersion: string | undefined;
|
|
3527
|
-
|
|
3528
|
-
/**
|
|
3529
|
-
* <p>The ID of the recommended minor version of the service template.</p>
|
|
3530
|
-
*/
|
|
3531
|
-
recommendedMinorVersion?: string;
|
|
3532
|
-
|
|
3533
|
-
/**
|
|
3534
|
-
* <p>The service template version status.</p>
|
|
3535
|
-
*/
|
|
3536
|
-
status: TemplateVersionStatus | string | undefined;
|
|
3537
|
-
|
|
3538
|
-
/**
|
|
3539
|
-
* <p>A service template version status message.</p>
|
|
3540
|
-
*/
|
|
3541
|
-
statusMessage?: string;
|
|
3542
|
-
|
|
3543
|
-
/**
|
|
3544
|
-
* <p>A description of the version of a service template.</p>
|
|
3545
|
-
*/
|
|
3546
|
-
description?: string;
|
|
3547
|
-
|
|
3548
|
-
/**
|
|
3549
|
-
* <p>The Amazon Resource Name (ARN) of the version of a service template.</p>
|
|
3550
|
-
*/
|
|
3551
|
-
arn: string | undefined;
|
|
3552
|
-
|
|
3553
|
-
/**
|
|
3554
|
-
* <p>The time when the version of a service template was created.</p>
|
|
3555
|
-
*/
|
|
3556
|
-
createdAt: Date | undefined;
|
|
3557
|
-
|
|
3558
|
-
/**
|
|
3559
|
-
* <p>The time when the version of a service template was last modified.</p>
|
|
3560
|
-
*/
|
|
3561
|
-
lastModifiedAt: Date | undefined;
|
|
3562
|
-
|
|
3563
|
-
/**
|
|
3564
|
-
* <p>An array of compatible environment template names for the major version of a service template.</p>
|
|
3565
|
-
*/
|
|
3566
|
-
compatibleEnvironmentTemplates: CompatibleEnvironmentTemplate[] | undefined;
|
|
3567
|
-
|
|
3568
|
-
/**
|
|
3569
|
-
* <p>The schema of the version of a service template.</p>
|
|
3570
|
-
*/
|
|
3571
|
-
schema?: string;
|
|
3572
|
-
}
|
|
3573
|
-
|
|
3574
|
-
export namespace ServiceTemplateVersion {
|
|
3575
|
-
/**
|
|
3576
|
-
* @internal
|
|
3577
|
-
*/
|
|
3578
|
-
export const filterSensitiveLog = (obj: ServiceTemplateVersion): any => ({
|
|
3579
|
-
...obj,
|
|
3580
|
-
...(obj.statusMessage && { statusMessage: SENSITIVE_STRING }),
|
|
3581
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
3582
|
-
...(obj.schema && { schema: SENSITIVE_STRING }),
|
|
3583
|
-
});
|
|
3584
|
-
}
|
|
3585
|
-
|
|
3586
|
-
export interface CreateServiceTemplateVersionOutput {
|
|
3587
|
-
/**
|
|
3588
|
-
* <p>The service template version summary of detail data that's returned by AWS Proton.</p>
|
|
3589
|
-
*/
|
|
3590
|
-
serviceTemplateVersion: ServiceTemplateVersion | undefined;
|
|
3591
|
-
}
|
|
3592
|
-
|
|
3593
|
-
export namespace CreateServiceTemplateVersionOutput {
|
|
3594
|
-
/**
|
|
3595
|
-
* @internal
|
|
3596
|
-
*/
|
|
3597
|
-
export const filterSensitiveLog = (obj: CreateServiceTemplateVersionOutput): any => ({
|
|
3598
|
-
...obj,
|
|
3599
|
-
...(obj.serviceTemplateVersion && {
|
|
3600
|
-
serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
|
|
3601
|
-
}),
|
|
3602
|
-
});
|
|
3603
|
-
}
|
|
3604
|
-
|
|
3605
|
-
export interface DeleteServiceTemplateVersionInput {
|
|
3606
|
-
/**
|
|
3607
|
-
* <p>The name of the service template.</p>
|
|
3608
|
-
*/
|
|
3609
|
-
templateName: string | undefined;
|
|
3610
|
-
|
|
3611
|
-
/**
|
|
3612
|
-
* <p>The service template major version to delete.</p>
|
|
3613
|
-
*/
|
|
3614
|
-
majorVersion: string | undefined;
|
|
3615
|
-
|
|
3616
|
-
/**
|
|
3617
|
-
* <p>The service template minor version to delete.</p>
|
|
3618
|
-
*/
|
|
3619
|
-
minorVersion: string | undefined;
|
|
3620
|
-
}
|
|
3621
|
-
|
|
3622
|
-
export namespace DeleteServiceTemplateVersionInput {
|
|
3623
|
-
/**
|
|
3624
|
-
* @internal
|
|
3625
|
-
*/
|
|
3626
|
-
export const filterSensitiveLog = (obj: DeleteServiceTemplateVersionInput): any => ({
|
|
3627
|
-
...obj,
|
|
3628
|
-
});
|
|
3629
|
-
}
|
|
3630
|
-
|
|
3631
|
-
export interface DeleteServiceTemplateVersionOutput {
|
|
3632
|
-
/**
|
|
3633
|
-
* <p>The service template version detail data that's returned by AWS Proton.</p>
|
|
3634
|
-
*/
|
|
3635
|
-
serviceTemplateVersion?: ServiceTemplateVersion;
|
|
3636
|
-
}
|
|
3637
|
-
|
|
3638
|
-
export namespace DeleteServiceTemplateVersionOutput {
|
|
3639
|
-
/**
|
|
3640
|
-
* @internal
|
|
3641
|
-
*/
|
|
3642
|
-
export const filterSensitiveLog = (obj: DeleteServiceTemplateVersionOutput): any => ({
|
|
3643
|
-
...obj,
|
|
3644
|
-
...(obj.serviceTemplateVersion && {
|
|
3645
|
-
serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
|
|
3646
|
-
}),
|
|
3647
|
-
});
|
|
3648
|
-
}
|
|
3649
|
-
|
|
3650
|
-
export interface GetServiceTemplateVersionInput {
|
|
3651
|
-
/**
|
|
3652
|
-
* <p>The name of the service template.</p>
|
|
3653
|
-
*/
|
|
3654
|
-
templateName: string | undefined;
|
|
3655
|
-
|
|
3656
|
-
/**
|
|
3657
|
-
* <p>To view service template major version detail data, include <code>majorVersion</code>.</p>
|
|
3658
|
-
*/
|
|
3659
|
-
majorVersion: string | undefined;
|
|
3660
|
-
|
|
3661
|
-
/**
|
|
3662
|
-
* <p>To view service template minor version detail data, include <code>minorVersion</code>.</p>
|
|
3663
|
-
*/
|
|
3664
|
-
minorVersion: string | undefined;
|
|
3665
|
-
}
|
|
3666
|
-
|
|
3667
|
-
export namespace GetServiceTemplateVersionInput {
|
|
3668
|
-
/**
|
|
3669
|
-
* @internal
|
|
3670
|
-
*/
|
|
3671
|
-
export const filterSensitiveLog = (obj: GetServiceTemplateVersionInput): any => ({
|
|
3672
|
-
...obj,
|
|
3673
|
-
});
|
|
3674
|
-
}
|
|
3675
|
-
|
|
3676
|
-
export interface GetServiceTemplateVersionOutput {
|
|
3677
|
-
/**
|
|
3678
|
-
* <p>The service template version detail data that's returned by AWS Proton.</p>
|
|
3679
|
-
*/
|
|
3680
|
-
serviceTemplateVersion: ServiceTemplateVersion | undefined;
|
|
3681
|
-
}
|
|
3682
|
-
|
|
3683
|
-
export namespace GetServiceTemplateVersionOutput {
|
|
3684
|
-
/**
|
|
3685
|
-
* @internal
|
|
3686
|
-
*/
|
|
3687
|
-
export const filterSensitiveLog = (obj: GetServiceTemplateVersionOutput): any => ({
|
|
3688
|
-
...obj,
|
|
3689
|
-
...(obj.serviceTemplateVersion && {
|
|
3690
|
-
serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
|
|
3691
|
-
}),
|
|
3692
|
-
});
|
|
3693
|
-
}
|
|
3694
|
-
|
|
3695
|
-
export interface ListServiceTemplateVersionsInput {
|
|
3696
|
-
/**
|
|
3697
|
-
* <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of a service template, after
|
|
3698
|
-
* the list of major or minor versions that was previously requested.</p>
|
|
3699
|
-
*/
|
|
3700
|
-
nextToken?: string;
|
|
3701
|
-
|
|
3702
|
-
/**
|
|
3703
|
-
* <p>The maximum number of major or minor versions of a service template to list.</p>
|
|
3704
|
-
*/
|
|
3705
|
-
maxResults?: number;
|
|
3706
|
-
|
|
3707
|
-
/**
|
|
3708
|
-
* <p>The name of the service template.</p>
|
|
3709
|
-
*/
|
|
3710
|
-
templateName: string | undefined;
|
|
3711
|
-
|
|
3712
|
-
/**
|
|
3713
|
-
* <p>To view a list of minor of versions under a major version of a service template, include <code>majorVersion</code>.</p>
|
|
3714
|
-
* <p>To view a list of major versions of a service template, <i>exclude</i>
|
|
3715
|
-
* <code>majorVersion</code>.</p>
|
|
3716
|
-
*/
|
|
3717
|
-
majorVersion?: string;
|
|
3718
|
-
}
|
|
3719
|
-
|
|
3720
|
-
export namespace ListServiceTemplateVersionsInput {
|
|
3721
|
-
/**
|
|
3722
|
-
* @internal
|
|
3723
|
-
*/
|
|
3724
|
-
export const filterSensitiveLog = (obj: ListServiceTemplateVersionsInput): any => ({
|
|
3725
|
-
...obj,
|
|
3726
|
-
});
|
|
3727
|
-
}
|
|
3728
|
-
|
|
3729
|
-
/**
|
|
3730
|
-
* <p>A summary of the service template version detail data.</p>
|
|
3731
|
-
*/
|
|
3732
|
-
export interface ServiceTemplateVersionSummary {
|
|
3733
|
-
/**
|
|
3734
|
-
* <p>The name of the service template.</p>
|
|
3735
|
-
*/
|
|
3736
|
-
templateName: string | undefined;
|
|
3737
|
-
|
|
3738
|
-
/**
|
|
3739
|
-
* <p>The ID of the latest major version that's associated with the version of a service template.</p>
|
|
3740
|
-
*/
|
|
3741
|
-
majorVersion: string | undefined;
|
|
3742
|
-
|
|
3743
|
-
/**
|
|
3744
|
-
* <p>The ID of the minor version of a service template.</p>
|
|
3745
|
-
*/
|
|
3746
|
-
minorVersion: string | undefined;
|
|
3747
|
-
|
|
3748
|
-
/**
|
|
3749
|
-
* <p>The ID of the recommended minor version of the service template.</p>
|
|
3750
|
-
*/
|
|
3751
|
-
recommendedMinorVersion?: string;
|
|
3752
|
-
|
|
3753
|
-
/**
|
|
3754
|
-
* <p>The service template minor version status.</p>
|
|
3755
|
-
*/
|
|
3756
|
-
status: TemplateVersionStatus | string | undefined;
|
|
3757
|
-
|
|
3758
|
-
/**
|
|
3759
|
-
* <p>A service template minor version status message.</p>
|
|
3760
|
-
*/
|
|
3761
|
-
statusMessage?: string;
|
|
3762
|
-
|
|
3763
|
-
/**
|
|
3764
|
-
* <p>A description of the version of a service template.</p>
|
|
3765
|
-
*/
|
|
3766
|
-
description?: string;
|
|
3767
|
-
|
|
3768
|
-
/**
|
|
3769
|
-
* <p>The Amazon Resource Name (ARN) of the version of a service template.</p>
|
|
3770
|
-
*/
|
|
3771
|
-
arn: string | undefined;
|
|
3772
|
-
|
|
3773
|
-
/**
|
|
3774
|
-
* <p>The time when the version of a service template was created.</p>
|
|
3775
|
-
*/
|
|
3776
|
-
createdAt: Date | undefined;
|
|
3777
|
-
|
|
3778
|
-
/**
|
|
3779
|
-
* <p>The time when the version of a service template was last modified.</p>
|
|
3780
|
-
*/
|
|
3781
|
-
lastModifiedAt: Date | undefined;
|
|
3782
|
-
}
|
|
3783
|
-
|
|
3784
|
-
export namespace ServiceTemplateVersionSummary {
|
|
3785
|
-
/**
|
|
3786
|
-
* @internal
|
|
3787
|
-
*/
|
|
3788
|
-
export const filterSensitiveLog = (obj: ServiceTemplateVersionSummary): any => ({
|
|
3789
|
-
...obj,
|
|
3790
|
-
...(obj.statusMessage && { statusMessage: SENSITIVE_STRING }),
|
|
3791
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
3792
|
-
});
|
|
3793
|
-
}
|
|
3794
|
-
|
|
3795
|
-
export interface ListServiceTemplateVersionsOutput {
|
|
3796
|
-
/**
|
|
3797
|
-
* <p>A token to indicate the location of the next major or minor version in the array of major or minor versions of a service template, after
|
|
3798
|
-
* the list of major or minor versions that was previously requested.</p>
|
|
3799
|
-
*/
|
|
3800
|
-
nextToken?: string;
|
|
3801
|
-
|
|
3802
|
-
/**
|
|
3803
|
-
* <p>An array of major or minor versions of a service template with detail data.</p>
|
|
3804
|
-
*/
|
|
3805
|
-
templateVersions: ServiceTemplateVersionSummary[] | undefined;
|
|
3806
|
-
}
|
|
3807
|
-
|
|
3808
|
-
export namespace ListServiceTemplateVersionsOutput {
|
|
3809
|
-
/**
|
|
3810
|
-
* @internal
|
|
3811
|
-
*/
|
|
3812
|
-
export const filterSensitiveLog = (obj: ListServiceTemplateVersionsOutput): any => ({
|
|
3813
|
-
...obj,
|
|
3814
|
-
...(obj.templateVersions && {
|
|
3815
|
-
templateVersions: obj.templateVersions.map((item) => ServiceTemplateVersionSummary.filterSensitiveLog(item)),
|
|
3816
|
-
}),
|
|
3817
|
-
});
|
|
3818
|
-
}
|
|
3819
|
-
|
|
3820
|
-
export interface UpdateServiceTemplateVersionInput {
|
|
3821
|
-
/**
|
|
3822
|
-
* <p>The name of the service template.</p>
|
|
3823
|
-
*/
|
|
3824
|
-
templateName: string | undefined;
|
|
3825
|
-
|
|
3826
|
-
/**
|
|
3827
|
-
* <p>To update a major version of a service template, include <code>majorVersion</code>.</p>
|
|
3828
|
-
*/
|
|
3829
|
-
majorVersion: string | undefined;
|
|
3830
|
-
|
|
3831
|
-
/**
|
|
3832
|
-
* <p>To update a minor version of a service template, include <code>minorVersion</code>.</p>
|
|
3833
|
-
*/
|
|
3834
|
-
minorVersion: string | undefined;
|
|
3835
|
-
|
|
3836
|
-
/**
|
|
3837
|
-
* <p>A description of a service template version to update.</p>
|
|
3838
|
-
*/
|
|
3839
|
-
description?: string;
|
|
3840
|
-
|
|
3841
|
-
/**
|
|
3842
|
-
* <p>The status of the service template minor version to update.</p>
|
|
3843
|
-
*/
|
|
3844
|
-
status?: TemplateVersionStatus | string;
|
|
3845
|
-
|
|
3846
|
-
/**
|
|
3847
|
-
* <p>An array of compatible environment names for a service template major or minor version to update.</p>
|
|
3848
|
-
*/
|
|
3849
|
-
compatibleEnvironmentTemplates?: CompatibleEnvironmentTemplateInput[];
|
|
3850
|
-
}
|
|
3851
|
-
|
|
3852
|
-
export namespace UpdateServiceTemplateVersionInput {
|
|
3853
|
-
/**
|
|
3854
|
-
* @internal
|
|
3855
|
-
*/
|
|
3856
|
-
export const filterSensitiveLog = (obj: UpdateServiceTemplateVersionInput): any => ({
|
|
3857
|
-
...obj,
|
|
3858
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
3859
|
-
});
|
|
3860
|
-
}
|
|
3861
|
-
|
|
3862
|
-
export interface UpdateServiceTemplateVersionOutput {
|
|
3863
|
-
/**
|
|
3864
|
-
* <p>The service template version detail data that's returned by AWS Proton.</p>
|
|
3865
|
-
*/
|
|
3866
|
-
serviceTemplateVersion: ServiceTemplateVersion | undefined;
|
|
3867
|
-
}
|
|
3868
|
-
|
|
3869
|
-
export namespace UpdateServiceTemplateVersionOutput {
|
|
3870
|
-
/**
|
|
3871
|
-
* @internal
|
|
3872
|
-
*/
|
|
3873
|
-
export const filterSensitiveLog = (obj: UpdateServiceTemplateVersionOutput): any => ({
|
|
3874
|
-
...obj,
|
|
3875
|
-
...(obj.serviceTemplateVersion && {
|
|
3876
|
-
serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
|
|
3877
|
-
}),
|
|
3878
|
-
});
|
|
3879
|
-
}
|
|
3880
|
-
|
|
3881
|
-
export interface TagResourceInput {
|
|
3882
|
-
/**
|
|
3883
|
-
* <p>The Amazon Resource Name (ARN) of the resource that the resource tag is applied to.</p>
|
|
3884
|
-
*/
|
|
3885
|
-
resourceArn: string | undefined;
|
|
3886
|
-
|
|
3887
|
-
/**
|
|
3888
|
-
* <p>An array of resource tags to apply to a resource.</p>
|
|
3889
|
-
*/
|
|
3890
|
-
tags: Tag[] | undefined;
|
|
3891
|
-
}
|
|
3892
|
-
|
|
3893
|
-
export namespace TagResourceInput {
|
|
3894
|
-
/**
|
|
3895
|
-
* @internal
|
|
3896
|
-
*/
|
|
3897
|
-
export const filterSensitiveLog = (obj: TagResourceInput): any => ({
|
|
3898
|
-
...obj,
|
|
3899
|
-
});
|
|
3900
|
-
}
|
|
3901
|
-
|
|
3902
|
-
export interface TagResourceOutput {}
|
|
3903
|
-
|
|
3904
|
-
export namespace TagResourceOutput {
|
|
3905
|
-
/**
|
|
3906
|
-
* @internal
|
|
3907
|
-
*/
|
|
3908
|
-
export const filterSensitiveLog = (obj: TagResourceOutput): any => ({
|
|
3909
|
-
...obj,
|
|
3910
|
-
});
|
|
3911
|
-
}
|
|
3912
|
-
|
|
3913
|
-
export interface UntagResourceInput {
|
|
3914
|
-
/**
|
|
3915
|
-
* <p>The Amazon Resource Name (ARN) of the resource that the tag is to be removed from.</p>
|
|
3916
|
-
*/
|
|
3917
|
-
resourceArn: string | undefined;
|
|
3918
|
-
|
|
3919
|
-
/**
|
|
3920
|
-
* <p>An array of tag keys indicating the resource tags to be removed from the resource.</p>
|
|
3921
|
-
*/
|
|
3922
|
-
tagKeys: string[] | undefined;
|
|
3923
|
-
}
|
|
3924
|
-
|
|
3925
|
-
export namespace UntagResourceInput {
|
|
3926
|
-
/**
|
|
3927
|
-
* @internal
|
|
3928
|
-
*/
|
|
3929
|
-
export const filterSensitiveLog = (obj: UntagResourceInput): any => ({
|
|
3930
|
-
...obj,
|
|
3931
|
-
});
|
|
3932
|
-
}
|
|
3933
|
-
|
|
3934
|
-
export interface UntagResourceOutput {}
|
|
3935
|
-
|
|
3936
|
-
export namespace UntagResourceOutput {
|
|
3937
|
-
/**
|
|
3938
|
-
* @internal
|
|
3939
|
-
*/
|
|
3940
|
-
export const filterSensitiveLog = (obj: UntagResourceOutput): any => ({
|
|
3941
|
-
...obj,
|
|
3942
|
-
});
|
|
3943
|
-
}
|