@aws-sdk/client-proton 3.1068.0 → 3.1070.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/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +409 -429
- package/dist-cjs/models/ProtonServiceException.js +4 -8
- package/dist-cjs/models/errors.js +15 -25
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +669 -443
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultProtonHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { AcceptEnvironmentAccountConnection$, CancelComponentDeployment$, CancelEnvironmentDeployment$, CancelServiceInstanceDeployment$, CancelServicePipelineDeployment$, CreateComponent$, CreateEnvironmentAccountConnection$, CreateEnvironment$, CreateEnvironmentTemplate$, CreateEnvironmentTemplateVersion$, CreateRepository$, CreateService$, CreateServiceInstance$, CreateServiceSyncConfig$, CreateServiceTemplate$, CreateServiceTemplateVersion$, CreateTemplateSyncConfig$, DeleteComponent$, DeleteDeployment$, DeleteEnvironmentAccountConnection$, DeleteEnvironment$, DeleteEnvironmentTemplate$, DeleteEnvironmentTemplateVersion$, DeleteRepository$, DeleteService$, DeleteServiceSyncConfig$, DeleteServiceTemplate$, DeleteServiceTemplateVersion$, DeleteTemplateSyncConfig$, GetAccountSettings$, GetComponent$, GetDeployment$, GetEnvironmentAccountConnection$, GetEnvironment$, GetEnvironmentTemplate$, GetEnvironmentTemplateVersion$, GetRepository$, GetRepositorySyncStatus$, GetResourcesSummary$, GetService$, GetServiceInstance$, GetServiceInstanceSyncStatus$, GetServiceSyncBlockerSummary$, GetServiceSyncConfig$, GetServiceTemplate$, GetServiceTemplateVersion$, GetTemplateSyncConfig$, GetTemplateSyncStatus$, ListComponentOutputs$, ListComponentProvisionedResources$, ListComponents$, ListDeployments$, ListEnvironmentAccountConnections$, ListEnvironmentOutputs$, ListEnvironmentProvisionedResources$, ListEnvironments$, ListEnvironmentTemplates$, ListEnvironmentTemplateVersions$, ListRepositories$, ListRepositorySyncDefinitions$, ListServiceInstanceOutputs$, ListServiceInstanceProvisionedResources$, ListServiceInstances$, ListServicePipelineOutputs$, ListServicePipelineProvisionedResources$, ListServices$, ListServiceTemplates$, ListServiceTemplateVersions$, ListTagsForResource$, NotifyResourceDeploymentStatusChange$, RejectEnvironmentAccountConnection$, TagResource$, UntagResource$, UpdateAccountSettings$, UpdateComponent$, UpdateEnvironmentAccountConnection$, UpdateEnvironment$, UpdateEnvironmentTemplate$, UpdateEnvironmentTemplateVersion$, UpdateService$, UpdateServiceInstance$, UpdateServicePipeline$, UpdateServiceSyncBlocker$, UpdateServiceSyncConfig$, UpdateServiceTemplate$, UpdateServiceTemplateVersion$, UpdateTemplateSyncConfig$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { ProtonServiceException } = require("./models/ProtonServiceException");
|
|
18
|
+
exports.ProtonServiceException = ProtonServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -68,1143 +71,1143 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class ProtonClient extends
|
|
79
|
+
class ProtonClient extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
89
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
93
|
this.config = _config_8;
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
httpAuthSchemeParametersProvider:
|
|
100
|
-
identityProviderConfigProvider: async (config) => new
|
|
94
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
102
|
+
httpAuthSchemeParametersProvider: defaultProtonHttpAuthSchemeParametersProvider,
|
|
103
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
101
104
|
"aws.auth#sigv4": config.credentials,
|
|
102
105
|
}),
|
|
103
106
|
}));
|
|
104
|
-
this.middlewareStack.use(
|
|
107
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
105
108
|
}
|
|
106
109
|
destroy() {
|
|
107
110
|
super.destroy();
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class AcceptEnvironmentAccountConnectionCommand extends
|
|
114
|
+
class AcceptEnvironmentAccountConnectionCommand extends Command
|
|
112
115
|
.classBuilder()
|
|
113
116
|
.ep(commonParams)
|
|
114
117
|
.m(function (Command, cs, config, o) {
|
|
115
|
-
return [
|
|
118
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
116
119
|
})
|
|
117
120
|
.s("AwsProton20200720", "AcceptEnvironmentAccountConnection", {})
|
|
118
121
|
.n("ProtonClient", "AcceptEnvironmentAccountConnectionCommand")
|
|
119
|
-
.sc(
|
|
122
|
+
.sc(AcceptEnvironmentAccountConnection$)
|
|
120
123
|
.build() {
|
|
121
124
|
}
|
|
122
125
|
|
|
123
|
-
class CancelComponentDeploymentCommand extends
|
|
126
|
+
class CancelComponentDeploymentCommand extends Command
|
|
124
127
|
.classBuilder()
|
|
125
128
|
.ep(commonParams)
|
|
126
129
|
.m(function (Command, cs, config, o) {
|
|
127
|
-
return [
|
|
130
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
128
131
|
})
|
|
129
132
|
.s("AwsProton20200720", "CancelComponentDeployment", {})
|
|
130
133
|
.n("ProtonClient", "CancelComponentDeploymentCommand")
|
|
131
|
-
.sc(
|
|
134
|
+
.sc(CancelComponentDeployment$)
|
|
132
135
|
.build() {
|
|
133
136
|
}
|
|
134
137
|
|
|
135
|
-
class CancelEnvironmentDeploymentCommand extends
|
|
138
|
+
class CancelEnvironmentDeploymentCommand extends Command
|
|
136
139
|
.classBuilder()
|
|
137
140
|
.ep(commonParams)
|
|
138
141
|
.m(function (Command, cs, config, o) {
|
|
139
|
-
return [
|
|
142
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
140
143
|
})
|
|
141
144
|
.s("AwsProton20200720", "CancelEnvironmentDeployment", {})
|
|
142
145
|
.n("ProtonClient", "CancelEnvironmentDeploymentCommand")
|
|
143
|
-
.sc(
|
|
146
|
+
.sc(CancelEnvironmentDeployment$)
|
|
144
147
|
.build() {
|
|
145
148
|
}
|
|
146
149
|
|
|
147
|
-
class CancelServiceInstanceDeploymentCommand extends
|
|
150
|
+
class CancelServiceInstanceDeploymentCommand extends Command
|
|
148
151
|
.classBuilder()
|
|
149
152
|
.ep(commonParams)
|
|
150
153
|
.m(function (Command, cs, config, o) {
|
|
151
|
-
return [
|
|
154
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
152
155
|
})
|
|
153
156
|
.s("AwsProton20200720", "CancelServiceInstanceDeployment", {})
|
|
154
157
|
.n("ProtonClient", "CancelServiceInstanceDeploymentCommand")
|
|
155
|
-
.sc(
|
|
158
|
+
.sc(CancelServiceInstanceDeployment$)
|
|
156
159
|
.build() {
|
|
157
160
|
}
|
|
158
161
|
|
|
159
|
-
class CancelServicePipelineDeploymentCommand extends
|
|
162
|
+
class CancelServicePipelineDeploymentCommand extends Command
|
|
160
163
|
.classBuilder()
|
|
161
164
|
.ep(commonParams)
|
|
162
165
|
.m(function (Command, cs, config, o) {
|
|
163
|
-
return [
|
|
166
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
164
167
|
})
|
|
165
168
|
.s("AwsProton20200720", "CancelServicePipelineDeployment", {})
|
|
166
169
|
.n("ProtonClient", "CancelServicePipelineDeploymentCommand")
|
|
167
|
-
.sc(
|
|
170
|
+
.sc(CancelServicePipelineDeployment$)
|
|
168
171
|
.build() {
|
|
169
172
|
}
|
|
170
173
|
|
|
171
|
-
class CreateComponentCommand extends
|
|
174
|
+
class CreateComponentCommand extends Command
|
|
172
175
|
.classBuilder()
|
|
173
176
|
.ep(commonParams)
|
|
174
177
|
.m(function (Command, cs, config, o) {
|
|
175
|
-
return [
|
|
178
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
176
179
|
})
|
|
177
180
|
.s("AwsProton20200720", "CreateComponent", {})
|
|
178
181
|
.n("ProtonClient", "CreateComponentCommand")
|
|
179
|
-
.sc(
|
|
182
|
+
.sc(CreateComponent$)
|
|
180
183
|
.build() {
|
|
181
184
|
}
|
|
182
185
|
|
|
183
|
-
class CreateEnvironmentAccountConnectionCommand extends
|
|
186
|
+
class CreateEnvironmentAccountConnectionCommand extends Command
|
|
184
187
|
.classBuilder()
|
|
185
188
|
.ep(commonParams)
|
|
186
189
|
.m(function (Command, cs, config, o) {
|
|
187
|
-
return [
|
|
190
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
188
191
|
})
|
|
189
192
|
.s("AwsProton20200720", "CreateEnvironmentAccountConnection", {})
|
|
190
193
|
.n("ProtonClient", "CreateEnvironmentAccountConnectionCommand")
|
|
191
|
-
.sc(
|
|
194
|
+
.sc(CreateEnvironmentAccountConnection$)
|
|
192
195
|
.build() {
|
|
193
196
|
}
|
|
194
197
|
|
|
195
|
-
class CreateEnvironmentCommand extends
|
|
198
|
+
class CreateEnvironmentCommand extends Command
|
|
196
199
|
.classBuilder()
|
|
197
200
|
.ep(commonParams)
|
|
198
201
|
.m(function (Command, cs, config, o) {
|
|
199
|
-
return [
|
|
202
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
200
203
|
})
|
|
201
204
|
.s("AwsProton20200720", "CreateEnvironment", {})
|
|
202
205
|
.n("ProtonClient", "CreateEnvironmentCommand")
|
|
203
|
-
.sc(
|
|
206
|
+
.sc(CreateEnvironment$)
|
|
204
207
|
.build() {
|
|
205
208
|
}
|
|
206
209
|
|
|
207
|
-
class CreateEnvironmentTemplateCommand extends
|
|
210
|
+
class CreateEnvironmentTemplateCommand extends Command
|
|
208
211
|
.classBuilder()
|
|
209
212
|
.ep(commonParams)
|
|
210
213
|
.m(function (Command, cs, config, o) {
|
|
211
|
-
return [
|
|
214
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
212
215
|
})
|
|
213
216
|
.s("AwsProton20200720", "CreateEnvironmentTemplate", {})
|
|
214
217
|
.n("ProtonClient", "CreateEnvironmentTemplateCommand")
|
|
215
|
-
.sc(
|
|
218
|
+
.sc(CreateEnvironmentTemplate$)
|
|
216
219
|
.build() {
|
|
217
220
|
}
|
|
218
221
|
|
|
219
|
-
class CreateEnvironmentTemplateVersionCommand extends
|
|
222
|
+
class CreateEnvironmentTemplateVersionCommand extends Command
|
|
220
223
|
.classBuilder()
|
|
221
224
|
.ep(commonParams)
|
|
222
225
|
.m(function (Command, cs, config, o) {
|
|
223
|
-
return [
|
|
226
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
224
227
|
})
|
|
225
228
|
.s("AwsProton20200720", "CreateEnvironmentTemplateVersion", {})
|
|
226
229
|
.n("ProtonClient", "CreateEnvironmentTemplateVersionCommand")
|
|
227
|
-
.sc(
|
|
230
|
+
.sc(CreateEnvironmentTemplateVersion$)
|
|
228
231
|
.build() {
|
|
229
232
|
}
|
|
230
233
|
|
|
231
|
-
class CreateRepositoryCommand extends
|
|
234
|
+
class CreateRepositoryCommand extends Command
|
|
232
235
|
.classBuilder()
|
|
233
236
|
.ep(commonParams)
|
|
234
237
|
.m(function (Command, cs, config, o) {
|
|
235
|
-
return [
|
|
238
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
236
239
|
})
|
|
237
240
|
.s("AwsProton20200720", "CreateRepository", {})
|
|
238
241
|
.n("ProtonClient", "CreateRepositoryCommand")
|
|
239
|
-
.sc(
|
|
242
|
+
.sc(CreateRepository$)
|
|
240
243
|
.build() {
|
|
241
244
|
}
|
|
242
245
|
|
|
243
|
-
class CreateServiceCommand extends
|
|
246
|
+
class CreateServiceCommand extends Command
|
|
244
247
|
.classBuilder()
|
|
245
248
|
.ep(commonParams)
|
|
246
249
|
.m(function (Command, cs, config, o) {
|
|
247
|
-
return [
|
|
250
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
248
251
|
})
|
|
249
252
|
.s("AwsProton20200720", "CreateService", {})
|
|
250
253
|
.n("ProtonClient", "CreateServiceCommand")
|
|
251
|
-
.sc(
|
|
254
|
+
.sc(CreateService$)
|
|
252
255
|
.build() {
|
|
253
256
|
}
|
|
254
257
|
|
|
255
|
-
class CreateServiceInstanceCommand extends
|
|
258
|
+
class CreateServiceInstanceCommand extends Command
|
|
256
259
|
.classBuilder()
|
|
257
260
|
.ep(commonParams)
|
|
258
261
|
.m(function (Command, cs, config, o) {
|
|
259
|
-
return [
|
|
262
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
260
263
|
})
|
|
261
264
|
.s("AwsProton20200720", "CreateServiceInstance", {})
|
|
262
265
|
.n("ProtonClient", "CreateServiceInstanceCommand")
|
|
263
|
-
.sc(
|
|
266
|
+
.sc(CreateServiceInstance$)
|
|
264
267
|
.build() {
|
|
265
268
|
}
|
|
266
269
|
|
|
267
|
-
class CreateServiceSyncConfigCommand extends
|
|
270
|
+
class CreateServiceSyncConfigCommand extends Command
|
|
268
271
|
.classBuilder()
|
|
269
272
|
.ep(commonParams)
|
|
270
273
|
.m(function (Command, cs, config, o) {
|
|
271
|
-
return [
|
|
274
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
272
275
|
})
|
|
273
276
|
.s("AwsProton20200720", "CreateServiceSyncConfig", {})
|
|
274
277
|
.n("ProtonClient", "CreateServiceSyncConfigCommand")
|
|
275
|
-
.sc(
|
|
278
|
+
.sc(CreateServiceSyncConfig$)
|
|
276
279
|
.build() {
|
|
277
280
|
}
|
|
278
281
|
|
|
279
|
-
class CreateServiceTemplateCommand extends
|
|
282
|
+
class CreateServiceTemplateCommand extends Command
|
|
280
283
|
.classBuilder()
|
|
281
284
|
.ep(commonParams)
|
|
282
285
|
.m(function (Command, cs, config, o) {
|
|
283
|
-
return [
|
|
286
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
284
287
|
})
|
|
285
288
|
.s("AwsProton20200720", "CreateServiceTemplate", {})
|
|
286
289
|
.n("ProtonClient", "CreateServiceTemplateCommand")
|
|
287
|
-
.sc(
|
|
290
|
+
.sc(CreateServiceTemplate$)
|
|
288
291
|
.build() {
|
|
289
292
|
}
|
|
290
293
|
|
|
291
|
-
class CreateServiceTemplateVersionCommand extends
|
|
294
|
+
class CreateServiceTemplateVersionCommand extends Command
|
|
292
295
|
.classBuilder()
|
|
293
296
|
.ep(commonParams)
|
|
294
297
|
.m(function (Command, cs, config, o) {
|
|
295
|
-
return [
|
|
298
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
296
299
|
})
|
|
297
300
|
.s("AwsProton20200720", "CreateServiceTemplateVersion", {})
|
|
298
301
|
.n("ProtonClient", "CreateServiceTemplateVersionCommand")
|
|
299
|
-
.sc(
|
|
302
|
+
.sc(CreateServiceTemplateVersion$)
|
|
300
303
|
.build() {
|
|
301
304
|
}
|
|
302
305
|
|
|
303
|
-
class CreateTemplateSyncConfigCommand extends
|
|
306
|
+
class CreateTemplateSyncConfigCommand extends Command
|
|
304
307
|
.classBuilder()
|
|
305
308
|
.ep(commonParams)
|
|
306
309
|
.m(function (Command, cs, config, o) {
|
|
307
|
-
return [
|
|
310
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
308
311
|
})
|
|
309
312
|
.s("AwsProton20200720", "CreateTemplateSyncConfig", {})
|
|
310
313
|
.n("ProtonClient", "CreateTemplateSyncConfigCommand")
|
|
311
|
-
.sc(
|
|
314
|
+
.sc(CreateTemplateSyncConfig$)
|
|
312
315
|
.build() {
|
|
313
316
|
}
|
|
314
317
|
|
|
315
|
-
class DeleteComponentCommand extends
|
|
318
|
+
class DeleteComponentCommand extends Command
|
|
316
319
|
.classBuilder()
|
|
317
320
|
.ep(commonParams)
|
|
318
321
|
.m(function (Command, cs, config, o) {
|
|
319
|
-
return [
|
|
322
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
320
323
|
})
|
|
321
324
|
.s("AwsProton20200720", "DeleteComponent", {})
|
|
322
325
|
.n("ProtonClient", "DeleteComponentCommand")
|
|
323
|
-
.sc(
|
|
326
|
+
.sc(DeleteComponent$)
|
|
324
327
|
.build() {
|
|
325
328
|
}
|
|
326
329
|
|
|
327
|
-
class DeleteDeploymentCommand extends
|
|
330
|
+
class DeleteDeploymentCommand extends Command
|
|
328
331
|
.classBuilder()
|
|
329
332
|
.ep(commonParams)
|
|
330
333
|
.m(function (Command, cs, config, o) {
|
|
331
|
-
return [
|
|
334
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
332
335
|
})
|
|
333
336
|
.s("AwsProton20200720", "DeleteDeployment", {})
|
|
334
337
|
.n("ProtonClient", "DeleteDeploymentCommand")
|
|
335
|
-
.sc(
|
|
338
|
+
.sc(DeleteDeployment$)
|
|
336
339
|
.build() {
|
|
337
340
|
}
|
|
338
341
|
|
|
339
|
-
class DeleteEnvironmentAccountConnectionCommand extends
|
|
342
|
+
class DeleteEnvironmentAccountConnectionCommand extends Command
|
|
340
343
|
.classBuilder()
|
|
341
344
|
.ep(commonParams)
|
|
342
345
|
.m(function (Command, cs, config, o) {
|
|
343
|
-
return [
|
|
346
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
344
347
|
})
|
|
345
348
|
.s("AwsProton20200720", "DeleteEnvironmentAccountConnection", {})
|
|
346
349
|
.n("ProtonClient", "DeleteEnvironmentAccountConnectionCommand")
|
|
347
|
-
.sc(
|
|
350
|
+
.sc(DeleteEnvironmentAccountConnection$)
|
|
348
351
|
.build() {
|
|
349
352
|
}
|
|
350
353
|
|
|
351
|
-
class DeleteEnvironmentCommand extends
|
|
354
|
+
class DeleteEnvironmentCommand extends Command
|
|
352
355
|
.classBuilder()
|
|
353
356
|
.ep(commonParams)
|
|
354
357
|
.m(function (Command, cs, config, o) {
|
|
355
|
-
return [
|
|
358
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
356
359
|
})
|
|
357
360
|
.s("AwsProton20200720", "DeleteEnvironment", {})
|
|
358
361
|
.n("ProtonClient", "DeleteEnvironmentCommand")
|
|
359
|
-
.sc(
|
|
362
|
+
.sc(DeleteEnvironment$)
|
|
360
363
|
.build() {
|
|
361
364
|
}
|
|
362
365
|
|
|
363
|
-
class DeleteEnvironmentTemplateCommand extends
|
|
366
|
+
class DeleteEnvironmentTemplateCommand extends Command
|
|
364
367
|
.classBuilder()
|
|
365
368
|
.ep(commonParams)
|
|
366
369
|
.m(function (Command, cs, config, o) {
|
|
367
|
-
return [
|
|
370
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
368
371
|
})
|
|
369
372
|
.s("AwsProton20200720", "DeleteEnvironmentTemplate", {})
|
|
370
373
|
.n("ProtonClient", "DeleteEnvironmentTemplateCommand")
|
|
371
|
-
.sc(
|
|
374
|
+
.sc(DeleteEnvironmentTemplate$)
|
|
372
375
|
.build() {
|
|
373
376
|
}
|
|
374
377
|
|
|
375
|
-
class DeleteEnvironmentTemplateVersionCommand extends
|
|
378
|
+
class DeleteEnvironmentTemplateVersionCommand extends Command
|
|
376
379
|
.classBuilder()
|
|
377
380
|
.ep(commonParams)
|
|
378
381
|
.m(function (Command, cs, config, o) {
|
|
379
|
-
return [
|
|
382
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
380
383
|
})
|
|
381
384
|
.s("AwsProton20200720", "DeleteEnvironmentTemplateVersion", {})
|
|
382
385
|
.n("ProtonClient", "DeleteEnvironmentTemplateVersionCommand")
|
|
383
|
-
.sc(
|
|
386
|
+
.sc(DeleteEnvironmentTemplateVersion$)
|
|
384
387
|
.build() {
|
|
385
388
|
}
|
|
386
389
|
|
|
387
|
-
class DeleteRepositoryCommand extends
|
|
390
|
+
class DeleteRepositoryCommand extends Command
|
|
388
391
|
.classBuilder()
|
|
389
392
|
.ep(commonParams)
|
|
390
393
|
.m(function (Command, cs, config, o) {
|
|
391
|
-
return [
|
|
394
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
392
395
|
})
|
|
393
396
|
.s("AwsProton20200720", "DeleteRepository", {})
|
|
394
397
|
.n("ProtonClient", "DeleteRepositoryCommand")
|
|
395
|
-
.sc(
|
|
398
|
+
.sc(DeleteRepository$)
|
|
396
399
|
.build() {
|
|
397
400
|
}
|
|
398
401
|
|
|
399
|
-
class DeleteServiceCommand extends
|
|
402
|
+
class DeleteServiceCommand extends Command
|
|
400
403
|
.classBuilder()
|
|
401
404
|
.ep(commonParams)
|
|
402
405
|
.m(function (Command, cs, config, o) {
|
|
403
|
-
return [
|
|
406
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
404
407
|
})
|
|
405
408
|
.s("AwsProton20200720", "DeleteService", {})
|
|
406
409
|
.n("ProtonClient", "DeleteServiceCommand")
|
|
407
|
-
.sc(
|
|
410
|
+
.sc(DeleteService$)
|
|
408
411
|
.build() {
|
|
409
412
|
}
|
|
410
413
|
|
|
411
|
-
class DeleteServiceSyncConfigCommand extends
|
|
414
|
+
class DeleteServiceSyncConfigCommand extends Command
|
|
412
415
|
.classBuilder()
|
|
413
416
|
.ep(commonParams)
|
|
414
417
|
.m(function (Command, cs, config, o) {
|
|
415
|
-
return [
|
|
418
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
416
419
|
})
|
|
417
420
|
.s("AwsProton20200720", "DeleteServiceSyncConfig", {})
|
|
418
421
|
.n("ProtonClient", "DeleteServiceSyncConfigCommand")
|
|
419
|
-
.sc(
|
|
422
|
+
.sc(DeleteServiceSyncConfig$)
|
|
420
423
|
.build() {
|
|
421
424
|
}
|
|
422
425
|
|
|
423
|
-
class DeleteServiceTemplateCommand extends
|
|
426
|
+
class DeleteServiceTemplateCommand extends Command
|
|
424
427
|
.classBuilder()
|
|
425
428
|
.ep(commonParams)
|
|
426
429
|
.m(function (Command, cs, config, o) {
|
|
427
|
-
return [
|
|
430
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
428
431
|
})
|
|
429
432
|
.s("AwsProton20200720", "DeleteServiceTemplate", {})
|
|
430
433
|
.n("ProtonClient", "DeleteServiceTemplateCommand")
|
|
431
|
-
.sc(
|
|
434
|
+
.sc(DeleteServiceTemplate$)
|
|
432
435
|
.build() {
|
|
433
436
|
}
|
|
434
437
|
|
|
435
|
-
class DeleteServiceTemplateVersionCommand extends
|
|
438
|
+
class DeleteServiceTemplateVersionCommand extends Command
|
|
436
439
|
.classBuilder()
|
|
437
440
|
.ep(commonParams)
|
|
438
441
|
.m(function (Command, cs, config, o) {
|
|
439
|
-
return [
|
|
442
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
440
443
|
})
|
|
441
444
|
.s("AwsProton20200720", "DeleteServiceTemplateVersion", {})
|
|
442
445
|
.n("ProtonClient", "DeleteServiceTemplateVersionCommand")
|
|
443
|
-
.sc(
|
|
446
|
+
.sc(DeleteServiceTemplateVersion$)
|
|
444
447
|
.build() {
|
|
445
448
|
}
|
|
446
449
|
|
|
447
|
-
class DeleteTemplateSyncConfigCommand extends
|
|
450
|
+
class DeleteTemplateSyncConfigCommand extends Command
|
|
448
451
|
.classBuilder()
|
|
449
452
|
.ep(commonParams)
|
|
450
453
|
.m(function (Command, cs, config, o) {
|
|
451
|
-
return [
|
|
454
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
452
455
|
})
|
|
453
456
|
.s("AwsProton20200720", "DeleteTemplateSyncConfig", {})
|
|
454
457
|
.n("ProtonClient", "DeleteTemplateSyncConfigCommand")
|
|
455
|
-
.sc(
|
|
458
|
+
.sc(DeleteTemplateSyncConfig$)
|
|
456
459
|
.build() {
|
|
457
460
|
}
|
|
458
461
|
|
|
459
|
-
class GetAccountSettingsCommand extends
|
|
462
|
+
class GetAccountSettingsCommand extends Command
|
|
460
463
|
.classBuilder()
|
|
461
464
|
.ep(commonParams)
|
|
462
465
|
.m(function (Command, cs, config, o) {
|
|
463
|
-
return [
|
|
466
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
464
467
|
})
|
|
465
468
|
.s("AwsProton20200720", "GetAccountSettings", {})
|
|
466
469
|
.n("ProtonClient", "GetAccountSettingsCommand")
|
|
467
|
-
.sc(
|
|
470
|
+
.sc(GetAccountSettings$)
|
|
468
471
|
.build() {
|
|
469
472
|
}
|
|
470
473
|
|
|
471
|
-
class GetComponentCommand extends
|
|
474
|
+
class GetComponentCommand extends Command
|
|
472
475
|
.classBuilder()
|
|
473
476
|
.ep(commonParams)
|
|
474
477
|
.m(function (Command, cs, config, o) {
|
|
475
|
-
return [
|
|
478
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
476
479
|
})
|
|
477
480
|
.s("AwsProton20200720", "GetComponent", {})
|
|
478
481
|
.n("ProtonClient", "GetComponentCommand")
|
|
479
|
-
.sc(
|
|
482
|
+
.sc(GetComponent$)
|
|
480
483
|
.build() {
|
|
481
484
|
}
|
|
482
485
|
|
|
483
|
-
class GetDeploymentCommand extends
|
|
486
|
+
class GetDeploymentCommand extends Command
|
|
484
487
|
.classBuilder()
|
|
485
488
|
.ep(commonParams)
|
|
486
489
|
.m(function (Command, cs, config, o) {
|
|
487
|
-
return [
|
|
490
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
488
491
|
})
|
|
489
492
|
.s("AwsProton20200720", "GetDeployment", {})
|
|
490
493
|
.n("ProtonClient", "GetDeploymentCommand")
|
|
491
|
-
.sc(
|
|
494
|
+
.sc(GetDeployment$)
|
|
492
495
|
.build() {
|
|
493
496
|
}
|
|
494
497
|
|
|
495
|
-
class GetEnvironmentAccountConnectionCommand extends
|
|
498
|
+
class GetEnvironmentAccountConnectionCommand extends Command
|
|
496
499
|
.classBuilder()
|
|
497
500
|
.ep(commonParams)
|
|
498
501
|
.m(function (Command, cs, config, o) {
|
|
499
|
-
return [
|
|
502
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
500
503
|
})
|
|
501
504
|
.s("AwsProton20200720", "GetEnvironmentAccountConnection", {})
|
|
502
505
|
.n("ProtonClient", "GetEnvironmentAccountConnectionCommand")
|
|
503
|
-
.sc(
|
|
506
|
+
.sc(GetEnvironmentAccountConnection$)
|
|
504
507
|
.build() {
|
|
505
508
|
}
|
|
506
509
|
|
|
507
|
-
class GetEnvironmentCommand extends
|
|
510
|
+
class GetEnvironmentCommand extends Command
|
|
508
511
|
.classBuilder()
|
|
509
512
|
.ep(commonParams)
|
|
510
513
|
.m(function (Command, cs, config, o) {
|
|
511
|
-
return [
|
|
514
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
512
515
|
})
|
|
513
516
|
.s("AwsProton20200720", "GetEnvironment", {})
|
|
514
517
|
.n("ProtonClient", "GetEnvironmentCommand")
|
|
515
|
-
.sc(
|
|
518
|
+
.sc(GetEnvironment$)
|
|
516
519
|
.build() {
|
|
517
520
|
}
|
|
518
521
|
|
|
519
|
-
class GetEnvironmentTemplateCommand extends
|
|
522
|
+
class GetEnvironmentTemplateCommand extends Command
|
|
520
523
|
.classBuilder()
|
|
521
524
|
.ep(commonParams)
|
|
522
525
|
.m(function (Command, cs, config, o) {
|
|
523
|
-
return [
|
|
526
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
524
527
|
})
|
|
525
528
|
.s("AwsProton20200720", "GetEnvironmentTemplate", {})
|
|
526
529
|
.n("ProtonClient", "GetEnvironmentTemplateCommand")
|
|
527
|
-
.sc(
|
|
530
|
+
.sc(GetEnvironmentTemplate$)
|
|
528
531
|
.build() {
|
|
529
532
|
}
|
|
530
533
|
|
|
531
|
-
class GetEnvironmentTemplateVersionCommand extends
|
|
534
|
+
class GetEnvironmentTemplateVersionCommand extends Command
|
|
532
535
|
.classBuilder()
|
|
533
536
|
.ep(commonParams)
|
|
534
537
|
.m(function (Command, cs, config, o) {
|
|
535
|
-
return [
|
|
538
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
536
539
|
})
|
|
537
540
|
.s("AwsProton20200720", "GetEnvironmentTemplateVersion", {})
|
|
538
541
|
.n("ProtonClient", "GetEnvironmentTemplateVersionCommand")
|
|
539
|
-
.sc(
|
|
542
|
+
.sc(GetEnvironmentTemplateVersion$)
|
|
540
543
|
.build() {
|
|
541
544
|
}
|
|
542
545
|
|
|
543
|
-
class GetRepositoryCommand extends
|
|
546
|
+
class GetRepositoryCommand extends Command
|
|
544
547
|
.classBuilder()
|
|
545
548
|
.ep(commonParams)
|
|
546
549
|
.m(function (Command, cs, config, o) {
|
|
547
|
-
return [
|
|
550
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
548
551
|
})
|
|
549
552
|
.s("AwsProton20200720", "GetRepository", {})
|
|
550
553
|
.n("ProtonClient", "GetRepositoryCommand")
|
|
551
|
-
.sc(
|
|
554
|
+
.sc(GetRepository$)
|
|
552
555
|
.build() {
|
|
553
556
|
}
|
|
554
557
|
|
|
555
|
-
class GetRepositorySyncStatusCommand extends
|
|
558
|
+
class GetRepositorySyncStatusCommand extends Command
|
|
556
559
|
.classBuilder()
|
|
557
560
|
.ep(commonParams)
|
|
558
561
|
.m(function (Command, cs, config, o) {
|
|
559
|
-
return [
|
|
562
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
560
563
|
})
|
|
561
564
|
.s("AwsProton20200720", "GetRepositorySyncStatus", {})
|
|
562
565
|
.n("ProtonClient", "GetRepositorySyncStatusCommand")
|
|
563
|
-
.sc(
|
|
566
|
+
.sc(GetRepositorySyncStatus$)
|
|
564
567
|
.build() {
|
|
565
568
|
}
|
|
566
569
|
|
|
567
|
-
class GetResourcesSummaryCommand extends
|
|
570
|
+
class GetResourcesSummaryCommand extends Command
|
|
568
571
|
.classBuilder()
|
|
569
572
|
.ep(commonParams)
|
|
570
573
|
.m(function (Command, cs, config, o) {
|
|
571
|
-
return [
|
|
574
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
572
575
|
})
|
|
573
576
|
.s("AwsProton20200720", "GetResourcesSummary", {})
|
|
574
577
|
.n("ProtonClient", "GetResourcesSummaryCommand")
|
|
575
|
-
.sc(
|
|
578
|
+
.sc(GetResourcesSummary$)
|
|
576
579
|
.build() {
|
|
577
580
|
}
|
|
578
581
|
|
|
579
|
-
class GetServiceCommand extends
|
|
582
|
+
class GetServiceCommand extends Command
|
|
580
583
|
.classBuilder()
|
|
581
584
|
.ep(commonParams)
|
|
582
585
|
.m(function (Command, cs, config, o) {
|
|
583
|
-
return [
|
|
586
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
584
587
|
})
|
|
585
588
|
.s("AwsProton20200720", "GetService", {})
|
|
586
589
|
.n("ProtonClient", "GetServiceCommand")
|
|
587
|
-
.sc(
|
|
590
|
+
.sc(GetService$)
|
|
588
591
|
.build() {
|
|
589
592
|
}
|
|
590
593
|
|
|
591
|
-
class GetServiceInstanceCommand extends
|
|
594
|
+
class GetServiceInstanceCommand extends Command
|
|
592
595
|
.classBuilder()
|
|
593
596
|
.ep(commonParams)
|
|
594
597
|
.m(function (Command, cs, config, o) {
|
|
595
|
-
return [
|
|
598
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
596
599
|
})
|
|
597
600
|
.s("AwsProton20200720", "GetServiceInstance", {})
|
|
598
601
|
.n("ProtonClient", "GetServiceInstanceCommand")
|
|
599
|
-
.sc(
|
|
602
|
+
.sc(GetServiceInstance$)
|
|
600
603
|
.build() {
|
|
601
604
|
}
|
|
602
605
|
|
|
603
|
-
class GetServiceInstanceSyncStatusCommand extends
|
|
606
|
+
class GetServiceInstanceSyncStatusCommand extends Command
|
|
604
607
|
.classBuilder()
|
|
605
608
|
.ep(commonParams)
|
|
606
609
|
.m(function (Command, cs, config, o) {
|
|
607
|
-
return [
|
|
610
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
608
611
|
})
|
|
609
612
|
.s("AwsProton20200720", "GetServiceInstanceSyncStatus", {})
|
|
610
613
|
.n("ProtonClient", "GetServiceInstanceSyncStatusCommand")
|
|
611
|
-
.sc(
|
|
614
|
+
.sc(GetServiceInstanceSyncStatus$)
|
|
612
615
|
.build() {
|
|
613
616
|
}
|
|
614
617
|
|
|
615
|
-
class GetServiceSyncBlockerSummaryCommand extends
|
|
618
|
+
class GetServiceSyncBlockerSummaryCommand extends Command
|
|
616
619
|
.classBuilder()
|
|
617
620
|
.ep(commonParams)
|
|
618
621
|
.m(function (Command, cs, config, o) {
|
|
619
|
-
return [
|
|
622
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
620
623
|
})
|
|
621
624
|
.s("AwsProton20200720", "GetServiceSyncBlockerSummary", {})
|
|
622
625
|
.n("ProtonClient", "GetServiceSyncBlockerSummaryCommand")
|
|
623
|
-
.sc(
|
|
626
|
+
.sc(GetServiceSyncBlockerSummary$)
|
|
624
627
|
.build() {
|
|
625
628
|
}
|
|
626
629
|
|
|
627
|
-
class GetServiceSyncConfigCommand extends
|
|
630
|
+
class GetServiceSyncConfigCommand extends Command
|
|
628
631
|
.classBuilder()
|
|
629
632
|
.ep(commonParams)
|
|
630
633
|
.m(function (Command, cs, config, o) {
|
|
631
|
-
return [
|
|
634
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
632
635
|
})
|
|
633
636
|
.s("AwsProton20200720", "GetServiceSyncConfig", {})
|
|
634
637
|
.n("ProtonClient", "GetServiceSyncConfigCommand")
|
|
635
|
-
.sc(
|
|
638
|
+
.sc(GetServiceSyncConfig$)
|
|
636
639
|
.build() {
|
|
637
640
|
}
|
|
638
641
|
|
|
639
|
-
class GetServiceTemplateCommand extends
|
|
642
|
+
class GetServiceTemplateCommand extends Command
|
|
640
643
|
.classBuilder()
|
|
641
644
|
.ep(commonParams)
|
|
642
645
|
.m(function (Command, cs, config, o) {
|
|
643
|
-
return [
|
|
646
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
644
647
|
})
|
|
645
648
|
.s("AwsProton20200720", "GetServiceTemplate", {})
|
|
646
649
|
.n("ProtonClient", "GetServiceTemplateCommand")
|
|
647
|
-
.sc(
|
|
650
|
+
.sc(GetServiceTemplate$)
|
|
648
651
|
.build() {
|
|
649
652
|
}
|
|
650
653
|
|
|
651
|
-
class GetServiceTemplateVersionCommand extends
|
|
654
|
+
class GetServiceTemplateVersionCommand extends Command
|
|
652
655
|
.classBuilder()
|
|
653
656
|
.ep(commonParams)
|
|
654
657
|
.m(function (Command, cs, config, o) {
|
|
655
|
-
return [
|
|
658
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
656
659
|
})
|
|
657
660
|
.s("AwsProton20200720", "GetServiceTemplateVersion", {})
|
|
658
661
|
.n("ProtonClient", "GetServiceTemplateVersionCommand")
|
|
659
|
-
.sc(
|
|
662
|
+
.sc(GetServiceTemplateVersion$)
|
|
660
663
|
.build() {
|
|
661
664
|
}
|
|
662
665
|
|
|
663
|
-
class GetTemplateSyncConfigCommand extends
|
|
666
|
+
class GetTemplateSyncConfigCommand extends Command
|
|
664
667
|
.classBuilder()
|
|
665
668
|
.ep(commonParams)
|
|
666
669
|
.m(function (Command, cs, config, o) {
|
|
667
|
-
return [
|
|
670
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
668
671
|
})
|
|
669
672
|
.s("AwsProton20200720", "GetTemplateSyncConfig", {})
|
|
670
673
|
.n("ProtonClient", "GetTemplateSyncConfigCommand")
|
|
671
|
-
.sc(
|
|
674
|
+
.sc(GetTemplateSyncConfig$)
|
|
672
675
|
.build() {
|
|
673
676
|
}
|
|
674
677
|
|
|
675
|
-
class GetTemplateSyncStatusCommand extends
|
|
678
|
+
class GetTemplateSyncStatusCommand extends Command
|
|
676
679
|
.classBuilder()
|
|
677
680
|
.ep(commonParams)
|
|
678
681
|
.m(function (Command, cs, config, o) {
|
|
679
|
-
return [
|
|
682
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
680
683
|
})
|
|
681
684
|
.s("AwsProton20200720", "GetTemplateSyncStatus", {})
|
|
682
685
|
.n("ProtonClient", "GetTemplateSyncStatusCommand")
|
|
683
|
-
.sc(
|
|
686
|
+
.sc(GetTemplateSyncStatus$)
|
|
684
687
|
.build() {
|
|
685
688
|
}
|
|
686
689
|
|
|
687
|
-
class ListComponentOutputsCommand extends
|
|
690
|
+
class ListComponentOutputsCommand extends Command
|
|
688
691
|
.classBuilder()
|
|
689
692
|
.ep(commonParams)
|
|
690
693
|
.m(function (Command, cs, config, o) {
|
|
691
|
-
return [
|
|
694
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
692
695
|
})
|
|
693
696
|
.s("AwsProton20200720", "ListComponentOutputs", {})
|
|
694
697
|
.n("ProtonClient", "ListComponentOutputsCommand")
|
|
695
|
-
.sc(
|
|
698
|
+
.sc(ListComponentOutputs$)
|
|
696
699
|
.build() {
|
|
697
700
|
}
|
|
698
701
|
|
|
699
|
-
class ListComponentProvisionedResourcesCommand extends
|
|
702
|
+
class ListComponentProvisionedResourcesCommand extends Command
|
|
700
703
|
.classBuilder()
|
|
701
704
|
.ep(commonParams)
|
|
702
705
|
.m(function (Command, cs, config, o) {
|
|
703
|
-
return [
|
|
706
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
704
707
|
})
|
|
705
708
|
.s("AwsProton20200720", "ListComponentProvisionedResources", {})
|
|
706
709
|
.n("ProtonClient", "ListComponentProvisionedResourcesCommand")
|
|
707
|
-
.sc(
|
|
710
|
+
.sc(ListComponentProvisionedResources$)
|
|
708
711
|
.build() {
|
|
709
712
|
}
|
|
710
713
|
|
|
711
|
-
class ListComponentsCommand extends
|
|
714
|
+
class ListComponentsCommand extends Command
|
|
712
715
|
.classBuilder()
|
|
713
716
|
.ep(commonParams)
|
|
714
717
|
.m(function (Command, cs, config, o) {
|
|
715
|
-
return [
|
|
718
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
716
719
|
})
|
|
717
720
|
.s("AwsProton20200720", "ListComponents", {})
|
|
718
721
|
.n("ProtonClient", "ListComponentsCommand")
|
|
719
|
-
.sc(
|
|
722
|
+
.sc(ListComponents$)
|
|
720
723
|
.build() {
|
|
721
724
|
}
|
|
722
725
|
|
|
723
|
-
class ListDeploymentsCommand extends
|
|
726
|
+
class ListDeploymentsCommand extends Command
|
|
724
727
|
.classBuilder()
|
|
725
728
|
.ep(commonParams)
|
|
726
729
|
.m(function (Command, cs, config, o) {
|
|
727
|
-
return [
|
|
730
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
728
731
|
})
|
|
729
732
|
.s("AwsProton20200720", "ListDeployments", {})
|
|
730
733
|
.n("ProtonClient", "ListDeploymentsCommand")
|
|
731
|
-
.sc(
|
|
734
|
+
.sc(ListDeployments$)
|
|
732
735
|
.build() {
|
|
733
736
|
}
|
|
734
737
|
|
|
735
|
-
class ListEnvironmentAccountConnectionsCommand extends
|
|
738
|
+
class ListEnvironmentAccountConnectionsCommand extends Command
|
|
736
739
|
.classBuilder()
|
|
737
740
|
.ep(commonParams)
|
|
738
741
|
.m(function (Command, cs, config, o) {
|
|
739
|
-
return [
|
|
742
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
740
743
|
})
|
|
741
744
|
.s("AwsProton20200720", "ListEnvironmentAccountConnections", {})
|
|
742
745
|
.n("ProtonClient", "ListEnvironmentAccountConnectionsCommand")
|
|
743
|
-
.sc(
|
|
746
|
+
.sc(ListEnvironmentAccountConnections$)
|
|
744
747
|
.build() {
|
|
745
748
|
}
|
|
746
749
|
|
|
747
|
-
class ListEnvironmentOutputsCommand extends
|
|
750
|
+
class ListEnvironmentOutputsCommand extends Command
|
|
748
751
|
.classBuilder()
|
|
749
752
|
.ep(commonParams)
|
|
750
753
|
.m(function (Command, cs, config, o) {
|
|
751
|
-
return [
|
|
754
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
752
755
|
})
|
|
753
756
|
.s("AwsProton20200720", "ListEnvironmentOutputs", {})
|
|
754
757
|
.n("ProtonClient", "ListEnvironmentOutputsCommand")
|
|
755
|
-
.sc(
|
|
758
|
+
.sc(ListEnvironmentOutputs$)
|
|
756
759
|
.build() {
|
|
757
760
|
}
|
|
758
761
|
|
|
759
|
-
class ListEnvironmentProvisionedResourcesCommand extends
|
|
762
|
+
class ListEnvironmentProvisionedResourcesCommand extends Command
|
|
760
763
|
.classBuilder()
|
|
761
764
|
.ep(commonParams)
|
|
762
765
|
.m(function (Command, cs, config, o) {
|
|
763
|
-
return [
|
|
766
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
764
767
|
})
|
|
765
768
|
.s("AwsProton20200720", "ListEnvironmentProvisionedResources", {})
|
|
766
769
|
.n("ProtonClient", "ListEnvironmentProvisionedResourcesCommand")
|
|
767
|
-
.sc(
|
|
770
|
+
.sc(ListEnvironmentProvisionedResources$)
|
|
768
771
|
.build() {
|
|
769
772
|
}
|
|
770
773
|
|
|
771
|
-
class ListEnvironmentsCommand extends
|
|
774
|
+
class ListEnvironmentsCommand extends Command
|
|
772
775
|
.classBuilder()
|
|
773
776
|
.ep(commonParams)
|
|
774
777
|
.m(function (Command, cs, config, o) {
|
|
775
|
-
return [
|
|
778
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
776
779
|
})
|
|
777
780
|
.s("AwsProton20200720", "ListEnvironments", {})
|
|
778
781
|
.n("ProtonClient", "ListEnvironmentsCommand")
|
|
779
|
-
.sc(
|
|
782
|
+
.sc(ListEnvironments$)
|
|
780
783
|
.build() {
|
|
781
784
|
}
|
|
782
785
|
|
|
783
|
-
class ListEnvironmentTemplatesCommand extends
|
|
786
|
+
class ListEnvironmentTemplatesCommand extends Command
|
|
784
787
|
.classBuilder()
|
|
785
788
|
.ep(commonParams)
|
|
786
789
|
.m(function (Command, cs, config, o) {
|
|
787
|
-
return [
|
|
790
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
788
791
|
})
|
|
789
792
|
.s("AwsProton20200720", "ListEnvironmentTemplates", {})
|
|
790
793
|
.n("ProtonClient", "ListEnvironmentTemplatesCommand")
|
|
791
|
-
.sc(
|
|
794
|
+
.sc(ListEnvironmentTemplates$)
|
|
792
795
|
.build() {
|
|
793
796
|
}
|
|
794
797
|
|
|
795
|
-
class ListEnvironmentTemplateVersionsCommand extends
|
|
798
|
+
class ListEnvironmentTemplateVersionsCommand extends Command
|
|
796
799
|
.classBuilder()
|
|
797
800
|
.ep(commonParams)
|
|
798
801
|
.m(function (Command, cs, config, o) {
|
|
799
|
-
return [
|
|
802
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
800
803
|
})
|
|
801
804
|
.s("AwsProton20200720", "ListEnvironmentTemplateVersions", {})
|
|
802
805
|
.n("ProtonClient", "ListEnvironmentTemplateVersionsCommand")
|
|
803
|
-
.sc(
|
|
806
|
+
.sc(ListEnvironmentTemplateVersions$)
|
|
804
807
|
.build() {
|
|
805
808
|
}
|
|
806
809
|
|
|
807
|
-
class ListRepositoriesCommand extends
|
|
810
|
+
class ListRepositoriesCommand extends Command
|
|
808
811
|
.classBuilder()
|
|
809
812
|
.ep(commonParams)
|
|
810
813
|
.m(function (Command, cs, config, o) {
|
|
811
|
-
return [
|
|
814
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
812
815
|
})
|
|
813
816
|
.s("AwsProton20200720", "ListRepositories", {})
|
|
814
817
|
.n("ProtonClient", "ListRepositoriesCommand")
|
|
815
|
-
.sc(
|
|
818
|
+
.sc(ListRepositories$)
|
|
816
819
|
.build() {
|
|
817
820
|
}
|
|
818
821
|
|
|
819
|
-
class ListRepositorySyncDefinitionsCommand extends
|
|
822
|
+
class ListRepositorySyncDefinitionsCommand extends Command
|
|
820
823
|
.classBuilder()
|
|
821
824
|
.ep(commonParams)
|
|
822
825
|
.m(function (Command, cs, config, o) {
|
|
823
|
-
return [
|
|
826
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
824
827
|
})
|
|
825
828
|
.s("AwsProton20200720", "ListRepositorySyncDefinitions", {})
|
|
826
829
|
.n("ProtonClient", "ListRepositorySyncDefinitionsCommand")
|
|
827
|
-
.sc(
|
|
830
|
+
.sc(ListRepositorySyncDefinitions$)
|
|
828
831
|
.build() {
|
|
829
832
|
}
|
|
830
833
|
|
|
831
|
-
class ListServiceInstanceOutputsCommand extends
|
|
834
|
+
class ListServiceInstanceOutputsCommand extends Command
|
|
832
835
|
.classBuilder()
|
|
833
836
|
.ep(commonParams)
|
|
834
837
|
.m(function (Command, cs, config, o) {
|
|
835
|
-
return [
|
|
838
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
836
839
|
})
|
|
837
840
|
.s("AwsProton20200720", "ListServiceInstanceOutputs", {})
|
|
838
841
|
.n("ProtonClient", "ListServiceInstanceOutputsCommand")
|
|
839
|
-
.sc(
|
|
842
|
+
.sc(ListServiceInstanceOutputs$)
|
|
840
843
|
.build() {
|
|
841
844
|
}
|
|
842
845
|
|
|
843
|
-
class ListServiceInstanceProvisionedResourcesCommand extends
|
|
846
|
+
class ListServiceInstanceProvisionedResourcesCommand extends Command
|
|
844
847
|
.classBuilder()
|
|
845
848
|
.ep(commonParams)
|
|
846
849
|
.m(function (Command, cs, config, o) {
|
|
847
|
-
return [
|
|
850
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
848
851
|
})
|
|
849
852
|
.s("AwsProton20200720", "ListServiceInstanceProvisionedResources", {})
|
|
850
853
|
.n("ProtonClient", "ListServiceInstanceProvisionedResourcesCommand")
|
|
851
|
-
.sc(
|
|
854
|
+
.sc(ListServiceInstanceProvisionedResources$)
|
|
852
855
|
.build() {
|
|
853
856
|
}
|
|
854
857
|
|
|
855
|
-
class ListServiceInstancesCommand extends
|
|
858
|
+
class ListServiceInstancesCommand extends Command
|
|
856
859
|
.classBuilder()
|
|
857
860
|
.ep(commonParams)
|
|
858
861
|
.m(function (Command, cs, config, o) {
|
|
859
|
-
return [
|
|
862
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
860
863
|
})
|
|
861
864
|
.s("AwsProton20200720", "ListServiceInstances", {})
|
|
862
865
|
.n("ProtonClient", "ListServiceInstancesCommand")
|
|
863
|
-
.sc(
|
|
866
|
+
.sc(ListServiceInstances$)
|
|
864
867
|
.build() {
|
|
865
868
|
}
|
|
866
869
|
|
|
867
|
-
class ListServicePipelineOutputsCommand extends
|
|
870
|
+
class ListServicePipelineOutputsCommand extends Command
|
|
868
871
|
.classBuilder()
|
|
869
872
|
.ep(commonParams)
|
|
870
873
|
.m(function (Command, cs, config, o) {
|
|
871
|
-
return [
|
|
874
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
872
875
|
})
|
|
873
876
|
.s("AwsProton20200720", "ListServicePipelineOutputs", {})
|
|
874
877
|
.n("ProtonClient", "ListServicePipelineOutputsCommand")
|
|
875
|
-
.sc(
|
|
878
|
+
.sc(ListServicePipelineOutputs$)
|
|
876
879
|
.build() {
|
|
877
880
|
}
|
|
878
881
|
|
|
879
|
-
class ListServicePipelineProvisionedResourcesCommand extends
|
|
882
|
+
class ListServicePipelineProvisionedResourcesCommand extends Command
|
|
880
883
|
.classBuilder()
|
|
881
884
|
.ep(commonParams)
|
|
882
885
|
.m(function (Command, cs, config, o) {
|
|
883
|
-
return [
|
|
886
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
884
887
|
})
|
|
885
888
|
.s("AwsProton20200720", "ListServicePipelineProvisionedResources", {})
|
|
886
889
|
.n("ProtonClient", "ListServicePipelineProvisionedResourcesCommand")
|
|
887
|
-
.sc(
|
|
890
|
+
.sc(ListServicePipelineProvisionedResources$)
|
|
888
891
|
.build() {
|
|
889
892
|
}
|
|
890
893
|
|
|
891
|
-
class ListServicesCommand extends
|
|
894
|
+
class ListServicesCommand extends Command
|
|
892
895
|
.classBuilder()
|
|
893
896
|
.ep(commonParams)
|
|
894
897
|
.m(function (Command, cs, config, o) {
|
|
895
|
-
return [
|
|
898
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
896
899
|
})
|
|
897
900
|
.s("AwsProton20200720", "ListServices", {})
|
|
898
901
|
.n("ProtonClient", "ListServicesCommand")
|
|
899
|
-
.sc(
|
|
902
|
+
.sc(ListServices$)
|
|
900
903
|
.build() {
|
|
901
904
|
}
|
|
902
905
|
|
|
903
|
-
class ListServiceTemplatesCommand extends
|
|
906
|
+
class ListServiceTemplatesCommand extends Command
|
|
904
907
|
.classBuilder()
|
|
905
908
|
.ep(commonParams)
|
|
906
909
|
.m(function (Command, cs, config, o) {
|
|
907
|
-
return [
|
|
910
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
908
911
|
})
|
|
909
912
|
.s("AwsProton20200720", "ListServiceTemplates", {})
|
|
910
913
|
.n("ProtonClient", "ListServiceTemplatesCommand")
|
|
911
|
-
.sc(
|
|
914
|
+
.sc(ListServiceTemplates$)
|
|
912
915
|
.build() {
|
|
913
916
|
}
|
|
914
917
|
|
|
915
|
-
class ListServiceTemplateVersionsCommand extends
|
|
918
|
+
class ListServiceTemplateVersionsCommand extends Command
|
|
916
919
|
.classBuilder()
|
|
917
920
|
.ep(commonParams)
|
|
918
921
|
.m(function (Command, cs, config, o) {
|
|
919
|
-
return [
|
|
922
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
920
923
|
})
|
|
921
924
|
.s("AwsProton20200720", "ListServiceTemplateVersions", {})
|
|
922
925
|
.n("ProtonClient", "ListServiceTemplateVersionsCommand")
|
|
923
|
-
.sc(
|
|
926
|
+
.sc(ListServiceTemplateVersions$)
|
|
924
927
|
.build() {
|
|
925
928
|
}
|
|
926
929
|
|
|
927
|
-
class ListTagsForResourceCommand extends
|
|
930
|
+
class ListTagsForResourceCommand extends Command
|
|
928
931
|
.classBuilder()
|
|
929
932
|
.ep(commonParams)
|
|
930
933
|
.m(function (Command, cs, config, o) {
|
|
931
|
-
return [
|
|
934
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
932
935
|
})
|
|
933
936
|
.s("AwsProton20200720", "ListTagsForResource", {})
|
|
934
937
|
.n("ProtonClient", "ListTagsForResourceCommand")
|
|
935
|
-
.sc(
|
|
938
|
+
.sc(ListTagsForResource$)
|
|
936
939
|
.build() {
|
|
937
940
|
}
|
|
938
941
|
|
|
939
|
-
class NotifyResourceDeploymentStatusChangeCommand extends
|
|
942
|
+
class NotifyResourceDeploymentStatusChangeCommand extends Command
|
|
940
943
|
.classBuilder()
|
|
941
944
|
.ep(commonParams)
|
|
942
945
|
.m(function (Command, cs, config, o) {
|
|
943
|
-
return [
|
|
946
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
944
947
|
})
|
|
945
948
|
.s("AwsProton20200720", "NotifyResourceDeploymentStatusChange", {})
|
|
946
949
|
.n("ProtonClient", "NotifyResourceDeploymentStatusChangeCommand")
|
|
947
|
-
.sc(
|
|
950
|
+
.sc(NotifyResourceDeploymentStatusChange$)
|
|
948
951
|
.build() {
|
|
949
952
|
}
|
|
950
953
|
|
|
951
|
-
class RejectEnvironmentAccountConnectionCommand extends
|
|
954
|
+
class RejectEnvironmentAccountConnectionCommand extends Command
|
|
952
955
|
.classBuilder()
|
|
953
956
|
.ep(commonParams)
|
|
954
957
|
.m(function (Command, cs, config, o) {
|
|
955
|
-
return [
|
|
958
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
956
959
|
})
|
|
957
960
|
.s("AwsProton20200720", "RejectEnvironmentAccountConnection", {})
|
|
958
961
|
.n("ProtonClient", "RejectEnvironmentAccountConnectionCommand")
|
|
959
|
-
.sc(
|
|
962
|
+
.sc(RejectEnvironmentAccountConnection$)
|
|
960
963
|
.build() {
|
|
961
964
|
}
|
|
962
965
|
|
|
963
|
-
class TagResourceCommand extends
|
|
966
|
+
class TagResourceCommand extends Command
|
|
964
967
|
.classBuilder()
|
|
965
968
|
.ep(commonParams)
|
|
966
969
|
.m(function (Command, cs, config, o) {
|
|
967
|
-
return [
|
|
970
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
968
971
|
})
|
|
969
972
|
.s("AwsProton20200720", "TagResource", {})
|
|
970
973
|
.n("ProtonClient", "TagResourceCommand")
|
|
971
|
-
.sc(
|
|
974
|
+
.sc(TagResource$)
|
|
972
975
|
.build() {
|
|
973
976
|
}
|
|
974
977
|
|
|
975
|
-
class UntagResourceCommand extends
|
|
978
|
+
class UntagResourceCommand extends Command
|
|
976
979
|
.classBuilder()
|
|
977
980
|
.ep(commonParams)
|
|
978
981
|
.m(function (Command, cs, config, o) {
|
|
979
|
-
return [
|
|
982
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
980
983
|
})
|
|
981
984
|
.s("AwsProton20200720", "UntagResource", {})
|
|
982
985
|
.n("ProtonClient", "UntagResourceCommand")
|
|
983
|
-
.sc(
|
|
986
|
+
.sc(UntagResource$)
|
|
984
987
|
.build() {
|
|
985
988
|
}
|
|
986
989
|
|
|
987
|
-
class UpdateAccountSettingsCommand extends
|
|
990
|
+
class UpdateAccountSettingsCommand extends Command
|
|
988
991
|
.classBuilder()
|
|
989
992
|
.ep(commonParams)
|
|
990
993
|
.m(function (Command, cs, config, o) {
|
|
991
|
-
return [
|
|
994
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
992
995
|
})
|
|
993
996
|
.s("AwsProton20200720", "UpdateAccountSettings", {})
|
|
994
997
|
.n("ProtonClient", "UpdateAccountSettingsCommand")
|
|
995
|
-
.sc(
|
|
998
|
+
.sc(UpdateAccountSettings$)
|
|
996
999
|
.build() {
|
|
997
1000
|
}
|
|
998
1001
|
|
|
999
|
-
class UpdateComponentCommand extends
|
|
1002
|
+
class UpdateComponentCommand extends Command
|
|
1000
1003
|
.classBuilder()
|
|
1001
1004
|
.ep(commonParams)
|
|
1002
1005
|
.m(function (Command, cs, config, o) {
|
|
1003
|
-
return [
|
|
1006
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1004
1007
|
})
|
|
1005
1008
|
.s("AwsProton20200720", "UpdateComponent", {})
|
|
1006
1009
|
.n("ProtonClient", "UpdateComponentCommand")
|
|
1007
|
-
.sc(
|
|
1010
|
+
.sc(UpdateComponent$)
|
|
1008
1011
|
.build() {
|
|
1009
1012
|
}
|
|
1010
1013
|
|
|
1011
|
-
class UpdateEnvironmentAccountConnectionCommand extends
|
|
1014
|
+
class UpdateEnvironmentAccountConnectionCommand extends Command
|
|
1012
1015
|
.classBuilder()
|
|
1013
1016
|
.ep(commonParams)
|
|
1014
1017
|
.m(function (Command, cs, config, o) {
|
|
1015
|
-
return [
|
|
1018
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1016
1019
|
})
|
|
1017
1020
|
.s("AwsProton20200720", "UpdateEnvironmentAccountConnection", {})
|
|
1018
1021
|
.n("ProtonClient", "UpdateEnvironmentAccountConnectionCommand")
|
|
1019
|
-
.sc(
|
|
1022
|
+
.sc(UpdateEnvironmentAccountConnection$)
|
|
1020
1023
|
.build() {
|
|
1021
1024
|
}
|
|
1022
1025
|
|
|
1023
|
-
class UpdateEnvironmentCommand extends
|
|
1026
|
+
class UpdateEnvironmentCommand extends Command
|
|
1024
1027
|
.classBuilder()
|
|
1025
1028
|
.ep(commonParams)
|
|
1026
1029
|
.m(function (Command, cs, config, o) {
|
|
1027
|
-
return [
|
|
1030
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1028
1031
|
})
|
|
1029
1032
|
.s("AwsProton20200720", "UpdateEnvironment", {})
|
|
1030
1033
|
.n("ProtonClient", "UpdateEnvironmentCommand")
|
|
1031
|
-
.sc(
|
|
1034
|
+
.sc(UpdateEnvironment$)
|
|
1032
1035
|
.build() {
|
|
1033
1036
|
}
|
|
1034
1037
|
|
|
1035
|
-
class UpdateEnvironmentTemplateCommand extends
|
|
1038
|
+
class UpdateEnvironmentTemplateCommand extends Command
|
|
1036
1039
|
.classBuilder()
|
|
1037
1040
|
.ep(commonParams)
|
|
1038
1041
|
.m(function (Command, cs, config, o) {
|
|
1039
|
-
return [
|
|
1042
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1040
1043
|
})
|
|
1041
1044
|
.s("AwsProton20200720", "UpdateEnvironmentTemplate", {})
|
|
1042
1045
|
.n("ProtonClient", "UpdateEnvironmentTemplateCommand")
|
|
1043
|
-
.sc(
|
|
1046
|
+
.sc(UpdateEnvironmentTemplate$)
|
|
1044
1047
|
.build() {
|
|
1045
1048
|
}
|
|
1046
1049
|
|
|
1047
|
-
class UpdateEnvironmentTemplateVersionCommand extends
|
|
1050
|
+
class UpdateEnvironmentTemplateVersionCommand extends Command
|
|
1048
1051
|
.classBuilder()
|
|
1049
1052
|
.ep(commonParams)
|
|
1050
1053
|
.m(function (Command, cs, config, o) {
|
|
1051
|
-
return [
|
|
1054
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1052
1055
|
})
|
|
1053
1056
|
.s("AwsProton20200720", "UpdateEnvironmentTemplateVersion", {})
|
|
1054
1057
|
.n("ProtonClient", "UpdateEnvironmentTemplateVersionCommand")
|
|
1055
|
-
.sc(
|
|
1058
|
+
.sc(UpdateEnvironmentTemplateVersion$)
|
|
1056
1059
|
.build() {
|
|
1057
1060
|
}
|
|
1058
1061
|
|
|
1059
|
-
class UpdateServiceCommand extends
|
|
1062
|
+
class UpdateServiceCommand extends Command
|
|
1060
1063
|
.classBuilder()
|
|
1061
1064
|
.ep(commonParams)
|
|
1062
1065
|
.m(function (Command, cs, config, o) {
|
|
1063
|
-
return [
|
|
1066
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1064
1067
|
})
|
|
1065
1068
|
.s("AwsProton20200720", "UpdateService", {})
|
|
1066
1069
|
.n("ProtonClient", "UpdateServiceCommand")
|
|
1067
|
-
.sc(
|
|
1070
|
+
.sc(UpdateService$)
|
|
1068
1071
|
.build() {
|
|
1069
1072
|
}
|
|
1070
1073
|
|
|
1071
|
-
class UpdateServiceInstanceCommand extends
|
|
1074
|
+
class UpdateServiceInstanceCommand extends Command
|
|
1072
1075
|
.classBuilder()
|
|
1073
1076
|
.ep(commonParams)
|
|
1074
1077
|
.m(function (Command, cs, config, o) {
|
|
1075
|
-
return [
|
|
1078
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1076
1079
|
})
|
|
1077
1080
|
.s("AwsProton20200720", "UpdateServiceInstance", {})
|
|
1078
1081
|
.n("ProtonClient", "UpdateServiceInstanceCommand")
|
|
1079
|
-
.sc(
|
|
1082
|
+
.sc(UpdateServiceInstance$)
|
|
1080
1083
|
.build() {
|
|
1081
1084
|
}
|
|
1082
1085
|
|
|
1083
|
-
class UpdateServicePipelineCommand extends
|
|
1086
|
+
class UpdateServicePipelineCommand extends Command
|
|
1084
1087
|
.classBuilder()
|
|
1085
1088
|
.ep(commonParams)
|
|
1086
1089
|
.m(function (Command, cs, config, o) {
|
|
1087
|
-
return [
|
|
1090
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1088
1091
|
})
|
|
1089
1092
|
.s("AwsProton20200720", "UpdateServicePipeline", {})
|
|
1090
1093
|
.n("ProtonClient", "UpdateServicePipelineCommand")
|
|
1091
|
-
.sc(
|
|
1094
|
+
.sc(UpdateServicePipeline$)
|
|
1092
1095
|
.build() {
|
|
1093
1096
|
}
|
|
1094
1097
|
|
|
1095
|
-
class UpdateServiceSyncBlockerCommand extends
|
|
1098
|
+
class UpdateServiceSyncBlockerCommand extends Command
|
|
1096
1099
|
.classBuilder()
|
|
1097
1100
|
.ep(commonParams)
|
|
1098
1101
|
.m(function (Command, cs, config, o) {
|
|
1099
|
-
return [
|
|
1102
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1100
1103
|
})
|
|
1101
1104
|
.s("AwsProton20200720", "UpdateServiceSyncBlocker", {})
|
|
1102
1105
|
.n("ProtonClient", "UpdateServiceSyncBlockerCommand")
|
|
1103
|
-
.sc(
|
|
1106
|
+
.sc(UpdateServiceSyncBlocker$)
|
|
1104
1107
|
.build() {
|
|
1105
1108
|
}
|
|
1106
1109
|
|
|
1107
|
-
class UpdateServiceSyncConfigCommand extends
|
|
1110
|
+
class UpdateServiceSyncConfigCommand extends Command
|
|
1108
1111
|
.classBuilder()
|
|
1109
1112
|
.ep(commonParams)
|
|
1110
1113
|
.m(function (Command, cs, config, o) {
|
|
1111
|
-
return [
|
|
1114
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1112
1115
|
})
|
|
1113
1116
|
.s("AwsProton20200720", "UpdateServiceSyncConfig", {})
|
|
1114
1117
|
.n("ProtonClient", "UpdateServiceSyncConfigCommand")
|
|
1115
|
-
.sc(
|
|
1118
|
+
.sc(UpdateServiceSyncConfig$)
|
|
1116
1119
|
.build() {
|
|
1117
1120
|
}
|
|
1118
1121
|
|
|
1119
|
-
class UpdateServiceTemplateCommand extends
|
|
1122
|
+
class UpdateServiceTemplateCommand extends Command
|
|
1120
1123
|
.classBuilder()
|
|
1121
1124
|
.ep(commonParams)
|
|
1122
1125
|
.m(function (Command, cs, config, o) {
|
|
1123
|
-
return [
|
|
1126
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1124
1127
|
})
|
|
1125
1128
|
.s("AwsProton20200720", "UpdateServiceTemplate", {})
|
|
1126
1129
|
.n("ProtonClient", "UpdateServiceTemplateCommand")
|
|
1127
|
-
.sc(
|
|
1130
|
+
.sc(UpdateServiceTemplate$)
|
|
1128
1131
|
.build() {
|
|
1129
1132
|
}
|
|
1130
1133
|
|
|
1131
|
-
class UpdateServiceTemplateVersionCommand extends
|
|
1134
|
+
class UpdateServiceTemplateVersionCommand extends Command
|
|
1132
1135
|
.classBuilder()
|
|
1133
1136
|
.ep(commonParams)
|
|
1134
1137
|
.m(function (Command, cs, config, o) {
|
|
1135
|
-
return [
|
|
1138
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1136
1139
|
})
|
|
1137
1140
|
.s("AwsProton20200720", "UpdateServiceTemplateVersion", {})
|
|
1138
1141
|
.n("ProtonClient", "UpdateServiceTemplateVersionCommand")
|
|
1139
|
-
.sc(
|
|
1142
|
+
.sc(UpdateServiceTemplateVersion$)
|
|
1140
1143
|
.build() {
|
|
1141
1144
|
}
|
|
1142
1145
|
|
|
1143
|
-
class UpdateTemplateSyncConfigCommand extends
|
|
1146
|
+
class UpdateTemplateSyncConfigCommand extends Command
|
|
1144
1147
|
.classBuilder()
|
|
1145
1148
|
.ep(commonParams)
|
|
1146
1149
|
.m(function (Command, cs, config, o) {
|
|
1147
|
-
return [
|
|
1150
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1148
1151
|
})
|
|
1149
1152
|
.s("AwsProton20200720", "UpdateTemplateSyncConfig", {})
|
|
1150
1153
|
.n("ProtonClient", "UpdateTemplateSyncConfigCommand")
|
|
1151
|
-
.sc(
|
|
1154
|
+
.sc(UpdateTemplateSyncConfig$)
|
|
1152
1155
|
.build() {
|
|
1153
1156
|
}
|
|
1154
1157
|
|
|
1155
|
-
const paginateListComponentOutputs =
|
|
1158
|
+
const paginateListComponentOutputs = createPaginator(ProtonClient, ListComponentOutputsCommand, "nextToken", "nextToken", "");
|
|
1156
1159
|
|
|
1157
|
-
const paginateListComponentProvisionedResources =
|
|
1160
|
+
const paginateListComponentProvisionedResources = createPaginator(ProtonClient, ListComponentProvisionedResourcesCommand, "nextToken", "nextToken", "");
|
|
1158
1161
|
|
|
1159
|
-
const paginateListComponents =
|
|
1162
|
+
const paginateListComponents = createPaginator(ProtonClient, ListComponentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1160
1163
|
|
|
1161
|
-
const paginateListDeployments =
|
|
1164
|
+
const paginateListDeployments = createPaginator(ProtonClient, ListDeploymentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1162
1165
|
|
|
1163
|
-
const paginateListEnvironmentAccountConnections =
|
|
1166
|
+
const paginateListEnvironmentAccountConnections = createPaginator(ProtonClient, ListEnvironmentAccountConnectionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1164
1167
|
|
|
1165
|
-
const paginateListEnvironmentOutputs =
|
|
1168
|
+
const paginateListEnvironmentOutputs = createPaginator(ProtonClient, ListEnvironmentOutputsCommand, "nextToken", "nextToken", "");
|
|
1166
1169
|
|
|
1167
|
-
const paginateListEnvironmentProvisionedResources =
|
|
1170
|
+
const paginateListEnvironmentProvisionedResources = createPaginator(ProtonClient, ListEnvironmentProvisionedResourcesCommand, "nextToken", "nextToken", "");
|
|
1168
1171
|
|
|
1169
|
-
const paginateListEnvironments =
|
|
1172
|
+
const paginateListEnvironments = createPaginator(ProtonClient, ListEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1170
1173
|
|
|
1171
|
-
const paginateListEnvironmentTemplates =
|
|
1174
|
+
const paginateListEnvironmentTemplates = createPaginator(ProtonClient, ListEnvironmentTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
1172
1175
|
|
|
1173
|
-
const paginateListEnvironmentTemplateVersions =
|
|
1176
|
+
const paginateListEnvironmentTemplateVersions = createPaginator(ProtonClient, ListEnvironmentTemplateVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1174
1177
|
|
|
1175
|
-
const paginateListRepositories =
|
|
1178
|
+
const paginateListRepositories = createPaginator(ProtonClient, ListRepositoriesCommand, "nextToken", "nextToken", "maxResults");
|
|
1176
1179
|
|
|
1177
|
-
const paginateListRepositorySyncDefinitions =
|
|
1180
|
+
const paginateListRepositorySyncDefinitions = createPaginator(ProtonClient, ListRepositorySyncDefinitionsCommand, "nextToken", "nextToken", "");
|
|
1178
1181
|
|
|
1179
|
-
const paginateListServiceInstanceOutputs =
|
|
1182
|
+
const paginateListServiceInstanceOutputs = createPaginator(ProtonClient, ListServiceInstanceOutputsCommand, "nextToken", "nextToken", "");
|
|
1180
1183
|
|
|
1181
|
-
const paginateListServiceInstanceProvisionedResources =
|
|
1184
|
+
const paginateListServiceInstanceProvisionedResources = createPaginator(ProtonClient, ListServiceInstanceProvisionedResourcesCommand, "nextToken", "nextToken", "");
|
|
1182
1185
|
|
|
1183
|
-
const paginateListServiceInstances =
|
|
1186
|
+
const paginateListServiceInstances = createPaginator(ProtonClient, ListServiceInstancesCommand, "nextToken", "nextToken", "maxResults");
|
|
1184
1187
|
|
|
1185
|
-
const paginateListServicePipelineOutputs =
|
|
1188
|
+
const paginateListServicePipelineOutputs = createPaginator(ProtonClient, ListServicePipelineOutputsCommand, "nextToken", "nextToken", "");
|
|
1186
1189
|
|
|
1187
|
-
const paginateListServicePipelineProvisionedResources =
|
|
1190
|
+
const paginateListServicePipelineProvisionedResources = createPaginator(ProtonClient, ListServicePipelineProvisionedResourcesCommand, "nextToken", "nextToken", "");
|
|
1188
1191
|
|
|
1189
|
-
const paginateListServices =
|
|
1192
|
+
const paginateListServices = createPaginator(ProtonClient, ListServicesCommand, "nextToken", "nextToken", "maxResults");
|
|
1190
1193
|
|
|
1191
|
-
const paginateListServiceTemplates =
|
|
1194
|
+
const paginateListServiceTemplates = createPaginator(ProtonClient, ListServiceTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
1192
1195
|
|
|
1193
|
-
const paginateListServiceTemplateVersions =
|
|
1196
|
+
const paginateListServiceTemplateVersions = createPaginator(ProtonClient, ListServiceTemplateVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1194
1197
|
|
|
1195
|
-
const paginateListTagsForResource =
|
|
1198
|
+
const paginateListTagsForResource = createPaginator(ProtonClient, ListTagsForResourceCommand, "nextToken", "nextToken", "maxResults");
|
|
1196
1199
|
|
|
1197
|
-
const checkState$9 = async (client
|
|
1200
|
+
const checkState$9 = async (client, input) => {
|
|
1198
1201
|
let reason;
|
|
1199
1202
|
try {
|
|
1200
|
-
let result = await client
|
|
1203
|
+
let result = await client.send(new GetComponentCommand(input));
|
|
1201
1204
|
reason = result;
|
|
1202
1205
|
try {
|
|
1203
1206
|
const returnComparator = () => {
|
|
1204
1207
|
return result.component.deploymentStatus;
|
|
1205
1208
|
};
|
|
1206
1209
|
if (returnComparator() === "DELETE_FAILED") {
|
|
1207
|
-
return { state:
|
|
1210
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1208
1211
|
}
|
|
1209
1212
|
}
|
|
1210
1213
|
catch (e) { }
|
|
@@ -1212,32 +1215,32 @@ const checkState$9 = async (client$1, input) => {
|
|
|
1212
1215
|
catch (exception) {
|
|
1213
1216
|
reason = exception;
|
|
1214
1217
|
if (exception.name === "ResourceNotFoundException") {
|
|
1215
|
-
return { state:
|
|
1218
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1216
1219
|
}
|
|
1217
1220
|
}
|
|
1218
|
-
return { state:
|
|
1221
|
+
return { state: WaiterState.RETRY, reason };
|
|
1219
1222
|
};
|
|
1220
1223
|
const waitForComponentDeleted = async (params, input) => {
|
|
1221
1224
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1222
|
-
return
|
|
1225
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$9);
|
|
1223
1226
|
};
|
|
1224
1227
|
const waitUntilComponentDeleted = async (params, input) => {
|
|
1225
1228
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1226
|
-
const result = await
|
|
1227
|
-
return
|
|
1229
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$9);
|
|
1230
|
+
return checkExceptions(result);
|
|
1228
1231
|
};
|
|
1229
1232
|
|
|
1230
|
-
const checkState$8 = async (client
|
|
1233
|
+
const checkState$8 = async (client, input) => {
|
|
1231
1234
|
let reason;
|
|
1232
1235
|
try {
|
|
1233
|
-
let result = await client
|
|
1236
|
+
let result = await client.send(new GetComponentCommand(input));
|
|
1234
1237
|
reason = result;
|
|
1235
1238
|
try {
|
|
1236
1239
|
const returnComparator = () => {
|
|
1237
1240
|
return result.component.deploymentStatus;
|
|
1238
1241
|
};
|
|
1239
1242
|
if (returnComparator() === "SUCCEEDED") {
|
|
1240
|
-
return { state:
|
|
1243
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1241
1244
|
}
|
|
1242
1245
|
}
|
|
1243
1246
|
catch (e) { }
|
|
@@ -1246,7 +1249,7 @@ const checkState$8 = async (client$1, input) => {
|
|
|
1246
1249
|
return result.component.deploymentStatus;
|
|
1247
1250
|
};
|
|
1248
1251
|
if (returnComparator() === "FAILED") {
|
|
1249
|
-
return { state:
|
|
1252
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1250
1253
|
}
|
|
1251
1254
|
}
|
|
1252
1255
|
catch (e) { }
|
|
@@ -1254,29 +1257,29 @@ const checkState$8 = async (client$1, input) => {
|
|
|
1254
1257
|
catch (exception) {
|
|
1255
1258
|
reason = exception;
|
|
1256
1259
|
}
|
|
1257
|
-
return { state:
|
|
1260
|
+
return { state: WaiterState.RETRY, reason };
|
|
1258
1261
|
};
|
|
1259
1262
|
const waitForComponentDeployed = async (params, input) => {
|
|
1260
1263
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1261
|
-
return
|
|
1264
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);
|
|
1262
1265
|
};
|
|
1263
1266
|
const waitUntilComponentDeployed = async (params, input) => {
|
|
1264
1267
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1265
|
-
const result = await
|
|
1266
|
-
return
|
|
1268
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);
|
|
1269
|
+
return checkExceptions(result);
|
|
1267
1270
|
};
|
|
1268
1271
|
|
|
1269
|
-
const checkState$7 = async (client
|
|
1272
|
+
const checkState$7 = async (client, input) => {
|
|
1270
1273
|
let reason;
|
|
1271
1274
|
try {
|
|
1272
|
-
let result = await client
|
|
1275
|
+
let result = await client.send(new GetEnvironmentCommand(input));
|
|
1273
1276
|
reason = result;
|
|
1274
1277
|
try {
|
|
1275
1278
|
const returnComparator = () => {
|
|
1276
1279
|
return result.environment.deploymentStatus;
|
|
1277
1280
|
};
|
|
1278
1281
|
if (returnComparator() === "SUCCEEDED") {
|
|
1279
|
-
return { state:
|
|
1282
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1280
1283
|
}
|
|
1281
1284
|
}
|
|
1282
1285
|
catch (e) { }
|
|
@@ -1285,7 +1288,7 @@ const checkState$7 = async (client$1, input) => {
|
|
|
1285
1288
|
return result.environment.deploymentStatus;
|
|
1286
1289
|
};
|
|
1287
1290
|
if (returnComparator() === "FAILED") {
|
|
1288
|
-
return { state:
|
|
1291
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1289
1292
|
}
|
|
1290
1293
|
}
|
|
1291
1294
|
catch (e) { }
|
|
@@ -1293,29 +1296,29 @@ const checkState$7 = async (client$1, input) => {
|
|
|
1293
1296
|
catch (exception) {
|
|
1294
1297
|
reason = exception;
|
|
1295
1298
|
}
|
|
1296
|
-
return { state:
|
|
1299
|
+
return { state: WaiterState.RETRY, reason };
|
|
1297
1300
|
};
|
|
1298
1301
|
const waitForEnvironmentDeployed = async (params, input) => {
|
|
1299
1302
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1300
|
-
return
|
|
1303
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
|
|
1301
1304
|
};
|
|
1302
1305
|
const waitUntilEnvironmentDeployed = async (params, input) => {
|
|
1303
1306
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1304
|
-
const result = await
|
|
1305
|
-
return
|
|
1307
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
|
|
1308
|
+
return checkExceptions(result);
|
|
1306
1309
|
};
|
|
1307
1310
|
|
|
1308
|
-
const checkState$6 = async (client
|
|
1311
|
+
const checkState$6 = async (client, input) => {
|
|
1309
1312
|
let reason;
|
|
1310
1313
|
try {
|
|
1311
|
-
let result = await client
|
|
1314
|
+
let result = await client.send(new GetEnvironmentTemplateVersionCommand(input));
|
|
1312
1315
|
reason = result;
|
|
1313
1316
|
try {
|
|
1314
1317
|
const returnComparator = () => {
|
|
1315
1318
|
return result.environmentTemplateVersion.status;
|
|
1316
1319
|
};
|
|
1317
1320
|
if (returnComparator() === "DRAFT") {
|
|
1318
|
-
return { state:
|
|
1321
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1319
1322
|
}
|
|
1320
1323
|
}
|
|
1321
1324
|
catch (e) { }
|
|
@@ -1324,7 +1327,7 @@ const checkState$6 = async (client$1, input) => {
|
|
|
1324
1327
|
return result.environmentTemplateVersion.status;
|
|
1325
1328
|
};
|
|
1326
1329
|
if (returnComparator() === "PUBLISHED") {
|
|
1327
|
-
return { state:
|
|
1330
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1328
1331
|
}
|
|
1329
1332
|
}
|
|
1330
1333
|
catch (e) { }
|
|
@@ -1333,7 +1336,7 @@ const checkState$6 = async (client$1, input) => {
|
|
|
1333
1336
|
return result.environmentTemplateVersion.status;
|
|
1334
1337
|
};
|
|
1335
1338
|
if (returnComparator() === "REGISTRATION_FAILED") {
|
|
1336
|
-
return { state:
|
|
1339
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1337
1340
|
}
|
|
1338
1341
|
}
|
|
1339
1342
|
catch (e) { }
|
|
@@ -1341,29 +1344,29 @@ const checkState$6 = async (client$1, input) => {
|
|
|
1341
1344
|
catch (exception) {
|
|
1342
1345
|
reason = exception;
|
|
1343
1346
|
}
|
|
1344
|
-
return { state:
|
|
1347
|
+
return { state: WaiterState.RETRY, reason };
|
|
1345
1348
|
};
|
|
1346
1349
|
const waitForEnvironmentTemplateVersionRegistered = async (params, input) => {
|
|
1347
1350
|
const serviceDefaults = { minDelay: 2, maxDelay: 300 };
|
|
1348
|
-
return
|
|
1351
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
|
|
1349
1352
|
};
|
|
1350
1353
|
const waitUntilEnvironmentTemplateVersionRegistered = async (params, input) => {
|
|
1351
1354
|
const serviceDefaults = { minDelay: 2, maxDelay: 300 };
|
|
1352
|
-
const result = await
|
|
1353
|
-
return
|
|
1355
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
|
|
1356
|
+
return checkExceptions(result);
|
|
1354
1357
|
};
|
|
1355
1358
|
|
|
1356
|
-
const checkState$5 = async (client
|
|
1359
|
+
const checkState$5 = async (client, input) => {
|
|
1357
1360
|
let reason;
|
|
1358
1361
|
try {
|
|
1359
|
-
let result = await client
|
|
1362
|
+
let result = await client.send(new GetServiceCommand(input));
|
|
1360
1363
|
reason = result;
|
|
1361
1364
|
try {
|
|
1362
1365
|
const returnComparator = () => {
|
|
1363
1366
|
return result.service.status;
|
|
1364
1367
|
};
|
|
1365
1368
|
if (returnComparator() === "ACTIVE") {
|
|
1366
|
-
return { state:
|
|
1369
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1367
1370
|
}
|
|
1368
1371
|
}
|
|
1369
1372
|
catch (e) { }
|
|
@@ -1372,7 +1375,7 @@ const checkState$5 = async (client$1, input) => {
|
|
|
1372
1375
|
return result.service.status;
|
|
1373
1376
|
};
|
|
1374
1377
|
if (returnComparator() === "CREATE_FAILED_CLEANUP_COMPLETE") {
|
|
1375
|
-
return { state:
|
|
1378
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1376
1379
|
}
|
|
1377
1380
|
}
|
|
1378
1381
|
catch (e) { }
|
|
@@ -1381,7 +1384,7 @@ const checkState$5 = async (client$1, input) => {
|
|
|
1381
1384
|
return result.service.status;
|
|
1382
1385
|
};
|
|
1383
1386
|
if (returnComparator() === "CREATE_FAILED_CLEANUP_FAILED") {
|
|
1384
|
-
return { state:
|
|
1387
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1385
1388
|
}
|
|
1386
1389
|
}
|
|
1387
1390
|
catch (e) { }
|
|
@@ -1390,7 +1393,7 @@ const checkState$5 = async (client$1, input) => {
|
|
|
1390
1393
|
return result.service.status;
|
|
1391
1394
|
};
|
|
1392
1395
|
if (returnComparator() === "CREATE_FAILED") {
|
|
1393
|
-
return { state:
|
|
1396
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1394
1397
|
}
|
|
1395
1398
|
}
|
|
1396
1399
|
catch (e) { }
|
|
@@ -1398,29 +1401,29 @@ const checkState$5 = async (client$1, input) => {
|
|
|
1398
1401
|
catch (exception) {
|
|
1399
1402
|
reason = exception;
|
|
1400
1403
|
}
|
|
1401
|
-
return { state:
|
|
1404
|
+
return { state: WaiterState.RETRY, reason };
|
|
1402
1405
|
};
|
|
1403
1406
|
const waitForServiceCreated = async (params, input) => {
|
|
1404
1407
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1405
|
-
return
|
|
1408
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
|
|
1406
1409
|
};
|
|
1407
1410
|
const waitUntilServiceCreated = async (params, input) => {
|
|
1408
1411
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1409
|
-
const result = await
|
|
1410
|
-
return
|
|
1412
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
|
|
1413
|
+
return checkExceptions(result);
|
|
1411
1414
|
};
|
|
1412
1415
|
|
|
1413
|
-
const checkState$4 = async (client
|
|
1416
|
+
const checkState$4 = async (client, input) => {
|
|
1414
1417
|
let reason;
|
|
1415
1418
|
try {
|
|
1416
|
-
let result = await client
|
|
1419
|
+
let result = await client.send(new GetServiceCommand(input));
|
|
1417
1420
|
reason = result;
|
|
1418
1421
|
try {
|
|
1419
1422
|
const returnComparator = () => {
|
|
1420
1423
|
return result.service.status;
|
|
1421
1424
|
};
|
|
1422
1425
|
if (returnComparator() === "DELETE_FAILED") {
|
|
1423
|
-
return { state:
|
|
1426
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1424
1427
|
}
|
|
1425
1428
|
}
|
|
1426
1429
|
catch (e) { }
|
|
@@ -1428,32 +1431,32 @@ const checkState$4 = async (client$1, input) => {
|
|
|
1428
1431
|
catch (exception) {
|
|
1429
1432
|
reason = exception;
|
|
1430
1433
|
if (exception.name === "ResourceNotFoundException") {
|
|
1431
|
-
return { state:
|
|
1434
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1432
1435
|
}
|
|
1433
1436
|
}
|
|
1434
|
-
return { state:
|
|
1437
|
+
return { state: WaiterState.RETRY, reason };
|
|
1435
1438
|
};
|
|
1436
1439
|
const waitForServiceDeleted = async (params, input) => {
|
|
1437
1440
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1438
|
-
return
|
|
1441
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
1439
1442
|
};
|
|
1440
1443
|
const waitUntilServiceDeleted = async (params, input) => {
|
|
1441
1444
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1442
|
-
const result = await
|
|
1443
|
-
return
|
|
1445
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
1446
|
+
return checkExceptions(result);
|
|
1444
1447
|
};
|
|
1445
1448
|
|
|
1446
|
-
const checkState$3 = async (client
|
|
1449
|
+
const checkState$3 = async (client, input) => {
|
|
1447
1450
|
let reason;
|
|
1448
1451
|
try {
|
|
1449
|
-
let result = await client
|
|
1452
|
+
let result = await client.send(new GetServiceInstanceCommand(input));
|
|
1450
1453
|
reason = result;
|
|
1451
1454
|
try {
|
|
1452
1455
|
const returnComparator = () => {
|
|
1453
1456
|
return result.serviceInstance.deploymentStatus;
|
|
1454
1457
|
};
|
|
1455
1458
|
if (returnComparator() === "SUCCEEDED") {
|
|
1456
|
-
return { state:
|
|
1459
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1457
1460
|
}
|
|
1458
1461
|
}
|
|
1459
1462
|
catch (e) { }
|
|
@@ -1462,7 +1465,7 @@ const checkState$3 = async (client$1, input) => {
|
|
|
1462
1465
|
return result.serviceInstance.deploymentStatus;
|
|
1463
1466
|
};
|
|
1464
1467
|
if (returnComparator() === "FAILED") {
|
|
1465
|
-
return { state:
|
|
1468
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1466
1469
|
}
|
|
1467
1470
|
}
|
|
1468
1471
|
catch (e) { }
|
|
@@ -1470,29 +1473,29 @@ const checkState$3 = async (client$1, input) => {
|
|
|
1470
1473
|
catch (exception) {
|
|
1471
1474
|
reason = exception;
|
|
1472
1475
|
}
|
|
1473
|
-
return { state:
|
|
1476
|
+
return { state: WaiterState.RETRY, reason };
|
|
1474
1477
|
};
|
|
1475
1478
|
const waitForServiceInstanceDeployed = async (params, input) => {
|
|
1476
1479
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1477
|
-
return
|
|
1480
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
1478
1481
|
};
|
|
1479
1482
|
const waitUntilServiceInstanceDeployed = async (params, input) => {
|
|
1480
1483
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1481
|
-
const result = await
|
|
1482
|
-
return
|
|
1484
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
1485
|
+
return checkExceptions(result);
|
|
1483
1486
|
};
|
|
1484
1487
|
|
|
1485
|
-
const checkState$2 = async (client
|
|
1488
|
+
const checkState$2 = async (client, input) => {
|
|
1486
1489
|
let reason;
|
|
1487
1490
|
try {
|
|
1488
|
-
let result = await client
|
|
1491
|
+
let result = await client.send(new GetServiceCommand(input));
|
|
1489
1492
|
reason = result;
|
|
1490
1493
|
try {
|
|
1491
1494
|
const returnComparator = () => {
|
|
1492
1495
|
return result.service.pipeline.deploymentStatus;
|
|
1493
1496
|
};
|
|
1494
1497
|
if (returnComparator() === "SUCCEEDED") {
|
|
1495
|
-
return { state:
|
|
1498
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1496
1499
|
}
|
|
1497
1500
|
}
|
|
1498
1501
|
catch (e) { }
|
|
@@ -1501,7 +1504,7 @@ const checkState$2 = async (client$1, input) => {
|
|
|
1501
1504
|
return result.service.pipeline.deploymentStatus;
|
|
1502
1505
|
};
|
|
1503
1506
|
if (returnComparator() === "FAILED") {
|
|
1504
|
-
return { state:
|
|
1507
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1505
1508
|
}
|
|
1506
1509
|
}
|
|
1507
1510
|
catch (e) { }
|
|
@@ -1509,29 +1512,29 @@ const checkState$2 = async (client$1, input) => {
|
|
|
1509
1512
|
catch (exception) {
|
|
1510
1513
|
reason = exception;
|
|
1511
1514
|
}
|
|
1512
|
-
return { state:
|
|
1515
|
+
return { state: WaiterState.RETRY, reason };
|
|
1513
1516
|
};
|
|
1514
1517
|
const waitForServicePipelineDeployed = async (params, input) => {
|
|
1515
1518
|
const serviceDefaults = { minDelay: 10, maxDelay: 3600 };
|
|
1516
|
-
return
|
|
1519
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
1517
1520
|
};
|
|
1518
1521
|
const waitUntilServicePipelineDeployed = async (params, input) => {
|
|
1519
1522
|
const serviceDefaults = { minDelay: 10, maxDelay: 3600 };
|
|
1520
|
-
const result = await
|
|
1521
|
-
return
|
|
1523
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
1524
|
+
return checkExceptions(result);
|
|
1522
1525
|
};
|
|
1523
1526
|
|
|
1524
|
-
const checkState$1 = async (client
|
|
1527
|
+
const checkState$1 = async (client, input) => {
|
|
1525
1528
|
let reason;
|
|
1526
1529
|
try {
|
|
1527
|
-
let result = await client
|
|
1530
|
+
let result = await client.send(new GetServiceTemplateVersionCommand(input));
|
|
1528
1531
|
reason = result;
|
|
1529
1532
|
try {
|
|
1530
1533
|
const returnComparator = () => {
|
|
1531
1534
|
return result.serviceTemplateVersion.status;
|
|
1532
1535
|
};
|
|
1533
1536
|
if (returnComparator() === "DRAFT") {
|
|
1534
|
-
return { state:
|
|
1537
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1535
1538
|
}
|
|
1536
1539
|
}
|
|
1537
1540
|
catch (e) { }
|
|
@@ -1540,7 +1543,7 @@ const checkState$1 = async (client$1, input) => {
|
|
|
1540
1543
|
return result.serviceTemplateVersion.status;
|
|
1541
1544
|
};
|
|
1542
1545
|
if (returnComparator() === "PUBLISHED") {
|
|
1543
|
-
return { state:
|
|
1546
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1544
1547
|
}
|
|
1545
1548
|
}
|
|
1546
1549
|
catch (e) { }
|
|
@@ -1549,7 +1552,7 @@ const checkState$1 = async (client$1, input) => {
|
|
|
1549
1552
|
return result.serviceTemplateVersion.status;
|
|
1550
1553
|
};
|
|
1551
1554
|
if (returnComparator() === "REGISTRATION_FAILED") {
|
|
1552
|
-
return { state:
|
|
1555
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1553
1556
|
}
|
|
1554
1557
|
}
|
|
1555
1558
|
catch (e) { }
|
|
@@ -1557,29 +1560,29 @@ const checkState$1 = async (client$1, input) => {
|
|
|
1557
1560
|
catch (exception) {
|
|
1558
1561
|
reason = exception;
|
|
1559
1562
|
}
|
|
1560
|
-
return { state:
|
|
1563
|
+
return { state: WaiterState.RETRY, reason };
|
|
1561
1564
|
};
|
|
1562
1565
|
const waitForServiceTemplateVersionRegistered = async (params, input) => {
|
|
1563
1566
|
const serviceDefaults = { minDelay: 2, maxDelay: 300 };
|
|
1564
|
-
return
|
|
1567
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1565
1568
|
};
|
|
1566
1569
|
const waitUntilServiceTemplateVersionRegistered = async (params, input) => {
|
|
1567
1570
|
const serviceDefaults = { minDelay: 2, maxDelay: 300 };
|
|
1568
|
-
const result = await
|
|
1569
|
-
return
|
|
1571
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1572
|
+
return checkExceptions(result);
|
|
1570
1573
|
};
|
|
1571
1574
|
|
|
1572
|
-
const checkState = async (client
|
|
1575
|
+
const checkState = async (client, input) => {
|
|
1573
1576
|
let reason;
|
|
1574
1577
|
try {
|
|
1575
|
-
let result = await client
|
|
1578
|
+
let result = await client.send(new GetServiceCommand(input));
|
|
1576
1579
|
reason = result;
|
|
1577
1580
|
try {
|
|
1578
1581
|
const returnComparator = () => {
|
|
1579
1582
|
return result.service.status;
|
|
1580
1583
|
};
|
|
1581
1584
|
if (returnComparator() === "ACTIVE") {
|
|
1582
|
-
return { state:
|
|
1585
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1583
1586
|
}
|
|
1584
1587
|
}
|
|
1585
1588
|
catch (e) { }
|
|
@@ -1588,7 +1591,7 @@ const checkState = async (client$1, input) => {
|
|
|
1588
1591
|
return result.service.status;
|
|
1589
1592
|
};
|
|
1590
1593
|
if (returnComparator() === "UPDATE_FAILED_CLEANUP_COMPLETE") {
|
|
1591
|
-
return { state:
|
|
1594
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1592
1595
|
}
|
|
1593
1596
|
}
|
|
1594
1597
|
catch (e) { }
|
|
@@ -1597,7 +1600,7 @@ const checkState = async (client$1, input) => {
|
|
|
1597
1600
|
return result.service.status;
|
|
1598
1601
|
};
|
|
1599
1602
|
if (returnComparator() === "UPDATE_FAILED_CLEANUP_FAILED") {
|
|
1600
|
-
return { state:
|
|
1603
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1601
1604
|
}
|
|
1602
1605
|
}
|
|
1603
1606
|
catch (e) { }
|
|
@@ -1606,7 +1609,7 @@ const checkState = async (client$1, input) => {
|
|
|
1606
1609
|
return result.service.status;
|
|
1607
1610
|
};
|
|
1608
1611
|
if (returnComparator() === "UPDATE_FAILED") {
|
|
1609
|
-
return { state:
|
|
1612
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1610
1613
|
}
|
|
1611
1614
|
}
|
|
1612
1615
|
catch (e) { }
|
|
@@ -1615,7 +1618,7 @@ const checkState = async (client$1, input) => {
|
|
|
1615
1618
|
return result.service.status;
|
|
1616
1619
|
};
|
|
1617
1620
|
if (returnComparator() === "UPDATE_COMPLETE_CLEANUP_FAILED") {
|
|
1618
|
-
return { state:
|
|
1621
|
+
return { state: WaiterState.FAILURE, reason };
|
|
1619
1622
|
}
|
|
1620
1623
|
}
|
|
1621
1624
|
catch (e) { }
|
|
@@ -1623,16 +1626,16 @@ const checkState = async (client$1, input) => {
|
|
|
1623
1626
|
catch (exception) {
|
|
1624
1627
|
reason = exception;
|
|
1625
1628
|
}
|
|
1626
|
-
return { state:
|
|
1629
|
+
return { state: WaiterState.RETRY, reason };
|
|
1627
1630
|
};
|
|
1628
1631
|
const waitForServiceUpdated = async (params, input) => {
|
|
1629
1632
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1630
|
-
return
|
|
1633
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1631
1634
|
};
|
|
1632
1635
|
const waitUntilServiceUpdated = async (params, input) => {
|
|
1633
1636
|
const serviceDefaults = { minDelay: 5, maxDelay: 4999 };
|
|
1634
|
-
const result = await
|
|
1635
|
-
return
|
|
1637
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1638
|
+
return checkExceptions(result);
|
|
1636
1639
|
};
|
|
1637
1640
|
|
|
1638
1641
|
const commands = {
|
|
@@ -1761,7 +1764,7 @@ const waiters = {
|
|
|
1761
1764
|
};
|
|
1762
1765
|
class Proton extends ProtonClient {
|
|
1763
1766
|
}
|
|
1764
|
-
|
|
1767
|
+
createAggregatedClient(commands, Proton, { paginators, waiters });
|
|
1765
1768
|
|
|
1766
1769
|
const EnvironmentAccountConnectionStatus = {
|
|
1767
1770
|
CONNECTED: "CONNECTED",
|
|
@@ -1894,9 +1897,6 @@ const ServiceTemplateSupportedComponentSourceType = {
|
|
|
1894
1897
|
DIRECTLY_DEFINED: "DIRECTLY_DEFINED",
|
|
1895
1898
|
};
|
|
1896
1899
|
|
|
1897
|
-
exports.$Command = client.Command;
|
|
1898
|
-
exports.__Client = client.Client;
|
|
1899
|
-
exports.ProtonServiceException = ProtonServiceException.ProtonServiceException;
|
|
1900
1900
|
exports.AcceptEnvironmentAccountConnectionCommand = AcceptEnvironmentAccountConnectionCommand;
|
|
1901
1901
|
exports.BlockerStatus = BlockerStatus;
|
|
1902
1902
|
exports.BlockerType = BlockerType;
|
|
@@ -2049,23 +2049,3 @@ exports.waitUntilServiceInstanceDeployed = waitUntilServiceInstanceDeployed;
|
|
|
2049
2049
|
exports.waitUntilServicePipelineDeployed = waitUntilServicePipelineDeployed;
|
|
2050
2050
|
exports.waitUntilServiceTemplateVersionRegistered = waitUntilServiceTemplateVersionRegistered;
|
|
2051
2051
|
exports.waitUntilServiceUpdated = waitUntilServiceUpdated;
|
|
2052
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
2053
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
2054
|
-
Object.defineProperty(exports, '__proto__', {
|
|
2055
|
-
enumerable: true,
|
|
2056
|
-
value: schemas_0['__proto__']
|
|
2057
|
-
});
|
|
2058
|
-
|
|
2059
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
2060
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
2061
|
-
});
|
|
2062
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
2063
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
2064
|
-
Object.defineProperty(exports, '__proto__', {
|
|
2065
|
-
enumerable: true,
|
|
2066
|
-
value: errors['__proto__']
|
|
2067
|
-
});
|
|
2068
|
-
|
|
2069
|
-
Object.keys(errors).forEach(function (k) {
|
|
2070
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
2071
|
-
});
|