@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
|
@@ -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";
|
|
@@ -129,10 +129,10 @@ export var UpdateAccountSettingsOutput;
|
|
|
129
129
|
(function (UpdateAccountSettingsOutput) {
|
|
130
130
|
UpdateAccountSettingsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
131
131
|
})(UpdateAccountSettingsOutput || (UpdateAccountSettingsOutput = {}));
|
|
132
|
-
export var
|
|
133
|
-
(function (
|
|
134
|
-
|
|
135
|
-
})(
|
|
132
|
+
export var CancelComponentDeploymentInput;
|
|
133
|
+
(function (CancelComponentDeploymentInput) {
|
|
134
|
+
CancelComponentDeploymentInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
|
+
})(CancelComponentDeploymentInput || (CancelComponentDeploymentInput = {}));
|
|
136
136
|
export var DeploymentStatus;
|
|
137
137
|
(function (DeploymentStatus) {
|
|
138
138
|
DeploymentStatus["CANCELLED"] = "CANCELLED";
|
|
@@ -144,6 +144,18 @@ export var DeploymentStatus;
|
|
|
144
144
|
DeploymentStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
145
145
|
DeploymentStatus["SUCCEEDED"] = "SUCCEEDED";
|
|
146
146
|
})(DeploymentStatus || (DeploymentStatus = {}));
|
|
147
|
+
export var Component;
|
|
148
|
+
(function (Component) {
|
|
149
|
+
Component.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.description && { description: SENSITIVE_STRING })), (obj.deploymentStatusMessage && { deploymentStatusMessage: SENSITIVE_STRING })), (obj.serviceSpec && { serviceSpec: SENSITIVE_STRING }))); };
|
|
150
|
+
})(Component || (Component = {}));
|
|
151
|
+
export var CancelComponentDeploymentOutput;
|
|
152
|
+
(function (CancelComponentDeploymentOutput) {
|
|
153
|
+
CancelComponentDeploymentOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.component && { component: Component.filterSensitiveLog(obj.component) }))); };
|
|
154
|
+
})(CancelComponentDeploymentOutput || (CancelComponentDeploymentOutput = {}));
|
|
155
|
+
export var CancelEnvironmentDeploymentInput;
|
|
156
|
+
(function (CancelEnvironmentDeploymentInput) {
|
|
157
|
+
CancelEnvironmentDeploymentInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
158
|
+
})(CancelEnvironmentDeploymentInput || (CancelEnvironmentDeploymentInput = {}));
|
|
147
159
|
export var Provisioning;
|
|
148
160
|
(function (Provisioning) {
|
|
149
161
|
Provisioning["CUSTOMER_MANAGED"] = "CUSTOMER_MANAGED";
|
|
@@ -180,18 +192,47 @@ export var CancelServicePipelineDeploymentOutput;
|
|
|
180
192
|
(function (CancelServicePipelineDeploymentOutput) {
|
|
181
193
|
CancelServicePipelineDeploymentOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.pipeline && { pipeline: ServicePipeline.filterSensitiveLog(obj.pipeline) }))); };
|
|
182
194
|
})(CancelServicePipelineDeploymentOutput || (CancelServicePipelineDeploymentOutput = {}));
|
|
195
|
+
export var ListComponentOutputsInput;
|
|
196
|
+
(function (ListComponentOutputsInput) {
|
|
197
|
+
ListComponentOutputsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
+
})(ListComponentOutputsInput || (ListComponentOutputsInput = {}));
|
|
199
|
+
export var Output;
|
|
200
|
+
(function (Output) {
|
|
201
|
+
Output.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
|
+
})(Output || (Output = {}));
|
|
203
|
+
export var ListComponentOutputsOutput;
|
|
204
|
+
(function (ListComponentOutputsOutput) {
|
|
205
|
+
ListComponentOutputsOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.outputs && { outputs: SENSITIVE_STRING }))); };
|
|
206
|
+
})(ListComponentOutputsOutput || (ListComponentOutputsOutput = {}));
|
|
207
|
+
export var ListComponentProvisionedResourcesInput;
|
|
208
|
+
(function (ListComponentProvisionedResourcesInput) {
|
|
209
|
+
ListComponentProvisionedResourcesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
210
|
+
})(ListComponentProvisionedResourcesInput || (ListComponentProvisionedResourcesInput = {}));
|
|
211
|
+
export var ProvisionedResourceEngine;
|
|
212
|
+
(function (ProvisionedResourceEngine) {
|
|
213
|
+
ProvisionedResourceEngine["CLOUDFORMATION"] = "CLOUDFORMATION";
|
|
214
|
+
ProvisionedResourceEngine["TERRAFORM"] = "TERRAFORM";
|
|
215
|
+
})(ProvisionedResourceEngine || (ProvisionedResourceEngine = {}));
|
|
216
|
+
export var ProvisionedResource;
|
|
217
|
+
(function (ProvisionedResource) {
|
|
218
|
+
ProvisionedResource.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
+
})(ProvisionedResource || (ProvisionedResource = {}));
|
|
220
|
+
export var ListComponentProvisionedResourcesOutput;
|
|
221
|
+
(function (ListComponentProvisionedResourcesOutput) {
|
|
222
|
+
ListComponentProvisionedResourcesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
223
|
+
})(ListComponentProvisionedResourcesOutput || (ListComponentProvisionedResourcesOutput = {}));
|
|
183
224
|
export var Tag;
|
|
184
225
|
(function (Tag) {
|
|
185
226
|
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
227
|
})(Tag || (Tag = {}));
|
|
187
|
-
export var
|
|
188
|
-
(function (
|
|
189
|
-
|
|
190
|
-
})(
|
|
191
|
-
export var
|
|
192
|
-
(function (
|
|
193
|
-
|
|
194
|
-
})(
|
|
228
|
+
export var CreateComponentInput;
|
|
229
|
+
(function (CreateComponentInput) {
|
|
230
|
+
CreateComponentInput.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.description && { description: SENSITIVE_STRING })), (obj.templateFile && { templateFile: SENSITIVE_STRING })), (obj.manifest && { manifest: SENSITIVE_STRING })), (obj.serviceSpec && { serviceSpec: SENSITIVE_STRING }))); };
|
|
231
|
+
})(CreateComponentInput || (CreateComponentInput = {}));
|
|
232
|
+
export var CreateComponentOutput;
|
|
233
|
+
(function (CreateComponentOutput) {
|
|
234
|
+
CreateComponentOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.component && { component: Component.filterSensitiveLog(obj.component) }))); };
|
|
235
|
+
})(CreateComponentOutput || (CreateComponentOutput = {}));
|
|
195
236
|
var ServiceQuotaExceededException = (function (_super) {
|
|
196
237
|
__extends(ServiceQuotaExceededException, _super);
|
|
197
238
|
function ServiceQuotaExceededException(opts) {
|
|
@@ -204,6 +245,55 @@ var ServiceQuotaExceededException = (function (_super) {
|
|
|
204
245
|
return ServiceQuotaExceededException;
|
|
205
246
|
}(__BaseException));
|
|
206
247
|
export { ServiceQuotaExceededException };
|
|
248
|
+
export var DeleteComponentInput;
|
|
249
|
+
(function (DeleteComponentInput) {
|
|
250
|
+
DeleteComponentInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
})(DeleteComponentInput || (DeleteComponentInput = {}));
|
|
252
|
+
export var DeleteComponentOutput;
|
|
253
|
+
(function (DeleteComponentOutput) {
|
|
254
|
+
DeleteComponentOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.component && { component: Component.filterSensitiveLog(obj.component) }))); };
|
|
255
|
+
})(DeleteComponentOutput || (DeleteComponentOutput = {}));
|
|
256
|
+
export var GetComponentInput;
|
|
257
|
+
(function (GetComponentInput) {
|
|
258
|
+
GetComponentInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
})(GetComponentInput || (GetComponentInput = {}));
|
|
260
|
+
export var GetComponentOutput;
|
|
261
|
+
(function (GetComponentOutput) {
|
|
262
|
+
GetComponentOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.component && { component: Component.filterSensitiveLog(obj.component) }))); };
|
|
263
|
+
})(GetComponentOutput || (GetComponentOutput = {}));
|
|
264
|
+
export var ListComponentsInput;
|
|
265
|
+
(function (ListComponentsInput) {
|
|
266
|
+
ListComponentsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
})(ListComponentsInput || (ListComponentsInput = {}));
|
|
268
|
+
export var ComponentSummary;
|
|
269
|
+
(function (ComponentSummary) {
|
|
270
|
+
ComponentSummary.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.deploymentStatusMessage && { deploymentStatusMessage: SENSITIVE_STRING }))); };
|
|
271
|
+
})(ComponentSummary || (ComponentSummary = {}));
|
|
272
|
+
export var ListComponentsOutput;
|
|
273
|
+
(function (ListComponentsOutput) {
|
|
274
|
+
ListComponentsOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.components && { components: obj.components.map(function (item) { return ComponentSummary.filterSensitiveLog(item); }) }))); };
|
|
275
|
+
})(ListComponentsOutput || (ListComponentsOutput = {}));
|
|
276
|
+
export var ComponentDeploymentUpdateType;
|
|
277
|
+
(function (ComponentDeploymentUpdateType) {
|
|
278
|
+
ComponentDeploymentUpdateType["CURRENT_VERSION"] = "CURRENT_VERSION";
|
|
279
|
+
ComponentDeploymentUpdateType["NONE"] = "NONE";
|
|
280
|
+
})(ComponentDeploymentUpdateType || (ComponentDeploymentUpdateType = {}));
|
|
281
|
+
export var UpdateComponentInput;
|
|
282
|
+
(function (UpdateComponentInput) {
|
|
283
|
+
UpdateComponentInput.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.description && { description: SENSITIVE_STRING })), (obj.serviceSpec && { serviceSpec: SENSITIVE_STRING })), (obj.templateFile && { templateFile: SENSITIVE_STRING }))); };
|
|
284
|
+
})(UpdateComponentInput || (UpdateComponentInput = {}));
|
|
285
|
+
export var UpdateComponentOutput;
|
|
286
|
+
(function (UpdateComponentOutput) {
|
|
287
|
+
UpdateComponentOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.component && { component: Component.filterSensitiveLog(obj.component) }))); };
|
|
288
|
+
})(UpdateComponentOutput || (UpdateComponentOutput = {}));
|
|
289
|
+
export var CreateEnvironmentAccountConnectionInput;
|
|
290
|
+
(function (CreateEnvironmentAccountConnectionInput) {
|
|
291
|
+
CreateEnvironmentAccountConnectionInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
})(CreateEnvironmentAccountConnectionInput || (CreateEnvironmentAccountConnectionInput = {}));
|
|
293
|
+
export var CreateEnvironmentAccountConnectionOutput;
|
|
294
|
+
(function (CreateEnvironmentAccountConnectionOutput) {
|
|
295
|
+
CreateEnvironmentAccountConnectionOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
})(CreateEnvironmentAccountConnectionOutput || (CreateEnvironmentAccountConnectionOutput = {}));
|
|
207
297
|
export var DeleteEnvironmentAccountConnectionInput;
|
|
208
298
|
(function (DeleteEnvironmentAccountConnectionInput) {
|
|
209
299
|
DeleteEnvironmentAccountConnectionInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -257,10 +347,6 @@ export var ListEnvironmentOutputsInput;
|
|
|
257
347
|
(function (ListEnvironmentOutputsInput) {
|
|
258
348
|
ListEnvironmentOutputsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
349
|
})(ListEnvironmentOutputsInput || (ListEnvironmentOutputsInput = {}));
|
|
260
|
-
export var Output;
|
|
261
|
-
(function (Output) {
|
|
262
|
-
Output.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
-
})(Output || (Output = {}));
|
|
264
350
|
export var ListEnvironmentOutputsOutput;
|
|
265
351
|
(function (ListEnvironmentOutputsOutput) {
|
|
266
352
|
ListEnvironmentOutputsOutput.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.outputs && { outputs: SENSITIVE_STRING }))); };
|
|
@@ -269,15 +355,6 @@ export var ListEnvironmentProvisionedResourcesInput;
|
|
|
269
355
|
(function (ListEnvironmentProvisionedResourcesInput) {
|
|
270
356
|
ListEnvironmentProvisionedResourcesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
357
|
})(ListEnvironmentProvisionedResourcesInput || (ListEnvironmentProvisionedResourcesInput = {}));
|
|
272
|
-
export var ProvisionedResourceEngine;
|
|
273
|
-
(function (ProvisionedResourceEngine) {
|
|
274
|
-
ProvisionedResourceEngine["CLOUDFORMATION"] = "CLOUDFORMATION";
|
|
275
|
-
ProvisionedResourceEngine["TERRAFORM"] = "TERRAFORM";
|
|
276
|
-
})(ProvisionedResourceEngine || (ProvisionedResourceEngine = {}));
|
|
277
|
-
export var ProvisionedResource;
|
|
278
|
-
(function (ProvisionedResource) {
|
|
279
|
-
ProvisionedResource.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
-
})(ProvisionedResource || (ProvisionedResource = {}));
|
|
281
358
|
export var ListEnvironmentProvisionedResourcesOutput;
|
|
282
359
|
(function (ListEnvironmentProvisionedResourcesOutput) {
|
|
283
360
|
ListEnvironmentProvisionedResourcesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -802,6 +879,10 @@ export var CompatibleEnvironmentTemplateInput;
|
|
|
802
879
|
(function (CompatibleEnvironmentTemplateInput) {
|
|
803
880
|
CompatibleEnvironmentTemplateInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
804
881
|
})(CompatibleEnvironmentTemplateInput || (CompatibleEnvironmentTemplateInput = {}));
|
|
882
|
+
export var ServiceTemplateSupportedComponentSourceType;
|
|
883
|
+
(function (ServiceTemplateSupportedComponentSourceType) {
|
|
884
|
+
ServiceTemplateSupportedComponentSourceType["DIRECTLY_DEFINED"] = "DIRECTLY_DEFINED";
|
|
885
|
+
})(ServiceTemplateSupportedComponentSourceType || (ServiceTemplateSupportedComponentSourceType = {}));
|
|
805
886
|
export var CreateServiceTemplateVersionInput;
|
|
806
887
|
(function (CreateServiceTemplateVersionInput) {
|
|
807
888
|
CreateServiceTemplateVersionInput.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.description && { description: SENSITIVE_STRING })), (obj.source && { source: TemplateVersionSourceInput.filterSensitiveLog(obj.source) }))); };
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { __asyncGenerator, __await, __awaiter, __generator, __read, __spreadArray } from "tslib";
|
|
2
|
+
import { ListComponentOutputsCommand, } from "../commands/ListComponentOutputsCommand";
|
|
3
|
+
import { Proton } from "../Proton";
|
|
4
|
+
import { ProtonClient } from "../ProtonClient";
|
|
5
|
+
var makePagedClientRequest = function (client, input) {
|
|
6
|
+
var args = [];
|
|
7
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
8
|
+
args[_i - 2] = arguments[_i];
|
|
9
|
+
}
|
|
10
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
|
+
return __generator(this, function (_a) {
|
|
12
|
+
switch (_a.label) {
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListComponentOutputsCommand(input)], __read(args), false))];
|
|
14
|
+
case 1: return [2, _a.sent()];
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
});
|
|
18
|
+
};
|
|
19
|
+
var makePagedRequest = function (client, input) {
|
|
20
|
+
var args = [];
|
|
21
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
22
|
+
args[_i - 2] = arguments[_i];
|
|
23
|
+
}
|
|
24
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
|
+
return __generator(this, function (_a) {
|
|
26
|
+
switch (_a.label) {
|
|
27
|
+
case 0: return [4, client.listComponentOutputs.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
|
+
case 1: return [2, _a.sent()];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
export function paginateListComponentOutputs(config, input) {
|
|
34
|
+
var additionalArguments = [];
|
|
35
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
36
|
+
additionalArguments[_i - 2] = arguments[_i];
|
|
37
|
+
}
|
|
38
|
+
return __asyncGenerator(this, arguments, function paginateListComponentOutputs_1() {
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
|
+
return __generator(this, function (_a) {
|
|
41
|
+
switch (_a.label) {
|
|
42
|
+
case 0:
|
|
43
|
+
token = config.startingToken || undefined;
|
|
44
|
+
hasNext = true;
|
|
45
|
+
_a.label = 1;
|
|
46
|
+
case 1:
|
|
47
|
+
if (!hasNext) return [3, 9];
|
|
48
|
+
input.nextToken = token;
|
|
49
|
+
if (!(config.client instanceof Proton)) return [3, 3];
|
|
50
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
51
|
+
case 2:
|
|
52
|
+
page = _a.sent();
|
|
53
|
+
return [3, 6];
|
|
54
|
+
case 3:
|
|
55
|
+
if (!(config.client instanceof ProtonClient)) return [3, 5];
|
|
56
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
57
|
+
case 4:
|
|
58
|
+
page = _a.sent();
|
|
59
|
+
return [3, 6];
|
|
60
|
+
case 5: throw new Error("Invalid client, expected Proton | ProtonClient");
|
|
61
|
+
case 6: return [4, __await(page)];
|
|
62
|
+
case 7: return [4, _a.sent()];
|
|
63
|
+
case 8:
|
|
64
|
+
_a.sent();
|
|
65
|
+
prevToken = token;
|
|
66
|
+
token = page.nextToken;
|
|
67
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
|
+
return [3, 1];
|
|
69
|
+
case 9: return [4, __await(undefined)];
|
|
70
|
+
case 10: return [2, _a.sent()];
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { __asyncGenerator, __await, __awaiter, __generator, __read, __spreadArray } from "tslib";
|
|
2
|
+
import { ListComponentProvisionedResourcesCommand, } from "../commands/ListComponentProvisionedResourcesCommand";
|
|
3
|
+
import { Proton } from "../Proton";
|
|
4
|
+
import { ProtonClient } from "../ProtonClient";
|
|
5
|
+
var makePagedClientRequest = function (client, input) {
|
|
6
|
+
var args = [];
|
|
7
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
8
|
+
args[_i - 2] = arguments[_i];
|
|
9
|
+
}
|
|
10
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
|
+
return __generator(this, function (_a) {
|
|
12
|
+
switch (_a.label) {
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListComponentProvisionedResourcesCommand(input)], __read(args), false))];
|
|
14
|
+
case 1: return [2, _a.sent()];
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
});
|
|
18
|
+
};
|
|
19
|
+
var makePagedRequest = function (client, input) {
|
|
20
|
+
var args = [];
|
|
21
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
22
|
+
args[_i - 2] = arguments[_i];
|
|
23
|
+
}
|
|
24
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
|
+
return __generator(this, function (_a) {
|
|
26
|
+
switch (_a.label) {
|
|
27
|
+
case 0: return [4, client.listComponentProvisionedResources.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
|
+
case 1: return [2, _a.sent()];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
export function paginateListComponentProvisionedResources(config, input) {
|
|
34
|
+
var additionalArguments = [];
|
|
35
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
36
|
+
additionalArguments[_i - 2] = arguments[_i];
|
|
37
|
+
}
|
|
38
|
+
return __asyncGenerator(this, arguments, function paginateListComponentProvisionedResources_1() {
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
|
+
return __generator(this, function (_a) {
|
|
41
|
+
switch (_a.label) {
|
|
42
|
+
case 0:
|
|
43
|
+
token = config.startingToken || undefined;
|
|
44
|
+
hasNext = true;
|
|
45
|
+
_a.label = 1;
|
|
46
|
+
case 1:
|
|
47
|
+
if (!hasNext) return [3, 9];
|
|
48
|
+
input.nextToken = token;
|
|
49
|
+
if (!(config.client instanceof Proton)) return [3, 3];
|
|
50
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
51
|
+
case 2:
|
|
52
|
+
page = _a.sent();
|
|
53
|
+
return [3, 6];
|
|
54
|
+
case 3:
|
|
55
|
+
if (!(config.client instanceof ProtonClient)) return [3, 5];
|
|
56
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
57
|
+
case 4:
|
|
58
|
+
page = _a.sent();
|
|
59
|
+
return [3, 6];
|
|
60
|
+
case 5: throw new Error("Invalid client, expected Proton | ProtonClient");
|
|
61
|
+
case 6: return [4, __await(page)];
|
|
62
|
+
case 7: return [4, _a.sent()];
|
|
63
|
+
case 8:
|
|
64
|
+
_a.sent();
|
|
65
|
+
prevToken = token;
|
|
66
|
+
token = page.nextToken;
|
|
67
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
68
|
+
return [3, 1];
|
|
69
|
+
case 9: return [4, __await(undefined)];
|
|
70
|
+
case 10: return [2, _a.sent()];
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { __asyncGenerator, __await, __awaiter, __generator, __read, __spreadArray } from "tslib";
|
|
2
|
+
import { ListComponentsCommand, } from "../commands/ListComponentsCommand";
|
|
3
|
+
import { Proton } from "../Proton";
|
|
4
|
+
import { ProtonClient } from "../ProtonClient";
|
|
5
|
+
var makePagedClientRequest = function (client, input) {
|
|
6
|
+
var args = [];
|
|
7
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
8
|
+
args[_i - 2] = arguments[_i];
|
|
9
|
+
}
|
|
10
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
|
+
return __generator(this, function (_a) {
|
|
12
|
+
switch (_a.label) {
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListComponentsCommand(input)], __read(args), false))];
|
|
14
|
+
case 1: return [2, _a.sent()];
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
});
|
|
18
|
+
};
|
|
19
|
+
var makePagedRequest = function (client, input) {
|
|
20
|
+
var args = [];
|
|
21
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
22
|
+
args[_i - 2] = arguments[_i];
|
|
23
|
+
}
|
|
24
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
|
+
return __generator(this, function (_a) {
|
|
26
|
+
switch (_a.label) {
|
|
27
|
+
case 0: return [4, client.listComponents.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
|
+
case 1: return [2, _a.sent()];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
export function paginateListComponents(config, input) {
|
|
34
|
+
var additionalArguments = [];
|
|
35
|
+
for (var _i = 2; _i < arguments.length; _i++) {
|
|
36
|
+
additionalArguments[_i - 2] = arguments[_i];
|
|
37
|
+
}
|
|
38
|
+
return __asyncGenerator(this, arguments, function paginateListComponents_1() {
|
|
39
|
+
var token, hasNext, page, prevToken;
|
|
40
|
+
return __generator(this, function (_a) {
|
|
41
|
+
switch (_a.label) {
|
|
42
|
+
case 0:
|
|
43
|
+
token = config.startingToken || undefined;
|
|
44
|
+
hasNext = true;
|
|
45
|
+
_a.label = 1;
|
|
46
|
+
case 1:
|
|
47
|
+
if (!hasNext) return [3, 9];
|
|
48
|
+
input.nextToken = token;
|
|
49
|
+
input["maxResults"] = config.pageSize;
|
|
50
|
+
if (!(config.client instanceof Proton)) return [3, 3];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
|
+
case 2:
|
|
53
|
+
page = _a.sent();
|
|
54
|
+
return [3, 6];
|
|
55
|
+
case 3:
|
|
56
|
+
if (!(config.client instanceof ProtonClient)) return [3, 5];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
|
+
case 4:
|
|
59
|
+
page = _a.sent();
|
|
60
|
+
return [3, 6];
|
|
61
|
+
case 5: throw new Error("Invalid client, expected Proton | ProtonClient");
|
|
62
|
+
case 6: return [4, __await(page)];
|
|
63
|
+
case 7: return [4, _a.sent()];
|
|
64
|
+
case 8:
|
|
65
|
+
_a.sent();
|
|
66
|
+
prevToken = token;
|
|
67
|
+
token = page.nextToken;
|
|
68
|
+
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
69
|
+
return [3, 1];
|
|
70
|
+
case 9: return [4, __await(undefined)];
|
|
71
|
+
case 10: return [2, _a.sent()];
|
|
72
|
+
}
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
}
|
|
@@ -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";
|