@aws-sdk/client-proton 3.34.0 → 3.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +47 -0
- package/dist-cjs/Proton.js +742 -0
- package/dist-cjs/ProtonClient.js +35 -0
- package/dist-cjs/commands/AcceptEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/CancelEnvironmentDeploymentCommand.js +36 -0
- package/dist-cjs/commands/CancelServiceInstanceDeploymentCommand.js +36 -0
- package/dist-cjs/commands/CancelServicePipelineDeploymentCommand.js +36 -0
- package/dist-cjs/commands/CreateEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/CreateEnvironmentCommand.js +36 -0
- package/dist-cjs/commands/CreateEnvironmentTemplateCommand.js +36 -0
- package/dist-cjs/commands/CreateEnvironmentTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/CreateServiceCommand.js +36 -0
- package/dist-cjs/commands/CreateServiceTemplateCommand.js +36 -0
- package/dist-cjs/commands/CreateServiceTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/DeleteEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +36 -0
- package/dist-cjs/commands/DeleteEnvironmentTemplateCommand.js +36 -0
- package/dist-cjs/commands/DeleteEnvironmentTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/DeleteServiceCommand.js +36 -0
- package/dist-cjs/commands/DeleteServiceTemplateCommand.js +36 -0
- package/dist-cjs/commands/DeleteServiceTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/GetAccountSettingsCommand.js +36 -0
- package/dist-cjs/commands/GetEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/GetEnvironmentCommand.js +36 -0
- package/dist-cjs/commands/GetEnvironmentTemplateCommand.js +36 -0
- package/dist-cjs/commands/GetEnvironmentTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/GetServiceCommand.js +36 -0
- package/dist-cjs/commands/GetServiceInstanceCommand.js +36 -0
- package/dist-cjs/commands/GetServiceTemplateCommand.js +36 -0
- package/dist-cjs/commands/GetServiceTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/ListEnvironmentAccountConnectionsCommand.js +36 -0
- package/dist-cjs/commands/ListEnvironmentTemplateVersionsCommand.js +36 -0
- package/dist-cjs/commands/ListEnvironmentTemplatesCommand.js +36 -0
- package/dist-cjs/commands/ListEnvironmentsCommand.js +36 -0
- package/dist-cjs/commands/ListServiceInstancesCommand.js +36 -0
- package/dist-cjs/commands/ListServiceTemplateVersionsCommand.js +36 -0
- package/dist-cjs/commands/ListServiceTemplatesCommand.js +36 -0
- package/dist-cjs/commands/ListServicesCommand.js +36 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
- package/dist-cjs/commands/RejectEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/TagResourceCommand.js +36 -0
- package/dist-cjs/commands/UntagResourceCommand.js +36 -0
- package/dist-cjs/commands/UpdateAccountSettingsCommand.js +36 -0
- package/dist-cjs/commands/UpdateEnvironmentAccountConnectionCommand.js +36 -0
- package/dist-cjs/commands/UpdateEnvironmentCommand.js +36 -0
- package/dist-cjs/commands/UpdateEnvironmentTemplateCommand.js +36 -0
- package/dist-cjs/commands/UpdateEnvironmentTemplateVersionCommand.js +36 -0
- package/dist-cjs/commands/UpdateServiceCommand.js +36 -0
- package/dist-cjs/commands/UpdateServiceInstanceCommand.js +36 -0
- package/dist-cjs/commands/UpdateServicePipelineCommand.js +36 -0
- package/dist-cjs/commands/UpdateServiceTemplateCommand.js +36 -0
- package/dist-cjs/commands/UpdateServiceTemplateVersionCommand.js +36 -0
- package/dist-cjs/endpoints.js +56 -0
- package/dist-cjs/index.js +73 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +981 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListEnvironmentAccountConnectionsPaginator.js +35 -0
- package/dist-cjs/pagination/ListEnvironmentTemplateVersionsPaginator.js +35 -0
- package/dist-cjs/pagination/ListEnvironmentTemplatesPaginator.js +35 -0
- package/dist-cjs/pagination/ListEnvironmentsPaginator.js +35 -0
- package/dist-cjs/pagination/ListServiceInstancesPaginator.js +35 -0
- package/dist-cjs/pagination/ListServiceTemplateVersionsPaginator.js +35 -0
- package/dist-cjs/pagination/ListServiceTemplatesPaginator.js +35 -0
- package/dist-cjs/pagination/ListServicesPaginator.js +35 -0
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +35 -0
- package/dist-cjs/protocols/Aws_json1_0.js +6064 -0
- package/dist-cjs/runtimeConfig.browser.js +37 -0
- package/dist-cjs/runtimeConfig.js +42 -0
- package/dist-cjs/runtimeConfig.native.js +16 -0
- package/dist-cjs/runtimeConfig.shared.js +17 -0
- package/dist-cjs/waiters/waitForEnvironmentDeployed.js +45 -0
- package/dist-cjs/waiters/waitForEnvironmentTemplateVersionRegistered.js +54 -0
- package/dist-cjs/waiters/waitForServiceCreated.js +63 -0
- package/dist-cjs/waiters/waitForServiceDeleted.js +39 -0
- package/dist-cjs/waiters/waitForServiceInstanceDeployed.js +45 -0
- package/dist-cjs/waiters/waitForServicePipelineDeployed.js +45 -0
- package/dist-cjs/waiters/waitForServiceTemplateVersionRegistered.js +54 -0
- package/dist-cjs/waiters/waitForServiceUpdated.js +72 -0
- package/dist-es/Proton.js +745 -0
- package/dist-es/ProtonClient.js +37 -0
- package/dist-es/commands/AcceptEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/CancelEnvironmentDeploymentCommand.js +39 -0
- package/dist-es/commands/CancelServiceInstanceDeploymentCommand.js +39 -0
- package/dist-es/commands/CancelServicePipelineDeploymentCommand.js +39 -0
- package/dist-es/commands/CreateEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/CreateEnvironmentCommand.js +39 -0
- package/dist-es/commands/CreateEnvironmentTemplateCommand.js +39 -0
- package/dist-es/commands/CreateEnvironmentTemplateVersionCommand.js +39 -0
- package/dist-es/commands/CreateServiceCommand.js +39 -0
- package/dist-es/commands/CreateServiceTemplateCommand.js +39 -0
- package/dist-es/commands/CreateServiceTemplateVersionCommand.js +39 -0
- package/dist-es/commands/DeleteEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/DeleteEnvironmentCommand.js +39 -0
- package/dist-es/commands/DeleteEnvironmentTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteEnvironmentTemplateVersionCommand.js +39 -0
- package/dist-es/commands/DeleteServiceCommand.js +39 -0
- package/dist-es/commands/DeleteServiceTemplateCommand.js +39 -0
- package/dist-es/commands/DeleteServiceTemplateVersionCommand.js +39 -0
- package/dist-es/commands/GetAccountSettingsCommand.js +39 -0
- package/dist-es/commands/GetEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/GetEnvironmentCommand.js +39 -0
- package/dist-es/commands/GetEnvironmentTemplateCommand.js +39 -0
- package/dist-es/commands/GetEnvironmentTemplateVersionCommand.js +39 -0
- package/dist-es/commands/GetServiceCommand.js +39 -0
- package/dist-es/commands/GetServiceInstanceCommand.js +39 -0
- package/dist-es/commands/GetServiceTemplateCommand.js +39 -0
- package/dist-es/commands/GetServiceTemplateVersionCommand.js +39 -0
- package/dist-es/commands/ListEnvironmentAccountConnectionsCommand.js +39 -0
- package/dist-es/commands/ListEnvironmentTemplateVersionsCommand.js +39 -0
- package/dist-es/commands/ListEnvironmentTemplatesCommand.js +39 -0
- package/dist-es/commands/ListEnvironmentsCommand.js +39 -0
- package/dist-es/commands/ListServiceInstancesCommand.js +39 -0
- package/dist-es/commands/ListServiceTemplateVersionsCommand.js +39 -0
- package/dist-es/commands/ListServiceTemplatesCommand.js +39 -0
- package/dist-es/commands/ListServicesCommand.js +39 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
- package/dist-es/commands/RejectEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/TagResourceCommand.js +39 -0
- package/dist-es/commands/UntagResourceCommand.js +39 -0
- package/dist-es/commands/UpdateAccountSettingsCommand.js +39 -0
- package/dist-es/commands/UpdateEnvironmentAccountConnectionCommand.js +39 -0
- package/dist-es/commands/UpdateEnvironmentCommand.js +39 -0
- package/dist-es/commands/UpdateEnvironmentTemplateCommand.js +39 -0
- package/dist-es/commands/UpdateEnvironmentTemplateVersionCommand.js +39 -0
- package/dist-es/commands/UpdateServiceCommand.js +39 -0
- package/dist-es/commands/UpdateServiceInstanceCommand.js +39 -0
- package/dist-es/commands/UpdateServicePipelineCommand.js +39 -0
- package/dist-es/commands/UpdateServiceTemplateCommand.js +39 -0
- package/dist-es/commands/UpdateServiceTemplateVersionCommand.js +39 -0
- package/dist-es/endpoints.js +52 -0
- package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
- package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
- package/dist-es/models/models_0.js +620 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListEnvironmentAccountConnectionsPaginator.js +74 -0
- package/dist-es/pagination/ListEnvironmentTemplateVersionsPaginator.js +74 -0
- package/dist-es/pagination/ListEnvironmentTemplatesPaginator.js +74 -0
- package/dist-es/pagination/ListEnvironmentsPaginator.js +74 -0
- package/dist-es/pagination/ListServiceInstancesPaginator.js +74 -0
- package/dist-es/pagination/ListServiceTemplateVersionsPaginator.js +74 -0
- package/dist-es/pagination/ListServiceTemplatesPaginator.js +74 -0
- package/dist-es/pagination/ListServicesPaginator.js +74 -0
- package/dist-es/pagination/ListTagsForResourcePaginator.js +74 -0
- package/dist-es/protocols/Aws_json1_0.js +6335 -0
- package/dist-es/runtimeConfig.browser.js +16 -0
- package/dist-es/runtimeConfig.js +21 -0
- package/dist-es/runtimeConfig.native.js +8 -0
- package/dist-es/runtimeConfig.shared.js +13 -0
- package/dist-es/waiters/waitForEnvironmentDeployed.js +60 -0
- package/dist-es/waiters/waitForEnvironmentTemplateVersionRegistered.js +69 -0
- package/dist-es/waiters/waitForServiceCreated.js +78 -0
- package/dist-es/waiters/waitForServiceDeleted.js +54 -0
- package/dist-es/waiters/waitForServiceInstanceDeployed.js +60 -0
- package/dist-es/waiters/waitForServicePipelineDeployed.js +60 -0
- package/dist-es/waiters/waitForServiceTemplateVersionRegistered.js +69 -0
- package/dist-es/waiters/waitForServiceUpdated.js +87 -0
- package/dist-types/Proton.d.ts +704 -0
- package/dist-types/ProtonClient.d.ts +301 -0
- package/dist-types/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +39 -0
- package/dist-types/commands/CancelEnvironmentDeploymentCommand.d.ts +49 -0
- package/dist-types/commands/CancelServiceInstanceDeploymentCommand.d.ts +49 -0
- package/dist-types/commands/CancelServicePipelineDeploymentCommand.d.ts +49 -0
- package/dist-types/commands/CreateEnvironmentAccountConnectionCommand.d.ts +39 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +38 -0
- package/dist-types/commands/CreateEnvironmentTemplateCommand.d.ts +50 -0
- package/dist-types/commands/CreateEnvironmentTemplateVersionCommand.d.ts +37 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +37 -0
- package/dist-types/commands/CreateServiceTemplateCommand.d.ts +39 -0
- package/dist-types/commands/CreateServiceTemplateVersionCommand.d.ts +37 -0
- package/dist-types/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +40 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +35 -0
- package/dist-types/commands/DeleteEnvironmentTemplateCommand.d.ts +35 -0
- package/dist-types/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +41 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +35 -0
- package/dist-types/commands/DeleteServiceTemplateCommand.d.ts +35 -0
- package/dist-types/commands/DeleteServiceTemplateVersionCommand.d.ts +41 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +35 -0
- package/dist-types/commands/GetEnvironmentAccountConnectionCommand.d.ts +37 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +35 -0
- package/dist-types/commands/GetEnvironmentTemplateCommand.d.ts +35 -0
- package/dist-types/commands/GetEnvironmentTemplateVersionCommand.d.ts +35 -0
- package/dist-types/commands/GetServiceCommand.d.ts +35 -0
- package/dist-types/commands/GetServiceInstanceCommand.d.ts +36 -0
- package/dist-types/commands/GetServiceTemplateCommand.d.ts +35 -0
- package/dist-types/commands/GetServiceTemplateVersionCommand.d.ts +35 -0
- package/dist-types/commands/ListEnvironmentAccountConnectionsCommand.d.ts +37 -0
- package/dist-types/commands/ListEnvironmentTemplateVersionsCommand.d.ts +35 -0
- package/dist-types/commands/ListEnvironmentTemplatesCommand.d.ts +35 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +35 -0
- package/dist-types/commands/ListServiceInstancesCommand.d.ts +35 -0
- package/dist-types/commands/ListServiceTemplateVersionsCommand.d.ts +35 -0
- package/dist-types/commands/ListServiceTemplatesCommand.d.ts +35 -0
- package/dist-types/commands/ListServicesCommand.d.ts +35 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
- package/dist-types/commands/RejectEnvironmentAccountConnectionCommand.d.ts +40 -0
- package/dist-types/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +35 -0
- package/dist-types/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +37 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +80 -0
- package/dist-types/commands/UpdateEnvironmentTemplateCommand.d.ts +35 -0
- package/dist-types/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +35 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +41 -0
- package/dist-types/commands/UpdateServiceInstanceCommand.d.ts +73 -0
- package/dist-types/commands/UpdateServicePipelineCommand.d.ts +73 -0
- package/dist-types/commands/UpdateServiceTemplateCommand.d.ts +35 -0
- package/dist-types/commands/UpdateServiceTemplateVersionCommand.d.ts +35 -0
- package/{dist/types → dist-types}/endpoints.d.ts +0 -0
- package/{index.ts → dist-types/index.d.ts} +0 -0
- package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
- package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListEnvironmentTemplatesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListServiceInstancesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListServiceTemplateVersionsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListServiceTemplatesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +149 -0
- package/{dist/types → dist-types}/runtimeConfig.browser.d.ts +0 -0
- package/dist-types/runtimeConfig.d.ts +37 -0
- package/{dist/types → dist-types}/runtimeConfig.native.d.ts +0 -0
- package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
- package/dist-types/ts3.4/Proton.d.ts +250 -0
- package/dist-types/ts3.4/ProtonClient.d.ts +116 -0
- package/dist-types/ts3.4/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CancelEnvironmentDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CancelServiceInstanceDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CancelServicePipelineDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateServiceTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateServiceTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteServiceTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteServiceTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEnvironmentTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEnvironmentTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetServiceTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentAccountConnectionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentTemplateVersionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentTemplatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServiceInstancesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServiceTemplateVersionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServiceTemplatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RejectEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServiceInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServicePipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServiceTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateServiceTemplateVersionCommand.d.ts +17 -0
- package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
- package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1699 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentTemplatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServiceInstancesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServiceTemplateVersionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServiceTemplatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +149 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +35 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +35 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +34 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForEnvironmentDeployed.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServiceCreated.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServiceDeleted.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServiceInstanceDeployed.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServicePipelineDeployed.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServiceTemplateVersionRegistered.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServiceUpdated.d.ts +7 -0
- package/dist-types/waiters/waitForEnvironmentDeployed.d.ts +14 -0
- package/dist-types/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +14 -0
- package/dist-types/waiters/waitForServiceCreated.d.ts +14 -0
- package/dist-types/waiters/waitForServiceDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForServiceInstanceDeployed.d.ts +14 -0
- package/dist-types/waiters/waitForServicePipelineDeployed.d.ts +14 -0
- package/dist-types/waiters/waitForServiceTemplateVersionRegistered.d.ts +14 -0
- package/dist-types/waiters/waitForServiceUpdated.d.ts +14 -0
- package/package.json +46 -43
- package/Proton.ts +0 -2151
- package/ProtonClient.ts +0 -604
- package/commands/AcceptEnvironmentAccountConnectionCommand.ts +0 -106
- package/commands/CancelEnvironmentDeploymentCommand.ts +0 -111
- package/commands/CancelServiceInstanceDeploymentCommand.ts +0 -116
- package/commands/CancelServicePipelineDeploymentCommand.ts +0 -116
- package/commands/CreateEnvironmentAccountConnectionCommand.ts +0 -106
- package/commands/CreateEnvironmentCommand.ts +0 -97
- package/commands/CreateEnvironmentTemplateCommand.ts +0 -112
- package/commands/CreateEnvironmentTemplateVersionCommand.ts +0 -104
- package/commands/CreateServiceCommand.ts +0 -96
- package/commands/CreateServiceTemplateCommand.ts +0 -98
- package/commands/CreateServiceTemplateVersionCommand.ts +0 -101
- package/commands/DeleteEnvironmentAccountConnectionCommand.ts +0 -107
- package/commands/DeleteEnvironmentCommand.ts +0 -94
- package/commands/DeleteEnvironmentTemplateCommand.ts +0 -97
- package/commands/DeleteEnvironmentTemplateVersionCommand.ts +0 -108
- package/commands/DeleteServiceCommand.ts +0 -94
- package/commands/DeleteServiceTemplateCommand.ts +0 -94
- package/commands/DeleteServiceTemplateVersionCommand.ts +0 -105
- package/commands/GetAccountSettingsCommand.ts +0 -94
- package/commands/GetEnvironmentAccountConnectionCommand.ts +0 -104
- package/commands/GetEnvironmentCommand.ts +0 -94
- package/commands/GetEnvironmentTemplateCommand.ts +0 -94
- package/commands/GetEnvironmentTemplateVersionCommand.ts +0 -99
- package/commands/GetServiceCommand.ts +0 -94
- package/commands/GetServiceInstanceCommand.ts +0 -95
- package/commands/GetServiceTemplateCommand.ts +0 -94
- package/commands/GetServiceTemplateVersionCommand.ts +0 -97
- package/commands/ListEnvironmentAccountConnectionsCommand.ts +0 -104
- package/commands/ListEnvironmentTemplateVersionsCommand.ts +0 -102
- package/commands/ListEnvironmentTemplatesCommand.ts +0 -94
- package/commands/ListEnvironmentsCommand.ts +0 -94
- package/commands/ListServiceInstancesCommand.ts +0 -94
- package/commands/ListServiceTemplateVersionsCommand.ts +0 -97
- package/commands/ListServiceTemplatesCommand.ts +0 -94
- package/commands/ListServicesCommand.ts +0 -94
- package/commands/ListTagsForResourceCommand.ts +0 -94
- package/commands/RejectEnvironmentAccountConnectionCommand.ts +0 -107
- package/commands/TagResourceCommand.ts +0 -94
- package/commands/UntagResourceCommand.ts +0 -94
- package/commands/UpdateAccountSettingsCommand.ts +0 -94
- package/commands/UpdateEnvironmentAccountConnectionCommand.ts +0 -104
- package/commands/UpdateEnvironmentCommand.ts +0 -139
- package/commands/UpdateEnvironmentTemplateCommand.ts +0 -97
- package/commands/UpdateEnvironmentTemplateVersionCommand.ts +0 -102
- package/commands/UpdateServiceCommand.ts +0 -100
- package/commands/UpdateServiceInstanceCommand.ts +0 -132
- package/commands/UpdateServicePipelineCommand.ts +0 -132
- package/commands/UpdateServiceTemplateCommand.ts +0 -94
- package/commands/UpdateServiceTemplateVersionCommand.ts +0 -99
- package/dist/cjs/Proton.js +0 -866
- package/dist/cjs/Proton.js.map +0 -1
- package/dist/cjs/ProtonClient.js +0 -164
- package/dist/cjs/ProtonClient.js.map +0 -1
- package/dist/cjs/commands/AcceptEnvironmentAccountConnectionCommand.js +0 -65
- package/dist/cjs/commands/AcceptEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/CancelEnvironmentDeploymentCommand.js +0 -75
- package/dist/cjs/commands/CancelEnvironmentDeploymentCommand.js.map +0 -1
- package/dist/cjs/commands/CancelServiceInstanceDeploymentCommand.js +0 -75
- package/dist/cjs/commands/CancelServiceInstanceDeploymentCommand.js.map +0 -1
- package/dist/cjs/commands/CancelServicePipelineDeploymentCommand.js +0 -75
- package/dist/cjs/commands/CancelServicePipelineDeploymentCommand.js.map +0 -1
- package/dist/cjs/commands/CreateEnvironmentAccountConnectionCommand.js +0 -65
- package/dist/cjs/commands/CreateEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/CreateEnvironmentCommand.js +0 -64
- package/dist/cjs/commands/CreateEnvironmentCommand.js.map +0 -1
- package/dist/cjs/commands/CreateEnvironmentTemplateCommand.js +0 -76
- package/dist/cjs/commands/CreateEnvironmentTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/CreateEnvironmentTemplateVersionCommand.js +0 -63
- package/dist/cjs/commands/CreateEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/CreateServiceCommand.js +0 -63
- package/dist/cjs/commands/CreateServiceCommand.js.map +0 -1
- package/dist/cjs/commands/CreateServiceTemplateCommand.js +0 -65
- package/dist/cjs/commands/CreateServiceTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/CreateServiceTemplateVersionCommand.js +0 -63
- package/dist/cjs/commands/CreateServiceTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteEnvironmentAccountConnectionCommand.js +0 -66
- package/dist/cjs/commands/DeleteEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteEnvironmentCommand.js +0 -61
- package/dist/cjs/commands/DeleteEnvironmentCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteEnvironmentTemplateCommand.js +0 -61
- package/dist/cjs/commands/DeleteEnvironmentTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteEnvironmentTemplateVersionCommand.js +0 -67
- package/dist/cjs/commands/DeleteEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteServiceCommand.js +0 -61
- package/dist/cjs/commands/DeleteServiceCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteServiceTemplateCommand.js +0 -61
- package/dist/cjs/commands/DeleteServiceTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/DeleteServiceTemplateVersionCommand.js +0 -67
- package/dist/cjs/commands/DeleteServiceTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/GetAccountSettingsCommand.js +0 -61
- package/dist/cjs/commands/GetAccountSettingsCommand.js.map +0 -1
- package/dist/cjs/commands/GetEnvironmentAccountConnectionCommand.js +0 -63
- package/dist/cjs/commands/GetEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/GetEnvironmentCommand.js +0 -61
- package/dist/cjs/commands/GetEnvironmentCommand.js.map +0 -1
- package/dist/cjs/commands/GetEnvironmentTemplateCommand.js +0 -61
- package/dist/cjs/commands/GetEnvironmentTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/GetEnvironmentTemplateVersionCommand.js +0 -61
- package/dist/cjs/commands/GetEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/GetServiceCommand.js +0 -61
- package/dist/cjs/commands/GetServiceCommand.js.map +0 -1
- package/dist/cjs/commands/GetServiceInstanceCommand.js +0 -62
- package/dist/cjs/commands/GetServiceInstanceCommand.js.map +0 -1
- package/dist/cjs/commands/GetServiceTemplateCommand.js +0 -61
- package/dist/cjs/commands/GetServiceTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/GetServiceTemplateVersionCommand.js +0 -61
- package/dist/cjs/commands/GetServiceTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/ListEnvironmentAccountConnectionsCommand.js +0 -63
- package/dist/cjs/commands/ListEnvironmentAccountConnectionsCommand.js.map +0 -1
- package/dist/cjs/commands/ListEnvironmentTemplateVersionsCommand.js +0 -61
- package/dist/cjs/commands/ListEnvironmentTemplateVersionsCommand.js.map +0 -1
- package/dist/cjs/commands/ListEnvironmentTemplatesCommand.js +0 -61
- package/dist/cjs/commands/ListEnvironmentTemplatesCommand.js.map +0 -1
- package/dist/cjs/commands/ListEnvironmentsCommand.js +0 -61
- package/dist/cjs/commands/ListEnvironmentsCommand.js.map +0 -1
- package/dist/cjs/commands/ListServiceInstancesCommand.js +0 -61
- package/dist/cjs/commands/ListServiceInstancesCommand.js.map +0 -1
- package/dist/cjs/commands/ListServiceTemplateVersionsCommand.js +0 -61
- package/dist/cjs/commands/ListServiceTemplateVersionsCommand.js.map +0 -1
- package/dist/cjs/commands/ListServiceTemplatesCommand.js +0 -61
- package/dist/cjs/commands/ListServiceTemplatesCommand.js.map +0 -1
- package/dist/cjs/commands/ListServicesCommand.js +0 -61
- package/dist/cjs/commands/ListServicesCommand.js.map +0 -1
- package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -61
- package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/cjs/commands/RejectEnvironmentAccountConnectionCommand.js +0 -66
- package/dist/cjs/commands/RejectEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/TagResourceCommand.js +0 -61
- package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UntagResourceCommand.js +0 -61
- package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateAccountSettingsCommand.js +0 -61
- package/dist/cjs/commands/UpdateAccountSettingsCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateEnvironmentAccountConnectionCommand.js +0 -63
- package/dist/cjs/commands/UpdateEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateEnvironmentCommand.js +0 -106
- package/dist/cjs/commands/UpdateEnvironmentCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateEnvironmentTemplateCommand.js +0 -61
- package/dist/cjs/commands/UpdateEnvironmentTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateEnvironmentTemplateVersionCommand.js +0 -61
- package/dist/cjs/commands/UpdateEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateServiceCommand.js +0 -67
- package/dist/cjs/commands/UpdateServiceCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateServiceInstanceCommand.js +0 -99
- package/dist/cjs/commands/UpdateServiceInstanceCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateServicePipelineCommand.js +0 -99
- package/dist/cjs/commands/UpdateServicePipelineCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateServiceTemplateCommand.js +0 -61
- package/dist/cjs/commands/UpdateServiceTemplateCommand.js.map +0 -1
- package/dist/cjs/commands/UpdateServiceTemplateVersionCommand.js +0 -61
- package/dist/cjs/commands/UpdateServiceTemplateVersionCommand.js.map +0 -1
- package/dist/cjs/endpoints.js +0 -57
- package/dist/cjs/endpoints.js.map +0 -1
- package/dist/cjs/index.js +0 -74
- package/dist/cjs/index.js.map +0 -1
- package/dist/cjs/models/index.js +0 -5
- package/dist/cjs/models/index.js.map +0 -1
- package/dist/cjs/models/models_0.js +0 -1369
- package/dist/cjs/models/models_0.js.map +0 -1
- package/dist/cjs/package.json +0 -94
- package/dist/cjs/pagination/Interfaces.js +0 -3
- package/dist/cjs/pagination/Interfaces.js.map +0 -1
- package/dist/cjs/pagination/ListEnvironmentAccountConnectionsPaginator.js +0 -46
- package/dist/cjs/pagination/ListEnvironmentAccountConnectionsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListEnvironmentTemplateVersionsPaginator.js +0 -46
- package/dist/cjs/pagination/ListEnvironmentTemplateVersionsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListEnvironmentTemplatesPaginator.js +0 -46
- package/dist/cjs/pagination/ListEnvironmentTemplatesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListEnvironmentsPaginator.js +0 -46
- package/dist/cjs/pagination/ListEnvironmentsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListServiceInstancesPaginator.js +0 -46
- package/dist/cjs/pagination/ListServiceInstancesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListServiceTemplateVersionsPaginator.js +0 -46
- package/dist/cjs/pagination/ListServiceTemplateVersionsPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListServiceTemplatesPaginator.js +0 -46
- package/dist/cjs/pagination/ListServiceTemplatesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListServicesPaginator.js +0 -46
- package/dist/cjs/pagination/ListServicesPaginator.js.map +0 -1
- package/dist/cjs/pagination/ListTagsForResourcePaginator.js +0 -46
- package/dist/cjs/pagination/ListTagsForResourcePaginator.js.map +0 -1
- package/dist/cjs/protocols/Aws_json1_0.js +0 -6070
- package/dist/cjs/protocols/Aws_json1_0.js.map +0 -1
- package/dist/cjs/runtimeConfig.browser.js +0 -41
- package/dist/cjs/runtimeConfig.browser.js.map +0 -1
- package/dist/cjs/runtimeConfig.js +0 -46
- package/dist/cjs/runtimeConfig.js.map +0 -1
- package/dist/cjs/runtimeConfig.native.js +0 -20
- package/dist/cjs/runtimeConfig.native.js.map +0 -1
- package/dist/cjs/runtimeConfig.shared.js +0 -21
- package/dist/cjs/runtimeConfig.shared.js.map +0 -1
- package/dist/cjs/waiters/waitForEnvironmentDeployed.js +0 -55
- package/dist/cjs/waiters/waitForEnvironmentDeployed.js.map +0 -1
- package/dist/cjs/waiters/waitForEnvironmentTemplateVersionRegistered.js +0 -64
- package/dist/cjs/waiters/waitForEnvironmentTemplateVersionRegistered.js.map +0 -1
- package/dist/cjs/waiters/waitForServiceCreated.js +0 -73
- package/dist/cjs/waiters/waitForServiceCreated.js.map +0 -1
- package/dist/cjs/waiters/waitForServiceDeleted.js +0 -49
- package/dist/cjs/waiters/waitForServiceDeleted.js.map +0 -1
- package/dist/cjs/waiters/waitForServiceInstanceDeployed.js +0 -55
- package/dist/cjs/waiters/waitForServiceInstanceDeployed.js.map +0 -1
- package/dist/cjs/waiters/waitForServicePipelineDeployed.js +0 -55
- package/dist/cjs/waiters/waitForServicePipelineDeployed.js.map +0 -1
- package/dist/cjs/waiters/waitForServiceTemplateVersionRegistered.js +0 -64
- package/dist/cjs/waiters/waitForServiceTemplateVersionRegistered.js.map +0 -1
- package/dist/cjs/waiters/waitForServiceUpdated.js +0 -82
- package/dist/cjs/waiters/waitForServiceUpdated.js.map +0 -1
- package/dist/es/Proton.js +0 -746
- package/dist/es/Proton.js.map +0 -1
- package/dist/es/ProtonClient.js +0 -38
- package/dist/es/ProtonClient.js.map +0 -1
- package/dist/es/commands/AcceptEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/AcceptEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/CancelEnvironmentDeploymentCommand.js +0 -40
- package/dist/es/commands/CancelEnvironmentDeploymentCommand.js.map +0 -1
- package/dist/es/commands/CancelServiceInstanceDeploymentCommand.js +0 -40
- package/dist/es/commands/CancelServiceInstanceDeploymentCommand.js.map +0 -1
- package/dist/es/commands/CancelServicePipelineDeploymentCommand.js +0 -40
- package/dist/es/commands/CancelServicePipelineDeploymentCommand.js.map +0 -1
- package/dist/es/commands/CreateEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/CreateEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/CreateEnvironmentCommand.js +0 -40
- package/dist/es/commands/CreateEnvironmentCommand.js.map +0 -1
- package/dist/es/commands/CreateEnvironmentTemplateCommand.js +0 -40
- package/dist/es/commands/CreateEnvironmentTemplateCommand.js.map +0 -1
- package/dist/es/commands/CreateEnvironmentTemplateVersionCommand.js +0 -40
- package/dist/es/commands/CreateEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/CreateServiceCommand.js +0 -40
- package/dist/es/commands/CreateServiceCommand.js.map +0 -1
- package/dist/es/commands/CreateServiceTemplateCommand.js +0 -40
- package/dist/es/commands/CreateServiceTemplateCommand.js.map +0 -1
- package/dist/es/commands/CreateServiceTemplateVersionCommand.js +0 -40
- package/dist/es/commands/CreateServiceTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/DeleteEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/DeleteEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/DeleteEnvironmentCommand.js +0 -40
- package/dist/es/commands/DeleteEnvironmentCommand.js.map +0 -1
- package/dist/es/commands/DeleteEnvironmentTemplateCommand.js +0 -40
- package/dist/es/commands/DeleteEnvironmentTemplateCommand.js.map +0 -1
- package/dist/es/commands/DeleteEnvironmentTemplateVersionCommand.js +0 -40
- package/dist/es/commands/DeleteEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/DeleteServiceCommand.js +0 -40
- package/dist/es/commands/DeleteServiceCommand.js.map +0 -1
- package/dist/es/commands/DeleteServiceTemplateCommand.js +0 -40
- package/dist/es/commands/DeleteServiceTemplateCommand.js.map +0 -1
- package/dist/es/commands/DeleteServiceTemplateVersionCommand.js +0 -40
- package/dist/es/commands/DeleteServiceTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/GetAccountSettingsCommand.js +0 -40
- package/dist/es/commands/GetAccountSettingsCommand.js.map +0 -1
- package/dist/es/commands/GetEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/GetEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/GetEnvironmentCommand.js +0 -40
- package/dist/es/commands/GetEnvironmentCommand.js.map +0 -1
- package/dist/es/commands/GetEnvironmentTemplateCommand.js +0 -40
- package/dist/es/commands/GetEnvironmentTemplateCommand.js.map +0 -1
- package/dist/es/commands/GetEnvironmentTemplateVersionCommand.js +0 -40
- package/dist/es/commands/GetEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/GetServiceCommand.js +0 -40
- package/dist/es/commands/GetServiceCommand.js.map +0 -1
- package/dist/es/commands/GetServiceInstanceCommand.js +0 -40
- package/dist/es/commands/GetServiceInstanceCommand.js.map +0 -1
- package/dist/es/commands/GetServiceTemplateCommand.js +0 -40
- package/dist/es/commands/GetServiceTemplateCommand.js.map +0 -1
- package/dist/es/commands/GetServiceTemplateVersionCommand.js +0 -40
- package/dist/es/commands/GetServiceTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/ListEnvironmentAccountConnectionsCommand.js +0 -40
- package/dist/es/commands/ListEnvironmentAccountConnectionsCommand.js.map +0 -1
- package/dist/es/commands/ListEnvironmentTemplateVersionsCommand.js +0 -40
- package/dist/es/commands/ListEnvironmentTemplateVersionsCommand.js.map +0 -1
- package/dist/es/commands/ListEnvironmentTemplatesCommand.js +0 -40
- package/dist/es/commands/ListEnvironmentTemplatesCommand.js.map +0 -1
- package/dist/es/commands/ListEnvironmentsCommand.js +0 -40
- package/dist/es/commands/ListEnvironmentsCommand.js.map +0 -1
- package/dist/es/commands/ListServiceInstancesCommand.js +0 -40
- package/dist/es/commands/ListServiceInstancesCommand.js.map +0 -1
- package/dist/es/commands/ListServiceTemplateVersionsCommand.js +0 -40
- package/dist/es/commands/ListServiceTemplateVersionsCommand.js.map +0 -1
- package/dist/es/commands/ListServiceTemplatesCommand.js +0 -40
- package/dist/es/commands/ListServiceTemplatesCommand.js.map +0 -1
- package/dist/es/commands/ListServicesCommand.js +0 -40
- package/dist/es/commands/ListServicesCommand.js.map +0 -1
- package/dist/es/commands/ListTagsForResourceCommand.js +0 -40
- package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
- package/dist/es/commands/RejectEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/RejectEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/TagResourceCommand.js +0 -40
- package/dist/es/commands/TagResourceCommand.js.map +0 -1
- package/dist/es/commands/UntagResourceCommand.js +0 -40
- package/dist/es/commands/UntagResourceCommand.js.map +0 -1
- package/dist/es/commands/UpdateAccountSettingsCommand.js +0 -40
- package/dist/es/commands/UpdateAccountSettingsCommand.js.map +0 -1
- package/dist/es/commands/UpdateEnvironmentAccountConnectionCommand.js +0 -40
- package/dist/es/commands/UpdateEnvironmentAccountConnectionCommand.js.map +0 -1
- package/dist/es/commands/UpdateEnvironmentCommand.js +0 -40
- package/dist/es/commands/UpdateEnvironmentCommand.js.map +0 -1
- package/dist/es/commands/UpdateEnvironmentTemplateCommand.js +0 -40
- package/dist/es/commands/UpdateEnvironmentTemplateCommand.js.map +0 -1
- package/dist/es/commands/UpdateEnvironmentTemplateVersionCommand.js +0 -40
- package/dist/es/commands/UpdateEnvironmentTemplateVersionCommand.js.map +0 -1
- package/dist/es/commands/UpdateServiceCommand.js +0 -40
- package/dist/es/commands/UpdateServiceCommand.js.map +0 -1
- package/dist/es/commands/UpdateServiceInstanceCommand.js +0 -40
- package/dist/es/commands/UpdateServiceInstanceCommand.js.map +0 -1
- package/dist/es/commands/UpdateServicePipelineCommand.js +0 -40
- package/dist/es/commands/UpdateServicePipelineCommand.js.map +0 -1
- package/dist/es/commands/UpdateServiceTemplateCommand.js +0 -40
- package/dist/es/commands/UpdateServiceTemplateCommand.js.map +0 -1
- package/dist/es/commands/UpdateServiceTemplateVersionCommand.js +0 -40
- package/dist/es/commands/UpdateServiceTemplateVersionCommand.js.map +0 -1
- package/dist/es/endpoints.js +0 -53
- package/dist/es/endpoints.js.map +0 -1
- package/dist/es/index.js +0 -71
- package/dist/es/index.js.map +0 -1
- package/dist/es/models/index.js +0 -2
- package/dist/es/models/index.js.map +0 -1
- package/dist/es/models/models_0.js +0 -621
- package/dist/es/models/models_0.js.map +0 -1
- package/dist/es/package.json +0 -94
- package/dist/es/pagination/Interfaces.js +0 -2
- package/dist/es/pagination/Interfaces.js.map +0 -1
- package/dist/es/pagination/ListEnvironmentAccountConnectionsPaginator.js +0 -75
- package/dist/es/pagination/ListEnvironmentAccountConnectionsPaginator.js.map +0 -1
- package/dist/es/pagination/ListEnvironmentTemplateVersionsPaginator.js +0 -75
- package/dist/es/pagination/ListEnvironmentTemplateVersionsPaginator.js.map +0 -1
- package/dist/es/pagination/ListEnvironmentTemplatesPaginator.js +0 -75
- package/dist/es/pagination/ListEnvironmentTemplatesPaginator.js.map +0 -1
- package/dist/es/pagination/ListEnvironmentsPaginator.js +0 -75
- package/dist/es/pagination/ListEnvironmentsPaginator.js.map +0 -1
- package/dist/es/pagination/ListServiceInstancesPaginator.js +0 -75
- package/dist/es/pagination/ListServiceInstancesPaginator.js.map +0 -1
- package/dist/es/pagination/ListServiceTemplateVersionsPaginator.js +0 -75
- package/dist/es/pagination/ListServiceTemplateVersionsPaginator.js.map +0 -1
- package/dist/es/pagination/ListServiceTemplatesPaginator.js +0 -75
- package/dist/es/pagination/ListServiceTemplatesPaginator.js.map +0 -1
- package/dist/es/pagination/ListServicesPaginator.js +0 -75
- package/dist/es/pagination/ListServicesPaginator.js.map +0 -1
- package/dist/es/pagination/ListTagsForResourcePaginator.js +0 -75
- package/dist/es/pagination/ListTagsForResourcePaginator.js.map +0 -1
- package/dist/es/protocols/Aws_json1_0.js +0 -6336
- package/dist/es/protocols/Aws_json1_0.js.map +0 -1
- package/dist/es/runtimeConfig.browser.js +0 -17
- package/dist/es/runtimeConfig.browser.js.map +0 -1
- package/dist/es/runtimeConfig.js +0 -22
- package/dist/es/runtimeConfig.js.map +0 -1
- package/dist/es/runtimeConfig.native.js +0 -9
- package/dist/es/runtimeConfig.native.js.map +0 -1
- package/dist/es/runtimeConfig.shared.js +0 -14
- package/dist/es/runtimeConfig.shared.js.map +0 -1
- package/dist/es/waiters/waitForEnvironmentDeployed.js +0 -61
- package/dist/es/waiters/waitForEnvironmentDeployed.js.map +0 -1
- package/dist/es/waiters/waitForEnvironmentTemplateVersionRegistered.js +0 -70
- package/dist/es/waiters/waitForEnvironmentTemplateVersionRegistered.js.map +0 -1
- package/dist/es/waiters/waitForServiceCreated.js +0 -79
- package/dist/es/waiters/waitForServiceCreated.js.map +0 -1
- package/dist/es/waiters/waitForServiceDeleted.js +0 -55
- package/dist/es/waiters/waitForServiceDeleted.js.map +0 -1
- package/dist/es/waiters/waitForServiceInstanceDeployed.js +0 -61
- package/dist/es/waiters/waitForServiceInstanceDeployed.js.map +0 -1
- package/dist/es/waiters/waitForServicePipelineDeployed.js +0 -61
- package/dist/es/waiters/waitForServicePipelineDeployed.js.map +0 -1
- package/dist/es/waiters/waitForServiceTemplateVersionRegistered.js +0 -70
- package/dist/es/waiters/waitForServiceTemplateVersionRegistered.js.map +0 -1
- package/dist/es/waiters/waitForServiceUpdated.js +0 -88
- package/dist/es/waiters/waitForServiceUpdated.js.map +0 -1
- package/dist/types/Proton.d.ts +0 -704
- package/dist/types/ProtonClient.d.ts +0 -301
- package/dist/types/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +0 -39
- package/dist/types/commands/CancelEnvironmentDeploymentCommand.d.ts +0 -49
- package/dist/types/commands/CancelServiceInstanceDeploymentCommand.d.ts +0 -49
- package/dist/types/commands/CancelServicePipelineDeploymentCommand.d.ts +0 -49
- package/dist/types/commands/CreateEnvironmentAccountConnectionCommand.d.ts +0 -39
- package/dist/types/commands/CreateEnvironmentCommand.d.ts +0 -38
- package/dist/types/commands/CreateEnvironmentTemplateCommand.d.ts +0 -50
- package/dist/types/commands/CreateEnvironmentTemplateVersionCommand.d.ts +0 -37
- package/dist/types/commands/CreateServiceCommand.d.ts +0 -37
- package/dist/types/commands/CreateServiceTemplateCommand.d.ts +0 -39
- package/dist/types/commands/CreateServiceTemplateVersionCommand.d.ts +0 -37
- package/dist/types/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +0 -40
- package/dist/types/commands/DeleteEnvironmentCommand.d.ts +0 -35
- package/dist/types/commands/DeleteEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +0 -41
- package/dist/types/commands/DeleteServiceCommand.d.ts +0 -35
- package/dist/types/commands/DeleteServiceTemplateCommand.d.ts +0 -35
- package/dist/types/commands/DeleteServiceTemplateVersionCommand.d.ts +0 -41
- package/dist/types/commands/GetAccountSettingsCommand.d.ts +0 -35
- package/dist/types/commands/GetEnvironmentAccountConnectionCommand.d.ts +0 -37
- package/dist/types/commands/GetEnvironmentCommand.d.ts +0 -35
- package/dist/types/commands/GetEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/commands/GetEnvironmentTemplateVersionCommand.d.ts +0 -35
- package/dist/types/commands/GetServiceCommand.d.ts +0 -35
- package/dist/types/commands/GetServiceInstanceCommand.d.ts +0 -36
- package/dist/types/commands/GetServiceTemplateCommand.d.ts +0 -35
- package/dist/types/commands/GetServiceTemplateVersionCommand.d.ts +0 -35
- package/dist/types/commands/ListEnvironmentAccountConnectionsCommand.d.ts +0 -37
- package/dist/types/commands/ListEnvironmentTemplateVersionsCommand.d.ts +0 -35
- package/dist/types/commands/ListEnvironmentTemplatesCommand.d.ts +0 -35
- package/dist/types/commands/ListEnvironmentsCommand.d.ts +0 -35
- package/dist/types/commands/ListServiceInstancesCommand.d.ts +0 -35
- package/dist/types/commands/ListServiceTemplateVersionsCommand.d.ts +0 -35
- package/dist/types/commands/ListServiceTemplatesCommand.d.ts +0 -35
- package/dist/types/commands/ListServicesCommand.d.ts +0 -35
- package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -35
- package/dist/types/commands/RejectEnvironmentAccountConnectionCommand.d.ts +0 -40
- package/dist/types/commands/TagResourceCommand.d.ts +0 -35
- package/dist/types/commands/UntagResourceCommand.d.ts +0 -35
- package/dist/types/commands/UpdateAccountSettingsCommand.d.ts +0 -35
- package/dist/types/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +0 -37
- package/dist/types/commands/UpdateEnvironmentCommand.d.ts +0 -80
- package/dist/types/commands/UpdateEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +0 -35
- package/dist/types/commands/UpdateServiceCommand.d.ts +0 -41
- package/dist/types/commands/UpdateServiceInstanceCommand.d.ts +0 -73
- package/dist/types/commands/UpdateServicePipelineCommand.d.ts +0 -73
- package/dist/types/commands/UpdateServiceTemplateCommand.d.ts +0 -35
- package/dist/types/commands/UpdateServiceTemplateVersionCommand.d.ts +0 -35
- package/dist/types/pagination/Interfaces.d.ts +0 -6
- package/dist/types/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListEnvironmentTemplatesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListEnvironmentsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListServiceInstancesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListServiceTemplateVersionsPaginator.d.ts +0 -4
- package/dist/types/pagination/ListServiceTemplatesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListServicesPaginator.d.ts +0 -4
- package/dist/types/pagination/ListTagsForResourcePaginator.d.ts +0 -4
- package/dist/types/protocols/Aws_json1_0.d.ts +0 -149
- package/dist/types/runtimeConfig.d.ts +0 -37
- package/dist/types/ts3.4/Proton.d.ts +0 -704
- package/dist/types/ts3.4/ProtonClient.d.ts +0 -301
- package/dist/types/ts3.4/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/CancelEnvironmentDeploymentCommand.d.ts +0 -49
- package/dist/types/ts3.4/commands/CancelServiceInstanceDeploymentCommand.d.ts +0 -49
- package/dist/types/ts3.4/commands/CancelServicePipelineDeploymentCommand.d.ts +0 -49
- package/dist/types/ts3.4/commands/CreateEnvironmentAccountConnectionCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/CreateEnvironmentCommand.d.ts +0 -38
- package/dist/types/ts3.4/commands/CreateEnvironmentTemplateCommand.d.ts +0 -50
- package/dist/types/ts3.4/commands/CreateEnvironmentTemplateVersionCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/CreateServiceCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/CreateServiceTemplateCommand.d.ts +0 -39
- package/dist/types/ts3.4/commands/CreateServiceTemplateVersionCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/DeleteServiceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteServiceTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/DeleteServiceTemplateVersionCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/GetAccountSettingsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetEnvironmentAccountConnectionCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/GetEnvironmentCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetEnvironmentTemplateVersionCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetServiceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetServiceInstanceCommand.d.ts +0 -36
- package/dist/types/ts3.4/commands/GetServiceTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/GetServiceTemplateVersionCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListEnvironmentAccountConnectionsCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/ListEnvironmentTemplateVersionsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListEnvironmentTemplatesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListEnvironmentsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListServiceInstancesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListServiceTemplateVersionsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListServiceTemplatesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListServicesCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/RejectEnvironmentAccountConnectionCommand.d.ts +0 -40
- package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +0 -37
- package/dist/types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +0 -80
- package/dist/types/ts3.4/commands/UpdateEnvironmentTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateEnvironmentTemplateVersionCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateServiceCommand.d.ts +0 -41
- package/dist/types/ts3.4/commands/UpdateServiceInstanceCommand.d.ts +0 -73
- package/dist/types/ts3.4/commands/UpdateServicePipelineCommand.d.ts +0 -73
- package/dist/types/ts3.4/commands/UpdateServiceTemplateCommand.d.ts +0 -35
- package/dist/types/ts3.4/commands/UpdateServiceTemplateVersionCommand.d.ts +0 -35
- package/dist/types/ts3.4/models/models_0.d.ts +0 -2996
- package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist/types/ts3.4/pagination/ListEnvironmentAccountConnectionsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListEnvironmentTemplateVersionsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListEnvironmentTemplatesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListServiceInstancesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListServiceTemplateVersionsPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListServiceTemplatesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListServicesPaginator.d.ts +0 -4
- package/dist/types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +0 -4
- package/dist/types/ts3.4/protocols/Aws_json1_0.d.ts +0 -149
- package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -37
- package/dist/types/ts3.4/runtimeConfig.d.ts +0 -37
- package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -36
- package/dist/types/ts3.4/runtimeConfig.shared.d.ts +0 -13
- package/dist/types/ts3.4/waiters/waitForEnvironmentDeployed.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServiceCreated.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServiceDeleted.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServiceInstanceDeployed.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServicePipelineDeployed.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServiceTemplateVersionRegistered.d.ts +0 -14
- package/dist/types/ts3.4/waiters/waitForServiceUpdated.d.ts +0 -14
- package/dist/types/waiters/waitForEnvironmentDeployed.d.ts +0 -14
- package/dist/types/waiters/waitForEnvironmentTemplateVersionRegistered.d.ts +0 -14
- package/dist/types/waiters/waitForServiceCreated.d.ts +0 -14
- package/dist/types/waiters/waitForServiceDeleted.d.ts +0 -14
- package/dist/types/waiters/waitForServiceInstanceDeployed.d.ts +0 -14
- package/dist/types/waiters/waitForServicePipelineDeployed.d.ts +0 -14
- package/dist/types/waiters/waitForServiceTemplateVersionRegistered.d.ts +0 -14
- package/dist/types/waiters/waitForServiceUpdated.d.ts +0 -14
- package/endpoints.ts +0 -57
- package/jest.config.js +0 -4
- package/models/models_0.ts +0 -3943
- package/pagination/Interfaces.ts +0 -7
- package/pagination/ListEnvironmentAccountConnectionsPaginator.ts +0 -58
- package/pagination/ListEnvironmentTemplateVersionsPaginator.ts +0 -58
- package/pagination/ListEnvironmentTemplatesPaginator.ts +0 -58
- package/pagination/ListEnvironmentsPaginator.ts +0 -58
- package/pagination/ListServiceInstancesPaginator.ts +0 -58
- package/pagination/ListServiceTemplateVersionsPaginator.ts +0 -58
- package/pagination/ListServiceTemplatesPaginator.ts +0 -58
- package/pagination/ListServicesPaginator.ts +0 -58
- package/pagination/ListTagsForResourcePaginator.ts +0 -58
- package/protocols/Aws_json1_0.ts +0 -7421
- package/runtimeConfig.browser.ts +0 -40
- package/runtimeConfig.native.ts +0 -16
- package/runtimeConfig.shared.ts +0 -16
- package/runtimeConfig.ts +0 -45
- package/tsconfig.es.json +0 -10
- package/tsconfig.json +0 -31
- package/tsconfig.types.json +0 -8
- package/waiters/waitForEnvironmentDeployed.ts +0 -54
- package/waiters/waitForEnvironmentTemplateVersionRegistered.ts +0 -68
- package/waiters/waitForServiceCreated.ts +0 -70
- package/waiters/waitForServiceDeleted.ts +0 -49
- package/waiters/waitForServiceInstanceDeployed.ts +0 -54
- package/waiters/waitForServicePipelineDeployed.ts +0 -54
- package/waiters/waitForServiceTemplateVersionRegistered.ts +0 -68
- package/waiters/waitForServiceUpdated.ts +0 -78
package/ProtonClient.ts
DELETED
|
@@ -1,604 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
AcceptEnvironmentAccountConnectionCommandInput,
|
|
3
|
-
AcceptEnvironmentAccountConnectionCommandOutput,
|
|
4
|
-
} from "./commands/AcceptEnvironmentAccountConnectionCommand";
|
|
5
|
-
import {
|
|
6
|
-
CancelEnvironmentDeploymentCommandInput,
|
|
7
|
-
CancelEnvironmentDeploymentCommandOutput,
|
|
8
|
-
} from "./commands/CancelEnvironmentDeploymentCommand";
|
|
9
|
-
import {
|
|
10
|
-
CancelServiceInstanceDeploymentCommandInput,
|
|
11
|
-
CancelServiceInstanceDeploymentCommandOutput,
|
|
12
|
-
} from "./commands/CancelServiceInstanceDeploymentCommand";
|
|
13
|
-
import {
|
|
14
|
-
CancelServicePipelineDeploymentCommandInput,
|
|
15
|
-
CancelServicePipelineDeploymentCommandOutput,
|
|
16
|
-
} from "./commands/CancelServicePipelineDeploymentCommand";
|
|
17
|
-
import {
|
|
18
|
-
CreateEnvironmentAccountConnectionCommandInput,
|
|
19
|
-
CreateEnvironmentAccountConnectionCommandOutput,
|
|
20
|
-
} from "./commands/CreateEnvironmentAccountConnectionCommand";
|
|
21
|
-
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
|
|
22
|
-
import {
|
|
23
|
-
CreateEnvironmentTemplateCommandInput,
|
|
24
|
-
CreateEnvironmentTemplateCommandOutput,
|
|
25
|
-
} from "./commands/CreateEnvironmentTemplateCommand";
|
|
26
|
-
import {
|
|
27
|
-
CreateEnvironmentTemplateVersionCommandInput,
|
|
28
|
-
CreateEnvironmentTemplateVersionCommandOutput,
|
|
29
|
-
} from "./commands/CreateEnvironmentTemplateVersionCommand";
|
|
30
|
-
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
31
|
-
import {
|
|
32
|
-
CreateServiceTemplateCommandInput,
|
|
33
|
-
CreateServiceTemplateCommandOutput,
|
|
34
|
-
} from "./commands/CreateServiceTemplateCommand";
|
|
35
|
-
import {
|
|
36
|
-
CreateServiceTemplateVersionCommandInput,
|
|
37
|
-
CreateServiceTemplateVersionCommandOutput,
|
|
38
|
-
} from "./commands/CreateServiceTemplateVersionCommand";
|
|
39
|
-
import {
|
|
40
|
-
DeleteEnvironmentAccountConnectionCommandInput,
|
|
41
|
-
DeleteEnvironmentAccountConnectionCommandOutput,
|
|
42
|
-
} from "./commands/DeleteEnvironmentAccountConnectionCommand";
|
|
43
|
-
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
|
|
44
|
-
import {
|
|
45
|
-
DeleteEnvironmentTemplateCommandInput,
|
|
46
|
-
DeleteEnvironmentTemplateCommandOutput,
|
|
47
|
-
} from "./commands/DeleteEnvironmentTemplateCommand";
|
|
48
|
-
import {
|
|
49
|
-
DeleteEnvironmentTemplateVersionCommandInput,
|
|
50
|
-
DeleteEnvironmentTemplateVersionCommandOutput,
|
|
51
|
-
} from "./commands/DeleteEnvironmentTemplateVersionCommand";
|
|
52
|
-
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
53
|
-
import {
|
|
54
|
-
DeleteServiceTemplateCommandInput,
|
|
55
|
-
DeleteServiceTemplateCommandOutput,
|
|
56
|
-
} from "./commands/DeleteServiceTemplateCommand";
|
|
57
|
-
import {
|
|
58
|
-
DeleteServiceTemplateVersionCommandInput,
|
|
59
|
-
DeleteServiceTemplateVersionCommandOutput,
|
|
60
|
-
} from "./commands/DeleteServiceTemplateVersionCommand";
|
|
61
|
-
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
|
|
62
|
-
import {
|
|
63
|
-
GetEnvironmentAccountConnectionCommandInput,
|
|
64
|
-
GetEnvironmentAccountConnectionCommandOutput,
|
|
65
|
-
} from "./commands/GetEnvironmentAccountConnectionCommand";
|
|
66
|
-
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
|
|
67
|
-
import {
|
|
68
|
-
GetEnvironmentTemplateCommandInput,
|
|
69
|
-
GetEnvironmentTemplateCommandOutput,
|
|
70
|
-
} from "./commands/GetEnvironmentTemplateCommand";
|
|
71
|
-
import {
|
|
72
|
-
GetEnvironmentTemplateVersionCommandInput,
|
|
73
|
-
GetEnvironmentTemplateVersionCommandOutput,
|
|
74
|
-
} from "./commands/GetEnvironmentTemplateVersionCommand";
|
|
75
|
-
import { GetServiceCommandInput, GetServiceCommandOutput } from "./commands/GetServiceCommand";
|
|
76
|
-
import { GetServiceInstanceCommandInput, GetServiceInstanceCommandOutput } from "./commands/GetServiceInstanceCommand";
|
|
77
|
-
import { GetServiceTemplateCommandInput, GetServiceTemplateCommandOutput } from "./commands/GetServiceTemplateCommand";
|
|
78
|
-
import {
|
|
79
|
-
GetServiceTemplateVersionCommandInput,
|
|
80
|
-
GetServiceTemplateVersionCommandOutput,
|
|
81
|
-
} from "./commands/GetServiceTemplateVersionCommand";
|
|
82
|
-
import {
|
|
83
|
-
ListEnvironmentAccountConnectionsCommandInput,
|
|
84
|
-
ListEnvironmentAccountConnectionsCommandOutput,
|
|
85
|
-
} from "./commands/ListEnvironmentAccountConnectionsCommand";
|
|
86
|
-
import {
|
|
87
|
-
ListEnvironmentTemplateVersionsCommandInput,
|
|
88
|
-
ListEnvironmentTemplateVersionsCommandOutput,
|
|
89
|
-
} from "./commands/ListEnvironmentTemplateVersionsCommand";
|
|
90
|
-
import {
|
|
91
|
-
ListEnvironmentTemplatesCommandInput,
|
|
92
|
-
ListEnvironmentTemplatesCommandOutput,
|
|
93
|
-
} from "./commands/ListEnvironmentTemplatesCommand";
|
|
94
|
-
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
|
|
95
|
-
import {
|
|
96
|
-
ListServiceInstancesCommandInput,
|
|
97
|
-
ListServiceInstancesCommandOutput,
|
|
98
|
-
} from "./commands/ListServiceInstancesCommand";
|
|
99
|
-
import {
|
|
100
|
-
ListServiceTemplateVersionsCommandInput,
|
|
101
|
-
ListServiceTemplateVersionsCommandOutput,
|
|
102
|
-
} from "./commands/ListServiceTemplateVersionsCommand";
|
|
103
|
-
import {
|
|
104
|
-
ListServiceTemplatesCommandInput,
|
|
105
|
-
ListServiceTemplatesCommandOutput,
|
|
106
|
-
} from "./commands/ListServiceTemplatesCommand";
|
|
107
|
-
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
108
|
-
import {
|
|
109
|
-
ListTagsForResourceCommandInput,
|
|
110
|
-
ListTagsForResourceCommandOutput,
|
|
111
|
-
} from "./commands/ListTagsForResourceCommand";
|
|
112
|
-
import {
|
|
113
|
-
RejectEnvironmentAccountConnectionCommandInput,
|
|
114
|
-
RejectEnvironmentAccountConnectionCommandOutput,
|
|
115
|
-
} from "./commands/RejectEnvironmentAccountConnectionCommand";
|
|
116
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
117
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
118
|
-
import {
|
|
119
|
-
UpdateAccountSettingsCommandInput,
|
|
120
|
-
UpdateAccountSettingsCommandOutput,
|
|
121
|
-
} from "./commands/UpdateAccountSettingsCommand";
|
|
122
|
-
import {
|
|
123
|
-
UpdateEnvironmentAccountConnectionCommandInput,
|
|
124
|
-
UpdateEnvironmentAccountConnectionCommandOutput,
|
|
125
|
-
} from "./commands/UpdateEnvironmentAccountConnectionCommand";
|
|
126
|
-
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
|
|
127
|
-
import {
|
|
128
|
-
UpdateEnvironmentTemplateCommandInput,
|
|
129
|
-
UpdateEnvironmentTemplateCommandOutput,
|
|
130
|
-
} from "./commands/UpdateEnvironmentTemplateCommand";
|
|
131
|
-
import {
|
|
132
|
-
UpdateEnvironmentTemplateVersionCommandInput,
|
|
133
|
-
UpdateEnvironmentTemplateVersionCommandOutput,
|
|
134
|
-
} from "./commands/UpdateEnvironmentTemplateVersionCommand";
|
|
135
|
-
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
136
|
-
import {
|
|
137
|
-
UpdateServiceInstanceCommandInput,
|
|
138
|
-
UpdateServiceInstanceCommandOutput,
|
|
139
|
-
} from "./commands/UpdateServiceInstanceCommand";
|
|
140
|
-
import {
|
|
141
|
-
UpdateServicePipelineCommandInput,
|
|
142
|
-
UpdateServicePipelineCommandOutput,
|
|
143
|
-
} from "./commands/UpdateServicePipelineCommand";
|
|
144
|
-
import {
|
|
145
|
-
UpdateServiceTemplateCommandInput,
|
|
146
|
-
UpdateServiceTemplateCommandOutput,
|
|
147
|
-
} from "./commands/UpdateServiceTemplateCommand";
|
|
148
|
-
import {
|
|
149
|
-
UpdateServiceTemplateVersionCommandInput,
|
|
150
|
-
UpdateServiceTemplateVersionCommandOutput,
|
|
151
|
-
} from "./commands/UpdateServiceTemplateVersionCommand";
|
|
152
|
-
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
153
|
-
import {
|
|
154
|
-
EndpointsInputConfig,
|
|
155
|
-
EndpointsResolvedConfig,
|
|
156
|
-
RegionInputConfig,
|
|
157
|
-
RegionResolvedConfig,
|
|
158
|
-
resolveEndpointsConfig,
|
|
159
|
-
resolveRegionConfig,
|
|
160
|
-
} from "@aws-sdk/config-resolver";
|
|
161
|
-
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
162
|
-
import {
|
|
163
|
-
HostHeaderInputConfig,
|
|
164
|
-
HostHeaderResolvedConfig,
|
|
165
|
-
getHostHeaderPlugin,
|
|
166
|
-
resolveHostHeaderConfig,
|
|
167
|
-
} from "@aws-sdk/middleware-host-header";
|
|
168
|
-
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
169
|
-
import { RetryInputConfig, RetryResolvedConfig, getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
170
|
-
import {
|
|
171
|
-
AwsAuthInputConfig,
|
|
172
|
-
AwsAuthResolvedConfig,
|
|
173
|
-
getAwsAuthPlugin,
|
|
174
|
-
resolveAwsAuthConfig,
|
|
175
|
-
} from "@aws-sdk/middleware-signing";
|
|
176
|
-
import {
|
|
177
|
-
UserAgentInputConfig,
|
|
178
|
-
UserAgentResolvedConfig,
|
|
179
|
-
getUserAgentPlugin,
|
|
180
|
-
resolveUserAgentConfig,
|
|
181
|
-
} from "@aws-sdk/middleware-user-agent";
|
|
182
|
-
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
183
|
-
import {
|
|
184
|
-
Client as __Client,
|
|
185
|
-
SmithyConfiguration as __SmithyConfiguration,
|
|
186
|
-
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
187
|
-
} from "@aws-sdk/smithy-client";
|
|
188
|
-
import {
|
|
189
|
-
Provider,
|
|
190
|
-
RegionInfoProvider,
|
|
191
|
-
Credentials as __Credentials,
|
|
192
|
-
Decoder as __Decoder,
|
|
193
|
-
Encoder as __Encoder,
|
|
194
|
-
Hash as __Hash,
|
|
195
|
-
HashConstructor as __HashConstructor,
|
|
196
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
197
|
-
Logger as __Logger,
|
|
198
|
-
Provider as __Provider,
|
|
199
|
-
StreamCollector as __StreamCollector,
|
|
200
|
-
UrlParser as __UrlParser,
|
|
201
|
-
UserAgent as __UserAgent,
|
|
202
|
-
} from "@aws-sdk/types";
|
|
203
|
-
|
|
204
|
-
export type ServiceInputTypes =
|
|
205
|
-
| AcceptEnvironmentAccountConnectionCommandInput
|
|
206
|
-
| CancelEnvironmentDeploymentCommandInput
|
|
207
|
-
| CancelServiceInstanceDeploymentCommandInput
|
|
208
|
-
| CancelServicePipelineDeploymentCommandInput
|
|
209
|
-
| CreateEnvironmentAccountConnectionCommandInput
|
|
210
|
-
| CreateEnvironmentCommandInput
|
|
211
|
-
| CreateEnvironmentTemplateCommandInput
|
|
212
|
-
| CreateEnvironmentTemplateVersionCommandInput
|
|
213
|
-
| CreateServiceCommandInput
|
|
214
|
-
| CreateServiceTemplateCommandInput
|
|
215
|
-
| CreateServiceTemplateVersionCommandInput
|
|
216
|
-
| DeleteEnvironmentAccountConnectionCommandInput
|
|
217
|
-
| DeleteEnvironmentCommandInput
|
|
218
|
-
| DeleteEnvironmentTemplateCommandInput
|
|
219
|
-
| DeleteEnvironmentTemplateVersionCommandInput
|
|
220
|
-
| DeleteServiceCommandInput
|
|
221
|
-
| DeleteServiceTemplateCommandInput
|
|
222
|
-
| DeleteServiceTemplateVersionCommandInput
|
|
223
|
-
| GetAccountSettingsCommandInput
|
|
224
|
-
| GetEnvironmentAccountConnectionCommandInput
|
|
225
|
-
| GetEnvironmentCommandInput
|
|
226
|
-
| GetEnvironmentTemplateCommandInput
|
|
227
|
-
| GetEnvironmentTemplateVersionCommandInput
|
|
228
|
-
| GetServiceCommandInput
|
|
229
|
-
| GetServiceInstanceCommandInput
|
|
230
|
-
| GetServiceTemplateCommandInput
|
|
231
|
-
| GetServiceTemplateVersionCommandInput
|
|
232
|
-
| ListEnvironmentAccountConnectionsCommandInput
|
|
233
|
-
| ListEnvironmentTemplateVersionsCommandInput
|
|
234
|
-
| ListEnvironmentTemplatesCommandInput
|
|
235
|
-
| ListEnvironmentsCommandInput
|
|
236
|
-
| ListServiceInstancesCommandInput
|
|
237
|
-
| ListServiceTemplateVersionsCommandInput
|
|
238
|
-
| ListServiceTemplatesCommandInput
|
|
239
|
-
| ListServicesCommandInput
|
|
240
|
-
| ListTagsForResourceCommandInput
|
|
241
|
-
| RejectEnvironmentAccountConnectionCommandInput
|
|
242
|
-
| TagResourceCommandInput
|
|
243
|
-
| UntagResourceCommandInput
|
|
244
|
-
| UpdateAccountSettingsCommandInput
|
|
245
|
-
| UpdateEnvironmentAccountConnectionCommandInput
|
|
246
|
-
| UpdateEnvironmentCommandInput
|
|
247
|
-
| UpdateEnvironmentTemplateCommandInput
|
|
248
|
-
| UpdateEnvironmentTemplateVersionCommandInput
|
|
249
|
-
| UpdateServiceCommandInput
|
|
250
|
-
| UpdateServiceInstanceCommandInput
|
|
251
|
-
| UpdateServicePipelineCommandInput
|
|
252
|
-
| UpdateServiceTemplateCommandInput
|
|
253
|
-
| UpdateServiceTemplateVersionCommandInput;
|
|
254
|
-
|
|
255
|
-
export type ServiceOutputTypes =
|
|
256
|
-
| AcceptEnvironmentAccountConnectionCommandOutput
|
|
257
|
-
| CancelEnvironmentDeploymentCommandOutput
|
|
258
|
-
| CancelServiceInstanceDeploymentCommandOutput
|
|
259
|
-
| CancelServicePipelineDeploymentCommandOutput
|
|
260
|
-
| CreateEnvironmentAccountConnectionCommandOutput
|
|
261
|
-
| CreateEnvironmentCommandOutput
|
|
262
|
-
| CreateEnvironmentTemplateCommandOutput
|
|
263
|
-
| CreateEnvironmentTemplateVersionCommandOutput
|
|
264
|
-
| CreateServiceCommandOutput
|
|
265
|
-
| CreateServiceTemplateCommandOutput
|
|
266
|
-
| CreateServiceTemplateVersionCommandOutput
|
|
267
|
-
| DeleteEnvironmentAccountConnectionCommandOutput
|
|
268
|
-
| DeleteEnvironmentCommandOutput
|
|
269
|
-
| DeleteEnvironmentTemplateCommandOutput
|
|
270
|
-
| DeleteEnvironmentTemplateVersionCommandOutput
|
|
271
|
-
| DeleteServiceCommandOutput
|
|
272
|
-
| DeleteServiceTemplateCommandOutput
|
|
273
|
-
| DeleteServiceTemplateVersionCommandOutput
|
|
274
|
-
| GetAccountSettingsCommandOutput
|
|
275
|
-
| GetEnvironmentAccountConnectionCommandOutput
|
|
276
|
-
| GetEnvironmentCommandOutput
|
|
277
|
-
| GetEnvironmentTemplateCommandOutput
|
|
278
|
-
| GetEnvironmentTemplateVersionCommandOutput
|
|
279
|
-
| GetServiceCommandOutput
|
|
280
|
-
| GetServiceInstanceCommandOutput
|
|
281
|
-
| GetServiceTemplateCommandOutput
|
|
282
|
-
| GetServiceTemplateVersionCommandOutput
|
|
283
|
-
| ListEnvironmentAccountConnectionsCommandOutput
|
|
284
|
-
| ListEnvironmentTemplateVersionsCommandOutput
|
|
285
|
-
| ListEnvironmentTemplatesCommandOutput
|
|
286
|
-
| ListEnvironmentsCommandOutput
|
|
287
|
-
| ListServiceInstancesCommandOutput
|
|
288
|
-
| ListServiceTemplateVersionsCommandOutput
|
|
289
|
-
| ListServiceTemplatesCommandOutput
|
|
290
|
-
| ListServicesCommandOutput
|
|
291
|
-
| ListTagsForResourceCommandOutput
|
|
292
|
-
| RejectEnvironmentAccountConnectionCommandOutput
|
|
293
|
-
| TagResourceCommandOutput
|
|
294
|
-
| UntagResourceCommandOutput
|
|
295
|
-
| UpdateAccountSettingsCommandOutput
|
|
296
|
-
| UpdateEnvironmentAccountConnectionCommandOutput
|
|
297
|
-
| UpdateEnvironmentCommandOutput
|
|
298
|
-
| UpdateEnvironmentTemplateCommandOutput
|
|
299
|
-
| UpdateEnvironmentTemplateVersionCommandOutput
|
|
300
|
-
| UpdateServiceCommandOutput
|
|
301
|
-
| UpdateServiceInstanceCommandOutput
|
|
302
|
-
| UpdateServicePipelineCommandOutput
|
|
303
|
-
| UpdateServiceTemplateCommandOutput
|
|
304
|
-
| UpdateServiceTemplateVersionCommandOutput;
|
|
305
|
-
|
|
306
|
-
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
307
|
-
/**
|
|
308
|
-
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
309
|
-
*/
|
|
310
|
-
requestHandler?: __HttpHandler;
|
|
311
|
-
|
|
312
|
-
/**
|
|
313
|
-
* A constructor for a class implementing the {@link __Hash} interface
|
|
314
|
-
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
315
|
-
* @internal
|
|
316
|
-
*/
|
|
317
|
-
sha256?: __HashConstructor;
|
|
318
|
-
|
|
319
|
-
/**
|
|
320
|
-
* The function that will be used to convert strings into HTTP endpoints.
|
|
321
|
-
* @internal
|
|
322
|
-
*/
|
|
323
|
-
urlParser?: __UrlParser;
|
|
324
|
-
|
|
325
|
-
/**
|
|
326
|
-
* A function that can calculate the length of a request body.
|
|
327
|
-
* @internal
|
|
328
|
-
*/
|
|
329
|
-
bodyLengthChecker?: (body: any) => number | undefined;
|
|
330
|
-
|
|
331
|
-
/**
|
|
332
|
-
* A function that converts a stream into an array of bytes.
|
|
333
|
-
* @internal
|
|
334
|
-
*/
|
|
335
|
-
streamCollector?: __StreamCollector;
|
|
336
|
-
|
|
337
|
-
/**
|
|
338
|
-
* The function that will be used to convert a base64-encoded string to a byte array.
|
|
339
|
-
* @internal
|
|
340
|
-
*/
|
|
341
|
-
base64Decoder?: __Decoder;
|
|
342
|
-
|
|
343
|
-
/**
|
|
344
|
-
* The function that will be used to convert binary data to a base64-encoded string.
|
|
345
|
-
* @internal
|
|
346
|
-
*/
|
|
347
|
-
base64Encoder?: __Encoder;
|
|
348
|
-
|
|
349
|
-
/**
|
|
350
|
-
* The function that will be used to convert a UTF8-encoded string to a byte array.
|
|
351
|
-
* @internal
|
|
352
|
-
*/
|
|
353
|
-
utf8Decoder?: __Decoder;
|
|
354
|
-
|
|
355
|
-
/**
|
|
356
|
-
* The function that will be used to convert binary data to a UTF-8 encoded string.
|
|
357
|
-
* @internal
|
|
358
|
-
*/
|
|
359
|
-
utf8Encoder?: __Encoder;
|
|
360
|
-
|
|
361
|
-
/**
|
|
362
|
-
* The runtime environment.
|
|
363
|
-
* @internal
|
|
364
|
-
*/
|
|
365
|
-
runtime?: string;
|
|
366
|
-
|
|
367
|
-
/**
|
|
368
|
-
* Disable dyanamically changing the endpoint of the client based on the hostPrefix
|
|
369
|
-
* trait of an operation.
|
|
370
|
-
*/
|
|
371
|
-
disableHostPrefix?: boolean;
|
|
372
|
-
|
|
373
|
-
/**
|
|
374
|
-
* Value for how many times a request will be made at most in case of retry.
|
|
375
|
-
*/
|
|
376
|
-
maxAttempts?: number | __Provider<number>;
|
|
377
|
-
|
|
378
|
-
/**
|
|
379
|
-
* Specifies which retry algorithm to use.
|
|
380
|
-
*/
|
|
381
|
-
retryMode?: string | __Provider<string>;
|
|
382
|
-
|
|
383
|
-
/**
|
|
384
|
-
* Optional logger for logging debug/info/warn/error.
|
|
385
|
-
*/
|
|
386
|
-
logger?: __Logger;
|
|
387
|
-
|
|
388
|
-
/**
|
|
389
|
-
* Unique service identifier.
|
|
390
|
-
* @internal
|
|
391
|
-
*/
|
|
392
|
-
serviceId?: string;
|
|
393
|
-
|
|
394
|
-
/**
|
|
395
|
-
* The AWS region to which this client will send requests
|
|
396
|
-
*/
|
|
397
|
-
region?: string | __Provider<string>;
|
|
398
|
-
|
|
399
|
-
/**
|
|
400
|
-
* Default credentials provider; Not available in browser runtime.
|
|
401
|
-
* @internal
|
|
402
|
-
*/
|
|
403
|
-
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
404
|
-
|
|
405
|
-
/**
|
|
406
|
-
* Fetch related hostname, signing name or signing region with given region.
|
|
407
|
-
* @internal
|
|
408
|
-
*/
|
|
409
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
410
|
-
|
|
411
|
-
/**
|
|
412
|
-
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
413
|
-
* @internal
|
|
414
|
-
*/
|
|
415
|
-
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
type ProtonClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
419
|
-
ClientDefaults &
|
|
420
|
-
RegionInputConfig &
|
|
421
|
-
EndpointsInputConfig &
|
|
422
|
-
RetryInputConfig &
|
|
423
|
-
HostHeaderInputConfig &
|
|
424
|
-
AwsAuthInputConfig &
|
|
425
|
-
UserAgentInputConfig;
|
|
426
|
-
/**
|
|
427
|
-
* The configuration interface of ProtonClient class constructor that set the region, credentials and other options.
|
|
428
|
-
*/
|
|
429
|
-
export interface ProtonClientConfig extends ProtonClientConfigType {}
|
|
430
|
-
|
|
431
|
-
type ProtonClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
432
|
-
Required<ClientDefaults> &
|
|
433
|
-
RegionResolvedConfig &
|
|
434
|
-
EndpointsResolvedConfig &
|
|
435
|
-
RetryResolvedConfig &
|
|
436
|
-
HostHeaderResolvedConfig &
|
|
437
|
-
AwsAuthResolvedConfig &
|
|
438
|
-
UserAgentResolvedConfig;
|
|
439
|
-
/**
|
|
440
|
-
* The resolved configuration interface of ProtonClient class. This is resolved and normalized from the {@link ProtonClientConfig | constructor configuration interface}.
|
|
441
|
-
*/
|
|
442
|
-
export interface ProtonClientResolvedConfig extends ProtonClientResolvedConfigType {}
|
|
443
|
-
|
|
444
|
-
/**
|
|
445
|
-
* <p>This is the AWS Proton Service API Reference. It provides descriptions, syntax and usage examples for each of the <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Operations.html">actions</a> and <a href="https://docs.aws.amazon.com/proton/latest/APIReference/API_Types.html">data types</a> for the AWS Proton service.</p>
|
|
446
|
-
* <p>The documentation for each action shows the Query API request parameters and the XML response.</p>
|
|
447
|
-
* <p>Alternatively, you can use the AWS CLI to access an API. For more information, see the <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html">AWS Command Line Interface User Guide</a>.</p>
|
|
448
|
-
* <p>The AWS Proton service is a two-pronged automation framework. Administrators create service templates to provide standardized
|
|
449
|
-
* infrastructure and deployment tooling for serverless and container based applications. Developers, in turn, select from the available
|
|
450
|
-
* service templates to automate their application or service deployments.</p>
|
|
451
|
-
* <p>Because administrators define the infrastructure and tooling that AWS Proton deploys and manages, they need permissions to use all of the
|
|
452
|
-
* listed API operations.</p>
|
|
453
|
-
* <p>When developers select a specific infrastructure and tooling set, AWS Proton deploys their applications. To monitor their applications
|
|
454
|
-
* that are running on AWS Proton, developers need permissions to the service <i>create</i>, <i>list</i>,
|
|
455
|
-
* <i>update</i> and <i>delete</i> API operations and the service instance <i>list</i> and
|
|
456
|
-
* <i>update</i> API operations.</p>
|
|
457
|
-
* <p>To learn more about AWS Proton administration, see the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/Welcome.html">AWS Proton
|
|
458
|
-
* Administrator Guide</a>.</p>
|
|
459
|
-
* <p>To learn more about deploying serverless and containerized applications on AWS Proton, see the <a href="https://docs.aws.amazon.com/proton/latest/userguide/Welcome.html">AWS Proton User Guide</a>.</p>
|
|
460
|
-
* <p>
|
|
461
|
-
* <b>Ensuring Idempotency</b>
|
|
462
|
-
* </p>
|
|
463
|
-
* <p>When you make a mutating API request, the request typically returns a result before the asynchronous workflows of the operation are
|
|
464
|
-
* complete. Operations might also time out or encounter other server issues before they're complete, even if the request already returned a
|
|
465
|
-
* result. This might make it difficult to determine whether the request succeeded. Moreover, you might need to retry the request multiple
|
|
466
|
-
* times to ensure that the operation completes successfully. However, if the original request and the subsequent retries are successful, the
|
|
467
|
-
* operation occurs multiple times. This means that you might create more resources than you intended.</p>
|
|
468
|
-
* <p>
|
|
469
|
-
* <i>Idempotency</i> ensures that an API request action completes no more than one time. With an idempotent request, if the
|
|
470
|
-
* original request action completes successfully, any subsequent retries complete successfully without performing any further actions.
|
|
471
|
-
* However, the result might contain updated information, such as the current creation status.</p>
|
|
472
|
-
* <p>The following lists of APIs are grouped according to methods that ensure idempotency.</p>
|
|
473
|
-
* <p>
|
|
474
|
-
* <b>Idempotent create APIs with a client token</b>
|
|
475
|
-
* </p>
|
|
476
|
-
* <p>The API actions in this list support idempotency with the use of a <i>client token</i>. The corresponding AWS CLI
|
|
477
|
-
* commands also support idempotency using a client token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. To
|
|
478
|
-
* make an idempotent API request using one of these actions, specify a client token in the request. We recommend that you
|
|
479
|
-
* <i>don't</i> reuse the same client token for other API requests. If you don’t provide a client token for these APIs, a
|
|
480
|
-
* default client token is automatically provided by SDKs.</p>
|
|
481
|
-
* <p>Given a request action that has succeeded:</p>
|
|
482
|
-
* <p>If you retry the request using the same client token and the same parameters, the retry succeeds without performing any further actions
|
|
483
|
-
* other than returning the original resource detail data in the response.</p>
|
|
484
|
-
* <p>If you retry the request using the same client token, but one or more of the parameters are different, the retry throws a
|
|
485
|
-
* <code>ValidationException</code> with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
486
|
-
* <p>Client tokens expire eight hours after a request is made. If you retry the request with the expired token, a new resource is
|
|
487
|
-
* created.</p>
|
|
488
|
-
* <p>If the original resource is deleted and you retry the request, a new resource is created.</p>
|
|
489
|
-
* <p>Idempotent create APIs with a client token:</p>
|
|
490
|
-
* <ul>
|
|
491
|
-
* <li>
|
|
492
|
-
* <p>CreateEnvironmentTemplateVersion</p>
|
|
493
|
-
* </li>
|
|
494
|
-
* <li>
|
|
495
|
-
* <p>CreateServiceTemplateVersion</p>
|
|
496
|
-
* </li>
|
|
497
|
-
* <li>
|
|
498
|
-
* <p>CreateEnvironmentAccountConnection</p>
|
|
499
|
-
* </li>
|
|
500
|
-
* </ul>
|
|
501
|
-
* <p>
|
|
502
|
-
* <b>Idempotent create APIs</b>
|
|
503
|
-
* </p>
|
|
504
|
-
* <p>Given a request action that has succeeded:</p>
|
|
505
|
-
* <p>If you retry the request with an API from this group, and the original resource <i>hasn't</i> been modified, the retry
|
|
506
|
-
* succeeds without performing any further actions other than returning the original resource detail data in the response.</p>
|
|
507
|
-
* <p>If the original resource has been modified, the retry throws a <code>ConflictException</code>.</p>
|
|
508
|
-
* <p>If you retry with different input parameters, the retry throws a <code>ValidationException</code> with an
|
|
509
|
-
* <code>IdempotentParameterMismatch</code> error.</p>
|
|
510
|
-
* <p>Idempotent create APIs:</p>
|
|
511
|
-
* <ul>
|
|
512
|
-
* <li>
|
|
513
|
-
* <p>CreateEnvironmentTemplate</p>
|
|
514
|
-
* </li>
|
|
515
|
-
* <li>
|
|
516
|
-
* <p>CreateServiceTemplate</p>
|
|
517
|
-
* </li>
|
|
518
|
-
* <li>
|
|
519
|
-
* <p>CreateEnvironment</p>
|
|
520
|
-
* </li>
|
|
521
|
-
* <li>
|
|
522
|
-
* <p>CreateService</p>
|
|
523
|
-
* </li>
|
|
524
|
-
* </ul>
|
|
525
|
-
* <p>
|
|
526
|
-
* <b>Idempotent delete APIs</b>
|
|
527
|
-
* </p>
|
|
528
|
-
* <p>Given a request action that has succeeded:</p>
|
|
529
|
-
* <p>When you retry the request with an API from this group and the resource was deleted, its metadata is returned in the response.</p>
|
|
530
|
-
* <p>If you retry and the resource doesn't exist, the response is empty.</p>
|
|
531
|
-
* <p>In both cases, the retry succeeds.</p>
|
|
532
|
-
* <p>Idempotent delete APIs:</p>
|
|
533
|
-
* <ul>
|
|
534
|
-
* <li>
|
|
535
|
-
* <p>DeleteEnvironmentTemplate</p>
|
|
536
|
-
* </li>
|
|
537
|
-
* <li>
|
|
538
|
-
* <p>DeleteEnvironmentTemplateVersion</p>
|
|
539
|
-
* </li>
|
|
540
|
-
* <li>
|
|
541
|
-
* <p>DeleteServiceTemplate</p>
|
|
542
|
-
* </li>
|
|
543
|
-
* <li>
|
|
544
|
-
* <p>DeleteServiceTemplateVersion</p>
|
|
545
|
-
* </li>
|
|
546
|
-
* <li>
|
|
547
|
-
* <p>DeleteEnvironmentAccountConnection</p>
|
|
548
|
-
* </li>
|
|
549
|
-
* </ul>
|
|
550
|
-
* <p>
|
|
551
|
-
* <b>Asynchronous idempotent delete APIs</b>
|
|
552
|
-
* </p>
|
|
553
|
-
* <p>Given a request action that has succeeded:</p>
|
|
554
|
-
* <p>If you retry the request with an API from this group, if the original request delete operation status is
|
|
555
|
-
* <code>DELETE_IN_PROGRESS</code>, the retry returns the resource detail data in the response without performing any further actions.</p>
|
|
556
|
-
* <p>If the original request delete operation is complete, a retry returns an empty response.</p>
|
|
557
|
-
* <p>Asynchronous idempotent delete APIs:</p>
|
|
558
|
-
* <ul>
|
|
559
|
-
* <li>
|
|
560
|
-
* <p>DeleteEnvironment</p>
|
|
561
|
-
* </li>
|
|
562
|
-
* <li>
|
|
563
|
-
* <p>DeleteService</p>
|
|
564
|
-
* </li>
|
|
565
|
-
* </ul>
|
|
566
|
-
*/
|
|
567
|
-
export class ProtonClient extends __Client<
|
|
568
|
-
__HttpHandlerOptions,
|
|
569
|
-
ServiceInputTypes,
|
|
570
|
-
ServiceOutputTypes,
|
|
571
|
-
ProtonClientResolvedConfig
|
|
572
|
-
> {
|
|
573
|
-
/**
|
|
574
|
-
* The resolved configuration of ProtonClient class. This is resolved and normalized from the {@link ProtonClientConfig | constructor configuration interface}.
|
|
575
|
-
*/
|
|
576
|
-
readonly config: ProtonClientResolvedConfig;
|
|
577
|
-
|
|
578
|
-
constructor(configuration: ProtonClientConfig) {
|
|
579
|
-
let _config_0 = __getRuntimeConfig(configuration);
|
|
580
|
-
let _config_1 = resolveRegionConfig(_config_0);
|
|
581
|
-
let _config_2 = resolveEndpointsConfig(_config_1);
|
|
582
|
-
let _config_3 = resolveRetryConfig(_config_2);
|
|
583
|
-
let _config_4 = resolveHostHeaderConfig(_config_3);
|
|
584
|
-
let _config_5 = resolveAwsAuthConfig(_config_4);
|
|
585
|
-
let _config_6 = resolveUserAgentConfig(_config_5);
|
|
586
|
-
super(_config_6);
|
|
587
|
-
this.config = _config_6;
|
|
588
|
-
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
589
|
-
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
590
|
-
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
591
|
-
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
592
|
-
this.middlewareStack.use(getAwsAuthPlugin(this.config));
|
|
593
|
-
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
/**
|
|
597
|
-
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
598
|
-
* However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
|
|
599
|
-
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
600
|
-
*/
|
|
601
|
-
destroy(): void {
|
|
602
|
-
super.destroy();
|
|
603
|
-
}
|
|
604
|
-
}
|