@aws-sdk/client-proton 3.99.0 → 3.105.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 +30 -0
- package/dist-cjs/Proton.js +120 -0
- package/dist-cjs/ProtonClient.js +2 -0
- package/dist-cjs/commands/CancelComponentDeploymentCommand.js +36 -0
- package/dist-cjs/commands/CreateComponentCommand.js +36 -0
- package/dist-cjs/commands/DeleteComponentCommand.js +36 -0
- package/dist-cjs/commands/GetComponentCommand.js +36 -0
- package/dist-cjs/commands/ListComponentOutputsCommand.js +36 -0
- package/dist-cjs/commands/ListComponentProvisionedResourcesCommand.js +36 -0
- package/dist-cjs/commands/ListComponentsCommand.js +36 -0
- package/dist-cjs/commands/UpdateComponentCommand.js +36 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +169 -33
- package/dist-cjs/pagination/ListComponentOutputsPaginator.js +35 -0
- package/dist-cjs/pagination/ListComponentProvisionedResourcesPaginator.js +35 -0
- package/dist-cjs/pagination/ListComponentsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_json1_0.js +741 -34
- package/dist-cjs/waiters/index.js +2 -0
- package/dist-cjs/waiters/waitForComponentDeleted.js +39 -0
- package/dist-cjs/waiters/waitForComponentDeployed.js +45 -0
- package/dist-es/Proton.js +120 -0
- package/dist-es/ProtonClient.js +2 -0
- package/dist-es/commands/CancelComponentDeploymentCommand.js +39 -0
- package/dist-es/commands/CreateComponentCommand.js +39 -0
- package/dist-es/commands/DeleteComponentCommand.js +39 -0
- package/dist-es/commands/GetComponentCommand.js +39 -0
- package/dist-es/commands/ListComponentOutputsCommand.js +39 -0
- package/dist-es/commands/ListComponentProvisionedResourcesCommand.js +39 -0
- package/dist-es/commands/ListComponentsCommand.js +39 -0
- package/dist-es/commands/UpdateComponentCommand.js +39 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +106 -25
- package/dist-es/pagination/ListComponentOutputsPaginator.js +74 -0
- package/dist-es/pagination/ListComponentProvisionedResourcesPaginator.js +74 -0
- package/dist-es/pagination/ListComponentsPaginator.js +75 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_0.js +899 -77
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForComponentDeleted.js +54 -0
- package/dist-es/waiters/waitForComponentDeployed.js +60 -0
- package/dist-types/Proton.d.ts +117 -46
- package/dist-types/ProtonClient.d.ts +10 -2
- package/dist-types/commands/CancelComponentDeploymentCommand.d.ts +38 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +38 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +38 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +7 -1
- package/dist-types/commands/GetComponentCommand.d.ts +38 -0
- package/dist-types/commands/GetEnvironmentAccountConnectionCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentTemplateVersionCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceInstanceCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceTemplateVersionCommand.d.ts +1 -1
- package/dist-types/commands/ListComponentOutputsCommand.d.ts +38 -0
- package/dist-types/commands/ListComponentProvisionedResourcesCommand.d.ts +38 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +38 -0
- package/dist-types/commands/ListServiceInstanceOutputsCommand.d.ts +1 -1
- package/dist-types/commands/ListServiceInstancesCommand.d.ts +1 -1
- package/dist-types/commands/ListServicePipelineOutputsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateComponentCommand.d.ts +43 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateServiceInstanceCommand.d.ts +8 -34
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +683 -124
- package/dist-types/pagination/ListComponentOutputsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListComponentProvisionedResourcesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +24 -0
- package/dist-types/ts3.4/Proton.d.ts +40 -0
- package/dist-types/ts3.4/ProtonClient.d.ts +10 -2
- package/dist-types/ts3.4/commands/CancelComponentDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListComponentOutputsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListComponentProvisionedResourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +305 -40
- package/dist-types/ts3.4/pagination/ListComponentOutputsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListComponentProvisionedResourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +24 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForComponentDeleted.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForComponentDeployed.d.ts +7 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForComponentDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForComponentDeployed.d.ts +14 -0
- package/package.json +4 -3
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListComponentOutputsCommandInput, ListComponentOutputsCommandOutput } from "../commands/ListComponentOutputsCommand";
|
|
3
|
+
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListComponentOutputs(config: ProtonPaginationConfiguration, input: ListComponentOutputsCommandInput, ...additionalArguments: any): Paginator<ListComponentOutputsCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListComponentProvisionedResourcesCommandInput, ListComponentProvisionedResourcesCommandOutput } from "../commands/ListComponentProvisionedResourcesCommand";
|
|
3
|
+
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListComponentProvisionedResources(config: ProtonPaginationConfiguration, input: ListComponentProvisionedResourcesCommandInput, ...additionalArguments: any): Paginator<ListComponentProvisionedResourcesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
3
|
+
import { ProtonPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListComponents(config: ProtonPaginationConfiguration, input: ListComponentsCommandInput, ...additionalArguments: any): Paginator<ListComponentsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListComponentOutputsPaginator";
|
|
3
|
+
export * from "./ListComponentProvisionedResourcesPaginator";
|
|
4
|
+
export * from "./ListComponentsPaginator";
|
|
2
5
|
export * from "./ListEnvironmentAccountConnectionsPaginator";
|
|
3
6
|
export * from "./ListEnvironmentOutputsPaginator";
|
|
4
7
|
export * from "./ListEnvironmentProvisionedResourcesPaginator";
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { AcceptEnvironmentAccountConnectionCommandInput, AcceptEnvironmentAccountConnectionCommandOutput } from "../commands/AcceptEnvironmentAccountConnectionCommand";
|
|
4
|
+
import { CancelComponentDeploymentCommandInput, CancelComponentDeploymentCommandOutput } from "../commands/CancelComponentDeploymentCommand";
|
|
4
5
|
import { CancelEnvironmentDeploymentCommandInput, CancelEnvironmentDeploymentCommandOutput } from "../commands/CancelEnvironmentDeploymentCommand";
|
|
5
6
|
import { CancelServiceInstanceDeploymentCommandInput, CancelServiceInstanceDeploymentCommandOutput } from "../commands/CancelServiceInstanceDeploymentCommand";
|
|
6
7
|
import { CancelServicePipelineDeploymentCommandInput, CancelServicePipelineDeploymentCommandOutput } from "../commands/CancelServicePipelineDeploymentCommand";
|
|
8
|
+
import { CreateComponentCommandInput, CreateComponentCommandOutput } from "../commands/CreateComponentCommand";
|
|
7
9
|
import { CreateEnvironmentAccountConnectionCommandInput, CreateEnvironmentAccountConnectionCommandOutput } from "../commands/CreateEnvironmentAccountConnectionCommand";
|
|
8
10
|
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
|
|
9
11
|
import { CreateEnvironmentTemplateCommandInput, CreateEnvironmentTemplateCommandOutput } from "../commands/CreateEnvironmentTemplateCommand";
|
|
@@ -13,6 +15,7 @@ import { CreateServiceCommandInput, CreateServiceCommandOutput } from "../comman
|
|
|
13
15
|
import { CreateServiceTemplateCommandInput, CreateServiceTemplateCommandOutput } from "../commands/CreateServiceTemplateCommand";
|
|
14
16
|
import { CreateServiceTemplateVersionCommandInput, CreateServiceTemplateVersionCommandOutput } from "../commands/CreateServiceTemplateVersionCommand";
|
|
15
17
|
import { CreateTemplateSyncConfigCommandInput, CreateTemplateSyncConfigCommandOutput } from "../commands/CreateTemplateSyncConfigCommand";
|
|
18
|
+
import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "../commands/DeleteComponentCommand";
|
|
16
19
|
import { DeleteEnvironmentAccountConnectionCommandInput, DeleteEnvironmentAccountConnectionCommandOutput } from "../commands/DeleteEnvironmentAccountConnectionCommand";
|
|
17
20
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
|
|
18
21
|
import { DeleteEnvironmentTemplateCommandInput, DeleteEnvironmentTemplateCommandOutput } from "../commands/DeleteEnvironmentTemplateCommand";
|
|
@@ -23,6 +26,7 @@ import { DeleteServiceTemplateCommandInput, DeleteServiceTemplateCommandOutput }
|
|
|
23
26
|
import { DeleteServiceTemplateVersionCommandInput, DeleteServiceTemplateVersionCommandOutput } from "../commands/DeleteServiceTemplateVersionCommand";
|
|
24
27
|
import { DeleteTemplateSyncConfigCommandInput, DeleteTemplateSyncConfigCommandOutput } from "../commands/DeleteTemplateSyncConfigCommand";
|
|
25
28
|
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "../commands/GetAccountSettingsCommand";
|
|
29
|
+
import { GetComponentCommandInput, GetComponentCommandOutput } from "../commands/GetComponentCommand";
|
|
26
30
|
import { GetEnvironmentAccountConnectionCommandInput, GetEnvironmentAccountConnectionCommandOutput } from "../commands/GetEnvironmentAccountConnectionCommand";
|
|
27
31
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
|
|
28
32
|
import { GetEnvironmentTemplateCommandInput, GetEnvironmentTemplateCommandOutput } from "../commands/GetEnvironmentTemplateCommand";
|
|
@@ -35,6 +39,9 @@ import { GetServiceTemplateCommandInput, GetServiceTemplateCommandOutput } from
|
|
|
35
39
|
import { GetServiceTemplateVersionCommandInput, GetServiceTemplateVersionCommandOutput } from "../commands/GetServiceTemplateVersionCommand";
|
|
36
40
|
import { GetTemplateSyncConfigCommandInput, GetTemplateSyncConfigCommandOutput } from "../commands/GetTemplateSyncConfigCommand";
|
|
37
41
|
import { GetTemplateSyncStatusCommandInput, GetTemplateSyncStatusCommandOutput } from "../commands/GetTemplateSyncStatusCommand";
|
|
42
|
+
import { ListComponentOutputsCommandInput, ListComponentOutputsCommandOutput } from "../commands/ListComponentOutputsCommand";
|
|
43
|
+
import { ListComponentProvisionedResourcesCommandInput, ListComponentProvisionedResourcesCommandOutput } from "../commands/ListComponentProvisionedResourcesCommand";
|
|
44
|
+
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
38
45
|
import { ListEnvironmentAccountConnectionsCommandInput, ListEnvironmentAccountConnectionsCommandOutput } from "../commands/ListEnvironmentAccountConnectionsCommand";
|
|
39
46
|
import { ListEnvironmentOutputsCommandInput, ListEnvironmentOutputsCommandOutput } from "../commands/ListEnvironmentOutputsCommand";
|
|
40
47
|
import { ListEnvironmentProvisionedResourcesCommandInput, ListEnvironmentProvisionedResourcesCommandOutput } from "../commands/ListEnvironmentProvisionedResourcesCommand";
|
|
@@ -57,6 +64,7 @@ import { RejectEnvironmentAccountConnectionCommandInput, RejectEnvironmentAccoun
|
|
|
57
64
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
58
65
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
59
66
|
import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "../commands/UpdateAccountSettingsCommand";
|
|
67
|
+
import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "../commands/UpdateComponentCommand";
|
|
60
68
|
import { UpdateEnvironmentAccountConnectionCommandInput, UpdateEnvironmentAccountConnectionCommandOutput } from "../commands/UpdateEnvironmentAccountConnectionCommand";
|
|
61
69
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "../commands/UpdateEnvironmentCommand";
|
|
62
70
|
import { UpdateEnvironmentTemplateCommandInput, UpdateEnvironmentTemplateCommandOutput } from "../commands/UpdateEnvironmentTemplateCommand";
|
|
@@ -68,9 +76,11 @@ import { UpdateServiceTemplateCommandInput, UpdateServiceTemplateCommandOutput }
|
|
|
68
76
|
import { UpdateServiceTemplateVersionCommandInput, UpdateServiceTemplateVersionCommandOutput } from "../commands/UpdateServiceTemplateVersionCommand";
|
|
69
77
|
import { UpdateTemplateSyncConfigCommandInput, UpdateTemplateSyncConfigCommandOutput } from "../commands/UpdateTemplateSyncConfigCommand";
|
|
70
78
|
export declare const serializeAws_json1_0AcceptEnvironmentAccountConnectionCommand: (input: AcceptEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
+
export declare const serializeAws_json1_0CancelComponentDeploymentCommand: (input: CancelComponentDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
80
|
export declare const serializeAws_json1_0CancelEnvironmentDeploymentCommand: (input: CancelEnvironmentDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
81
|
export declare const serializeAws_json1_0CancelServiceInstanceDeploymentCommand: (input: CancelServiceInstanceDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
82
|
export declare const serializeAws_json1_0CancelServicePipelineDeploymentCommand: (input: CancelServicePipelineDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
export declare const serializeAws_json1_0CreateComponentCommand: (input: CreateComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
84
|
export declare const serializeAws_json1_0CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
85
|
export declare const serializeAws_json1_0CreateEnvironmentAccountConnectionCommand: (input: CreateEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
86
|
export declare const serializeAws_json1_0CreateEnvironmentTemplateCommand: (input: CreateEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -80,6 +90,7 @@ export declare const serializeAws_json1_0CreateServiceCommand: (input: CreateSer
|
|
|
80
90
|
export declare const serializeAws_json1_0CreateServiceTemplateCommand: (input: CreateServiceTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
91
|
export declare const serializeAws_json1_0CreateServiceTemplateVersionCommand: (input: CreateServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
92
|
export declare const serializeAws_json1_0CreateTemplateSyncConfigCommand: (input: CreateTemplateSyncConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
+
export declare const serializeAws_json1_0DeleteComponentCommand: (input: DeleteComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
94
|
export declare const serializeAws_json1_0DeleteEnvironmentCommand: (input: DeleteEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
95
|
export declare const serializeAws_json1_0DeleteEnvironmentAccountConnectionCommand: (input: DeleteEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
96
|
export declare const serializeAws_json1_0DeleteEnvironmentTemplateCommand: (input: DeleteEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -90,6 +101,7 @@ export declare const serializeAws_json1_0DeleteServiceTemplateCommand: (input: D
|
|
|
90
101
|
export declare const serializeAws_json1_0DeleteServiceTemplateVersionCommand: (input: DeleteServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
102
|
export declare const serializeAws_json1_0DeleteTemplateSyncConfigCommand: (input: DeleteTemplateSyncConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
103
|
export declare const serializeAws_json1_0GetAccountSettingsCommand: (input: GetAccountSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
+
export declare const serializeAws_json1_0GetComponentCommand: (input: GetComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
105
|
export declare const serializeAws_json1_0GetEnvironmentCommand: (input: GetEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
106
|
export declare const serializeAws_json1_0GetEnvironmentAccountConnectionCommand: (input: GetEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
107
|
export declare const serializeAws_json1_0GetEnvironmentTemplateCommand: (input: GetEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -102,6 +114,9 @@ export declare const serializeAws_json1_0GetServiceTemplateCommand: (input: GetS
|
|
|
102
114
|
export declare const serializeAws_json1_0GetServiceTemplateVersionCommand: (input: GetServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
115
|
export declare const serializeAws_json1_0GetTemplateSyncConfigCommand: (input: GetTemplateSyncConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
116
|
export declare const serializeAws_json1_0GetTemplateSyncStatusCommand: (input: GetTemplateSyncStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
+
export declare const serializeAws_json1_0ListComponentOutputsCommand: (input: ListComponentOutputsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_0ListComponentProvisionedResourcesCommand: (input: ListComponentProvisionedResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
+
export declare const serializeAws_json1_0ListComponentsCommand: (input: ListComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
120
|
export declare const serializeAws_json1_0ListEnvironmentAccountConnectionsCommand: (input: ListEnvironmentAccountConnectionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
121
|
export declare const serializeAws_json1_0ListEnvironmentOutputsCommand: (input: ListEnvironmentOutputsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
122
|
export declare const serializeAws_json1_0ListEnvironmentProvisionedResourcesCommand: (input: ListEnvironmentProvisionedResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -124,6 +139,7 @@ export declare const serializeAws_json1_0RejectEnvironmentAccountConnectionComma
|
|
|
124
139
|
export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
140
|
export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
141
|
export declare const serializeAws_json1_0UpdateAccountSettingsCommand: (input: UpdateAccountSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_0UpdateComponentCommand: (input: UpdateComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
143
|
export declare const serializeAws_json1_0UpdateEnvironmentCommand: (input: UpdateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
128
144
|
export declare const serializeAws_json1_0UpdateEnvironmentAccountConnectionCommand: (input: UpdateEnvironmentAccountConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
145
|
export declare const serializeAws_json1_0UpdateEnvironmentTemplateCommand: (input: UpdateEnvironmentTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -135,9 +151,11 @@ export declare const serializeAws_json1_0UpdateServiceTemplateCommand: (input: U
|
|
|
135
151
|
export declare const serializeAws_json1_0UpdateServiceTemplateVersionCommand: (input: UpdateServiceTemplateVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
152
|
export declare const serializeAws_json1_0UpdateTemplateSyncConfigCommand: (input: UpdateTemplateSyncConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
153
|
export declare const deserializeAws_json1_0AcceptEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptEnvironmentAccountConnectionCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_json1_0CancelComponentDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelComponentDeploymentCommandOutput>;
|
|
138
155
|
export declare const deserializeAws_json1_0CancelEnvironmentDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelEnvironmentDeploymentCommandOutput>;
|
|
139
156
|
export declare const deserializeAws_json1_0CancelServiceInstanceDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelServiceInstanceDeploymentCommandOutput>;
|
|
140
157
|
export declare const deserializeAws_json1_0CancelServicePipelineDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelServicePipelineDeploymentCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_json1_0CreateComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateComponentCommandOutput>;
|
|
141
159
|
export declare const deserializeAws_json1_0CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
|
|
142
160
|
export declare const deserializeAws_json1_0CreateEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentAccountConnectionCommandOutput>;
|
|
143
161
|
export declare const deserializeAws_json1_0CreateEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentTemplateCommandOutput>;
|
|
@@ -147,6 +165,7 @@ export declare const deserializeAws_json1_0CreateServiceCommand: (output: __Http
|
|
|
147
165
|
export declare const deserializeAws_json1_0CreateServiceTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceTemplateCommandOutput>;
|
|
148
166
|
export declare const deserializeAws_json1_0CreateServiceTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceTemplateVersionCommandOutput>;
|
|
149
167
|
export declare const deserializeAws_json1_0CreateTemplateSyncConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTemplateSyncConfigCommandOutput>;
|
|
168
|
+
export declare const deserializeAws_json1_0DeleteComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComponentCommandOutput>;
|
|
150
169
|
export declare const deserializeAws_json1_0DeleteEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentCommandOutput>;
|
|
151
170
|
export declare const deserializeAws_json1_0DeleteEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentAccountConnectionCommandOutput>;
|
|
152
171
|
export declare const deserializeAws_json1_0DeleteEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentTemplateCommandOutput>;
|
|
@@ -157,6 +176,7 @@ export declare const deserializeAws_json1_0DeleteServiceTemplateCommand: (output
|
|
|
157
176
|
export declare const deserializeAws_json1_0DeleteServiceTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceTemplateVersionCommandOutput>;
|
|
158
177
|
export declare const deserializeAws_json1_0DeleteTemplateSyncConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTemplateSyncConfigCommandOutput>;
|
|
159
178
|
export declare const deserializeAws_json1_0GetAccountSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccountSettingsCommandOutput>;
|
|
179
|
+
export declare const deserializeAws_json1_0GetComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentCommandOutput>;
|
|
160
180
|
export declare const deserializeAws_json1_0GetEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCommandOutput>;
|
|
161
181
|
export declare const deserializeAws_json1_0GetEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentAccountConnectionCommandOutput>;
|
|
162
182
|
export declare const deserializeAws_json1_0GetEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentTemplateCommandOutput>;
|
|
@@ -169,6 +189,9 @@ export declare const deserializeAws_json1_0GetServiceTemplateCommand: (output: _
|
|
|
169
189
|
export declare const deserializeAws_json1_0GetServiceTemplateVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServiceTemplateVersionCommandOutput>;
|
|
170
190
|
export declare const deserializeAws_json1_0GetTemplateSyncConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemplateSyncConfigCommandOutput>;
|
|
171
191
|
export declare const deserializeAws_json1_0GetTemplateSyncStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTemplateSyncStatusCommandOutput>;
|
|
192
|
+
export declare const deserializeAws_json1_0ListComponentOutputsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentOutputsCommandOutput>;
|
|
193
|
+
export declare const deserializeAws_json1_0ListComponentProvisionedResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentProvisionedResourcesCommandOutput>;
|
|
194
|
+
export declare const deserializeAws_json1_0ListComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentsCommandOutput>;
|
|
172
195
|
export declare const deserializeAws_json1_0ListEnvironmentAccountConnectionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentAccountConnectionsCommandOutput>;
|
|
173
196
|
export declare const deserializeAws_json1_0ListEnvironmentOutputsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentOutputsCommandOutput>;
|
|
174
197
|
export declare const deserializeAws_json1_0ListEnvironmentProvisionedResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentProvisionedResourcesCommandOutput>;
|
|
@@ -191,6 +214,7 @@ export declare const deserializeAws_json1_0RejectEnvironmentAccountConnectionCom
|
|
|
191
214
|
export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
192
215
|
export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
193
216
|
export declare const deserializeAws_json1_0UpdateAccountSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAccountSettingsCommandOutput>;
|
|
217
|
+
export declare const deserializeAws_json1_0UpdateComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateComponentCommandOutput>;
|
|
194
218
|
export declare const deserializeAws_json1_0UpdateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentCommandOutput>;
|
|
195
219
|
export declare const deserializeAws_json1_0UpdateEnvironmentAccountConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentAccountConnectionCommandOutput>;
|
|
196
220
|
export declare const deserializeAws_json1_0UpdateEnvironmentTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentTemplateCommandOutput>;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
2
|
import { AcceptEnvironmentAccountConnectionCommandInput, AcceptEnvironmentAccountConnectionCommandOutput } from "./commands/AcceptEnvironmentAccountConnectionCommand";
|
|
3
|
+
import { CancelComponentDeploymentCommandInput, CancelComponentDeploymentCommandOutput } from "./commands/CancelComponentDeploymentCommand";
|
|
3
4
|
import { CancelEnvironmentDeploymentCommandInput, CancelEnvironmentDeploymentCommandOutput } from "./commands/CancelEnvironmentDeploymentCommand";
|
|
4
5
|
import { CancelServiceInstanceDeploymentCommandInput, CancelServiceInstanceDeploymentCommandOutput } from "./commands/CancelServiceInstanceDeploymentCommand";
|
|
5
6
|
import { CancelServicePipelineDeploymentCommandInput, CancelServicePipelineDeploymentCommandOutput } from "./commands/CancelServicePipelineDeploymentCommand";
|
|
7
|
+
import { CreateComponentCommandInput, CreateComponentCommandOutput } from "./commands/CreateComponentCommand";
|
|
6
8
|
import { CreateEnvironmentAccountConnectionCommandInput, CreateEnvironmentAccountConnectionCommandOutput } from "./commands/CreateEnvironmentAccountConnectionCommand";
|
|
7
9
|
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
|
|
8
10
|
import { CreateEnvironmentTemplateCommandInput, CreateEnvironmentTemplateCommandOutput } from "./commands/CreateEnvironmentTemplateCommand";
|
|
@@ -12,6 +14,7 @@ import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./command
|
|
|
12
14
|
import { CreateServiceTemplateCommandInput, CreateServiceTemplateCommandOutput } from "./commands/CreateServiceTemplateCommand";
|
|
13
15
|
import { CreateServiceTemplateVersionCommandInput, CreateServiceTemplateVersionCommandOutput } from "./commands/CreateServiceTemplateVersionCommand";
|
|
14
16
|
import { CreateTemplateSyncConfigCommandInput, CreateTemplateSyncConfigCommandOutput } from "./commands/CreateTemplateSyncConfigCommand";
|
|
17
|
+
import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "./commands/DeleteComponentCommand";
|
|
15
18
|
import { DeleteEnvironmentAccountConnectionCommandInput, DeleteEnvironmentAccountConnectionCommandOutput } from "./commands/DeleteEnvironmentAccountConnectionCommand";
|
|
16
19
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
|
|
17
20
|
import { DeleteEnvironmentTemplateCommandInput, DeleteEnvironmentTemplateCommandOutput } from "./commands/DeleteEnvironmentTemplateCommand";
|
|
@@ -22,6 +25,7 @@ import { DeleteServiceTemplateCommandInput, DeleteServiceTemplateCommandOutput }
|
|
|
22
25
|
import { DeleteServiceTemplateVersionCommandInput, DeleteServiceTemplateVersionCommandOutput } from "./commands/DeleteServiceTemplateVersionCommand";
|
|
23
26
|
import { DeleteTemplateSyncConfigCommandInput, DeleteTemplateSyncConfigCommandOutput } from "./commands/DeleteTemplateSyncConfigCommand";
|
|
24
27
|
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
|
|
28
|
+
import { GetComponentCommandInput, GetComponentCommandOutput } from "./commands/GetComponentCommand";
|
|
25
29
|
import { GetEnvironmentAccountConnectionCommandInput, GetEnvironmentAccountConnectionCommandOutput } from "./commands/GetEnvironmentAccountConnectionCommand";
|
|
26
30
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
|
|
27
31
|
import { GetEnvironmentTemplateCommandInput, GetEnvironmentTemplateCommandOutput } from "./commands/GetEnvironmentTemplateCommand";
|
|
@@ -34,6 +38,9 @@ import { GetServiceTemplateCommandInput, GetServiceTemplateCommandOutput } from
|
|
|
34
38
|
import { GetServiceTemplateVersionCommandInput, GetServiceTemplateVersionCommandOutput } from "./commands/GetServiceTemplateVersionCommand";
|
|
35
39
|
import { GetTemplateSyncConfigCommandInput, GetTemplateSyncConfigCommandOutput } from "./commands/GetTemplateSyncConfigCommand";
|
|
36
40
|
import { GetTemplateSyncStatusCommandInput, GetTemplateSyncStatusCommandOutput } from "./commands/GetTemplateSyncStatusCommand";
|
|
41
|
+
import { ListComponentOutputsCommandInput, ListComponentOutputsCommandOutput } from "./commands/ListComponentOutputsCommand";
|
|
42
|
+
import { ListComponentProvisionedResourcesCommandInput, ListComponentProvisionedResourcesCommandOutput } from "./commands/ListComponentProvisionedResourcesCommand";
|
|
43
|
+
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "./commands/ListComponentsCommand";
|
|
37
44
|
import { ListEnvironmentAccountConnectionsCommandInput, ListEnvironmentAccountConnectionsCommandOutput } from "./commands/ListEnvironmentAccountConnectionsCommand";
|
|
38
45
|
import { ListEnvironmentOutputsCommandInput, ListEnvironmentOutputsCommandOutput } from "./commands/ListEnvironmentOutputsCommand";
|
|
39
46
|
import { ListEnvironmentProvisionedResourcesCommandInput, ListEnvironmentProvisionedResourcesCommandOutput } from "./commands/ListEnvironmentProvisionedResourcesCommand";
|
|
@@ -56,6 +63,7 @@ import { RejectEnvironmentAccountConnectionCommandInput, RejectEnvironmentAccoun
|
|
|
56
63
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
57
64
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
58
65
|
import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
|
|
66
|
+
import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "./commands/UpdateComponentCommand";
|
|
59
67
|
import { UpdateEnvironmentAccountConnectionCommandInput, UpdateEnvironmentAccountConnectionCommandOutput } from "./commands/UpdateEnvironmentAccountConnectionCommand";
|
|
60
68
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
|
|
61
69
|
import { UpdateEnvironmentTemplateCommandInput, UpdateEnvironmentTemplateCommandOutput } from "./commands/UpdateEnvironmentTemplateCommand";
|
|
@@ -74,6 +82,10 @@ export declare class Proton extends ProtonClient {
|
|
|
74
82
|
acceptEnvironmentAccountConnection(args: AcceptEnvironmentAccountConnectionCommandInput, cb: (err: any, data?: AcceptEnvironmentAccountConnectionCommandOutput) => void): void;
|
|
75
83
|
acceptEnvironmentAccountConnection(args: AcceptEnvironmentAccountConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptEnvironmentAccountConnectionCommandOutput) => void): void;
|
|
76
84
|
|
|
85
|
+
cancelComponentDeployment(args: CancelComponentDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CancelComponentDeploymentCommandOutput>;
|
|
86
|
+
cancelComponentDeployment(args: CancelComponentDeploymentCommandInput, cb: (err: any, data?: CancelComponentDeploymentCommandOutput) => void): void;
|
|
87
|
+
cancelComponentDeployment(args: CancelComponentDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelComponentDeploymentCommandOutput) => void): void;
|
|
88
|
+
|
|
77
89
|
cancelEnvironmentDeployment(args: CancelEnvironmentDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CancelEnvironmentDeploymentCommandOutput>;
|
|
78
90
|
cancelEnvironmentDeployment(args: CancelEnvironmentDeploymentCommandInput, cb: (err: any, data?: CancelEnvironmentDeploymentCommandOutput) => void): void;
|
|
79
91
|
cancelEnvironmentDeployment(args: CancelEnvironmentDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelEnvironmentDeploymentCommandOutput) => void): void;
|
|
@@ -86,6 +98,10 @@ export declare class Proton extends ProtonClient {
|
|
|
86
98
|
cancelServicePipelineDeployment(args: CancelServicePipelineDeploymentCommandInput, cb: (err: any, data?: CancelServicePipelineDeploymentCommandOutput) => void): void;
|
|
87
99
|
cancelServicePipelineDeployment(args: CancelServicePipelineDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelServicePipelineDeploymentCommandOutput) => void): void;
|
|
88
100
|
|
|
101
|
+
createComponent(args: CreateComponentCommandInput, options?: __HttpHandlerOptions): Promise<CreateComponentCommandOutput>;
|
|
102
|
+
createComponent(args: CreateComponentCommandInput, cb: (err: any, data?: CreateComponentCommandOutput) => void): void;
|
|
103
|
+
createComponent(args: CreateComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateComponentCommandOutput) => void): void;
|
|
104
|
+
|
|
89
105
|
createEnvironment(args: CreateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentCommandOutput>;
|
|
90
106
|
createEnvironment(args: CreateEnvironmentCommandInput, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
|
|
91
107
|
createEnvironment(args: CreateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
|
|
@@ -122,6 +138,10 @@ export declare class Proton extends ProtonClient {
|
|
|
122
138
|
createTemplateSyncConfig(args: CreateTemplateSyncConfigCommandInput, cb: (err: any, data?: CreateTemplateSyncConfigCommandOutput) => void): void;
|
|
123
139
|
createTemplateSyncConfig(args: CreateTemplateSyncConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTemplateSyncConfigCommandOutput) => void): void;
|
|
124
140
|
|
|
141
|
+
deleteComponent(args: DeleteComponentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteComponentCommandOutput>;
|
|
142
|
+
deleteComponent(args: DeleteComponentCommandInput, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
|
|
143
|
+
deleteComponent(args: DeleteComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
|
|
144
|
+
|
|
125
145
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentCommandOutput>;
|
|
126
146
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
127
147
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
@@ -162,6 +182,10 @@ export declare class Proton extends ProtonClient {
|
|
|
162
182
|
getAccountSettings(args: GetAccountSettingsCommandInput, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
163
183
|
getAccountSettings(args: GetAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
164
184
|
|
|
185
|
+
getComponent(args: GetComponentCommandInput, options?: __HttpHandlerOptions): Promise<GetComponentCommandOutput>;
|
|
186
|
+
getComponent(args: GetComponentCommandInput, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
|
|
187
|
+
getComponent(args: GetComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
|
|
188
|
+
|
|
165
189
|
getEnvironment(args: GetEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentCommandOutput>;
|
|
166
190
|
getEnvironment(args: GetEnvironmentCommandInput, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
|
|
167
191
|
getEnvironment(args: GetEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
|
|
@@ -210,6 +234,18 @@ export declare class Proton extends ProtonClient {
|
|
|
210
234
|
getTemplateSyncStatus(args: GetTemplateSyncStatusCommandInput, cb: (err: any, data?: GetTemplateSyncStatusCommandOutput) => void): void;
|
|
211
235
|
getTemplateSyncStatus(args: GetTemplateSyncStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTemplateSyncStatusCommandOutput) => void): void;
|
|
212
236
|
|
|
237
|
+
listComponentOutputs(args: ListComponentOutputsCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentOutputsCommandOutput>;
|
|
238
|
+
listComponentOutputs(args: ListComponentOutputsCommandInput, cb: (err: any, data?: ListComponentOutputsCommandOutput) => void): void;
|
|
239
|
+
listComponentOutputs(args: ListComponentOutputsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentOutputsCommandOutput) => void): void;
|
|
240
|
+
|
|
241
|
+
listComponentProvisionedResources(args: ListComponentProvisionedResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentProvisionedResourcesCommandOutput>;
|
|
242
|
+
listComponentProvisionedResources(args: ListComponentProvisionedResourcesCommandInput, cb: (err: any, data?: ListComponentProvisionedResourcesCommandOutput) => void): void;
|
|
243
|
+
listComponentProvisionedResources(args: ListComponentProvisionedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentProvisionedResourcesCommandOutput) => void): void;
|
|
244
|
+
|
|
245
|
+
listComponents(args: ListComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentsCommandOutput>;
|
|
246
|
+
listComponents(args: ListComponentsCommandInput, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
247
|
+
listComponents(args: ListComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
|
|
248
|
+
|
|
213
249
|
listEnvironmentAccountConnections(args: ListEnvironmentAccountConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentAccountConnectionsCommandOutput>;
|
|
214
250
|
listEnvironmentAccountConnections(args: ListEnvironmentAccountConnectionsCommandInput, cb: (err: any, data?: ListEnvironmentAccountConnectionsCommandOutput) => void): void;
|
|
215
251
|
listEnvironmentAccountConnections(args: ListEnvironmentAccountConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentAccountConnectionsCommandOutput) => void): void;
|
|
@@ -298,6 +334,10 @@ export declare class Proton extends ProtonClient {
|
|
|
298
334
|
updateAccountSettings(args: UpdateAccountSettingsCommandInput, cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void): void;
|
|
299
335
|
updateAccountSettings(args: UpdateAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccountSettingsCommandOutput) => void): void;
|
|
300
336
|
|
|
337
|
+
updateComponent(args: UpdateComponentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateComponentCommandOutput>;
|
|
338
|
+
updateComponent(args: UpdateComponentCommandInput, cb: (err: any, data?: UpdateComponentCommandOutput) => void): void;
|
|
339
|
+
updateComponent(args: UpdateComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateComponentCommandOutput) => void): void;
|
|
340
|
+
|
|
301
341
|
updateEnvironment(args: UpdateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentCommandOutput>;
|
|
302
342
|
updateEnvironment(args: UpdateEnvironmentCommandInput, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
|
|
303
343
|
updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
|
|
@@ -7,9 +7,11 @@ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AcceptEnvironmentAccountConnectionCommandInput, AcceptEnvironmentAccountConnectionCommandOutput } from "./commands/AcceptEnvironmentAccountConnectionCommand";
|
|
10
|
+
import { CancelComponentDeploymentCommandInput, CancelComponentDeploymentCommandOutput } from "./commands/CancelComponentDeploymentCommand";
|
|
10
11
|
import { CancelEnvironmentDeploymentCommandInput, CancelEnvironmentDeploymentCommandOutput } from "./commands/CancelEnvironmentDeploymentCommand";
|
|
11
12
|
import { CancelServiceInstanceDeploymentCommandInput, CancelServiceInstanceDeploymentCommandOutput } from "./commands/CancelServiceInstanceDeploymentCommand";
|
|
12
13
|
import { CancelServicePipelineDeploymentCommandInput, CancelServicePipelineDeploymentCommandOutput } from "./commands/CancelServicePipelineDeploymentCommand";
|
|
14
|
+
import { CreateComponentCommandInput, CreateComponentCommandOutput } from "./commands/CreateComponentCommand";
|
|
13
15
|
import { CreateEnvironmentAccountConnectionCommandInput, CreateEnvironmentAccountConnectionCommandOutput } from "./commands/CreateEnvironmentAccountConnectionCommand";
|
|
14
16
|
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
|
|
15
17
|
import { CreateEnvironmentTemplateCommandInput, CreateEnvironmentTemplateCommandOutput } from "./commands/CreateEnvironmentTemplateCommand";
|
|
@@ -19,6 +21,7 @@ import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./command
|
|
|
19
21
|
import { CreateServiceTemplateCommandInput, CreateServiceTemplateCommandOutput } from "./commands/CreateServiceTemplateCommand";
|
|
20
22
|
import { CreateServiceTemplateVersionCommandInput, CreateServiceTemplateVersionCommandOutput } from "./commands/CreateServiceTemplateVersionCommand";
|
|
21
23
|
import { CreateTemplateSyncConfigCommandInput, CreateTemplateSyncConfigCommandOutput } from "./commands/CreateTemplateSyncConfigCommand";
|
|
24
|
+
import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "./commands/DeleteComponentCommand";
|
|
22
25
|
import { DeleteEnvironmentAccountConnectionCommandInput, DeleteEnvironmentAccountConnectionCommandOutput } from "./commands/DeleteEnvironmentAccountConnectionCommand";
|
|
23
26
|
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
|
|
24
27
|
import { DeleteEnvironmentTemplateCommandInput, DeleteEnvironmentTemplateCommandOutput } from "./commands/DeleteEnvironmentTemplateCommand";
|
|
@@ -29,6 +32,7 @@ import { DeleteServiceTemplateCommandInput, DeleteServiceTemplateCommandOutput }
|
|
|
29
32
|
import { DeleteServiceTemplateVersionCommandInput, DeleteServiceTemplateVersionCommandOutput } from "./commands/DeleteServiceTemplateVersionCommand";
|
|
30
33
|
import { DeleteTemplateSyncConfigCommandInput, DeleteTemplateSyncConfigCommandOutput } from "./commands/DeleteTemplateSyncConfigCommand";
|
|
31
34
|
import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand";
|
|
35
|
+
import { GetComponentCommandInput, GetComponentCommandOutput } from "./commands/GetComponentCommand";
|
|
32
36
|
import { GetEnvironmentAccountConnectionCommandInput, GetEnvironmentAccountConnectionCommandOutput } from "./commands/GetEnvironmentAccountConnectionCommand";
|
|
33
37
|
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
|
|
34
38
|
import { GetEnvironmentTemplateCommandInput, GetEnvironmentTemplateCommandOutput } from "./commands/GetEnvironmentTemplateCommand";
|
|
@@ -41,6 +45,9 @@ import { GetServiceTemplateCommandInput, GetServiceTemplateCommandOutput } from
|
|
|
41
45
|
import { GetServiceTemplateVersionCommandInput, GetServiceTemplateVersionCommandOutput } from "./commands/GetServiceTemplateVersionCommand";
|
|
42
46
|
import { GetTemplateSyncConfigCommandInput, GetTemplateSyncConfigCommandOutput } from "./commands/GetTemplateSyncConfigCommand";
|
|
43
47
|
import { GetTemplateSyncStatusCommandInput, GetTemplateSyncStatusCommandOutput } from "./commands/GetTemplateSyncStatusCommand";
|
|
48
|
+
import { ListComponentOutputsCommandInput, ListComponentOutputsCommandOutput } from "./commands/ListComponentOutputsCommand";
|
|
49
|
+
import { ListComponentProvisionedResourcesCommandInput, ListComponentProvisionedResourcesCommandOutput } from "./commands/ListComponentProvisionedResourcesCommand";
|
|
50
|
+
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "./commands/ListComponentsCommand";
|
|
44
51
|
import { ListEnvironmentAccountConnectionsCommandInput, ListEnvironmentAccountConnectionsCommandOutput } from "./commands/ListEnvironmentAccountConnectionsCommand";
|
|
45
52
|
import { ListEnvironmentOutputsCommandInput, ListEnvironmentOutputsCommandOutput } from "./commands/ListEnvironmentOutputsCommand";
|
|
46
53
|
import { ListEnvironmentProvisionedResourcesCommandInput, ListEnvironmentProvisionedResourcesCommandOutput } from "./commands/ListEnvironmentProvisionedResourcesCommand";
|
|
@@ -63,6 +70,7 @@ import { RejectEnvironmentAccountConnectionCommandInput, RejectEnvironmentAccoun
|
|
|
63
70
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
64
71
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
65
72
|
import { UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
|
|
73
|
+
import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "./commands/UpdateComponentCommand";
|
|
66
74
|
import { UpdateEnvironmentAccountConnectionCommandInput, UpdateEnvironmentAccountConnectionCommandOutput } from "./commands/UpdateEnvironmentAccountConnectionCommand";
|
|
67
75
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
|
|
68
76
|
import { UpdateEnvironmentTemplateCommandInput, UpdateEnvironmentTemplateCommandOutput } from "./commands/UpdateEnvironmentTemplateCommand";
|
|
@@ -73,8 +81,8 @@ import { UpdateServicePipelineCommandInput, UpdateServicePipelineCommandOutput }
|
|
|
73
81
|
import { UpdateServiceTemplateCommandInput, UpdateServiceTemplateCommandOutput } from "./commands/UpdateServiceTemplateCommand";
|
|
74
82
|
import { UpdateServiceTemplateVersionCommandInput, UpdateServiceTemplateVersionCommandOutput } from "./commands/UpdateServiceTemplateVersionCommand";
|
|
75
83
|
import { UpdateTemplateSyncConfigCommandInput, UpdateTemplateSyncConfigCommandOutput } from "./commands/UpdateTemplateSyncConfigCommand";
|
|
76
|
-
export declare type ServiceInputTypes = AcceptEnvironmentAccountConnectionCommandInput | CancelEnvironmentDeploymentCommandInput | CancelServiceInstanceDeploymentCommandInput | CancelServicePipelineDeploymentCommandInput | CreateEnvironmentAccountConnectionCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentTemplateCommandInput | CreateEnvironmentTemplateVersionCommandInput | CreateRepositoryCommandInput | CreateServiceCommandInput | CreateServiceTemplateCommandInput | CreateServiceTemplateVersionCommandInput | CreateTemplateSyncConfigCommandInput | DeleteEnvironmentAccountConnectionCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentTemplateCommandInput | DeleteEnvironmentTemplateVersionCommandInput | DeleteRepositoryCommandInput | DeleteServiceCommandInput | DeleteServiceTemplateCommandInput | DeleteServiceTemplateVersionCommandInput | DeleteTemplateSyncConfigCommandInput | GetAccountSettingsCommandInput | GetEnvironmentAccountConnectionCommandInput | GetEnvironmentCommandInput | GetEnvironmentTemplateCommandInput | GetEnvironmentTemplateVersionCommandInput | GetRepositoryCommandInput | GetRepositorySyncStatusCommandInput | GetServiceCommandInput | GetServiceInstanceCommandInput | GetServiceTemplateCommandInput | GetServiceTemplateVersionCommandInput | GetTemplateSyncConfigCommandInput | GetTemplateSyncStatusCommandInput | ListEnvironmentAccountConnectionsCommandInput | ListEnvironmentOutputsCommandInput | ListEnvironmentProvisionedResourcesCommandInput | ListEnvironmentTemplateVersionsCommandInput | ListEnvironmentTemplatesCommandInput | ListEnvironmentsCommandInput | ListRepositoriesCommandInput | ListRepositorySyncDefinitionsCommandInput | ListServiceInstanceOutputsCommandInput | ListServiceInstanceProvisionedResourcesCommandInput | ListServiceInstancesCommandInput | ListServicePipelineOutputsCommandInput | ListServicePipelineProvisionedResourcesCommandInput | ListServiceTemplateVersionsCommandInput | ListServiceTemplatesCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | NotifyResourceDeploymentStatusChangeCommandInput | RejectEnvironmentAccountConnectionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountSettingsCommandInput | UpdateEnvironmentAccountConnectionCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentTemplateCommandInput | UpdateEnvironmentTemplateVersionCommandInput | UpdateServiceCommandInput | UpdateServiceInstanceCommandInput | UpdateServicePipelineCommandInput | UpdateServiceTemplateCommandInput | UpdateServiceTemplateVersionCommandInput | UpdateTemplateSyncConfigCommandInput;
|
|
77
|
-
export declare type ServiceOutputTypes = AcceptEnvironmentAccountConnectionCommandOutput | CancelEnvironmentDeploymentCommandOutput | CancelServiceInstanceDeploymentCommandOutput | CancelServicePipelineDeploymentCommandOutput | CreateEnvironmentAccountConnectionCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentTemplateCommandOutput | CreateEnvironmentTemplateVersionCommandOutput | CreateRepositoryCommandOutput | CreateServiceCommandOutput | CreateServiceTemplateCommandOutput | CreateServiceTemplateVersionCommandOutput | CreateTemplateSyncConfigCommandOutput | DeleteEnvironmentAccountConnectionCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentTemplateCommandOutput | DeleteEnvironmentTemplateVersionCommandOutput | DeleteRepositoryCommandOutput | DeleteServiceCommandOutput | DeleteServiceTemplateCommandOutput | DeleteServiceTemplateVersionCommandOutput | DeleteTemplateSyncConfigCommandOutput | GetAccountSettingsCommandOutput | GetEnvironmentAccountConnectionCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentTemplateCommandOutput | GetEnvironmentTemplateVersionCommandOutput | GetRepositoryCommandOutput | GetRepositorySyncStatusCommandOutput | GetServiceCommandOutput | GetServiceInstanceCommandOutput | GetServiceTemplateCommandOutput | GetServiceTemplateVersionCommandOutput | GetTemplateSyncConfigCommandOutput | GetTemplateSyncStatusCommandOutput | ListEnvironmentAccountConnectionsCommandOutput | ListEnvironmentOutputsCommandOutput | ListEnvironmentProvisionedResourcesCommandOutput | ListEnvironmentTemplateVersionsCommandOutput | ListEnvironmentTemplatesCommandOutput | ListEnvironmentsCommandOutput | ListRepositoriesCommandOutput | ListRepositorySyncDefinitionsCommandOutput | ListServiceInstanceOutputsCommandOutput | ListServiceInstanceProvisionedResourcesCommandOutput | ListServiceInstancesCommandOutput | ListServicePipelineOutputsCommandOutput | ListServicePipelineProvisionedResourcesCommandOutput | ListServiceTemplateVersionsCommandOutput | ListServiceTemplatesCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | NotifyResourceDeploymentStatusChangeCommandOutput | RejectEnvironmentAccountConnectionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountSettingsCommandOutput | UpdateEnvironmentAccountConnectionCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentTemplateCommandOutput | UpdateEnvironmentTemplateVersionCommandOutput | UpdateServiceCommandOutput | UpdateServiceInstanceCommandOutput | UpdateServicePipelineCommandOutput | UpdateServiceTemplateCommandOutput | UpdateServiceTemplateVersionCommandOutput | UpdateTemplateSyncConfigCommandOutput;
|
|
84
|
+
export declare type ServiceInputTypes = AcceptEnvironmentAccountConnectionCommandInput | CancelComponentDeploymentCommandInput | CancelEnvironmentDeploymentCommandInput | CancelServiceInstanceDeploymentCommandInput | CancelServicePipelineDeploymentCommandInput | CreateComponentCommandInput | CreateEnvironmentAccountConnectionCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentTemplateCommandInput | CreateEnvironmentTemplateVersionCommandInput | CreateRepositoryCommandInput | CreateServiceCommandInput | CreateServiceTemplateCommandInput | CreateServiceTemplateVersionCommandInput | CreateTemplateSyncConfigCommandInput | DeleteComponentCommandInput | DeleteEnvironmentAccountConnectionCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentTemplateCommandInput | DeleteEnvironmentTemplateVersionCommandInput | DeleteRepositoryCommandInput | DeleteServiceCommandInput | DeleteServiceTemplateCommandInput | DeleteServiceTemplateVersionCommandInput | DeleteTemplateSyncConfigCommandInput | GetAccountSettingsCommandInput | GetComponentCommandInput | GetEnvironmentAccountConnectionCommandInput | GetEnvironmentCommandInput | GetEnvironmentTemplateCommandInput | GetEnvironmentTemplateVersionCommandInput | GetRepositoryCommandInput | GetRepositorySyncStatusCommandInput | GetServiceCommandInput | GetServiceInstanceCommandInput | GetServiceTemplateCommandInput | GetServiceTemplateVersionCommandInput | GetTemplateSyncConfigCommandInput | GetTemplateSyncStatusCommandInput | ListComponentOutputsCommandInput | ListComponentProvisionedResourcesCommandInput | ListComponentsCommandInput | ListEnvironmentAccountConnectionsCommandInput | ListEnvironmentOutputsCommandInput | ListEnvironmentProvisionedResourcesCommandInput | ListEnvironmentTemplateVersionsCommandInput | ListEnvironmentTemplatesCommandInput | ListEnvironmentsCommandInput | ListRepositoriesCommandInput | ListRepositorySyncDefinitionsCommandInput | ListServiceInstanceOutputsCommandInput | ListServiceInstanceProvisionedResourcesCommandInput | ListServiceInstancesCommandInput | ListServicePipelineOutputsCommandInput | ListServicePipelineProvisionedResourcesCommandInput | ListServiceTemplateVersionsCommandInput | ListServiceTemplatesCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | NotifyResourceDeploymentStatusChangeCommandInput | RejectEnvironmentAccountConnectionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountSettingsCommandInput | UpdateComponentCommandInput | UpdateEnvironmentAccountConnectionCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentTemplateCommandInput | UpdateEnvironmentTemplateVersionCommandInput | UpdateServiceCommandInput | UpdateServiceInstanceCommandInput | UpdateServicePipelineCommandInput | UpdateServiceTemplateCommandInput | UpdateServiceTemplateVersionCommandInput | UpdateTemplateSyncConfigCommandInput;
|
|
85
|
+
export declare type ServiceOutputTypes = AcceptEnvironmentAccountConnectionCommandOutput | CancelComponentDeploymentCommandOutput | CancelEnvironmentDeploymentCommandOutput | CancelServiceInstanceDeploymentCommandOutput | CancelServicePipelineDeploymentCommandOutput | CreateComponentCommandOutput | CreateEnvironmentAccountConnectionCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentTemplateCommandOutput | CreateEnvironmentTemplateVersionCommandOutput | CreateRepositoryCommandOutput | CreateServiceCommandOutput | CreateServiceTemplateCommandOutput | CreateServiceTemplateVersionCommandOutput | CreateTemplateSyncConfigCommandOutput | DeleteComponentCommandOutput | DeleteEnvironmentAccountConnectionCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentTemplateCommandOutput | DeleteEnvironmentTemplateVersionCommandOutput | DeleteRepositoryCommandOutput | DeleteServiceCommandOutput | DeleteServiceTemplateCommandOutput | DeleteServiceTemplateVersionCommandOutput | DeleteTemplateSyncConfigCommandOutput | GetAccountSettingsCommandOutput | GetComponentCommandOutput | GetEnvironmentAccountConnectionCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentTemplateCommandOutput | GetEnvironmentTemplateVersionCommandOutput | GetRepositoryCommandOutput | GetRepositorySyncStatusCommandOutput | GetServiceCommandOutput | GetServiceInstanceCommandOutput | GetServiceTemplateCommandOutput | GetServiceTemplateVersionCommandOutput | GetTemplateSyncConfigCommandOutput | GetTemplateSyncStatusCommandOutput | ListComponentOutputsCommandOutput | ListComponentProvisionedResourcesCommandOutput | ListComponentsCommandOutput | ListEnvironmentAccountConnectionsCommandOutput | ListEnvironmentOutputsCommandOutput | ListEnvironmentProvisionedResourcesCommandOutput | ListEnvironmentTemplateVersionsCommandOutput | ListEnvironmentTemplatesCommandOutput | ListEnvironmentsCommandOutput | ListRepositoriesCommandOutput | ListRepositorySyncDefinitionsCommandOutput | ListServiceInstanceOutputsCommandOutput | ListServiceInstanceProvisionedResourcesCommandOutput | ListServiceInstancesCommandOutput | ListServicePipelineOutputsCommandOutput | ListServicePipelineProvisionedResourcesCommandOutput | ListServiceTemplateVersionsCommandOutput | ListServiceTemplatesCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | NotifyResourceDeploymentStatusChangeCommandOutput | RejectEnvironmentAccountConnectionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountSettingsCommandOutput | UpdateComponentCommandOutput | UpdateEnvironmentAccountConnectionCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentTemplateCommandOutput | UpdateEnvironmentTemplateVersionCommandOutput | UpdateServiceCommandOutput | UpdateServiceInstanceCommandOutput | UpdateServicePipelineCommandOutput | UpdateServiceTemplateCommandOutput | UpdateServiceTemplateVersionCommandOutput | UpdateTemplateSyncConfigCommandOutput;
|
|
78
86
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
79
87
|
|
|
80
88
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CancelComponentDeploymentInput, CancelComponentDeploymentOutput } from "../models/models_0";
|
|
4
|
+
import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
|
|
5
|
+
export interface CancelComponentDeploymentCommandInput extends CancelComponentDeploymentInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CancelComponentDeploymentCommandOutput extends CancelComponentDeploymentOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CancelComponentDeploymentCommand extends $Command<CancelComponentDeploymentCommandInput, CancelComponentDeploymentCommandOutput, ProtonClientResolvedConfig> {
|
|
11
|
+
readonly input: CancelComponentDeploymentCommandInput;
|
|
12
|
+
constructor(input: CancelComponentDeploymentCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelComponentDeploymentCommandInput, CancelComponentDeploymentCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CreateComponentInput, CreateComponentOutput } from "../models/models_0";
|
|
4
|
+
import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
|
|
5
|
+
export interface CreateComponentCommandInput extends CreateComponentInput {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateComponentCommandOutput extends CreateComponentOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateComponentCommand extends $Command<CreateComponentCommandInput, CreateComponentCommandOutput, ProtonClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateComponentCommandInput;
|
|
12
|
+
constructor(input: CreateComponentCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateComponentCommandInput, CreateComponentCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteComponentInput, DeleteComponentOutput } from "../models/models_0";
|
|
4
|
+
import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
|
|
5
|
+
export interface DeleteComponentCommandInput extends DeleteComponentInput {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteComponentCommandOutput extends DeleteComponentOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteComponentCommand extends $Command<DeleteComponentCommandInput, DeleteComponentCommandOutput, ProtonClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteComponentCommandInput;
|
|
12
|
+
constructor(input: DeleteComponentCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteComponentCommandInput, DeleteComponentCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetComponentInput, GetComponentOutput } from "../models/models_0";
|
|
4
|
+
import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
|
|
5
|
+
export interface GetComponentCommandInput extends GetComponentInput {
|
|
6
|
+
}
|
|
7
|
+
export interface GetComponentCommandOutput extends GetComponentOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetComponentCommand extends $Command<GetComponentCommandInput, GetComponentCommandOutput, ProtonClientResolvedConfig> {
|
|
11
|
+
readonly input: GetComponentCommandInput;
|
|
12
|
+
constructor(input: GetComponentCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComponentCommandInput, GetComponentCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListComponentOutputsInput, ListComponentOutputsOutput } from "../models/models_0";
|
|
4
|
+
import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
|
|
5
|
+
export interface ListComponentOutputsCommandInput extends ListComponentOutputsInput {
|
|
6
|
+
}
|
|
7
|
+
export interface ListComponentOutputsCommandOutput extends ListComponentOutputsOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListComponentOutputsCommand extends $Command<ListComponentOutputsCommandInput, ListComponentOutputsCommandOutput, ProtonClientResolvedConfig> {
|
|
11
|
+
readonly input: ListComponentOutputsCommandInput;
|
|
12
|
+
constructor(input: ListComponentOutputsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentOutputsCommandInput, ListComponentOutputsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListComponentProvisionedResourcesInput, ListComponentProvisionedResourcesOutput } from "../models/models_0";
|
|
4
|
+
import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
|
|
5
|
+
export interface ListComponentProvisionedResourcesCommandInput extends ListComponentProvisionedResourcesInput {
|
|
6
|
+
}
|
|
7
|
+
export interface ListComponentProvisionedResourcesCommandOutput extends ListComponentProvisionedResourcesOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListComponentProvisionedResourcesCommand extends $Command<ListComponentProvisionedResourcesCommandInput, ListComponentProvisionedResourcesCommandOutput, ProtonClientResolvedConfig> {
|
|
11
|
+
readonly input: ListComponentProvisionedResourcesCommandInput;
|
|
12
|
+
constructor(input: ListComponentProvisionedResourcesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentProvisionedResourcesCommandInput, ListComponentProvisionedResourcesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListComponentsInput, ListComponentsOutput } from "../models/models_0";
|
|
4
|
+
import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
|
|
5
|
+
export interface ListComponentsCommandInput extends ListComponentsInput {
|
|
6
|
+
}
|
|
7
|
+
export interface ListComponentsCommandOutput extends ListComponentsOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, ProtonClientResolvedConfig> {
|
|
11
|
+
readonly input: ListComponentsCommandInput;
|
|
12
|
+
constructor(input: ListComponentsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { UpdateComponentInput, UpdateComponentOutput } from "../models/models_0";
|
|
4
|
+
import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient";
|
|
5
|
+
export interface UpdateComponentCommandInput extends UpdateComponentInput {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateComponentCommandOutput extends UpdateComponentOutput, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateComponentCommand extends $Command<UpdateComponentCommandInput, UpdateComponentCommandOutput, ProtonClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateComponentCommandInput;
|
|
12
|
+
constructor(input: UpdateComponentCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ProtonClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateComponentCommandInput, UpdateComponentCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from "./AcceptEnvironmentAccountConnectionCommand";
|
|
2
|
+
export * from "./CancelComponentDeploymentCommand";
|
|
2
3
|
export * from "./CancelEnvironmentDeploymentCommand";
|
|
3
4
|
export * from "./CancelServiceInstanceDeploymentCommand";
|
|
4
5
|
export * from "./CancelServicePipelineDeploymentCommand";
|
|
6
|
+
export * from "./CreateComponentCommand";
|
|
5
7
|
export * from "./CreateEnvironmentAccountConnectionCommand";
|
|
6
8
|
export * from "./CreateEnvironmentCommand";
|
|
7
9
|
export * from "./CreateEnvironmentTemplateCommand";
|
|
@@ -11,6 +13,7 @@ export * from "./CreateServiceCommand";
|
|
|
11
13
|
export * from "./CreateServiceTemplateCommand";
|
|
12
14
|
export * from "./CreateServiceTemplateVersionCommand";
|
|
13
15
|
export * from "./CreateTemplateSyncConfigCommand";
|
|
16
|
+
export * from "./DeleteComponentCommand";
|
|
14
17
|
export * from "./DeleteEnvironmentAccountConnectionCommand";
|
|
15
18
|
export * from "./DeleteEnvironmentCommand";
|
|
16
19
|
export * from "./DeleteEnvironmentTemplateCommand";
|
|
@@ -21,6 +24,7 @@ export * from "./DeleteServiceTemplateCommand";
|
|
|
21
24
|
export * from "./DeleteServiceTemplateVersionCommand";
|
|
22
25
|
export * from "./DeleteTemplateSyncConfigCommand";
|
|
23
26
|
export * from "./GetAccountSettingsCommand";
|
|
27
|
+
export * from "./GetComponentCommand";
|
|
24
28
|
export * from "./GetEnvironmentAccountConnectionCommand";
|
|
25
29
|
export * from "./GetEnvironmentCommand";
|
|
26
30
|
export * from "./GetEnvironmentTemplateCommand";
|
|
@@ -33,6 +37,9 @@ export * from "./GetServiceTemplateCommand";
|
|
|
33
37
|
export * from "./GetServiceTemplateVersionCommand";
|
|
34
38
|
export * from "./GetTemplateSyncConfigCommand";
|
|
35
39
|
export * from "./GetTemplateSyncStatusCommand";
|
|
40
|
+
export * from "./ListComponentOutputsCommand";
|
|
41
|
+
export * from "./ListComponentProvisionedResourcesCommand";
|
|
42
|
+
export * from "./ListComponentsCommand";
|
|
36
43
|
export * from "./ListEnvironmentAccountConnectionsCommand";
|
|
37
44
|
export * from "./ListEnvironmentOutputsCommand";
|
|
38
45
|
export * from "./ListEnvironmentProvisionedResourcesCommand";
|
|
@@ -55,6 +62,7 @@ export * from "./RejectEnvironmentAccountConnectionCommand";
|
|
|
55
62
|
export * from "./TagResourceCommand";
|
|
56
63
|
export * from "./UntagResourceCommand";
|
|
57
64
|
export * from "./UpdateAccountSettingsCommand";
|
|
65
|
+
export * from "./UpdateComponentCommand";
|
|
58
66
|
export * from "./UpdateEnvironmentAccountConnectionCommand";
|
|
59
67
|
export * from "./UpdateEnvironmentCommand";
|
|
60
68
|
export * from "./UpdateEnvironmentTemplateCommand";
|