@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
|
@@ -0,0 +1,981 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListEnvironmentsInput = exports.EnvironmentTemplateFilter = exports.GetEnvironmentOutput = exports.GetEnvironmentInput = exports.DeleteEnvironmentOutput = exports.DeleteEnvironmentInput = exports.CreateEnvironmentOutput = exports.CreateEnvironmentInput = exports.Tag = exports.UpdateEnvironmentAccountConnectionOutput = exports.UpdateEnvironmentAccountConnectionInput = exports.RejectEnvironmentAccountConnectionOutput = exports.RejectEnvironmentAccountConnectionInput = exports.ListEnvironmentAccountConnectionsOutput = exports.EnvironmentAccountConnectionSummary = exports.ListEnvironmentAccountConnectionsInput = exports.EnvironmentAccountConnectionRequesterAccountType = exports.GetEnvironmentAccountConnectionOutput = exports.GetEnvironmentAccountConnectionInput = exports.DeleteEnvironmentAccountConnectionOutput = exports.DeleteEnvironmentAccountConnectionInput = exports.ServiceQuotaExceededException = exports.CreateEnvironmentAccountConnectionOutput = exports.CreateEnvironmentAccountConnectionInput = exports.CancelServicePipelineDeploymentOutput = exports.ServicePipeline = exports.CancelServicePipelineDeploymentInput = exports.CancelServiceInstanceDeploymentOutput = exports.ServiceInstance = exports.CancelServiceInstanceDeploymentInput = exports.CancelEnvironmentDeploymentOutput = exports.Environment = exports.Provisioning = exports.DeploymentStatus = exports.CancelEnvironmentDeploymentInput = exports.UpdateAccountSettingsOutput = exports.UpdateAccountSettingsInput = exports.GetAccountSettingsOutput = exports.GetAccountSettingsInput = exports.AccountSettings = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = exports.AcceptEnvironmentAccountConnectionOutput = exports.EnvironmentAccountConnection = exports.EnvironmentAccountConnectionStatus = exports.AcceptEnvironmentAccountConnectionInput = void 0;
|
|
4
|
+
exports.GetServiceInput = exports.DeleteServiceOutput = exports.DeleteServiceInput = exports.CreateServiceOutput = exports.Service = exports.ServiceStatus = exports.CreateServiceInput = exports.UpdateServicePipelineOutput = exports.UpdateServicePipelineInput = exports.UpdateServiceInstanceOutput = exports.UpdateServiceInstanceInput = exports.ListServiceInstancesOutput = exports.ServiceInstanceSummary = exports.ListServiceInstancesInput = exports.GetServiceInstanceOutput = exports.GetServiceInstanceInput = exports.ListTagsForResourceOutput = exports.ListTagsForResourceInput = exports.UpdateEnvironmentTemplateVersionOutput = exports.UpdateEnvironmentTemplateVersionInput = exports.ListEnvironmentTemplateVersionsOutput = exports.EnvironmentTemplateVersionSummary = exports.ListEnvironmentTemplateVersionsInput = exports.GetEnvironmentTemplateVersionOutput = exports.GetEnvironmentTemplateVersionInput = exports.DeleteEnvironmentTemplateVersionOutput = exports.DeleteEnvironmentTemplateVersionInput = exports.CreateEnvironmentTemplateVersionOutput = exports.EnvironmentTemplateVersion = exports.TemplateVersionStatus = exports.CreateEnvironmentTemplateVersionInput = exports.TemplateVersionSourceInput = exports.S3ObjectSource = exports.UpdateEnvironmentTemplateOutput = exports.UpdateEnvironmentTemplateInput = exports.ListEnvironmentTemplatesOutput = exports.EnvironmentTemplateSummary = exports.ListEnvironmentTemplatesInput = exports.GetEnvironmentTemplateOutput = exports.GetEnvironmentTemplateInput = exports.DeleteEnvironmentTemplateOutput = exports.DeleteEnvironmentTemplateInput = exports.CreateEnvironmentTemplateOutput = exports.EnvironmentTemplate = exports.CreateEnvironmentTemplateInput = exports.UpdateEnvironmentOutput = exports.UpdateEnvironmentInput = exports.DeploymentUpdateType = exports.ListEnvironmentsOutput = exports.EnvironmentSummary = void 0;
|
|
5
|
+
exports.UntagResourceOutput = exports.UntagResourceInput = exports.TagResourceOutput = exports.TagResourceInput = exports.UpdateServiceTemplateVersionOutput = exports.UpdateServiceTemplateVersionInput = exports.ListServiceTemplateVersionsOutput = exports.ServiceTemplateVersionSummary = exports.ListServiceTemplateVersionsInput = exports.GetServiceTemplateVersionOutput = exports.GetServiceTemplateVersionInput = exports.DeleteServiceTemplateVersionOutput = exports.DeleteServiceTemplateVersionInput = exports.CreateServiceTemplateVersionOutput = exports.ServiceTemplateVersion = exports.CompatibleEnvironmentTemplate = exports.CreateServiceTemplateVersionInput = exports.CompatibleEnvironmentTemplateInput = exports.UpdateServiceTemplateOutput = exports.UpdateServiceTemplateInput = exports.ListServiceTemplatesOutput = exports.ServiceTemplateSummary = exports.ListServiceTemplatesInput = exports.GetServiceTemplateOutput = exports.GetServiceTemplateInput = exports.DeleteServiceTemplateOutput = exports.DeleteServiceTemplateInput = exports.CreateServiceTemplateOutput = exports.ServiceTemplate = exports.CreateServiceTemplateInput = exports.UpdateServiceOutput = exports.UpdateServiceInput = exports.ListServicesOutput = exports.ServiceSummary = exports.ListServicesInput = exports.GetServiceOutput = void 0;
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
var AcceptEnvironmentAccountConnectionInput;
|
|
8
|
+
(function (AcceptEnvironmentAccountConnectionInput) {
|
|
9
|
+
AcceptEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
|
|
10
|
+
...obj,
|
|
11
|
+
});
|
|
12
|
+
})(AcceptEnvironmentAccountConnectionInput = exports.AcceptEnvironmentAccountConnectionInput || (exports.AcceptEnvironmentAccountConnectionInput = {}));
|
|
13
|
+
var EnvironmentAccountConnectionStatus;
|
|
14
|
+
(function (EnvironmentAccountConnectionStatus) {
|
|
15
|
+
EnvironmentAccountConnectionStatus["CONNECTED"] = "CONNECTED";
|
|
16
|
+
EnvironmentAccountConnectionStatus["PENDING"] = "PENDING";
|
|
17
|
+
EnvironmentAccountConnectionStatus["REJECTED"] = "REJECTED";
|
|
18
|
+
})(EnvironmentAccountConnectionStatus = exports.EnvironmentAccountConnectionStatus || (exports.EnvironmentAccountConnectionStatus = {}));
|
|
19
|
+
var EnvironmentAccountConnection;
|
|
20
|
+
(function (EnvironmentAccountConnection) {
|
|
21
|
+
EnvironmentAccountConnection.filterSensitiveLog = (obj) => ({
|
|
22
|
+
...obj,
|
|
23
|
+
});
|
|
24
|
+
})(EnvironmentAccountConnection = exports.EnvironmentAccountConnection || (exports.EnvironmentAccountConnection = {}));
|
|
25
|
+
var AcceptEnvironmentAccountConnectionOutput;
|
|
26
|
+
(function (AcceptEnvironmentAccountConnectionOutput) {
|
|
27
|
+
AcceptEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
|
|
28
|
+
...obj,
|
|
29
|
+
});
|
|
30
|
+
})(AcceptEnvironmentAccountConnectionOutput = exports.AcceptEnvironmentAccountConnectionOutput || (exports.AcceptEnvironmentAccountConnectionOutput = {}));
|
|
31
|
+
var AccessDeniedException;
|
|
32
|
+
(function (AccessDeniedException) {
|
|
33
|
+
AccessDeniedException.filterSensitiveLog = (obj) => ({
|
|
34
|
+
...obj,
|
|
35
|
+
...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
|
|
36
|
+
});
|
|
37
|
+
})(AccessDeniedException = exports.AccessDeniedException || (exports.AccessDeniedException = {}));
|
|
38
|
+
var ConflictException;
|
|
39
|
+
(function (ConflictException) {
|
|
40
|
+
ConflictException.filterSensitiveLog = (obj) => ({
|
|
41
|
+
...obj,
|
|
42
|
+
...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
|
|
43
|
+
});
|
|
44
|
+
})(ConflictException = exports.ConflictException || (exports.ConflictException = {}));
|
|
45
|
+
var InternalServerException;
|
|
46
|
+
(function (InternalServerException) {
|
|
47
|
+
InternalServerException.filterSensitiveLog = (obj) => ({
|
|
48
|
+
...obj,
|
|
49
|
+
...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
|
|
50
|
+
});
|
|
51
|
+
})(InternalServerException = exports.InternalServerException || (exports.InternalServerException = {}));
|
|
52
|
+
var ResourceNotFoundException;
|
|
53
|
+
(function (ResourceNotFoundException) {
|
|
54
|
+
ResourceNotFoundException.filterSensitiveLog = (obj) => ({
|
|
55
|
+
...obj,
|
|
56
|
+
...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
|
|
57
|
+
});
|
|
58
|
+
})(ResourceNotFoundException = exports.ResourceNotFoundException || (exports.ResourceNotFoundException = {}));
|
|
59
|
+
var ThrottlingException;
|
|
60
|
+
(function (ThrottlingException) {
|
|
61
|
+
ThrottlingException.filterSensitiveLog = (obj) => ({
|
|
62
|
+
...obj,
|
|
63
|
+
...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
|
|
64
|
+
});
|
|
65
|
+
})(ThrottlingException = exports.ThrottlingException || (exports.ThrottlingException = {}));
|
|
66
|
+
var ValidationException;
|
|
67
|
+
(function (ValidationException) {
|
|
68
|
+
ValidationException.filterSensitiveLog = (obj) => ({
|
|
69
|
+
...obj,
|
|
70
|
+
...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
|
|
71
|
+
});
|
|
72
|
+
})(ValidationException = exports.ValidationException || (exports.ValidationException = {}));
|
|
73
|
+
var AccountSettings;
|
|
74
|
+
(function (AccountSettings) {
|
|
75
|
+
AccountSettings.filterSensitiveLog = (obj) => ({
|
|
76
|
+
...obj,
|
|
77
|
+
});
|
|
78
|
+
})(AccountSettings = exports.AccountSettings || (exports.AccountSettings = {}));
|
|
79
|
+
var GetAccountSettingsInput;
|
|
80
|
+
(function (GetAccountSettingsInput) {
|
|
81
|
+
GetAccountSettingsInput.filterSensitiveLog = (obj) => ({
|
|
82
|
+
...obj,
|
|
83
|
+
});
|
|
84
|
+
})(GetAccountSettingsInput = exports.GetAccountSettingsInput || (exports.GetAccountSettingsInput = {}));
|
|
85
|
+
var GetAccountSettingsOutput;
|
|
86
|
+
(function (GetAccountSettingsOutput) {
|
|
87
|
+
GetAccountSettingsOutput.filterSensitiveLog = (obj) => ({
|
|
88
|
+
...obj,
|
|
89
|
+
});
|
|
90
|
+
})(GetAccountSettingsOutput = exports.GetAccountSettingsOutput || (exports.GetAccountSettingsOutput = {}));
|
|
91
|
+
var UpdateAccountSettingsInput;
|
|
92
|
+
(function (UpdateAccountSettingsInput) {
|
|
93
|
+
UpdateAccountSettingsInput.filterSensitiveLog = (obj) => ({
|
|
94
|
+
...obj,
|
|
95
|
+
});
|
|
96
|
+
})(UpdateAccountSettingsInput = exports.UpdateAccountSettingsInput || (exports.UpdateAccountSettingsInput = {}));
|
|
97
|
+
var UpdateAccountSettingsOutput;
|
|
98
|
+
(function (UpdateAccountSettingsOutput) {
|
|
99
|
+
UpdateAccountSettingsOutput.filterSensitiveLog = (obj) => ({
|
|
100
|
+
...obj,
|
|
101
|
+
});
|
|
102
|
+
})(UpdateAccountSettingsOutput = exports.UpdateAccountSettingsOutput || (exports.UpdateAccountSettingsOutput = {}));
|
|
103
|
+
var CancelEnvironmentDeploymentInput;
|
|
104
|
+
(function (CancelEnvironmentDeploymentInput) {
|
|
105
|
+
CancelEnvironmentDeploymentInput.filterSensitiveLog = (obj) => ({
|
|
106
|
+
...obj,
|
|
107
|
+
});
|
|
108
|
+
})(CancelEnvironmentDeploymentInput = exports.CancelEnvironmentDeploymentInput || (exports.CancelEnvironmentDeploymentInput = {}));
|
|
109
|
+
var DeploymentStatus;
|
|
110
|
+
(function (DeploymentStatus) {
|
|
111
|
+
DeploymentStatus["CANCELLED"] = "CANCELLED";
|
|
112
|
+
DeploymentStatus["CANCELLING"] = "CANCELLING";
|
|
113
|
+
DeploymentStatus["DELETE_COMPLETE"] = "DELETE_COMPLETE";
|
|
114
|
+
DeploymentStatus["DELETE_FAILED"] = "DELETE_FAILED";
|
|
115
|
+
DeploymentStatus["DELETE_IN_PROGRESS"] = "DELETE_IN_PROGRESS";
|
|
116
|
+
DeploymentStatus["FAILED"] = "FAILED";
|
|
117
|
+
DeploymentStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
118
|
+
DeploymentStatus["SUCCEEDED"] = "SUCCEEDED";
|
|
119
|
+
})(DeploymentStatus = exports.DeploymentStatus || (exports.DeploymentStatus = {}));
|
|
120
|
+
var Provisioning;
|
|
121
|
+
(function (Provisioning) {
|
|
122
|
+
Provisioning["CUSTOMER_MANAGED"] = "CUSTOMER_MANAGED";
|
|
123
|
+
})(Provisioning = exports.Provisioning || (exports.Provisioning = {}));
|
|
124
|
+
var Environment;
|
|
125
|
+
(function (Environment) {
|
|
126
|
+
Environment.filterSensitiveLog = (obj) => ({
|
|
127
|
+
...obj,
|
|
128
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
129
|
+
...(obj.deploymentStatusMessage && { deploymentStatusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
130
|
+
...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
|
|
131
|
+
});
|
|
132
|
+
})(Environment = exports.Environment || (exports.Environment = {}));
|
|
133
|
+
var CancelEnvironmentDeploymentOutput;
|
|
134
|
+
(function (CancelEnvironmentDeploymentOutput) {
|
|
135
|
+
CancelEnvironmentDeploymentOutput.filterSensitiveLog = (obj) => ({
|
|
136
|
+
...obj,
|
|
137
|
+
...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
|
|
138
|
+
});
|
|
139
|
+
})(CancelEnvironmentDeploymentOutput = exports.CancelEnvironmentDeploymentOutput || (exports.CancelEnvironmentDeploymentOutput = {}));
|
|
140
|
+
var CancelServiceInstanceDeploymentInput;
|
|
141
|
+
(function (CancelServiceInstanceDeploymentInput) {
|
|
142
|
+
CancelServiceInstanceDeploymentInput.filterSensitiveLog = (obj) => ({
|
|
143
|
+
...obj,
|
|
144
|
+
});
|
|
145
|
+
})(CancelServiceInstanceDeploymentInput = exports.CancelServiceInstanceDeploymentInput || (exports.CancelServiceInstanceDeploymentInput = {}));
|
|
146
|
+
var ServiceInstance;
|
|
147
|
+
(function (ServiceInstance) {
|
|
148
|
+
ServiceInstance.filterSensitiveLog = (obj) => ({
|
|
149
|
+
...obj,
|
|
150
|
+
...(obj.deploymentStatusMessage && { deploymentStatusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
151
|
+
...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
|
|
152
|
+
});
|
|
153
|
+
})(ServiceInstance = exports.ServiceInstance || (exports.ServiceInstance = {}));
|
|
154
|
+
var CancelServiceInstanceDeploymentOutput;
|
|
155
|
+
(function (CancelServiceInstanceDeploymentOutput) {
|
|
156
|
+
CancelServiceInstanceDeploymentOutput.filterSensitiveLog = (obj) => ({
|
|
157
|
+
...obj,
|
|
158
|
+
...(obj.serviceInstance && { serviceInstance: ServiceInstance.filterSensitiveLog(obj.serviceInstance) }),
|
|
159
|
+
});
|
|
160
|
+
})(CancelServiceInstanceDeploymentOutput = exports.CancelServiceInstanceDeploymentOutput || (exports.CancelServiceInstanceDeploymentOutput = {}));
|
|
161
|
+
var CancelServicePipelineDeploymentInput;
|
|
162
|
+
(function (CancelServicePipelineDeploymentInput) {
|
|
163
|
+
CancelServicePipelineDeploymentInput.filterSensitiveLog = (obj) => ({
|
|
164
|
+
...obj,
|
|
165
|
+
});
|
|
166
|
+
})(CancelServicePipelineDeploymentInput = exports.CancelServicePipelineDeploymentInput || (exports.CancelServicePipelineDeploymentInput = {}));
|
|
167
|
+
var ServicePipeline;
|
|
168
|
+
(function (ServicePipeline) {
|
|
169
|
+
ServicePipeline.filterSensitiveLog = (obj) => ({
|
|
170
|
+
...obj,
|
|
171
|
+
...(obj.deploymentStatusMessage && { deploymentStatusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
172
|
+
...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
|
|
173
|
+
});
|
|
174
|
+
})(ServicePipeline = exports.ServicePipeline || (exports.ServicePipeline = {}));
|
|
175
|
+
var CancelServicePipelineDeploymentOutput;
|
|
176
|
+
(function (CancelServicePipelineDeploymentOutput) {
|
|
177
|
+
CancelServicePipelineDeploymentOutput.filterSensitiveLog = (obj) => ({
|
|
178
|
+
...obj,
|
|
179
|
+
...(obj.pipeline && { pipeline: ServicePipeline.filterSensitiveLog(obj.pipeline) }),
|
|
180
|
+
});
|
|
181
|
+
})(CancelServicePipelineDeploymentOutput = exports.CancelServicePipelineDeploymentOutput || (exports.CancelServicePipelineDeploymentOutput = {}));
|
|
182
|
+
var CreateEnvironmentAccountConnectionInput;
|
|
183
|
+
(function (CreateEnvironmentAccountConnectionInput) {
|
|
184
|
+
CreateEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
|
|
185
|
+
...obj,
|
|
186
|
+
});
|
|
187
|
+
})(CreateEnvironmentAccountConnectionInput = exports.CreateEnvironmentAccountConnectionInput || (exports.CreateEnvironmentAccountConnectionInput = {}));
|
|
188
|
+
var CreateEnvironmentAccountConnectionOutput;
|
|
189
|
+
(function (CreateEnvironmentAccountConnectionOutput) {
|
|
190
|
+
CreateEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
|
|
191
|
+
...obj,
|
|
192
|
+
});
|
|
193
|
+
})(CreateEnvironmentAccountConnectionOutput = exports.CreateEnvironmentAccountConnectionOutput || (exports.CreateEnvironmentAccountConnectionOutput = {}));
|
|
194
|
+
var ServiceQuotaExceededException;
|
|
195
|
+
(function (ServiceQuotaExceededException) {
|
|
196
|
+
ServiceQuotaExceededException.filterSensitiveLog = (obj) => ({
|
|
197
|
+
...obj,
|
|
198
|
+
...(obj.message && { message: smithy_client_1.SENSITIVE_STRING }),
|
|
199
|
+
});
|
|
200
|
+
})(ServiceQuotaExceededException = exports.ServiceQuotaExceededException || (exports.ServiceQuotaExceededException = {}));
|
|
201
|
+
var DeleteEnvironmentAccountConnectionInput;
|
|
202
|
+
(function (DeleteEnvironmentAccountConnectionInput) {
|
|
203
|
+
DeleteEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
|
|
204
|
+
...obj,
|
|
205
|
+
});
|
|
206
|
+
})(DeleteEnvironmentAccountConnectionInput = exports.DeleteEnvironmentAccountConnectionInput || (exports.DeleteEnvironmentAccountConnectionInput = {}));
|
|
207
|
+
var DeleteEnvironmentAccountConnectionOutput;
|
|
208
|
+
(function (DeleteEnvironmentAccountConnectionOutput) {
|
|
209
|
+
DeleteEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
|
|
210
|
+
...obj,
|
|
211
|
+
});
|
|
212
|
+
})(DeleteEnvironmentAccountConnectionOutput = exports.DeleteEnvironmentAccountConnectionOutput || (exports.DeleteEnvironmentAccountConnectionOutput = {}));
|
|
213
|
+
var GetEnvironmentAccountConnectionInput;
|
|
214
|
+
(function (GetEnvironmentAccountConnectionInput) {
|
|
215
|
+
GetEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
|
|
216
|
+
...obj,
|
|
217
|
+
});
|
|
218
|
+
})(GetEnvironmentAccountConnectionInput = exports.GetEnvironmentAccountConnectionInput || (exports.GetEnvironmentAccountConnectionInput = {}));
|
|
219
|
+
var GetEnvironmentAccountConnectionOutput;
|
|
220
|
+
(function (GetEnvironmentAccountConnectionOutput) {
|
|
221
|
+
GetEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
|
|
222
|
+
...obj,
|
|
223
|
+
});
|
|
224
|
+
})(GetEnvironmentAccountConnectionOutput = exports.GetEnvironmentAccountConnectionOutput || (exports.GetEnvironmentAccountConnectionOutput = {}));
|
|
225
|
+
var EnvironmentAccountConnectionRequesterAccountType;
|
|
226
|
+
(function (EnvironmentAccountConnectionRequesterAccountType) {
|
|
227
|
+
EnvironmentAccountConnectionRequesterAccountType["ENVIRONMENT_ACCOUNT"] = "ENVIRONMENT_ACCOUNT";
|
|
228
|
+
EnvironmentAccountConnectionRequesterAccountType["MANAGEMENT_ACCOUNT"] = "MANAGEMENT_ACCOUNT";
|
|
229
|
+
})(EnvironmentAccountConnectionRequesterAccountType = exports.EnvironmentAccountConnectionRequesterAccountType || (exports.EnvironmentAccountConnectionRequesterAccountType = {}));
|
|
230
|
+
var ListEnvironmentAccountConnectionsInput;
|
|
231
|
+
(function (ListEnvironmentAccountConnectionsInput) {
|
|
232
|
+
ListEnvironmentAccountConnectionsInput.filterSensitiveLog = (obj) => ({
|
|
233
|
+
...obj,
|
|
234
|
+
});
|
|
235
|
+
})(ListEnvironmentAccountConnectionsInput = exports.ListEnvironmentAccountConnectionsInput || (exports.ListEnvironmentAccountConnectionsInput = {}));
|
|
236
|
+
var EnvironmentAccountConnectionSummary;
|
|
237
|
+
(function (EnvironmentAccountConnectionSummary) {
|
|
238
|
+
EnvironmentAccountConnectionSummary.filterSensitiveLog = (obj) => ({
|
|
239
|
+
...obj,
|
|
240
|
+
});
|
|
241
|
+
})(EnvironmentAccountConnectionSummary = exports.EnvironmentAccountConnectionSummary || (exports.EnvironmentAccountConnectionSummary = {}));
|
|
242
|
+
var ListEnvironmentAccountConnectionsOutput;
|
|
243
|
+
(function (ListEnvironmentAccountConnectionsOutput) {
|
|
244
|
+
ListEnvironmentAccountConnectionsOutput.filterSensitiveLog = (obj) => ({
|
|
245
|
+
...obj,
|
|
246
|
+
});
|
|
247
|
+
})(ListEnvironmentAccountConnectionsOutput = exports.ListEnvironmentAccountConnectionsOutput || (exports.ListEnvironmentAccountConnectionsOutput = {}));
|
|
248
|
+
var RejectEnvironmentAccountConnectionInput;
|
|
249
|
+
(function (RejectEnvironmentAccountConnectionInput) {
|
|
250
|
+
RejectEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
|
|
251
|
+
...obj,
|
|
252
|
+
});
|
|
253
|
+
})(RejectEnvironmentAccountConnectionInput = exports.RejectEnvironmentAccountConnectionInput || (exports.RejectEnvironmentAccountConnectionInput = {}));
|
|
254
|
+
var RejectEnvironmentAccountConnectionOutput;
|
|
255
|
+
(function (RejectEnvironmentAccountConnectionOutput) {
|
|
256
|
+
RejectEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
|
|
257
|
+
...obj,
|
|
258
|
+
});
|
|
259
|
+
})(RejectEnvironmentAccountConnectionOutput = exports.RejectEnvironmentAccountConnectionOutput || (exports.RejectEnvironmentAccountConnectionOutput = {}));
|
|
260
|
+
var UpdateEnvironmentAccountConnectionInput;
|
|
261
|
+
(function (UpdateEnvironmentAccountConnectionInput) {
|
|
262
|
+
UpdateEnvironmentAccountConnectionInput.filterSensitiveLog = (obj) => ({
|
|
263
|
+
...obj,
|
|
264
|
+
});
|
|
265
|
+
})(UpdateEnvironmentAccountConnectionInput = exports.UpdateEnvironmentAccountConnectionInput || (exports.UpdateEnvironmentAccountConnectionInput = {}));
|
|
266
|
+
var UpdateEnvironmentAccountConnectionOutput;
|
|
267
|
+
(function (UpdateEnvironmentAccountConnectionOutput) {
|
|
268
|
+
UpdateEnvironmentAccountConnectionOutput.filterSensitiveLog = (obj) => ({
|
|
269
|
+
...obj,
|
|
270
|
+
});
|
|
271
|
+
})(UpdateEnvironmentAccountConnectionOutput = exports.UpdateEnvironmentAccountConnectionOutput || (exports.UpdateEnvironmentAccountConnectionOutput = {}));
|
|
272
|
+
var Tag;
|
|
273
|
+
(function (Tag) {
|
|
274
|
+
Tag.filterSensitiveLog = (obj) => ({
|
|
275
|
+
...obj,
|
|
276
|
+
});
|
|
277
|
+
})(Tag = exports.Tag || (exports.Tag = {}));
|
|
278
|
+
var CreateEnvironmentInput;
|
|
279
|
+
(function (CreateEnvironmentInput) {
|
|
280
|
+
CreateEnvironmentInput.filterSensitiveLog = (obj) => ({
|
|
281
|
+
...obj,
|
|
282
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
283
|
+
...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
|
|
284
|
+
});
|
|
285
|
+
})(CreateEnvironmentInput = exports.CreateEnvironmentInput || (exports.CreateEnvironmentInput = {}));
|
|
286
|
+
var CreateEnvironmentOutput;
|
|
287
|
+
(function (CreateEnvironmentOutput) {
|
|
288
|
+
CreateEnvironmentOutput.filterSensitiveLog = (obj) => ({
|
|
289
|
+
...obj,
|
|
290
|
+
...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
|
|
291
|
+
});
|
|
292
|
+
})(CreateEnvironmentOutput = exports.CreateEnvironmentOutput || (exports.CreateEnvironmentOutput = {}));
|
|
293
|
+
var DeleteEnvironmentInput;
|
|
294
|
+
(function (DeleteEnvironmentInput) {
|
|
295
|
+
DeleteEnvironmentInput.filterSensitiveLog = (obj) => ({
|
|
296
|
+
...obj,
|
|
297
|
+
});
|
|
298
|
+
})(DeleteEnvironmentInput = exports.DeleteEnvironmentInput || (exports.DeleteEnvironmentInput = {}));
|
|
299
|
+
var DeleteEnvironmentOutput;
|
|
300
|
+
(function (DeleteEnvironmentOutput) {
|
|
301
|
+
DeleteEnvironmentOutput.filterSensitiveLog = (obj) => ({
|
|
302
|
+
...obj,
|
|
303
|
+
...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
|
|
304
|
+
});
|
|
305
|
+
})(DeleteEnvironmentOutput = exports.DeleteEnvironmentOutput || (exports.DeleteEnvironmentOutput = {}));
|
|
306
|
+
var GetEnvironmentInput;
|
|
307
|
+
(function (GetEnvironmentInput) {
|
|
308
|
+
GetEnvironmentInput.filterSensitiveLog = (obj) => ({
|
|
309
|
+
...obj,
|
|
310
|
+
});
|
|
311
|
+
})(GetEnvironmentInput = exports.GetEnvironmentInput || (exports.GetEnvironmentInput = {}));
|
|
312
|
+
var GetEnvironmentOutput;
|
|
313
|
+
(function (GetEnvironmentOutput) {
|
|
314
|
+
GetEnvironmentOutput.filterSensitiveLog = (obj) => ({
|
|
315
|
+
...obj,
|
|
316
|
+
...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
|
|
317
|
+
});
|
|
318
|
+
})(GetEnvironmentOutput = exports.GetEnvironmentOutput || (exports.GetEnvironmentOutput = {}));
|
|
319
|
+
var EnvironmentTemplateFilter;
|
|
320
|
+
(function (EnvironmentTemplateFilter) {
|
|
321
|
+
EnvironmentTemplateFilter.filterSensitiveLog = (obj) => ({
|
|
322
|
+
...obj,
|
|
323
|
+
});
|
|
324
|
+
})(EnvironmentTemplateFilter = exports.EnvironmentTemplateFilter || (exports.EnvironmentTemplateFilter = {}));
|
|
325
|
+
var ListEnvironmentsInput;
|
|
326
|
+
(function (ListEnvironmentsInput) {
|
|
327
|
+
ListEnvironmentsInput.filterSensitiveLog = (obj) => ({
|
|
328
|
+
...obj,
|
|
329
|
+
});
|
|
330
|
+
})(ListEnvironmentsInput = exports.ListEnvironmentsInput || (exports.ListEnvironmentsInput = {}));
|
|
331
|
+
var EnvironmentSummary;
|
|
332
|
+
(function (EnvironmentSummary) {
|
|
333
|
+
EnvironmentSummary.filterSensitiveLog = (obj) => ({
|
|
334
|
+
...obj,
|
|
335
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
336
|
+
...(obj.deploymentStatusMessage && { deploymentStatusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
337
|
+
});
|
|
338
|
+
})(EnvironmentSummary = exports.EnvironmentSummary || (exports.EnvironmentSummary = {}));
|
|
339
|
+
var ListEnvironmentsOutput;
|
|
340
|
+
(function (ListEnvironmentsOutput) {
|
|
341
|
+
ListEnvironmentsOutput.filterSensitiveLog = (obj) => ({
|
|
342
|
+
...obj,
|
|
343
|
+
...(obj.environments && {
|
|
344
|
+
environments: obj.environments.map((item) => EnvironmentSummary.filterSensitiveLog(item)),
|
|
345
|
+
}),
|
|
346
|
+
});
|
|
347
|
+
})(ListEnvironmentsOutput = exports.ListEnvironmentsOutput || (exports.ListEnvironmentsOutput = {}));
|
|
348
|
+
var DeploymentUpdateType;
|
|
349
|
+
(function (DeploymentUpdateType) {
|
|
350
|
+
DeploymentUpdateType["CURRENT_VERSION"] = "CURRENT_VERSION";
|
|
351
|
+
DeploymentUpdateType["MAJOR_VERSION"] = "MAJOR_VERSION";
|
|
352
|
+
DeploymentUpdateType["MINOR_VERSION"] = "MINOR_VERSION";
|
|
353
|
+
DeploymentUpdateType["NONE"] = "NONE";
|
|
354
|
+
})(DeploymentUpdateType = exports.DeploymentUpdateType || (exports.DeploymentUpdateType = {}));
|
|
355
|
+
var UpdateEnvironmentInput;
|
|
356
|
+
(function (UpdateEnvironmentInput) {
|
|
357
|
+
UpdateEnvironmentInput.filterSensitiveLog = (obj) => ({
|
|
358
|
+
...obj,
|
|
359
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
360
|
+
...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
|
|
361
|
+
});
|
|
362
|
+
})(UpdateEnvironmentInput = exports.UpdateEnvironmentInput || (exports.UpdateEnvironmentInput = {}));
|
|
363
|
+
var UpdateEnvironmentOutput;
|
|
364
|
+
(function (UpdateEnvironmentOutput) {
|
|
365
|
+
UpdateEnvironmentOutput.filterSensitiveLog = (obj) => ({
|
|
366
|
+
...obj,
|
|
367
|
+
...(obj.environment && { environment: Environment.filterSensitiveLog(obj.environment) }),
|
|
368
|
+
});
|
|
369
|
+
})(UpdateEnvironmentOutput = exports.UpdateEnvironmentOutput || (exports.UpdateEnvironmentOutput = {}));
|
|
370
|
+
var CreateEnvironmentTemplateInput;
|
|
371
|
+
(function (CreateEnvironmentTemplateInput) {
|
|
372
|
+
CreateEnvironmentTemplateInput.filterSensitiveLog = (obj) => ({
|
|
373
|
+
...obj,
|
|
374
|
+
...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
|
|
375
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
376
|
+
});
|
|
377
|
+
})(CreateEnvironmentTemplateInput = exports.CreateEnvironmentTemplateInput || (exports.CreateEnvironmentTemplateInput = {}));
|
|
378
|
+
var EnvironmentTemplate;
|
|
379
|
+
(function (EnvironmentTemplate) {
|
|
380
|
+
EnvironmentTemplate.filterSensitiveLog = (obj) => ({
|
|
381
|
+
...obj,
|
|
382
|
+
...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
|
|
383
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
384
|
+
});
|
|
385
|
+
})(EnvironmentTemplate = exports.EnvironmentTemplate || (exports.EnvironmentTemplate = {}));
|
|
386
|
+
var CreateEnvironmentTemplateOutput;
|
|
387
|
+
(function (CreateEnvironmentTemplateOutput) {
|
|
388
|
+
CreateEnvironmentTemplateOutput.filterSensitiveLog = (obj) => ({
|
|
389
|
+
...obj,
|
|
390
|
+
...(obj.environmentTemplate && {
|
|
391
|
+
environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
|
|
392
|
+
}),
|
|
393
|
+
});
|
|
394
|
+
})(CreateEnvironmentTemplateOutput = exports.CreateEnvironmentTemplateOutput || (exports.CreateEnvironmentTemplateOutput = {}));
|
|
395
|
+
var DeleteEnvironmentTemplateInput;
|
|
396
|
+
(function (DeleteEnvironmentTemplateInput) {
|
|
397
|
+
DeleteEnvironmentTemplateInput.filterSensitiveLog = (obj) => ({
|
|
398
|
+
...obj,
|
|
399
|
+
});
|
|
400
|
+
})(DeleteEnvironmentTemplateInput = exports.DeleteEnvironmentTemplateInput || (exports.DeleteEnvironmentTemplateInput = {}));
|
|
401
|
+
var DeleteEnvironmentTemplateOutput;
|
|
402
|
+
(function (DeleteEnvironmentTemplateOutput) {
|
|
403
|
+
DeleteEnvironmentTemplateOutput.filterSensitiveLog = (obj) => ({
|
|
404
|
+
...obj,
|
|
405
|
+
...(obj.environmentTemplate && {
|
|
406
|
+
environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
|
|
407
|
+
}),
|
|
408
|
+
});
|
|
409
|
+
})(DeleteEnvironmentTemplateOutput = exports.DeleteEnvironmentTemplateOutput || (exports.DeleteEnvironmentTemplateOutput = {}));
|
|
410
|
+
var GetEnvironmentTemplateInput;
|
|
411
|
+
(function (GetEnvironmentTemplateInput) {
|
|
412
|
+
GetEnvironmentTemplateInput.filterSensitiveLog = (obj) => ({
|
|
413
|
+
...obj,
|
|
414
|
+
});
|
|
415
|
+
})(GetEnvironmentTemplateInput = exports.GetEnvironmentTemplateInput || (exports.GetEnvironmentTemplateInput = {}));
|
|
416
|
+
var GetEnvironmentTemplateOutput;
|
|
417
|
+
(function (GetEnvironmentTemplateOutput) {
|
|
418
|
+
GetEnvironmentTemplateOutput.filterSensitiveLog = (obj) => ({
|
|
419
|
+
...obj,
|
|
420
|
+
...(obj.environmentTemplate && {
|
|
421
|
+
environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
|
|
422
|
+
}),
|
|
423
|
+
});
|
|
424
|
+
})(GetEnvironmentTemplateOutput = exports.GetEnvironmentTemplateOutput || (exports.GetEnvironmentTemplateOutput = {}));
|
|
425
|
+
var ListEnvironmentTemplatesInput;
|
|
426
|
+
(function (ListEnvironmentTemplatesInput) {
|
|
427
|
+
ListEnvironmentTemplatesInput.filterSensitiveLog = (obj) => ({
|
|
428
|
+
...obj,
|
|
429
|
+
});
|
|
430
|
+
})(ListEnvironmentTemplatesInput = exports.ListEnvironmentTemplatesInput || (exports.ListEnvironmentTemplatesInput = {}));
|
|
431
|
+
var EnvironmentTemplateSummary;
|
|
432
|
+
(function (EnvironmentTemplateSummary) {
|
|
433
|
+
EnvironmentTemplateSummary.filterSensitiveLog = (obj) => ({
|
|
434
|
+
...obj,
|
|
435
|
+
...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
|
|
436
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
437
|
+
});
|
|
438
|
+
})(EnvironmentTemplateSummary = exports.EnvironmentTemplateSummary || (exports.EnvironmentTemplateSummary = {}));
|
|
439
|
+
var ListEnvironmentTemplatesOutput;
|
|
440
|
+
(function (ListEnvironmentTemplatesOutput) {
|
|
441
|
+
ListEnvironmentTemplatesOutput.filterSensitiveLog = (obj) => ({
|
|
442
|
+
...obj,
|
|
443
|
+
...(obj.templates && {
|
|
444
|
+
templates: obj.templates.map((item) => EnvironmentTemplateSummary.filterSensitiveLog(item)),
|
|
445
|
+
}),
|
|
446
|
+
});
|
|
447
|
+
})(ListEnvironmentTemplatesOutput = exports.ListEnvironmentTemplatesOutput || (exports.ListEnvironmentTemplatesOutput = {}));
|
|
448
|
+
var UpdateEnvironmentTemplateInput;
|
|
449
|
+
(function (UpdateEnvironmentTemplateInput) {
|
|
450
|
+
UpdateEnvironmentTemplateInput.filterSensitiveLog = (obj) => ({
|
|
451
|
+
...obj,
|
|
452
|
+
...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
|
|
453
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
454
|
+
});
|
|
455
|
+
})(UpdateEnvironmentTemplateInput = exports.UpdateEnvironmentTemplateInput || (exports.UpdateEnvironmentTemplateInput = {}));
|
|
456
|
+
var UpdateEnvironmentTemplateOutput;
|
|
457
|
+
(function (UpdateEnvironmentTemplateOutput) {
|
|
458
|
+
UpdateEnvironmentTemplateOutput.filterSensitiveLog = (obj) => ({
|
|
459
|
+
...obj,
|
|
460
|
+
...(obj.environmentTemplate && {
|
|
461
|
+
environmentTemplate: EnvironmentTemplate.filterSensitiveLog(obj.environmentTemplate),
|
|
462
|
+
}),
|
|
463
|
+
});
|
|
464
|
+
})(UpdateEnvironmentTemplateOutput = exports.UpdateEnvironmentTemplateOutput || (exports.UpdateEnvironmentTemplateOutput = {}));
|
|
465
|
+
var S3ObjectSource;
|
|
466
|
+
(function (S3ObjectSource) {
|
|
467
|
+
S3ObjectSource.filterSensitiveLog = (obj) => ({
|
|
468
|
+
...obj,
|
|
469
|
+
});
|
|
470
|
+
})(S3ObjectSource = exports.S3ObjectSource || (exports.S3ObjectSource = {}));
|
|
471
|
+
var TemplateVersionSourceInput;
|
|
472
|
+
(function (TemplateVersionSourceInput) {
|
|
473
|
+
TemplateVersionSourceInput.visit = (value, visitor) => {
|
|
474
|
+
if (value.s3 !== undefined)
|
|
475
|
+
return visitor.s3(value.s3);
|
|
476
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
477
|
+
};
|
|
478
|
+
TemplateVersionSourceInput.filterSensitiveLog = (obj) => {
|
|
479
|
+
if (obj.s3 !== undefined)
|
|
480
|
+
return { s3: S3ObjectSource.filterSensitiveLog(obj.s3) };
|
|
481
|
+
if (obj.$unknown !== undefined)
|
|
482
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
483
|
+
};
|
|
484
|
+
})(TemplateVersionSourceInput = exports.TemplateVersionSourceInput || (exports.TemplateVersionSourceInput = {}));
|
|
485
|
+
var CreateEnvironmentTemplateVersionInput;
|
|
486
|
+
(function (CreateEnvironmentTemplateVersionInput) {
|
|
487
|
+
CreateEnvironmentTemplateVersionInput.filterSensitiveLog = (obj) => ({
|
|
488
|
+
...obj,
|
|
489
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
490
|
+
...(obj.source && { source: TemplateVersionSourceInput.filterSensitiveLog(obj.source) }),
|
|
491
|
+
});
|
|
492
|
+
})(CreateEnvironmentTemplateVersionInput = exports.CreateEnvironmentTemplateVersionInput || (exports.CreateEnvironmentTemplateVersionInput = {}));
|
|
493
|
+
var TemplateVersionStatus;
|
|
494
|
+
(function (TemplateVersionStatus) {
|
|
495
|
+
TemplateVersionStatus["DRAFT"] = "DRAFT";
|
|
496
|
+
TemplateVersionStatus["PUBLISHED"] = "PUBLISHED";
|
|
497
|
+
TemplateVersionStatus["REGISTRATION_FAILED"] = "REGISTRATION_FAILED";
|
|
498
|
+
TemplateVersionStatus["REGISTRATION_IN_PROGRESS"] = "REGISTRATION_IN_PROGRESS";
|
|
499
|
+
})(TemplateVersionStatus = exports.TemplateVersionStatus || (exports.TemplateVersionStatus = {}));
|
|
500
|
+
var EnvironmentTemplateVersion;
|
|
501
|
+
(function (EnvironmentTemplateVersion) {
|
|
502
|
+
EnvironmentTemplateVersion.filterSensitiveLog = (obj) => ({
|
|
503
|
+
...obj,
|
|
504
|
+
...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
505
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
506
|
+
...(obj.schema && { schema: smithy_client_1.SENSITIVE_STRING }),
|
|
507
|
+
});
|
|
508
|
+
})(EnvironmentTemplateVersion = exports.EnvironmentTemplateVersion || (exports.EnvironmentTemplateVersion = {}));
|
|
509
|
+
var CreateEnvironmentTemplateVersionOutput;
|
|
510
|
+
(function (CreateEnvironmentTemplateVersionOutput) {
|
|
511
|
+
CreateEnvironmentTemplateVersionOutput.filterSensitiveLog = (obj) => ({
|
|
512
|
+
...obj,
|
|
513
|
+
...(obj.environmentTemplateVersion && {
|
|
514
|
+
environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
|
|
515
|
+
}),
|
|
516
|
+
});
|
|
517
|
+
})(CreateEnvironmentTemplateVersionOutput = exports.CreateEnvironmentTemplateVersionOutput || (exports.CreateEnvironmentTemplateVersionOutput = {}));
|
|
518
|
+
var DeleteEnvironmentTemplateVersionInput;
|
|
519
|
+
(function (DeleteEnvironmentTemplateVersionInput) {
|
|
520
|
+
DeleteEnvironmentTemplateVersionInput.filterSensitiveLog = (obj) => ({
|
|
521
|
+
...obj,
|
|
522
|
+
});
|
|
523
|
+
})(DeleteEnvironmentTemplateVersionInput = exports.DeleteEnvironmentTemplateVersionInput || (exports.DeleteEnvironmentTemplateVersionInput = {}));
|
|
524
|
+
var DeleteEnvironmentTemplateVersionOutput;
|
|
525
|
+
(function (DeleteEnvironmentTemplateVersionOutput) {
|
|
526
|
+
DeleteEnvironmentTemplateVersionOutput.filterSensitiveLog = (obj) => ({
|
|
527
|
+
...obj,
|
|
528
|
+
...(obj.environmentTemplateVersion && {
|
|
529
|
+
environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
|
|
530
|
+
}),
|
|
531
|
+
});
|
|
532
|
+
})(DeleteEnvironmentTemplateVersionOutput = exports.DeleteEnvironmentTemplateVersionOutput || (exports.DeleteEnvironmentTemplateVersionOutput = {}));
|
|
533
|
+
var GetEnvironmentTemplateVersionInput;
|
|
534
|
+
(function (GetEnvironmentTemplateVersionInput) {
|
|
535
|
+
GetEnvironmentTemplateVersionInput.filterSensitiveLog = (obj) => ({
|
|
536
|
+
...obj,
|
|
537
|
+
});
|
|
538
|
+
})(GetEnvironmentTemplateVersionInput = exports.GetEnvironmentTemplateVersionInput || (exports.GetEnvironmentTemplateVersionInput = {}));
|
|
539
|
+
var GetEnvironmentTemplateVersionOutput;
|
|
540
|
+
(function (GetEnvironmentTemplateVersionOutput) {
|
|
541
|
+
GetEnvironmentTemplateVersionOutput.filterSensitiveLog = (obj) => ({
|
|
542
|
+
...obj,
|
|
543
|
+
...(obj.environmentTemplateVersion && {
|
|
544
|
+
environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
|
|
545
|
+
}),
|
|
546
|
+
});
|
|
547
|
+
})(GetEnvironmentTemplateVersionOutput = exports.GetEnvironmentTemplateVersionOutput || (exports.GetEnvironmentTemplateVersionOutput = {}));
|
|
548
|
+
var ListEnvironmentTemplateVersionsInput;
|
|
549
|
+
(function (ListEnvironmentTemplateVersionsInput) {
|
|
550
|
+
ListEnvironmentTemplateVersionsInput.filterSensitiveLog = (obj) => ({
|
|
551
|
+
...obj,
|
|
552
|
+
});
|
|
553
|
+
})(ListEnvironmentTemplateVersionsInput = exports.ListEnvironmentTemplateVersionsInput || (exports.ListEnvironmentTemplateVersionsInput = {}));
|
|
554
|
+
var EnvironmentTemplateVersionSummary;
|
|
555
|
+
(function (EnvironmentTemplateVersionSummary) {
|
|
556
|
+
EnvironmentTemplateVersionSummary.filterSensitiveLog = (obj) => ({
|
|
557
|
+
...obj,
|
|
558
|
+
...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
559
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
560
|
+
});
|
|
561
|
+
})(EnvironmentTemplateVersionSummary = exports.EnvironmentTemplateVersionSummary || (exports.EnvironmentTemplateVersionSummary = {}));
|
|
562
|
+
var ListEnvironmentTemplateVersionsOutput;
|
|
563
|
+
(function (ListEnvironmentTemplateVersionsOutput) {
|
|
564
|
+
ListEnvironmentTemplateVersionsOutput.filterSensitiveLog = (obj) => ({
|
|
565
|
+
...obj,
|
|
566
|
+
...(obj.templateVersions && {
|
|
567
|
+
templateVersions: obj.templateVersions.map((item) => EnvironmentTemplateVersionSummary.filterSensitiveLog(item)),
|
|
568
|
+
}),
|
|
569
|
+
});
|
|
570
|
+
})(ListEnvironmentTemplateVersionsOutput = exports.ListEnvironmentTemplateVersionsOutput || (exports.ListEnvironmentTemplateVersionsOutput = {}));
|
|
571
|
+
var UpdateEnvironmentTemplateVersionInput;
|
|
572
|
+
(function (UpdateEnvironmentTemplateVersionInput) {
|
|
573
|
+
UpdateEnvironmentTemplateVersionInput.filterSensitiveLog = (obj) => ({
|
|
574
|
+
...obj,
|
|
575
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
576
|
+
});
|
|
577
|
+
})(UpdateEnvironmentTemplateVersionInput = exports.UpdateEnvironmentTemplateVersionInput || (exports.UpdateEnvironmentTemplateVersionInput = {}));
|
|
578
|
+
var UpdateEnvironmentTemplateVersionOutput;
|
|
579
|
+
(function (UpdateEnvironmentTemplateVersionOutput) {
|
|
580
|
+
UpdateEnvironmentTemplateVersionOutput.filterSensitiveLog = (obj) => ({
|
|
581
|
+
...obj,
|
|
582
|
+
...(obj.environmentTemplateVersion && {
|
|
583
|
+
environmentTemplateVersion: EnvironmentTemplateVersion.filterSensitiveLog(obj.environmentTemplateVersion),
|
|
584
|
+
}),
|
|
585
|
+
});
|
|
586
|
+
})(UpdateEnvironmentTemplateVersionOutput = exports.UpdateEnvironmentTemplateVersionOutput || (exports.UpdateEnvironmentTemplateVersionOutput = {}));
|
|
587
|
+
var ListTagsForResourceInput;
|
|
588
|
+
(function (ListTagsForResourceInput) {
|
|
589
|
+
ListTagsForResourceInput.filterSensitiveLog = (obj) => ({
|
|
590
|
+
...obj,
|
|
591
|
+
});
|
|
592
|
+
})(ListTagsForResourceInput = exports.ListTagsForResourceInput || (exports.ListTagsForResourceInput = {}));
|
|
593
|
+
var ListTagsForResourceOutput;
|
|
594
|
+
(function (ListTagsForResourceOutput) {
|
|
595
|
+
ListTagsForResourceOutput.filterSensitiveLog = (obj) => ({
|
|
596
|
+
...obj,
|
|
597
|
+
});
|
|
598
|
+
})(ListTagsForResourceOutput = exports.ListTagsForResourceOutput || (exports.ListTagsForResourceOutput = {}));
|
|
599
|
+
var GetServiceInstanceInput;
|
|
600
|
+
(function (GetServiceInstanceInput) {
|
|
601
|
+
GetServiceInstanceInput.filterSensitiveLog = (obj) => ({
|
|
602
|
+
...obj,
|
|
603
|
+
});
|
|
604
|
+
})(GetServiceInstanceInput = exports.GetServiceInstanceInput || (exports.GetServiceInstanceInput = {}));
|
|
605
|
+
var GetServiceInstanceOutput;
|
|
606
|
+
(function (GetServiceInstanceOutput) {
|
|
607
|
+
GetServiceInstanceOutput.filterSensitiveLog = (obj) => ({
|
|
608
|
+
...obj,
|
|
609
|
+
...(obj.serviceInstance && { serviceInstance: ServiceInstance.filterSensitiveLog(obj.serviceInstance) }),
|
|
610
|
+
});
|
|
611
|
+
})(GetServiceInstanceOutput = exports.GetServiceInstanceOutput || (exports.GetServiceInstanceOutput = {}));
|
|
612
|
+
var ListServiceInstancesInput;
|
|
613
|
+
(function (ListServiceInstancesInput) {
|
|
614
|
+
ListServiceInstancesInput.filterSensitiveLog = (obj) => ({
|
|
615
|
+
...obj,
|
|
616
|
+
});
|
|
617
|
+
})(ListServiceInstancesInput = exports.ListServiceInstancesInput || (exports.ListServiceInstancesInput = {}));
|
|
618
|
+
var ServiceInstanceSummary;
|
|
619
|
+
(function (ServiceInstanceSummary) {
|
|
620
|
+
ServiceInstanceSummary.filterSensitiveLog = (obj) => ({
|
|
621
|
+
...obj,
|
|
622
|
+
...(obj.deploymentStatusMessage && { deploymentStatusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
623
|
+
});
|
|
624
|
+
})(ServiceInstanceSummary = exports.ServiceInstanceSummary || (exports.ServiceInstanceSummary = {}));
|
|
625
|
+
var ListServiceInstancesOutput;
|
|
626
|
+
(function (ListServiceInstancesOutput) {
|
|
627
|
+
ListServiceInstancesOutput.filterSensitiveLog = (obj) => ({
|
|
628
|
+
...obj,
|
|
629
|
+
...(obj.serviceInstances && {
|
|
630
|
+
serviceInstances: obj.serviceInstances.map((item) => ServiceInstanceSummary.filterSensitiveLog(item)),
|
|
631
|
+
}),
|
|
632
|
+
});
|
|
633
|
+
})(ListServiceInstancesOutput = exports.ListServiceInstancesOutput || (exports.ListServiceInstancesOutput = {}));
|
|
634
|
+
var UpdateServiceInstanceInput;
|
|
635
|
+
(function (UpdateServiceInstanceInput) {
|
|
636
|
+
UpdateServiceInstanceInput.filterSensitiveLog = (obj) => ({
|
|
637
|
+
...obj,
|
|
638
|
+
...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
|
|
639
|
+
});
|
|
640
|
+
})(UpdateServiceInstanceInput = exports.UpdateServiceInstanceInput || (exports.UpdateServiceInstanceInput = {}));
|
|
641
|
+
var UpdateServiceInstanceOutput;
|
|
642
|
+
(function (UpdateServiceInstanceOutput) {
|
|
643
|
+
UpdateServiceInstanceOutput.filterSensitiveLog = (obj) => ({
|
|
644
|
+
...obj,
|
|
645
|
+
...(obj.serviceInstance && { serviceInstance: ServiceInstance.filterSensitiveLog(obj.serviceInstance) }),
|
|
646
|
+
});
|
|
647
|
+
})(UpdateServiceInstanceOutput = exports.UpdateServiceInstanceOutput || (exports.UpdateServiceInstanceOutput = {}));
|
|
648
|
+
var UpdateServicePipelineInput;
|
|
649
|
+
(function (UpdateServicePipelineInput) {
|
|
650
|
+
UpdateServicePipelineInput.filterSensitiveLog = (obj) => ({
|
|
651
|
+
...obj,
|
|
652
|
+
...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
|
|
653
|
+
});
|
|
654
|
+
})(UpdateServicePipelineInput = exports.UpdateServicePipelineInput || (exports.UpdateServicePipelineInput = {}));
|
|
655
|
+
var UpdateServicePipelineOutput;
|
|
656
|
+
(function (UpdateServicePipelineOutput) {
|
|
657
|
+
UpdateServicePipelineOutput.filterSensitiveLog = (obj) => ({
|
|
658
|
+
...obj,
|
|
659
|
+
...(obj.pipeline && { pipeline: ServicePipeline.filterSensitiveLog(obj.pipeline) }),
|
|
660
|
+
});
|
|
661
|
+
})(UpdateServicePipelineOutput = exports.UpdateServicePipelineOutput || (exports.UpdateServicePipelineOutput = {}));
|
|
662
|
+
var CreateServiceInput;
|
|
663
|
+
(function (CreateServiceInput) {
|
|
664
|
+
CreateServiceInput.filterSensitiveLog = (obj) => ({
|
|
665
|
+
...obj,
|
|
666
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
667
|
+
...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
|
|
668
|
+
});
|
|
669
|
+
})(CreateServiceInput = exports.CreateServiceInput || (exports.CreateServiceInput = {}));
|
|
670
|
+
var ServiceStatus;
|
|
671
|
+
(function (ServiceStatus) {
|
|
672
|
+
ServiceStatus["ACTIVE"] = "ACTIVE";
|
|
673
|
+
ServiceStatus["CREATE_FAILED"] = "CREATE_FAILED";
|
|
674
|
+
ServiceStatus["CREATE_FAILED_CLEANUP_COMPLETE"] = "CREATE_FAILED_CLEANUP_COMPLETE";
|
|
675
|
+
ServiceStatus["CREATE_FAILED_CLEANUP_FAILED"] = "CREATE_FAILED_CLEANUP_FAILED";
|
|
676
|
+
ServiceStatus["CREATE_FAILED_CLEANUP_IN_PROGRESS"] = "CREATE_FAILED_CLEANUP_IN_PROGRESS";
|
|
677
|
+
ServiceStatus["CREATE_IN_PROGRESS"] = "CREATE_IN_PROGRESS";
|
|
678
|
+
ServiceStatus["DELETE_FAILED"] = "DELETE_FAILED";
|
|
679
|
+
ServiceStatus["DELETE_IN_PROGRESS"] = "DELETE_IN_PROGRESS";
|
|
680
|
+
ServiceStatus["UPDATE_COMPLETE_CLEANUP_FAILED"] = "UPDATE_COMPLETE_CLEANUP_FAILED";
|
|
681
|
+
ServiceStatus["UPDATE_FAILED"] = "UPDATE_FAILED";
|
|
682
|
+
ServiceStatus["UPDATE_FAILED_CLEANUP_COMPLETE"] = "UPDATE_FAILED_CLEANUP_COMPLETE";
|
|
683
|
+
ServiceStatus["UPDATE_FAILED_CLEANUP_FAILED"] = "UPDATE_FAILED_CLEANUP_FAILED";
|
|
684
|
+
ServiceStatus["UPDATE_FAILED_CLEANUP_IN_PROGRESS"] = "UPDATE_FAILED_CLEANUP_IN_PROGRESS";
|
|
685
|
+
ServiceStatus["UPDATE_IN_PROGRESS"] = "UPDATE_IN_PROGRESS";
|
|
686
|
+
})(ServiceStatus = exports.ServiceStatus || (exports.ServiceStatus = {}));
|
|
687
|
+
var Service;
|
|
688
|
+
(function (Service) {
|
|
689
|
+
Service.filterSensitiveLog = (obj) => ({
|
|
690
|
+
...obj,
|
|
691
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
692
|
+
...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
693
|
+
...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
|
|
694
|
+
...(obj.pipeline && { pipeline: ServicePipeline.filterSensitiveLog(obj.pipeline) }),
|
|
695
|
+
});
|
|
696
|
+
})(Service = exports.Service || (exports.Service = {}));
|
|
697
|
+
var CreateServiceOutput;
|
|
698
|
+
(function (CreateServiceOutput) {
|
|
699
|
+
CreateServiceOutput.filterSensitiveLog = (obj) => ({
|
|
700
|
+
...obj,
|
|
701
|
+
...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
|
|
702
|
+
});
|
|
703
|
+
})(CreateServiceOutput = exports.CreateServiceOutput || (exports.CreateServiceOutput = {}));
|
|
704
|
+
var DeleteServiceInput;
|
|
705
|
+
(function (DeleteServiceInput) {
|
|
706
|
+
DeleteServiceInput.filterSensitiveLog = (obj) => ({
|
|
707
|
+
...obj,
|
|
708
|
+
});
|
|
709
|
+
})(DeleteServiceInput = exports.DeleteServiceInput || (exports.DeleteServiceInput = {}));
|
|
710
|
+
var DeleteServiceOutput;
|
|
711
|
+
(function (DeleteServiceOutput) {
|
|
712
|
+
DeleteServiceOutput.filterSensitiveLog = (obj) => ({
|
|
713
|
+
...obj,
|
|
714
|
+
...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
|
|
715
|
+
});
|
|
716
|
+
})(DeleteServiceOutput = exports.DeleteServiceOutput || (exports.DeleteServiceOutput = {}));
|
|
717
|
+
var GetServiceInput;
|
|
718
|
+
(function (GetServiceInput) {
|
|
719
|
+
GetServiceInput.filterSensitiveLog = (obj) => ({
|
|
720
|
+
...obj,
|
|
721
|
+
});
|
|
722
|
+
})(GetServiceInput = exports.GetServiceInput || (exports.GetServiceInput = {}));
|
|
723
|
+
var GetServiceOutput;
|
|
724
|
+
(function (GetServiceOutput) {
|
|
725
|
+
GetServiceOutput.filterSensitiveLog = (obj) => ({
|
|
726
|
+
...obj,
|
|
727
|
+
...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
|
|
728
|
+
});
|
|
729
|
+
})(GetServiceOutput = exports.GetServiceOutput || (exports.GetServiceOutput = {}));
|
|
730
|
+
var ListServicesInput;
|
|
731
|
+
(function (ListServicesInput) {
|
|
732
|
+
ListServicesInput.filterSensitiveLog = (obj) => ({
|
|
733
|
+
...obj,
|
|
734
|
+
});
|
|
735
|
+
})(ListServicesInput = exports.ListServicesInput || (exports.ListServicesInput = {}));
|
|
736
|
+
var ServiceSummary;
|
|
737
|
+
(function (ServiceSummary) {
|
|
738
|
+
ServiceSummary.filterSensitiveLog = (obj) => ({
|
|
739
|
+
...obj,
|
|
740
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
741
|
+
...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
742
|
+
});
|
|
743
|
+
})(ServiceSummary = exports.ServiceSummary || (exports.ServiceSummary = {}));
|
|
744
|
+
var ListServicesOutput;
|
|
745
|
+
(function (ListServicesOutput) {
|
|
746
|
+
ListServicesOutput.filterSensitiveLog = (obj) => ({
|
|
747
|
+
...obj,
|
|
748
|
+
...(obj.services && { services: obj.services.map((item) => ServiceSummary.filterSensitiveLog(item)) }),
|
|
749
|
+
});
|
|
750
|
+
})(ListServicesOutput = exports.ListServicesOutput || (exports.ListServicesOutput = {}));
|
|
751
|
+
var UpdateServiceInput;
|
|
752
|
+
(function (UpdateServiceInput) {
|
|
753
|
+
UpdateServiceInput.filterSensitiveLog = (obj) => ({
|
|
754
|
+
...obj,
|
|
755
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
756
|
+
...(obj.spec && { spec: smithy_client_1.SENSITIVE_STRING }),
|
|
757
|
+
});
|
|
758
|
+
})(UpdateServiceInput = exports.UpdateServiceInput || (exports.UpdateServiceInput = {}));
|
|
759
|
+
var UpdateServiceOutput;
|
|
760
|
+
(function (UpdateServiceOutput) {
|
|
761
|
+
UpdateServiceOutput.filterSensitiveLog = (obj) => ({
|
|
762
|
+
...obj,
|
|
763
|
+
...(obj.service && { service: Service.filterSensitiveLog(obj.service) }),
|
|
764
|
+
});
|
|
765
|
+
})(UpdateServiceOutput = exports.UpdateServiceOutput || (exports.UpdateServiceOutput = {}));
|
|
766
|
+
var CreateServiceTemplateInput;
|
|
767
|
+
(function (CreateServiceTemplateInput) {
|
|
768
|
+
CreateServiceTemplateInput.filterSensitiveLog = (obj) => ({
|
|
769
|
+
...obj,
|
|
770
|
+
...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
|
|
771
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
772
|
+
});
|
|
773
|
+
})(CreateServiceTemplateInput = exports.CreateServiceTemplateInput || (exports.CreateServiceTemplateInput = {}));
|
|
774
|
+
var ServiceTemplate;
|
|
775
|
+
(function (ServiceTemplate) {
|
|
776
|
+
ServiceTemplate.filterSensitiveLog = (obj) => ({
|
|
777
|
+
...obj,
|
|
778
|
+
...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
|
|
779
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
780
|
+
});
|
|
781
|
+
})(ServiceTemplate = exports.ServiceTemplate || (exports.ServiceTemplate = {}));
|
|
782
|
+
var CreateServiceTemplateOutput;
|
|
783
|
+
(function (CreateServiceTemplateOutput) {
|
|
784
|
+
CreateServiceTemplateOutput.filterSensitiveLog = (obj) => ({
|
|
785
|
+
...obj,
|
|
786
|
+
...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
|
|
787
|
+
});
|
|
788
|
+
})(CreateServiceTemplateOutput = exports.CreateServiceTemplateOutput || (exports.CreateServiceTemplateOutput = {}));
|
|
789
|
+
var DeleteServiceTemplateInput;
|
|
790
|
+
(function (DeleteServiceTemplateInput) {
|
|
791
|
+
DeleteServiceTemplateInput.filterSensitiveLog = (obj) => ({
|
|
792
|
+
...obj,
|
|
793
|
+
});
|
|
794
|
+
})(DeleteServiceTemplateInput = exports.DeleteServiceTemplateInput || (exports.DeleteServiceTemplateInput = {}));
|
|
795
|
+
var DeleteServiceTemplateOutput;
|
|
796
|
+
(function (DeleteServiceTemplateOutput) {
|
|
797
|
+
DeleteServiceTemplateOutput.filterSensitiveLog = (obj) => ({
|
|
798
|
+
...obj,
|
|
799
|
+
...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
|
|
800
|
+
});
|
|
801
|
+
})(DeleteServiceTemplateOutput = exports.DeleteServiceTemplateOutput || (exports.DeleteServiceTemplateOutput = {}));
|
|
802
|
+
var GetServiceTemplateInput;
|
|
803
|
+
(function (GetServiceTemplateInput) {
|
|
804
|
+
GetServiceTemplateInput.filterSensitiveLog = (obj) => ({
|
|
805
|
+
...obj,
|
|
806
|
+
});
|
|
807
|
+
})(GetServiceTemplateInput = exports.GetServiceTemplateInput || (exports.GetServiceTemplateInput = {}));
|
|
808
|
+
var GetServiceTemplateOutput;
|
|
809
|
+
(function (GetServiceTemplateOutput) {
|
|
810
|
+
GetServiceTemplateOutput.filterSensitiveLog = (obj) => ({
|
|
811
|
+
...obj,
|
|
812
|
+
...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
|
|
813
|
+
});
|
|
814
|
+
})(GetServiceTemplateOutput = exports.GetServiceTemplateOutput || (exports.GetServiceTemplateOutput = {}));
|
|
815
|
+
var ListServiceTemplatesInput;
|
|
816
|
+
(function (ListServiceTemplatesInput) {
|
|
817
|
+
ListServiceTemplatesInput.filterSensitiveLog = (obj) => ({
|
|
818
|
+
...obj,
|
|
819
|
+
});
|
|
820
|
+
})(ListServiceTemplatesInput = exports.ListServiceTemplatesInput || (exports.ListServiceTemplatesInput = {}));
|
|
821
|
+
var ServiceTemplateSummary;
|
|
822
|
+
(function (ServiceTemplateSummary) {
|
|
823
|
+
ServiceTemplateSummary.filterSensitiveLog = (obj) => ({
|
|
824
|
+
...obj,
|
|
825
|
+
...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
|
|
826
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
827
|
+
});
|
|
828
|
+
})(ServiceTemplateSummary = exports.ServiceTemplateSummary || (exports.ServiceTemplateSummary = {}));
|
|
829
|
+
var ListServiceTemplatesOutput;
|
|
830
|
+
(function (ListServiceTemplatesOutput) {
|
|
831
|
+
ListServiceTemplatesOutput.filterSensitiveLog = (obj) => ({
|
|
832
|
+
...obj,
|
|
833
|
+
...(obj.templates && { templates: obj.templates.map((item) => ServiceTemplateSummary.filterSensitiveLog(item)) }),
|
|
834
|
+
});
|
|
835
|
+
})(ListServiceTemplatesOutput = exports.ListServiceTemplatesOutput || (exports.ListServiceTemplatesOutput = {}));
|
|
836
|
+
var UpdateServiceTemplateInput;
|
|
837
|
+
(function (UpdateServiceTemplateInput) {
|
|
838
|
+
UpdateServiceTemplateInput.filterSensitiveLog = (obj) => ({
|
|
839
|
+
...obj,
|
|
840
|
+
...(obj.displayName && { displayName: smithy_client_1.SENSITIVE_STRING }),
|
|
841
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
842
|
+
});
|
|
843
|
+
})(UpdateServiceTemplateInput = exports.UpdateServiceTemplateInput || (exports.UpdateServiceTemplateInput = {}));
|
|
844
|
+
var UpdateServiceTemplateOutput;
|
|
845
|
+
(function (UpdateServiceTemplateOutput) {
|
|
846
|
+
UpdateServiceTemplateOutput.filterSensitiveLog = (obj) => ({
|
|
847
|
+
...obj,
|
|
848
|
+
...(obj.serviceTemplate && { serviceTemplate: ServiceTemplate.filterSensitiveLog(obj.serviceTemplate) }),
|
|
849
|
+
});
|
|
850
|
+
})(UpdateServiceTemplateOutput = exports.UpdateServiceTemplateOutput || (exports.UpdateServiceTemplateOutput = {}));
|
|
851
|
+
var CompatibleEnvironmentTemplateInput;
|
|
852
|
+
(function (CompatibleEnvironmentTemplateInput) {
|
|
853
|
+
CompatibleEnvironmentTemplateInput.filterSensitiveLog = (obj) => ({
|
|
854
|
+
...obj,
|
|
855
|
+
});
|
|
856
|
+
})(CompatibleEnvironmentTemplateInput = exports.CompatibleEnvironmentTemplateInput || (exports.CompatibleEnvironmentTemplateInput = {}));
|
|
857
|
+
var CreateServiceTemplateVersionInput;
|
|
858
|
+
(function (CreateServiceTemplateVersionInput) {
|
|
859
|
+
CreateServiceTemplateVersionInput.filterSensitiveLog = (obj) => ({
|
|
860
|
+
...obj,
|
|
861
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
862
|
+
...(obj.source && { source: TemplateVersionSourceInput.filterSensitiveLog(obj.source) }),
|
|
863
|
+
});
|
|
864
|
+
})(CreateServiceTemplateVersionInput = exports.CreateServiceTemplateVersionInput || (exports.CreateServiceTemplateVersionInput = {}));
|
|
865
|
+
var CompatibleEnvironmentTemplate;
|
|
866
|
+
(function (CompatibleEnvironmentTemplate) {
|
|
867
|
+
CompatibleEnvironmentTemplate.filterSensitiveLog = (obj) => ({
|
|
868
|
+
...obj,
|
|
869
|
+
});
|
|
870
|
+
})(CompatibleEnvironmentTemplate = exports.CompatibleEnvironmentTemplate || (exports.CompatibleEnvironmentTemplate = {}));
|
|
871
|
+
var ServiceTemplateVersion;
|
|
872
|
+
(function (ServiceTemplateVersion) {
|
|
873
|
+
ServiceTemplateVersion.filterSensitiveLog = (obj) => ({
|
|
874
|
+
...obj,
|
|
875
|
+
...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
876
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
877
|
+
...(obj.schema && { schema: smithy_client_1.SENSITIVE_STRING }),
|
|
878
|
+
});
|
|
879
|
+
})(ServiceTemplateVersion = exports.ServiceTemplateVersion || (exports.ServiceTemplateVersion = {}));
|
|
880
|
+
var CreateServiceTemplateVersionOutput;
|
|
881
|
+
(function (CreateServiceTemplateVersionOutput) {
|
|
882
|
+
CreateServiceTemplateVersionOutput.filterSensitiveLog = (obj) => ({
|
|
883
|
+
...obj,
|
|
884
|
+
...(obj.serviceTemplateVersion && {
|
|
885
|
+
serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
|
|
886
|
+
}),
|
|
887
|
+
});
|
|
888
|
+
})(CreateServiceTemplateVersionOutput = exports.CreateServiceTemplateVersionOutput || (exports.CreateServiceTemplateVersionOutput = {}));
|
|
889
|
+
var DeleteServiceTemplateVersionInput;
|
|
890
|
+
(function (DeleteServiceTemplateVersionInput) {
|
|
891
|
+
DeleteServiceTemplateVersionInput.filterSensitiveLog = (obj) => ({
|
|
892
|
+
...obj,
|
|
893
|
+
});
|
|
894
|
+
})(DeleteServiceTemplateVersionInput = exports.DeleteServiceTemplateVersionInput || (exports.DeleteServiceTemplateVersionInput = {}));
|
|
895
|
+
var DeleteServiceTemplateVersionOutput;
|
|
896
|
+
(function (DeleteServiceTemplateVersionOutput) {
|
|
897
|
+
DeleteServiceTemplateVersionOutput.filterSensitiveLog = (obj) => ({
|
|
898
|
+
...obj,
|
|
899
|
+
...(obj.serviceTemplateVersion && {
|
|
900
|
+
serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
|
|
901
|
+
}),
|
|
902
|
+
});
|
|
903
|
+
})(DeleteServiceTemplateVersionOutput = exports.DeleteServiceTemplateVersionOutput || (exports.DeleteServiceTemplateVersionOutput = {}));
|
|
904
|
+
var GetServiceTemplateVersionInput;
|
|
905
|
+
(function (GetServiceTemplateVersionInput) {
|
|
906
|
+
GetServiceTemplateVersionInput.filterSensitiveLog = (obj) => ({
|
|
907
|
+
...obj,
|
|
908
|
+
});
|
|
909
|
+
})(GetServiceTemplateVersionInput = exports.GetServiceTemplateVersionInput || (exports.GetServiceTemplateVersionInput = {}));
|
|
910
|
+
var GetServiceTemplateVersionOutput;
|
|
911
|
+
(function (GetServiceTemplateVersionOutput) {
|
|
912
|
+
GetServiceTemplateVersionOutput.filterSensitiveLog = (obj) => ({
|
|
913
|
+
...obj,
|
|
914
|
+
...(obj.serviceTemplateVersion && {
|
|
915
|
+
serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
|
|
916
|
+
}),
|
|
917
|
+
});
|
|
918
|
+
})(GetServiceTemplateVersionOutput = exports.GetServiceTemplateVersionOutput || (exports.GetServiceTemplateVersionOutput = {}));
|
|
919
|
+
var ListServiceTemplateVersionsInput;
|
|
920
|
+
(function (ListServiceTemplateVersionsInput) {
|
|
921
|
+
ListServiceTemplateVersionsInput.filterSensitiveLog = (obj) => ({
|
|
922
|
+
...obj,
|
|
923
|
+
});
|
|
924
|
+
})(ListServiceTemplateVersionsInput = exports.ListServiceTemplateVersionsInput || (exports.ListServiceTemplateVersionsInput = {}));
|
|
925
|
+
var ServiceTemplateVersionSummary;
|
|
926
|
+
(function (ServiceTemplateVersionSummary) {
|
|
927
|
+
ServiceTemplateVersionSummary.filterSensitiveLog = (obj) => ({
|
|
928
|
+
...obj,
|
|
929
|
+
...(obj.statusMessage && { statusMessage: smithy_client_1.SENSITIVE_STRING }),
|
|
930
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
931
|
+
});
|
|
932
|
+
})(ServiceTemplateVersionSummary = exports.ServiceTemplateVersionSummary || (exports.ServiceTemplateVersionSummary = {}));
|
|
933
|
+
var ListServiceTemplateVersionsOutput;
|
|
934
|
+
(function (ListServiceTemplateVersionsOutput) {
|
|
935
|
+
ListServiceTemplateVersionsOutput.filterSensitiveLog = (obj) => ({
|
|
936
|
+
...obj,
|
|
937
|
+
...(obj.templateVersions && {
|
|
938
|
+
templateVersions: obj.templateVersions.map((item) => ServiceTemplateVersionSummary.filterSensitiveLog(item)),
|
|
939
|
+
}),
|
|
940
|
+
});
|
|
941
|
+
})(ListServiceTemplateVersionsOutput = exports.ListServiceTemplateVersionsOutput || (exports.ListServiceTemplateVersionsOutput = {}));
|
|
942
|
+
var UpdateServiceTemplateVersionInput;
|
|
943
|
+
(function (UpdateServiceTemplateVersionInput) {
|
|
944
|
+
UpdateServiceTemplateVersionInput.filterSensitiveLog = (obj) => ({
|
|
945
|
+
...obj,
|
|
946
|
+
...(obj.description && { description: smithy_client_1.SENSITIVE_STRING }),
|
|
947
|
+
});
|
|
948
|
+
})(UpdateServiceTemplateVersionInput = exports.UpdateServiceTemplateVersionInput || (exports.UpdateServiceTemplateVersionInput = {}));
|
|
949
|
+
var UpdateServiceTemplateVersionOutput;
|
|
950
|
+
(function (UpdateServiceTemplateVersionOutput) {
|
|
951
|
+
UpdateServiceTemplateVersionOutput.filterSensitiveLog = (obj) => ({
|
|
952
|
+
...obj,
|
|
953
|
+
...(obj.serviceTemplateVersion && {
|
|
954
|
+
serviceTemplateVersion: ServiceTemplateVersion.filterSensitiveLog(obj.serviceTemplateVersion),
|
|
955
|
+
}),
|
|
956
|
+
});
|
|
957
|
+
})(UpdateServiceTemplateVersionOutput = exports.UpdateServiceTemplateVersionOutput || (exports.UpdateServiceTemplateVersionOutput = {}));
|
|
958
|
+
var TagResourceInput;
|
|
959
|
+
(function (TagResourceInput) {
|
|
960
|
+
TagResourceInput.filterSensitiveLog = (obj) => ({
|
|
961
|
+
...obj,
|
|
962
|
+
});
|
|
963
|
+
})(TagResourceInput = exports.TagResourceInput || (exports.TagResourceInput = {}));
|
|
964
|
+
var TagResourceOutput;
|
|
965
|
+
(function (TagResourceOutput) {
|
|
966
|
+
TagResourceOutput.filterSensitiveLog = (obj) => ({
|
|
967
|
+
...obj,
|
|
968
|
+
});
|
|
969
|
+
})(TagResourceOutput = exports.TagResourceOutput || (exports.TagResourceOutput = {}));
|
|
970
|
+
var UntagResourceInput;
|
|
971
|
+
(function (UntagResourceInput) {
|
|
972
|
+
UntagResourceInput.filterSensitiveLog = (obj) => ({
|
|
973
|
+
...obj,
|
|
974
|
+
});
|
|
975
|
+
})(UntagResourceInput = exports.UntagResourceInput || (exports.UntagResourceInput = {}));
|
|
976
|
+
var UntagResourceOutput;
|
|
977
|
+
(function (UntagResourceOutput) {
|
|
978
|
+
UntagResourceOutput.filterSensitiveLog = (obj) => ({
|
|
979
|
+
...obj,
|
|
980
|
+
});
|
|
981
|
+
})(UntagResourceOutput = exports.UntagResourceOutput || (exports.UntagResourceOutput = {}));
|