@aws-sdk/client-license-manager-user-subscriptions 3.691.0 → 3.693.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/README.md +48 -0
- package/dist-cjs/index.js +441 -8
- package/dist-es/LicenseManagerUserSubscriptions.js +12 -0
- package/dist-es/commands/AssociateUserCommand.js +2 -1
- package/dist-es/commands/CreateLicenseServerEndpointCommand.js +23 -0
- package/dist-es/commands/DeleteLicenseServerEndpointCommand.js +22 -0
- package/dist-es/commands/ListLicenseServerEndpointsCommand.js +22 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +23 -0
- package/dist-es/commands/RegisterIdentityProviderCommand.js +2 -1
- package/dist-es/commands/StartProductSubscriptionCommand.js +2 -1
- package/dist-es/commands/TagResourceCommand.js +23 -0
- package/dist-es/commands/UntagResourceCommand.js +23 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +69 -0
- package/dist-es/pagination/ListLicenseServerEndpointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +189 -1
- package/dist-types/LicenseManagerUserSubscriptions.d.ts +47 -1
- package/dist-types/LicenseManagerUserSubscriptionsClient.d.ts +9 -3
- package/dist-types/commands/AssociateUserCommand.d.ts +41 -3
- package/dist-types/commands/CreateLicenseServerEndpointCommand.d.ts +109 -0
- package/dist-types/commands/DeleteLicenseServerEndpointCommand.d.ts +112 -0
- package/dist-types/commands/DeregisterIdentityProviderCommand.d.ts +41 -5
- package/dist-types/commands/DisassociateUserCommand.d.ts +40 -4
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +28 -3
- package/dist-types/commands/ListInstancesCommand.d.ts +1 -1
- package/dist-types/commands/ListLicenseServerEndpointsCommand.d.ts +119 -0
- package/dist-types/commands/ListProductSubscriptionsCommand.d.ts +37 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +82 -0
- package/dist-types/commands/ListUserAssociationsCommand.d.ts +36 -1
- package/dist-types/commands/RegisterIdentityProviderCommand.d.ts +41 -3
- package/dist-types/commands/StartProductSubscriptionCommand.d.ts +41 -3
- package/dist-types/commands/StopProductSubscriptionCommand.d.ts +40 -4
- package/dist-types/commands/TagResourceCommand.d.ts +81 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +78 -0
- package/dist-types/commands/UpdateIdentityProviderSettingsCommand.d.ts +40 -4
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +728 -71
- package/dist-types/pagination/ListLicenseServerEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/LicenseManagerUserSubscriptions.d.ts +106 -0
- package/dist-types/ts3.4/LicenseManagerUserSubscriptionsClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateLicenseServerEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteLicenseServerEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeregisterIdentityProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateUserCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListLicenseServerEndpointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopProductSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +191 -11
- package/dist-types/ts3.4/pagination/ListLicenseServerEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +35 -35
package/dist-cjs/index.js
CHANGED
|
@@ -22,8 +22,14 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
22
22
|
var src_exports = {};
|
|
23
23
|
__export(src_exports, {
|
|
24
24
|
AccessDeniedException: () => AccessDeniedException,
|
|
25
|
+
ActiveDirectoryType: () => ActiveDirectoryType,
|
|
25
26
|
AssociateUserCommand: () => AssociateUserCommand,
|
|
27
|
+
AssociateUserRequestFilterSensitiveLog: () => AssociateUserRequestFilterSensitiveLog,
|
|
26
28
|
ConflictException: () => ConflictException,
|
|
29
|
+
CreateLicenseServerEndpointCommand: () => CreateLicenseServerEndpointCommand,
|
|
30
|
+
CreateLicenseServerEndpointRequestFilterSensitiveLog: () => CreateLicenseServerEndpointRequestFilterSensitiveLog,
|
|
31
|
+
CredentialsProvider: () => CredentialsProvider,
|
|
32
|
+
DeleteLicenseServerEndpointCommand: () => DeleteLicenseServerEndpointCommand,
|
|
27
33
|
DeregisterIdentityProviderCommand: () => DeregisterIdentityProviderCommand,
|
|
28
34
|
DisassociateUserCommand: () => DisassociateUserCommand,
|
|
29
35
|
IdentityProvider: () => IdentityProvider,
|
|
@@ -31,21 +37,35 @@ __export(src_exports, {
|
|
|
31
37
|
LicenseManagerUserSubscriptions: () => LicenseManagerUserSubscriptions,
|
|
32
38
|
LicenseManagerUserSubscriptionsClient: () => LicenseManagerUserSubscriptionsClient,
|
|
33
39
|
LicenseManagerUserSubscriptionsServiceException: () => LicenseManagerUserSubscriptionsServiceException,
|
|
40
|
+
LicenseServerEndpointProvisioningStatus: () => LicenseServerEndpointProvisioningStatus,
|
|
41
|
+
LicenseServerHealthStatus: () => LicenseServerHealthStatus,
|
|
34
42
|
ListIdentityProvidersCommand: () => ListIdentityProvidersCommand,
|
|
35
43
|
ListInstancesCommand: () => ListInstancesCommand,
|
|
44
|
+
ListLicenseServerEndpointsCommand: () => ListLicenseServerEndpointsCommand,
|
|
36
45
|
ListProductSubscriptionsCommand: () => ListProductSubscriptionsCommand,
|
|
46
|
+
ListTagsForResourceCommand: () => ListTagsForResourceCommand,
|
|
47
|
+
ListTagsForResourceResponseFilterSensitiveLog: () => ListTagsForResourceResponseFilterSensitiveLog,
|
|
37
48
|
ListUserAssociationsCommand: () => ListUserAssociationsCommand,
|
|
38
49
|
RegisterIdentityProviderCommand: () => RegisterIdentityProviderCommand,
|
|
50
|
+
RegisterIdentityProviderRequestFilterSensitiveLog: () => RegisterIdentityProviderRequestFilterSensitiveLog,
|
|
39
51
|
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
52
|
+
ServerSettings: () => ServerSettings,
|
|
53
|
+
ServerType: () => ServerType,
|
|
40
54
|
ServiceQuotaExceededException: () => ServiceQuotaExceededException,
|
|
41
55
|
StartProductSubscriptionCommand: () => StartProductSubscriptionCommand,
|
|
56
|
+
StartProductSubscriptionRequestFilterSensitiveLog: () => StartProductSubscriptionRequestFilterSensitiveLog,
|
|
42
57
|
StopProductSubscriptionCommand: () => StopProductSubscriptionCommand,
|
|
58
|
+
TagResourceCommand: () => TagResourceCommand,
|
|
59
|
+
TagResourceRequestFilterSensitiveLog: () => TagResourceRequestFilterSensitiveLog,
|
|
43
60
|
ThrottlingException: () => ThrottlingException,
|
|
61
|
+
UntagResourceCommand: () => UntagResourceCommand,
|
|
62
|
+
UntagResourceRequestFilterSensitiveLog: () => UntagResourceRequestFilterSensitiveLog,
|
|
44
63
|
UpdateIdentityProviderSettingsCommand: () => UpdateIdentityProviderSettingsCommand,
|
|
45
64
|
ValidationException: () => ValidationException,
|
|
46
65
|
__Client: () => import_smithy_client.Client,
|
|
47
66
|
paginateListIdentityProviders: () => paginateListIdentityProviders,
|
|
48
67
|
paginateListInstances: () => paginateListInstances,
|
|
68
|
+
paginateListLicenseServerEndpoints: () => paginateListLicenseServerEndpoints,
|
|
49
69
|
paginateListProductSubscriptions: () => paginateListProductSubscriptions,
|
|
50
70
|
paginateListUserAssociations: () => paginateListUserAssociations
|
|
51
71
|
});
|
|
@@ -196,9 +216,7 @@ var LicenseManagerUserSubscriptionsClient = _LicenseManagerUserSubscriptionsClie
|
|
|
196
216
|
var import_middleware_serde = require("@smithy/middleware-serde");
|
|
197
217
|
|
|
198
218
|
|
|
199
|
-
// src/
|
|
200
|
-
var import_core2 = require("@aws-sdk/core");
|
|
201
|
-
|
|
219
|
+
// src/models/models_0.ts
|
|
202
220
|
|
|
203
221
|
|
|
204
222
|
// src/models/LicenseManagerUserSubscriptionsServiceException.ts
|
|
@@ -233,6 +251,24 @@ var _AccessDeniedException = class _AccessDeniedException extends LicenseManager
|
|
|
233
251
|
};
|
|
234
252
|
__name(_AccessDeniedException, "AccessDeniedException");
|
|
235
253
|
var AccessDeniedException = _AccessDeniedException;
|
|
254
|
+
var CredentialsProvider;
|
|
255
|
+
((CredentialsProvider3) => {
|
|
256
|
+
CredentialsProvider3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
257
|
+
if (value.SecretsManagerCredentialsProvider !== void 0)
|
|
258
|
+
return visitor.SecretsManagerCredentialsProvider(value.SecretsManagerCredentialsProvider);
|
|
259
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
260
|
+
}, "visit");
|
|
261
|
+
})(CredentialsProvider || (CredentialsProvider = {}));
|
|
262
|
+
var ActiveDirectoryType = {
|
|
263
|
+
/**
|
|
264
|
+
* AWS_MANAGED type of Active Directory
|
|
265
|
+
*/
|
|
266
|
+
AWS_MANAGED: "AWS_MANAGED",
|
|
267
|
+
/**
|
|
268
|
+
* SELF_MANAGED type of Active Directory
|
|
269
|
+
*/
|
|
270
|
+
SELF_MANAGED: "SELF_MANAGED"
|
|
271
|
+
};
|
|
236
272
|
var IdentityProvider;
|
|
237
273
|
((IdentityProvider3) => {
|
|
238
274
|
IdentityProvider3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -343,8 +379,97 @@ var _ValidationException = class _ValidationException extends LicenseManagerUser
|
|
|
343
379
|
};
|
|
344
380
|
__name(_ValidationException, "ValidationException");
|
|
345
381
|
var ValidationException = _ValidationException;
|
|
382
|
+
var ServerSettings;
|
|
383
|
+
((ServerSettings3) => {
|
|
384
|
+
ServerSettings3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
385
|
+
if (value.RdsSalSettings !== void 0)
|
|
386
|
+
return visitor.RdsSalSettings(value.RdsSalSettings);
|
|
387
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
388
|
+
}, "visit");
|
|
389
|
+
})(ServerSettings || (ServerSettings = {}));
|
|
390
|
+
var ServerType = {
|
|
391
|
+
/**
|
|
392
|
+
*
|
|
393
|
+
*/
|
|
394
|
+
RDS_SAL: "RDS_SAL"
|
|
395
|
+
};
|
|
396
|
+
var LicenseServerEndpointProvisioningStatus = {
|
|
397
|
+
/**
|
|
398
|
+
*
|
|
399
|
+
*/
|
|
400
|
+
DELETED: "DELETED",
|
|
401
|
+
/**
|
|
402
|
+
*
|
|
403
|
+
*/
|
|
404
|
+
DELETING: "DELETING",
|
|
405
|
+
/**
|
|
406
|
+
*
|
|
407
|
+
*/
|
|
408
|
+
DELETION_FAILED: "DELETION_FAILED",
|
|
409
|
+
/**
|
|
410
|
+
*
|
|
411
|
+
*/
|
|
412
|
+
PROVISIONED: "PROVISIONED",
|
|
413
|
+
/**
|
|
414
|
+
*
|
|
415
|
+
*/
|
|
416
|
+
PROVISIONING: "PROVISIONING",
|
|
417
|
+
/**
|
|
418
|
+
*
|
|
419
|
+
*/
|
|
420
|
+
PROVISIONING_FAILED: "PROVISIONING_FAILED"
|
|
421
|
+
};
|
|
422
|
+
var LicenseServerHealthStatus = {
|
|
423
|
+
/**
|
|
424
|
+
*
|
|
425
|
+
*/
|
|
426
|
+
HEALTHY: "HEALTHY",
|
|
427
|
+
/**
|
|
428
|
+
*
|
|
429
|
+
*/
|
|
430
|
+
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
431
|
+
/**
|
|
432
|
+
*
|
|
433
|
+
*/
|
|
434
|
+
UNHEALTHY: "UNHEALTHY"
|
|
435
|
+
};
|
|
436
|
+
var AssociateUserRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
437
|
+
...obj,
|
|
438
|
+
...obj.IdentityProvider && { IdentityProvider: obj.IdentityProvider },
|
|
439
|
+
...obj.Tags && { Tags: import_smithy_client.SENSITIVE_STRING }
|
|
440
|
+
}), "AssociateUserRequestFilterSensitiveLog");
|
|
441
|
+
var CreateLicenseServerEndpointRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
442
|
+
...obj,
|
|
443
|
+
...obj.LicenseServerSettings && { LicenseServerSettings: obj.LicenseServerSettings },
|
|
444
|
+
...obj.Tags && { Tags: import_smithy_client.SENSITIVE_STRING }
|
|
445
|
+
}), "CreateLicenseServerEndpointRequestFilterSensitiveLog");
|
|
446
|
+
var ListTagsForResourceResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
447
|
+
...obj,
|
|
448
|
+
...obj.Tags && { Tags: import_smithy_client.SENSITIVE_STRING }
|
|
449
|
+
}), "ListTagsForResourceResponseFilterSensitiveLog");
|
|
450
|
+
var RegisterIdentityProviderRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
451
|
+
...obj,
|
|
452
|
+
...obj.IdentityProvider && { IdentityProvider: obj.IdentityProvider },
|
|
453
|
+
...obj.Tags && { Tags: import_smithy_client.SENSITIVE_STRING }
|
|
454
|
+
}), "RegisterIdentityProviderRequestFilterSensitiveLog");
|
|
455
|
+
var StartProductSubscriptionRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
456
|
+
...obj,
|
|
457
|
+
...obj.IdentityProvider && { IdentityProvider: obj.IdentityProvider },
|
|
458
|
+
...obj.Tags && { Tags: import_smithy_client.SENSITIVE_STRING }
|
|
459
|
+
}), "StartProductSubscriptionRequestFilterSensitiveLog");
|
|
460
|
+
var TagResourceRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
461
|
+
...obj,
|
|
462
|
+
...obj.Tags && { Tags: import_smithy_client.SENSITIVE_STRING }
|
|
463
|
+
}), "TagResourceRequestFilterSensitiveLog");
|
|
464
|
+
var UntagResourceRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
465
|
+
...obj,
|
|
466
|
+
...obj.TagKeys && { TagKeys: import_smithy_client.SENSITIVE_STRING }
|
|
467
|
+
}), "UntagResourceRequestFilterSensitiveLog");
|
|
346
468
|
|
|
347
469
|
// src/protocols/Aws_restJson1.ts
|
|
470
|
+
var import_core2 = require("@aws-sdk/core");
|
|
471
|
+
|
|
472
|
+
|
|
348
473
|
var se_AssociateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
349
474
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
350
475
|
const headers = {
|
|
@@ -357,12 +482,46 @@ var se_AssociateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
357
482
|
Domain: [],
|
|
358
483
|
IdentityProvider: (_) => (0, import_smithy_client._json)(_),
|
|
359
484
|
InstanceId: [],
|
|
485
|
+
Tags: (_) => (0, import_smithy_client._json)(_),
|
|
360
486
|
Username: []
|
|
361
487
|
})
|
|
362
488
|
);
|
|
363
489
|
b.m("POST").h(headers).b(body);
|
|
364
490
|
return b.build();
|
|
365
491
|
}, "se_AssociateUserCommand");
|
|
492
|
+
var se_CreateLicenseServerEndpointCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
493
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
494
|
+
const headers = {
|
|
495
|
+
"content-type": "application/json"
|
|
496
|
+
};
|
|
497
|
+
b.bp("/license-server/CreateLicenseServerEndpoint");
|
|
498
|
+
let body;
|
|
499
|
+
body = JSON.stringify(
|
|
500
|
+
(0, import_smithy_client.take)(input, {
|
|
501
|
+
IdentityProviderArn: [],
|
|
502
|
+
LicenseServerSettings: (_) => (0, import_smithy_client._json)(_),
|
|
503
|
+
Tags: (_) => (0, import_smithy_client._json)(_)
|
|
504
|
+
})
|
|
505
|
+
);
|
|
506
|
+
b.m("POST").h(headers).b(body);
|
|
507
|
+
return b.build();
|
|
508
|
+
}, "se_CreateLicenseServerEndpointCommand");
|
|
509
|
+
var se_DeleteLicenseServerEndpointCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
510
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
511
|
+
const headers = {
|
|
512
|
+
"content-type": "application/json"
|
|
513
|
+
};
|
|
514
|
+
b.bp("/license-server/DeleteLicenseServerEndpoint");
|
|
515
|
+
let body;
|
|
516
|
+
body = JSON.stringify(
|
|
517
|
+
(0, import_smithy_client.take)(input, {
|
|
518
|
+
LicenseServerEndpointArn: [],
|
|
519
|
+
ServerType: []
|
|
520
|
+
})
|
|
521
|
+
);
|
|
522
|
+
b.m("POST").h(headers).b(body);
|
|
523
|
+
return b.build();
|
|
524
|
+
}, "se_DeleteLicenseServerEndpointCommand");
|
|
366
525
|
var se_DeregisterIdentityProviderCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
367
526
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
368
527
|
const headers = {
|
|
@@ -373,6 +532,7 @@ var se_DeregisterIdentityProviderCommand = /* @__PURE__ */ __name(async (input,
|
|
|
373
532
|
body = JSON.stringify(
|
|
374
533
|
(0, import_smithy_client.take)(input, {
|
|
375
534
|
IdentityProvider: (_) => (0, import_smithy_client._json)(_),
|
|
535
|
+
IdentityProviderArn: [],
|
|
376
536
|
Product: []
|
|
377
537
|
})
|
|
378
538
|
);
|
|
@@ -391,6 +551,7 @@ var se_DisassociateUserCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
391
551
|
Domain: [],
|
|
392
552
|
IdentityProvider: (_) => (0, import_smithy_client._json)(_),
|
|
393
553
|
InstanceId: [],
|
|
554
|
+
InstanceUserArn: [],
|
|
394
555
|
Username: []
|
|
395
556
|
})
|
|
396
557
|
);
|
|
@@ -406,6 +567,7 @@ var se_ListIdentityProvidersCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
406
567
|
let body;
|
|
407
568
|
body = JSON.stringify(
|
|
408
569
|
(0, import_smithy_client.take)(input, {
|
|
570
|
+
Filters: (_) => (0, import_smithy_client._json)(_),
|
|
409
571
|
MaxResults: [],
|
|
410
572
|
NextToken: []
|
|
411
573
|
})
|
|
@@ -430,6 +592,23 @@ var se_ListInstancesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
430
592
|
b.m("POST").h(headers).b(body);
|
|
431
593
|
return b.build();
|
|
432
594
|
}, "se_ListInstancesCommand");
|
|
595
|
+
var se_ListLicenseServerEndpointsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
596
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
597
|
+
const headers = {
|
|
598
|
+
"content-type": "application/json"
|
|
599
|
+
};
|
|
600
|
+
b.bp("/license-server/ListLicenseServerEndpoints");
|
|
601
|
+
let body;
|
|
602
|
+
body = JSON.stringify(
|
|
603
|
+
(0, import_smithy_client.take)(input, {
|
|
604
|
+
Filters: (_) => (0, import_smithy_client._json)(_),
|
|
605
|
+
MaxResults: [],
|
|
606
|
+
NextToken: []
|
|
607
|
+
})
|
|
608
|
+
);
|
|
609
|
+
b.m("POST").h(headers).b(body);
|
|
610
|
+
return b.build();
|
|
611
|
+
}, "se_ListLicenseServerEndpointsCommand");
|
|
433
612
|
var se_ListProductSubscriptionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
434
613
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
435
614
|
const headers = {
|
|
@@ -449,6 +628,15 @@ var se_ListProductSubscriptionsCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
449
628
|
b.m("POST").h(headers).b(body);
|
|
450
629
|
return b.build();
|
|
451
630
|
}, "se_ListProductSubscriptionsCommand");
|
|
631
|
+
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
632
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
633
|
+
const headers = {};
|
|
634
|
+
b.bp("/tags/{ResourceArn}");
|
|
635
|
+
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
636
|
+
let body;
|
|
637
|
+
b.m("GET").h(headers).b(body);
|
|
638
|
+
return b.build();
|
|
639
|
+
}, "se_ListTagsForResourceCommand");
|
|
452
640
|
var se_ListUserAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
453
641
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
454
642
|
const headers = {
|
|
@@ -479,7 +667,8 @@ var se_RegisterIdentityProviderCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
479
667
|
(0, import_smithy_client.take)(input, {
|
|
480
668
|
IdentityProvider: (_) => (0, import_smithy_client._json)(_),
|
|
481
669
|
Product: [],
|
|
482
|
-
Settings: (_) => (0, import_smithy_client._json)(_)
|
|
670
|
+
Settings: (_) => (0, import_smithy_client._json)(_),
|
|
671
|
+
Tags: (_) => (0, import_smithy_client._json)(_)
|
|
483
672
|
})
|
|
484
673
|
);
|
|
485
674
|
b.m("POST").h(headers).b(body);
|
|
@@ -497,6 +686,7 @@ var se_StartProductSubscriptionCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
497
686
|
Domain: [],
|
|
498
687
|
IdentityProvider: (_) => (0, import_smithy_client._json)(_),
|
|
499
688
|
Product: [],
|
|
689
|
+
Tags: (_) => (0, import_smithy_client._json)(_),
|
|
500
690
|
Username: []
|
|
501
691
|
})
|
|
502
692
|
);
|
|
@@ -515,12 +705,41 @@ var se_StopProductSubscriptionCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
515
705
|
Domain: [],
|
|
516
706
|
IdentityProvider: (_) => (0, import_smithy_client._json)(_),
|
|
517
707
|
Product: [],
|
|
708
|
+
ProductUserArn: [],
|
|
518
709
|
Username: []
|
|
519
710
|
})
|
|
520
711
|
);
|
|
521
712
|
b.m("POST").h(headers).b(body);
|
|
522
713
|
return b.build();
|
|
523
714
|
}, "se_StopProductSubscriptionCommand");
|
|
715
|
+
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
716
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
717
|
+
const headers = {
|
|
718
|
+
"content-type": "application/json"
|
|
719
|
+
};
|
|
720
|
+
b.bp("/tags/{ResourceArn}");
|
|
721
|
+
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
722
|
+
let body;
|
|
723
|
+
body = JSON.stringify(
|
|
724
|
+
(0, import_smithy_client.take)(input, {
|
|
725
|
+
Tags: (_) => (0, import_smithy_client._json)(_)
|
|
726
|
+
})
|
|
727
|
+
);
|
|
728
|
+
b.m("PUT").h(headers).b(body);
|
|
729
|
+
return b.build();
|
|
730
|
+
}, "se_TagResourceCommand");
|
|
731
|
+
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
732
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
733
|
+
const headers = {};
|
|
734
|
+
b.bp("/tags/{ResourceArn}");
|
|
735
|
+
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
736
|
+
const query = (0, import_smithy_client.map)({
|
|
737
|
+
[_tK]: [(0, import_smithy_client.expectNonNull)(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []]
|
|
738
|
+
});
|
|
739
|
+
let body;
|
|
740
|
+
b.m("DELETE").h(headers).q(query).b(body);
|
|
741
|
+
return b.build();
|
|
742
|
+
}, "se_UntagResourceCommand");
|
|
524
743
|
var se_UpdateIdentityProviderSettingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
525
744
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
526
745
|
const headers = {
|
|
@@ -531,6 +750,7 @@ var se_UpdateIdentityProviderSettingsCommand = /* @__PURE__ */ __name(async (inp
|
|
|
531
750
|
body = JSON.stringify(
|
|
532
751
|
(0, import_smithy_client.take)(input, {
|
|
533
752
|
IdentityProvider: (_) => (0, import_smithy_client._json)(_),
|
|
753
|
+
IdentityProviderArn: [],
|
|
534
754
|
Product: [],
|
|
535
755
|
UpdateSettings: (_) => (0, import_smithy_client._json)(_)
|
|
536
756
|
})
|
|
@@ -552,6 +772,35 @@ var de_AssociateUserCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
552
772
|
Object.assign(contents, doc);
|
|
553
773
|
return contents;
|
|
554
774
|
}, "de_AssociateUserCommand");
|
|
775
|
+
var de_CreateLicenseServerEndpointCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
776
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
777
|
+
return de_CommandError(output, context);
|
|
778
|
+
}
|
|
779
|
+
const contents = (0, import_smithy_client.map)({
|
|
780
|
+
$metadata: deserializeMetadata(output)
|
|
781
|
+
});
|
|
782
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
783
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
784
|
+
IdentityProviderArn: import_smithy_client.expectString,
|
|
785
|
+
LicenseServerEndpointArn: import_smithy_client.expectString
|
|
786
|
+
});
|
|
787
|
+
Object.assign(contents, doc);
|
|
788
|
+
return contents;
|
|
789
|
+
}, "de_CreateLicenseServerEndpointCommand");
|
|
790
|
+
var de_DeleteLicenseServerEndpointCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
791
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
792
|
+
return de_CommandError(output, context);
|
|
793
|
+
}
|
|
794
|
+
const contents = (0, import_smithy_client.map)({
|
|
795
|
+
$metadata: deserializeMetadata(output)
|
|
796
|
+
});
|
|
797
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
798
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
799
|
+
LicenseServerEndpoint: (_) => de_LicenseServerEndpoint(_, context)
|
|
800
|
+
});
|
|
801
|
+
Object.assign(contents, doc);
|
|
802
|
+
return contents;
|
|
803
|
+
}, "de_DeleteLicenseServerEndpointCommand");
|
|
555
804
|
var de_DeregisterIdentityProviderCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
556
805
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
557
806
|
return de_CommandError(output, context);
|
|
@@ -610,6 +859,21 @@ var de_ListInstancesCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
610
859
|
Object.assign(contents, doc);
|
|
611
860
|
return contents;
|
|
612
861
|
}, "de_ListInstancesCommand");
|
|
862
|
+
var de_ListLicenseServerEndpointsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
863
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
864
|
+
return de_CommandError(output, context);
|
|
865
|
+
}
|
|
866
|
+
const contents = (0, import_smithy_client.map)({
|
|
867
|
+
$metadata: deserializeMetadata(output)
|
|
868
|
+
});
|
|
869
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
870
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
871
|
+
LicenseServerEndpoints: (_) => de_LicenseServerEndpointList(_, context),
|
|
872
|
+
NextToken: import_smithy_client.expectString
|
|
873
|
+
});
|
|
874
|
+
Object.assign(contents, doc);
|
|
875
|
+
return contents;
|
|
876
|
+
}, "de_ListLicenseServerEndpointsCommand");
|
|
613
877
|
var de_ListProductSubscriptionsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
614
878
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
615
879
|
return de_CommandError(output, context);
|
|
@@ -625,6 +889,20 @@ var de_ListProductSubscriptionsCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
625
889
|
Object.assign(contents, doc);
|
|
626
890
|
return contents;
|
|
627
891
|
}, "de_ListProductSubscriptionsCommand");
|
|
892
|
+
var de_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
893
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
894
|
+
return de_CommandError(output, context);
|
|
895
|
+
}
|
|
896
|
+
const contents = (0, import_smithy_client.map)({
|
|
897
|
+
$metadata: deserializeMetadata(output)
|
|
898
|
+
});
|
|
899
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
900
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
901
|
+
Tags: import_smithy_client._json
|
|
902
|
+
});
|
|
903
|
+
Object.assign(contents, doc);
|
|
904
|
+
return contents;
|
|
905
|
+
}, "de_ListTagsForResourceCommand");
|
|
628
906
|
var de_ListUserAssociationsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
629
907
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
630
908
|
return de_CommandError(output, context);
|
|
@@ -682,6 +960,26 @@ var de_StopProductSubscriptionCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
682
960
|
Object.assign(contents, doc);
|
|
683
961
|
return contents;
|
|
684
962
|
}, "de_StopProductSubscriptionCommand");
|
|
963
|
+
var de_TagResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
964
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
965
|
+
return de_CommandError(output, context);
|
|
966
|
+
}
|
|
967
|
+
const contents = (0, import_smithy_client.map)({
|
|
968
|
+
$metadata: deserializeMetadata(output)
|
|
969
|
+
});
|
|
970
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
971
|
+
return contents;
|
|
972
|
+
}, "de_TagResourceCommand");
|
|
973
|
+
var de_UntagResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
974
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
975
|
+
return de_CommandError(output, context);
|
|
976
|
+
}
|
|
977
|
+
const contents = (0, import_smithy_client.map)({
|
|
978
|
+
$metadata: deserializeMetadata(output)
|
|
979
|
+
});
|
|
980
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
981
|
+
return contents;
|
|
982
|
+
}, "de_UntagResourceCommand");
|
|
685
983
|
var de_UpdateIdentityProviderSettingsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
686
984
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
687
985
|
return de_CommandError(output, context);
|
|
@@ -825,12 +1123,33 @@ var de_ValidationExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, cont
|
|
|
825
1123
|
});
|
|
826
1124
|
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body);
|
|
827
1125
|
}, "de_ValidationExceptionRes");
|
|
1126
|
+
var de_LicenseServerEndpoint = /* @__PURE__ */ __name((output, context) => {
|
|
1127
|
+
return (0, import_smithy_client.take)(output, {
|
|
1128
|
+
CreationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1129
|
+
IdentityProviderArn: import_smithy_client.expectString,
|
|
1130
|
+
LicenseServerEndpointArn: import_smithy_client.expectString,
|
|
1131
|
+
LicenseServerEndpointId: import_smithy_client.expectString,
|
|
1132
|
+
LicenseServerEndpointProvisioningStatus: import_smithy_client.expectString,
|
|
1133
|
+
LicenseServers: import_smithy_client._json,
|
|
1134
|
+
ServerEndpoint: import_smithy_client._json,
|
|
1135
|
+
ServerType: import_smithy_client.expectString,
|
|
1136
|
+
StatusMessage: import_smithy_client.expectString
|
|
1137
|
+
});
|
|
1138
|
+
}, "de_LicenseServerEndpoint");
|
|
1139
|
+
var de_LicenseServerEndpointList = /* @__PURE__ */ __name((output, context) => {
|
|
1140
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
1141
|
+
return de_LicenseServerEndpoint(entry, context);
|
|
1142
|
+
});
|
|
1143
|
+
return retVal;
|
|
1144
|
+
}, "de_LicenseServerEndpointList");
|
|
828
1145
|
var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
829
1146
|
httpStatusCode: output.statusCode,
|
|
830
1147
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
831
1148
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
832
1149
|
cfId: output.headers["x-amz-cf-id"]
|
|
833
1150
|
}), "deserializeMetadata");
|
|
1151
|
+
var _TK = "TagKeys";
|
|
1152
|
+
var _tK = "tagKeys";
|
|
834
1153
|
|
|
835
1154
|
// src/commands/AssociateUserCommand.ts
|
|
836
1155
|
var _AssociateUserCommand = class _AssociateUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
@@ -838,11 +1157,39 @@ var _AssociateUserCommand = class _AssociateUserCommand extends import_smithy_cl
|
|
|
838
1157
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
839
1158
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
840
1159
|
];
|
|
841
|
-
}).s("LicenseManagerUserSubscriptions", "AssociateUser", {}).n("LicenseManagerUserSubscriptionsClient", "AssociateUserCommand").f(
|
|
1160
|
+
}).s("LicenseManagerUserSubscriptions", "AssociateUser", {}).n("LicenseManagerUserSubscriptionsClient", "AssociateUserCommand").f(AssociateUserRequestFilterSensitiveLog, void 0).ser(se_AssociateUserCommand).de(de_AssociateUserCommand).build() {
|
|
842
1161
|
};
|
|
843
1162
|
__name(_AssociateUserCommand, "AssociateUserCommand");
|
|
844
1163
|
var AssociateUserCommand = _AssociateUserCommand;
|
|
845
1164
|
|
|
1165
|
+
// src/commands/CreateLicenseServerEndpointCommand.ts
|
|
1166
|
+
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+
var _CreateLicenseServerEndpointCommand = class _CreateLicenseServerEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1170
|
+
return [
|
|
1171
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1172
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1173
|
+
];
|
|
1174
|
+
}).s("LicenseManagerUserSubscriptions", "CreateLicenseServerEndpoint", {}).n("LicenseManagerUserSubscriptionsClient", "CreateLicenseServerEndpointCommand").f(CreateLicenseServerEndpointRequestFilterSensitiveLog, void 0).ser(se_CreateLicenseServerEndpointCommand).de(de_CreateLicenseServerEndpointCommand).build() {
|
|
1175
|
+
};
|
|
1176
|
+
__name(_CreateLicenseServerEndpointCommand, "CreateLicenseServerEndpointCommand");
|
|
1177
|
+
var CreateLicenseServerEndpointCommand = _CreateLicenseServerEndpointCommand;
|
|
1178
|
+
|
|
1179
|
+
// src/commands/DeleteLicenseServerEndpointCommand.ts
|
|
1180
|
+
|
|
1181
|
+
|
|
1182
|
+
|
|
1183
|
+
var _DeleteLicenseServerEndpointCommand = class _DeleteLicenseServerEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1184
|
+
return [
|
|
1185
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1186
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1187
|
+
];
|
|
1188
|
+
}).s("LicenseManagerUserSubscriptions", "DeleteLicenseServerEndpoint", {}).n("LicenseManagerUserSubscriptionsClient", "DeleteLicenseServerEndpointCommand").f(void 0, void 0).ser(se_DeleteLicenseServerEndpointCommand).de(de_DeleteLicenseServerEndpointCommand).build() {
|
|
1189
|
+
};
|
|
1190
|
+
__name(_DeleteLicenseServerEndpointCommand, "DeleteLicenseServerEndpointCommand");
|
|
1191
|
+
var DeleteLicenseServerEndpointCommand = _DeleteLicenseServerEndpointCommand;
|
|
1192
|
+
|
|
846
1193
|
// src/commands/DeregisterIdentityProviderCommand.ts
|
|
847
1194
|
|
|
848
1195
|
|
|
@@ -899,6 +1246,20 @@ var _ListInstancesCommand = class _ListInstancesCommand extends import_smithy_cl
|
|
|
899
1246
|
__name(_ListInstancesCommand, "ListInstancesCommand");
|
|
900
1247
|
var ListInstancesCommand = _ListInstancesCommand;
|
|
901
1248
|
|
|
1249
|
+
// src/commands/ListLicenseServerEndpointsCommand.ts
|
|
1250
|
+
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
var _ListLicenseServerEndpointsCommand = class _ListLicenseServerEndpointsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1254
|
+
return [
|
|
1255
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1256
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1257
|
+
];
|
|
1258
|
+
}).s("LicenseManagerUserSubscriptions", "ListLicenseServerEndpoints", {}).n("LicenseManagerUserSubscriptionsClient", "ListLicenseServerEndpointsCommand").f(void 0, void 0).ser(se_ListLicenseServerEndpointsCommand).de(de_ListLicenseServerEndpointsCommand).build() {
|
|
1259
|
+
};
|
|
1260
|
+
__name(_ListLicenseServerEndpointsCommand, "ListLicenseServerEndpointsCommand");
|
|
1261
|
+
var ListLicenseServerEndpointsCommand = _ListLicenseServerEndpointsCommand;
|
|
1262
|
+
|
|
902
1263
|
// src/commands/ListProductSubscriptionsCommand.ts
|
|
903
1264
|
|
|
904
1265
|
|
|
@@ -913,6 +1274,20 @@ var _ListProductSubscriptionsCommand = class _ListProductSubscriptionsCommand ex
|
|
|
913
1274
|
__name(_ListProductSubscriptionsCommand, "ListProductSubscriptionsCommand");
|
|
914
1275
|
var ListProductSubscriptionsCommand = _ListProductSubscriptionsCommand;
|
|
915
1276
|
|
|
1277
|
+
// src/commands/ListTagsForResourceCommand.ts
|
|
1278
|
+
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1282
|
+
return [
|
|
1283
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1284
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1285
|
+
];
|
|
1286
|
+
}).s("LicenseManagerUserSubscriptions", "ListTagsForResource", {}).n("LicenseManagerUserSubscriptionsClient", "ListTagsForResourceCommand").f(void 0, ListTagsForResourceResponseFilterSensitiveLog).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1287
|
+
};
|
|
1288
|
+
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1289
|
+
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1290
|
+
|
|
916
1291
|
// src/commands/ListUserAssociationsCommand.ts
|
|
917
1292
|
|
|
918
1293
|
|
|
@@ -936,7 +1311,7 @@ var _RegisterIdentityProviderCommand = class _RegisterIdentityProviderCommand ex
|
|
|
936
1311
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
937
1312
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
938
1313
|
];
|
|
939
|
-
}).s("LicenseManagerUserSubscriptions", "RegisterIdentityProvider", {}).n("LicenseManagerUserSubscriptionsClient", "RegisterIdentityProviderCommand").f(
|
|
1314
|
+
}).s("LicenseManagerUserSubscriptions", "RegisterIdentityProvider", {}).n("LicenseManagerUserSubscriptionsClient", "RegisterIdentityProviderCommand").f(RegisterIdentityProviderRequestFilterSensitiveLog, void 0).ser(se_RegisterIdentityProviderCommand).de(de_RegisterIdentityProviderCommand).build() {
|
|
940
1315
|
};
|
|
941
1316
|
__name(_RegisterIdentityProviderCommand, "RegisterIdentityProviderCommand");
|
|
942
1317
|
var RegisterIdentityProviderCommand = _RegisterIdentityProviderCommand;
|
|
@@ -950,7 +1325,7 @@ var _StartProductSubscriptionCommand = class _StartProductSubscriptionCommand ex
|
|
|
950
1325
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
951
1326
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
952
1327
|
];
|
|
953
|
-
}).s("LicenseManagerUserSubscriptions", "StartProductSubscription", {}).n("LicenseManagerUserSubscriptionsClient", "StartProductSubscriptionCommand").f(
|
|
1328
|
+
}).s("LicenseManagerUserSubscriptions", "StartProductSubscription", {}).n("LicenseManagerUserSubscriptionsClient", "StartProductSubscriptionCommand").f(StartProductSubscriptionRequestFilterSensitiveLog, void 0).ser(se_StartProductSubscriptionCommand).de(de_StartProductSubscriptionCommand).build() {
|
|
954
1329
|
};
|
|
955
1330
|
__name(_StartProductSubscriptionCommand, "StartProductSubscriptionCommand");
|
|
956
1331
|
var StartProductSubscriptionCommand = _StartProductSubscriptionCommand;
|
|
@@ -969,6 +1344,34 @@ var _StopProductSubscriptionCommand = class _StopProductSubscriptionCommand exte
|
|
|
969
1344
|
__name(_StopProductSubscriptionCommand, "StopProductSubscriptionCommand");
|
|
970
1345
|
var StopProductSubscriptionCommand = _StopProductSubscriptionCommand;
|
|
971
1346
|
|
|
1347
|
+
// src/commands/TagResourceCommand.ts
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
|
|
1351
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1352
|
+
return [
|
|
1353
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1354
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1355
|
+
];
|
|
1356
|
+
}).s("LicenseManagerUserSubscriptions", "TagResource", {}).n("LicenseManagerUserSubscriptionsClient", "TagResourceCommand").f(TagResourceRequestFilterSensitiveLog, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1357
|
+
};
|
|
1358
|
+
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1359
|
+
var TagResourceCommand = _TagResourceCommand;
|
|
1360
|
+
|
|
1361
|
+
// src/commands/UntagResourceCommand.ts
|
|
1362
|
+
|
|
1363
|
+
|
|
1364
|
+
|
|
1365
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1366
|
+
return [
|
|
1367
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1368
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1369
|
+
];
|
|
1370
|
+
}).s("LicenseManagerUserSubscriptions", "UntagResource", {}).n("LicenseManagerUserSubscriptionsClient", "UntagResourceCommand").f(UntagResourceRequestFilterSensitiveLog, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1371
|
+
};
|
|
1372
|
+
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1373
|
+
var UntagResourceCommand = _UntagResourceCommand;
|
|
1374
|
+
|
|
972
1375
|
// src/commands/UpdateIdentityProviderSettingsCommand.ts
|
|
973
1376
|
|
|
974
1377
|
|
|
@@ -986,15 +1389,21 @@ var UpdateIdentityProviderSettingsCommand = _UpdateIdentityProviderSettingsComma
|
|
|
986
1389
|
// src/LicenseManagerUserSubscriptions.ts
|
|
987
1390
|
var commands = {
|
|
988
1391
|
AssociateUserCommand,
|
|
1392
|
+
CreateLicenseServerEndpointCommand,
|
|
1393
|
+
DeleteLicenseServerEndpointCommand,
|
|
989
1394
|
DeregisterIdentityProviderCommand,
|
|
990
1395
|
DisassociateUserCommand,
|
|
991
1396
|
ListIdentityProvidersCommand,
|
|
992
1397
|
ListInstancesCommand,
|
|
1398
|
+
ListLicenseServerEndpointsCommand,
|
|
993
1399
|
ListProductSubscriptionsCommand,
|
|
1400
|
+
ListTagsForResourceCommand,
|
|
994
1401
|
ListUserAssociationsCommand,
|
|
995
1402
|
RegisterIdentityProviderCommand,
|
|
996
1403
|
StartProductSubscriptionCommand,
|
|
997
1404
|
StopProductSubscriptionCommand,
|
|
1405
|
+
TagResourceCommand,
|
|
1406
|
+
UntagResourceCommand,
|
|
998
1407
|
UpdateIdentityProviderSettingsCommand
|
|
999
1408
|
};
|
|
1000
1409
|
var _LicenseManagerUserSubscriptions = class _LicenseManagerUserSubscriptions extends LicenseManagerUserSubscriptionsClient {
|
|
@@ -1011,6 +1420,10 @@ var paginateListIdentityProviders = (0, import_core.createPaginator)(LicenseMana
|
|
|
1011
1420
|
|
|
1012
1421
|
var paginateListInstances = (0, import_core.createPaginator)(LicenseManagerUserSubscriptionsClient, ListInstancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1013
1422
|
|
|
1423
|
+
// src/pagination/ListLicenseServerEndpointsPaginator.ts
|
|
1424
|
+
|
|
1425
|
+
var paginateListLicenseServerEndpoints = (0, import_core.createPaginator)(LicenseManagerUserSubscriptionsClient, ListLicenseServerEndpointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1426
|
+
|
|
1014
1427
|
// src/pagination/ListProductSubscriptionsPaginator.ts
|
|
1015
1428
|
|
|
1016
1429
|
var paginateListProductSubscriptions = (0, import_core.createPaginator)(LicenseManagerUserSubscriptionsClient, ListProductSubscriptionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1027,27 +1440,47 @@ var paginateListUserAssociations = (0, import_core.createPaginator)(LicenseManag
|
|
|
1027
1440
|
LicenseManagerUserSubscriptions,
|
|
1028
1441
|
$Command,
|
|
1029
1442
|
AssociateUserCommand,
|
|
1443
|
+
CreateLicenseServerEndpointCommand,
|
|
1444
|
+
DeleteLicenseServerEndpointCommand,
|
|
1030
1445
|
DeregisterIdentityProviderCommand,
|
|
1031
1446
|
DisassociateUserCommand,
|
|
1032
1447
|
ListIdentityProvidersCommand,
|
|
1033
1448
|
ListInstancesCommand,
|
|
1449
|
+
ListLicenseServerEndpointsCommand,
|
|
1034
1450
|
ListProductSubscriptionsCommand,
|
|
1451
|
+
ListTagsForResourceCommand,
|
|
1035
1452
|
ListUserAssociationsCommand,
|
|
1036
1453
|
RegisterIdentityProviderCommand,
|
|
1037
1454
|
StartProductSubscriptionCommand,
|
|
1038
1455
|
StopProductSubscriptionCommand,
|
|
1456
|
+
TagResourceCommand,
|
|
1457
|
+
UntagResourceCommand,
|
|
1039
1458
|
UpdateIdentityProviderSettingsCommand,
|
|
1040
1459
|
paginateListIdentityProviders,
|
|
1041
1460
|
paginateListInstances,
|
|
1461
|
+
paginateListLicenseServerEndpoints,
|
|
1042
1462
|
paginateListProductSubscriptions,
|
|
1043
1463
|
paginateListUserAssociations,
|
|
1044
1464
|
AccessDeniedException,
|
|
1465
|
+
CredentialsProvider,
|
|
1466
|
+
ActiveDirectoryType,
|
|
1045
1467
|
IdentityProvider,
|
|
1046
1468
|
ConflictException,
|
|
1047
1469
|
InternalServerException,
|
|
1048
1470
|
ResourceNotFoundException,
|
|
1049
1471
|
ServiceQuotaExceededException,
|
|
1050
1472
|
ThrottlingException,
|
|
1051
|
-
ValidationException
|
|
1473
|
+
ValidationException,
|
|
1474
|
+
ServerSettings,
|
|
1475
|
+
ServerType,
|
|
1476
|
+
LicenseServerEndpointProvisioningStatus,
|
|
1477
|
+
LicenseServerHealthStatus,
|
|
1478
|
+
AssociateUserRequestFilterSensitiveLog,
|
|
1479
|
+
CreateLicenseServerEndpointRequestFilterSensitiveLog,
|
|
1480
|
+
ListTagsForResourceResponseFilterSensitiveLog,
|
|
1481
|
+
RegisterIdentityProviderRequestFilterSensitiveLog,
|
|
1482
|
+
StartProductSubscriptionRequestFilterSensitiveLog,
|
|
1483
|
+
TagResourceRequestFilterSensitiveLog,
|
|
1484
|
+
UntagResourceRequestFilterSensitiveLog
|
|
1052
1485
|
});
|
|
1053
1486
|
|