@aws-sdk/client-license-manager-user-subscriptions 3.928.0 → 3.930.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 +770 -858
- package/dist-cjs/runtimeConfig.shared.js +3 -0
- package/dist-es/LicenseManagerUserSubscriptionsClient.js +2 -0
- package/dist-es/commands/AssociateUserCommand.js +3 -10
- package/dist-es/commands/CreateLicenseServerEndpointCommand.js +3 -10
- package/dist-es/commands/DeleteLicenseServerEndpointCommand.js +3 -9
- package/dist-es/commands/DeregisterIdentityProviderCommand.js +3 -9
- package/dist-es/commands/DisassociateUserCommand.js +3 -9
- package/dist-es/commands/ListIdentityProvidersCommand.js +3 -9
- package/dist-es/commands/ListInstancesCommand.js +3 -9
- package/dist-es/commands/ListLicenseServerEndpointsCommand.js +3 -9
- package/dist-es/commands/ListProductSubscriptionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/ListUserAssociationsCommand.js +3 -9
- package/dist-es/commands/RegisterIdentityProviderCommand.js +3 -10
- package/dist-es/commands/StartProductSubscriptionCommand.js +3 -10
- package/dist-es/commands/StopProductSubscriptionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -10
- package/dist-es/commands/UpdateIdentityProviderSettingsCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -57
- package/dist-es/runtimeConfig.shared.js +3 -0
- package/dist-es/schemas/schemas_0.js +719 -0
- package/dist-types/LicenseManagerUserSubscriptionsClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +12 -31
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +92 -0
- package/dist-types/ts3.4/LicenseManagerUserSubscriptionsClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -24
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +98 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_restJson1.js +0 -658
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -155
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -209
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class LicenseManagerUserSubscriptionsClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class LicenseManagerUserSubscriptionsClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class LicenseManagerUserSubscriptionsServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let LicenseManagerUserSubscriptionsServiceException$1 = class LicenseManagerUserSubscriptionsServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, LicenseManagerUserSubscriptionsServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class AccessDeniedException extends LicenseManagerUserSubscriptionsServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends LicenseManagerUserSubscriptionsServiceException$1 {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,28 +128,12 @@ class AccessDeniedException extends LicenseManagerUserSubscriptionsServiceExcept
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
exports.CredentialsProvider = void 0;
|
|
133
|
-
(function (CredentialsProvider) {
|
|
134
|
-
CredentialsProvider.visit = (value, visitor) => {
|
|
135
|
-
if (value.SecretsManagerCredentialsProvider !== undefined)
|
|
136
|
-
return visitor.SecretsManagerCredentialsProvider(value.SecretsManagerCredentialsProvider);
|
|
137
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
138
|
-
};
|
|
139
|
-
})(exports.CredentialsProvider || (exports.CredentialsProvider = {}));
|
|
131
|
+
};
|
|
140
132
|
const ActiveDirectoryType = {
|
|
141
133
|
AWS_MANAGED: "AWS_MANAGED",
|
|
142
134
|
SELF_MANAGED: "SELF_MANAGED",
|
|
143
135
|
};
|
|
144
|
-
|
|
145
|
-
(function (IdentityProvider) {
|
|
146
|
-
IdentityProvider.visit = (value, visitor) => {
|
|
147
|
-
if (value.ActiveDirectoryIdentityProvider !== undefined)
|
|
148
|
-
return visitor.ActiveDirectoryIdentityProvider(value.ActiveDirectoryIdentityProvider);
|
|
149
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
150
|
-
};
|
|
151
|
-
})(exports.IdentityProvider || (exports.IdentityProvider = {}));
|
|
152
|
-
class ConflictException extends LicenseManagerUserSubscriptionsServiceException {
|
|
136
|
+
let ConflictException$1 = class ConflictException extends LicenseManagerUserSubscriptionsServiceException$1 {
|
|
153
137
|
name = "ConflictException";
|
|
154
138
|
$fault = "server";
|
|
155
139
|
constructor(opts) {
|
|
@@ -160,8 +144,8 @@ class ConflictException extends LicenseManagerUserSubscriptionsServiceException
|
|
|
160
144
|
});
|
|
161
145
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
162
146
|
}
|
|
163
|
-
}
|
|
164
|
-
class InternalServerException extends LicenseManagerUserSubscriptionsServiceException {
|
|
147
|
+
};
|
|
148
|
+
let InternalServerException$1 = class InternalServerException extends LicenseManagerUserSubscriptionsServiceException$1 {
|
|
165
149
|
name = "InternalServerException";
|
|
166
150
|
$fault = "server";
|
|
167
151
|
constructor(opts) {
|
|
@@ -172,8 +156,8 @@ class InternalServerException extends LicenseManagerUserSubscriptionsServiceExce
|
|
|
172
156
|
});
|
|
173
157
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
174
158
|
}
|
|
175
|
-
}
|
|
176
|
-
class ResourceNotFoundException extends LicenseManagerUserSubscriptionsServiceException {
|
|
159
|
+
};
|
|
160
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends LicenseManagerUserSubscriptionsServiceException$1 {
|
|
177
161
|
name = "ResourceNotFoundException";
|
|
178
162
|
$fault = "client";
|
|
179
163
|
constructor(opts) {
|
|
@@ -184,8 +168,8 @@ class ResourceNotFoundException extends LicenseManagerUserSubscriptionsServiceEx
|
|
|
184
168
|
});
|
|
185
169
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
186
170
|
}
|
|
187
|
-
}
|
|
188
|
-
class ServiceQuotaExceededException extends LicenseManagerUserSubscriptionsServiceException {
|
|
171
|
+
};
|
|
172
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends LicenseManagerUserSubscriptionsServiceException$1 {
|
|
189
173
|
name = "ServiceQuotaExceededException";
|
|
190
174
|
$fault = "client";
|
|
191
175
|
constructor(opts) {
|
|
@@ -196,8 +180,8 @@ class ServiceQuotaExceededException extends LicenseManagerUserSubscriptionsServi
|
|
|
196
180
|
});
|
|
197
181
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
198
182
|
}
|
|
199
|
-
}
|
|
200
|
-
class ThrottlingException extends LicenseManagerUserSubscriptionsServiceException {
|
|
183
|
+
};
|
|
184
|
+
let ThrottlingException$1 = class ThrottlingException extends LicenseManagerUserSubscriptionsServiceException$1 {
|
|
201
185
|
name = "ThrottlingException";
|
|
202
186
|
$fault = "client";
|
|
203
187
|
constructor(opts) {
|
|
@@ -208,8 +192,8 @@ class ThrottlingException extends LicenseManagerUserSubscriptionsServiceExceptio
|
|
|
208
192
|
});
|
|
209
193
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
210
194
|
}
|
|
211
|
-
}
|
|
212
|
-
class ValidationException extends LicenseManagerUserSubscriptionsServiceException {
|
|
195
|
+
};
|
|
196
|
+
let ValidationException$1 = class ValidationException extends LicenseManagerUserSubscriptionsServiceException$1 {
|
|
213
197
|
name = "ValidationException";
|
|
214
198
|
$fault = "client";
|
|
215
199
|
constructor(opts) {
|
|
@@ -220,15 +204,7 @@ class ValidationException extends LicenseManagerUserSubscriptionsServiceExceptio
|
|
|
220
204
|
});
|
|
221
205
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
222
206
|
}
|
|
223
|
-
}
|
|
224
|
-
exports.ServerSettings = void 0;
|
|
225
|
-
(function (ServerSettings) {
|
|
226
|
-
ServerSettings.visit = (value, visitor) => {
|
|
227
|
-
if (value.RdsSalSettings !== undefined)
|
|
228
|
-
return visitor.RdsSalSettings(value.RdsSalSettings);
|
|
229
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
230
|
-
};
|
|
231
|
-
})(exports.ServerSettings || (exports.ServerSettings = {}));
|
|
207
|
+
};
|
|
232
208
|
const ServerType = {
|
|
233
209
|
RDS_SAL: "RDS_SAL",
|
|
234
210
|
};
|
|
@@ -245,706 +221,729 @@ const LicenseServerHealthStatus = {
|
|
|
245
221
|
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
246
222
|
UNHEALTHY: "UNHEALTHY",
|
|
247
223
|
};
|
|
248
|
-
const AssociateUserRequestFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
...(obj.IdentityProvider && { IdentityProvider: obj.IdentityProvider }),
|
|
251
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
252
|
-
});
|
|
253
|
-
const CreateLicenseServerEndpointRequestFilterSensitiveLog = (obj) => ({
|
|
254
|
-
...obj,
|
|
255
|
-
...(obj.LicenseServerSettings && { LicenseServerSettings: obj.LicenseServerSettings }),
|
|
256
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
257
|
-
});
|
|
258
|
-
const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
259
|
-
...obj,
|
|
260
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
261
|
-
});
|
|
262
|
-
const RegisterIdentityProviderRequestFilterSensitiveLog = (obj) => ({
|
|
263
|
-
...obj,
|
|
264
|
-
...(obj.IdentityProvider && { IdentityProvider: obj.IdentityProvider }),
|
|
265
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
266
|
-
});
|
|
267
|
-
const StartProductSubscriptionRequestFilterSensitiveLog = (obj) => ({
|
|
268
|
-
...obj,
|
|
269
|
-
...(obj.IdentityProvider && { IdentityProvider: obj.IdentityProvider }),
|
|
270
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
271
|
-
});
|
|
272
|
-
const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
273
|
-
...obj,
|
|
274
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
275
|
-
});
|
|
276
|
-
const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
277
|
-
...obj,
|
|
278
|
-
...(obj.TagKeys && { TagKeys: smithyClient.SENSITIVE_STRING }),
|
|
279
|
-
});
|
|
280
224
|
|
|
281
|
-
const
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
const
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
const
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
const
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
const
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
const
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
const
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
const
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
const
|
|
405
|
-
|
|
406
|
-
const headers = {
|
|
407
|
-
"content-type": "application/json",
|
|
408
|
-
};
|
|
409
|
-
b.bp("/user/ListProductSubscriptions");
|
|
410
|
-
let body;
|
|
411
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
412
|
-
Filters: (_) => smithyClient._json(_),
|
|
413
|
-
IdentityProvider: (_) => smithyClient._json(_),
|
|
414
|
-
MaxResults: [],
|
|
415
|
-
NextToken: [],
|
|
416
|
-
Product: [],
|
|
417
|
-
}));
|
|
418
|
-
b.m("POST").h(headers).b(body);
|
|
419
|
-
return b.build();
|
|
420
|
-
};
|
|
421
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
422
|
-
const b = core.requestBuilder(input, context);
|
|
423
|
-
const headers = {};
|
|
424
|
-
b.bp("/tags/{ResourceArn}");
|
|
425
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
426
|
-
let body;
|
|
427
|
-
b.m("GET").h(headers).b(body);
|
|
428
|
-
return b.build();
|
|
429
|
-
};
|
|
430
|
-
const se_ListUserAssociationsCommand = async (input, context) => {
|
|
431
|
-
const b = core.requestBuilder(input, context);
|
|
432
|
-
const headers = {
|
|
433
|
-
"content-type": "application/json",
|
|
434
|
-
};
|
|
435
|
-
b.bp("/user/ListUserAssociations");
|
|
436
|
-
let body;
|
|
437
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
438
|
-
Filters: (_) => smithyClient._json(_),
|
|
439
|
-
IdentityProvider: (_) => smithyClient._json(_),
|
|
440
|
-
InstanceId: [],
|
|
441
|
-
MaxResults: [],
|
|
442
|
-
NextToken: [],
|
|
443
|
-
}));
|
|
444
|
-
b.m("POST").h(headers).b(body);
|
|
445
|
-
return b.build();
|
|
446
|
-
};
|
|
447
|
-
const se_RegisterIdentityProviderCommand = async (input, context) => {
|
|
448
|
-
const b = core.requestBuilder(input, context);
|
|
449
|
-
const headers = {
|
|
450
|
-
"content-type": "application/json",
|
|
451
|
-
};
|
|
452
|
-
b.bp("/identity-provider/RegisterIdentityProvider");
|
|
453
|
-
let body;
|
|
454
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
455
|
-
IdentityProvider: (_) => smithyClient._json(_),
|
|
456
|
-
Product: [],
|
|
457
|
-
Settings: (_) => smithyClient._json(_),
|
|
458
|
-
Tags: (_) => smithyClient._json(_),
|
|
459
|
-
}));
|
|
460
|
-
b.m("POST").h(headers).b(body);
|
|
461
|
-
return b.build();
|
|
462
|
-
};
|
|
463
|
-
const se_StartProductSubscriptionCommand = async (input, context) => {
|
|
464
|
-
const b = core.requestBuilder(input, context);
|
|
465
|
-
const headers = {
|
|
466
|
-
"content-type": "application/json",
|
|
467
|
-
};
|
|
468
|
-
b.bp("/user/StartProductSubscription");
|
|
469
|
-
let body;
|
|
470
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
471
|
-
Domain: [],
|
|
472
|
-
IdentityProvider: (_) => smithyClient._json(_),
|
|
473
|
-
Product: [],
|
|
474
|
-
Tags: (_) => smithyClient._json(_),
|
|
475
|
-
Username: [],
|
|
476
|
-
}));
|
|
477
|
-
b.m("POST").h(headers).b(body);
|
|
478
|
-
return b.build();
|
|
479
|
-
};
|
|
480
|
-
const se_StopProductSubscriptionCommand = async (input, context) => {
|
|
481
|
-
const b = core.requestBuilder(input, context);
|
|
482
|
-
const headers = {
|
|
483
|
-
"content-type": "application/json",
|
|
484
|
-
};
|
|
485
|
-
b.bp("/user/StopProductSubscription");
|
|
486
|
-
let body;
|
|
487
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
488
|
-
Domain: [],
|
|
489
|
-
IdentityProvider: (_) => smithyClient._json(_),
|
|
490
|
-
Product: [],
|
|
491
|
-
ProductUserArn: [],
|
|
492
|
-
Username: [],
|
|
493
|
-
}));
|
|
494
|
-
b.m("POST").h(headers).b(body);
|
|
495
|
-
return b.build();
|
|
496
|
-
};
|
|
497
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
498
|
-
const b = core.requestBuilder(input, context);
|
|
499
|
-
const headers = {
|
|
500
|
-
"content-type": "application/json",
|
|
501
|
-
};
|
|
502
|
-
b.bp("/tags/{ResourceArn}");
|
|
503
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
504
|
-
let body;
|
|
505
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
506
|
-
Tags: (_) => smithyClient._json(_),
|
|
507
|
-
}));
|
|
508
|
-
b.m("PUT").h(headers).b(body);
|
|
509
|
-
return b.build();
|
|
510
|
-
};
|
|
511
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
512
|
-
const b = core.requestBuilder(input, context);
|
|
513
|
-
const headers = {};
|
|
514
|
-
b.bp("/tags/{ResourceArn}");
|
|
515
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
516
|
-
const query = smithyClient.map({
|
|
517
|
-
[_tK]: [smithyClient.expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
|
|
518
|
-
});
|
|
519
|
-
let body;
|
|
520
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
521
|
-
return b.build();
|
|
522
|
-
};
|
|
523
|
-
const se_UpdateIdentityProviderSettingsCommand = async (input, context) => {
|
|
524
|
-
const b = core.requestBuilder(input, context);
|
|
525
|
-
const headers = {
|
|
526
|
-
"content-type": "application/json",
|
|
527
|
-
};
|
|
528
|
-
b.bp("/identity-provider/UpdateIdentityProviderSettings");
|
|
529
|
-
let body;
|
|
530
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
531
|
-
IdentityProvider: (_) => smithyClient._json(_),
|
|
532
|
-
IdentityProviderArn: [],
|
|
533
|
-
Product: [],
|
|
534
|
-
UpdateSettings: (_) => smithyClient._json(_),
|
|
535
|
-
}));
|
|
536
|
-
b.m("POST").h(headers).b(body);
|
|
537
|
-
return b.build();
|
|
538
|
-
};
|
|
539
|
-
const de_AssociateUserCommand = async (output, context) => {
|
|
540
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
541
|
-
return de_CommandError(output, context);
|
|
542
|
-
}
|
|
543
|
-
const contents = smithyClient.map({
|
|
544
|
-
$metadata: deserializeMetadata(output),
|
|
545
|
-
});
|
|
546
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
547
|
-
const doc = smithyClient.take(data, {
|
|
548
|
-
InstanceUserSummary: smithyClient._json,
|
|
549
|
-
});
|
|
550
|
-
Object.assign(contents, doc);
|
|
551
|
-
return contents;
|
|
552
|
-
};
|
|
553
|
-
const de_CreateLicenseServerEndpointCommand = async (output, context) => {
|
|
554
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
555
|
-
return de_CommandError(output, context);
|
|
556
|
-
}
|
|
557
|
-
const contents = smithyClient.map({
|
|
558
|
-
$metadata: deserializeMetadata(output),
|
|
559
|
-
});
|
|
560
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
561
|
-
const doc = smithyClient.take(data, {
|
|
562
|
-
IdentityProviderArn: smithyClient.expectString,
|
|
563
|
-
LicenseServerEndpointArn: smithyClient.expectString,
|
|
564
|
-
});
|
|
565
|
-
Object.assign(contents, doc);
|
|
566
|
-
return contents;
|
|
567
|
-
};
|
|
568
|
-
const de_DeleteLicenseServerEndpointCommand = async (output, context) => {
|
|
569
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
570
|
-
return de_CommandError(output, context);
|
|
571
|
-
}
|
|
572
|
-
const contents = smithyClient.map({
|
|
573
|
-
$metadata: deserializeMetadata(output),
|
|
574
|
-
});
|
|
575
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
576
|
-
const doc = smithyClient.take(data, {
|
|
577
|
-
LicenseServerEndpoint: (_) => de_LicenseServerEndpoint(_),
|
|
578
|
-
});
|
|
579
|
-
Object.assign(contents, doc);
|
|
580
|
-
return contents;
|
|
581
|
-
};
|
|
582
|
-
const de_DeregisterIdentityProviderCommand = async (output, context) => {
|
|
583
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
584
|
-
return de_CommandError(output, context);
|
|
585
|
-
}
|
|
586
|
-
const contents = smithyClient.map({
|
|
587
|
-
$metadata: deserializeMetadata(output),
|
|
588
|
-
});
|
|
589
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
590
|
-
const doc = smithyClient.take(data, {
|
|
591
|
-
IdentityProviderSummary: smithyClient._json,
|
|
592
|
-
});
|
|
593
|
-
Object.assign(contents, doc);
|
|
594
|
-
return contents;
|
|
595
|
-
};
|
|
596
|
-
const de_DisassociateUserCommand = async (output, context) => {
|
|
597
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
598
|
-
return de_CommandError(output, context);
|
|
599
|
-
}
|
|
600
|
-
const contents = smithyClient.map({
|
|
601
|
-
$metadata: deserializeMetadata(output),
|
|
602
|
-
});
|
|
603
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
604
|
-
const doc = smithyClient.take(data, {
|
|
605
|
-
InstanceUserSummary: smithyClient._json,
|
|
606
|
-
});
|
|
607
|
-
Object.assign(contents, doc);
|
|
608
|
-
return contents;
|
|
609
|
-
};
|
|
610
|
-
const de_ListIdentityProvidersCommand = async (output, context) => {
|
|
611
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
612
|
-
return de_CommandError(output, context);
|
|
613
|
-
}
|
|
614
|
-
const contents = smithyClient.map({
|
|
615
|
-
$metadata: deserializeMetadata(output),
|
|
616
|
-
});
|
|
617
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
618
|
-
const doc = smithyClient.take(data, {
|
|
619
|
-
IdentityProviderSummaries: smithyClient._json,
|
|
620
|
-
NextToken: smithyClient.expectString,
|
|
621
|
-
});
|
|
622
|
-
Object.assign(contents, doc);
|
|
623
|
-
return contents;
|
|
624
|
-
};
|
|
625
|
-
const de_ListInstancesCommand = async (output, context) => {
|
|
626
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
627
|
-
return de_CommandError(output, context);
|
|
628
|
-
}
|
|
629
|
-
const contents = smithyClient.map({
|
|
630
|
-
$metadata: deserializeMetadata(output),
|
|
631
|
-
});
|
|
632
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
633
|
-
const doc = smithyClient.take(data, {
|
|
634
|
-
InstanceSummaries: smithyClient._json,
|
|
635
|
-
NextToken: smithyClient.expectString,
|
|
636
|
-
});
|
|
637
|
-
Object.assign(contents, doc);
|
|
638
|
-
return contents;
|
|
639
|
-
};
|
|
640
|
-
const de_ListLicenseServerEndpointsCommand = async (output, context) => {
|
|
641
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
642
|
-
return de_CommandError(output, context);
|
|
643
|
-
}
|
|
644
|
-
const contents = smithyClient.map({
|
|
645
|
-
$metadata: deserializeMetadata(output),
|
|
646
|
-
});
|
|
647
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
648
|
-
const doc = smithyClient.take(data, {
|
|
649
|
-
LicenseServerEndpoints: (_) => de_LicenseServerEndpointList(_),
|
|
650
|
-
NextToken: smithyClient.expectString,
|
|
651
|
-
});
|
|
652
|
-
Object.assign(contents, doc);
|
|
653
|
-
return contents;
|
|
654
|
-
};
|
|
655
|
-
const de_ListProductSubscriptionsCommand = async (output, context) => {
|
|
656
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
657
|
-
return de_CommandError(output, context);
|
|
658
|
-
}
|
|
659
|
-
const contents = smithyClient.map({
|
|
660
|
-
$metadata: deserializeMetadata(output),
|
|
661
|
-
});
|
|
662
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
663
|
-
const doc = smithyClient.take(data, {
|
|
664
|
-
NextToken: smithyClient.expectString,
|
|
665
|
-
ProductUserSummaries: smithyClient._json,
|
|
666
|
-
});
|
|
667
|
-
Object.assign(contents, doc);
|
|
668
|
-
return contents;
|
|
669
|
-
};
|
|
670
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
671
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
672
|
-
return de_CommandError(output, context);
|
|
673
|
-
}
|
|
674
|
-
const contents = smithyClient.map({
|
|
675
|
-
$metadata: deserializeMetadata(output),
|
|
676
|
-
});
|
|
677
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
678
|
-
const doc = smithyClient.take(data, {
|
|
679
|
-
Tags: smithyClient._json,
|
|
680
|
-
});
|
|
681
|
-
Object.assign(contents, doc);
|
|
682
|
-
return contents;
|
|
683
|
-
};
|
|
684
|
-
const de_ListUserAssociationsCommand = async (output, context) => {
|
|
685
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
686
|
-
return de_CommandError(output, context);
|
|
687
|
-
}
|
|
688
|
-
const contents = smithyClient.map({
|
|
689
|
-
$metadata: deserializeMetadata(output),
|
|
690
|
-
});
|
|
691
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
692
|
-
const doc = smithyClient.take(data, {
|
|
693
|
-
InstanceUserSummaries: smithyClient._json,
|
|
694
|
-
NextToken: smithyClient.expectString,
|
|
695
|
-
});
|
|
696
|
-
Object.assign(contents, doc);
|
|
697
|
-
return contents;
|
|
698
|
-
};
|
|
699
|
-
const de_RegisterIdentityProviderCommand = async (output, context) => {
|
|
700
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
701
|
-
return de_CommandError(output, context);
|
|
702
|
-
}
|
|
703
|
-
const contents = smithyClient.map({
|
|
704
|
-
$metadata: deserializeMetadata(output),
|
|
705
|
-
});
|
|
706
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
707
|
-
const doc = smithyClient.take(data, {
|
|
708
|
-
IdentityProviderSummary: smithyClient._json,
|
|
709
|
-
});
|
|
710
|
-
Object.assign(contents, doc);
|
|
711
|
-
return contents;
|
|
712
|
-
};
|
|
713
|
-
const de_StartProductSubscriptionCommand = async (output, context) => {
|
|
714
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
715
|
-
return de_CommandError(output, context);
|
|
716
|
-
}
|
|
717
|
-
const contents = smithyClient.map({
|
|
718
|
-
$metadata: deserializeMetadata(output),
|
|
719
|
-
});
|
|
720
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
721
|
-
const doc = smithyClient.take(data, {
|
|
722
|
-
ProductUserSummary: smithyClient._json,
|
|
723
|
-
});
|
|
724
|
-
Object.assign(contents, doc);
|
|
725
|
-
return contents;
|
|
726
|
-
};
|
|
727
|
-
const de_StopProductSubscriptionCommand = async (output, context) => {
|
|
728
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
729
|
-
return de_CommandError(output, context);
|
|
730
|
-
}
|
|
731
|
-
const contents = smithyClient.map({
|
|
732
|
-
$metadata: deserializeMetadata(output),
|
|
733
|
-
});
|
|
734
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
735
|
-
const doc = smithyClient.take(data, {
|
|
736
|
-
ProductUserSummary: smithyClient._json,
|
|
737
|
-
});
|
|
738
|
-
Object.assign(contents, doc);
|
|
739
|
-
return contents;
|
|
740
|
-
};
|
|
741
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
742
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
743
|
-
return de_CommandError(output, context);
|
|
744
|
-
}
|
|
745
|
-
const contents = smithyClient.map({
|
|
746
|
-
$metadata: deserializeMetadata(output),
|
|
747
|
-
});
|
|
748
|
-
await smithyClient.collectBody(output.body, context);
|
|
749
|
-
return contents;
|
|
750
|
-
};
|
|
751
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
752
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
753
|
-
return de_CommandError(output, context);
|
|
754
|
-
}
|
|
755
|
-
const contents = smithyClient.map({
|
|
756
|
-
$metadata: deserializeMetadata(output),
|
|
757
|
-
});
|
|
758
|
-
await smithyClient.collectBody(output.body, context);
|
|
759
|
-
return contents;
|
|
760
|
-
};
|
|
761
|
-
const de_UpdateIdentityProviderSettingsCommand = async (output, context) => {
|
|
762
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
763
|
-
return de_CommandError(output, context);
|
|
764
|
-
}
|
|
765
|
-
const contents = smithyClient.map({
|
|
766
|
-
$metadata: deserializeMetadata(output),
|
|
767
|
-
});
|
|
768
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
769
|
-
const doc = smithyClient.take(data, {
|
|
770
|
-
IdentityProviderSummary: smithyClient._json,
|
|
771
|
-
});
|
|
772
|
-
Object.assign(contents, doc);
|
|
773
|
-
return contents;
|
|
774
|
-
};
|
|
775
|
-
const de_CommandError = async (output, context) => {
|
|
776
|
-
const parsedOutput = {
|
|
777
|
-
...output,
|
|
778
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
779
|
-
};
|
|
780
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
781
|
-
switch (errorCode) {
|
|
782
|
-
case "AccessDeniedException":
|
|
783
|
-
case "com.amazonaws.licensemanagerusersubscriptions#AccessDeniedException":
|
|
784
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
785
|
-
case "ConflictException":
|
|
786
|
-
case "com.amazonaws.licensemanagerusersubscriptions#ConflictException":
|
|
787
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
788
|
-
case "InternalServerException":
|
|
789
|
-
case "com.amazonaws.licensemanagerusersubscriptions#InternalServerException":
|
|
790
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
791
|
-
case "ResourceNotFoundException":
|
|
792
|
-
case "com.amazonaws.licensemanagerusersubscriptions#ResourceNotFoundException":
|
|
793
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
794
|
-
case "ServiceQuotaExceededException":
|
|
795
|
-
case "com.amazonaws.licensemanagerusersubscriptions#ServiceQuotaExceededException":
|
|
796
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
797
|
-
case "ThrottlingException":
|
|
798
|
-
case "com.amazonaws.licensemanagerusersubscriptions#ThrottlingException":
|
|
799
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
800
|
-
case "ValidationException":
|
|
801
|
-
case "com.amazonaws.licensemanagerusersubscriptions#ValidationException":
|
|
802
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
803
|
-
default:
|
|
804
|
-
const parsedBody = parsedOutput.body;
|
|
805
|
-
return throwDefaultError({
|
|
806
|
-
output,
|
|
807
|
-
parsedBody,
|
|
808
|
-
errorCode,
|
|
809
|
-
});
|
|
810
|
-
}
|
|
811
|
-
};
|
|
812
|
-
const throwDefaultError = smithyClient.withBaseException(LicenseManagerUserSubscriptionsServiceException);
|
|
813
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
814
|
-
const contents = smithyClient.map({});
|
|
815
|
-
const data = parsedOutput.body;
|
|
816
|
-
const doc = smithyClient.take(data, {
|
|
817
|
-
message: smithyClient.expectString,
|
|
818
|
-
});
|
|
819
|
-
Object.assign(contents, doc);
|
|
820
|
-
const exception = new AccessDeniedException({
|
|
821
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
822
|
-
...contents,
|
|
823
|
-
});
|
|
824
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
825
|
-
};
|
|
826
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
827
|
-
const contents = smithyClient.map({});
|
|
828
|
-
const data = parsedOutput.body;
|
|
829
|
-
const doc = smithyClient.take(data, {
|
|
830
|
-
message: smithyClient.expectString,
|
|
831
|
-
});
|
|
832
|
-
Object.assign(contents, doc);
|
|
833
|
-
const exception = new ConflictException({
|
|
834
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
835
|
-
...contents,
|
|
836
|
-
});
|
|
837
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
838
|
-
};
|
|
839
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
840
|
-
const contents = smithyClient.map({});
|
|
841
|
-
const data = parsedOutput.body;
|
|
842
|
-
const doc = smithyClient.take(data, {
|
|
843
|
-
message: smithyClient.expectString,
|
|
844
|
-
});
|
|
845
|
-
Object.assign(contents, doc);
|
|
846
|
-
const exception = new InternalServerException({
|
|
847
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
848
|
-
...contents,
|
|
849
|
-
});
|
|
850
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
851
|
-
};
|
|
852
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
853
|
-
const contents = smithyClient.map({});
|
|
854
|
-
const data = parsedOutput.body;
|
|
855
|
-
const doc = smithyClient.take(data, {
|
|
856
|
-
message: smithyClient.expectString,
|
|
857
|
-
});
|
|
858
|
-
Object.assign(contents, doc);
|
|
859
|
-
const exception = new ResourceNotFoundException({
|
|
860
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
861
|
-
...contents,
|
|
862
|
-
});
|
|
863
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
864
|
-
};
|
|
865
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
866
|
-
const contents = smithyClient.map({});
|
|
867
|
-
const data = parsedOutput.body;
|
|
868
|
-
const doc = smithyClient.take(data, {
|
|
869
|
-
message: smithyClient.expectString,
|
|
870
|
-
});
|
|
871
|
-
Object.assign(contents, doc);
|
|
872
|
-
const exception = new ServiceQuotaExceededException({
|
|
873
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
874
|
-
...contents,
|
|
875
|
-
});
|
|
876
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
877
|
-
};
|
|
878
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
879
|
-
const contents = smithyClient.map({});
|
|
880
|
-
const data = parsedOutput.body;
|
|
881
|
-
const doc = smithyClient.take(data, {
|
|
882
|
-
message: smithyClient.expectString,
|
|
883
|
-
});
|
|
884
|
-
Object.assign(contents, doc);
|
|
885
|
-
const exception = new ThrottlingException({
|
|
886
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
887
|
-
...contents,
|
|
888
|
-
});
|
|
889
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
890
|
-
};
|
|
891
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
892
|
-
const contents = smithyClient.map({});
|
|
893
|
-
const data = parsedOutput.body;
|
|
894
|
-
const doc = smithyClient.take(data, {
|
|
895
|
-
message: smithyClient.expectString,
|
|
896
|
-
});
|
|
897
|
-
Object.assign(contents, doc);
|
|
898
|
-
const exception = new ValidationException({
|
|
899
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
900
|
-
...contents,
|
|
901
|
-
});
|
|
902
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
903
|
-
};
|
|
904
|
-
const de_LicenseServerEndpoint = (output, context) => {
|
|
905
|
-
return smithyClient.take(output, {
|
|
906
|
-
CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
907
|
-
IdentityProviderArn: smithyClient.expectString,
|
|
908
|
-
LicenseServerEndpointArn: smithyClient.expectString,
|
|
909
|
-
LicenseServerEndpointId: smithyClient.expectString,
|
|
910
|
-
LicenseServerEndpointProvisioningStatus: smithyClient.expectString,
|
|
911
|
-
LicenseServers: smithyClient._json,
|
|
912
|
-
ServerEndpoint: smithyClient._json,
|
|
913
|
-
ServerType: smithyClient.expectString,
|
|
914
|
-
StatusMessage: smithyClient.expectString,
|
|
915
|
-
});
|
|
916
|
-
};
|
|
917
|
-
const de_LicenseServerEndpointList = (output, context) => {
|
|
918
|
-
const retVal = (output || [])
|
|
919
|
-
.filter((e) => e != null)
|
|
920
|
-
.map((entry) => {
|
|
921
|
-
return de_LicenseServerEndpoint(entry);
|
|
922
|
-
});
|
|
923
|
-
return retVal;
|
|
924
|
-
};
|
|
925
|
-
const deserializeMetadata = (output) => ({
|
|
926
|
-
httpStatusCode: output.statusCode,
|
|
927
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
928
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
929
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
930
|
-
});
|
|
225
|
+
const _A = "Attribute";
|
|
226
|
+
const _AD = "AssociationDate";
|
|
227
|
+
const _ADE = "AccessDeniedException";
|
|
228
|
+
const _ADIP = "ActiveDirectoryIdentityProvider";
|
|
229
|
+
const _ADS = "ActiveDirectorySettings";
|
|
230
|
+
const _ADT = "ActiveDirectoryType";
|
|
231
|
+
const _AS = "AddSubnets";
|
|
232
|
+
const _AU = "AssociateUser";
|
|
233
|
+
const _AUR = "AssociateUserRequest";
|
|
234
|
+
const _AURs = "AssociateUserResponse";
|
|
235
|
+
const _CE = "ConflictException";
|
|
236
|
+
const _CLSE = "CreateLicenseServerEndpoint";
|
|
237
|
+
const _CLSER = "CreateLicenseServerEndpointRequest";
|
|
238
|
+
const _CLSERr = "CreateLicenseServerEndpointResponse";
|
|
239
|
+
const _CP = "CredentialsProvider";
|
|
240
|
+
const _CT = "CreationTime";
|
|
241
|
+
const _D = "Domain";
|
|
242
|
+
const _DCP = "DomainCredentialsProvider";
|
|
243
|
+
const _DD = "DisassociationDate";
|
|
244
|
+
const _DI = "DirectoryId";
|
|
245
|
+
const _DIL = "DomainIpv4List";
|
|
246
|
+
const _DILo = "DomainIpv6List";
|
|
247
|
+
const _DIP = "DeregisterIdentityProvider";
|
|
248
|
+
const _DIPR = "DeregisterIdentityProviderRequest";
|
|
249
|
+
const _DIPRe = "DeregisterIdentityProviderResponse";
|
|
250
|
+
const _DLSE = "DeleteLicenseServerEndpoint";
|
|
251
|
+
const _DLSER = "DeleteLicenseServerEndpointRequest";
|
|
252
|
+
const _DLSERe = "DeleteLicenseServerEndpointResponse";
|
|
253
|
+
const _DN = "DomainName";
|
|
254
|
+
const _DNS = "DomainNetworkSettings";
|
|
255
|
+
const _DU = "DisassociateUser";
|
|
256
|
+
const _DUR = "DisassociateUserRequest";
|
|
257
|
+
const _DURi = "DisassociateUserResponse";
|
|
258
|
+
const _E = "Endpoint";
|
|
259
|
+
const _F = "Filter";
|
|
260
|
+
const _FL = "FilterList";
|
|
261
|
+
const _FM = "FailureMessage";
|
|
262
|
+
const _Fi = "Filters";
|
|
263
|
+
const _HS = "HealthStatus";
|
|
264
|
+
const _IA = "Ipv4Address";
|
|
265
|
+
const _IAp = "Ipv6Address";
|
|
266
|
+
const _II = "InstanceId";
|
|
267
|
+
const _IP = "IdentityProvider";
|
|
268
|
+
const _IPA = "IdentityProviderArn";
|
|
269
|
+
const _IPS = "IdentityProviderSummary";
|
|
270
|
+
const _IPSL = "IdentityProviderSummaryList";
|
|
271
|
+
const _IPSd = "IdentityProviderSummaries";
|
|
272
|
+
const _IS = "InstanceSummary";
|
|
273
|
+
const _ISAD = "IsSharedActiveDirectory";
|
|
274
|
+
const _ISE = "InternalServerException";
|
|
275
|
+
const _ISL = "InstanceSummaryList";
|
|
276
|
+
const _ISn = "InstanceSummaries";
|
|
277
|
+
const _IUA = "InstanceUserArn";
|
|
278
|
+
const _IUS = "InstanceUserSummary";
|
|
279
|
+
const _IUSL = "InstanceUserSummaryList";
|
|
280
|
+
const _IUSn = "InstanceUserSummaries";
|
|
281
|
+
const _LI = "ListInstances";
|
|
282
|
+
const _LIP = "ListIdentityProviders";
|
|
283
|
+
const _LIPR = "ListIdentityProvidersRequest";
|
|
284
|
+
const _LIPRi = "ListIdentityProvidersResponse";
|
|
285
|
+
const _LIR = "ListInstancesRequest";
|
|
286
|
+
const _LIRi = "ListInstancesResponse";
|
|
287
|
+
const _LLSE = "ListLicenseServerEndpoints";
|
|
288
|
+
const _LLSER = "ListLicenseServerEndpointsRequest";
|
|
289
|
+
const _LLSERi = "ListLicenseServerEndpointsResponse";
|
|
290
|
+
const _LPS = "ListProductSubscriptions";
|
|
291
|
+
const _LPSR = "ListProductSubscriptionsRequest";
|
|
292
|
+
const _LPSRi = "ListProductSubscriptionsResponse";
|
|
293
|
+
const _LS = "LicenseServer";
|
|
294
|
+
const _LSCD = "LastStatusCheckDate";
|
|
295
|
+
const _LSE = "LicenseServerEndpoint";
|
|
296
|
+
const _LSEA = "LicenseServerEndpointArn";
|
|
297
|
+
const _LSEI = "LicenseServerEndpointId";
|
|
298
|
+
const _LSEL = "LicenseServerEndpointList";
|
|
299
|
+
const _LSEPS = "LicenseServerEndpointProvisioningStatus";
|
|
300
|
+
const _LSEi = "LicenseServerEndpoints";
|
|
301
|
+
const _LSL = "LicenseServerList";
|
|
302
|
+
const _LSS = "LicenseServerSettings";
|
|
303
|
+
const _LSi = "LicenseServers";
|
|
304
|
+
const _LTFR = "ListTagsForResource";
|
|
305
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
306
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
307
|
+
const _LUA = "ListUserAssociations";
|
|
308
|
+
const _LUAR = "ListUserAssociationsRequest";
|
|
309
|
+
const _LUARi = "ListUserAssociationsResponse";
|
|
310
|
+
const _MR = "MaxResults";
|
|
311
|
+
const _NT = "NextToken";
|
|
312
|
+
const _O = "Operation";
|
|
313
|
+
const _OAI = "OwnerAccountId";
|
|
314
|
+
const _P = "Product";
|
|
315
|
+
const _PS = "ProvisioningStatus";
|
|
316
|
+
const _PUA = "ProductUserArn";
|
|
317
|
+
const _PUS = "ProductUserSummaries";
|
|
318
|
+
const _PUSL = "ProductUserSummaryList";
|
|
319
|
+
const _PUSr = "ProductUserSummary";
|
|
320
|
+
const _Pr = "Products";
|
|
321
|
+
const _RA = "ResourceArn";
|
|
322
|
+
const _RIP = "RegisterIdentityProvider";
|
|
323
|
+
const _RIPR = "RegisterIdentityProviderRequest";
|
|
324
|
+
const _RIPRe = "RegisterIdentityProviderResponse";
|
|
325
|
+
const _RNFE = "ResourceNotFoundException";
|
|
326
|
+
const _RS = "RemoveSubnets";
|
|
327
|
+
const _RSCP = "RdsSalCredentialsProvider";
|
|
328
|
+
const _RSS = "RdsSalSettings";
|
|
329
|
+
const _S = "Subnets";
|
|
330
|
+
const _SE = "ServerEndpoint";
|
|
331
|
+
const _SED = "SubscriptionEndDate";
|
|
332
|
+
const _SGI = "SecurityGroupId";
|
|
333
|
+
const _SI = "SecretId";
|
|
334
|
+
const _SM = "StatusMessage";
|
|
335
|
+
const _SMCP = "SecretsManagerCredentialsProvider";
|
|
336
|
+
const _SPS = "StartProductSubscription";
|
|
337
|
+
const _SPSR = "StartProductSubscriptionRequest";
|
|
338
|
+
const _SPSRt = "StartProductSubscriptionResponse";
|
|
339
|
+
const _SPSRto = "StopProductSubscriptionRequest";
|
|
340
|
+
const _SPSRtop = "StopProductSubscriptionResponse";
|
|
341
|
+
const _SPSt = "StopProductSubscription";
|
|
342
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
343
|
+
const _SS = "ServerSettings";
|
|
344
|
+
const _SSD = "SubscriptionStartDate";
|
|
345
|
+
const _ST = "ServerType";
|
|
346
|
+
const _Se = "Settings";
|
|
347
|
+
const _St = "Status";
|
|
348
|
+
const _T = "Tags";
|
|
349
|
+
const _TE = "ThrottlingException";
|
|
931
350
|
const _TK = "TagKeys";
|
|
351
|
+
const _TKL = "TagKeyList";
|
|
352
|
+
const _TR = "TagResource";
|
|
353
|
+
const _TRR = "TagResourceRequest";
|
|
354
|
+
const _TRRa = "TagResourceResponse";
|
|
355
|
+
const _U = "Username";
|
|
356
|
+
const _UIPS = "UpdateIdentityProviderSettings";
|
|
357
|
+
const _UIPSR = "UpdateIdentityProviderSettingsRequest";
|
|
358
|
+
const _UIPSRp = "UpdateIdentityProviderSettingsResponse";
|
|
359
|
+
const _UR = "UntagResource";
|
|
360
|
+
const _URR = "UntagResourceRequest";
|
|
361
|
+
const _URRn = "UntagResourceResponse";
|
|
362
|
+
const _US = "UpdateSettings";
|
|
363
|
+
const _V = "Value";
|
|
364
|
+
const _VE = "ValidationException";
|
|
365
|
+
const _c = "client";
|
|
366
|
+
const _e = "error";
|
|
367
|
+
const _h = "http";
|
|
368
|
+
const _hE = "httpError";
|
|
369
|
+
const _hQ = "httpQuery";
|
|
370
|
+
const _m = "message";
|
|
371
|
+
const _s = "server";
|
|
372
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.licensemanagerusersubscriptions";
|
|
932
373
|
const _tK = "tagKeys";
|
|
374
|
+
const n0 = "com.amazonaws.licensemanagerusersubscriptions";
|
|
375
|
+
var AccessDeniedException = [
|
|
376
|
+
-3,
|
|
377
|
+
n0,
|
|
378
|
+
_ADE,
|
|
379
|
+
{
|
|
380
|
+
[_e]: _c,
|
|
381
|
+
},
|
|
382
|
+
[_m],
|
|
383
|
+
[0],
|
|
384
|
+
];
|
|
385
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
386
|
+
var ActiveDirectoryIdentityProvider = [
|
|
387
|
+
3,
|
|
388
|
+
n0,
|
|
389
|
+
_ADIP,
|
|
390
|
+
0,
|
|
391
|
+
[_DI, _ADS, _ADT, _ISAD],
|
|
392
|
+
[0, () => ActiveDirectorySettings, 0, 2],
|
|
393
|
+
];
|
|
394
|
+
var ActiveDirectorySettings = [
|
|
395
|
+
3,
|
|
396
|
+
n0,
|
|
397
|
+
_ADS,
|
|
398
|
+
0,
|
|
399
|
+
[_DN, _DIL, _DILo, _DCP, _DNS],
|
|
400
|
+
[0, 64 | 0, 64 | 0, () => CredentialsProvider, () => DomainNetworkSettings],
|
|
401
|
+
];
|
|
402
|
+
var AssociateUserRequest = [
|
|
403
|
+
3,
|
|
404
|
+
n0,
|
|
405
|
+
_AUR,
|
|
406
|
+
0,
|
|
407
|
+
[_U, _II, _IP, _D, _T],
|
|
408
|
+
[0, 0, () => IdentityProvider, 0, [() => Tags, 0]],
|
|
409
|
+
];
|
|
410
|
+
var AssociateUserResponse = [3, n0, _AURs, 0, [_IUS], [() => InstanceUserSummary]];
|
|
411
|
+
var ConflictException = [
|
|
412
|
+
-3,
|
|
413
|
+
n0,
|
|
414
|
+
_CE,
|
|
415
|
+
{
|
|
416
|
+
[_e]: _s,
|
|
417
|
+
},
|
|
418
|
+
[_m],
|
|
419
|
+
[0],
|
|
420
|
+
];
|
|
421
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
422
|
+
var CreateLicenseServerEndpointRequest = [
|
|
423
|
+
3,
|
|
424
|
+
n0,
|
|
425
|
+
_CLSER,
|
|
426
|
+
0,
|
|
427
|
+
[_IPA, _LSS, _T],
|
|
428
|
+
[0, () => LicenseServerSettings, [() => Tags, 0]],
|
|
429
|
+
];
|
|
430
|
+
var CreateLicenseServerEndpointResponse = [3, n0, _CLSERr, 0, [_IPA, _LSEA], [0, 0]];
|
|
431
|
+
var DeleteLicenseServerEndpointRequest = [3, n0, _DLSER, 0, [_LSEA, _ST], [0, 0]];
|
|
432
|
+
var DeleteLicenseServerEndpointResponse = [
|
|
433
|
+
3,
|
|
434
|
+
n0,
|
|
435
|
+
_DLSERe,
|
|
436
|
+
0,
|
|
437
|
+
[_LSE],
|
|
438
|
+
[() => LicenseServerEndpoint],
|
|
439
|
+
];
|
|
440
|
+
var DeregisterIdentityProviderRequest = [
|
|
441
|
+
3,
|
|
442
|
+
n0,
|
|
443
|
+
_DIPR,
|
|
444
|
+
0,
|
|
445
|
+
[_IP, _P, _IPA],
|
|
446
|
+
[() => IdentityProvider, 0, 0],
|
|
447
|
+
];
|
|
448
|
+
var DeregisterIdentityProviderResponse = [
|
|
449
|
+
3,
|
|
450
|
+
n0,
|
|
451
|
+
_DIPRe,
|
|
452
|
+
0,
|
|
453
|
+
[_IPS],
|
|
454
|
+
[() => IdentityProviderSummary],
|
|
455
|
+
];
|
|
456
|
+
var DisassociateUserRequest = [
|
|
457
|
+
3,
|
|
458
|
+
n0,
|
|
459
|
+
_DUR,
|
|
460
|
+
0,
|
|
461
|
+
[_U, _II, _IP, _IUA, _D],
|
|
462
|
+
[0, 0, () => IdentityProvider, 0, 0],
|
|
463
|
+
];
|
|
464
|
+
var DisassociateUserResponse = [3, n0, _DURi, 0, [_IUS], [() => InstanceUserSummary]];
|
|
465
|
+
var DomainNetworkSettings = [3, n0, _DNS, 0, [_S], [64 | 0]];
|
|
466
|
+
var Filter = [3, n0, _F, 0, [_A, _O, _V], [0, 0, 0]];
|
|
467
|
+
var IdentityProviderSummary = [
|
|
468
|
+
3,
|
|
469
|
+
n0,
|
|
470
|
+
_IPS,
|
|
471
|
+
0,
|
|
472
|
+
[_IP, _Se, _P, _St, _IPA, _FM, _OAI],
|
|
473
|
+
[() => IdentityProvider, () => Settings, 0, 0, 0, 0, 0],
|
|
474
|
+
];
|
|
475
|
+
var InstanceSummary = [
|
|
476
|
+
3,
|
|
477
|
+
n0,
|
|
478
|
+
_IS,
|
|
479
|
+
0,
|
|
480
|
+
[_II, _St, _Pr, _LSCD, _SM, _OAI, _IP],
|
|
481
|
+
[0, 0, 64 | 0, 0, 0, 0, () => IdentityProvider],
|
|
482
|
+
];
|
|
483
|
+
var InstanceUserSummary = [
|
|
484
|
+
3,
|
|
485
|
+
n0,
|
|
486
|
+
_IUS,
|
|
487
|
+
0,
|
|
488
|
+
[_U, _II, _IP, _St, _IUA, _SM, _D, _AD, _DD],
|
|
489
|
+
[0, 0, () => IdentityProvider, 0, 0, 0, 0, 0, 0],
|
|
490
|
+
];
|
|
491
|
+
var InternalServerException = [
|
|
492
|
+
-3,
|
|
493
|
+
n0,
|
|
494
|
+
_ISE,
|
|
495
|
+
{
|
|
496
|
+
[_e]: _s,
|
|
497
|
+
[_hE]: 500,
|
|
498
|
+
},
|
|
499
|
+
[_m],
|
|
500
|
+
[0],
|
|
501
|
+
];
|
|
502
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
503
|
+
var LicenseServer = [3, n0, _LS, 0, [_PS, _HS, _IA, _IAp], [0, 0, 0, 0]];
|
|
504
|
+
var LicenseServerEndpoint = [
|
|
505
|
+
3,
|
|
506
|
+
n0,
|
|
507
|
+
_LSE,
|
|
508
|
+
0,
|
|
509
|
+
[_IPA, _ST, _SE, _SM, _LSEI, _LSEA, _LSEPS, _LSi, _CT],
|
|
510
|
+
[0, 0, () => ServerEndpoint, 0, 0, 0, 0, () => LicenseServerList, 4],
|
|
511
|
+
];
|
|
512
|
+
var LicenseServerSettings = [3, n0, _LSS, 0, [_ST, _SS], [0, () => ServerSettings]];
|
|
513
|
+
var ListIdentityProvidersRequest = [
|
|
514
|
+
3,
|
|
515
|
+
n0,
|
|
516
|
+
_LIPR,
|
|
517
|
+
0,
|
|
518
|
+
[_MR, _Fi, _NT],
|
|
519
|
+
[1, () => FilterList, 0],
|
|
520
|
+
];
|
|
521
|
+
var ListIdentityProvidersResponse = [
|
|
522
|
+
3,
|
|
523
|
+
n0,
|
|
524
|
+
_LIPRi,
|
|
525
|
+
0,
|
|
526
|
+
[_IPSd, _NT],
|
|
527
|
+
[() => IdentityProviderSummaryList, 0],
|
|
528
|
+
];
|
|
529
|
+
var ListInstancesRequest = [3, n0, _LIR, 0, [_MR, _NT, _Fi], [1, 0, () => FilterList]];
|
|
530
|
+
var ListInstancesResponse = [
|
|
531
|
+
3,
|
|
532
|
+
n0,
|
|
533
|
+
_LIRi,
|
|
534
|
+
0,
|
|
535
|
+
[_ISn, _NT],
|
|
536
|
+
[() => InstanceSummaryList, 0],
|
|
537
|
+
];
|
|
538
|
+
var ListLicenseServerEndpointsRequest = [
|
|
539
|
+
3,
|
|
540
|
+
n0,
|
|
541
|
+
_LLSER,
|
|
542
|
+
0,
|
|
543
|
+
[_MR, _Fi, _NT],
|
|
544
|
+
[1, () => FilterList, 0],
|
|
545
|
+
];
|
|
546
|
+
var ListLicenseServerEndpointsResponse = [
|
|
547
|
+
3,
|
|
548
|
+
n0,
|
|
549
|
+
_LLSERi,
|
|
550
|
+
0,
|
|
551
|
+
[_LSEi, _NT],
|
|
552
|
+
[() => LicenseServerEndpointList, 0],
|
|
553
|
+
];
|
|
554
|
+
var ListProductSubscriptionsRequest = [
|
|
555
|
+
3,
|
|
556
|
+
n0,
|
|
557
|
+
_LPSR,
|
|
558
|
+
0,
|
|
559
|
+
[_P, _IP, _MR, _Fi, _NT],
|
|
560
|
+
[0, () => IdentityProvider, 1, () => FilterList, 0],
|
|
561
|
+
];
|
|
562
|
+
var ListProductSubscriptionsResponse = [
|
|
563
|
+
3,
|
|
564
|
+
n0,
|
|
565
|
+
_LPSRi,
|
|
566
|
+
0,
|
|
567
|
+
[_PUS, _NT],
|
|
568
|
+
[() => ProductUserSummaryList, 0],
|
|
569
|
+
];
|
|
570
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [[0, 1]]];
|
|
571
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [[() => Tags, 0]]];
|
|
572
|
+
var ListUserAssociationsRequest = [
|
|
573
|
+
3,
|
|
574
|
+
n0,
|
|
575
|
+
_LUAR,
|
|
576
|
+
0,
|
|
577
|
+
[_II, _IP, _MR, _Fi, _NT],
|
|
578
|
+
[0, () => IdentityProvider, 1, () => FilterList, 0],
|
|
579
|
+
];
|
|
580
|
+
var ListUserAssociationsResponse = [
|
|
581
|
+
3,
|
|
582
|
+
n0,
|
|
583
|
+
_LUARi,
|
|
584
|
+
0,
|
|
585
|
+
[_IUSn, _NT],
|
|
586
|
+
[() => InstanceUserSummaryList, 0],
|
|
587
|
+
];
|
|
588
|
+
var ProductUserSummary = [
|
|
589
|
+
3,
|
|
590
|
+
n0,
|
|
591
|
+
_PUSr,
|
|
592
|
+
0,
|
|
593
|
+
[_U, _P, _IP, _St, _PUA, _SM, _D, _SSD, _SED],
|
|
594
|
+
[0, 0, () => IdentityProvider, 0, 0, 0, 0, 0, 0],
|
|
595
|
+
];
|
|
596
|
+
var RdsSalSettings = [3, n0, _RSS, 0, [_RSCP], [() => CredentialsProvider]];
|
|
597
|
+
var RegisterIdentityProviderRequest = [
|
|
598
|
+
3,
|
|
599
|
+
n0,
|
|
600
|
+
_RIPR,
|
|
601
|
+
0,
|
|
602
|
+
[_IP, _P, _Se, _T],
|
|
603
|
+
[() => IdentityProvider, 0, () => Settings, [() => Tags, 0]],
|
|
604
|
+
];
|
|
605
|
+
var RegisterIdentityProviderResponse = [
|
|
606
|
+
3,
|
|
607
|
+
n0,
|
|
608
|
+
_RIPRe,
|
|
609
|
+
0,
|
|
610
|
+
[_IPS],
|
|
611
|
+
[() => IdentityProviderSummary],
|
|
612
|
+
];
|
|
613
|
+
var ResourceNotFoundException = [
|
|
614
|
+
-3,
|
|
615
|
+
n0,
|
|
616
|
+
_RNFE,
|
|
617
|
+
{
|
|
618
|
+
[_e]: _c,
|
|
619
|
+
[_hE]: 404,
|
|
620
|
+
},
|
|
621
|
+
[_m],
|
|
622
|
+
[0],
|
|
623
|
+
];
|
|
624
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
625
|
+
var SecretsManagerCredentialsProvider = [3, n0, _SMCP, 0, [_SI], [0]];
|
|
626
|
+
var ServerEndpoint = [3, n0, _SE, 0, [_E], [0]];
|
|
627
|
+
var ServiceQuotaExceededException = [
|
|
628
|
+
-3,
|
|
629
|
+
n0,
|
|
630
|
+
_SQEE,
|
|
631
|
+
{
|
|
632
|
+
[_e]: _c,
|
|
633
|
+
},
|
|
634
|
+
[_m],
|
|
635
|
+
[0],
|
|
636
|
+
];
|
|
637
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
638
|
+
var Settings = [3, n0, _Se, 0, [_S, _SGI], [64 | 0, 0]];
|
|
639
|
+
var StartProductSubscriptionRequest = [
|
|
640
|
+
3,
|
|
641
|
+
n0,
|
|
642
|
+
_SPSR,
|
|
643
|
+
0,
|
|
644
|
+
[_U, _IP, _P, _D, _T],
|
|
645
|
+
[0, () => IdentityProvider, 0, 0, [() => Tags, 0]],
|
|
646
|
+
];
|
|
647
|
+
var StartProductSubscriptionResponse = [
|
|
648
|
+
3,
|
|
649
|
+
n0,
|
|
650
|
+
_SPSRt,
|
|
651
|
+
0,
|
|
652
|
+
[_PUSr],
|
|
653
|
+
[() => ProductUserSummary],
|
|
654
|
+
];
|
|
655
|
+
var StopProductSubscriptionRequest = [
|
|
656
|
+
3,
|
|
657
|
+
n0,
|
|
658
|
+
_SPSRto,
|
|
659
|
+
0,
|
|
660
|
+
[_U, _IP, _P, _PUA, _D],
|
|
661
|
+
[0, () => IdentityProvider, 0, 0, 0],
|
|
662
|
+
];
|
|
663
|
+
var StopProductSubscriptionResponse = [
|
|
664
|
+
3,
|
|
665
|
+
n0,
|
|
666
|
+
_SPSRtop,
|
|
667
|
+
0,
|
|
668
|
+
[_PUSr],
|
|
669
|
+
[() => ProductUserSummary],
|
|
670
|
+
];
|
|
671
|
+
var TagResourceRequest = [
|
|
672
|
+
3,
|
|
673
|
+
n0,
|
|
674
|
+
_TRR,
|
|
675
|
+
0,
|
|
676
|
+
[_RA, _T],
|
|
677
|
+
[
|
|
678
|
+
[0, 1],
|
|
679
|
+
[() => Tags, 0],
|
|
680
|
+
],
|
|
681
|
+
];
|
|
682
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
683
|
+
var ThrottlingException = [
|
|
684
|
+
-3,
|
|
685
|
+
n0,
|
|
686
|
+
_TE,
|
|
687
|
+
{
|
|
688
|
+
[_e]: _c,
|
|
689
|
+
},
|
|
690
|
+
[_m],
|
|
691
|
+
[0],
|
|
692
|
+
];
|
|
693
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
694
|
+
var UntagResourceRequest = [
|
|
695
|
+
3,
|
|
696
|
+
n0,
|
|
697
|
+
_URR,
|
|
698
|
+
0,
|
|
699
|
+
[_RA, _TK],
|
|
700
|
+
[
|
|
701
|
+
[0, 1],
|
|
702
|
+
[
|
|
703
|
+
() => TagKeyList,
|
|
704
|
+
{
|
|
705
|
+
[_hQ]: _tK,
|
|
706
|
+
},
|
|
707
|
+
],
|
|
708
|
+
],
|
|
709
|
+
];
|
|
710
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
711
|
+
var UpdateIdentityProviderSettingsRequest = [
|
|
712
|
+
3,
|
|
713
|
+
n0,
|
|
714
|
+
_UIPSR,
|
|
715
|
+
0,
|
|
716
|
+
[_IP, _P, _IPA, _US],
|
|
717
|
+
[() => IdentityProvider, 0, 0, () => UpdateSettings],
|
|
718
|
+
];
|
|
719
|
+
var UpdateIdentityProviderSettingsResponse = [
|
|
720
|
+
3,
|
|
721
|
+
n0,
|
|
722
|
+
_UIPSRp,
|
|
723
|
+
0,
|
|
724
|
+
[_IPS],
|
|
725
|
+
[() => IdentityProviderSummary],
|
|
726
|
+
];
|
|
727
|
+
var UpdateSettings = [3, n0, _US, 0, [_AS, _RS, _SGI], [64 | 0, 64 | 0, 0]];
|
|
728
|
+
var ValidationException = [
|
|
729
|
+
-3,
|
|
730
|
+
n0,
|
|
731
|
+
_VE,
|
|
732
|
+
{
|
|
733
|
+
[_e]: _c,
|
|
734
|
+
},
|
|
735
|
+
[_m],
|
|
736
|
+
[0],
|
|
737
|
+
];
|
|
738
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
739
|
+
var LicenseManagerUserSubscriptionsServiceException = [
|
|
740
|
+
-3,
|
|
741
|
+
_sm,
|
|
742
|
+
"LicenseManagerUserSubscriptionsServiceException",
|
|
743
|
+
0,
|
|
744
|
+
[],
|
|
745
|
+
[],
|
|
746
|
+
];
|
|
747
|
+
schema.TypeRegistry.for(_sm).registerError(LicenseManagerUserSubscriptionsServiceException, LicenseManagerUserSubscriptionsServiceException$1);
|
|
748
|
+
var FilterList = [1, n0, _FL, 0, () => Filter];
|
|
749
|
+
var IdentityProviderSummaryList = [1, n0, _IPSL, 0, () => IdentityProviderSummary];
|
|
750
|
+
var InstanceSummaryList = [1, n0, _ISL, 0, () => InstanceSummary];
|
|
751
|
+
var InstanceUserSummaryList = [1, n0, _IUSL, 0, () => InstanceUserSummary];
|
|
752
|
+
var LicenseServerEndpointList = [1, n0, _LSEL, 0, () => LicenseServerEndpoint];
|
|
753
|
+
var LicenseServerList = [1, n0, _LSL, 0, () => LicenseServer];
|
|
754
|
+
var ProductUserSummaryList = [1, n0, _PUSL, 0, () => ProductUserSummary];
|
|
755
|
+
var TagKeyList = [1, n0, _TKL, 8, 0];
|
|
756
|
+
var Tags = [2, n0, _T, 8, 0, 0];
|
|
757
|
+
var CredentialsProvider = [
|
|
758
|
+
3,
|
|
759
|
+
n0,
|
|
760
|
+
_CP,
|
|
761
|
+
0,
|
|
762
|
+
[_SMCP],
|
|
763
|
+
[() => SecretsManagerCredentialsProvider],
|
|
764
|
+
];
|
|
765
|
+
var IdentityProvider = [3, n0, _IP, 0, [_ADIP], [() => ActiveDirectoryIdentityProvider]];
|
|
766
|
+
var ServerSettings = [3, n0, _SS, 0, [_RSS], [() => RdsSalSettings]];
|
|
767
|
+
var AssociateUser = [
|
|
768
|
+
9,
|
|
769
|
+
n0,
|
|
770
|
+
_AU,
|
|
771
|
+
{
|
|
772
|
+
[_h]: ["POST", "/user/AssociateUser", 200],
|
|
773
|
+
},
|
|
774
|
+
() => AssociateUserRequest,
|
|
775
|
+
() => AssociateUserResponse,
|
|
776
|
+
];
|
|
777
|
+
var CreateLicenseServerEndpoint = [
|
|
778
|
+
9,
|
|
779
|
+
n0,
|
|
780
|
+
_CLSE,
|
|
781
|
+
{
|
|
782
|
+
[_h]: ["POST", "/license-server/CreateLicenseServerEndpoint", 200],
|
|
783
|
+
},
|
|
784
|
+
() => CreateLicenseServerEndpointRequest,
|
|
785
|
+
() => CreateLicenseServerEndpointResponse,
|
|
786
|
+
];
|
|
787
|
+
var DeleteLicenseServerEndpoint = [
|
|
788
|
+
9,
|
|
789
|
+
n0,
|
|
790
|
+
_DLSE,
|
|
791
|
+
{
|
|
792
|
+
[_h]: ["POST", "/license-server/DeleteLicenseServerEndpoint", 200],
|
|
793
|
+
},
|
|
794
|
+
() => DeleteLicenseServerEndpointRequest,
|
|
795
|
+
() => DeleteLicenseServerEndpointResponse,
|
|
796
|
+
];
|
|
797
|
+
var DeregisterIdentityProvider = [
|
|
798
|
+
9,
|
|
799
|
+
n0,
|
|
800
|
+
_DIP,
|
|
801
|
+
{
|
|
802
|
+
[_h]: ["POST", "/identity-provider/DeregisterIdentityProvider", 200],
|
|
803
|
+
},
|
|
804
|
+
() => DeregisterIdentityProviderRequest,
|
|
805
|
+
() => DeregisterIdentityProviderResponse,
|
|
806
|
+
];
|
|
807
|
+
var DisassociateUser = [
|
|
808
|
+
9,
|
|
809
|
+
n0,
|
|
810
|
+
_DU,
|
|
811
|
+
{
|
|
812
|
+
[_h]: ["POST", "/user/DisassociateUser", 200],
|
|
813
|
+
},
|
|
814
|
+
() => DisassociateUserRequest,
|
|
815
|
+
() => DisassociateUserResponse,
|
|
816
|
+
];
|
|
817
|
+
var ListIdentityProviders = [
|
|
818
|
+
9,
|
|
819
|
+
n0,
|
|
820
|
+
_LIP,
|
|
821
|
+
{
|
|
822
|
+
[_h]: ["POST", "/identity-provider/ListIdentityProviders", 200],
|
|
823
|
+
},
|
|
824
|
+
() => ListIdentityProvidersRequest,
|
|
825
|
+
() => ListIdentityProvidersResponse,
|
|
826
|
+
];
|
|
827
|
+
var ListInstances = [
|
|
828
|
+
9,
|
|
829
|
+
n0,
|
|
830
|
+
_LI,
|
|
831
|
+
{
|
|
832
|
+
[_h]: ["POST", "/instance/ListInstances", 200],
|
|
833
|
+
},
|
|
834
|
+
() => ListInstancesRequest,
|
|
835
|
+
() => ListInstancesResponse,
|
|
836
|
+
];
|
|
837
|
+
var ListLicenseServerEndpoints = [
|
|
838
|
+
9,
|
|
839
|
+
n0,
|
|
840
|
+
_LLSE,
|
|
841
|
+
{
|
|
842
|
+
[_h]: ["POST", "/license-server/ListLicenseServerEndpoints", 200],
|
|
843
|
+
},
|
|
844
|
+
() => ListLicenseServerEndpointsRequest,
|
|
845
|
+
() => ListLicenseServerEndpointsResponse,
|
|
846
|
+
];
|
|
847
|
+
var ListProductSubscriptions = [
|
|
848
|
+
9,
|
|
849
|
+
n0,
|
|
850
|
+
_LPS,
|
|
851
|
+
{
|
|
852
|
+
[_h]: ["POST", "/user/ListProductSubscriptions", 200],
|
|
853
|
+
},
|
|
854
|
+
() => ListProductSubscriptionsRequest,
|
|
855
|
+
() => ListProductSubscriptionsResponse,
|
|
856
|
+
];
|
|
857
|
+
var ListTagsForResource = [
|
|
858
|
+
9,
|
|
859
|
+
n0,
|
|
860
|
+
_LTFR,
|
|
861
|
+
{
|
|
862
|
+
[_h]: ["GET", "/tags/{ResourceArn}", 200],
|
|
863
|
+
},
|
|
864
|
+
() => ListTagsForResourceRequest,
|
|
865
|
+
() => ListTagsForResourceResponse,
|
|
866
|
+
];
|
|
867
|
+
var ListUserAssociations = [
|
|
868
|
+
9,
|
|
869
|
+
n0,
|
|
870
|
+
_LUA,
|
|
871
|
+
{
|
|
872
|
+
[_h]: ["POST", "/user/ListUserAssociations", 200],
|
|
873
|
+
},
|
|
874
|
+
() => ListUserAssociationsRequest,
|
|
875
|
+
() => ListUserAssociationsResponse,
|
|
876
|
+
];
|
|
877
|
+
var RegisterIdentityProvider = [
|
|
878
|
+
9,
|
|
879
|
+
n0,
|
|
880
|
+
_RIP,
|
|
881
|
+
{
|
|
882
|
+
[_h]: ["POST", "/identity-provider/RegisterIdentityProvider", 200],
|
|
883
|
+
},
|
|
884
|
+
() => RegisterIdentityProviderRequest,
|
|
885
|
+
() => RegisterIdentityProviderResponse,
|
|
886
|
+
];
|
|
887
|
+
var StartProductSubscription = [
|
|
888
|
+
9,
|
|
889
|
+
n0,
|
|
890
|
+
_SPS,
|
|
891
|
+
{
|
|
892
|
+
[_h]: ["POST", "/user/StartProductSubscription", 200],
|
|
893
|
+
},
|
|
894
|
+
() => StartProductSubscriptionRequest,
|
|
895
|
+
() => StartProductSubscriptionResponse,
|
|
896
|
+
];
|
|
897
|
+
var StopProductSubscription = [
|
|
898
|
+
9,
|
|
899
|
+
n0,
|
|
900
|
+
_SPSt,
|
|
901
|
+
{
|
|
902
|
+
[_h]: ["POST", "/user/StopProductSubscription", 200],
|
|
903
|
+
},
|
|
904
|
+
() => StopProductSubscriptionRequest,
|
|
905
|
+
() => StopProductSubscriptionResponse,
|
|
906
|
+
];
|
|
907
|
+
var TagResource = [
|
|
908
|
+
9,
|
|
909
|
+
n0,
|
|
910
|
+
_TR,
|
|
911
|
+
{
|
|
912
|
+
[_h]: ["PUT", "/tags/{ResourceArn}", 200],
|
|
913
|
+
},
|
|
914
|
+
() => TagResourceRequest,
|
|
915
|
+
() => TagResourceResponse,
|
|
916
|
+
];
|
|
917
|
+
var UntagResource = [
|
|
918
|
+
9,
|
|
919
|
+
n0,
|
|
920
|
+
_UR,
|
|
921
|
+
{
|
|
922
|
+
[_h]: ["DELETE", "/tags/{ResourceArn}", 200],
|
|
923
|
+
},
|
|
924
|
+
() => UntagResourceRequest,
|
|
925
|
+
() => UntagResourceResponse,
|
|
926
|
+
];
|
|
927
|
+
var UpdateIdentityProviderSettings = [
|
|
928
|
+
9,
|
|
929
|
+
n0,
|
|
930
|
+
_UIPS,
|
|
931
|
+
{
|
|
932
|
+
[_h]: ["POST", "/identity-provider/UpdateIdentityProviderSettings", 200],
|
|
933
|
+
},
|
|
934
|
+
() => UpdateIdentityProviderSettingsRequest,
|
|
935
|
+
() => UpdateIdentityProviderSettingsResponse,
|
|
936
|
+
];
|
|
933
937
|
|
|
934
938
|
class AssociateUserCommand extends smithyClient.Command
|
|
935
939
|
.classBuilder()
|
|
936
940
|
.ep(commonParams)
|
|
937
941
|
.m(function (Command, cs, config, o) {
|
|
938
|
-
return [
|
|
939
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
940
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
941
|
-
];
|
|
942
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
942
943
|
})
|
|
943
944
|
.s("LicenseManagerUserSubscriptions", "AssociateUser", {})
|
|
944
945
|
.n("LicenseManagerUserSubscriptionsClient", "AssociateUserCommand")
|
|
945
|
-
.
|
|
946
|
-
.ser(se_AssociateUserCommand)
|
|
947
|
-
.de(de_AssociateUserCommand)
|
|
946
|
+
.sc(AssociateUser)
|
|
948
947
|
.build() {
|
|
949
948
|
}
|
|
950
949
|
|
|
@@ -952,16 +951,11 @@ class CreateLicenseServerEndpointCommand extends smithyClient.Command
|
|
|
952
951
|
.classBuilder()
|
|
953
952
|
.ep(commonParams)
|
|
954
953
|
.m(function (Command, cs, config, o) {
|
|
955
|
-
return [
|
|
956
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
957
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
958
|
-
];
|
|
954
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
959
955
|
})
|
|
960
956
|
.s("LicenseManagerUserSubscriptions", "CreateLicenseServerEndpoint", {})
|
|
961
957
|
.n("LicenseManagerUserSubscriptionsClient", "CreateLicenseServerEndpointCommand")
|
|
962
|
-
.
|
|
963
|
-
.ser(se_CreateLicenseServerEndpointCommand)
|
|
964
|
-
.de(de_CreateLicenseServerEndpointCommand)
|
|
958
|
+
.sc(CreateLicenseServerEndpoint)
|
|
965
959
|
.build() {
|
|
966
960
|
}
|
|
967
961
|
|
|
@@ -969,16 +963,11 @@ class DeleteLicenseServerEndpointCommand extends smithyClient.Command
|
|
|
969
963
|
.classBuilder()
|
|
970
964
|
.ep(commonParams)
|
|
971
965
|
.m(function (Command, cs, config, o) {
|
|
972
|
-
return [
|
|
973
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
974
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
975
|
-
];
|
|
966
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
976
967
|
})
|
|
977
968
|
.s("LicenseManagerUserSubscriptions", "DeleteLicenseServerEndpoint", {})
|
|
978
969
|
.n("LicenseManagerUserSubscriptionsClient", "DeleteLicenseServerEndpointCommand")
|
|
979
|
-
.
|
|
980
|
-
.ser(se_DeleteLicenseServerEndpointCommand)
|
|
981
|
-
.de(de_DeleteLicenseServerEndpointCommand)
|
|
970
|
+
.sc(DeleteLicenseServerEndpoint)
|
|
982
971
|
.build() {
|
|
983
972
|
}
|
|
984
973
|
|
|
@@ -986,16 +975,11 @@ class DeregisterIdentityProviderCommand extends smithyClient.Command
|
|
|
986
975
|
.classBuilder()
|
|
987
976
|
.ep(commonParams)
|
|
988
977
|
.m(function (Command, cs, config, o) {
|
|
989
|
-
return [
|
|
990
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
991
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
992
|
-
];
|
|
978
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
993
979
|
})
|
|
994
980
|
.s("LicenseManagerUserSubscriptions", "DeregisterIdentityProvider", {})
|
|
995
981
|
.n("LicenseManagerUserSubscriptionsClient", "DeregisterIdentityProviderCommand")
|
|
996
|
-
.
|
|
997
|
-
.ser(se_DeregisterIdentityProviderCommand)
|
|
998
|
-
.de(de_DeregisterIdentityProviderCommand)
|
|
982
|
+
.sc(DeregisterIdentityProvider)
|
|
999
983
|
.build() {
|
|
1000
984
|
}
|
|
1001
985
|
|
|
@@ -1003,16 +987,11 @@ class DisassociateUserCommand extends smithyClient.Command
|
|
|
1003
987
|
.classBuilder()
|
|
1004
988
|
.ep(commonParams)
|
|
1005
989
|
.m(function (Command, cs, config, o) {
|
|
1006
|
-
return [
|
|
1007
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1008
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1009
|
-
];
|
|
990
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1010
991
|
})
|
|
1011
992
|
.s("LicenseManagerUserSubscriptions", "DisassociateUser", {})
|
|
1012
993
|
.n("LicenseManagerUserSubscriptionsClient", "DisassociateUserCommand")
|
|
1013
|
-
.
|
|
1014
|
-
.ser(se_DisassociateUserCommand)
|
|
1015
|
-
.de(de_DisassociateUserCommand)
|
|
994
|
+
.sc(DisassociateUser)
|
|
1016
995
|
.build() {
|
|
1017
996
|
}
|
|
1018
997
|
|
|
@@ -1020,16 +999,11 @@ class ListIdentityProvidersCommand extends smithyClient.Command
|
|
|
1020
999
|
.classBuilder()
|
|
1021
1000
|
.ep(commonParams)
|
|
1022
1001
|
.m(function (Command, cs, config, o) {
|
|
1023
|
-
return [
|
|
1024
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1025
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1026
|
-
];
|
|
1002
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1027
1003
|
})
|
|
1028
1004
|
.s("LicenseManagerUserSubscriptions", "ListIdentityProviders", {})
|
|
1029
1005
|
.n("LicenseManagerUserSubscriptionsClient", "ListIdentityProvidersCommand")
|
|
1030
|
-
.
|
|
1031
|
-
.ser(se_ListIdentityProvidersCommand)
|
|
1032
|
-
.de(de_ListIdentityProvidersCommand)
|
|
1006
|
+
.sc(ListIdentityProviders)
|
|
1033
1007
|
.build() {
|
|
1034
1008
|
}
|
|
1035
1009
|
|
|
@@ -1037,16 +1011,11 @@ class ListInstancesCommand extends smithyClient.Command
|
|
|
1037
1011
|
.classBuilder()
|
|
1038
1012
|
.ep(commonParams)
|
|
1039
1013
|
.m(function (Command, cs, config, o) {
|
|
1040
|
-
return [
|
|
1041
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1042
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1043
|
-
];
|
|
1014
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1044
1015
|
})
|
|
1045
1016
|
.s("LicenseManagerUserSubscriptions", "ListInstances", {})
|
|
1046
1017
|
.n("LicenseManagerUserSubscriptionsClient", "ListInstancesCommand")
|
|
1047
|
-
.
|
|
1048
|
-
.ser(se_ListInstancesCommand)
|
|
1049
|
-
.de(de_ListInstancesCommand)
|
|
1018
|
+
.sc(ListInstances)
|
|
1050
1019
|
.build() {
|
|
1051
1020
|
}
|
|
1052
1021
|
|
|
@@ -1054,16 +1023,11 @@ class ListLicenseServerEndpointsCommand extends smithyClient.Command
|
|
|
1054
1023
|
.classBuilder()
|
|
1055
1024
|
.ep(commonParams)
|
|
1056
1025
|
.m(function (Command, cs, config, o) {
|
|
1057
|
-
return [
|
|
1058
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1059
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1060
|
-
];
|
|
1026
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1061
1027
|
})
|
|
1062
1028
|
.s("LicenseManagerUserSubscriptions", "ListLicenseServerEndpoints", {})
|
|
1063
1029
|
.n("LicenseManagerUserSubscriptionsClient", "ListLicenseServerEndpointsCommand")
|
|
1064
|
-
.
|
|
1065
|
-
.ser(se_ListLicenseServerEndpointsCommand)
|
|
1066
|
-
.de(de_ListLicenseServerEndpointsCommand)
|
|
1030
|
+
.sc(ListLicenseServerEndpoints)
|
|
1067
1031
|
.build() {
|
|
1068
1032
|
}
|
|
1069
1033
|
|
|
@@ -1071,16 +1035,11 @@ class ListProductSubscriptionsCommand extends smithyClient.Command
|
|
|
1071
1035
|
.classBuilder()
|
|
1072
1036
|
.ep(commonParams)
|
|
1073
1037
|
.m(function (Command, cs, config, o) {
|
|
1074
|
-
return [
|
|
1075
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1076
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1077
|
-
];
|
|
1038
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1078
1039
|
})
|
|
1079
1040
|
.s("LicenseManagerUserSubscriptions", "ListProductSubscriptions", {})
|
|
1080
1041
|
.n("LicenseManagerUserSubscriptionsClient", "ListProductSubscriptionsCommand")
|
|
1081
|
-
.
|
|
1082
|
-
.ser(se_ListProductSubscriptionsCommand)
|
|
1083
|
-
.de(de_ListProductSubscriptionsCommand)
|
|
1042
|
+
.sc(ListProductSubscriptions)
|
|
1084
1043
|
.build() {
|
|
1085
1044
|
}
|
|
1086
1045
|
|
|
@@ -1088,16 +1047,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1088
1047
|
.classBuilder()
|
|
1089
1048
|
.ep(commonParams)
|
|
1090
1049
|
.m(function (Command, cs, config, o) {
|
|
1091
|
-
return [
|
|
1092
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1093
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1094
|
-
];
|
|
1050
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1095
1051
|
})
|
|
1096
1052
|
.s("LicenseManagerUserSubscriptions", "ListTagsForResource", {})
|
|
1097
1053
|
.n("LicenseManagerUserSubscriptionsClient", "ListTagsForResourceCommand")
|
|
1098
|
-
.
|
|
1099
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1100
|
-
.de(de_ListTagsForResourceCommand)
|
|
1054
|
+
.sc(ListTagsForResource)
|
|
1101
1055
|
.build() {
|
|
1102
1056
|
}
|
|
1103
1057
|
|
|
@@ -1105,16 +1059,11 @@ class ListUserAssociationsCommand extends smithyClient.Command
|
|
|
1105
1059
|
.classBuilder()
|
|
1106
1060
|
.ep(commonParams)
|
|
1107
1061
|
.m(function (Command, cs, config, o) {
|
|
1108
|
-
return [
|
|
1109
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1110
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1111
|
-
];
|
|
1062
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1112
1063
|
})
|
|
1113
1064
|
.s("LicenseManagerUserSubscriptions", "ListUserAssociations", {})
|
|
1114
1065
|
.n("LicenseManagerUserSubscriptionsClient", "ListUserAssociationsCommand")
|
|
1115
|
-
.
|
|
1116
|
-
.ser(se_ListUserAssociationsCommand)
|
|
1117
|
-
.de(de_ListUserAssociationsCommand)
|
|
1066
|
+
.sc(ListUserAssociations)
|
|
1118
1067
|
.build() {
|
|
1119
1068
|
}
|
|
1120
1069
|
|
|
@@ -1122,16 +1071,11 @@ class RegisterIdentityProviderCommand extends smithyClient.Command
|
|
|
1122
1071
|
.classBuilder()
|
|
1123
1072
|
.ep(commonParams)
|
|
1124
1073
|
.m(function (Command, cs, config, o) {
|
|
1125
|
-
return [
|
|
1126
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1127
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1128
|
-
];
|
|
1074
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1129
1075
|
})
|
|
1130
1076
|
.s("LicenseManagerUserSubscriptions", "RegisterIdentityProvider", {})
|
|
1131
1077
|
.n("LicenseManagerUserSubscriptionsClient", "RegisterIdentityProviderCommand")
|
|
1132
|
-
.
|
|
1133
|
-
.ser(se_RegisterIdentityProviderCommand)
|
|
1134
|
-
.de(de_RegisterIdentityProviderCommand)
|
|
1078
|
+
.sc(RegisterIdentityProvider)
|
|
1135
1079
|
.build() {
|
|
1136
1080
|
}
|
|
1137
1081
|
|
|
@@ -1139,16 +1083,11 @@ class StartProductSubscriptionCommand extends smithyClient.Command
|
|
|
1139
1083
|
.classBuilder()
|
|
1140
1084
|
.ep(commonParams)
|
|
1141
1085
|
.m(function (Command, cs, config, o) {
|
|
1142
|
-
return [
|
|
1143
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1144
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1145
|
-
];
|
|
1086
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1146
1087
|
})
|
|
1147
1088
|
.s("LicenseManagerUserSubscriptions", "StartProductSubscription", {})
|
|
1148
1089
|
.n("LicenseManagerUserSubscriptionsClient", "StartProductSubscriptionCommand")
|
|
1149
|
-
.
|
|
1150
|
-
.ser(se_StartProductSubscriptionCommand)
|
|
1151
|
-
.de(de_StartProductSubscriptionCommand)
|
|
1090
|
+
.sc(StartProductSubscription)
|
|
1152
1091
|
.build() {
|
|
1153
1092
|
}
|
|
1154
1093
|
|
|
@@ -1156,16 +1095,11 @@ class StopProductSubscriptionCommand extends smithyClient.Command
|
|
|
1156
1095
|
.classBuilder()
|
|
1157
1096
|
.ep(commonParams)
|
|
1158
1097
|
.m(function (Command, cs, config, o) {
|
|
1159
|
-
return [
|
|
1160
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1161
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1162
|
-
];
|
|
1098
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1163
1099
|
})
|
|
1164
1100
|
.s("LicenseManagerUserSubscriptions", "StopProductSubscription", {})
|
|
1165
1101
|
.n("LicenseManagerUserSubscriptionsClient", "StopProductSubscriptionCommand")
|
|
1166
|
-
.
|
|
1167
|
-
.ser(se_StopProductSubscriptionCommand)
|
|
1168
|
-
.de(de_StopProductSubscriptionCommand)
|
|
1102
|
+
.sc(StopProductSubscription)
|
|
1169
1103
|
.build() {
|
|
1170
1104
|
}
|
|
1171
1105
|
|
|
@@ -1173,16 +1107,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1173
1107
|
.classBuilder()
|
|
1174
1108
|
.ep(commonParams)
|
|
1175
1109
|
.m(function (Command, cs, config, o) {
|
|
1176
|
-
return [
|
|
1177
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1178
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1179
|
-
];
|
|
1110
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1180
1111
|
})
|
|
1181
1112
|
.s("LicenseManagerUserSubscriptions", "TagResource", {})
|
|
1182
1113
|
.n("LicenseManagerUserSubscriptionsClient", "TagResourceCommand")
|
|
1183
|
-
.
|
|
1184
|
-
.ser(se_TagResourceCommand)
|
|
1185
|
-
.de(de_TagResourceCommand)
|
|
1114
|
+
.sc(TagResource)
|
|
1186
1115
|
.build() {
|
|
1187
1116
|
}
|
|
1188
1117
|
|
|
@@ -1190,16 +1119,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1190
1119
|
.classBuilder()
|
|
1191
1120
|
.ep(commonParams)
|
|
1192
1121
|
.m(function (Command, cs, config, o) {
|
|
1193
|
-
return [
|
|
1194
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1195
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1196
|
-
];
|
|
1122
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1197
1123
|
})
|
|
1198
1124
|
.s("LicenseManagerUserSubscriptions", "UntagResource", {})
|
|
1199
1125
|
.n("LicenseManagerUserSubscriptionsClient", "UntagResourceCommand")
|
|
1200
|
-
.
|
|
1201
|
-
.ser(se_UntagResourceCommand)
|
|
1202
|
-
.de(de_UntagResourceCommand)
|
|
1126
|
+
.sc(UntagResource)
|
|
1203
1127
|
.build() {
|
|
1204
1128
|
}
|
|
1205
1129
|
|
|
@@ -1207,16 +1131,11 @@ class UpdateIdentityProviderSettingsCommand extends smithyClient.Command
|
|
|
1207
1131
|
.classBuilder()
|
|
1208
1132
|
.ep(commonParams)
|
|
1209
1133
|
.m(function (Command, cs, config, o) {
|
|
1210
|
-
return [
|
|
1211
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1212
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1213
|
-
];
|
|
1134
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1214
1135
|
})
|
|
1215
1136
|
.s("LicenseManagerUserSubscriptions", "UpdateIdentityProviderSettings", {})
|
|
1216
1137
|
.n("LicenseManagerUserSubscriptionsClient", "UpdateIdentityProviderSettingsCommand")
|
|
1217
|
-
.
|
|
1218
|
-
.ser(se_UpdateIdentityProviderSettingsCommand)
|
|
1219
|
-
.de(de_UpdateIdentityProviderSettingsCommand)
|
|
1138
|
+
.sc(UpdateIdentityProviderSettings)
|
|
1220
1139
|
.build() {
|
|
1221
1140
|
}
|
|
1222
1141
|
|
|
@@ -1261,20 +1180,18 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1261
1180
|
enumerable: true,
|
|
1262
1181
|
get: function () { return smithyClient.Client; }
|
|
1263
1182
|
});
|
|
1264
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1183
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1265
1184
|
exports.ActiveDirectoryType = ActiveDirectoryType;
|
|
1266
1185
|
exports.AssociateUserCommand = AssociateUserCommand;
|
|
1267
|
-
exports.
|
|
1268
|
-
exports.ConflictException = ConflictException;
|
|
1186
|
+
exports.ConflictException = ConflictException$1;
|
|
1269
1187
|
exports.CreateLicenseServerEndpointCommand = CreateLicenseServerEndpointCommand;
|
|
1270
|
-
exports.CreateLicenseServerEndpointRequestFilterSensitiveLog = CreateLicenseServerEndpointRequestFilterSensitiveLog;
|
|
1271
1188
|
exports.DeleteLicenseServerEndpointCommand = DeleteLicenseServerEndpointCommand;
|
|
1272
1189
|
exports.DeregisterIdentityProviderCommand = DeregisterIdentityProviderCommand;
|
|
1273
1190
|
exports.DisassociateUserCommand = DisassociateUserCommand;
|
|
1274
|
-
exports.InternalServerException = InternalServerException;
|
|
1191
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1275
1192
|
exports.LicenseManagerUserSubscriptions = LicenseManagerUserSubscriptions;
|
|
1276
1193
|
exports.LicenseManagerUserSubscriptionsClient = LicenseManagerUserSubscriptionsClient;
|
|
1277
|
-
exports.LicenseManagerUserSubscriptionsServiceException = LicenseManagerUserSubscriptionsServiceException;
|
|
1194
|
+
exports.LicenseManagerUserSubscriptionsServiceException = LicenseManagerUserSubscriptionsServiceException$1;
|
|
1278
1195
|
exports.LicenseServerEndpointProvisioningStatus = LicenseServerEndpointProvisioningStatus;
|
|
1279
1196
|
exports.LicenseServerHealthStatus = LicenseServerHealthStatus;
|
|
1280
1197
|
exports.ListIdentityProvidersCommand = ListIdentityProvidersCommand;
|
|
@@ -1282,23 +1199,18 @@ exports.ListInstancesCommand = ListInstancesCommand;
|
|
|
1282
1199
|
exports.ListLicenseServerEndpointsCommand = ListLicenseServerEndpointsCommand;
|
|
1283
1200
|
exports.ListProductSubscriptionsCommand = ListProductSubscriptionsCommand;
|
|
1284
1201
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1285
|
-
exports.ListTagsForResourceResponseFilterSensitiveLog = ListTagsForResourceResponseFilterSensitiveLog;
|
|
1286
1202
|
exports.ListUserAssociationsCommand = ListUserAssociationsCommand;
|
|
1287
1203
|
exports.RegisterIdentityProviderCommand = RegisterIdentityProviderCommand;
|
|
1288
|
-
exports.
|
|
1289
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1204
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1290
1205
|
exports.ServerType = ServerType;
|
|
1291
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1206
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1292
1207
|
exports.StartProductSubscriptionCommand = StartProductSubscriptionCommand;
|
|
1293
|
-
exports.StartProductSubscriptionRequestFilterSensitiveLog = StartProductSubscriptionRequestFilterSensitiveLog;
|
|
1294
1208
|
exports.StopProductSubscriptionCommand = StopProductSubscriptionCommand;
|
|
1295
1209
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1296
|
-
exports.
|
|
1297
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1210
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1298
1211
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1299
|
-
exports.UntagResourceRequestFilterSensitiveLog = UntagResourceRequestFilterSensitiveLog;
|
|
1300
1212
|
exports.UpdateIdentityProviderSettingsCommand = UpdateIdentityProviderSettingsCommand;
|
|
1301
|
-
exports.ValidationException = ValidationException;
|
|
1213
|
+
exports.ValidationException = ValidationException$1;
|
|
1302
1214
|
exports.paginateListIdentityProviders = paginateListIdentityProviders;
|
|
1303
1215
|
exports.paginateListInstances = paginateListInstances;
|
|
1304
1216
|
exports.paginateListLicenseServerEndpoints = paginateListLicenseServerEndpoints;
|