@aws-sdk/client-service-catalog-appregistry 3.986.0 → 3.988.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/index.js +43 -786
- package/dist-cjs/models/ServiceCatalogAppRegistryServiceException.js +12 -0
- package/dist-cjs/models/errors.js +84 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +599 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +46 -40
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ServiceCatalogAppRegistryServiceException = require('./models/ServiceCatalogAppRegistryServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,669 +113,6 @@ class ServiceCatalogAppRegistryClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ServiceCatalogAppRegistryServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ServiceCatalogAppRegistryServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ConflictException extends ServiceCatalogAppRegistryServiceException {
|
|
121
|
-
name = "ConflictException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "ConflictException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends ServiceCatalogAppRegistryServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InternalServerException",
|
|
138
|
-
$fault: "server",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ResourceNotFoundException extends ServiceCatalogAppRegistryServiceException {
|
|
145
|
-
name = "ResourceNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ResourceNotFoundException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ServiceQuotaExceededException extends ServiceCatalogAppRegistryServiceException {
|
|
157
|
-
name = "ServiceQuotaExceededException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ServiceQuotaExceededException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class ValidationException extends ServiceCatalogAppRegistryServiceException {
|
|
169
|
-
name = "ValidationException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "ValidationException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class ThrottlingException extends ServiceCatalogAppRegistryServiceException {
|
|
181
|
-
name = "ThrottlingException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
serviceCode;
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ThrottlingException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
191
|
-
this.serviceCode = opts.serviceCode;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
const _A = "Application";
|
|
196
|
-
const _AAG = "AssociateAttributeGroup";
|
|
197
|
-
const _AAGR = "AssociateAttributeGroupRequest";
|
|
198
|
-
const _AAGRs = "AssociateAttributeGroupResponse";
|
|
199
|
-
const _AG = "AttributeGroup";
|
|
200
|
-
const _AGD = "AttributeGroupDetails";
|
|
201
|
-
const _AGDL = "AttributeGroupDetailsList";
|
|
202
|
-
const _AGS = "AttributeGroupSummary";
|
|
203
|
-
const _AGSt = "AttributeGroupSummaries";
|
|
204
|
-
const _AR = "AssociateResource";
|
|
205
|
-
const _ARC = "AppRegistryConfiguration";
|
|
206
|
-
const _ARR = "AssociateResourceRequest";
|
|
207
|
-
const _ARRs = "AssociateResourceResponse";
|
|
208
|
-
const _AS = "ApplicationSummary";
|
|
209
|
-
const _ASp = "ApplicationSummaries";
|
|
210
|
-
const _ATR = "ApplicationTagResult";
|
|
211
|
-
const _CA = "CreateApplication";
|
|
212
|
-
const _CAG = "CreateAttributeGroup";
|
|
213
|
-
const _CAGR = "CreateAttributeGroupRequest";
|
|
214
|
-
const _CAGRr = "CreateAttributeGroupResponse";
|
|
215
|
-
const _CAR = "CreateApplicationRequest";
|
|
216
|
-
const _CARr = "CreateApplicationResponse";
|
|
217
|
-
const _CE = "ConflictException";
|
|
218
|
-
const _DA = "DeleteApplication";
|
|
219
|
-
const _DAG = "DeleteAttributeGroup";
|
|
220
|
-
const _DAGR = "DeleteAttributeGroupRequest";
|
|
221
|
-
const _DAGRe = "DeleteAttributeGroupResponse";
|
|
222
|
-
const _DAGRi = "DisassociateAttributeGroupRequest";
|
|
223
|
-
const _DAGRis = "DisassociateAttributeGroupResponse";
|
|
224
|
-
const _DAGi = "DisassociateAttributeGroup";
|
|
225
|
-
const _DAR = "DeleteApplicationRequest";
|
|
226
|
-
const _DARe = "DeleteApplicationResponse";
|
|
227
|
-
const _DR = "DisassociateResource";
|
|
228
|
-
const _DRR = "DisassociateResourceRequest";
|
|
229
|
-
const _DRRi = "DisassociateResourceResponse";
|
|
230
|
-
const _GA = "GetApplication";
|
|
231
|
-
const _GAG = "GetAttributeGroup";
|
|
232
|
-
const _GAGR = "GetAttributeGroupRequest";
|
|
233
|
-
const _GAGRe = "GetAttributeGroupResponse";
|
|
234
|
-
const _GAR = "GetApplicationRequest";
|
|
235
|
-
const _GARR = "GetAssociatedResourceRequest";
|
|
236
|
-
const _GARRe = "GetAssociatedResourceResponse";
|
|
237
|
-
const _GARe = "GetApplicationResponse";
|
|
238
|
-
const _GARet = "GetAssociatedResource";
|
|
239
|
-
const _GC = "GetConfiguration";
|
|
240
|
-
const _GCR = "GetConfigurationResponse";
|
|
241
|
-
const _I = "Integrations";
|
|
242
|
-
const _ISE = "InternalServerException";
|
|
243
|
-
const _LA = "ListApplications";
|
|
244
|
-
const _LAAG = "ListAssociatedAttributeGroups";
|
|
245
|
-
const _LAAGR = "ListAssociatedAttributeGroupsRequest";
|
|
246
|
-
const _LAAGRi = "ListAssociatedAttributeGroupsResponse";
|
|
247
|
-
const _LAG = "ListAttributeGroups";
|
|
248
|
-
const _LAGFA = "ListAttributeGroupsForApplication";
|
|
249
|
-
const _LAGFAR = "ListAttributeGroupsForApplicationRequest";
|
|
250
|
-
const _LAGFARi = "ListAttributeGroupsForApplicationResponse";
|
|
251
|
-
const _LAGR = "ListAttributeGroupsRequest";
|
|
252
|
-
const _LAGRi = "ListAttributeGroupsResponse";
|
|
253
|
-
const _LAR = "ListApplicationsRequest";
|
|
254
|
-
const _LARR = "ListAssociatedResourcesRequest";
|
|
255
|
-
const _LARRi = "ListAssociatedResourcesResponse";
|
|
256
|
-
const _LARi = "ListApplicationsResponse";
|
|
257
|
-
const _LARis = "ListAssociatedResources";
|
|
258
|
-
const _LTFR = "ListTagsForResource";
|
|
259
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
260
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
261
|
-
const _PC = "PutConfiguration";
|
|
262
|
-
const _PCR = "PutConfigurationRequest";
|
|
263
|
-
const _R = "Resource";
|
|
264
|
-
const _RD = "ResourceDetails";
|
|
265
|
-
const _RG = "ResourceGroup";
|
|
266
|
-
const _RI = "ResourceInfo";
|
|
267
|
-
const _RIe = "ResourceIntegrations";
|
|
268
|
-
const _RL = "ResourcesList";
|
|
269
|
-
const _RLI = "ResourcesListItem";
|
|
270
|
-
const _RNFE = "ResourceNotFoundException";
|
|
271
|
-
const _Re = "Resources";
|
|
272
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
273
|
-
const _SR = "SyncResource";
|
|
274
|
-
const _SRR = "SyncResourceRequest";
|
|
275
|
-
const _SRRy = "SyncResourceResponse";
|
|
276
|
-
const _TE = "ThrottlingException";
|
|
277
|
-
const _TQC = "TagQueryConfiguration";
|
|
278
|
-
const _TR = "TagResource";
|
|
279
|
-
const _TRR = "TagResourceRequest";
|
|
280
|
-
const _TRRa = "TagResourceResponse";
|
|
281
|
-
const _UA = "UpdateApplication";
|
|
282
|
-
const _UAG = "UpdateAttributeGroup";
|
|
283
|
-
const _UAGR = "UpdateAttributeGroupRequest";
|
|
284
|
-
const _UAGRp = "UpdateAttributeGroupResponse";
|
|
285
|
-
const _UAR = "UpdateApplicationRequest";
|
|
286
|
-
const _UARp = "UpdateApplicationResponse";
|
|
287
|
-
const _UR = "UntagResource";
|
|
288
|
-
const _URR = "UntagResourceRequest";
|
|
289
|
-
const _URRn = "UntagResourceResponse";
|
|
290
|
-
const _VE = "ValidationException";
|
|
291
|
-
const _a = "arn";
|
|
292
|
-
const _aA = "applicationArn";
|
|
293
|
-
const _aG = "attributeGroup";
|
|
294
|
-
const _aGA = "attributeGroupArn";
|
|
295
|
-
const _aGD = "attributeGroupsDetails";
|
|
296
|
-
const _aGt = "attributeGroups";
|
|
297
|
-
const _aRC = "associatedResourceCount";
|
|
298
|
-
const _aT = "applicationTag";
|
|
299
|
-
const _aTR = "applicationTagResult";
|
|
300
|
-
const _aTRG = "applicationTagResourceGroup";
|
|
301
|
-
const _aTS = "applicationTagStatus";
|
|
302
|
-
const _aTc = "actionTaken";
|
|
303
|
-
const _aTs = "associationTime";
|
|
304
|
-
const _ap = "application";
|
|
305
|
-
const _app = "applications";
|
|
306
|
-
const _at = "attributes";
|
|
307
|
-
const _c = "client";
|
|
308
|
-
const _cB = "createdBy";
|
|
309
|
-
const _cT = "creationTime";
|
|
310
|
-
const _cTl = "clientToken";
|
|
311
|
-
const _co = "configuration";
|
|
312
|
-
const _d = "description";
|
|
313
|
-
const _e = "error";
|
|
314
|
-
const _eM = "errorMessage";
|
|
315
|
-
const _h = "http";
|
|
316
|
-
const _hE = "httpError";
|
|
317
|
-
const _hQ = "httpQuery";
|
|
318
|
-
const _i = "id";
|
|
319
|
-
const _in = "integrations";
|
|
320
|
-
const _lUT = "lastUpdateTime";
|
|
321
|
-
const _m = "message";
|
|
322
|
-
const _mR = "maxResults";
|
|
323
|
-
const _n = "name";
|
|
324
|
-
const _nT = "nextToken";
|
|
325
|
-
const _o = "options";
|
|
326
|
-
const _r = "resources";
|
|
327
|
-
const _rA = "resourceArn";
|
|
328
|
-
const _rD = "resourceDetails";
|
|
329
|
-
const _rG = "resourceGroup";
|
|
330
|
-
const _rT = "resourceType";
|
|
331
|
-
const _rTS = "resourceTagStatus";
|
|
332
|
-
const _re = "resource";
|
|
333
|
-
const _s = "server";
|
|
334
|
-
const _sC = "serviceCode";
|
|
335
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.servicecatalogappregistry";
|
|
336
|
-
const _st = "state";
|
|
337
|
-
const _sta = "status";
|
|
338
|
-
const _t = "tags";
|
|
339
|
-
const _tK = "tagKey";
|
|
340
|
-
const _tKa = "tagKeys";
|
|
341
|
-
const _tQC = "tagQueryConfiguration";
|
|
342
|
-
const _tV = "tagValue";
|
|
343
|
-
const n0 = "com.amazonaws.servicecatalogappregistry";
|
|
344
|
-
var Application$ = [3, n0, _A,
|
|
345
|
-
0,
|
|
346
|
-
[_i, _a, _n, _d, _cT, _lUT, _t, _aT],
|
|
347
|
-
[0, 0, 0, 0, 5, 5, 128 | 0, 128 | 0]
|
|
348
|
-
];
|
|
349
|
-
var ApplicationSummary$ = [3, n0, _AS,
|
|
350
|
-
0,
|
|
351
|
-
[_i, _a, _n, _d, _cT, _lUT],
|
|
352
|
-
[0, 0, 0, 0, 5, 5]
|
|
353
|
-
];
|
|
354
|
-
var ApplicationTagResult$ = [3, n0, _ATR,
|
|
355
|
-
0,
|
|
356
|
-
[_aTS, _eM, _r, _nT],
|
|
357
|
-
[0, 0, () => ResourcesList, 0]
|
|
358
|
-
];
|
|
359
|
-
var AppRegistryConfiguration$ = [3, n0, _ARC,
|
|
360
|
-
0,
|
|
361
|
-
[_tQC],
|
|
362
|
-
[() => TagQueryConfiguration$]
|
|
363
|
-
];
|
|
364
|
-
var AssociateAttributeGroupRequest$ = [3, n0, _AAGR,
|
|
365
|
-
0,
|
|
366
|
-
[_ap, _aG],
|
|
367
|
-
[[0, 1], [0, 1]], 2
|
|
368
|
-
];
|
|
369
|
-
var AssociateAttributeGroupResponse$ = [3, n0, _AAGRs,
|
|
370
|
-
0,
|
|
371
|
-
[_aA, _aGA],
|
|
372
|
-
[0, 0]
|
|
373
|
-
];
|
|
374
|
-
var AssociateResourceRequest$ = [3, n0, _ARR,
|
|
375
|
-
0,
|
|
376
|
-
[_ap, _rT, _re, _o],
|
|
377
|
-
[[0, 1], [0, 1], [0, 1], 64 | 0], 3
|
|
378
|
-
];
|
|
379
|
-
var AssociateResourceResponse$ = [3, n0, _ARRs,
|
|
380
|
-
0,
|
|
381
|
-
[_aA, _rA, _o],
|
|
382
|
-
[0, 0, 64 | 0]
|
|
383
|
-
];
|
|
384
|
-
var AttributeGroup$ = [3, n0, _AG,
|
|
385
|
-
0,
|
|
386
|
-
[_i, _a, _n, _d, _cT, _lUT, _t],
|
|
387
|
-
[0, 0, 0, 0, 5, 5, 128 | 0]
|
|
388
|
-
];
|
|
389
|
-
var AttributeGroupDetails$ = [3, n0, _AGD,
|
|
390
|
-
0,
|
|
391
|
-
[_i, _a, _n, _cB],
|
|
392
|
-
[0, 0, 0, 0]
|
|
393
|
-
];
|
|
394
|
-
var AttributeGroupSummary$ = [3, n0, _AGS,
|
|
395
|
-
0,
|
|
396
|
-
[_i, _a, _n, _d, _cT, _lUT, _cB],
|
|
397
|
-
[0, 0, 0, 0, 5, 5, 0]
|
|
398
|
-
];
|
|
399
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
400
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
401
|
-
[_m],
|
|
402
|
-
[0]
|
|
403
|
-
];
|
|
404
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
405
|
-
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
406
|
-
0,
|
|
407
|
-
[_n, _d, _t, _cTl],
|
|
408
|
-
[0, 0, 128 | 0, [0, 4]], 1
|
|
409
|
-
];
|
|
410
|
-
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
411
|
-
0,
|
|
412
|
-
[_ap],
|
|
413
|
-
[() => Application$]
|
|
414
|
-
];
|
|
415
|
-
var CreateAttributeGroupRequest$ = [3, n0, _CAGR,
|
|
416
|
-
0,
|
|
417
|
-
[_n, _at, _d, _t, _cTl],
|
|
418
|
-
[0, 0, 0, 128 | 0, [0, 4]], 2
|
|
419
|
-
];
|
|
420
|
-
var CreateAttributeGroupResponse$ = [3, n0, _CAGRr,
|
|
421
|
-
0,
|
|
422
|
-
[_aG],
|
|
423
|
-
[() => AttributeGroup$]
|
|
424
|
-
];
|
|
425
|
-
var DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
426
|
-
0,
|
|
427
|
-
[_ap],
|
|
428
|
-
[[0, 1]], 1
|
|
429
|
-
];
|
|
430
|
-
var DeleteApplicationResponse$ = [3, n0, _DARe,
|
|
431
|
-
0,
|
|
432
|
-
[_ap],
|
|
433
|
-
[() => ApplicationSummary$]
|
|
434
|
-
];
|
|
435
|
-
var DeleteAttributeGroupRequest$ = [3, n0, _DAGR,
|
|
436
|
-
0,
|
|
437
|
-
[_aG],
|
|
438
|
-
[[0, 1]], 1
|
|
439
|
-
];
|
|
440
|
-
var DeleteAttributeGroupResponse$ = [3, n0, _DAGRe,
|
|
441
|
-
0,
|
|
442
|
-
[_aG],
|
|
443
|
-
[() => AttributeGroupSummary$]
|
|
444
|
-
];
|
|
445
|
-
var DisassociateAttributeGroupRequest$ = [3, n0, _DAGRi,
|
|
446
|
-
0,
|
|
447
|
-
[_ap, _aG],
|
|
448
|
-
[[0, 1], [0, 1]], 2
|
|
449
|
-
];
|
|
450
|
-
var DisassociateAttributeGroupResponse$ = [3, n0, _DAGRis,
|
|
451
|
-
0,
|
|
452
|
-
[_aA, _aGA],
|
|
453
|
-
[0, 0]
|
|
454
|
-
];
|
|
455
|
-
var DisassociateResourceRequest$ = [3, n0, _DRR,
|
|
456
|
-
0,
|
|
457
|
-
[_ap, _rT, _re],
|
|
458
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
459
|
-
];
|
|
460
|
-
var DisassociateResourceResponse$ = [3, n0, _DRRi,
|
|
461
|
-
0,
|
|
462
|
-
[_aA, _rA],
|
|
463
|
-
[0, 0]
|
|
464
|
-
];
|
|
465
|
-
var GetApplicationRequest$ = [3, n0, _GAR,
|
|
466
|
-
0,
|
|
467
|
-
[_ap],
|
|
468
|
-
[[0, 1]], 1
|
|
469
|
-
];
|
|
470
|
-
var GetApplicationResponse$ = [3, n0, _GARe,
|
|
471
|
-
0,
|
|
472
|
-
[_i, _a, _n, _d, _cT, _lUT, _aRC, _t, _in, _aT],
|
|
473
|
-
[0, 0, 0, 0, 5, 5, 1, 128 | 0, () => Integrations$, 128 | 0]
|
|
474
|
-
];
|
|
475
|
-
var GetAssociatedResourceRequest$ = [3, n0, _GARR,
|
|
476
|
-
0,
|
|
477
|
-
[_ap, _rT, _re, _nT, _rTS, _mR],
|
|
478
|
-
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _nT }], [64 | 0, { [_hQ]: _rTS }], [1, { [_hQ]: _mR }]], 3
|
|
479
|
-
];
|
|
480
|
-
var GetAssociatedResourceResponse$ = [3, n0, _GARRe,
|
|
481
|
-
0,
|
|
482
|
-
[_re, _o, _aTR],
|
|
483
|
-
[() => Resource$, 64 | 0, () => ApplicationTagResult$]
|
|
484
|
-
];
|
|
485
|
-
var GetAttributeGroupRequest$ = [3, n0, _GAGR,
|
|
486
|
-
0,
|
|
487
|
-
[_aG],
|
|
488
|
-
[[0, 1]], 1
|
|
489
|
-
];
|
|
490
|
-
var GetAttributeGroupResponse$ = [3, n0, _GAGRe,
|
|
491
|
-
0,
|
|
492
|
-
[_i, _a, _n, _d, _at, _cT, _lUT, _t, _cB],
|
|
493
|
-
[0, 0, 0, 0, 0, 5, 5, 128 | 0, 0]
|
|
494
|
-
];
|
|
495
|
-
var GetConfigurationResponse$ = [3, n0, _GCR,
|
|
496
|
-
0,
|
|
497
|
-
[_co],
|
|
498
|
-
[() => AppRegistryConfiguration$]
|
|
499
|
-
];
|
|
500
|
-
var Integrations$ = [3, n0, _I,
|
|
501
|
-
0,
|
|
502
|
-
[_rG, _aTRG],
|
|
503
|
-
[() => ResourceGroup$, () => ResourceGroup$]
|
|
504
|
-
];
|
|
505
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
506
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
507
|
-
[_m],
|
|
508
|
-
[0]
|
|
509
|
-
];
|
|
510
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
511
|
-
var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
512
|
-
0,
|
|
513
|
-
[_nT, _mR],
|
|
514
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
515
|
-
];
|
|
516
|
-
var ListApplicationsResponse$ = [3, n0, _LARi,
|
|
517
|
-
0,
|
|
518
|
-
[_app, _nT],
|
|
519
|
-
[() => ApplicationSummaries, 0]
|
|
520
|
-
];
|
|
521
|
-
var ListAssociatedAttributeGroupsRequest$ = [3, n0, _LAAGR,
|
|
522
|
-
0,
|
|
523
|
-
[_ap, _nT, _mR],
|
|
524
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
525
|
-
];
|
|
526
|
-
var ListAssociatedAttributeGroupsResponse$ = [3, n0, _LAAGRi,
|
|
527
|
-
0,
|
|
528
|
-
[_aGt, _nT],
|
|
529
|
-
[64 | 0, 0]
|
|
530
|
-
];
|
|
531
|
-
var ListAssociatedResourcesRequest$ = [3, n0, _LARR,
|
|
532
|
-
0,
|
|
533
|
-
[_ap, _nT, _mR],
|
|
534
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
535
|
-
];
|
|
536
|
-
var ListAssociatedResourcesResponse$ = [3, n0, _LARRi,
|
|
537
|
-
0,
|
|
538
|
-
[_r, _nT],
|
|
539
|
-
[() => Resources, 0]
|
|
540
|
-
];
|
|
541
|
-
var ListAttributeGroupsForApplicationRequest$ = [3, n0, _LAGFAR,
|
|
542
|
-
0,
|
|
543
|
-
[_ap, _nT, _mR],
|
|
544
|
-
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
545
|
-
];
|
|
546
|
-
var ListAttributeGroupsForApplicationResponse$ = [3, n0, _LAGFARi,
|
|
547
|
-
0,
|
|
548
|
-
[_aGD, _nT],
|
|
549
|
-
[() => AttributeGroupDetailsList, 0]
|
|
550
|
-
];
|
|
551
|
-
var ListAttributeGroupsRequest$ = [3, n0, _LAGR,
|
|
552
|
-
0,
|
|
553
|
-
[_nT, _mR],
|
|
554
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
555
|
-
];
|
|
556
|
-
var ListAttributeGroupsResponse$ = [3, n0, _LAGRi,
|
|
557
|
-
0,
|
|
558
|
-
[_aGt, _nT],
|
|
559
|
-
[() => AttributeGroupSummaries, 0]
|
|
560
|
-
];
|
|
561
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
562
|
-
0,
|
|
563
|
-
[_rA],
|
|
564
|
-
[[0, 1]], 1
|
|
565
|
-
];
|
|
566
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
567
|
-
0,
|
|
568
|
-
[_t],
|
|
569
|
-
[128 | 0]
|
|
570
|
-
];
|
|
571
|
-
var PutConfigurationRequest$ = [3, n0, _PCR,
|
|
572
|
-
0,
|
|
573
|
-
[_co],
|
|
574
|
-
[() => AppRegistryConfiguration$], 1
|
|
575
|
-
];
|
|
576
|
-
var Resource$ = [3, n0, _R,
|
|
577
|
-
0,
|
|
578
|
-
[_n, _a, _aTs, _in],
|
|
579
|
-
[0, 0, 5, () => ResourceIntegrations$]
|
|
580
|
-
];
|
|
581
|
-
var ResourceDetails$ = [3, n0, _RD,
|
|
582
|
-
0,
|
|
583
|
-
[_tV],
|
|
584
|
-
[0]
|
|
585
|
-
];
|
|
586
|
-
var ResourceGroup$ = [3, n0, _RG,
|
|
587
|
-
0,
|
|
588
|
-
[_st, _a, _eM],
|
|
589
|
-
[0, 0, 0]
|
|
590
|
-
];
|
|
591
|
-
var ResourceInfo$ = [3, n0, _RI,
|
|
592
|
-
0,
|
|
593
|
-
[_n, _a, _rT, _rD, _o],
|
|
594
|
-
[0, 0, 0, () => ResourceDetails$, 64 | 0]
|
|
595
|
-
];
|
|
596
|
-
var ResourceIntegrations$ = [3, n0, _RIe,
|
|
597
|
-
0,
|
|
598
|
-
[_rG],
|
|
599
|
-
[() => ResourceGroup$]
|
|
600
|
-
];
|
|
601
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
602
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
603
|
-
[_m],
|
|
604
|
-
[0]
|
|
605
|
-
];
|
|
606
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
607
|
-
var ResourcesListItem$ = [3, n0, _RLI,
|
|
608
|
-
0,
|
|
609
|
-
[_rA, _eM, _sta, _rT],
|
|
610
|
-
[0, 0, 0, 0]
|
|
611
|
-
];
|
|
612
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
613
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
614
|
-
[_m],
|
|
615
|
-
[0]
|
|
616
|
-
];
|
|
617
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
618
|
-
var SyncResourceRequest$ = [3, n0, _SRR,
|
|
619
|
-
0,
|
|
620
|
-
[_rT, _re],
|
|
621
|
-
[[0, 1], [0, 1]], 2
|
|
622
|
-
];
|
|
623
|
-
var SyncResourceResponse$ = [3, n0, _SRRy,
|
|
624
|
-
0,
|
|
625
|
-
[_aA, _rA, _aTc],
|
|
626
|
-
[0, 0, 0]
|
|
627
|
-
];
|
|
628
|
-
var TagQueryConfiguration$ = [3, n0, _TQC,
|
|
629
|
-
0,
|
|
630
|
-
[_tK],
|
|
631
|
-
[0]
|
|
632
|
-
];
|
|
633
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
634
|
-
0,
|
|
635
|
-
[_rA, _t],
|
|
636
|
-
[[0, 1], 128 | 0], 2
|
|
637
|
-
];
|
|
638
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
639
|
-
0,
|
|
640
|
-
[],
|
|
641
|
-
[]
|
|
642
|
-
];
|
|
643
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
644
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
645
|
-
[_m, _sC],
|
|
646
|
-
[0, 0], 1
|
|
647
|
-
];
|
|
648
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
649
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
650
|
-
0,
|
|
651
|
-
[_rA, _tKa],
|
|
652
|
-
[[0, 1], [64 | 0, { [_hQ]: _tKa }]], 2
|
|
653
|
-
];
|
|
654
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
655
|
-
0,
|
|
656
|
-
[],
|
|
657
|
-
[]
|
|
658
|
-
];
|
|
659
|
-
var UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
660
|
-
0,
|
|
661
|
-
[_ap, _n, _d],
|
|
662
|
-
[[0, 1], 0, 0], 1
|
|
663
|
-
];
|
|
664
|
-
var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
665
|
-
0,
|
|
666
|
-
[_ap],
|
|
667
|
-
[() => Application$]
|
|
668
|
-
];
|
|
669
|
-
var UpdateAttributeGroupRequest$ = [3, n0, _UAGR,
|
|
670
|
-
0,
|
|
671
|
-
[_aG, _n, _d, _at],
|
|
672
|
-
[[0, 1], 0, 0, 0], 1
|
|
673
|
-
];
|
|
674
|
-
var UpdateAttributeGroupResponse$ = [3, n0, _UAGRp,
|
|
675
|
-
0,
|
|
676
|
-
[_aG],
|
|
677
|
-
[() => AttributeGroup$]
|
|
678
|
-
];
|
|
679
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
680
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
681
|
-
[_m],
|
|
682
|
-
[0]
|
|
683
|
-
];
|
|
684
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
685
|
-
var __Unit = "unit";
|
|
686
|
-
var ServiceCatalogAppRegistryServiceException$ = [-3, _sm, "ServiceCatalogAppRegistryServiceException", 0, [], []];
|
|
687
|
-
schema.TypeRegistry.for(_sm).registerError(ServiceCatalogAppRegistryServiceException$, ServiceCatalogAppRegistryServiceException);
|
|
688
|
-
var ApplicationSummaries = [1, n0, _ASp,
|
|
689
|
-
0, () => ApplicationSummary$
|
|
690
|
-
];
|
|
691
|
-
var AttributeGroupDetailsList = [1, n0, _AGDL,
|
|
692
|
-
0, () => AttributeGroupDetails$
|
|
693
|
-
];
|
|
694
|
-
var AttributeGroupSummaries = [1, n0, _AGSt,
|
|
695
|
-
0, () => AttributeGroupSummary$
|
|
696
|
-
];
|
|
697
|
-
var Resources = [1, n0, _Re,
|
|
698
|
-
0, () => ResourceInfo$
|
|
699
|
-
];
|
|
700
|
-
var ResourcesList = [1, n0, _RL,
|
|
701
|
-
0, () => ResourcesListItem$
|
|
702
|
-
];
|
|
703
|
-
var AssociateAttributeGroup$ = [9, n0, _AAG,
|
|
704
|
-
{ [_h]: ["PUT", "/applications/{application}/attribute-groups/{attributeGroup}", 200] }, () => AssociateAttributeGroupRequest$, () => AssociateAttributeGroupResponse$
|
|
705
|
-
];
|
|
706
|
-
var AssociateResource$ = [9, n0, _AR,
|
|
707
|
-
{ [_h]: ["PUT", "/applications/{application}/resources/{resourceType}/{resource}", 200] }, () => AssociateResourceRequest$, () => AssociateResourceResponse$
|
|
708
|
-
];
|
|
709
|
-
var CreateApplication$ = [9, n0, _CA,
|
|
710
|
-
{ [_h]: ["POST", "/applications", 201] }, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
711
|
-
];
|
|
712
|
-
var CreateAttributeGroup$ = [9, n0, _CAG,
|
|
713
|
-
{ [_h]: ["POST", "/attribute-groups", 201] }, () => CreateAttributeGroupRequest$, () => CreateAttributeGroupResponse$
|
|
714
|
-
];
|
|
715
|
-
var DeleteApplication$ = [9, n0, _DA,
|
|
716
|
-
{ [_h]: ["DELETE", "/applications/{application}", 200] }, () => DeleteApplicationRequest$, () => DeleteApplicationResponse$
|
|
717
|
-
];
|
|
718
|
-
var DeleteAttributeGroup$ = [9, n0, _DAG,
|
|
719
|
-
{ [_h]: ["DELETE", "/attribute-groups/{attributeGroup}", 200] }, () => DeleteAttributeGroupRequest$, () => DeleteAttributeGroupResponse$
|
|
720
|
-
];
|
|
721
|
-
var DisassociateAttributeGroup$ = [9, n0, _DAGi,
|
|
722
|
-
{ [_h]: ["DELETE", "/applications/{application}/attribute-groups/{attributeGroup}", 200] }, () => DisassociateAttributeGroupRequest$, () => DisassociateAttributeGroupResponse$
|
|
723
|
-
];
|
|
724
|
-
var DisassociateResource$ = [9, n0, _DR,
|
|
725
|
-
{ [_h]: ["DELETE", "/applications/{application}/resources/{resourceType}/{resource}", 200] }, () => DisassociateResourceRequest$, () => DisassociateResourceResponse$
|
|
726
|
-
];
|
|
727
|
-
var GetApplication$ = [9, n0, _GA,
|
|
728
|
-
{ [_h]: ["GET", "/applications/{application}", 200] }, () => GetApplicationRequest$, () => GetApplicationResponse$
|
|
729
|
-
];
|
|
730
|
-
var GetAssociatedResource$ = [9, n0, _GARet,
|
|
731
|
-
{ [_h]: ["GET", "/applications/{application}/resources/{resourceType}/{resource}", 200] }, () => GetAssociatedResourceRequest$, () => GetAssociatedResourceResponse$
|
|
732
|
-
];
|
|
733
|
-
var GetAttributeGroup$ = [9, n0, _GAG,
|
|
734
|
-
{ [_h]: ["GET", "/attribute-groups/{attributeGroup}", 200] }, () => GetAttributeGroupRequest$, () => GetAttributeGroupResponse$
|
|
735
|
-
];
|
|
736
|
-
var GetConfiguration$ = [9, n0, _GC,
|
|
737
|
-
{ [_h]: ["GET", "/configuration", 200] }, () => __Unit, () => GetConfigurationResponse$
|
|
738
|
-
];
|
|
739
|
-
var ListApplications$ = [9, n0, _LA,
|
|
740
|
-
{ [_h]: ["GET", "/applications", 200] }, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
741
|
-
];
|
|
742
|
-
var ListAssociatedAttributeGroups$ = [9, n0, _LAAG,
|
|
743
|
-
{ [_h]: ["GET", "/applications/{application}/attribute-groups", 200] }, () => ListAssociatedAttributeGroupsRequest$, () => ListAssociatedAttributeGroupsResponse$
|
|
744
|
-
];
|
|
745
|
-
var ListAssociatedResources$ = [9, n0, _LARis,
|
|
746
|
-
{ [_h]: ["GET", "/applications/{application}/resources", 200] }, () => ListAssociatedResourcesRequest$, () => ListAssociatedResourcesResponse$
|
|
747
|
-
];
|
|
748
|
-
var ListAttributeGroups$ = [9, n0, _LAG,
|
|
749
|
-
{ [_h]: ["GET", "/attribute-groups", 200] }, () => ListAttributeGroupsRequest$, () => ListAttributeGroupsResponse$
|
|
750
|
-
];
|
|
751
|
-
var ListAttributeGroupsForApplication$ = [9, n0, _LAGFA,
|
|
752
|
-
{ [_h]: ["GET", "/applications/{application}/attribute-group-details", 200] }, () => ListAttributeGroupsForApplicationRequest$, () => ListAttributeGroupsForApplicationResponse$
|
|
753
|
-
];
|
|
754
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
755
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
756
|
-
];
|
|
757
|
-
var PutConfiguration$ = [9, n0, _PC,
|
|
758
|
-
{ [_h]: ["PUT", "/configuration", 200] }, () => PutConfigurationRequest$, () => __Unit
|
|
759
|
-
];
|
|
760
|
-
var SyncResource$ = [9, n0, _SR,
|
|
761
|
-
{ [_h]: ["POST", "/sync/{resourceType}/{resource}", 200] }, () => SyncResourceRequest$, () => SyncResourceResponse$
|
|
762
|
-
];
|
|
763
|
-
var TagResource$ = [9, n0, _TR,
|
|
764
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
765
|
-
];
|
|
766
|
-
var UntagResource$ = [9, n0, _UR,
|
|
767
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
768
|
-
];
|
|
769
|
-
var UpdateApplication$ = [9, n0, _UA,
|
|
770
|
-
{ [_h]: ["PATCH", "/applications/{application}", 200] }, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
771
|
-
];
|
|
772
|
-
var UpdateAttributeGroup$ = [9, n0, _UAG,
|
|
773
|
-
{ [_h]: ["PATCH", "/attribute-groups/{attributeGroup}", 200] }, () => UpdateAttributeGroupRequest$, () => UpdateAttributeGroupResponse$
|
|
774
|
-
];
|
|
775
|
-
|
|
776
116
|
class AssociateAttributeGroupCommand extends smithyClient.Command
|
|
777
117
|
.classBuilder()
|
|
778
118
|
.ep(commonParams)
|
|
@@ -781,7 +121,7 @@ class AssociateAttributeGroupCommand extends smithyClient.Command
|
|
|
781
121
|
})
|
|
782
122
|
.s("AWS242AppRegistry", "AssociateAttributeGroup", {})
|
|
783
123
|
.n("ServiceCatalogAppRegistryClient", "AssociateAttributeGroupCommand")
|
|
784
|
-
.sc(AssociateAttributeGroup$)
|
|
124
|
+
.sc(schemas_0.AssociateAttributeGroup$)
|
|
785
125
|
.build() {
|
|
786
126
|
}
|
|
787
127
|
|
|
@@ -793,7 +133,7 @@ class AssociateResourceCommand extends smithyClient.Command
|
|
|
793
133
|
})
|
|
794
134
|
.s("AWS242AppRegistry", "AssociateResource", {})
|
|
795
135
|
.n("ServiceCatalogAppRegistryClient", "AssociateResourceCommand")
|
|
796
|
-
.sc(AssociateResource$)
|
|
136
|
+
.sc(schemas_0.AssociateResource$)
|
|
797
137
|
.build() {
|
|
798
138
|
}
|
|
799
139
|
|
|
@@ -805,7 +145,7 @@ class CreateApplicationCommand extends smithyClient.Command
|
|
|
805
145
|
})
|
|
806
146
|
.s("AWS242AppRegistry", "CreateApplication", {})
|
|
807
147
|
.n("ServiceCatalogAppRegistryClient", "CreateApplicationCommand")
|
|
808
|
-
.sc(CreateApplication$)
|
|
148
|
+
.sc(schemas_0.CreateApplication$)
|
|
809
149
|
.build() {
|
|
810
150
|
}
|
|
811
151
|
|
|
@@ -817,7 +157,7 @@ class CreateAttributeGroupCommand extends smithyClient.Command
|
|
|
817
157
|
})
|
|
818
158
|
.s("AWS242AppRegistry", "CreateAttributeGroup", {})
|
|
819
159
|
.n("ServiceCatalogAppRegistryClient", "CreateAttributeGroupCommand")
|
|
820
|
-
.sc(CreateAttributeGroup$)
|
|
160
|
+
.sc(schemas_0.CreateAttributeGroup$)
|
|
821
161
|
.build() {
|
|
822
162
|
}
|
|
823
163
|
|
|
@@ -829,7 +169,7 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
829
169
|
})
|
|
830
170
|
.s("AWS242AppRegistry", "DeleteApplication", {})
|
|
831
171
|
.n("ServiceCatalogAppRegistryClient", "DeleteApplicationCommand")
|
|
832
|
-
.sc(DeleteApplication$)
|
|
172
|
+
.sc(schemas_0.DeleteApplication$)
|
|
833
173
|
.build() {
|
|
834
174
|
}
|
|
835
175
|
|
|
@@ -841,7 +181,7 @@ class DeleteAttributeGroupCommand extends smithyClient.Command
|
|
|
841
181
|
})
|
|
842
182
|
.s("AWS242AppRegistry", "DeleteAttributeGroup", {})
|
|
843
183
|
.n("ServiceCatalogAppRegistryClient", "DeleteAttributeGroupCommand")
|
|
844
|
-
.sc(DeleteAttributeGroup$)
|
|
184
|
+
.sc(schemas_0.DeleteAttributeGroup$)
|
|
845
185
|
.build() {
|
|
846
186
|
}
|
|
847
187
|
|
|
@@ -853,7 +193,7 @@ class DisassociateAttributeGroupCommand extends smithyClient.Command
|
|
|
853
193
|
})
|
|
854
194
|
.s("AWS242AppRegistry", "DisassociateAttributeGroup", {})
|
|
855
195
|
.n("ServiceCatalogAppRegistryClient", "DisassociateAttributeGroupCommand")
|
|
856
|
-
.sc(DisassociateAttributeGroup$)
|
|
196
|
+
.sc(schemas_0.DisassociateAttributeGroup$)
|
|
857
197
|
.build() {
|
|
858
198
|
}
|
|
859
199
|
|
|
@@ -865,7 +205,7 @@ class DisassociateResourceCommand extends smithyClient.Command
|
|
|
865
205
|
})
|
|
866
206
|
.s("AWS242AppRegistry", "DisassociateResource", {})
|
|
867
207
|
.n("ServiceCatalogAppRegistryClient", "DisassociateResourceCommand")
|
|
868
|
-
.sc(DisassociateResource$)
|
|
208
|
+
.sc(schemas_0.DisassociateResource$)
|
|
869
209
|
.build() {
|
|
870
210
|
}
|
|
871
211
|
|
|
@@ -877,7 +217,7 @@ class GetApplicationCommand extends smithyClient.Command
|
|
|
877
217
|
})
|
|
878
218
|
.s("AWS242AppRegistry", "GetApplication", {})
|
|
879
219
|
.n("ServiceCatalogAppRegistryClient", "GetApplicationCommand")
|
|
880
|
-
.sc(GetApplication$)
|
|
220
|
+
.sc(schemas_0.GetApplication$)
|
|
881
221
|
.build() {
|
|
882
222
|
}
|
|
883
223
|
|
|
@@ -889,7 +229,7 @@ class GetAssociatedResourceCommand extends smithyClient.Command
|
|
|
889
229
|
})
|
|
890
230
|
.s("AWS242AppRegistry", "GetAssociatedResource", {})
|
|
891
231
|
.n("ServiceCatalogAppRegistryClient", "GetAssociatedResourceCommand")
|
|
892
|
-
.sc(GetAssociatedResource$)
|
|
232
|
+
.sc(schemas_0.GetAssociatedResource$)
|
|
893
233
|
.build() {
|
|
894
234
|
}
|
|
895
235
|
|
|
@@ -901,7 +241,7 @@ class GetAttributeGroupCommand extends smithyClient.Command
|
|
|
901
241
|
})
|
|
902
242
|
.s("AWS242AppRegistry", "GetAttributeGroup", {})
|
|
903
243
|
.n("ServiceCatalogAppRegistryClient", "GetAttributeGroupCommand")
|
|
904
|
-
.sc(GetAttributeGroup$)
|
|
244
|
+
.sc(schemas_0.GetAttributeGroup$)
|
|
905
245
|
.build() {
|
|
906
246
|
}
|
|
907
247
|
|
|
@@ -913,7 +253,7 @@ class GetConfigurationCommand extends smithyClient.Command
|
|
|
913
253
|
})
|
|
914
254
|
.s("AWS242AppRegistry", "GetConfiguration", {})
|
|
915
255
|
.n("ServiceCatalogAppRegistryClient", "GetConfigurationCommand")
|
|
916
|
-
.sc(GetConfiguration$)
|
|
256
|
+
.sc(schemas_0.GetConfiguration$)
|
|
917
257
|
.build() {
|
|
918
258
|
}
|
|
919
259
|
|
|
@@ -925,7 +265,7 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
925
265
|
})
|
|
926
266
|
.s("AWS242AppRegistry", "ListApplications", {})
|
|
927
267
|
.n("ServiceCatalogAppRegistryClient", "ListApplicationsCommand")
|
|
928
|
-
.sc(ListApplications$)
|
|
268
|
+
.sc(schemas_0.ListApplications$)
|
|
929
269
|
.build() {
|
|
930
270
|
}
|
|
931
271
|
|
|
@@ -937,7 +277,7 @@ class ListAssociatedAttributeGroupsCommand extends smithyClient.Command
|
|
|
937
277
|
})
|
|
938
278
|
.s("AWS242AppRegistry", "ListAssociatedAttributeGroups", {})
|
|
939
279
|
.n("ServiceCatalogAppRegistryClient", "ListAssociatedAttributeGroupsCommand")
|
|
940
|
-
.sc(ListAssociatedAttributeGroups$)
|
|
280
|
+
.sc(schemas_0.ListAssociatedAttributeGroups$)
|
|
941
281
|
.build() {
|
|
942
282
|
}
|
|
943
283
|
|
|
@@ -949,7 +289,7 @@ class ListAssociatedResourcesCommand extends smithyClient.Command
|
|
|
949
289
|
})
|
|
950
290
|
.s("AWS242AppRegistry", "ListAssociatedResources", {})
|
|
951
291
|
.n("ServiceCatalogAppRegistryClient", "ListAssociatedResourcesCommand")
|
|
952
|
-
.sc(ListAssociatedResources$)
|
|
292
|
+
.sc(schemas_0.ListAssociatedResources$)
|
|
953
293
|
.build() {
|
|
954
294
|
}
|
|
955
295
|
|
|
@@ -961,7 +301,7 @@ class ListAttributeGroupsCommand extends smithyClient.Command
|
|
|
961
301
|
})
|
|
962
302
|
.s("AWS242AppRegistry", "ListAttributeGroups", {})
|
|
963
303
|
.n("ServiceCatalogAppRegistryClient", "ListAttributeGroupsCommand")
|
|
964
|
-
.sc(ListAttributeGroups$)
|
|
304
|
+
.sc(schemas_0.ListAttributeGroups$)
|
|
965
305
|
.build() {
|
|
966
306
|
}
|
|
967
307
|
|
|
@@ -973,7 +313,7 @@ class ListAttributeGroupsForApplicationCommand extends smithyClient.Command
|
|
|
973
313
|
})
|
|
974
314
|
.s("AWS242AppRegistry", "ListAttributeGroupsForApplication", {})
|
|
975
315
|
.n("ServiceCatalogAppRegistryClient", "ListAttributeGroupsForApplicationCommand")
|
|
976
|
-
.sc(ListAttributeGroupsForApplication$)
|
|
316
|
+
.sc(schemas_0.ListAttributeGroupsForApplication$)
|
|
977
317
|
.build() {
|
|
978
318
|
}
|
|
979
319
|
|
|
@@ -985,7 +325,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
985
325
|
})
|
|
986
326
|
.s("AWS242AppRegistry", "ListTagsForResource", {})
|
|
987
327
|
.n("ServiceCatalogAppRegistryClient", "ListTagsForResourceCommand")
|
|
988
|
-
.sc(ListTagsForResource$)
|
|
328
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
989
329
|
.build() {
|
|
990
330
|
}
|
|
991
331
|
|
|
@@ -997,7 +337,7 @@ class PutConfigurationCommand extends smithyClient.Command
|
|
|
997
337
|
})
|
|
998
338
|
.s("AWS242AppRegistry", "PutConfiguration", {})
|
|
999
339
|
.n("ServiceCatalogAppRegistryClient", "PutConfigurationCommand")
|
|
1000
|
-
.sc(PutConfiguration$)
|
|
340
|
+
.sc(schemas_0.PutConfiguration$)
|
|
1001
341
|
.build() {
|
|
1002
342
|
}
|
|
1003
343
|
|
|
@@ -1009,7 +349,7 @@ class SyncResourceCommand extends smithyClient.Command
|
|
|
1009
349
|
})
|
|
1010
350
|
.s("AWS242AppRegistry", "SyncResource", {})
|
|
1011
351
|
.n("ServiceCatalogAppRegistryClient", "SyncResourceCommand")
|
|
1012
|
-
.sc(SyncResource$)
|
|
352
|
+
.sc(schemas_0.SyncResource$)
|
|
1013
353
|
.build() {
|
|
1014
354
|
}
|
|
1015
355
|
|
|
@@ -1021,7 +361,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1021
361
|
})
|
|
1022
362
|
.s("AWS242AppRegistry", "TagResource", {})
|
|
1023
363
|
.n("ServiceCatalogAppRegistryClient", "TagResourceCommand")
|
|
1024
|
-
.sc(TagResource$)
|
|
364
|
+
.sc(schemas_0.TagResource$)
|
|
1025
365
|
.build() {
|
|
1026
366
|
}
|
|
1027
367
|
|
|
@@ -1033,7 +373,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1033
373
|
})
|
|
1034
374
|
.s("AWS242AppRegistry", "UntagResource", {})
|
|
1035
375
|
.n("ServiceCatalogAppRegistryClient", "UntagResourceCommand")
|
|
1036
|
-
.sc(UntagResource$)
|
|
376
|
+
.sc(schemas_0.UntagResource$)
|
|
1037
377
|
.build() {
|
|
1038
378
|
}
|
|
1039
379
|
|
|
@@ -1045,7 +385,7 @@ class UpdateApplicationCommand extends smithyClient.Command
|
|
|
1045
385
|
})
|
|
1046
386
|
.s("AWS242AppRegistry", "UpdateApplication", {})
|
|
1047
387
|
.n("ServiceCatalogAppRegistryClient", "UpdateApplicationCommand")
|
|
1048
|
-
.sc(UpdateApplication$)
|
|
388
|
+
.sc(schemas_0.UpdateApplication$)
|
|
1049
389
|
.build() {
|
|
1050
390
|
}
|
|
1051
391
|
|
|
@@ -1057,7 +397,7 @@ class UpdateAttributeGroupCommand extends smithyClient.Command
|
|
|
1057
397
|
})
|
|
1058
398
|
.s("AWS242AppRegistry", "UpdateAttributeGroup", {})
|
|
1059
399
|
.n("ServiceCatalogAppRegistryClient", "UpdateAttributeGroupCommand")
|
|
1060
|
-
.sc(UpdateAttributeGroup$)
|
|
400
|
+
.sc(schemas_0.UpdateAttributeGroup$)
|
|
1061
401
|
.build() {
|
|
1062
402
|
}
|
|
1063
403
|
|
|
@@ -1148,139 +488,56 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1148
488
|
enumerable: true,
|
|
1149
489
|
get: function () { return smithyClient.Client; }
|
|
1150
490
|
});
|
|
1151
|
-
exports
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
491
|
+
Object.defineProperty(exports, "ServiceCatalogAppRegistryServiceException", {
|
|
492
|
+
enumerable: true,
|
|
493
|
+
get: function () { return ServiceCatalogAppRegistryServiceException.ServiceCatalogAppRegistryServiceException; }
|
|
494
|
+
});
|
|
1155
495
|
exports.ApplicationTagStatus = ApplicationTagStatus;
|
|
1156
|
-
exports.AssociateAttributeGroup$ = AssociateAttributeGroup$;
|
|
1157
496
|
exports.AssociateAttributeGroupCommand = AssociateAttributeGroupCommand;
|
|
1158
|
-
exports.AssociateAttributeGroupRequest$ = AssociateAttributeGroupRequest$;
|
|
1159
|
-
exports.AssociateAttributeGroupResponse$ = AssociateAttributeGroupResponse$;
|
|
1160
|
-
exports.AssociateResource$ = AssociateResource$;
|
|
1161
497
|
exports.AssociateResourceCommand = AssociateResourceCommand;
|
|
1162
|
-
exports.AssociateResourceRequest$ = AssociateResourceRequest$;
|
|
1163
|
-
exports.AssociateResourceResponse$ = AssociateResourceResponse$;
|
|
1164
498
|
exports.AssociationOption = AssociationOption;
|
|
1165
|
-
exports.AttributeGroup$ = AttributeGroup$;
|
|
1166
|
-
exports.AttributeGroupDetails$ = AttributeGroupDetails$;
|
|
1167
|
-
exports.AttributeGroupSummary$ = AttributeGroupSummary$;
|
|
1168
|
-
exports.ConflictException = ConflictException;
|
|
1169
|
-
exports.ConflictException$ = ConflictException$;
|
|
1170
|
-
exports.CreateApplication$ = CreateApplication$;
|
|
1171
499
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1172
|
-
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
1173
|
-
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
1174
|
-
exports.CreateAttributeGroup$ = CreateAttributeGroup$;
|
|
1175
500
|
exports.CreateAttributeGroupCommand = CreateAttributeGroupCommand;
|
|
1176
|
-
exports.CreateAttributeGroupRequest$ = CreateAttributeGroupRequest$;
|
|
1177
|
-
exports.CreateAttributeGroupResponse$ = CreateAttributeGroupResponse$;
|
|
1178
|
-
exports.DeleteApplication$ = DeleteApplication$;
|
|
1179
501
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1180
|
-
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
1181
|
-
exports.DeleteApplicationResponse$ = DeleteApplicationResponse$;
|
|
1182
|
-
exports.DeleteAttributeGroup$ = DeleteAttributeGroup$;
|
|
1183
502
|
exports.DeleteAttributeGroupCommand = DeleteAttributeGroupCommand;
|
|
1184
|
-
exports.DeleteAttributeGroupRequest$ = DeleteAttributeGroupRequest$;
|
|
1185
|
-
exports.DeleteAttributeGroupResponse$ = DeleteAttributeGroupResponse$;
|
|
1186
|
-
exports.DisassociateAttributeGroup$ = DisassociateAttributeGroup$;
|
|
1187
503
|
exports.DisassociateAttributeGroupCommand = DisassociateAttributeGroupCommand;
|
|
1188
|
-
exports.DisassociateAttributeGroupRequest$ = DisassociateAttributeGroupRequest$;
|
|
1189
|
-
exports.DisassociateAttributeGroupResponse$ = DisassociateAttributeGroupResponse$;
|
|
1190
|
-
exports.DisassociateResource$ = DisassociateResource$;
|
|
1191
504
|
exports.DisassociateResourceCommand = DisassociateResourceCommand;
|
|
1192
|
-
exports.DisassociateResourceRequest$ = DisassociateResourceRequest$;
|
|
1193
|
-
exports.DisassociateResourceResponse$ = DisassociateResourceResponse$;
|
|
1194
|
-
exports.GetApplication$ = GetApplication$;
|
|
1195
505
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
1196
|
-
exports.GetApplicationRequest$ = GetApplicationRequest$;
|
|
1197
|
-
exports.GetApplicationResponse$ = GetApplicationResponse$;
|
|
1198
|
-
exports.GetAssociatedResource$ = GetAssociatedResource$;
|
|
1199
506
|
exports.GetAssociatedResourceCommand = GetAssociatedResourceCommand;
|
|
1200
|
-
exports.GetAssociatedResourceRequest$ = GetAssociatedResourceRequest$;
|
|
1201
|
-
exports.GetAssociatedResourceResponse$ = GetAssociatedResourceResponse$;
|
|
1202
|
-
exports.GetAttributeGroup$ = GetAttributeGroup$;
|
|
1203
507
|
exports.GetAttributeGroupCommand = GetAttributeGroupCommand;
|
|
1204
|
-
exports.GetAttributeGroupRequest$ = GetAttributeGroupRequest$;
|
|
1205
|
-
exports.GetAttributeGroupResponse$ = GetAttributeGroupResponse$;
|
|
1206
|
-
exports.GetConfiguration$ = GetConfiguration$;
|
|
1207
508
|
exports.GetConfigurationCommand = GetConfigurationCommand;
|
|
1208
|
-
exports.GetConfigurationResponse$ = GetConfigurationResponse$;
|
|
1209
|
-
exports.Integrations$ = Integrations$;
|
|
1210
|
-
exports.InternalServerException = InternalServerException;
|
|
1211
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1212
|
-
exports.ListApplications$ = ListApplications$;
|
|
1213
509
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1214
|
-
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
1215
|
-
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
1216
|
-
exports.ListAssociatedAttributeGroups$ = ListAssociatedAttributeGroups$;
|
|
1217
510
|
exports.ListAssociatedAttributeGroupsCommand = ListAssociatedAttributeGroupsCommand;
|
|
1218
|
-
exports.ListAssociatedAttributeGroupsRequest$ = ListAssociatedAttributeGroupsRequest$;
|
|
1219
|
-
exports.ListAssociatedAttributeGroupsResponse$ = ListAssociatedAttributeGroupsResponse$;
|
|
1220
|
-
exports.ListAssociatedResources$ = ListAssociatedResources$;
|
|
1221
511
|
exports.ListAssociatedResourcesCommand = ListAssociatedResourcesCommand;
|
|
1222
|
-
exports.ListAssociatedResourcesRequest$ = ListAssociatedResourcesRequest$;
|
|
1223
|
-
exports.ListAssociatedResourcesResponse$ = ListAssociatedResourcesResponse$;
|
|
1224
|
-
exports.ListAttributeGroups$ = ListAttributeGroups$;
|
|
1225
512
|
exports.ListAttributeGroupsCommand = ListAttributeGroupsCommand;
|
|
1226
|
-
exports.ListAttributeGroupsForApplication$ = ListAttributeGroupsForApplication$;
|
|
1227
513
|
exports.ListAttributeGroupsForApplicationCommand = ListAttributeGroupsForApplicationCommand;
|
|
1228
|
-
exports.ListAttributeGroupsForApplicationRequest$ = ListAttributeGroupsForApplicationRequest$;
|
|
1229
|
-
exports.ListAttributeGroupsForApplicationResponse$ = ListAttributeGroupsForApplicationResponse$;
|
|
1230
|
-
exports.ListAttributeGroupsRequest$ = ListAttributeGroupsRequest$;
|
|
1231
|
-
exports.ListAttributeGroupsResponse$ = ListAttributeGroupsResponse$;
|
|
1232
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1233
514
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1234
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1235
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1236
|
-
exports.PutConfiguration$ = PutConfiguration$;
|
|
1237
515
|
exports.PutConfigurationCommand = PutConfigurationCommand;
|
|
1238
|
-
exports.PutConfigurationRequest$ = PutConfigurationRequest$;
|
|
1239
|
-
exports.Resource$ = Resource$;
|
|
1240
|
-
exports.ResourceDetails$ = ResourceDetails$;
|
|
1241
|
-
exports.ResourceGroup$ = ResourceGroup$;
|
|
1242
516
|
exports.ResourceGroupState = ResourceGroupState;
|
|
1243
|
-
exports.ResourceInfo$ = ResourceInfo$;
|
|
1244
|
-
exports.ResourceIntegrations$ = ResourceIntegrations$;
|
|
1245
517
|
exports.ResourceItemStatus = ResourceItemStatus;
|
|
1246
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1247
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1248
518
|
exports.ResourceType = ResourceType;
|
|
1249
|
-
exports.ResourcesListItem$ = ResourcesListItem$;
|
|
1250
519
|
exports.ServiceCatalogAppRegistry = ServiceCatalogAppRegistry;
|
|
1251
520
|
exports.ServiceCatalogAppRegistryClient = ServiceCatalogAppRegistryClient;
|
|
1252
|
-
exports.ServiceCatalogAppRegistryServiceException = ServiceCatalogAppRegistryServiceException;
|
|
1253
|
-
exports.ServiceCatalogAppRegistryServiceException$ = ServiceCatalogAppRegistryServiceException$;
|
|
1254
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1255
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1256
521
|
exports.SyncAction = SyncAction;
|
|
1257
|
-
exports.SyncResource$ = SyncResource$;
|
|
1258
522
|
exports.SyncResourceCommand = SyncResourceCommand;
|
|
1259
|
-
exports.SyncResourceRequest$ = SyncResourceRequest$;
|
|
1260
|
-
exports.SyncResourceResponse$ = SyncResourceResponse$;
|
|
1261
|
-
exports.TagQueryConfiguration$ = TagQueryConfiguration$;
|
|
1262
|
-
exports.TagResource$ = TagResource$;
|
|
1263
523
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1264
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1265
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1266
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1267
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1268
|
-
exports.UntagResource$ = UntagResource$;
|
|
1269
524
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1270
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1271
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1272
|
-
exports.UpdateApplication$ = UpdateApplication$;
|
|
1273
525
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
1274
|
-
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
1275
|
-
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
1276
|
-
exports.UpdateAttributeGroup$ = UpdateAttributeGroup$;
|
|
1277
526
|
exports.UpdateAttributeGroupCommand = UpdateAttributeGroupCommand;
|
|
1278
|
-
exports.UpdateAttributeGroupRequest$ = UpdateAttributeGroupRequest$;
|
|
1279
|
-
exports.UpdateAttributeGroupResponse$ = UpdateAttributeGroupResponse$;
|
|
1280
|
-
exports.ValidationException = ValidationException;
|
|
1281
|
-
exports.ValidationException$ = ValidationException$;
|
|
1282
527
|
exports.paginateListApplications = paginateListApplications;
|
|
1283
528
|
exports.paginateListAssociatedAttributeGroups = paginateListAssociatedAttributeGroups;
|
|
1284
529
|
exports.paginateListAssociatedResources = paginateListAssociatedResources;
|
|
1285
530
|
exports.paginateListAttributeGroups = paginateListAttributeGroups;
|
|
1286
531
|
exports.paginateListAttributeGroupsForApplication = paginateListAttributeGroupsForApplication;
|
|
532
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
533
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
534
|
+
enumerable: true,
|
|
535
|
+
get: function () { return schemas_0[k]; }
|
|
536
|
+
});
|
|
537
|
+
});
|
|
538
|
+
Object.keys(errors).forEach(function (k) {
|
|
539
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
540
|
+
enumerable: true,
|
|
541
|
+
get: function () { return errors[k]; }
|
|
542
|
+
});
|
|
543
|
+
});
|