@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
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListEnvironmentAccountConnectionsCommandInput, ListEnvironmentAccountConnectionsCommandOutput } from "../commands/ListEnvironmentAccountConnectionsCommand";
|
|
2
|
-
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListEnvironmentAccountConnections(config: ProtonPaginationConfiguration, input: ListEnvironmentAccountConnectionsCommandInput, ...additionalArguments: any): Paginator<ListEnvironmentAccountConnectionsCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListEnvironmentTemplateVersionsCommandInput, ListEnvironmentTemplateVersionsCommandOutput } from "../commands/ListEnvironmentTemplateVersionsCommand";
|
|
2
|
-
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListEnvironmentTemplateVersions(config: ProtonPaginationConfiguration, input: ListEnvironmentTemplateVersionsCommandInput, ...additionalArguments: any): Paginator<ListEnvironmentTemplateVersionsCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListEnvironmentTemplatesCommandInput, ListEnvironmentTemplatesCommandOutput } from "../commands/ListEnvironmentTemplatesCommand";
|
|
2
|
-
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListEnvironmentTemplates(config: ProtonPaginationConfiguration, input: ListEnvironmentTemplatesCommandInput, ...additionalArguments: any): Paginator<ListEnvironmentTemplatesCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
2
|
-
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListEnvironments(config: ProtonPaginationConfiguration, input: ListEnvironmentsCommandInput, ...additionalArguments: any): Paginator<ListEnvironmentsCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListServiceInstancesCommandInput, ListServiceInstancesCommandOutput } from "../commands/ListServiceInstancesCommand";
|
|
2
|
-
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListServiceInstances(config: ProtonPaginationConfiguration, input: ListServiceInstancesCommandInput, ...additionalArguments: any): Paginator<ListServiceInstancesCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListServiceTemplateVersionsCommandInput, ListServiceTemplateVersionsCommandOutput } from "../commands/ListServiceTemplateVersionsCommand";
|
|
2
|
-
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListServiceTemplateVersions(config: ProtonPaginationConfiguration, input: ListServiceTemplateVersionsCommandInput, ...additionalArguments: any): Paginator<ListServiceTemplateVersionsCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListServiceTemplatesCommandInput, ListServiceTemplatesCommandOutput } from "../commands/ListServiceTemplatesCommand";
|
|
2
|
-
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListServiceTemplates(config: ProtonPaginationConfiguration, input: ListServiceTemplatesCommandInput, ...additionalArguments: any): Paginator<ListServiceTemplatesCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
|
|
2
|
-
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListServices(config: ProtonPaginationConfiguration, input: ListServicesCommandInput, ...additionalArguments: any): Paginator<ListServicesCommandOutput>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
2
|
-
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
3
|
-
import { Paginator } from "@aws-sdk/types";
|
|
4
|
-
export declare function paginateListTagsForResource(config: ProtonPaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
|
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
import { AcceptEnvironmentAccountConnectionCommandInput, AcceptEnvironmentAccountConnectionCommandOutput } from "../commands/AcceptEnvironmentAccountConnectionCommand";
|
|
2
|
-
import { CancelEnvironmentDeploymentCommandInput, CancelEnvironmentDeploymentCommandOutput } from "../commands/CancelEnvironmentDeploymentCommand";
|
|
3
|
-
import { CancelServiceInstanceDeploymentCommandInput, CancelServiceInstanceDeploymentCommandOutput } from "../commands/CancelServiceInstanceDeploymentCommand";
|
|
4
|
-
import { CancelServicePipelineDeploymentCommandInput, CancelServicePipelineDeploymentCommandOutput } from "../commands/CancelServicePipelineDeploymentCommand";
|
|
5
|
-
import { CreateEnvironmentAccountConnectionCommandInput, CreateEnvironmentAccountConnectionCommandOutput } from "../commands/CreateEnvironmentAccountConnectionCommand";
|
|
6
|
-
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
|
|
7
|
-
import { CreateEnvironmentTemplateCommandInput, CreateEnvironmentTemplateCommandOutput } from "../commands/CreateEnvironmentTemplateCommand";
|
|
8
|
-
import { CreateEnvironmentTemplateVersionCommandInput, CreateEnvironmentTemplateVersionCommandOutput } from "../commands/CreateEnvironmentTemplateVersionCommand";
|
|
9
|
-
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "../commands/CreateServiceCommand";
|
|
10
|
-
import { CreateServiceTemplateCommandInput, CreateServiceTemplateCommandOutput } from "../commands/CreateServiceTemplateCommand";
|
|
11
|
-
import { CreateServiceTemplateVersionCommandInput, CreateServiceTemplateVersionCommandOutput } from "../commands/CreateServiceTemplateVersionCommand";
|
|
12
|
-
import { DeleteEnvironmentAccountConnectionCommandInput, DeleteEnvironmentAccountConnectionCommandOutput } from "../commands/DeleteEnvironmentAccountConnectionCommand";
|
|
13
|
-
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
|
|
14
|
-
import { DeleteEnvironmentTemplateCommandInput, DeleteEnvironmentTemplateCommandOutput } from "../commands/DeleteEnvironmentTemplateCommand";
|
|
15
|
-
import { DeleteEnvironmentTemplateVersionCommandInput, DeleteEnvironmentTemplateVersionCommandOutput } from "../commands/DeleteEnvironmentTemplateVersionCommand";
|
|
16
|
-
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "../commands/DeleteServiceCommand";
|
|
17
|
-
import { DeleteServiceTemplateCommandInput, DeleteServiceTemplateCommandOutput } from "../commands/DeleteServiceTemplateCommand";
|
|
18
|
-
import { DeleteServiceTemplateVersionCommandInput, DeleteServiceTemplateVersionCommandOutput } from "../commands/DeleteServiceTemplateVersionCommand";
|
|
19
|
-
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "../commands/GetAccountSettingsCommand";
|
|
20
|
-
import { GetEnvironmentAccountConnectionCommandInput, GetEnvironmentAccountConnectionCommandOutput } from "../commands/GetEnvironmentAccountConnectionCommand";
|
|
21
|
-
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
|
|
22
|
-
import { GetEnvironmentTemplateCommandInput, GetEnvironmentTemplateCommandOutput } from "../commands/GetEnvironmentTemplateCommand";
|
|
23
|
-
import { GetEnvironmentTemplateVersionCommandInput, GetEnvironmentTemplateVersionCommandOutput } from "../commands/GetEnvironmentTemplateVersionCommand";
|
|
24
|
-
import { GetServiceCommandInput, GetServiceCommandOutput } from "../commands/GetServiceCommand";
|
|
25
|
-
import { GetServiceInstanceCommandInput, GetServiceInstanceCommandOutput } from "../commands/GetServiceInstanceCommand";
|
|
26
|
-
import { GetServiceTemplateCommandInput, GetServiceTemplateCommandOutput } from "../commands/GetServiceTemplateCommand";
|
|
27
|
-
import { GetServiceTemplateVersionCommandInput, GetServiceTemplateVersionCommandOutput } from "../commands/GetServiceTemplateVersionCommand";
|
|
28
|
-
import { ListEnvironmentAccountConnectionsCommandInput, ListEnvironmentAccountConnectionsCommandOutput } from "../commands/ListEnvironmentAccountConnectionsCommand";
|
|
29
|
-
import { ListEnvironmentTemplateVersionsCommandInput, ListEnvironmentTemplateVersionsCommandOutput } from "../commands/ListEnvironmentTemplateVersionsCommand";
|
|
30
|
-
import { ListEnvironmentTemplatesCommandInput, ListEnvironmentTemplatesCommandOutput } from "../commands/ListEnvironmentTemplatesCommand";
|
|
31
|
-
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
32
|
-
import { ListServiceInstancesCommandInput, ListServiceInstancesCommandOutput } from "../commands/ListServiceInstancesCommand";
|
|
33
|
-
import { ListServiceTemplateVersionsCommandInput, ListServiceTemplateVersionsCommandOutput } from "../commands/ListServiceTemplateVersionsCommand";
|
|
34
|
-
import { ListServiceTemplatesCommandInput, ListServiceTemplatesCommandOutput } from "../commands/ListServiceTemplatesCommand";
|
|
35
|
-
import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
|
|
36
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
37
|
-
import { RejectEnvironmentAccountConnectionCommandInput, RejectEnvironmentAccountConnectionCommandOutput } from "../commands/RejectEnvironmentAccountConnectionCommand";
|
|
38
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
39
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
40
|
-
import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "../commands/UpdateAccountSettingsCommand";
|
|
41
|
-
import { UpdateEnvironmentAccountConnectionCommandInput, UpdateEnvironmentAccountConnectionCommandOutput } from "../commands/UpdateEnvironmentAccountConnectionCommand";
|
|
42
|
-
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "../commands/UpdateEnvironmentCommand";
|
|
43
|
-
import { UpdateEnvironmentTemplateCommandInput, UpdateEnvironmentTemplateCommandOutput } from "../commands/UpdateEnvironmentTemplateCommand";
|
|
44
|
-
import { UpdateEnvironmentTemplateVersionCommandInput, UpdateEnvironmentTemplateVersionCommandOutput } from "../commands/UpdateEnvironmentTemplateVersionCommand";
|
|
45
|
-
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "../commands/UpdateServiceCommand";
|
|
46
|
-
import { UpdateServiceInstanceCommandInput, UpdateServiceInstanceCommandOutput } from "../commands/UpdateServiceInstanceCommand";
|
|
47
|
-
import { UpdateServicePipelineCommandInput, UpdateServicePipelineCommandOutput } from "../commands/UpdateServicePipelineCommand";
|
|
48
|
-
import { UpdateServiceTemplateCommandInput, UpdateServiceTemplateCommandOutput } from "../commands/UpdateServiceTemplateCommand";
|
|
49
|
-
import { UpdateServiceTemplateVersionCommandInput, UpdateServiceTemplateVersionCommandOutput } from "../commands/UpdateServiceTemplateVersionCommand";
|
|
50
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
51
|
-
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
52
|
-
export declare const serializeAws_json1_0AcceptEnvironmentAccountConnectionCommand: (input: AcceptEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
-
export declare const serializeAws_json1_0CancelEnvironmentDeploymentCommand: (input: CancelEnvironmentDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
-
export declare const serializeAws_json1_0CancelServiceInstanceDeploymentCommand: (input: CancelServiceInstanceDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
-
export declare const serializeAws_json1_0CancelServicePipelineDeploymentCommand: (input: CancelServicePipelineDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
-
export declare const serializeAws_json1_0CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
-
export declare const serializeAws_json1_0CreateEnvironmentAccountConnectionCommand: (input: CreateEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
-
export declare const serializeAws_json1_0CreateEnvironmentTemplateCommand: (input: CreateEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
-
export declare const serializeAws_json1_0CreateEnvironmentTemplateVersionCommand: (input: CreateEnvironmentTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
-
export declare const serializeAws_json1_0CreateServiceCommand: (input: CreateServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
-
export declare const serializeAws_json1_0CreateServiceTemplateCommand: (input: CreateServiceTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
-
export declare const serializeAws_json1_0CreateServiceTemplateVersionCommand: (input: CreateServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
-
export declare const serializeAws_json1_0DeleteEnvironmentCommand: (input: DeleteEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
-
export declare const serializeAws_json1_0DeleteEnvironmentAccountConnectionCommand: (input: DeleteEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
-
export declare const serializeAws_json1_0DeleteEnvironmentTemplateCommand: (input: DeleteEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
-
export declare const serializeAws_json1_0DeleteEnvironmentTemplateVersionCommand: (input: DeleteEnvironmentTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
-
export declare const serializeAws_json1_0DeleteServiceCommand: (input: DeleteServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
-
export declare const serializeAws_json1_0DeleteServiceTemplateCommand: (input: DeleteServiceTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
-
export declare const serializeAws_json1_0DeleteServiceTemplateVersionCommand: (input: DeleteServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
-
export declare const serializeAws_json1_0GetAccountSettingsCommand: (input: GetAccountSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
-
export declare const serializeAws_json1_0GetEnvironmentCommand: (input: GetEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
-
export declare const serializeAws_json1_0GetEnvironmentAccountConnectionCommand: (input: GetEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
export declare const serializeAws_json1_0GetEnvironmentTemplateCommand: (input: GetEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
-
export declare const serializeAws_json1_0GetEnvironmentTemplateVersionCommand: (input: GetEnvironmentTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
-
export declare const serializeAws_json1_0GetServiceCommand: (input: GetServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
-
export declare const serializeAws_json1_0GetServiceInstanceCommand: (input: GetServiceInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
-
export declare const serializeAws_json1_0GetServiceTemplateCommand: (input: GetServiceTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const serializeAws_json1_0GetServiceTemplateVersionCommand: (input: GetServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
-
export declare const serializeAws_json1_0ListEnvironmentAccountConnectionsCommand: (input: ListEnvironmentAccountConnectionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
-
export declare const serializeAws_json1_0ListEnvironmentsCommand: (input: ListEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
-
export declare const serializeAws_json1_0ListEnvironmentTemplatesCommand: (input: ListEnvironmentTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const serializeAws_json1_0ListEnvironmentTemplateVersionsCommand: (input: ListEnvironmentTemplateVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
-
export declare const serializeAws_json1_0ListServiceInstancesCommand: (input: ListServiceInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
-
export declare const serializeAws_json1_0ListServicesCommand: (input: ListServicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
-
export declare const serializeAws_json1_0ListServiceTemplatesCommand: (input: ListServiceTemplatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const serializeAws_json1_0ListServiceTemplateVersionsCommand: (input: ListServiceTemplateVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
|
-
export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
-
export declare const serializeAws_json1_0RejectEnvironmentAccountConnectionCommand: (input: RejectEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
-
export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
|
-
export declare const serializeAws_json1_0UpdateAccountSettingsCommand: (input: UpdateAccountSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
-
export declare const serializeAws_json1_0UpdateEnvironmentCommand: (input: UpdateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
-
export declare const serializeAws_json1_0UpdateEnvironmentAccountConnectionCommand: (input: UpdateEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const serializeAws_json1_0UpdateEnvironmentTemplateCommand: (input: UpdateEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
|
-
export declare const serializeAws_json1_0UpdateEnvironmentTemplateVersionCommand: (input: UpdateEnvironmentTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
-
export declare const serializeAws_json1_0UpdateServiceCommand: (input: UpdateServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
export declare const serializeAws_json1_0UpdateServiceInstanceCommand: (input: UpdateServiceInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const serializeAws_json1_0UpdateServicePipelineCommand: (input: UpdateServicePipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
99
|
-
export declare const serializeAws_json1_0UpdateServiceTemplateCommand: (input: UpdateServiceTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
-
export declare const serializeAws_json1_0UpdateServiceTemplateVersionCommand: (input: UpdateServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
-
export declare const deserializeAws_json1_0AcceptEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptEnvironmentAccountConnectionCommandOutput>;
|
|
102
|
-
export declare const deserializeAws_json1_0CancelEnvironmentDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelEnvironmentDeploymentCommandOutput>;
|
|
103
|
-
export declare const deserializeAws_json1_0CancelServiceInstanceDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelServiceInstanceDeploymentCommandOutput>;
|
|
104
|
-
export declare const deserializeAws_json1_0CancelServicePipelineDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelServicePipelineDeploymentCommandOutput>;
|
|
105
|
-
export declare const deserializeAws_json1_0CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
|
|
106
|
-
export declare const deserializeAws_json1_0CreateEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentAccountConnectionCommandOutput>;
|
|
107
|
-
export declare const deserializeAws_json1_0CreateEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentTemplateCommandOutput>;
|
|
108
|
-
export declare const deserializeAws_json1_0CreateEnvironmentTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentTemplateVersionCommandOutput>;
|
|
109
|
-
export declare const deserializeAws_json1_0CreateServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceCommandOutput>;
|
|
110
|
-
export declare const deserializeAws_json1_0CreateServiceTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceTemplateCommandOutput>;
|
|
111
|
-
export declare const deserializeAws_json1_0CreateServiceTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceTemplateVersionCommandOutput>;
|
|
112
|
-
export declare const deserializeAws_json1_0DeleteEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentCommandOutput>;
|
|
113
|
-
export declare const deserializeAws_json1_0DeleteEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentAccountConnectionCommandOutput>;
|
|
114
|
-
export declare const deserializeAws_json1_0DeleteEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentTemplateCommandOutput>;
|
|
115
|
-
export declare const deserializeAws_json1_0DeleteEnvironmentTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentTemplateVersionCommandOutput>;
|
|
116
|
-
export declare const deserializeAws_json1_0DeleteServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceCommandOutput>;
|
|
117
|
-
export declare const deserializeAws_json1_0DeleteServiceTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceTemplateCommandOutput>;
|
|
118
|
-
export declare const deserializeAws_json1_0DeleteServiceTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceTemplateVersionCommandOutput>;
|
|
119
|
-
export declare const deserializeAws_json1_0GetAccountSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccountSettingsCommandOutput>;
|
|
120
|
-
export declare const deserializeAws_json1_0GetEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCommandOutput>;
|
|
121
|
-
export declare const deserializeAws_json1_0GetEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentAccountConnectionCommandOutput>;
|
|
122
|
-
export declare const deserializeAws_json1_0GetEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentTemplateCommandOutput>;
|
|
123
|
-
export declare const deserializeAws_json1_0GetEnvironmentTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentTemplateVersionCommandOutput>;
|
|
124
|
-
export declare const deserializeAws_json1_0GetServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServiceCommandOutput>;
|
|
125
|
-
export declare const deserializeAws_json1_0GetServiceInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServiceInstanceCommandOutput>;
|
|
126
|
-
export declare const deserializeAws_json1_0GetServiceTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServiceTemplateCommandOutput>;
|
|
127
|
-
export declare const deserializeAws_json1_0GetServiceTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServiceTemplateVersionCommandOutput>;
|
|
128
|
-
export declare const deserializeAws_json1_0ListEnvironmentAccountConnectionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentAccountConnectionsCommandOutput>;
|
|
129
|
-
export declare const deserializeAws_json1_0ListEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentsCommandOutput>;
|
|
130
|
-
export declare const deserializeAws_json1_0ListEnvironmentTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentTemplatesCommandOutput>;
|
|
131
|
-
export declare const deserializeAws_json1_0ListEnvironmentTemplateVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentTemplateVersionsCommandOutput>;
|
|
132
|
-
export declare const deserializeAws_json1_0ListServiceInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceInstancesCommandOutput>;
|
|
133
|
-
export declare const deserializeAws_json1_0ListServicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServicesCommandOutput>;
|
|
134
|
-
export declare const deserializeAws_json1_0ListServiceTemplatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceTemplatesCommandOutput>;
|
|
135
|
-
export declare const deserializeAws_json1_0ListServiceTemplateVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceTemplateVersionsCommandOutput>;
|
|
136
|
-
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
137
|
-
export declare const deserializeAws_json1_0RejectEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectEnvironmentAccountConnectionCommandOutput>;
|
|
138
|
-
export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
139
|
-
export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
140
|
-
export declare const deserializeAws_json1_0UpdateAccountSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAccountSettingsCommandOutput>;
|
|
141
|
-
export declare const deserializeAws_json1_0UpdateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentCommandOutput>;
|
|
142
|
-
export declare const deserializeAws_json1_0UpdateEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentAccountConnectionCommandOutput>;
|
|
143
|
-
export declare const deserializeAws_json1_0UpdateEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentTemplateCommandOutput>;
|
|
144
|
-
export declare const deserializeAws_json1_0UpdateEnvironmentTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentTemplateVersionCommandOutput>;
|
|
145
|
-
export declare const deserializeAws_json1_0UpdateServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServiceCommandOutput>;
|
|
146
|
-
export declare const deserializeAws_json1_0UpdateServiceInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServiceInstanceCommandOutput>;
|
|
147
|
-
export declare const deserializeAws_json1_0UpdateServicePipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServicePipelineCommandOutput>;
|
|
148
|
-
export declare const deserializeAws_json1_0UpdateServiceTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServiceTemplateCommandOutput>;
|
|
149
|
-
export declare const deserializeAws_json1_0UpdateServiceTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServiceTemplateVersionCommandOutput>;
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { ProtonClientConfig } from "./ProtonClient";
|
|
3
|
-
/**
|
|
4
|
-
* @internal
|
|
5
|
-
*/
|
|
6
|
-
export declare const getRuntimeConfig: (config: ProtonClientConfig) => {
|
|
7
|
-
runtime: string;
|
|
8
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
-
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
|
-
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
|
-
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
|
-
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | FetchHttpHandler;
|
|
16
|
-
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
|
-
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
|
-
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
-
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
|
-
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
|
-
apiVersion: string;
|
|
22
|
-
urlParser: import("@aws-sdk/types").UrlParser;
|
|
23
|
-
disableHostPrefix: boolean;
|
|
24
|
-
logger: import("@aws-sdk/types").Logger;
|
|
25
|
-
serviceId: string;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
-
tls?: boolean | undefined;
|
|
29
|
-
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
-
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
-
signingEscapePath?: boolean | undefined;
|
|
33
|
-
systemClockOffset?: number | undefined;
|
|
34
|
-
signingRegion?: string | undefined;
|
|
35
|
-
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
-
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
-
};
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { ProtonClientConfig } from "./ProtonClient";
|
|
3
|
-
/**
|
|
4
|
-
* @internal
|
|
5
|
-
*/
|
|
6
|
-
export declare const getRuntimeConfig: (config: ProtonClientConfig) => {
|
|
7
|
-
runtime: string;
|
|
8
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
-
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/client-sts/dist/types/defaultStsRoleAssumers").DefaultCredentialProvider;
|
|
12
|
-
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
|
-
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
|
-
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | NodeHttpHandler;
|
|
16
|
-
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
|
-
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
|
-
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
-
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
|
-
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
|
-
apiVersion: string;
|
|
22
|
-
urlParser: import("@aws-sdk/types").UrlParser;
|
|
23
|
-
disableHostPrefix: boolean;
|
|
24
|
-
logger: import("@aws-sdk/types").Logger;
|
|
25
|
-
serviceId: string;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
-
tls?: boolean | undefined;
|
|
29
|
-
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
-
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
-
signingEscapePath?: boolean | undefined;
|
|
33
|
-
systemClockOffset?: number | undefined;
|
|
34
|
-
signingRegion?: string | undefined;
|
|
35
|
-
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
-
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
-
};
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { ProtonClientConfig } from "./ProtonClient";
|
|
2
|
-
/**
|
|
3
|
-
* @internal
|
|
4
|
-
*/
|
|
5
|
-
export declare const getRuntimeConfig: (config: ProtonClientConfig) => {
|
|
6
|
-
runtime: string;
|
|
7
|
-
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
|
-
apiVersion: string;
|
|
10
|
-
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (body: any) => number | undefined;
|
|
12
|
-
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
-
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
16
|
-
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
17
|
-
disableHostPrefix: boolean;
|
|
18
|
-
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
-
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
-
logger: import("@aws-sdk/types").Logger;
|
|
21
|
-
serviceId: string;
|
|
22
|
-
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
-
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
-
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
|
-
tls?: boolean | undefined;
|
|
28
|
-
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
29
|
-
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
30
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
31
|
-
signingEscapePath?: boolean | undefined;
|
|
32
|
-
systemClockOffset?: number | undefined;
|
|
33
|
-
signingRegion?: string | undefined;
|
|
34
|
-
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
35
|
-
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
36
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { ProtonClientConfig } from "./ProtonClient";
|
|
3
|
-
/**
|
|
4
|
-
* @internal
|
|
5
|
-
*/
|
|
6
|
-
export declare const getRuntimeConfig: (config: ProtonClientConfig) => {
|
|
7
|
-
apiVersion: string;
|
|
8
|
-
disableHostPrefix: boolean;
|
|
9
|
-
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
|
-
serviceId: string;
|
|
12
|
-
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
|
-
};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetEnvironmentCommandInput } from "../commands/GetEnvironmentCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until an Environment is deployed. Use this after invoking CreateEnvironment or UpdateEnvironment
|
|
6
|
-
* @deprecated Use waitUntilEnvironmentDeployed instead. waitForEnvironmentDeployed does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForEnvironmentDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetEnvironmentCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until an Environment is deployed. Use this after invoking CreateEnvironment or UpdateEnvironment
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetEnvironmentCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilEnvironmentDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetEnvironmentCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetEnvironmentTemplateVersionCommandInput } from "../commands/GetEnvironmentTemplateVersionCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until an EnvironmentTemplateVersion is registered. Use this after invoking CreateEnvironmentTemplateVersion
|
|
6
|
-
* @deprecated Use waitUntilEnvironmentTemplateVersionRegistered instead. waitForEnvironmentTemplateVersionRegistered does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForEnvironmentTemplateVersionRegistered: (params: WaiterConfiguration<ProtonClient>, input: GetEnvironmentTemplateVersionCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until an EnvironmentTemplateVersion is registered. Use this after invoking CreateEnvironmentTemplateVersion
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetEnvironmentTemplateVersionCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilEnvironmentTemplateVersionRegistered: (params: WaiterConfiguration<ProtonClient>, input: GetEnvironmentTemplateVersionCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetServiceCommandInput } from "../commands/GetServiceCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until an Service has deployed its instances and possibly pipeline. Use this after invoking CreateService
|
|
6
|
-
* @deprecated Use waitUntilServiceCreated instead. waitForServiceCreated does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForServiceCreated: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until an Service has deployed its instances and possibly pipeline. Use this after invoking CreateService
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetServiceCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilServiceCreated: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetServiceCommandInput } from "../commands/GetServiceCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until a Service, its instances, and possibly pipeline have been deleted after DeleteService is invoked
|
|
6
|
-
* @deprecated Use waitUntilServiceDeleted instead. waitForServiceDeleted does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForServiceDeleted: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until a Service, its instances, and possibly pipeline have been deleted after DeleteService is invoked
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetServiceCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilServiceDeleted: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetServiceInstanceCommandInput } from "../commands/GetServiceInstanceCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until a ServiceInstance is deployed. Use this after invoking CreateService or UpdateServiceInstance
|
|
6
|
-
* @deprecated Use waitUntilServiceInstanceDeployed instead. waitForServiceInstanceDeployed does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForServiceInstanceDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetServiceInstanceCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until a ServiceInstance is deployed. Use this after invoking CreateService or UpdateServiceInstance
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetServiceInstanceCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilServiceInstanceDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetServiceInstanceCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetServiceCommandInput } from "../commands/GetServiceCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until an ServicePipeline is deployed. Use this after invoking CreateService or UpdateServicePipeline
|
|
6
|
-
* @deprecated Use waitUntilServicePipelineDeployed instead. waitForServicePipelineDeployed does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForServicePipelineDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until an ServicePipeline is deployed. Use this after invoking CreateService or UpdateServicePipeline
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetServiceCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilServicePipelineDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetServiceTemplateVersionCommandInput } from "../commands/GetServiceTemplateVersionCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until a ServiceTemplateVersion is registered. Use this after invoking CreateServiceTemplateVersion
|
|
6
|
-
* @deprecated Use waitUntilServiceTemplateVersionRegistered instead. waitForServiceTemplateVersionRegistered does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForServiceTemplateVersionRegistered: (params: WaiterConfiguration<ProtonClient>, input: GetServiceTemplateVersionCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until a ServiceTemplateVersion is registered. Use this after invoking CreateServiceTemplateVersion
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetServiceTemplateVersionCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilServiceTemplateVersionRegistered: (params: WaiterConfiguration<ProtonClient>, input: GetServiceTemplateVersionCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetServiceCommandInput } from "../commands/GetServiceCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until a Service, its instances, and possibly pipeline have been deployed after UpdateService is invoked
|
|
6
|
-
* @deprecated Use waitUntilServiceUpdated instead. waitForServiceUpdated does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForServiceUpdated: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until a Service, its instances, and possibly pipeline have been deployed after UpdateService is invoked
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetServiceCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilServiceUpdated: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetEnvironmentCommandInput } from "../commands/GetEnvironmentCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until an Environment is deployed. Use this after invoking CreateEnvironment or UpdateEnvironment
|
|
6
|
-
* @deprecated Use waitUntilEnvironmentDeployed instead. waitForEnvironmentDeployed does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForEnvironmentDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetEnvironmentCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until an Environment is deployed. Use this after invoking CreateEnvironment or UpdateEnvironment
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetEnvironmentCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilEnvironmentDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetEnvironmentCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetEnvironmentTemplateVersionCommandInput } from "../commands/GetEnvironmentTemplateVersionCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until an EnvironmentTemplateVersion is registered. Use this after invoking CreateEnvironmentTemplateVersion
|
|
6
|
-
* @deprecated Use waitUntilEnvironmentTemplateVersionRegistered instead. waitForEnvironmentTemplateVersionRegistered does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForEnvironmentTemplateVersionRegistered: (params: WaiterConfiguration<ProtonClient>, input: GetEnvironmentTemplateVersionCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until an EnvironmentTemplateVersion is registered. Use this after invoking CreateEnvironmentTemplateVersion
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetEnvironmentTemplateVersionCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilEnvironmentTemplateVersionRegistered: (params: WaiterConfiguration<ProtonClient>, input: GetEnvironmentTemplateVersionCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetServiceCommandInput } from "../commands/GetServiceCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until an Service has deployed its instances and possibly pipeline. Use this after invoking CreateService
|
|
6
|
-
* @deprecated Use waitUntilServiceCreated instead. waitForServiceCreated does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForServiceCreated: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until an Service has deployed its instances and possibly pipeline. Use this after invoking CreateService
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetServiceCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilServiceCreated: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetServiceCommandInput } from "../commands/GetServiceCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until a Service, its instances, and possibly pipeline have been deleted after DeleteService is invoked
|
|
6
|
-
* @deprecated Use waitUntilServiceDeleted instead. waitForServiceDeleted does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForServiceDeleted: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until a Service, its instances, and possibly pipeline have been deleted after DeleteService is invoked
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetServiceCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilServiceDeleted: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetServiceInstanceCommandInput } from "../commands/GetServiceInstanceCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until a ServiceInstance is deployed. Use this after invoking CreateService or UpdateServiceInstance
|
|
6
|
-
* @deprecated Use waitUntilServiceInstanceDeployed instead. waitForServiceInstanceDeployed does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForServiceInstanceDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetServiceInstanceCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until a ServiceInstance is deployed. Use this after invoking CreateService or UpdateServiceInstance
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetServiceInstanceCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilServiceInstanceDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetServiceInstanceCommandInput) => Promise<WaiterResult>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ProtonClient } from "../ProtonClient";
|
|
2
|
-
import { GetServiceCommandInput } from "../commands/GetServiceCommand";
|
|
3
|
-
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
4
|
-
/**
|
|
5
|
-
* Wait until an ServicePipeline is deployed. Use this after invoking CreateService or UpdateServicePipeline
|
|
6
|
-
* @deprecated Use waitUntilServicePipelineDeployed instead. waitForServicePipelineDeployed does not throw error in non-success cases.
|
|
7
|
-
*/
|
|
8
|
-
export declare const waitForServicePipelineDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|
|
9
|
-
/**
|
|
10
|
-
* Wait until an ServicePipeline is deployed. Use this after invoking CreateService or UpdateServicePipeline
|
|
11
|
-
* @param params - Waiter configuration options.
|
|
12
|
-
* @param input - The input to GetServiceCommand for polling.
|
|
13
|
-
*/
|
|
14
|
-
export declare const waitUntilServicePipelineDeployed: (params: WaiterConfiguration<ProtonClient>, input: GetServiceCommandInput) => Promise<WaiterResult>;
|