@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/Proton.ts
DELETED
|
@@ -1,2151 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "./ProtonClient";
|
|
2
|
-
import {
|
|
3
|
-
AcceptEnvironmentAccountConnectionCommand,
|
|
4
|
-
AcceptEnvironmentAccountConnectionCommandInput,
|
|
5
|
-
AcceptEnvironmentAccountConnectionCommandOutput,
|
|
6
|
-
} from "./commands/AcceptEnvironmentAccountConnectionCommand";
|
|
7
|
-
import {
|
|
8
|
-
CancelEnvironmentDeploymentCommand,
|
|
9
|
-
CancelEnvironmentDeploymentCommandInput,
|
|
10
|
-
CancelEnvironmentDeploymentCommandOutput,
|
|
11
|
-
} from "./commands/CancelEnvironmentDeploymentCommand";
|
|
12
|
-
import {
|
|
13
|
-
CancelServiceInstanceDeploymentCommand,
|
|
14
|
-
CancelServiceInstanceDeploymentCommandInput,
|
|
15
|
-
CancelServiceInstanceDeploymentCommandOutput,
|
|
16
|
-
} from "./commands/CancelServiceInstanceDeploymentCommand";
|
|
17
|
-
import {
|
|
18
|
-
CancelServicePipelineDeploymentCommand,
|
|
19
|
-
CancelServicePipelineDeploymentCommandInput,
|
|
20
|
-
CancelServicePipelineDeploymentCommandOutput,
|
|
21
|
-
} from "./commands/CancelServicePipelineDeploymentCommand";
|
|
22
|
-
import {
|
|
23
|
-
CreateEnvironmentAccountConnectionCommand,
|
|
24
|
-
CreateEnvironmentAccountConnectionCommandInput,
|
|
25
|
-
CreateEnvironmentAccountConnectionCommandOutput,
|
|
26
|
-
} from "./commands/CreateEnvironmentAccountConnectionCommand";
|
|
27
|
-
import {
|
|
28
|
-
CreateEnvironmentCommand,
|
|
29
|
-
CreateEnvironmentCommandInput,
|
|
30
|
-
CreateEnvironmentCommandOutput,
|
|
31
|
-
} from "./commands/CreateEnvironmentCommand";
|
|
32
|
-
import {
|
|
33
|
-
CreateEnvironmentTemplateCommand,
|
|
34
|
-
CreateEnvironmentTemplateCommandInput,
|
|
35
|
-
CreateEnvironmentTemplateCommandOutput,
|
|
36
|
-
} from "./commands/CreateEnvironmentTemplateCommand";
|
|
37
|
-
import {
|
|
38
|
-
CreateEnvironmentTemplateVersionCommand,
|
|
39
|
-
CreateEnvironmentTemplateVersionCommandInput,
|
|
40
|
-
CreateEnvironmentTemplateVersionCommandOutput,
|
|
41
|
-
} from "./commands/CreateEnvironmentTemplateVersionCommand";
|
|
42
|
-
import {
|
|
43
|
-
CreateServiceCommand,
|
|
44
|
-
CreateServiceCommandInput,
|
|
45
|
-
CreateServiceCommandOutput,
|
|
46
|
-
} from "./commands/CreateServiceCommand";
|
|
47
|
-
import {
|
|
48
|
-
CreateServiceTemplateCommand,
|
|
49
|
-
CreateServiceTemplateCommandInput,
|
|
50
|
-
CreateServiceTemplateCommandOutput,
|
|
51
|
-
} from "./commands/CreateServiceTemplateCommand";
|
|
52
|
-
import {
|
|
53
|
-
CreateServiceTemplateVersionCommand,
|
|
54
|
-
CreateServiceTemplateVersionCommandInput,
|
|
55
|
-
CreateServiceTemplateVersionCommandOutput,
|
|
56
|
-
} from "./commands/CreateServiceTemplateVersionCommand";
|
|
57
|
-
import {
|
|
58
|
-
DeleteEnvironmentAccountConnectionCommand,
|
|
59
|
-
DeleteEnvironmentAccountConnectionCommandInput,
|
|
60
|
-
DeleteEnvironmentAccountConnectionCommandOutput,
|
|
61
|
-
} from "./commands/DeleteEnvironmentAccountConnectionCommand";
|
|
62
|
-
import {
|
|
63
|
-
DeleteEnvironmentCommand,
|
|
64
|
-
DeleteEnvironmentCommandInput,
|
|
65
|
-
DeleteEnvironmentCommandOutput,
|
|
66
|
-
} from "./commands/DeleteEnvironmentCommand";
|
|
67
|
-
import {
|
|
68
|
-
DeleteEnvironmentTemplateCommand,
|
|
69
|
-
DeleteEnvironmentTemplateCommandInput,
|
|
70
|
-
DeleteEnvironmentTemplateCommandOutput,
|
|
71
|
-
} from "./commands/DeleteEnvironmentTemplateCommand";
|
|
72
|
-
import {
|
|
73
|
-
DeleteEnvironmentTemplateVersionCommand,
|
|
74
|
-
DeleteEnvironmentTemplateVersionCommandInput,
|
|
75
|
-
DeleteEnvironmentTemplateVersionCommandOutput,
|
|
76
|
-
} from "./commands/DeleteEnvironmentTemplateVersionCommand";
|
|
77
|
-
import {
|
|
78
|
-
DeleteServiceCommand,
|
|
79
|
-
DeleteServiceCommandInput,
|
|
80
|
-
DeleteServiceCommandOutput,
|
|
81
|
-
} from "./commands/DeleteServiceCommand";
|
|
82
|
-
import {
|
|
83
|
-
DeleteServiceTemplateCommand,
|
|
84
|
-
DeleteServiceTemplateCommandInput,
|
|
85
|
-
DeleteServiceTemplateCommandOutput,
|
|
86
|
-
} from "./commands/DeleteServiceTemplateCommand";
|
|
87
|
-
import {
|
|
88
|
-
DeleteServiceTemplateVersionCommand,
|
|
89
|
-
DeleteServiceTemplateVersionCommandInput,
|
|
90
|
-
DeleteServiceTemplateVersionCommandOutput,
|
|
91
|
-
} from "./commands/DeleteServiceTemplateVersionCommand";
|
|
92
|
-
import {
|
|
93
|
-
GetAccountSettingsCommand,
|
|
94
|
-
GetAccountSettingsCommandInput,
|
|
95
|
-
GetAccountSettingsCommandOutput,
|
|
96
|
-
} from "./commands/GetAccountSettingsCommand";
|
|
97
|
-
import {
|
|
98
|
-
GetEnvironmentAccountConnectionCommand,
|
|
99
|
-
GetEnvironmentAccountConnectionCommandInput,
|
|
100
|
-
GetEnvironmentAccountConnectionCommandOutput,
|
|
101
|
-
} from "./commands/GetEnvironmentAccountConnectionCommand";
|
|
102
|
-
import {
|
|
103
|
-
GetEnvironmentCommand,
|
|
104
|
-
GetEnvironmentCommandInput,
|
|
105
|
-
GetEnvironmentCommandOutput,
|
|
106
|
-
} from "./commands/GetEnvironmentCommand";
|
|
107
|
-
import {
|
|
108
|
-
GetEnvironmentTemplateCommand,
|
|
109
|
-
GetEnvironmentTemplateCommandInput,
|
|
110
|
-
GetEnvironmentTemplateCommandOutput,
|
|
111
|
-
} from "./commands/GetEnvironmentTemplateCommand";
|
|
112
|
-
import {
|
|
113
|
-
GetEnvironmentTemplateVersionCommand,
|
|
114
|
-
GetEnvironmentTemplateVersionCommandInput,
|
|
115
|
-
GetEnvironmentTemplateVersionCommandOutput,
|
|
116
|
-
} from "./commands/GetEnvironmentTemplateVersionCommand";
|
|
117
|
-
import { GetServiceCommand, GetServiceCommandInput, GetServiceCommandOutput } from "./commands/GetServiceCommand";
|
|
118
|
-
import {
|
|
119
|
-
GetServiceInstanceCommand,
|
|
120
|
-
GetServiceInstanceCommandInput,
|
|
121
|
-
GetServiceInstanceCommandOutput,
|
|
122
|
-
} from "./commands/GetServiceInstanceCommand";
|
|
123
|
-
import {
|
|
124
|
-
GetServiceTemplateCommand,
|
|
125
|
-
GetServiceTemplateCommandInput,
|
|
126
|
-
GetServiceTemplateCommandOutput,
|
|
127
|
-
} from "./commands/GetServiceTemplateCommand";
|
|
128
|
-
import {
|
|
129
|
-
GetServiceTemplateVersionCommand,
|
|
130
|
-
GetServiceTemplateVersionCommandInput,
|
|
131
|
-
GetServiceTemplateVersionCommandOutput,
|
|
132
|
-
} from "./commands/GetServiceTemplateVersionCommand";
|
|
133
|
-
import {
|
|
134
|
-
ListEnvironmentAccountConnectionsCommand,
|
|
135
|
-
ListEnvironmentAccountConnectionsCommandInput,
|
|
136
|
-
ListEnvironmentAccountConnectionsCommandOutput,
|
|
137
|
-
} from "./commands/ListEnvironmentAccountConnectionsCommand";
|
|
138
|
-
import {
|
|
139
|
-
ListEnvironmentTemplateVersionsCommand,
|
|
140
|
-
ListEnvironmentTemplateVersionsCommandInput,
|
|
141
|
-
ListEnvironmentTemplateVersionsCommandOutput,
|
|
142
|
-
} from "./commands/ListEnvironmentTemplateVersionsCommand";
|
|
143
|
-
import {
|
|
144
|
-
ListEnvironmentTemplatesCommand,
|
|
145
|
-
ListEnvironmentTemplatesCommandInput,
|
|
146
|
-
ListEnvironmentTemplatesCommandOutput,
|
|
147
|
-
} from "./commands/ListEnvironmentTemplatesCommand";
|
|
148
|
-
import {
|
|
149
|
-
ListEnvironmentsCommand,
|
|
150
|
-
ListEnvironmentsCommandInput,
|
|
151
|
-
ListEnvironmentsCommandOutput,
|
|
152
|
-
} from "./commands/ListEnvironmentsCommand";
|
|
153
|
-
import {
|
|
154
|
-
ListServiceInstancesCommand,
|
|
155
|
-
ListServiceInstancesCommandInput,
|
|
156
|
-
ListServiceInstancesCommandOutput,
|
|
157
|
-
} from "./commands/ListServiceInstancesCommand";
|
|
158
|
-
import {
|
|
159
|
-
ListServiceTemplateVersionsCommand,
|
|
160
|
-
ListServiceTemplateVersionsCommandInput,
|
|
161
|
-
ListServiceTemplateVersionsCommandOutput,
|
|
162
|
-
} from "./commands/ListServiceTemplateVersionsCommand";
|
|
163
|
-
import {
|
|
164
|
-
ListServiceTemplatesCommand,
|
|
165
|
-
ListServiceTemplatesCommandInput,
|
|
166
|
-
ListServiceTemplatesCommandOutput,
|
|
167
|
-
} from "./commands/ListServiceTemplatesCommand";
|
|
168
|
-
import {
|
|
169
|
-
ListServicesCommand,
|
|
170
|
-
ListServicesCommandInput,
|
|
171
|
-
ListServicesCommandOutput,
|
|
172
|
-
} from "./commands/ListServicesCommand";
|
|
173
|
-
import {
|
|
174
|
-
ListTagsForResourceCommand,
|
|
175
|
-
ListTagsForResourceCommandInput,
|
|
176
|
-
ListTagsForResourceCommandOutput,
|
|
177
|
-
} from "./commands/ListTagsForResourceCommand";
|
|
178
|
-
import {
|
|
179
|
-
RejectEnvironmentAccountConnectionCommand,
|
|
180
|
-
RejectEnvironmentAccountConnectionCommandInput,
|
|
181
|
-
RejectEnvironmentAccountConnectionCommandOutput,
|
|
182
|
-
} from "./commands/RejectEnvironmentAccountConnectionCommand";
|
|
183
|
-
import { TagResourceCommand, TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
184
|
-
import {
|
|
185
|
-
UntagResourceCommand,
|
|
186
|
-
UntagResourceCommandInput,
|
|
187
|
-
UntagResourceCommandOutput,
|
|
188
|
-
} from "./commands/UntagResourceCommand";
|
|
189
|
-
import {
|
|
190
|
-
UpdateAccountSettingsCommand,
|
|
191
|
-
UpdateAccountSettingsCommandInput,
|
|
192
|
-
UpdateAccountSettingsCommandOutput,
|
|
193
|
-
} from "./commands/UpdateAccountSettingsCommand";
|
|
194
|
-
import {
|
|
195
|
-
UpdateEnvironmentAccountConnectionCommand,
|
|
196
|
-
UpdateEnvironmentAccountConnectionCommandInput,
|
|
197
|
-
UpdateEnvironmentAccountConnectionCommandOutput,
|
|
198
|
-
} from "./commands/UpdateEnvironmentAccountConnectionCommand";
|
|
199
|
-
import {
|
|
200
|
-
UpdateEnvironmentCommand,
|
|
201
|
-
UpdateEnvironmentCommandInput,
|
|
202
|
-
UpdateEnvironmentCommandOutput,
|
|
203
|
-
} from "./commands/UpdateEnvironmentCommand";
|
|
204
|
-
import {
|
|
205
|
-
UpdateEnvironmentTemplateCommand,
|
|
206
|
-
UpdateEnvironmentTemplateCommandInput,
|
|
207
|
-
UpdateEnvironmentTemplateCommandOutput,
|
|
208
|
-
} from "./commands/UpdateEnvironmentTemplateCommand";
|
|
209
|
-
import {
|
|
210
|
-
UpdateEnvironmentTemplateVersionCommand,
|
|
211
|
-
UpdateEnvironmentTemplateVersionCommandInput,
|
|
212
|
-
UpdateEnvironmentTemplateVersionCommandOutput,
|
|
213
|
-
} from "./commands/UpdateEnvironmentTemplateVersionCommand";
|
|
214
|
-
import {
|
|
215
|
-
UpdateServiceCommand,
|
|
216
|
-
UpdateServiceCommandInput,
|
|
217
|
-
UpdateServiceCommandOutput,
|
|
218
|
-
} from "./commands/UpdateServiceCommand";
|
|
219
|
-
import {
|
|
220
|
-
UpdateServiceInstanceCommand,
|
|
221
|
-
UpdateServiceInstanceCommandInput,
|
|
222
|
-
UpdateServiceInstanceCommandOutput,
|
|
223
|
-
} from "./commands/UpdateServiceInstanceCommand";
|
|
224
|
-
import {
|
|
225
|
-
UpdateServicePipelineCommand,
|
|
226
|
-
UpdateServicePipelineCommandInput,
|
|
227
|
-
UpdateServicePipelineCommandOutput,
|
|
228
|
-
} from "./commands/UpdateServicePipelineCommand";
|
|
229
|
-
import {
|
|
230
|
-
UpdateServiceTemplateCommand,
|
|
231
|
-
UpdateServiceTemplateCommandInput,
|
|
232
|
-
UpdateServiceTemplateCommandOutput,
|
|
233
|
-
} from "./commands/UpdateServiceTemplateCommand";
|
|
234
|
-
import {
|
|
235
|
-
UpdateServiceTemplateVersionCommand,
|
|
236
|
-
UpdateServiceTemplateVersionCommandInput,
|
|
237
|
-
UpdateServiceTemplateVersionCommandOutput,
|
|
238
|
-
} from "./commands/UpdateServiceTemplateVersionCommand";
|
|
239
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
240
|
-
|
|
241
|
-
/**
|
|
242
|
-
* <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>
|
|
243
|
-
* <p>The documentation for each action shows the Query API request parameters and the XML response.</p>
|
|
244
|
-
* <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>
|
|
245
|
-
* <p>The AWS Proton service is a two-pronged automation framework. Administrators create service templates to provide standardized
|
|
246
|
-
* infrastructure and deployment tooling for serverless and container based applications. Developers, in turn, select from the available
|
|
247
|
-
* service templates to automate their application or service deployments.</p>
|
|
248
|
-
* <p>Because administrators define the infrastructure and tooling that AWS Proton deploys and manages, they need permissions to use all of the
|
|
249
|
-
* listed API operations.</p>
|
|
250
|
-
* <p>When developers select a specific infrastructure and tooling set, AWS Proton deploys their applications. To monitor their applications
|
|
251
|
-
* that are running on AWS Proton, developers need permissions to the service <i>create</i>, <i>list</i>,
|
|
252
|
-
* <i>update</i> and <i>delete</i> API operations and the service instance <i>list</i> and
|
|
253
|
-
* <i>update</i> API operations.</p>
|
|
254
|
-
* <p>To learn more about AWS Proton administration, see the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/Welcome.html">AWS Proton
|
|
255
|
-
* Administrator Guide</a>.</p>
|
|
256
|
-
* <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>
|
|
257
|
-
* <p>
|
|
258
|
-
* <b>Ensuring Idempotency</b>
|
|
259
|
-
* </p>
|
|
260
|
-
* <p>When you make a mutating API request, the request typically returns a result before the asynchronous workflows of the operation are
|
|
261
|
-
* complete. Operations might also time out or encounter other server issues before they're complete, even if the request already returned a
|
|
262
|
-
* result. This might make it difficult to determine whether the request succeeded. Moreover, you might need to retry the request multiple
|
|
263
|
-
* times to ensure that the operation completes successfully. However, if the original request and the subsequent retries are successful, the
|
|
264
|
-
* operation occurs multiple times. This means that you might create more resources than you intended.</p>
|
|
265
|
-
* <p>
|
|
266
|
-
* <i>Idempotency</i> ensures that an API request action completes no more than one time. With an idempotent request, if the
|
|
267
|
-
* original request action completes successfully, any subsequent retries complete successfully without performing any further actions.
|
|
268
|
-
* However, the result might contain updated information, such as the current creation status.</p>
|
|
269
|
-
* <p>The following lists of APIs are grouped according to methods that ensure idempotency.</p>
|
|
270
|
-
* <p>
|
|
271
|
-
* <b>Idempotent create APIs with a client token</b>
|
|
272
|
-
* </p>
|
|
273
|
-
* <p>The API actions in this list support idempotency with the use of a <i>client token</i>. The corresponding AWS CLI
|
|
274
|
-
* commands also support idempotency using a client token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. To
|
|
275
|
-
* make an idempotent API request using one of these actions, specify a client token in the request. We recommend that you
|
|
276
|
-
* <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
|
|
277
|
-
* default client token is automatically provided by SDKs.</p>
|
|
278
|
-
* <p>Given a request action that has succeeded:</p>
|
|
279
|
-
* <p>If you retry the request using the same client token and the same parameters, the retry succeeds without performing any further actions
|
|
280
|
-
* other than returning the original resource detail data in the response.</p>
|
|
281
|
-
* <p>If you retry the request using the same client token, but one or more of the parameters are different, the retry throws a
|
|
282
|
-
* <code>ValidationException</code> with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
283
|
-
* <p>Client tokens expire eight hours after a request is made. If you retry the request with the expired token, a new resource is
|
|
284
|
-
* created.</p>
|
|
285
|
-
* <p>If the original resource is deleted and you retry the request, a new resource is created.</p>
|
|
286
|
-
* <p>Idempotent create APIs with a client token:</p>
|
|
287
|
-
* <ul>
|
|
288
|
-
* <li>
|
|
289
|
-
* <p>CreateEnvironmentTemplateVersion</p>
|
|
290
|
-
* </li>
|
|
291
|
-
* <li>
|
|
292
|
-
* <p>CreateServiceTemplateVersion</p>
|
|
293
|
-
* </li>
|
|
294
|
-
* <li>
|
|
295
|
-
* <p>CreateEnvironmentAccountConnection</p>
|
|
296
|
-
* </li>
|
|
297
|
-
* </ul>
|
|
298
|
-
* <p>
|
|
299
|
-
* <b>Idempotent create APIs</b>
|
|
300
|
-
* </p>
|
|
301
|
-
* <p>Given a request action that has succeeded:</p>
|
|
302
|
-
* <p>If you retry the request with an API from this group, and the original resource <i>hasn't</i> been modified, the retry
|
|
303
|
-
* succeeds without performing any further actions other than returning the original resource detail data in the response.</p>
|
|
304
|
-
* <p>If the original resource has been modified, the retry throws a <code>ConflictException</code>.</p>
|
|
305
|
-
* <p>If you retry with different input parameters, the retry throws a <code>ValidationException</code> with an
|
|
306
|
-
* <code>IdempotentParameterMismatch</code> error.</p>
|
|
307
|
-
* <p>Idempotent create APIs:</p>
|
|
308
|
-
* <ul>
|
|
309
|
-
* <li>
|
|
310
|
-
* <p>CreateEnvironmentTemplate</p>
|
|
311
|
-
* </li>
|
|
312
|
-
* <li>
|
|
313
|
-
* <p>CreateServiceTemplate</p>
|
|
314
|
-
* </li>
|
|
315
|
-
* <li>
|
|
316
|
-
* <p>CreateEnvironment</p>
|
|
317
|
-
* </li>
|
|
318
|
-
* <li>
|
|
319
|
-
* <p>CreateService</p>
|
|
320
|
-
* </li>
|
|
321
|
-
* </ul>
|
|
322
|
-
* <p>
|
|
323
|
-
* <b>Idempotent delete APIs</b>
|
|
324
|
-
* </p>
|
|
325
|
-
* <p>Given a request action that has succeeded:</p>
|
|
326
|
-
* <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>
|
|
327
|
-
* <p>If you retry and the resource doesn't exist, the response is empty.</p>
|
|
328
|
-
* <p>In both cases, the retry succeeds.</p>
|
|
329
|
-
* <p>Idempotent delete APIs:</p>
|
|
330
|
-
* <ul>
|
|
331
|
-
* <li>
|
|
332
|
-
* <p>DeleteEnvironmentTemplate</p>
|
|
333
|
-
* </li>
|
|
334
|
-
* <li>
|
|
335
|
-
* <p>DeleteEnvironmentTemplateVersion</p>
|
|
336
|
-
* </li>
|
|
337
|
-
* <li>
|
|
338
|
-
* <p>DeleteServiceTemplate</p>
|
|
339
|
-
* </li>
|
|
340
|
-
* <li>
|
|
341
|
-
* <p>DeleteServiceTemplateVersion</p>
|
|
342
|
-
* </li>
|
|
343
|
-
* <li>
|
|
344
|
-
* <p>DeleteEnvironmentAccountConnection</p>
|
|
345
|
-
* </li>
|
|
346
|
-
* </ul>
|
|
347
|
-
* <p>
|
|
348
|
-
* <b>Asynchronous idempotent delete APIs</b>
|
|
349
|
-
* </p>
|
|
350
|
-
* <p>Given a request action that has succeeded:</p>
|
|
351
|
-
* <p>If you retry the request with an API from this group, if the original request delete operation status is
|
|
352
|
-
* <code>DELETE_IN_PROGRESS</code>, the retry returns the resource detail data in the response without performing any further actions.</p>
|
|
353
|
-
* <p>If the original request delete operation is complete, a retry returns an empty response.</p>
|
|
354
|
-
* <p>Asynchronous idempotent delete APIs:</p>
|
|
355
|
-
* <ul>
|
|
356
|
-
* <li>
|
|
357
|
-
* <p>DeleteEnvironment</p>
|
|
358
|
-
* </li>
|
|
359
|
-
* <li>
|
|
360
|
-
* <p>DeleteService</p>
|
|
361
|
-
* </li>
|
|
362
|
-
* </ul>
|
|
363
|
-
*/
|
|
364
|
-
export class Proton extends ProtonClient {
|
|
365
|
-
/**
|
|
366
|
-
* <p>In a management account, an environment account connection request is accepted. When the environment account connection request is
|
|
367
|
-
* accepted, AWS Proton can use the associated IAM role to provision environment infrastructure resources in the associated environment
|
|
368
|
-
* account.</p>
|
|
369
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
|
|
370
|
-
* connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
|
|
371
|
-
*/
|
|
372
|
-
public acceptEnvironmentAccountConnection(
|
|
373
|
-
args: AcceptEnvironmentAccountConnectionCommandInput,
|
|
374
|
-
options?: __HttpHandlerOptions
|
|
375
|
-
): Promise<AcceptEnvironmentAccountConnectionCommandOutput>;
|
|
376
|
-
public acceptEnvironmentAccountConnection(
|
|
377
|
-
args: AcceptEnvironmentAccountConnectionCommandInput,
|
|
378
|
-
cb: (err: any, data?: AcceptEnvironmentAccountConnectionCommandOutput) => void
|
|
379
|
-
): void;
|
|
380
|
-
public acceptEnvironmentAccountConnection(
|
|
381
|
-
args: AcceptEnvironmentAccountConnectionCommandInput,
|
|
382
|
-
options: __HttpHandlerOptions,
|
|
383
|
-
cb: (err: any, data?: AcceptEnvironmentAccountConnectionCommandOutput) => void
|
|
384
|
-
): void;
|
|
385
|
-
public acceptEnvironmentAccountConnection(
|
|
386
|
-
args: AcceptEnvironmentAccountConnectionCommandInput,
|
|
387
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: AcceptEnvironmentAccountConnectionCommandOutput) => void),
|
|
388
|
-
cb?: (err: any, data?: AcceptEnvironmentAccountConnectionCommandOutput) => void
|
|
389
|
-
): Promise<AcceptEnvironmentAccountConnectionCommandOutput> | void {
|
|
390
|
-
const command = new AcceptEnvironmentAccountConnectionCommand(args);
|
|
391
|
-
if (typeof optionsOrCb === "function") {
|
|
392
|
-
this.send(command, optionsOrCb);
|
|
393
|
-
} else if (typeof cb === "function") {
|
|
394
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
395
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
396
|
-
} else {
|
|
397
|
-
return this.send(command, optionsOrCb);
|
|
398
|
-
}
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
/**
|
|
402
|
-
* <p>Attempts to cancel an environment deployment on an <a>UpdateEnvironment</a> action, if the deployment is
|
|
403
|
-
* <code>IN_PROGRESS</code>. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-update.html">Update an environment</a> in the <i>AWS Proton Administrator guide</i>.</p>
|
|
404
|
-
* <p>The following list includes potential cancellation scenarios.</p>
|
|
405
|
-
* <ul>
|
|
406
|
-
* <li>
|
|
407
|
-
* <p>If the cancellation attempt succeeds, the resulting deployment state is <code>CANCELLED</code>.</p>
|
|
408
|
-
* </li>
|
|
409
|
-
* <li>
|
|
410
|
-
* <p>If the cancellation attempt fails, the resulting deployment state is <code>FAILED</code>.</p>
|
|
411
|
-
* </li>
|
|
412
|
-
* <li>
|
|
413
|
-
* <p>If the current <a>UpdateEnvironment</a> action succeeds before the cancellation attempt starts, the resulting
|
|
414
|
-
* deployment state is <code>SUCCEEDED</code> and the cancellation attempt has no effect.</p>
|
|
415
|
-
* </li>
|
|
416
|
-
* </ul>
|
|
417
|
-
*/
|
|
418
|
-
public cancelEnvironmentDeployment(
|
|
419
|
-
args: CancelEnvironmentDeploymentCommandInput,
|
|
420
|
-
options?: __HttpHandlerOptions
|
|
421
|
-
): Promise<CancelEnvironmentDeploymentCommandOutput>;
|
|
422
|
-
public cancelEnvironmentDeployment(
|
|
423
|
-
args: CancelEnvironmentDeploymentCommandInput,
|
|
424
|
-
cb: (err: any, data?: CancelEnvironmentDeploymentCommandOutput) => void
|
|
425
|
-
): void;
|
|
426
|
-
public cancelEnvironmentDeployment(
|
|
427
|
-
args: CancelEnvironmentDeploymentCommandInput,
|
|
428
|
-
options: __HttpHandlerOptions,
|
|
429
|
-
cb: (err: any, data?: CancelEnvironmentDeploymentCommandOutput) => void
|
|
430
|
-
): void;
|
|
431
|
-
public cancelEnvironmentDeployment(
|
|
432
|
-
args: CancelEnvironmentDeploymentCommandInput,
|
|
433
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CancelEnvironmentDeploymentCommandOutput) => void),
|
|
434
|
-
cb?: (err: any, data?: CancelEnvironmentDeploymentCommandOutput) => void
|
|
435
|
-
): Promise<CancelEnvironmentDeploymentCommandOutput> | void {
|
|
436
|
-
const command = new CancelEnvironmentDeploymentCommand(args);
|
|
437
|
-
if (typeof optionsOrCb === "function") {
|
|
438
|
-
this.send(command, optionsOrCb);
|
|
439
|
-
} else if (typeof cb === "function") {
|
|
440
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
441
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
442
|
-
} else {
|
|
443
|
-
return this.send(command, optionsOrCb);
|
|
444
|
-
}
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
/**
|
|
448
|
-
* <p>Attempts to cancel a service instance deployment on an <a>UpdateServiceInstance</a> action, if the deployment is
|
|
449
|
-
* <code>IN_PROGRESS</code>. For more information, see <i>Update a service instance</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-svc-instance-update.html">AWS Proton Administrator guide</a> or the <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-instance-update.html">AWS Proton User guide</a>.</p>
|
|
450
|
-
* <p>The following list includes potential cancellation scenarios.</p>
|
|
451
|
-
* <ul>
|
|
452
|
-
* <li>
|
|
453
|
-
* <p>If the cancellation attempt succeeds, the resulting deployment state is <code>CANCELLED</code>.</p>
|
|
454
|
-
* </li>
|
|
455
|
-
* <li>
|
|
456
|
-
* <p>If the cancellation attempt fails, the resulting deployment state is <code>FAILED</code>.</p>
|
|
457
|
-
* </li>
|
|
458
|
-
* <li>
|
|
459
|
-
* <p>If the current <a>UpdateServiceInstance</a> action succeeds before the cancellation attempt starts, the resulting
|
|
460
|
-
* deployment state is <code>SUCCEEDED</code> and the cancellation attempt has no effect.</p>
|
|
461
|
-
* </li>
|
|
462
|
-
* </ul>
|
|
463
|
-
*/
|
|
464
|
-
public cancelServiceInstanceDeployment(
|
|
465
|
-
args: CancelServiceInstanceDeploymentCommandInput,
|
|
466
|
-
options?: __HttpHandlerOptions
|
|
467
|
-
): Promise<CancelServiceInstanceDeploymentCommandOutput>;
|
|
468
|
-
public cancelServiceInstanceDeployment(
|
|
469
|
-
args: CancelServiceInstanceDeploymentCommandInput,
|
|
470
|
-
cb: (err: any, data?: CancelServiceInstanceDeploymentCommandOutput) => void
|
|
471
|
-
): void;
|
|
472
|
-
public cancelServiceInstanceDeployment(
|
|
473
|
-
args: CancelServiceInstanceDeploymentCommandInput,
|
|
474
|
-
options: __HttpHandlerOptions,
|
|
475
|
-
cb: (err: any, data?: CancelServiceInstanceDeploymentCommandOutput) => void
|
|
476
|
-
): void;
|
|
477
|
-
public cancelServiceInstanceDeployment(
|
|
478
|
-
args: CancelServiceInstanceDeploymentCommandInput,
|
|
479
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CancelServiceInstanceDeploymentCommandOutput) => void),
|
|
480
|
-
cb?: (err: any, data?: CancelServiceInstanceDeploymentCommandOutput) => void
|
|
481
|
-
): Promise<CancelServiceInstanceDeploymentCommandOutput> | void {
|
|
482
|
-
const command = new CancelServiceInstanceDeploymentCommand(args);
|
|
483
|
-
if (typeof optionsOrCb === "function") {
|
|
484
|
-
this.send(command, optionsOrCb);
|
|
485
|
-
} else if (typeof cb === "function") {
|
|
486
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
487
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
488
|
-
} else {
|
|
489
|
-
return this.send(command, optionsOrCb);
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
/**
|
|
494
|
-
* <p>Attempts to cancel a service pipeline deployment on an <a>UpdateServicePipeline</a> action, if the deployment is
|
|
495
|
-
* <code>IN_PROGRESS</code>. For more information, see <i>Update a service pipeline</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-svc-pipeline-update.html">AWS Proton Administrator guide</a> or the <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-pipeline-update.html">AWS Proton User guide</a>.</p>
|
|
496
|
-
* <p>The following list includes potential cancellation scenarios.</p>
|
|
497
|
-
* <ul>
|
|
498
|
-
* <li>
|
|
499
|
-
* <p>If the cancellation attempt succeeds, the resulting deployment state is <code>CANCELLED</code>.</p>
|
|
500
|
-
* </li>
|
|
501
|
-
* <li>
|
|
502
|
-
* <p>If the cancellation attempt fails, the resulting deployment state is <code>FAILED</code>.</p>
|
|
503
|
-
* </li>
|
|
504
|
-
* <li>
|
|
505
|
-
* <p>If the current <a>UpdateServicePipeline</a> action succeeds before the cancellation attempt starts, the resulting
|
|
506
|
-
* deployment state is <code>SUCCEEDED</code> and the cancellation attempt has no effect.</p>
|
|
507
|
-
* </li>
|
|
508
|
-
* </ul>
|
|
509
|
-
*/
|
|
510
|
-
public cancelServicePipelineDeployment(
|
|
511
|
-
args: CancelServicePipelineDeploymentCommandInput,
|
|
512
|
-
options?: __HttpHandlerOptions
|
|
513
|
-
): Promise<CancelServicePipelineDeploymentCommandOutput>;
|
|
514
|
-
public cancelServicePipelineDeployment(
|
|
515
|
-
args: CancelServicePipelineDeploymentCommandInput,
|
|
516
|
-
cb: (err: any, data?: CancelServicePipelineDeploymentCommandOutput) => void
|
|
517
|
-
): void;
|
|
518
|
-
public cancelServicePipelineDeployment(
|
|
519
|
-
args: CancelServicePipelineDeploymentCommandInput,
|
|
520
|
-
options: __HttpHandlerOptions,
|
|
521
|
-
cb: (err: any, data?: CancelServicePipelineDeploymentCommandOutput) => void
|
|
522
|
-
): void;
|
|
523
|
-
public cancelServicePipelineDeployment(
|
|
524
|
-
args: CancelServicePipelineDeploymentCommandInput,
|
|
525
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CancelServicePipelineDeploymentCommandOutput) => void),
|
|
526
|
-
cb?: (err: any, data?: CancelServicePipelineDeploymentCommandOutput) => void
|
|
527
|
-
): Promise<CancelServicePipelineDeploymentCommandOutput> | void {
|
|
528
|
-
const command = new CancelServicePipelineDeploymentCommand(args);
|
|
529
|
-
if (typeof optionsOrCb === "function") {
|
|
530
|
-
this.send(command, optionsOrCb);
|
|
531
|
-
} else if (typeof cb === "function") {
|
|
532
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
533
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
534
|
-
} else {
|
|
535
|
-
return this.send(command, optionsOrCb);
|
|
536
|
-
}
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
/**
|
|
540
|
-
* <p>Deploy a new environment. An AWS Proton environment is created from an environment template that defines infrastructure and resources
|
|
541
|
-
* that can be shared across services. For more information, see the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-environments.html">Environments</a> in the <i>AWS Proton Administrator
|
|
542
|
-
* Guide.</i>
|
|
543
|
-
* </p>
|
|
544
|
-
*/
|
|
545
|
-
public createEnvironment(
|
|
546
|
-
args: CreateEnvironmentCommandInput,
|
|
547
|
-
options?: __HttpHandlerOptions
|
|
548
|
-
): Promise<CreateEnvironmentCommandOutput>;
|
|
549
|
-
public createEnvironment(
|
|
550
|
-
args: CreateEnvironmentCommandInput,
|
|
551
|
-
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
|
|
552
|
-
): void;
|
|
553
|
-
public createEnvironment(
|
|
554
|
-
args: CreateEnvironmentCommandInput,
|
|
555
|
-
options: __HttpHandlerOptions,
|
|
556
|
-
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
|
|
557
|
-
): void;
|
|
558
|
-
public createEnvironment(
|
|
559
|
-
args: CreateEnvironmentCommandInput,
|
|
560
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateEnvironmentCommandOutput) => void),
|
|
561
|
-
cb?: (err: any, data?: CreateEnvironmentCommandOutput) => void
|
|
562
|
-
): Promise<CreateEnvironmentCommandOutput> | void {
|
|
563
|
-
const command = new CreateEnvironmentCommand(args);
|
|
564
|
-
if (typeof optionsOrCb === "function") {
|
|
565
|
-
this.send(command, optionsOrCb);
|
|
566
|
-
} else if (typeof cb === "function") {
|
|
567
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
568
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
569
|
-
} else {
|
|
570
|
-
return this.send(command, optionsOrCb);
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
/**
|
|
575
|
-
* <p>Create an environment account connection in an environment account so that environment infrastructure resources can be provisioned in
|
|
576
|
-
* the environment account from a management account.</p>
|
|
577
|
-
* <p>An environment account connection is a secure bi-directional connection between a <i>management account</i> and an
|
|
578
|
-
* <i>environment account</i> that maintains authorization and permissions. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account connections</a> in the
|
|
579
|
-
* <i>AWS Proton Administrator guide</i>.</p>
|
|
580
|
-
*/
|
|
581
|
-
public createEnvironmentAccountConnection(
|
|
582
|
-
args: CreateEnvironmentAccountConnectionCommandInput,
|
|
583
|
-
options?: __HttpHandlerOptions
|
|
584
|
-
): Promise<CreateEnvironmentAccountConnectionCommandOutput>;
|
|
585
|
-
public createEnvironmentAccountConnection(
|
|
586
|
-
args: CreateEnvironmentAccountConnectionCommandInput,
|
|
587
|
-
cb: (err: any, data?: CreateEnvironmentAccountConnectionCommandOutput) => void
|
|
588
|
-
): void;
|
|
589
|
-
public createEnvironmentAccountConnection(
|
|
590
|
-
args: CreateEnvironmentAccountConnectionCommandInput,
|
|
591
|
-
options: __HttpHandlerOptions,
|
|
592
|
-
cb: (err: any, data?: CreateEnvironmentAccountConnectionCommandOutput) => void
|
|
593
|
-
): void;
|
|
594
|
-
public createEnvironmentAccountConnection(
|
|
595
|
-
args: CreateEnvironmentAccountConnectionCommandInput,
|
|
596
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateEnvironmentAccountConnectionCommandOutput) => void),
|
|
597
|
-
cb?: (err: any, data?: CreateEnvironmentAccountConnectionCommandOutput) => void
|
|
598
|
-
): Promise<CreateEnvironmentAccountConnectionCommandOutput> | void {
|
|
599
|
-
const command = new CreateEnvironmentAccountConnectionCommand(args);
|
|
600
|
-
if (typeof optionsOrCb === "function") {
|
|
601
|
-
this.send(command, optionsOrCb);
|
|
602
|
-
} else if (typeof cb === "function") {
|
|
603
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
604
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
605
|
-
} else {
|
|
606
|
-
return this.send(command, optionsOrCb);
|
|
607
|
-
}
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
/**
|
|
611
|
-
* <p>Create an environment template for AWS Proton. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-templates.html">Environment Templates</a> in the <i>AWS Proton Administrator
|
|
612
|
-
* Guide</i>.</p>
|
|
613
|
-
* <p>You can create an environment template in one of the two following ways:</p>
|
|
614
|
-
* <ul>
|
|
615
|
-
* <li>
|
|
616
|
-
* <p>Register and publish a <i>standard</i> environment template that instructs AWS Proton to deploy and manage
|
|
617
|
-
* environment infrastructure.</p>
|
|
618
|
-
* </li>
|
|
619
|
-
* <li>
|
|
620
|
-
* <p>Register and publish a <i>customer managed</i> environment template that connects AWS Proton to your existing
|
|
621
|
-
* provisioned infrastructure that you manage. AWS Proton <i>doesn't</i> manage your existing provisioned
|
|
622
|
-
* infrastructure. To create an environment template for customer provisioned and managed infrastructure, include the
|
|
623
|
-
* <code>provisioning</code> parameter and set the value to <code>CUSTOMER_MANAGED</code>. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/template-create.html">Register and publish an environment template</a>
|
|
624
|
-
* in the <i>AWS Proton Administrator Guide</i>.</p>
|
|
625
|
-
* </li>
|
|
626
|
-
* </ul>
|
|
627
|
-
*/
|
|
628
|
-
public createEnvironmentTemplate(
|
|
629
|
-
args: CreateEnvironmentTemplateCommandInput,
|
|
630
|
-
options?: __HttpHandlerOptions
|
|
631
|
-
): Promise<CreateEnvironmentTemplateCommandOutput>;
|
|
632
|
-
public createEnvironmentTemplate(
|
|
633
|
-
args: CreateEnvironmentTemplateCommandInput,
|
|
634
|
-
cb: (err: any, data?: CreateEnvironmentTemplateCommandOutput) => void
|
|
635
|
-
): void;
|
|
636
|
-
public createEnvironmentTemplate(
|
|
637
|
-
args: CreateEnvironmentTemplateCommandInput,
|
|
638
|
-
options: __HttpHandlerOptions,
|
|
639
|
-
cb: (err: any, data?: CreateEnvironmentTemplateCommandOutput) => void
|
|
640
|
-
): void;
|
|
641
|
-
public createEnvironmentTemplate(
|
|
642
|
-
args: CreateEnvironmentTemplateCommandInput,
|
|
643
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateEnvironmentTemplateCommandOutput) => void),
|
|
644
|
-
cb?: (err: any, data?: CreateEnvironmentTemplateCommandOutput) => void
|
|
645
|
-
): Promise<CreateEnvironmentTemplateCommandOutput> | void {
|
|
646
|
-
const command = new CreateEnvironmentTemplateCommand(args);
|
|
647
|
-
if (typeof optionsOrCb === "function") {
|
|
648
|
-
this.send(command, optionsOrCb);
|
|
649
|
-
} else if (typeof cb === "function") {
|
|
650
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
651
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
652
|
-
} else {
|
|
653
|
-
return this.send(command, optionsOrCb);
|
|
654
|
-
}
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
/**
|
|
658
|
-
* <p>Create a new major or minor version of an environment template. A major version of an environment template is a version that
|
|
659
|
-
* <i>isn't</i> backwards compatible. A minor version of an environment template is a version that's backwards compatible
|
|
660
|
-
* within its major version.</p>
|
|
661
|
-
*/
|
|
662
|
-
public createEnvironmentTemplateVersion(
|
|
663
|
-
args: CreateEnvironmentTemplateVersionCommandInput,
|
|
664
|
-
options?: __HttpHandlerOptions
|
|
665
|
-
): Promise<CreateEnvironmentTemplateVersionCommandOutput>;
|
|
666
|
-
public createEnvironmentTemplateVersion(
|
|
667
|
-
args: CreateEnvironmentTemplateVersionCommandInput,
|
|
668
|
-
cb: (err: any, data?: CreateEnvironmentTemplateVersionCommandOutput) => void
|
|
669
|
-
): void;
|
|
670
|
-
public createEnvironmentTemplateVersion(
|
|
671
|
-
args: CreateEnvironmentTemplateVersionCommandInput,
|
|
672
|
-
options: __HttpHandlerOptions,
|
|
673
|
-
cb: (err: any, data?: CreateEnvironmentTemplateVersionCommandOutput) => void
|
|
674
|
-
): void;
|
|
675
|
-
public createEnvironmentTemplateVersion(
|
|
676
|
-
args: CreateEnvironmentTemplateVersionCommandInput,
|
|
677
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateEnvironmentTemplateVersionCommandOutput) => void),
|
|
678
|
-
cb?: (err: any, data?: CreateEnvironmentTemplateVersionCommandOutput) => void
|
|
679
|
-
): Promise<CreateEnvironmentTemplateVersionCommandOutput> | void {
|
|
680
|
-
const command = new CreateEnvironmentTemplateVersionCommand(args);
|
|
681
|
-
if (typeof optionsOrCb === "function") {
|
|
682
|
-
this.send(command, optionsOrCb);
|
|
683
|
-
} else if (typeof cb === "function") {
|
|
684
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
685
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
686
|
-
} else {
|
|
687
|
-
return this.send(command, optionsOrCb);
|
|
688
|
-
}
|
|
689
|
-
}
|
|
690
|
-
|
|
691
|
-
/**
|
|
692
|
-
* <p>Create an AWS Proton service. An AWS Proton service is an instantiation of a service template and often includes several service instances
|
|
693
|
-
* and pipeline. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-services.html">Services</a> in
|
|
694
|
-
* the <i>AWS Proton Administrator Guide</i> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/ug-service.html">Services</a> in the <i>AWS Proton User Guide</i>.</p>
|
|
695
|
-
*/
|
|
696
|
-
public createService(
|
|
697
|
-
args: CreateServiceCommandInput,
|
|
698
|
-
options?: __HttpHandlerOptions
|
|
699
|
-
): Promise<CreateServiceCommandOutput>;
|
|
700
|
-
public createService(
|
|
701
|
-
args: CreateServiceCommandInput,
|
|
702
|
-
cb: (err: any, data?: CreateServiceCommandOutput) => void
|
|
703
|
-
): void;
|
|
704
|
-
public createService(
|
|
705
|
-
args: CreateServiceCommandInput,
|
|
706
|
-
options: __HttpHandlerOptions,
|
|
707
|
-
cb: (err: any, data?: CreateServiceCommandOutput) => void
|
|
708
|
-
): void;
|
|
709
|
-
public createService(
|
|
710
|
-
args: CreateServiceCommandInput,
|
|
711
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateServiceCommandOutput) => void),
|
|
712
|
-
cb?: (err: any, data?: CreateServiceCommandOutput) => void
|
|
713
|
-
): Promise<CreateServiceCommandOutput> | void {
|
|
714
|
-
const command = new CreateServiceCommand(args);
|
|
715
|
-
if (typeof optionsOrCb === "function") {
|
|
716
|
-
this.send(command, optionsOrCb);
|
|
717
|
-
} else if (typeof cb === "function") {
|
|
718
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
719
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
720
|
-
} else {
|
|
721
|
-
return this.send(command, optionsOrCb);
|
|
722
|
-
}
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
/**
|
|
726
|
-
* <p>Create a service template. The administrator creates a service template to define standardized infrastructure and an optional CICD
|
|
727
|
-
* service pipeline. Developers, in turn, select the service template from AWS Proton. If the selected service template includes a service
|
|
728
|
-
* pipeline definition, they provide a link to their source code repository. AWS Proton then deploys and manages the infrastructure defined by
|
|
729
|
-
* the selected service template. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/managing-svc-templates.html">Service Templates</a> in the <i>AWS Proton Administrator
|
|
730
|
-
* Guide</i>.</p>
|
|
731
|
-
*/
|
|
732
|
-
public createServiceTemplate(
|
|
733
|
-
args: CreateServiceTemplateCommandInput,
|
|
734
|
-
options?: __HttpHandlerOptions
|
|
735
|
-
): Promise<CreateServiceTemplateCommandOutput>;
|
|
736
|
-
public createServiceTemplate(
|
|
737
|
-
args: CreateServiceTemplateCommandInput,
|
|
738
|
-
cb: (err: any, data?: CreateServiceTemplateCommandOutput) => void
|
|
739
|
-
): void;
|
|
740
|
-
public createServiceTemplate(
|
|
741
|
-
args: CreateServiceTemplateCommandInput,
|
|
742
|
-
options: __HttpHandlerOptions,
|
|
743
|
-
cb: (err: any, data?: CreateServiceTemplateCommandOutput) => void
|
|
744
|
-
): void;
|
|
745
|
-
public createServiceTemplate(
|
|
746
|
-
args: CreateServiceTemplateCommandInput,
|
|
747
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateServiceTemplateCommandOutput) => void),
|
|
748
|
-
cb?: (err: any, data?: CreateServiceTemplateCommandOutput) => void
|
|
749
|
-
): Promise<CreateServiceTemplateCommandOutput> | void {
|
|
750
|
-
const command = new CreateServiceTemplateCommand(args);
|
|
751
|
-
if (typeof optionsOrCb === "function") {
|
|
752
|
-
this.send(command, optionsOrCb);
|
|
753
|
-
} else if (typeof cb === "function") {
|
|
754
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
755
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
756
|
-
} else {
|
|
757
|
-
return this.send(command, optionsOrCb);
|
|
758
|
-
}
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
/**
|
|
762
|
-
* <p>Create a new major or minor version of a service template. A major version of a service template is a version that
|
|
763
|
-
* <i>isn't</i> backwards compatible. A minor version of a service template is a version that's backwards compatible within
|
|
764
|
-
* its major version.</p>
|
|
765
|
-
*/
|
|
766
|
-
public createServiceTemplateVersion(
|
|
767
|
-
args: CreateServiceTemplateVersionCommandInput,
|
|
768
|
-
options?: __HttpHandlerOptions
|
|
769
|
-
): Promise<CreateServiceTemplateVersionCommandOutput>;
|
|
770
|
-
public createServiceTemplateVersion(
|
|
771
|
-
args: CreateServiceTemplateVersionCommandInput,
|
|
772
|
-
cb: (err: any, data?: CreateServiceTemplateVersionCommandOutput) => void
|
|
773
|
-
): void;
|
|
774
|
-
public createServiceTemplateVersion(
|
|
775
|
-
args: CreateServiceTemplateVersionCommandInput,
|
|
776
|
-
options: __HttpHandlerOptions,
|
|
777
|
-
cb: (err: any, data?: CreateServiceTemplateVersionCommandOutput) => void
|
|
778
|
-
): void;
|
|
779
|
-
public createServiceTemplateVersion(
|
|
780
|
-
args: CreateServiceTemplateVersionCommandInput,
|
|
781
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: CreateServiceTemplateVersionCommandOutput) => void),
|
|
782
|
-
cb?: (err: any, data?: CreateServiceTemplateVersionCommandOutput) => void
|
|
783
|
-
): Promise<CreateServiceTemplateVersionCommandOutput> | void {
|
|
784
|
-
const command = new CreateServiceTemplateVersionCommand(args);
|
|
785
|
-
if (typeof optionsOrCb === "function") {
|
|
786
|
-
this.send(command, optionsOrCb);
|
|
787
|
-
} else if (typeof cb === "function") {
|
|
788
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
789
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
790
|
-
} else {
|
|
791
|
-
return this.send(command, optionsOrCb);
|
|
792
|
-
}
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
/**
|
|
796
|
-
* <p>Delete an environment.</p>
|
|
797
|
-
*/
|
|
798
|
-
public deleteEnvironment(
|
|
799
|
-
args: DeleteEnvironmentCommandInput,
|
|
800
|
-
options?: __HttpHandlerOptions
|
|
801
|
-
): Promise<DeleteEnvironmentCommandOutput>;
|
|
802
|
-
public deleteEnvironment(
|
|
803
|
-
args: DeleteEnvironmentCommandInput,
|
|
804
|
-
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
|
|
805
|
-
): void;
|
|
806
|
-
public deleteEnvironment(
|
|
807
|
-
args: DeleteEnvironmentCommandInput,
|
|
808
|
-
options: __HttpHandlerOptions,
|
|
809
|
-
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
|
|
810
|
-
): void;
|
|
811
|
-
public deleteEnvironment(
|
|
812
|
-
args: DeleteEnvironmentCommandInput,
|
|
813
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteEnvironmentCommandOutput) => void),
|
|
814
|
-
cb?: (err: any, data?: DeleteEnvironmentCommandOutput) => void
|
|
815
|
-
): Promise<DeleteEnvironmentCommandOutput> | void {
|
|
816
|
-
const command = new DeleteEnvironmentCommand(args);
|
|
817
|
-
if (typeof optionsOrCb === "function") {
|
|
818
|
-
this.send(command, optionsOrCb);
|
|
819
|
-
} else if (typeof cb === "function") {
|
|
820
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
821
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
822
|
-
} else {
|
|
823
|
-
return this.send(command, optionsOrCb);
|
|
824
|
-
}
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
/**
|
|
828
|
-
* <p>In an environment account, delete an environment account connection.</p>
|
|
829
|
-
* <p>After you delete an environment account connection that’s in use by an AWS Proton environment, AWS Proton <i>can’t</i>
|
|
830
|
-
* manage the environment infrastructure resources until a new environment account connection is accepted for the environment account and
|
|
831
|
-
* associated environment. You're responsible for cleaning up provisioned resources that remain without an environment connection.</p>
|
|
832
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
|
|
833
|
-
* connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
|
|
834
|
-
*/
|
|
835
|
-
public deleteEnvironmentAccountConnection(
|
|
836
|
-
args: DeleteEnvironmentAccountConnectionCommandInput,
|
|
837
|
-
options?: __HttpHandlerOptions
|
|
838
|
-
): Promise<DeleteEnvironmentAccountConnectionCommandOutput>;
|
|
839
|
-
public deleteEnvironmentAccountConnection(
|
|
840
|
-
args: DeleteEnvironmentAccountConnectionCommandInput,
|
|
841
|
-
cb: (err: any, data?: DeleteEnvironmentAccountConnectionCommandOutput) => void
|
|
842
|
-
): void;
|
|
843
|
-
public deleteEnvironmentAccountConnection(
|
|
844
|
-
args: DeleteEnvironmentAccountConnectionCommandInput,
|
|
845
|
-
options: __HttpHandlerOptions,
|
|
846
|
-
cb: (err: any, data?: DeleteEnvironmentAccountConnectionCommandOutput) => void
|
|
847
|
-
): void;
|
|
848
|
-
public deleteEnvironmentAccountConnection(
|
|
849
|
-
args: DeleteEnvironmentAccountConnectionCommandInput,
|
|
850
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteEnvironmentAccountConnectionCommandOutput) => void),
|
|
851
|
-
cb?: (err: any, data?: DeleteEnvironmentAccountConnectionCommandOutput) => void
|
|
852
|
-
): Promise<DeleteEnvironmentAccountConnectionCommandOutput> | void {
|
|
853
|
-
const command = new DeleteEnvironmentAccountConnectionCommand(args);
|
|
854
|
-
if (typeof optionsOrCb === "function") {
|
|
855
|
-
this.send(command, optionsOrCb);
|
|
856
|
-
} else if (typeof cb === "function") {
|
|
857
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
858
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
859
|
-
} else {
|
|
860
|
-
return this.send(command, optionsOrCb);
|
|
861
|
-
}
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
/**
|
|
865
|
-
* <p>If no other major or minor versions of an environment template exist, delete the environment template.</p>
|
|
866
|
-
*/
|
|
867
|
-
public deleteEnvironmentTemplate(
|
|
868
|
-
args: DeleteEnvironmentTemplateCommandInput,
|
|
869
|
-
options?: __HttpHandlerOptions
|
|
870
|
-
): Promise<DeleteEnvironmentTemplateCommandOutput>;
|
|
871
|
-
public deleteEnvironmentTemplate(
|
|
872
|
-
args: DeleteEnvironmentTemplateCommandInput,
|
|
873
|
-
cb: (err: any, data?: DeleteEnvironmentTemplateCommandOutput) => void
|
|
874
|
-
): void;
|
|
875
|
-
public deleteEnvironmentTemplate(
|
|
876
|
-
args: DeleteEnvironmentTemplateCommandInput,
|
|
877
|
-
options: __HttpHandlerOptions,
|
|
878
|
-
cb: (err: any, data?: DeleteEnvironmentTemplateCommandOutput) => void
|
|
879
|
-
): void;
|
|
880
|
-
public deleteEnvironmentTemplate(
|
|
881
|
-
args: DeleteEnvironmentTemplateCommandInput,
|
|
882
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteEnvironmentTemplateCommandOutput) => void),
|
|
883
|
-
cb?: (err: any, data?: DeleteEnvironmentTemplateCommandOutput) => void
|
|
884
|
-
): Promise<DeleteEnvironmentTemplateCommandOutput> | void {
|
|
885
|
-
const command = new DeleteEnvironmentTemplateCommand(args);
|
|
886
|
-
if (typeof optionsOrCb === "function") {
|
|
887
|
-
this.send(command, optionsOrCb);
|
|
888
|
-
} else if (typeof cb === "function") {
|
|
889
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
890
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
891
|
-
} else {
|
|
892
|
-
return this.send(command, optionsOrCb);
|
|
893
|
-
}
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
/**
|
|
897
|
-
* <p>If no other minor versions of an environment template exist, delete a major version of the environment template if it's not the
|
|
898
|
-
* <code>Recommended</code> version. Delete the <code>Recommended</code> version of the environment template if no other major versions
|
|
899
|
-
* or minor versions of the environment template exist. A major version of an environment template is a version that's not backwards
|
|
900
|
-
* compatible.</p>
|
|
901
|
-
* <p>Delete a minor version of an environment template if it <i>isn't</i> the <code>Recommended</code> version. Delete a
|
|
902
|
-
* <code>Recommended</code> minor version of the environment template if no other minor versions of the environment template exist. A
|
|
903
|
-
* minor version of an environment template is a version that's backwards compatible.</p>
|
|
904
|
-
*/
|
|
905
|
-
public deleteEnvironmentTemplateVersion(
|
|
906
|
-
args: DeleteEnvironmentTemplateVersionCommandInput,
|
|
907
|
-
options?: __HttpHandlerOptions
|
|
908
|
-
): Promise<DeleteEnvironmentTemplateVersionCommandOutput>;
|
|
909
|
-
public deleteEnvironmentTemplateVersion(
|
|
910
|
-
args: DeleteEnvironmentTemplateVersionCommandInput,
|
|
911
|
-
cb: (err: any, data?: DeleteEnvironmentTemplateVersionCommandOutput) => void
|
|
912
|
-
): void;
|
|
913
|
-
public deleteEnvironmentTemplateVersion(
|
|
914
|
-
args: DeleteEnvironmentTemplateVersionCommandInput,
|
|
915
|
-
options: __HttpHandlerOptions,
|
|
916
|
-
cb: (err: any, data?: DeleteEnvironmentTemplateVersionCommandOutput) => void
|
|
917
|
-
): void;
|
|
918
|
-
public deleteEnvironmentTemplateVersion(
|
|
919
|
-
args: DeleteEnvironmentTemplateVersionCommandInput,
|
|
920
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteEnvironmentTemplateVersionCommandOutput) => void),
|
|
921
|
-
cb?: (err: any, data?: DeleteEnvironmentTemplateVersionCommandOutput) => void
|
|
922
|
-
): Promise<DeleteEnvironmentTemplateVersionCommandOutput> | void {
|
|
923
|
-
const command = new DeleteEnvironmentTemplateVersionCommand(args);
|
|
924
|
-
if (typeof optionsOrCb === "function") {
|
|
925
|
-
this.send(command, optionsOrCb);
|
|
926
|
-
} else if (typeof cb === "function") {
|
|
927
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
928
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
929
|
-
} else {
|
|
930
|
-
return this.send(command, optionsOrCb);
|
|
931
|
-
}
|
|
932
|
-
}
|
|
933
|
-
|
|
934
|
-
/**
|
|
935
|
-
* <p>Delete a service.</p>
|
|
936
|
-
*/
|
|
937
|
-
public deleteService(
|
|
938
|
-
args: DeleteServiceCommandInput,
|
|
939
|
-
options?: __HttpHandlerOptions
|
|
940
|
-
): Promise<DeleteServiceCommandOutput>;
|
|
941
|
-
public deleteService(
|
|
942
|
-
args: DeleteServiceCommandInput,
|
|
943
|
-
cb: (err: any, data?: DeleteServiceCommandOutput) => void
|
|
944
|
-
): void;
|
|
945
|
-
public deleteService(
|
|
946
|
-
args: DeleteServiceCommandInput,
|
|
947
|
-
options: __HttpHandlerOptions,
|
|
948
|
-
cb: (err: any, data?: DeleteServiceCommandOutput) => void
|
|
949
|
-
): void;
|
|
950
|
-
public deleteService(
|
|
951
|
-
args: DeleteServiceCommandInput,
|
|
952
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteServiceCommandOutput) => void),
|
|
953
|
-
cb?: (err: any, data?: DeleteServiceCommandOutput) => void
|
|
954
|
-
): Promise<DeleteServiceCommandOutput> | void {
|
|
955
|
-
const command = new DeleteServiceCommand(args);
|
|
956
|
-
if (typeof optionsOrCb === "function") {
|
|
957
|
-
this.send(command, optionsOrCb);
|
|
958
|
-
} else if (typeof cb === "function") {
|
|
959
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
960
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
961
|
-
} else {
|
|
962
|
-
return this.send(command, optionsOrCb);
|
|
963
|
-
}
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
/**
|
|
967
|
-
* <p>If no other major or minor versions of the service template exist, delete the service template.</p>
|
|
968
|
-
*/
|
|
969
|
-
public deleteServiceTemplate(
|
|
970
|
-
args: DeleteServiceTemplateCommandInput,
|
|
971
|
-
options?: __HttpHandlerOptions
|
|
972
|
-
): Promise<DeleteServiceTemplateCommandOutput>;
|
|
973
|
-
public deleteServiceTemplate(
|
|
974
|
-
args: DeleteServiceTemplateCommandInput,
|
|
975
|
-
cb: (err: any, data?: DeleteServiceTemplateCommandOutput) => void
|
|
976
|
-
): void;
|
|
977
|
-
public deleteServiceTemplate(
|
|
978
|
-
args: DeleteServiceTemplateCommandInput,
|
|
979
|
-
options: __HttpHandlerOptions,
|
|
980
|
-
cb: (err: any, data?: DeleteServiceTemplateCommandOutput) => void
|
|
981
|
-
): void;
|
|
982
|
-
public deleteServiceTemplate(
|
|
983
|
-
args: DeleteServiceTemplateCommandInput,
|
|
984
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteServiceTemplateCommandOutput) => void),
|
|
985
|
-
cb?: (err: any, data?: DeleteServiceTemplateCommandOutput) => void
|
|
986
|
-
): Promise<DeleteServiceTemplateCommandOutput> | void {
|
|
987
|
-
const command = new DeleteServiceTemplateCommand(args);
|
|
988
|
-
if (typeof optionsOrCb === "function") {
|
|
989
|
-
this.send(command, optionsOrCb);
|
|
990
|
-
} else if (typeof cb === "function") {
|
|
991
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
992
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
993
|
-
} else {
|
|
994
|
-
return this.send(command, optionsOrCb);
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
|
|
998
|
-
/**
|
|
999
|
-
* <p>If no other minor versions of a service template exist, delete a major version of the service template if it's not the
|
|
1000
|
-
* <code>Recommended</code> version. Delete the <code>Recommended</code> version of the service template if no other major versions or
|
|
1001
|
-
* minor versions of the service template exist. A major version of a service template is a version that <i>isn't</i> backwards
|
|
1002
|
-
* compatible.</p>
|
|
1003
|
-
* <p>Delete a minor version of a service template if it's not the <code>Recommended</code> version. Delete a <code>Recommended</code> minor
|
|
1004
|
-
* version of the service template if no other minor versions of the service template exist. A minor version of a service template is a
|
|
1005
|
-
* version that's backwards compatible.</p>
|
|
1006
|
-
*/
|
|
1007
|
-
public deleteServiceTemplateVersion(
|
|
1008
|
-
args: DeleteServiceTemplateVersionCommandInput,
|
|
1009
|
-
options?: __HttpHandlerOptions
|
|
1010
|
-
): Promise<DeleteServiceTemplateVersionCommandOutput>;
|
|
1011
|
-
public deleteServiceTemplateVersion(
|
|
1012
|
-
args: DeleteServiceTemplateVersionCommandInput,
|
|
1013
|
-
cb: (err: any, data?: DeleteServiceTemplateVersionCommandOutput) => void
|
|
1014
|
-
): void;
|
|
1015
|
-
public deleteServiceTemplateVersion(
|
|
1016
|
-
args: DeleteServiceTemplateVersionCommandInput,
|
|
1017
|
-
options: __HttpHandlerOptions,
|
|
1018
|
-
cb: (err: any, data?: DeleteServiceTemplateVersionCommandOutput) => void
|
|
1019
|
-
): void;
|
|
1020
|
-
public deleteServiceTemplateVersion(
|
|
1021
|
-
args: DeleteServiceTemplateVersionCommandInput,
|
|
1022
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: DeleteServiceTemplateVersionCommandOutput) => void),
|
|
1023
|
-
cb?: (err: any, data?: DeleteServiceTemplateVersionCommandOutput) => void
|
|
1024
|
-
): Promise<DeleteServiceTemplateVersionCommandOutput> | void {
|
|
1025
|
-
const command = new DeleteServiceTemplateVersionCommand(args);
|
|
1026
|
-
if (typeof optionsOrCb === "function") {
|
|
1027
|
-
this.send(command, optionsOrCb);
|
|
1028
|
-
} else if (typeof cb === "function") {
|
|
1029
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1030
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1031
|
-
} else {
|
|
1032
|
-
return this.send(command, optionsOrCb);
|
|
1033
|
-
}
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
/**
|
|
1037
|
-
* <p>Get detail data for the AWS Proton pipeline service role.</p>
|
|
1038
|
-
*/
|
|
1039
|
-
public getAccountSettings(
|
|
1040
|
-
args: GetAccountSettingsCommandInput,
|
|
1041
|
-
options?: __HttpHandlerOptions
|
|
1042
|
-
): Promise<GetAccountSettingsCommandOutput>;
|
|
1043
|
-
public getAccountSettings(
|
|
1044
|
-
args: GetAccountSettingsCommandInput,
|
|
1045
|
-
cb: (err: any, data?: GetAccountSettingsCommandOutput) => void
|
|
1046
|
-
): void;
|
|
1047
|
-
public getAccountSettings(
|
|
1048
|
-
args: GetAccountSettingsCommandInput,
|
|
1049
|
-
options: __HttpHandlerOptions,
|
|
1050
|
-
cb: (err: any, data?: GetAccountSettingsCommandOutput) => void
|
|
1051
|
-
): void;
|
|
1052
|
-
public getAccountSettings(
|
|
1053
|
-
args: GetAccountSettingsCommandInput,
|
|
1054
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetAccountSettingsCommandOutput) => void),
|
|
1055
|
-
cb?: (err: any, data?: GetAccountSettingsCommandOutput) => void
|
|
1056
|
-
): Promise<GetAccountSettingsCommandOutput> | void {
|
|
1057
|
-
const command = new GetAccountSettingsCommand(args);
|
|
1058
|
-
if (typeof optionsOrCb === "function") {
|
|
1059
|
-
this.send(command, optionsOrCb);
|
|
1060
|
-
} else if (typeof cb === "function") {
|
|
1061
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1062
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1063
|
-
} else {
|
|
1064
|
-
return this.send(command, optionsOrCb);
|
|
1065
|
-
}
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
/**
|
|
1069
|
-
* <p>Get detail data for an environment.</p>
|
|
1070
|
-
*/
|
|
1071
|
-
public getEnvironment(
|
|
1072
|
-
args: GetEnvironmentCommandInput,
|
|
1073
|
-
options?: __HttpHandlerOptions
|
|
1074
|
-
): Promise<GetEnvironmentCommandOutput>;
|
|
1075
|
-
public getEnvironment(
|
|
1076
|
-
args: GetEnvironmentCommandInput,
|
|
1077
|
-
cb: (err: any, data?: GetEnvironmentCommandOutput) => void
|
|
1078
|
-
): void;
|
|
1079
|
-
public getEnvironment(
|
|
1080
|
-
args: GetEnvironmentCommandInput,
|
|
1081
|
-
options: __HttpHandlerOptions,
|
|
1082
|
-
cb: (err: any, data?: GetEnvironmentCommandOutput) => void
|
|
1083
|
-
): void;
|
|
1084
|
-
public getEnvironment(
|
|
1085
|
-
args: GetEnvironmentCommandInput,
|
|
1086
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetEnvironmentCommandOutput) => void),
|
|
1087
|
-
cb?: (err: any, data?: GetEnvironmentCommandOutput) => void
|
|
1088
|
-
): Promise<GetEnvironmentCommandOutput> | void {
|
|
1089
|
-
const command = new GetEnvironmentCommand(args);
|
|
1090
|
-
if (typeof optionsOrCb === "function") {
|
|
1091
|
-
this.send(command, optionsOrCb);
|
|
1092
|
-
} else if (typeof cb === "function") {
|
|
1093
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1094
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1095
|
-
} else {
|
|
1096
|
-
return this.send(command, optionsOrCb);
|
|
1097
|
-
}
|
|
1098
|
-
}
|
|
1099
|
-
|
|
1100
|
-
/**
|
|
1101
|
-
* <p>In an environment account, view the detail data for an environment account connection.</p>
|
|
1102
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
|
|
1103
|
-
* connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
|
|
1104
|
-
*/
|
|
1105
|
-
public getEnvironmentAccountConnection(
|
|
1106
|
-
args: GetEnvironmentAccountConnectionCommandInput,
|
|
1107
|
-
options?: __HttpHandlerOptions
|
|
1108
|
-
): Promise<GetEnvironmentAccountConnectionCommandOutput>;
|
|
1109
|
-
public getEnvironmentAccountConnection(
|
|
1110
|
-
args: GetEnvironmentAccountConnectionCommandInput,
|
|
1111
|
-
cb: (err: any, data?: GetEnvironmentAccountConnectionCommandOutput) => void
|
|
1112
|
-
): void;
|
|
1113
|
-
public getEnvironmentAccountConnection(
|
|
1114
|
-
args: GetEnvironmentAccountConnectionCommandInput,
|
|
1115
|
-
options: __HttpHandlerOptions,
|
|
1116
|
-
cb: (err: any, data?: GetEnvironmentAccountConnectionCommandOutput) => void
|
|
1117
|
-
): void;
|
|
1118
|
-
public getEnvironmentAccountConnection(
|
|
1119
|
-
args: GetEnvironmentAccountConnectionCommandInput,
|
|
1120
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetEnvironmentAccountConnectionCommandOutput) => void),
|
|
1121
|
-
cb?: (err: any, data?: GetEnvironmentAccountConnectionCommandOutput) => void
|
|
1122
|
-
): Promise<GetEnvironmentAccountConnectionCommandOutput> | void {
|
|
1123
|
-
const command = new GetEnvironmentAccountConnectionCommand(args);
|
|
1124
|
-
if (typeof optionsOrCb === "function") {
|
|
1125
|
-
this.send(command, optionsOrCb);
|
|
1126
|
-
} else if (typeof cb === "function") {
|
|
1127
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1128
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1129
|
-
} else {
|
|
1130
|
-
return this.send(command, optionsOrCb);
|
|
1131
|
-
}
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
/**
|
|
1135
|
-
* <p>Get detail data for an environment template.</p>
|
|
1136
|
-
*/
|
|
1137
|
-
public getEnvironmentTemplate(
|
|
1138
|
-
args: GetEnvironmentTemplateCommandInput,
|
|
1139
|
-
options?: __HttpHandlerOptions
|
|
1140
|
-
): Promise<GetEnvironmentTemplateCommandOutput>;
|
|
1141
|
-
public getEnvironmentTemplate(
|
|
1142
|
-
args: GetEnvironmentTemplateCommandInput,
|
|
1143
|
-
cb: (err: any, data?: GetEnvironmentTemplateCommandOutput) => void
|
|
1144
|
-
): void;
|
|
1145
|
-
public getEnvironmentTemplate(
|
|
1146
|
-
args: GetEnvironmentTemplateCommandInput,
|
|
1147
|
-
options: __HttpHandlerOptions,
|
|
1148
|
-
cb: (err: any, data?: GetEnvironmentTemplateCommandOutput) => void
|
|
1149
|
-
): void;
|
|
1150
|
-
public getEnvironmentTemplate(
|
|
1151
|
-
args: GetEnvironmentTemplateCommandInput,
|
|
1152
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetEnvironmentTemplateCommandOutput) => void),
|
|
1153
|
-
cb?: (err: any, data?: GetEnvironmentTemplateCommandOutput) => void
|
|
1154
|
-
): Promise<GetEnvironmentTemplateCommandOutput> | void {
|
|
1155
|
-
const command = new GetEnvironmentTemplateCommand(args);
|
|
1156
|
-
if (typeof optionsOrCb === "function") {
|
|
1157
|
-
this.send(command, optionsOrCb);
|
|
1158
|
-
} else if (typeof cb === "function") {
|
|
1159
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1160
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1161
|
-
} else {
|
|
1162
|
-
return this.send(command, optionsOrCb);
|
|
1163
|
-
}
|
|
1164
|
-
}
|
|
1165
|
-
|
|
1166
|
-
/**
|
|
1167
|
-
* <p>View detail data for a major or minor version of an environment template.</p>
|
|
1168
|
-
*/
|
|
1169
|
-
public getEnvironmentTemplateVersion(
|
|
1170
|
-
args: GetEnvironmentTemplateVersionCommandInput,
|
|
1171
|
-
options?: __HttpHandlerOptions
|
|
1172
|
-
): Promise<GetEnvironmentTemplateVersionCommandOutput>;
|
|
1173
|
-
public getEnvironmentTemplateVersion(
|
|
1174
|
-
args: GetEnvironmentTemplateVersionCommandInput,
|
|
1175
|
-
cb: (err: any, data?: GetEnvironmentTemplateVersionCommandOutput) => void
|
|
1176
|
-
): void;
|
|
1177
|
-
public getEnvironmentTemplateVersion(
|
|
1178
|
-
args: GetEnvironmentTemplateVersionCommandInput,
|
|
1179
|
-
options: __HttpHandlerOptions,
|
|
1180
|
-
cb: (err: any, data?: GetEnvironmentTemplateVersionCommandOutput) => void
|
|
1181
|
-
): void;
|
|
1182
|
-
public getEnvironmentTemplateVersion(
|
|
1183
|
-
args: GetEnvironmentTemplateVersionCommandInput,
|
|
1184
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetEnvironmentTemplateVersionCommandOutput) => void),
|
|
1185
|
-
cb?: (err: any, data?: GetEnvironmentTemplateVersionCommandOutput) => void
|
|
1186
|
-
): Promise<GetEnvironmentTemplateVersionCommandOutput> | void {
|
|
1187
|
-
const command = new GetEnvironmentTemplateVersionCommand(args);
|
|
1188
|
-
if (typeof optionsOrCb === "function") {
|
|
1189
|
-
this.send(command, optionsOrCb);
|
|
1190
|
-
} else if (typeof cb === "function") {
|
|
1191
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1192
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1193
|
-
} else {
|
|
1194
|
-
return this.send(command, optionsOrCb);
|
|
1195
|
-
}
|
|
1196
|
-
}
|
|
1197
|
-
|
|
1198
|
-
/**
|
|
1199
|
-
* <p>Get detail data for a service.</p>
|
|
1200
|
-
*/
|
|
1201
|
-
public getService(args: GetServiceCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceCommandOutput>;
|
|
1202
|
-
public getService(args: GetServiceCommandInput, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
|
|
1203
|
-
public getService(
|
|
1204
|
-
args: GetServiceCommandInput,
|
|
1205
|
-
options: __HttpHandlerOptions,
|
|
1206
|
-
cb: (err: any, data?: GetServiceCommandOutput) => void
|
|
1207
|
-
): void;
|
|
1208
|
-
public getService(
|
|
1209
|
-
args: GetServiceCommandInput,
|
|
1210
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetServiceCommandOutput) => void),
|
|
1211
|
-
cb?: (err: any, data?: GetServiceCommandOutput) => void
|
|
1212
|
-
): Promise<GetServiceCommandOutput> | void {
|
|
1213
|
-
const command = new GetServiceCommand(args);
|
|
1214
|
-
if (typeof optionsOrCb === "function") {
|
|
1215
|
-
this.send(command, optionsOrCb);
|
|
1216
|
-
} else if (typeof cb === "function") {
|
|
1217
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1218
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1219
|
-
} else {
|
|
1220
|
-
return this.send(command, optionsOrCb);
|
|
1221
|
-
}
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
/**
|
|
1225
|
-
* <p>Get detail data for a service instance. A service instance is an instantiation of service template, which is running in a specific
|
|
1226
|
-
* environment.</p>
|
|
1227
|
-
*/
|
|
1228
|
-
public getServiceInstance(
|
|
1229
|
-
args: GetServiceInstanceCommandInput,
|
|
1230
|
-
options?: __HttpHandlerOptions
|
|
1231
|
-
): Promise<GetServiceInstanceCommandOutput>;
|
|
1232
|
-
public getServiceInstance(
|
|
1233
|
-
args: GetServiceInstanceCommandInput,
|
|
1234
|
-
cb: (err: any, data?: GetServiceInstanceCommandOutput) => void
|
|
1235
|
-
): void;
|
|
1236
|
-
public getServiceInstance(
|
|
1237
|
-
args: GetServiceInstanceCommandInput,
|
|
1238
|
-
options: __HttpHandlerOptions,
|
|
1239
|
-
cb: (err: any, data?: GetServiceInstanceCommandOutput) => void
|
|
1240
|
-
): void;
|
|
1241
|
-
public getServiceInstance(
|
|
1242
|
-
args: GetServiceInstanceCommandInput,
|
|
1243
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetServiceInstanceCommandOutput) => void),
|
|
1244
|
-
cb?: (err: any, data?: GetServiceInstanceCommandOutput) => void
|
|
1245
|
-
): Promise<GetServiceInstanceCommandOutput> | void {
|
|
1246
|
-
const command = new GetServiceInstanceCommand(args);
|
|
1247
|
-
if (typeof optionsOrCb === "function") {
|
|
1248
|
-
this.send(command, optionsOrCb);
|
|
1249
|
-
} else if (typeof cb === "function") {
|
|
1250
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1251
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1252
|
-
} else {
|
|
1253
|
-
return this.send(command, optionsOrCb);
|
|
1254
|
-
}
|
|
1255
|
-
}
|
|
1256
|
-
|
|
1257
|
-
/**
|
|
1258
|
-
* <p>Get detail data for a service template.</p>
|
|
1259
|
-
*/
|
|
1260
|
-
public getServiceTemplate(
|
|
1261
|
-
args: GetServiceTemplateCommandInput,
|
|
1262
|
-
options?: __HttpHandlerOptions
|
|
1263
|
-
): Promise<GetServiceTemplateCommandOutput>;
|
|
1264
|
-
public getServiceTemplate(
|
|
1265
|
-
args: GetServiceTemplateCommandInput,
|
|
1266
|
-
cb: (err: any, data?: GetServiceTemplateCommandOutput) => void
|
|
1267
|
-
): void;
|
|
1268
|
-
public getServiceTemplate(
|
|
1269
|
-
args: GetServiceTemplateCommandInput,
|
|
1270
|
-
options: __HttpHandlerOptions,
|
|
1271
|
-
cb: (err: any, data?: GetServiceTemplateCommandOutput) => void
|
|
1272
|
-
): void;
|
|
1273
|
-
public getServiceTemplate(
|
|
1274
|
-
args: GetServiceTemplateCommandInput,
|
|
1275
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetServiceTemplateCommandOutput) => void),
|
|
1276
|
-
cb?: (err: any, data?: GetServiceTemplateCommandOutput) => void
|
|
1277
|
-
): Promise<GetServiceTemplateCommandOutput> | void {
|
|
1278
|
-
const command = new GetServiceTemplateCommand(args);
|
|
1279
|
-
if (typeof optionsOrCb === "function") {
|
|
1280
|
-
this.send(command, optionsOrCb);
|
|
1281
|
-
} else if (typeof cb === "function") {
|
|
1282
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1283
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1284
|
-
} else {
|
|
1285
|
-
return this.send(command, optionsOrCb);
|
|
1286
|
-
}
|
|
1287
|
-
}
|
|
1288
|
-
|
|
1289
|
-
/**
|
|
1290
|
-
* <p>View detail data for a major or minor version of a service template.</p>
|
|
1291
|
-
*/
|
|
1292
|
-
public getServiceTemplateVersion(
|
|
1293
|
-
args: GetServiceTemplateVersionCommandInput,
|
|
1294
|
-
options?: __HttpHandlerOptions
|
|
1295
|
-
): Promise<GetServiceTemplateVersionCommandOutput>;
|
|
1296
|
-
public getServiceTemplateVersion(
|
|
1297
|
-
args: GetServiceTemplateVersionCommandInput,
|
|
1298
|
-
cb: (err: any, data?: GetServiceTemplateVersionCommandOutput) => void
|
|
1299
|
-
): void;
|
|
1300
|
-
public getServiceTemplateVersion(
|
|
1301
|
-
args: GetServiceTemplateVersionCommandInput,
|
|
1302
|
-
options: __HttpHandlerOptions,
|
|
1303
|
-
cb: (err: any, data?: GetServiceTemplateVersionCommandOutput) => void
|
|
1304
|
-
): void;
|
|
1305
|
-
public getServiceTemplateVersion(
|
|
1306
|
-
args: GetServiceTemplateVersionCommandInput,
|
|
1307
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: GetServiceTemplateVersionCommandOutput) => void),
|
|
1308
|
-
cb?: (err: any, data?: GetServiceTemplateVersionCommandOutput) => void
|
|
1309
|
-
): Promise<GetServiceTemplateVersionCommandOutput> | void {
|
|
1310
|
-
const command = new GetServiceTemplateVersionCommand(args);
|
|
1311
|
-
if (typeof optionsOrCb === "function") {
|
|
1312
|
-
this.send(command, optionsOrCb);
|
|
1313
|
-
} else if (typeof cb === "function") {
|
|
1314
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1315
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1316
|
-
} else {
|
|
1317
|
-
return this.send(command, optionsOrCb);
|
|
1318
|
-
}
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
|
-
/**
|
|
1322
|
-
* <p>View a list of environment account connections.</p>
|
|
1323
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
|
|
1324
|
-
* connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
|
|
1325
|
-
*/
|
|
1326
|
-
public listEnvironmentAccountConnections(
|
|
1327
|
-
args: ListEnvironmentAccountConnectionsCommandInput,
|
|
1328
|
-
options?: __HttpHandlerOptions
|
|
1329
|
-
): Promise<ListEnvironmentAccountConnectionsCommandOutput>;
|
|
1330
|
-
public listEnvironmentAccountConnections(
|
|
1331
|
-
args: ListEnvironmentAccountConnectionsCommandInput,
|
|
1332
|
-
cb: (err: any, data?: ListEnvironmentAccountConnectionsCommandOutput) => void
|
|
1333
|
-
): void;
|
|
1334
|
-
public listEnvironmentAccountConnections(
|
|
1335
|
-
args: ListEnvironmentAccountConnectionsCommandInput,
|
|
1336
|
-
options: __HttpHandlerOptions,
|
|
1337
|
-
cb: (err: any, data?: ListEnvironmentAccountConnectionsCommandOutput) => void
|
|
1338
|
-
): void;
|
|
1339
|
-
public listEnvironmentAccountConnections(
|
|
1340
|
-
args: ListEnvironmentAccountConnectionsCommandInput,
|
|
1341
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListEnvironmentAccountConnectionsCommandOutput) => void),
|
|
1342
|
-
cb?: (err: any, data?: ListEnvironmentAccountConnectionsCommandOutput) => void
|
|
1343
|
-
): Promise<ListEnvironmentAccountConnectionsCommandOutput> | void {
|
|
1344
|
-
const command = new ListEnvironmentAccountConnectionsCommand(args);
|
|
1345
|
-
if (typeof optionsOrCb === "function") {
|
|
1346
|
-
this.send(command, optionsOrCb);
|
|
1347
|
-
} else if (typeof cb === "function") {
|
|
1348
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1349
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1350
|
-
} else {
|
|
1351
|
-
return this.send(command, optionsOrCb);
|
|
1352
|
-
}
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
|
-
/**
|
|
1356
|
-
* <p>List environments with detail data summaries.</p>
|
|
1357
|
-
*/
|
|
1358
|
-
public listEnvironments(
|
|
1359
|
-
args: ListEnvironmentsCommandInput,
|
|
1360
|
-
options?: __HttpHandlerOptions
|
|
1361
|
-
): Promise<ListEnvironmentsCommandOutput>;
|
|
1362
|
-
public listEnvironments(
|
|
1363
|
-
args: ListEnvironmentsCommandInput,
|
|
1364
|
-
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
|
|
1365
|
-
): void;
|
|
1366
|
-
public listEnvironments(
|
|
1367
|
-
args: ListEnvironmentsCommandInput,
|
|
1368
|
-
options: __HttpHandlerOptions,
|
|
1369
|
-
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
|
|
1370
|
-
): void;
|
|
1371
|
-
public listEnvironments(
|
|
1372
|
-
args: ListEnvironmentsCommandInput,
|
|
1373
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListEnvironmentsCommandOutput) => void),
|
|
1374
|
-
cb?: (err: any, data?: ListEnvironmentsCommandOutput) => void
|
|
1375
|
-
): Promise<ListEnvironmentsCommandOutput> | void {
|
|
1376
|
-
const command = new ListEnvironmentsCommand(args);
|
|
1377
|
-
if (typeof optionsOrCb === "function") {
|
|
1378
|
-
this.send(command, optionsOrCb);
|
|
1379
|
-
} else if (typeof cb === "function") {
|
|
1380
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1381
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1382
|
-
} else {
|
|
1383
|
-
return this.send(command, optionsOrCb);
|
|
1384
|
-
}
|
|
1385
|
-
}
|
|
1386
|
-
|
|
1387
|
-
/**
|
|
1388
|
-
* <p>List environment templates.</p>
|
|
1389
|
-
*/
|
|
1390
|
-
public listEnvironmentTemplates(
|
|
1391
|
-
args: ListEnvironmentTemplatesCommandInput,
|
|
1392
|
-
options?: __HttpHandlerOptions
|
|
1393
|
-
): Promise<ListEnvironmentTemplatesCommandOutput>;
|
|
1394
|
-
public listEnvironmentTemplates(
|
|
1395
|
-
args: ListEnvironmentTemplatesCommandInput,
|
|
1396
|
-
cb: (err: any, data?: ListEnvironmentTemplatesCommandOutput) => void
|
|
1397
|
-
): void;
|
|
1398
|
-
public listEnvironmentTemplates(
|
|
1399
|
-
args: ListEnvironmentTemplatesCommandInput,
|
|
1400
|
-
options: __HttpHandlerOptions,
|
|
1401
|
-
cb: (err: any, data?: ListEnvironmentTemplatesCommandOutput) => void
|
|
1402
|
-
): void;
|
|
1403
|
-
public listEnvironmentTemplates(
|
|
1404
|
-
args: ListEnvironmentTemplatesCommandInput,
|
|
1405
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListEnvironmentTemplatesCommandOutput) => void),
|
|
1406
|
-
cb?: (err: any, data?: ListEnvironmentTemplatesCommandOutput) => void
|
|
1407
|
-
): Promise<ListEnvironmentTemplatesCommandOutput> | void {
|
|
1408
|
-
const command = new ListEnvironmentTemplatesCommand(args);
|
|
1409
|
-
if (typeof optionsOrCb === "function") {
|
|
1410
|
-
this.send(command, optionsOrCb);
|
|
1411
|
-
} else if (typeof cb === "function") {
|
|
1412
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1413
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1414
|
-
} else {
|
|
1415
|
-
return this.send(command, optionsOrCb);
|
|
1416
|
-
}
|
|
1417
|
-
}
|
|
1418
|
-
|
|
1419
|
-
/**
|
|
1420
|
-
* <p>List major or minor versions of an environment template with detail data.</p>
|
|
1421
|
-
*/
|
|
1422
|
-
public listEnvironmentTemplateVersions(
|
|
1423
|
-
args: ListEnvironmentTemplateVersionsCommandInput,
|
|
1424
|
-
options?: __HttpHandlerOptions
|
|
1425
|
-
): Promise<ListEnvironmentTemplateVersionsCommandOutput>;
|
|
1426
|
-
public listEnvironmentTemplateVersions(
|
|
1427
|
-
args: ListEnvironmentTemplateVersionsCommandInput,
|
|
1428
|
-
cb: (err: any, data?: ListEnvironmentTemplateVersionsCommandOutput) => void
|
|
1429
|
-
): void;
|
|
1430
|
-
public listEnvironmentTemplateVersions(
|
|
1431
|
-
args: ListEnvironmentTemplateVersionsCommandInput,
|
|
1432
|
-
options: __HttpHandlerOptions,
|
|
1433
|
-
cb: (err: any, data?: ListEnvironmentTemplateVersionsCommandOutput) => void
|
|
1434
|
-
): void;
|
|
1435
|
-
public listEnvironmentTemplateVersions(
|
|
1436
|
-
args: ListEnvironmentTemplateVersionsCommandInput,
|
|
1437
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListEnvironmentTemplateVersionsCommandOutput) => void),
|
|
1438
|
-
cb?: (err: any, data?: ListEnvironmentTemplateVersionsCommandOutput) => void
|
|
1439
|
-
): Promise<ListEnvironmentTemplateVersionsCommandOutput> | void {
|
|
1440
|
-
const command = new ListEnvironmentTemplateVersionsCommand(args);
|
|
1441
|
-
if (typeof optionsOrCb === "function") {
|
|
1442
|
-
this.send(command, optionsOrCb);
|
|
1443
|
-
} else if (typeof cb === "function") {
|
|
1444
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1445
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1446
|
-
} else {
|
|
1447
|
-
return this.send(command, optionsOrCb);
|
|
1448
|
-
}
|
|
1449
|
-
}
|
|
1450
|
-
|
|
1451
|
-
/**
|
|
1452
|
-
* <p>List service instances with summaries of detail data.</p>
|
|
1453
|
-
*/
|
|
1454
|
-
public listServiceInstances(
|
|
1455
|
-
args: ListServiceInstancesCommandInput,
|
|
1456
|
-
options?: __HttpHandlerOptions
|
|
1457
|
-
): Promise<ListServiceInstancesCommandOutput>;
|
|
1458
|
-
public listServiceInstances(
|
|
1459
|
-
args: ListServiceInstancesCommandInput,
|
|
1460
|
-
cb: (err: any, data?: ListServiceInstancesCommandOutput) => void
|
|
1461
|
-
): void;
|
|
1462
|
-
public listServiceInstances(
|
|
1463
|
-
args: ListServiceInstancesCommandInput,
|
|
1464
|
-
options: __HttpHandlerOptions,
|
|
1465
|
-
cb: (err: any, data?: ListServiceInstancesCommandOutput) => void
|
|
1466
|
-
): void;
|
|
1467
|
-
public listServiceInstances(
|
|
1468
|
-
args: ListServiceInstancesCommandInput,
|
|
1469
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListServiceInstancesCommandOutput) => void),
|
|
1470
|
-
cb?: (err: any, data?: ListServiceInstancesCommandOutput) => void
|
|
1471
|
-
): Promise<ListServiceInstancesCommandOutput> | void {
|
|
1472
|
-
const command = new ListServiceInstancesCommand(args);
|
|
1473
|
-
if (typeof optionsOrCb === "function") {
|
|
1474
|
-
this.send(command, optionsOrCb);
|
|
1475
|
-
} else if (typeof cb === "function") {
|
|
1476
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1477
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1478
|
-
} else {
|
|
1479
|
-
return this.send(command, optionsOrCb);
|
|
1480
|
-
}
|
|
1481
|
-
}
|
|
1482
|
-
|
|
1483
|
-
/**
|
|
1484
|
-
* <p>List services with summaries of detail data.</p>
|
|
1485
|
-
*/
|
|
1486
|
-
public listServices(
|
|
1487
|
-
args: ListServicesCommandInput,
|
|
1488
|
-
options?: __HttpHandlerOptions
|
|
1489
|
-
): Promise<ListServicesCommandOutput>;
|
|
1490
|
-
public listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
1491
|
-
public listServices(
|
|
1492
|
-
args: ListServicesCommandInput,
|
|
1493
|
-
options: __HttpHandlerOptions,
|
|
1494
|
-
cb: (err: any, data?: ListServicesCommandOutput) => void
|
|
1495
|
-
): void;
|
|
1496
|
-
public listServices(
|
|
1497
|
-
args: ListServicesCommandInput,
|
|
1498
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListServicesCommandOutput) => void),
|
|
1499
|
-
cb?: (err: any, data?: ListServicesCommandOutput) => void
|
|
1500
|
-
): Promise<ListServicesCommandOutput> | void {
|
|
1501
|
-
const command = new ListServicesCommand(args);
|
|
1502
|
-
if (typeof optionsOrCb === "function") {
|
|
1503
|
-
this.send(command, optionsOrCb);
|
|
1504
|
-
} else if (typeof cb === "function") {
|
|
1505
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1506
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1507
|
-
} else {
|
|
1508
|
-
return this.send(command, optionsOrCb);
|
|
1509
|
-
}
|
|
1510
|
-
}
|
|
1511
|
-
|
|
1512
|
-
/**
|
|
1513
|
-
* <p>List service templates with detail data.</p>
|
|
1514
|
-
*/
|
|
1515
|
-
public listServiceTemplates(
|
|
1516
|
-
args: ListServiceTemplatesCommandInput,
|
|
1517
|
-
options?: __HttpHandlerOptions
|
|
1518
|
-
): Promise<ListServiceTemplatesCommandOutput>;
|
|
1519
|
-
public listServiceTemplates(
|
|
1520
|
-
args: ListServiceTemplatesCommandInput,
|
|
1521
|
-
cb: (err: any, data?: ListServiceTemplatesCommandOutput) => void
|
|
1522
|
-
): void;
|
|
1523
|
-
public listServiceTemplates(
|
|
1524
|
-
args: ListServiceTemplatesCommandInput,
|
|
1525
|
-
options: __HttpHandlerOptions,
|
|
1526
|
-
cb: (err: any, data?: ListServiceTemplatesCommandOutput) => void
|
|
1527
|
-
): void;
|
|
1528
|
-
public listServiceTemplates(
|
|
1529
|
-
args: ListServiceTemplatesCommandInput,
|
|
1530
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListServiceTemplatesCommandOutput) => void),
|
|
1531
|
-
cb?: (err: any, data?: ListServiceTemplatesCommandOutput) => void
|
|
1532
|
-
): Promise<ListServiceTemplatesCommandOutput> | void {
|
|
1533
|
-
const command = new ListServiceTemplatesCommand(args);
|
|
1534
|
-
if (typeof optionsOrCb === "function") {
|
|
1535
|
-
this.send(command, optionsOrCb);
|
|
1536
|
-
} else if (typeof cb === "function") {
|
|
1537
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1538
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1539
|
-
} else {
|
|
1540
|
-
return this.send(command, optionsOrCb);
|
|
1541
|
-
}
|
|
1542
|
-
}
|
|
1543
|
-
|
|
1544
|
-
/**
|
|
1545
|
-
* <p>List major or minor versions of a service template with detail data.</p>
|
|
1546
|
-
*/
|
|
1547
|
-
public listServiceTemplateVersions(
|
|
1548
|
-
args: ListServiceTemplateVersionsCommandInput,
|
|
1549
|
-
options?: __HttpHandlerOptions
|
|
1550
|
-
): Promise<ListServiceTemplateVersionsCommandOutput>;
|
|
1551
|
-
public listServiceTemplateVersions(
|
|
1552
|
-
args: ListServiceTemplateVersionsCommandInput,
|
|
1553
|
-
cb: (err: any, data?: ListServiceTemplateVersionsCommandOutput) => void
|
|
1554
|
-
): void;
|
|
1555
|
-
public listServiceTemplateVersions(
|
|
1556
|
-
args: ListServiceTemplateVersionsCommandInput,
|
|
1557
|
-
options: __HttpHandlerOptions,
|
|
1558
|
-
cb: (err: any, data?: ListServiceTemplateVersionsCommandOutput) => void
|
|
1559
|
-
): void;
|
|
1560
|
-
public listServiceTemplateVersions(
|
|
1561
|
-
args: ListServiceTemplateVersionsCommandInput,
|
|
1562
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListServiceTemplateVersionsCommandOutput) => void),
|
|
1563
|
-
cb?: (err: any, data?: ListServiceTemplateVersionsCommandOutput) => void
|
|
1564
|
-
): Promise<ListServiceTemplateVersionsCommandOutput> | void {
|
|
1565
|
-
const command = new ListServiceTemplateVersionsCommand(args);
|
|
1566
|
-
if (typeof optionsOrCb === "function") {
|
|
1567
|
-
this.send(command, optionsOrCb);
|
|
1568
|
-
} else if (typeof cb === "function") {
|
|
1569
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1570
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1571
|
-
} else {
|
|
1572
|
-
return this.send(command, optionsOrCb);
|
|
1573
|
-
}
|
|
1574
|
-
}
|
|
1575
|
-
|
|
1576
|
-
/**
|
|
1577
|
-
* <p>List tags for a resource. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
|
|
1578
|
-
*/
|
|
1579
|
-
public listTagsForResource(
|
|
1580
|
-
args: ListTagsForResourceCommandInput,
|
|
1581
|
-
options?: __HttpHandlerOptions
|
|
1582
|
-
): Promise<ListTagsForResourceCommandOutput>;
|
|
1583
|
-
public listTagsForResource(
|
|
1584
|
-
args: ListTagsForResourceCommandInput,
|
|
1585
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
1586
|
-
): void;
|
|
1587
|
-
public listTagsForResource(
|
|
1588
|
-
args: ListTagsForResourceCommandInput,
|
|
1589
|
-
options: __HttpHandlerOptions,
|
|
1590
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
1591
|
-
): void;
|
|
1592
|
-
public listTagsForResource(
|
|
1593
|
-
args: ListTagsForResourceCommandInput,
|
|
1594
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: ListTagsForResourceCommandOutput) => void),
|
|
1595
|
-
cb?: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
1596
|
-
): Promise<ListTagsForResourceCommandOutput> | void {
|
|
1597
|
-
const command = new ListTagsForResourceCommand(args);
|
|
1598
|
-
if (typeof optionsOrCb === "function") {
|
|
1599
|
-
this.send(command, optionsOrCb);
|
|
1600
|
-
} else if (typeof cb === "function") {
|
|
1601
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1602
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1603
|
-
} else {
|
|
1604
|
-
return this.send(command, optionsOrCb);
|
|
1605
|
-
}
|
|
1606
|
-
}
|
|
1607
|
-
|
|
1608
|
-
/**
|
|
1609
|
-
* <p>In a management account, reject an environment account connection from another environment account.</p>
|
|
1610
|
-
* <p>After you reject an environment account connection request, you <i>won’t</i> be able to accept or use the rejected
|
|
1611
|
-
* environment account connection.</p>
|
|
1612
|
-
* <p>You <i>can’t</i> reject an environment account connection that is connected to an environment.</p>
|
|
1613
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
|
|
1614
|
-
* connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
|
|
1615
|
-
*/
|
|
1616
|
-
public rejectEnvironmentAccountConnection(
|
|
1617
|
-
args: RejectEnvironmentAccountConnectionCommandInput,
|
|
1618
|
-
options?: __HttpHandlerOptions
|
|
1619
|
-
): Promise<RejectEnvironmentAccountConnectionCommandOutput>;
|
|
1620
|
-
public rejectEnvironmentAccountConnection(
|
|
1621
|
-
args: RejectEnvironmentAccountConnectionCommandInput,
|
|
1622
|
-
cb: (err: any, data?: RejectEnvironmentAccountConnectionCommandOutput) => void
|
|
1623
|
-
): void;
|
|
1624
|
-
public rejectEnvironmentAccountConnection(
|
|
1625
|
-
args: RejectEnvironmentAccountConnectionCommandInput,
|
|
1626
|
-
options: __HttpHandlerOptions,
|
|
1627
|
-
cb: (err: any, data?: RejectEnvironmentAccountConnectionCommandOutput) => void
|
|
1628
|
-
): void;
|
|
1629
|
-
public rejectEnvironmentAccountConnection(
|
|
1630
|
-
args: RejectEnvironmentAccountConnectionCommandInput,
|
|
1631
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: RejectEnvironmentAccountConnectionCommandOutput) => void),
|
|
1632
|
-
cb?: (err: any, data?: RejectEnvironmentAccountConnectionCommandOutput) => void
|
|
1633
|
-
): Promise<RejectEnvironmentAccountConnectionCommandOutput> | void {
|
|
1634
|
-
const command = new RejectEnvironmentAccountConnectionCommand(args);
|
|
1635
|
-
if (typeof optionsOrCb === "function") {
|
|
1636
|
-
this.send(command, optionsOrCb);
|
|
1637
|
-
} else if (typeof cb === "function") {
|
|
1638
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1639
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1640
|
-
} else {
|
|
1641
|
-
return this.send(command, optionsOrCb);
|
|
1642
|
-
}
|
|
1643
|
-
}
|
|
1644
|
-
|
|
1645
|
-
/**
|
|
1646
|
-
* <p>Tag a resource. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
|
|
1647
|
-
*/
|
|
1648
|
-
public tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
1649
|
-
public tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
1650
|
-
public tagResource(
|
|
1651
|
-
args: TagResourceCommandInput,
|
|
1652
|
-
options: __HttpHandlerOptions,
|
|
1653
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
1654
|
-
): void;
|
|
1655
|
-
public tagResource(
|
|
1656
|
-
args: TagResourceCommandInput,
|
|
1657
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: TagResourceCommandOutput) => void),
|
|
1658
|
-
cb?: (err: any, data?: TagResourceCommandOutput) => void
|
|
1659
|
-
): Promise<TagResourceCommandOutput> | void {
|
|
1660
|
-
const command = new TagResourceCommand(args);
|
|
1661
|
-
if (typeof optionsOrCb === "function") {
|
|
1662
|
-
this.send(command, optionsOrCb);
|
|
1663
|
-
} else if (typeof cb === "function") {
|
|
1664
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1665
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1666
|
-
} else {
|
|
1667
|
-
return this.send(command, optionsOrCb);
|
|
1668
|
-
}
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
|
-
/**
|
|
1672
|
-
* <p>Remove a tag from a resource. For more information, see <i>AWS Proton resources and tagging</i> in the <a href="https://docs.aws.amazon.com/proton/latest/adminguide/resources.html">AWS Proton Administrator Guide</a> or <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">AWS Proton User Guide</a>.</p>
|
|
1673
|
-
*/
|
|
1674
|
-
public untagResource(
|
|
1675
|
-
args: UntagResourceCommandInput,
|
|
1676
|
-
options?: __HttpHandlerOptions
|
|
1677
|
-
): Promise<UntagResourceCommandOutput>;
|
|
1678
|
-
public untagResource(
|
|
1679
|
-
args: UntagResourceCommandInput,
|
|
1680
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
1681
|
-
): void;
|
|
1682
|
-
public untagResource(
|
|
1683
|
-
args: UntagResourceCommandInput,
|
|
1684
|
-
options: __HttpHandlerOptions,
|
|
1685
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
1686
|
-
): void;
|
|
1687
|
-
public untagResource(
|
|
1688
|
-
args: UntagResourceCommandInput,
|
|
1689
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UntagResourceCommandOutput) => void),
|
|
1690
|
-
cb?: (err: any, data?: UntagResourceCommandOutput) => void
|
|
1691
|
-
): Promise<UntagResourceCommandOutput> | void {
|
|
1692
|
-
const command = new UntagResourceCommand(args);
|
|
1693
|
-
if (typeof optionsOrCb === "function") {
|
|
1694
|
-
this.send(command, optionsOrCb);
|
|
1695
|
-
} else if (typeof cb === "function") {
|
|
1696
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1697
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1698
|
-
} else {
|
|
1699
|
-
return this.send(command, optionsOrCb);
|
|
1700
|
-
}
|
|
1701
|
-
}
|
|
1702
|
-
|
|
1703
|
-
/**
|
|
1704
|
-
* <p>Update the AWS Proton pipeline service account settings.</p>
|
|
1705
|
-
*/
|
|
1706
|
-
public updateAccountSettings(
|
|
1707
|
-
args: UpdateAccountSettingsCommandInput,
|
|
1708
|
-
options?: __HttpHandlerOptions
|
|
1709
|
-
): Promise<UpdateAccountSettingsCommandOutput>;
|
|
1710
|
-
public updateAccountSettings(
|
|
1711
|
-
args: UpdateAccountSettingsCommandInput,
|
|
1712
|
-
cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void
|
|
1713
|
-
): void;
|
|
1714
|
-
public updateAccountSettings(
|
|
1715
|
-
args: UpdateAccountSettingsCommandInput,
|
|
1716
|
-
options: __HttpHandlerOptions,
|
|
1717
|
-
cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void
|
|
1718
|
-
): void;
|
|
1719
|
-
public updateAccountSettings(
|
|
1720
|
-
args: UpdateAccountSettingsCommandInput,
|
|
1721
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateAccountSettingsCommandOutput) => void),
|
|
1722
|
-
cb?: (err: any, data?: UpdateAccountSettingsCommandOutput) => void
|
|
1723
|
-
): Promise<UpdateAccountSettingsCommandOutput> | void {
|
|
1724
|
-
const command = new UpdateAccountSettingsCommand(args);
|
|
1725
|
-
if (typeof optionsOrCb === "function") {
|
|
1726
|
-
this.send(command, optionsOrCb);
|
|
1727
|
-
} else if (typeof cb === "function") {
|
|
1728
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1729
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1730
|
-
} else {
|
|
1731
|
-
return this.send(command, optionsOrCb);
|
|
1732
|
-
}
|
|
1733
|
-
}
|
|
1734
|
-
|
|
1735
|
-
/**
|
|
1736
|
-
* <p>Update an environment.</p>
|
|
1737
|
-
* <p>If the environment is associated with an environment account connection, <i>don't</i> update or include the
|
|
1738
|
-
* <code>protonServiceRoleArn</code> parameter to update or connect to an environment account connection. </p>
|
|
1739
|
-
* <p>You can only update to a new environment account connection if it was created in the same environment account that the current
|
|
1740
|
-
* environment account connection was created in and is associated with the current environment.</p>
|
|
1741
|
-
* <p>If the environment <i>isn't</i> associated with an environment account connection, <i>don't</i> update or
|
|
1742
|
-
* include the <code>environmentAccountConnectionId</code> parameter to update or connect to an environment account connection.</p>
|
|
1743
|
-
* <p>You can update either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code> parameter and value. You
|
|
1744
|
-
* can’t update both.</p>
|
|
1745
|
-
* <p>There are four modes for updating an environment as described in the following. The <code>deploymentType</code> field defines the
|
|
1746
|
-
* mode.</p>
|
|
1747
|
-
* <dl>
|
|
1748
|
-
* <dt/>
|
|
1749
|
-
* <dd>
|
|
1750
|
-
* <p>
|
|
1751
|
-
* <code>NONE</code>
|
|
1752
|
-
* </p>
|
|
1753
|
-
* <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
|
|
1754
|
-
* </dd>
|
|
1755
|
-
* <dt/>
|
|
1756
|
-
* <dd>
|
|
1757
|
-
* <p>
|
|
1758
|
-
* <code>CURRENT_VERSION</code>
|
|
1759
|
-
* </p>
|
|
1760
|
-
* <p>In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are
|
|
1761
|
-
* updated. <i>Don’t</i> include minor or major version parameters when you use this
|
|
1762
|
-
* <code>deployment-type</code>.</p>
|
|
1763
|
-
* </dd>
|
|
1764
|
-
* <dt/>
|
|
1765
|
-
* <dd>
|
|
1766
|
-
* <p>
|
|
1767
|
-
* <code>MINOR_VERSION</code>
|
|
1768
|
-
* </p>
|
|
1769
|
-
* <p>In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current
|
|
1770
|
-
* major version in use, by default. You can also specify a different minor version of the current major version in use.</p>
|
|
1771
|
-
* </dd>
|
|
1772
|
-
* <dt/>
|
|
1773
|
-
* <dd>
|
|
1774
|
-
* <p>
|
|
1775
|
-
* <code>MAJOR_VERSION</code>
|
|
1776
|
-
* </p>
|
|
1777
|
-
* <p>In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of
|
|
1778
|
-
* the current template, by default. You can also specify a different major version that's higher than the major version in use
|
|
1779
|
-
* and a minor version (optional).</p>
|
|
1780
|
-
* </dd>
|
|
1781
|
-
* </dl>
|
|
1782
|
-
*/
|
|
1783
|
-
public updateEnvironment(
|
|
1784
|
-
args: UpdateEnvironmentCommandInput,
|
|
1785
|
-
options?: __HttpHandlerOptions
|
|
1786
|
-
): Promise<UpdateEnvironmentCommandOutput>;
|
|
1787
|
-
public updateEnvironment(
|
|
1788
|
-
args: UpdateEnvironmentCommandInput,
|
|
1789
|
-
cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
|
|
1790
|
-
): void;
|
|
1791
|
-
public updateEnvironment(
|
|
1792
|
-
args: UpdateEnvironmentCommandInput,
|
|
1793
|
-
options: __HttpHandlerOptions,
|
|
1794
|
-
cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
|
|
1795
|
-
): void;
|
|
1796
|
-
public updateEnvironment(
|
|
1797
|
-
args: UpdateEnvironmentCommandInput,
|
|
1798
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateEnvironmentCommandOutput) => void),
|
|
1799
|
-
cb?: (err: any, data?: UpdateEnvironmentCommandOutput) => void
|
|
1800
|
-
): Promise<UpdateEnvironmentCommandOutput> | void {
|
|
1801
|
-
const command = new UpdateEnvironmentCommand(args);
|
|
1802
|
-
if (typeof optionsOrCb === "function") {
|
|
1803
|
-
this.send(command, optionsOrCb);
|
|
1804
|
-
} else if (typeof cb === "function") {
|
|
1805
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1806
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1807
|
-
} else {
|
|
1808
|
-
return this.send(command, optionsOrCb);
|
|
1809
|
-
}
|
|
1810
|
-
}
|
|
1811
|
-
|
|
1812
|
-
/**
|
|
1813
|
-
* <p>In an environment account, update an environment account connection to use a new IAM role.</p>
|
|
1814
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html">Environment account
|
|
1815
|
-
* connections</a> in the <i>AWS Proton Administrator guide</i>.</p>
|
|
1816
|
-
*/
|
|
1817
|
-
public updateEnvironmentAccountConnection(
|
|
1818
|
-
args: UpdateEnvironmentAccountConnectionCommandInput,
|
|
1819
|
-
options?: __HttpHandlerOptions
|
|
1820
|
-
): Promise<UpdateEnvironmentAccountConnectionCommandOutput>;
|
|
1821
|
-
public updateEnvironmentAccountConnection(
|
|
1822
|
-
args: UpdateEnvironmentAccountConnectionCommandInput,
|
|
1823
|
-
cb: (err: any, data?: UpdateEnvironmentAccountConnectionCommandOutput) => void
|
|
1824
|
-
): void;
|
|
1825
|
-
public updateEnvironmentAccountConnection(
|
|
1826
|
-
args: UpdateEnvironmentAccountConnectionCommandInput,
|
|
1827
|
-
options: __HttpHandlerOptions,
|
|
1828
|
-
cb: (err: any, data?: UpdateEnvironmentAccountConnectionCommandOutput) => void
|
|
1829
|
-
): void;
|
|
1830
|
-
public updateEnvironmentAccountConnection(
|
|
1831
|
-
args: UpdateEnvironmentAccountConnectionCommandInput,
|
|
1832
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateEnvironmentAccountConnectionCommandOutput) => void),
|
|
1833
|
-
cb?: (err: any, data?: UpdateEnvironmentAccountConnectionCommandOutput) => void
|
|
1834
|
-
): Promise<UpdateEnvironmentAccountConnectionCommandOutput> | void {
|
|
1835
|
-
const command = new UpdateEnvironmentAccountConnectionCommand(args);
|
|
1836
|
-
if (typeof optionsOrCb === "function") {
|
|
1837
|
-
this.send(command, optionsOrCb);
|
|
1838
|
-
} else if (typeof cb === "function") {
|
|
1839
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1840
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1841
|
-
} else {
|
|
1842
|
-
return this.send(command, optionsOrCb);
|
|
1843
|
-
}
|
|
1844
|
-
}
|
|
1845
|
-
|
|
1846
|
-
/**
|
|
1847
|
-
* <p>Update an environment template.</p>
|
|
1848
|
-
*/
|
|
1849
|
-
public updateEnvironmentTemplate(
|
|
1850
|
-
args: UpdateEnvironmentTemplateCommandInput,
|
|
1851
|
-
options?: __HttpHandlerOptions
|
|
1852
|
-
): Promise<UpdateEnvironmentTemplateCommandOutput>;
|
|
1853
|
-
public updateEnvironmentTemplate(
|
|
1854
|
-
args: UpdateEnvironmentTemplateCommandInput,
|
|
1855
|
-
cb: (err: any, data?: UpdateEnvironmentTemplateCommandOutput) => void
|
|
1856
|
-
): void;
|
|
1857
|
-
public updateEnvironmentTemplate(
|
|
1858
|
-
args: UpdateEnvironmentTemplateCommandInput,
|
|
1859
|
-
options: __HttpHandlerOptions,
|
|
1860
|
-
cb: (err: any, data?: UpdateEnvironmentTemplateCommandOutput) => void
|
|
1861
|
-
): void;
|
|
1862
|
-
public updateEnvironmentTemplate(
|
|
1863
|
-
args: UpdateEnvironmentTemplateCommandInput,
|
|
1864
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateEnvironmentTemplateCommandOutput) => void),
|
|
1865
|
-
cb?: (err: any, data?: UpdateEnvironmentTemplateCommandOutput) => void
|
|
1866
|
-
): Promise<UpdateEnvironmentTemplateCommandOutput> | void {
|
|
1867
|
-
const command = new UpdateEnvironmentTemplateCommand(args);
|
|
1868
|
-
if (typeof optionsOrCb === "function") {
|
|
1869
|
-
this.send(command, optionsOrCb);
|
|
1870
|
-
} else if (typeof cb === "function") {
|
|
1871
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1872
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1873
|
-
} else {
|
|
1874
|
-
return this.send(command, optionsOrCb);
|
|
1875
|
-
}
|
|
1876
|
-
}
|
|
1877
|
-
|
|
1878
|
-
/**
|
|
1879
|
-
* <p>Update a major or minor version of an environment template.</p>
|
|
1880
|
-
*/
|
|
1881
|
-
public updateEnvironmentTemplateVersion(
|
|
1882
|
-
args: UpdateEnvironmentTemplateVersionCommandInput,
|
|
1883
|
-
options?: __HttpHandlerOptions
|
|
1884
|
-
): Promise<UpdateEnvironmentTemplateVersionCommandOutput>;
|
|
1885
|
-
public updateEnvironmentTemplateVersion(
|
|
1886
|
-
args: UpdateEnvironmentTemplateVersionCommandInput,
|
|
1887
|
-
cb: (err: any, data?: UpdateEnvironmentTemplateVersionCommandOutput) => void
|
|
1888
|
-
): void;
|
|
1889
|
-
public updateEnvironmentTemplateVersion(
|
|
1890
|
-
args: UpdateEnvironmentTemplateVersionCommandInput,
|
|
1891
|
-
options: __HttpHandlerOptions,
|
|
1892
|
-
cb: (err: any, data?: UpdateEnvironmentTemplateVersionCommandOutput) => void
|
|
1893
|
-
): void;
|
|
1894
|
-
public updateEnvironmentTemplateVersion(
|
|
1895
|
-
args: UpdateEnvironmentTemplateVersionCommandInput,
|
|
1896
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateEnvironmentTemplateVersionCommandOutput) => void),
|
|
1897
|
-
cb?: (err: any, data?: UpdateEnvironmentTemplateVersionCommandOutput) => void
|
|
1898
|
-
): Promise<UpdateEnvironmentTemplateVersionCommandOutput> | void {
|
|
1899
|
-
const command = new UpdateEnvironmentTemplateVersionCommand(args);
|
|
1900
|
-
if (typeof optionsOrCb === "function") {
|
|
1901
|
-
this.send(command, optionsOrCb);
|
|
1902
|
-
} else if (typeof cb === "function") {
|
|
1903
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1904
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1905
|
-
} else {
|
|
1906
|
-
return this.send(command, optionsOrCb);
|
|
1907
|
-
}
|
|
1908
|
-
}
|
|
1909
|
-
|
|
1910
|
-
/**
|
|
1911
|
-
* <p>Edit a service description or use a spec to add and delete service instances.</p>
|
|
1912
|
-
* <note>
|
|
1913
|
-
* <p>Existing service instances and the service pipeline <i>can't</i> be edited using this API. They can only be
|
|
1914
|
-
* deleted.</p>
|
|
1915
|
-
* </note>
|
|
1916
|
-
* <p>Use the <code>description</code> parameter to modify the description.</p>
|
|
1917
|
-
* <p>Edit the <code>spec</code> parameter to add or delete instances.</p>
|
|
1918
|
-
*/
|
|
1919
|
-
public updateService(
|
|
1920
|
-
args: UpdateServiceCommandInput,
|
|
1921
|
-
options?: __HttpHandlerOptions
|
|
1922
|
-
): Promise<UpdateServiceCommandOutput>;
|
|
1923
|
-
public updateService(
|
|
1924
|
-
args: UpdateServiceCommandInput,
|
|
1925
|
-
cb: (err: any, data?: UpdateServiceCommandOutput) => void
|
|
1926
|
-
): void;
|
|
1927
|
-
public updateService(
|
|
1928
|
-
args: UpdateServiceCommandInput,
|
|
1929
|
-
options: __HttpHandlerOptions,
|
|
1930
|
-
cb: (err: any, data?: UpdateServiceCommandOutput) => void
|
|
1931
|
-
): void;
|
|
1932
|
-
public updateService(
|
|
1933
|
-
args: UpdateServiceCommandInput,
|
|
1934
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateServiceCommandOutput) => void),
|
|
1935
|
-
cb?: (err: any, data?: UpdateServiceCommandOutput) => void
|
|
1936
|
-
): Promise<UpdateServiceCommandOutput> | void {
|
|
1937
|
-
const command = new UpdateServiceCommand(args);
|
|
1938
|
-
if (typeof optionsOrCb === "function") {
|
|
1939
|
-
this.send(command, optionsOrCb);
|
|
1940
|
-
} else if (typeof cb === "function") {
|
|
1941
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1942
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1943
|
-
} else {
|
|
1944
|
-
return this.send(command, optionsOrCb);
|
|
1945
|
-
}
|
|
1946
|
-
}
|
|
1947
|
-
|
|
1948
|
-
/**
|
|
1949
|
-
* <p>Update a service instance.</p>
|
|
1950
|
-
* <p>There are four modes for updating a service instance as described in the following. The <code>deploymentType</code> field defines the
|
|
1951
|
-
* mode.</p>
|
|
1952
|
-
* <dl>
|
|
1953
|
-
* <dt/>
|
|
1954
|
-
* <dd>
|
|
1955
|
-
* <p>
|
|
1956
|
-
* <code>NONE</code>
|
|
1957
|
-
* </p>
|
|
1958
|
-
* <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
|
|
1959
|
-
* </dd>
|
|
1960
|
-
* <dt/>
|
|
1961
|
-
* <dd>
|
|
1962
|
-
* <p>
|
|
1963
|
-
* <code>CURRENT_VERSION</code>
|
|
1964
|
-
* </p>
|
|
1965
|
-
* <p>In this mode, the service instance is deployed and updated with the new spec that you provide. Only requested parameters are
|
|
1966
|
-
* updated. <i>Don’t</i> include minor or major version parameters when you use this
|
|
1967
|
-
* <code>deployment-type</code>.</p>
|
|
1968
|
-
* </dd>
|
|
1969
|
-
* <dt/>
|
|
1970
|
-
* <dd>
|
|
1971
|
-
* <p>
|
|
1972
|
-
* <code>MINOR_VERSION</code>
|
|
1973
|
-
* </p>
|
|
1974
|
-
* <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) minor version of the
|
|
1975
|
-
* current major version in use, by default. You can also specify a different minor version of the current major version in
|
|
1976
|
-
* use.</p>
|
|
1977
|
-
* </dd>
|
|
1978
|
-
* <dt/>
|
|
1979
|
-
* <dd>
|
|
1980
|
-
* <p>
|
|
1981
|
-
* <code>MAJOR_VERSION</code>
|
|
1982
|
-
* </p>
|
|
1983
|
-
* <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) major and minor version
|
|
1984
|
-
* of the current template, by default. You can also specify a different major version that is higher than the major version in
|
|
1985
|
-
* use and a minor version (optional).</p>
|
|
1986
|
-
* </dd>
|
|
1987
|
-
* </dl>
|
|
1988
|
-
*/
|
|
1989
|
-
public updateServiceInstance(
|
|
1990
|
-
args: UpdateServiceInstanceCommandInput,
|
|
1991
|
-
options?: __HttpHandlerOptions
|
|
1992
|
-
): Promise<UpdateServiceInstanceCommandOutput>;
|
|
1993
|
-
public updateServiceInstance(
|
|
1994
|
-
args: UpdateServiceInstanceCommandInput,
|
|
1995
|
-
cb: (err: any, data?: UpdateServiceInstanceCommandOutput) => void
|
|
1996
|
-
): void;
|
|
1997
|
-
public updateServiceInstance(
|
|
1998
|
-
args: UpdateServiceInstanceCommandInput,
|
|
1999
|
-
options: __HttpHandlerOptions,
|
|
2000
|
-
cb: (err: any, data?: UpdateServiceInstanceCommandOutput) => void
|
|
2001
|
-
): void;
|
|
2002
|
-
public updateServiceInstance(
|
|
2003
|
-
args: UpdateServiceInstanceCommandInput,
|
|
2004
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateServiceInstanceCommandOutput) => void),
|
|
2005
|
-
cb?: (err: any, data?: UpdateServiceInstanceCommandOutput) => void
|
|
2006
|
-
): Promise<UpdateServiceInstanceCommandOutput> | void {
|
|
2007
|
-
const command = new UpdateServiceInstanceCommand(args);
|
|
2008
|
-
if (typeof optionsOrCb === "function") {
|
|
2009
|
-
this.send(command, optionsOrCb);
|
|
2010
|
-
} else if (typeof cb === "function") {
|
|
2011
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
2012
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
2013
|
-
} else {
|
|
2014
|
-
return this.send(command, optionsOrCb);
|
|
2015
|
-
}
|
|
2016
|
-
}
|
|
2017
|
-
|
|
2018
|
-
/**
|
|
2019
|
-
* <p>Update the service pipeline.</p>
|
|
2020
|
-
* <p>There are four modes for updating a service pipeline as described in the following. The <code>deploymentType</code> field defines the
|
|
2021
|
-
* mode.</p>
|
|
2022
|
-
* <dl>
|
|
2023
|
-
* <dt/>
|
|
2024
|
-
* <dd>
|
|
2025
|
-
* <p>
|
|
2026
|
-
* <code>NONE</code>
|
|
2027
|
-
* </p>
|
|
2028
|
-
* <p>In this mode, a deployment <i>doesn't</i> occur. Only the requested metadata parameters are updated.</p>
|
|
2029
|
-
* </dd>
|
|
2030
|
-
* <dt/>
|
|
2031
|
-
* <dd>
|
|
2032
|
-
* <p>
|
|
2033
|
-
* <code>CURRENT_VERSION</code>
|
|
2034
|
-
* </p>
|
|
2035
|
-
* <p>In this mode, the service pipeline is deployed and updated with the new spec that you provide. Only requested parameters are
|
|
2036
|
-
* updated. <i>Don’t</i> include minor or major version parameters when you use this
|
|
2037
|
-
* <code>deployment-type</code>.</p>
|
|
2038
|
-
* </dd>
|
|
2039
|
-
* <dt/>
|
|
2040
|
-
* <dd>
|
|
2041
|
-
* <p>
|
|
2042
|
-
* <code>MINOR_VERSION</code>
|
|
2043
|
-
* </p>
|
|
2044
|
-
* <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the
|
|
2045
|
-
* current major version in use, by default. You can also specify a different minor version of the current major version in
|
|
2046
|
-
* use.</p>
|
|
2047
|
-
* </dd>
|
|
2048
|
-
* <dt/>
|
|
2049
|
-
* <dd>
|
|
2050
|
-
* <p>
|
|
2051
|
-
* <code>MAJOR_VERSION</code>
|
|
2052
|
-
* </p>
|
|
2053
|
-
* <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) major and minor version
|
|
2054
|
-
* of the current template by default. You can also specify a different major version that is higher than the major version in
|
|
2055
|
-
* use and a minor version (optional).</p>
|
|
2056
|
-
* </dd>
|
|
2057
|
-
* </dl>
|
|
2058
|
-
*/
|
|
2059
|
-
public updateServicePipeline(
|
|
2060
|
-
args: UpdateServicePipelineCommandInput,
|
|
2061
|
-
options?: __HttpHandlerOptions
|
|
2062
|
-
): Promise<UpdateServicePipelineCommandOutput>;
|
|
2063
|
-
public updateServicePipeline(
|
|
2064
|
-
args: UpdateServicePipelineCommandInput,
|
|
2065
|
-
cb: (err: any, data?: UpdateServicePipelineCommandOutput) => void
|
|
2066
|
-
): void;
|
|
2067
|
-
public updateServicePipeline(
|
|
2068
|
-
args: UpdateServicePipelineCommandInput,
|
|
2069
|
-
options: __HttpHandlerOptions,
|
|
2070
|
-
cb: (err: any, data?: UpdateServicePipelineCommandOutput) => void
|
|
2071
|
-
): void;
|
|
2072
|
-
public updateServicePipeline(
|
|
2073
|
-
args: UpdateServicePipelineCommandInput,
|
|
2074
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateServicePipelineCommandOutput) => void),
|
|
2075
|
-
cb?: (err: any, data?: UpdateServicePipelineCommandOutput) => void
|
|
2076
|
-
): Promise<UpdateServicePipelineCommandOutput> | void {
|
|
2077
|
-
const command = new UpdateServicePipelineCommand(args);
|
|
2078
|
-
if (typeof optionsOrCb === "function") {
|
|
2079
|
-
this.send(command, optionsOrCb);
|
|
2080
|
-
} else if (typeof cb === "function") {
|
|
2081
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
2082
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
2083
|
-
} else {
|
|
2084
|
-
return this.send(command, optionsOrCb);
|
|
2085
|
-
}
|
|
2086
|
-
}
|
|
2087
|
-
|
|
2088
|
-
/**
|
|
2089
|
-
* <p>Update a service template.</p>
|
|
2090
|
-
*/
|
|
2091
|
-
public updateServiceTemplate(
|
|
2092
|
-
args: UpdateServiceTemplateCommandInput,
|
|
2093
|
-
options?: __HttpHandlerOptions
|
|
2094
|
-
): Promise<UpdateServiceTemplateCommandOutput>;
|
|
2095
|
-
public updateServiceTemplate(
|
|
2096
|
-
args: UpdateServiceTemplateCommandInput,
|
|
2097
|
-
cb: (err: any, data?: UpdateServiceTemplateCommandOutput) => void
|
|
2098
|
-
): void;
|
|
2099
|
-
public updateServiceTemplate(
|
|
2100
|
-
args: UpdateServiceTemplateCommandInput,
|
|
2101
|
-
options: __HttpHandlerOptions,
|
|
2102
|
-
cb: (err: any, data?: UpdateServiceTemplateCommandOutput) => void
|
|
2103
|
-
): void;
|
|
2104
|
-
public updateServiceTemplate(
|
|
2105
|
-
args: UpdateServiceTemplateCommandInput,
|
|
2106
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateServiceTemplateCommandOutput) => void),
|
|
2107
|
-
cb?: (err: any, data?: UpdateServiceTemplateCommandOutput) => void
|
|
2108
|
-
): Promise<UpdateServiceTemplateCommandOutput> | void {
|
|
2109
|
-
const command = new UpdateServiceTemplateCommand(args);
|
|
2110
|
-
if (typeof optionsOrCb === "function") {
|
|
2111
|
-
this.send(command, optionsOrCb);
|
|
2112
|
-
} else if (typeof cb === "function") {
|
|
2113
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
2114
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
2115
|
-
} else {
|
|
2116
|
-
return this.send(command, optionsOrCb);
|
|
2117
|
-
}
|
|
2118
|
-
}
|
|
2119
|
-
|
|
2120
|
-
/**
|
|
2121
|
-
* <p>Update a major or minor version of a service template.</p>
|
|
2122
|
-
*/
|
|
2123
|
-
public updateServiceTemplateVersion(
|
|
2124
|
-
args: UpdateServiceTemplateVersionCommandInput,
|
|
2125
|
-
options?: __HttpHandlerOptions
|
|
2126
|
-
): Promise<UpdateServiceTemplateVersionCommandOutput>;
|
|
2127
|
-
public updateServiceTemplateVersion(
|
|
2128
|
-
args: UpdateServiceTemplateVersionCommandInput,
|
|
2129
|
-
cb: (err: any, data?: UpdateServiceTemplateVersionCommandOutput) => void
|
|
2130
|
-
): void;
|
|
2131
|
-
public updateServiceTemplateVersion(
|
|
2132
|
-
args: UpdateServiceTemplateVersionCommandInput,
|
|
2133
|
-
options: __HttpHandlerOptions,
|
|
2134
|
-
cb: (err: any, data?: UpdateServiceTemplateVersionCommandOutput) => void
|
|
2135
|
-
): void;
|
|
2136
|
-
public updateServiceTemplateVersion(
|
|
2137
|
-
args: UpdateServiceTemplateVersionCommandInput,
|
|
2138
|
-
optionsOrCb?: __HttpHandlerOptions | ((err: any, data?: UpdateServiceTemplateVersionCommandOutput) => void),
|
|
2139
|
-
cb?: (err: any, data?: UpdateServiceTemplateVersionCommandOutput) => void
|
|
2140
|
-
): Promise<UpdateServiceTemplateVersionCommandOutput> | void {
|
|
2141
|
-
const command = new UpdateServiceTemplateVersionCommand(args);
|
|
2142
|
-
if (typeof optionsOrCb === "function") {
|
|
2143
|
-
this.send(command, optionsOrCb);
|
|
2144
|
-
} else if (typeof cb === "function") {
|
|
2145
|
-
if (typeof optionsOrCb !== "object") throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
2146
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
2147
|
-
} else {
|
|
2148
|
-
return this.send(command, optionsOrCb);
|
|
2149
|
-
}
|
|
2150
|
-
}
|
|
2151
|
-
}
|