@aws-sdk/client-license-manager-user-subscriptions 3.378.0 → 3.382.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.
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
2
5
|
export interface ClientInputEndpointParameters {
|
|
3
6
|
region?: string | Provider<string>;
|
|
4
7
|
useDualstackEndpoint?: boolean | Provider<boolean>;
|
package/dist-types/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export * from "./LicenseManagerUserSubscriptionsClient";
|
|
8
8
|
export * from "./LicenseManagerUserSubscriptions";
|
|
9
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
10
|
export * from "./commands";
|
|
10
11
|
export * from "./pagination";
|
|
11
12
|
export * from "./models";
|
|
@@ -18,6 +18,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
18
18
|
*/
|
|
19
19
|
export interface ActiveDirectoryIdentityProvider {
|
|
20
20
|
/**
|
|
21
|
+
* @public
|
|
21
22
|
* <p>The directory ID for an Active Directory identity provider.</p>
|
|
22
23
|
*/
|
|
23
24
|
DirectoryId?: string;
|
|
@@ -32,12 +33,16 @@ export type IdentityProvider = IdentityProvider.ActiveDirectoryIdentityProviderM
|
|
|
32
33
|
*/
|
|
33
34
|
export declare namespace IdentityProvider {
|
|
34
35
|
/**
|
|
36
|
+
* @public
|
|
35
37
|
* <p>An object that details an Active Directory identity provider.</p>
|
|
36
38
|
*/
|
|
37
39
|
interface ActiveDirectoryIdentityProviderMember {
|
|
38
40
|
ActiveDirectoryIdentityProvider: ActiveDirectoryIdentityProvider;
|
|
39
41
|
$unknown?: never;
|
|
40
42
|
}
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
41
46
|
interface $UnknownMember {
|
|
42
47
|
ActiveDirectoryIdentityProvider?: never;
|
|
43
48
|
$unknown: [string, any];
|
|
@@ -53,18 +58,22 @@ export declare namespace IdentityProvider {
|
|
|
53
58
|
*/
|
|
54
59
|
export interface AssociateUserRequest {
|
|
55
60
|
/**
|
|
61
|
+
* @public
|
|
56
62
|
* <p>The user name from the identity provider for the user.</p>
|
|
57
63
|
*/
|
|
58
64
|
Username: string | undefined;
|
|
59
65
|
/**
|
|
66
|
+
* @public
|
|
60
67
|
* <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
|
|
61
68
|
*/
|
|
62
69
|
InstanceId: string | undefined;
|
|
63
70
|
/**
|
|
71
|
+
* @public
|
|
64
72
|
* <p>The identity provider of the user.</p>
|
|
65
73
|
*/
|
|
66
74
|
IdentityProvider: IdentityProvider | undefined;
|
|
67
75
|
/**
|
|
76
|
+
* @public
|
|
68
77
|
* <p>The domain name of the user.</p>
|
|
69
78
|
*/
|
|
70
79
|
Domain?: string;
|
|
@@ -75,34 +84,42 @@ export interface AssociateUserRequest {
|
|
|
75
84
|
*/
|
|
76
85
|
export interface InstanceUserSummary {
|
|
77
86
|
/**
|
|
87
|
+
* @public
|
|
78
88
|
* <p>The user name from the identity provider for the user.</p>
|
|
79
89
|
*/
|
|
80
90
|
Username: string | undefined;
|
|
81
91
|
/**
|
|
92
|
+
* @public
|
|
82
93
|
* <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
|
|
83
94
|
*/
|
|
84
95
|
InstanceId: string | undefined;
|
|
85
96
|
/**
|
|
97
|
+
* @public
|
|
86
98
|
* <p>An object that specifies details for the identity provider.</p>
|
|
87
99
|
*/
|
|
88
100
|
IdentityProvider: IdentityProvider | undefined;
|
|
89
101
|
/**
|
|
102
|
+
* @public
|
|
90
103
|
* <p>The status of a user associated with an EC2 instance.</p>
|
|
91
104
|
*/
|
|
92
105
|
Status: string | undefined;
|
|
93
106
|
/**
|
|
107
|
+
* @public
|
|
94
108
|
* <p>The status message for users of an EC2 instance.</p>
|
|
95
109
|
*/
|
|
96
110
|
StatusMessage?: string;
|
|
97
111
|
/**
|
|
112
|
+
* @public
|
|
98
113
|
* <p>The domain name of the user.</p>
|
|
99
114
|
*/
|
|
100
115
|
Domain?: string;
|
|
101
116
|
/**
|
|
117
|
+
* @public
|
|
102
118
|
* <p>The date a user was associated with an EC2 instance.</p>
|
|
103
119
|
*/
|
|
104
120
|
AssociationDate?: string;
|
|
105
121
|
/**
|
|
122
|
+
* @public
|
|
106
123
|
* <p>The date a user was disassociated from an EC2 instance.</p>
|
|
107
124
|
*/
|
|
108
125
|
DisassociationDate?: string;
|
|
@@ -112,6 +129,7 @@ export interface InstanceUserSummary {
|
|
|
112
129
|
*/
|
|
113
130
|
export interface AssociateUserResponse {
|
|
114
131
|
/**
|
|
132
|
+
* @public
|
|
115
133
|
* <p>Metadata that describes the associate user operation.</p>
|
|
116
134
|
*/
|
|
117
135
|
InstanceUserSummary: InstanceUserSummary | undefined;
|
|
@@ -194,10 +212,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
194
212
|
*/
|
|
195
213
|
export interface DeregisterIdentityProviderRequest {
|
|
196
214
|
/**
|
|
215
|
+
* @public
|
|
197
216
|
* <p>An object that specifies details for the identity provider.</p>
|
|
198
217
|
*/
|
|
199
218
|
IdentityProvider: IdentityProvider | undefined;
|
|
200
219
|
/**
|
|
220
|
+
* @public
|
|
201
221
|
* <p>The name of the user-based subscription product.</p>
|
|
202
222
|
*/
|
|
203
223
|
Product: string | undefined;
|
|
@@ -211,10 +231,12 @@ export interface DeregisterIdentityProviderRequest {
|
|
|
211
231
|
*/
|
|
212
232
|
export interface Settings {
|
|
213
233
|
/**
|
|
234
|
+
* @public
|
|
214
235
|
* <p>The subnets defined for the registered identity provider.</p>
|
|
215
236
|
*/
|
|
216
237
|
Subnets: string[] | undefined;
|
|
217
238
|
/**
|
|
239
|
+
* @public
|
|
218
240
|
* <p>A security group ID that allows inbound TCP port 1688 communication between resources in
|
|
219
241
|
* your VPC and the VPC endpoint for activation servers.</p>
|
|
220
242
|
*/
|
|
@@ -226,23 +248,28 @@ export interface Settings {
|
|
|
226
248
|
*/
|
|
227
249
|
export interface IdentityProviderSummary {
|
|
228
250
|
/**
|
|
251
|
+
* @public
|
|
229
252
|
* <p>An object that specifies details for the identity provider.</p>
|
|
230
253
|
*/
|
|
231
254
|
IdentityProvider: IdentityProvider | undefined;
|
|
232
255
|
/**
|
|
256
|
+
* @public
|
|
233
257
|
* <p>An object that details the registered identity provider’s product related configuration
|
|
234
258
|
* settings such as the subnets to provision VPC endpoints.</p>
|
|
235
259
|
*/
|
|
236
260
|
Settings: Settings | undefined;
|
|
237
261
|
/**
|
|
262
|
+
* @public
|
|
238
263
|
* <p>The name of the user-based subscription product.</p>
|
|
239
264
|
*/
|
|
240
265
|
Product: string | undefined;
|
|
241
266
|
/**
|
|
267
|
+
* @public
|
|
242
268
|
* <p>The status of an identity provider.</p>
|
|
243
269
|
*/
|
|
244
270
|
Status: string | undefined;
|
|
245
271
|
/**
|
|
272
|
+
* @public
|
|
246
273
|
* <p>The failure message associated with an identity provider.</p>
|
|
247
274
|
*/
|
|
248
275
|
FailureMessage?: string;
|
|
@@ -252,6 +279,7 @@ export interface IdentityProviderSummary {
|
|
|
252
279
|
*/
|
|
253
280
|
export interface DeregisterIdentityProviderResponse {
|
|
254
281
|
/**
|
|
282
|
+
* @public
|
|
255
283
|
* <p>Metadata that describes the results of an identity provider operation.</p>
|
|
256
284
|
*/
|
|
257
285
|
IdentityProviderSummary: IdentityProviderSummary | undefined;
|
|
@@ -261,18 +289,22 @@ export interface DeregisterIdentityProviderResponse {
|
|
|
261
289
|
*/
|
|
262
290
|
export interface DisassociateUserRequest {
|
|
263
291
|
/**
|
|
292
|
+
* @public
|
|
264
293
|
* <p>The user name from the identity provider for the user.</p>
|
|
265
294
|
*/
|
|
266
295
|
Username: string | undefined;
|
|
267
296
|
/**
|
|
297
|
+
* @public
|
|
268
298
|
* <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
|
|
269
299
|
*/
|
|
270
300
|
InstanceId: string | undefined;
|
|
271
301
|
/**
|
|
302
|
+
* @public
|
|
272
303
|
* <p>An object that specifies details for the identity provider.</p>
|
|
273
304
|
*/
|
|
274
305
|
IdentityProvider: IdentityProvider | undefined;
|
|
275
306
|
/**
|
|
307
|
+
* @public
|
|
276
308
|
* <p>The domain name of the user.</p>
|
|
277
309
|
*/
|
|
278
310
|
Domain?: string;
|
|
@@ -282,6 +314,7 @@ export interface DisassociateUserRequest {
|
|
|
282
314
|
*/
|
|
283
315
|
export interface DisassociateUserResponse {
|
|
284
316
|
/**
|
|
317
|
+
* @public
|
|
285
318
|
* <p>Metadata that describes the associate user operation.</p>
|
|
286
319
|
*/
|
|
287
320
|
InstanceUserSummary: InstanceUserSummary | undefined;
|
|
@@ -294,14 +327,17 @@ export interface DisassociateUserResponse {
|
|
|
294
327
|
*/
|
|
295
328
|
export interface Filter {
|
|
296
329
|
/**
|
|
330
|
+
* @public
|
|
297
331
|
* <p>The name of an attribute to use as a filter.</p>
|
|
298
332
|
*/
|
|
299
333
|
Attribute?: string;
|
|
300
334
|
/**
|
|
335
|
+
* @public
|
|
301
336
|
* <p>The type of search (For example, eq, geq, leq)</p>
|
|
302
337
|
*/
|
|
303
338
|
Operation?: string;
|
|
304
339
|
/**
|
|
340
|
+
* @public
|
|
305
341
|
* <p>Value of the filter.</p>
|
|
306
342
|
*/
|
|
307
343
|
Value?: string;
|
|
@@ -312,22 +348,27 @@ export interface Filter {
|
|
|
312
348
|
*/
|
|
313
349
|
export interface InstanceSummary {
|
|
314
350
|
/**
|
|
351
|
+
* @public
|
|
315
352
|
* <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
|
|
316
353
|
*/
|
|
317
354
|
InstanceId: string | undefined;
|
|
318
355
|
/**
|
|
356
|
+
* @public
|
|
319
357
|
* <p>The status of an EC2 instance resource.</p>
|
|
320
358
|
*/
|
|
321
359
|
Status: string | undefined;
|
|
322
360
|
/**
|
|
361
|
+
* @public
|
|
323
362
|
* <p>A list of provided user-based subscription products.</p>
|
|
324
363
|
*/
|
|
325
364
|
Products: string[] | undefined;
|
|
326
365
|
/**
|
|
366
|
+
* @public
|
|
327
367
|
* <p>The date of the last status check.</p>
|
|
328
368
|
*/
|
|
329
369
|
LastStatusCheckDate?: string;
|
|
330
370
|
/**
|
|
371
|
+
* @public
|
|
331
372
|
* <p>The status message for an EC2 instance.</p>
|
|
332
373
|
*/
|
|
333
374
|
StatusMessage?: string;
|
|
@@ -337,10 +378,12 @@ export interface InstanceSummary {
|
|
|
337
378
|
*/
|
|
338
379
|
export interface ListIdentityProvidersRequest {
|
|
339
380
|
/**
|
|
381
|
+
* @public
|
|
340
382
|
* <p>Maximum number of results to return in a single call.</p>
|
|
341
383
|
*/
|
|
342
384
|
MaxResults?: number;
|
|
343
385
|
/**
|
|
386
|
+
* @public
|
|
344
387
|
* <p>Token for the next set of results.</p>
|
|
345
388
|
*/
|
|
346
389
|
NextToken?: string;
|
|
@@ -350,10 +393,12 @@ export interface ListIdentityProvidersRequest {
|
|
|
350
393
|
*/
|
|
351
394
|
export interface ListIdentityProvidersResponse {
|
|
352
395
|
/**
|
|
396
|
+
* @public
|
|
353
397
|
* <p>Metadata that describes the list identity providers operation.</p>
|
|
354
398
|
*/
|
|
355
399
|
IdentityProviderSummaries: IdentityProviderSummary[] | undefined;
|
|
356
400
|
/**
|
|
401
|
+
* @public
|
|
357
402
|
* <p>Token for the next set of results.</p>
|
|
358
403
|
*/
|
|
359
404
|
NextToken?: string;
|
|
@@ -363,14 +408,17 @@ export interface ListIdentityProvidersResponse {
|
|
|
363
408
|
*/
|
|
364
409
|
export interface ListInstancesRequest {
|
|
365
410
|
/**
|
|
411
|
+
* @public
|
|
366
412
|
* <p>Maximum number of results to return in a single call.</p>
|
|
367
413
|
*/
|
|
368
414
|
MaxResults?: number;
|
|
369
415
|
/**
|
|
416
|
+
* @public
|
|
370
417
|
* <p>Token for the next set of results.</p>
|
|
371
418
|
*/
|
|
372
419
|
NextToken?: string;
|
|
373
420
|
/**
|
|
421
|
+
* @public
|
|
374
422
|
* <p>An array of structures that you can use to filter the results to those that match one or
|
|
375
423
|
* more sets of key-value pairs that you specify.</p>
|
|
376
424
|
*/
|
|
@@ -381,10 +429,12 @@ export interface ListInstancesRequest {
|
|
|
381
429
|
*/
|
|
382
430
|
export interface ListInstancesResponse {
|
|
383
431
|
/**
|
|
432
|
+
* @public
|
|
384
433
|
* <p>Metadata that describes the list instances operation.</p>
|
|
385
434
|
*/
|
|
386
435
|
InstanceSummaries?: InstanceSummary[];
|
|
387
436
|
/**
|
|
437
|
+
* @public
|
|
388
438
|
* <p>Token for the next set of results.</p>
|
|
389
439
|
*/
|
|
390
440
|
NextToken?: string;
|
|
@@ -394,23 +444,28 @@ export interface ListInstancesResponse {
|
|
|
394
444
|
*/
|
|
395
445
|
export interface ListProductSubscriptionsRequest {
|
|
396
446
|
/**
|
|
447
|
+
* @public
|
|
397
448
|
* <p>The name of the user-based subscription product.</p>
|
|
398
449
|
*/
|
|
399
450
|
Product: string | undefined;
|
|
400
451
|
/**
|
|
452
|
+
* @public
|
|
401
453
|
* <p>An object that specifies details for the identity provider.</p>
|
|
402
454
|
*/
|
|
403
455
|
IdentityProvider: IdentityProvider | undefined;
|
|
404
456
|
/**
|
|
457
|
+
* @public
|
|
405
458
|
* <p>Maximum number of results to return in a single call.</p>
|
|
406
459
|
*/
|
|
407
460
|
MaxResults?: number;
|
|
408
461
|
/**
|
|
462
|
+
* @public
|
|
409
463
|
* <p>An array of structures that you can use to filter the results to those that match one or
|
|
410
464
|
* more sets of key-value pairs that you specify.</p>
|
|
411
465
|
*/
|
|
412
466
|
Filters?: Filter[];
|
|
413
467
|
/**
|
|
468
|
+
* @public
|
|
414
469
|
* <p>Token for the next set of results.</p>
|
|
415
470
|
*/
|
|
416
471
|
NextToken?: string;
|
|
@@ -421,34 +476,42 @@ export interface ListProductSubscriptionsRequest {
|
|
|
421
476
|
*/
|
|
422
477
|
export interface ProductUserSummary {
|
|
423
478
|
/**
|
|
479
|
+
* @public
|
|
424
480
|
* <p>The user name from the identity provider of the user.</p>
|
|
425
481
|
*/
|
|
426
482
|
Username: string | undefined;
|
|
427
483
|
/**
|
|
484
|
+
* @public
|
|
428
485
|
* <p>The name of the user-based subscription product.</p>
|
|
429
486
|
*/
|
|
430
487
|
Product: string | undefined;
|
|
431
488
|
/**
|
|
489
|
+
* @public
|
|
432
490
|
* <p>An object that specifies details for the identity provider.</p>
|
|
433
491
|
*/
|
|
434
492
|
IdentityProvider: IdentityProvider | undefined;
|
|
435
493
|
/**
|
|
494
|
+
* @public
|
|
436
495
|
* <p>The status of a product for a user.</p>
|
|
437
496
|
*/
|
|
438
497
|
Status: string | undefined;
|
|
439
498
|
/**
|
|
499
|
+
* @public
|
|
440
500
|
* <p>The status message for a product for a user.</p>
|
|
441
501
|
*/
|
|
442
502
|
StatusMessage?: string;
|
|
443
503
|
/**
|
|
504
|
+
* @public
|
|
444
505
|
* <p>The domain name of the user.</p>
|
|
445
506
|
*/
|
|
446
507
|
Domain?: string;
|
|
447
508
|
/**
|
|
509
|
+
* @public
|
|
448
510
|
* <p>The start date of a subscription.</p>
|
|
449
511
|
*/
|
|
450
512
|
SubscriptionStartDate?: string;
|
|
451
513
|
/**
|
|
514
|
+
* @public
|
|
452
515
|
* <p>The end date of a subscription.</p>
|
|
453
516
|
*/
|
|
454
517
|
SubscriptionEndDate?: string;
|
|
@@ -458,10 +521,12 @@ export interface ProductUserSummary {
|
|
|
458
521
|
*/
|
|
459
522
|
export interface ListProductSubscriptionsResponse {
|
|
460
523
|
/**
|
|
524
|
+
* @public
|
|
461
525
|
* <p>Metadata that describes the list product subscriptions operation.</p>
|
|
462
526
|
*/
|
|
463
527
|
ProductUserSummaries?: ProductUserSummary[];
|
|
464
528
|
/**
|
|
529
|
+
* @public
|
|
465
530
|
* <p>Token for the next set of results.</p>
|
|
466
531
|
*/
|
|
467
532
|
NextToken?: string;
|
|
@@ -471,23 +536,28 @@ export interface ListProductSubscriptionsResponse {
|
|
|
471
536
|
*/
|
|
472
537
|
export interface ListUserAssociationsRequest {
|
|
473
538
|
/**
|
|
539
|
+
* @public
|
|
474
540
|
* <p>The ID of the EC2 instance, which provides user-based subscriptions.</p>
|
|
475
541
|
*/
|
|
476
542
|
InstanceId: string | undefined;
|
|
477
543
|
/**
|
|
544
|
+
* @public
|
|
478
545
|
* <p>An object that specifies details for the identity provider.</p>
|
|
479
546
|
*/
|
|
480
547
|
IdentityProvider: IdentityProvider | undefined;
|
|
481
548
|
/**
|
|
549
|
+
* @public
|
|
482
550
|
* <p>Maximum number of results to return in a single call.</p>
|
|
483
551
|
*/
|
|
484
552
|
MaxResults?: number;
|
|
485
553
|
/**
|
|
554
|
+
* @public
|
|
486
555
|
* <p>An array of structures that you can use to filter the results to those that match one or
|
|
487
556
|
* more sets of key-value pairs that you specify.</p>
|
|
488
557
|
*/
|
|
489
558
|
Filters?: Filter[];
|
|
490
559
|
/**
|
|
560
|
+
* @public
|
|
491
561
|
* <p>Token for the next set of results.</p>
|
|
492
562
|
*/
|
|
493
563
|
NextToken?: string;
|
|
@@ -497,10 +567,12 @@ export interface ListUserAssociationsRequest {
|
|
|
497
567
|
*/
|
|
498
568
|
export interface ListUserAssociationsResponse {
|
|
499
569
|
/**
|
|
570
|
+
* @public
|
|
500
571
|
* <p>Metadata that describes the list user association operation.</p>
|
|
501
572
|
*/
|
|
502
573
|
InstanceUserSummaries?: InstanceUserSummary[];
|
|
503
574
|
/**
|
|
575
|
+
* @public
|
|
504
576
|
* <p>Token for the next set of results.</p>
|
|
505
577
|
*/
|
|
506
578
|
NextToken?: string;
|
|
@@ -510,14 +582,17 @@ export interface ListUserAssociationsResponse {
|
|
|
510
582
|
*/
|
|
511
583
|
export interface RegisterIdentityProviderRequest {
|
|
512
584
|
/**
|
|
585
|
+
* @public
|
|
513
586
|
* <p>An object that specifies details for the identity provider.</p>
|
|
514
587
|
*/
|
|
515
588
|
IdentityProvider: IdentityProvider | undefined;
|
|
516
589
|
/**
|
|
590
|
+
* @public
|
|
517
591
|
* <p>The name of the user-based subscription product.</p>
|
|
518
592
|
*/
|
|
519
593
|
Product: string | undefined;
|
|
520
594
|
/**
|
|
595
|
+
* @public
|
|
521
596
|
* <p>The registered identity provider’s product related configuration settings such as the
|
|
522
597
|
* subnets to provision VPC endpoints.</p>
|
|
523
598
|
*/
|
|
@@ -528,6 +603,7 @@ export interface RegisterIdentityProviderRequest {
|
|
|
528
603
|
*/
|
|
529
604
|
export interface RegisterIdentityProviderResponse {
|
|
530
605
|
/**
|
|
606
|
+
* @public
|
|
531
607
|
* <p>Metadata that describes the results of an identity provider operation.</p>
|
|
532
608
|
*/
|
|
533
609
|
IdentityProviderSummary: IdentityProviderSummary | undefined;
|
|
@@ -537,18 +613,22 @@ export interface RegisterIdentityProviderResponse {
|
|
|
537
613
|
*/
|
|
538
614
|
export interface StartProductSubscriptionRequest {
|
|
539
615
|
/**
|
|
616
|
+
* @public
|
|
540
617
|
* <p>The user name from the identity provider of the user.</p>
|
|
541
618
|
*/
|
|
542
619
|
Username: string | undefined;
|
|
543
620
|
/**
|
|
621
|
+
* @public
|
|
544
622
|
* <p>An object that specifies details for the identity provider.</p>
|
|
545
623
|
*/
|
|
546
624
|
IdentityProvider: IdentityProvider | undefined;
|
|
547
625
|
/**
|
|
626
|
+
* @public
|
|
548
627
|
* <p>The name of the user-based subscription product.</p>
|
|
549
628
|
*/
|
|
550
629
|
Product: string | undefined;
|
|
551
630
|
/**
|
|
631
|
+
* @public
|
|
552
632
|
* <p>The domain name of the user.</p>
|
|
553
633
|
*/
|
|
554
634
|
Domain?: string;
|
|
@@ -558,6 +638,7 @@ export interface StartProductSubscriptionRequest {
|
|
|
558
638
|
*/
|
|
559
639
|
export interface StartProductSubscriptionResponse {
|
|
560
640
|
/**
|
|
641
|
+
* @public
|
|
561
642
|
* <p>Metadata that describes the start product subscription operation.</p>
|
|
562
643
|
*/
|
|
563
644
|
ProductUserSummary: ProductUserSummary | undefined;
|
|
@@ -567,18 +648,22 @@ export interface StartProductSubscriptionResponse {
|
|
|
567
648
|
*/
|
|
568
649
|
export interface StopProductSubscriptionRequest {
|
|
569
650
|
/**
|
|
651
|
+
* @public
|
|
570
652
|
* <p>The user name from the identity provider for the user.</p>
|
|
571
653
|
*/
|
|
572
654
|
Username: string | undefined;
|
|
573
655
|
/**
|
|
656
|
+
* @public
|
|
574
657
|
* <p>An object that specifies details for the identity provider.</p>
|
|
575
658
|
*/
|
|
576
659
|
IdentityProvider: IdentityProvider | undefined;
|
|
577
660
|
/**
|
|
661
|
+
* @public
|
|
578
662
|
* <p>The name of the user-based subscription product.</p>
|
|
579
663
|
*/
|
|
580
664
|
Product: string | undefined;
|
|
581
665
|
/**
|
|
666
|
+
* @public
|
|
582
667
|
* <p>The domain name of the user.</p>
|
|
583
668
|
*/
|
|
584
669
|
Domain?: string;
|
|
@@ -588,6 +673,7 @@ export interface StopProductSubscriptionRequest {
|
|
|
588
673
|
*/
|
|
589
674
|
export interface StopProductSubscriptionResponse {
|
|
590
675
|
/**
|
|
676
|
+
* @public
|
|
591
677
|
* <p>Metadata that describes the start product subscription operation.</p>
|
|
592
678
|
*/
|
|
593
679
|
ProductUserSummary: ProductUserSummary | undefined;
|
|
@@ -599,15 +685,18 @@ export interface StopProductSubscriptionResponse {
|
|
|
599
685
|
*/
|
|
600
686
|
export interface UpdateSettings {
|
|
601
687
|
/**
|
|
688
|
+
* @public
|
|
602
689
|
* <p>The ID of one or more subnets in which License Manager will create a VPC endpoint for products that
|
|
603
690
|
* require connectivity to activation servers.</p>
|
|
604
691
|
*/
|
|
605
692
|
AddSubnets: string[] | undefined;
|
|
606
693
|
/**
|
|
694
|
+
* @public
|
|
607
695
|
* <p>The ID of one or more subnets to remove.</p>
|
|
608
696
|
*/
|
|
609
697
|
RemoveSubnets: string[] | undefined;
|
|
610
698
|
/**
|
|
699
|
+
* @public
|
|
611
700
|
* <p>A security group ID that allows inbound TCP port 1688 communication between resources in
|
|
612
701
|
* your VPC and the VPC endpoints for activation servers.</p>
|
|
613
702
|
*/
|
|
@@ -618,14 +707,17 @@ export interface UpdateSettings {
|
|
|
618
707
|
*/
|
|
619
708
|
export interface UpdateIdentityProviderSettingsRequest {
|
|
620
709
|
/**
|
|
710
|
+
* @public
|
|
621
711
|
* <p>Details about an identity provider.</p>
|
|
622
712
|
*/
|
|
623
713
|
IdentityProvider: IdentityProvider | undefined;
|
|
624
714
|
/**
|
|
715
|
+
* @public
|
|
625
716
|
* <p>The name of the user-based subscription product.</p>
|
|
626
717
|
*/
|
|
627
718
|
Product: string | undefined;
|
|
628
719
|
/**
|
|
720
|
+
* @public
|
|
629
721
|
* <p>Updates the registered identity provider’s product related configuration settings. You can
|
|
630
722
|
* update any combination of settings in a single operation such as the:</p>
|
|
631
723
|
* <ul>
|
|
@@ -647,6 +739,7 @@ export interface UpdateIdentityProviderSettingsRequest {
|
|
|
647
739
|
*/
|
|
648
740
|
export interface UpdateIdentityProviderSettingsResponse {
|
|
649
741
|
/**
|
|
742
|
+
* @public
|
|
650
743
|
* <p>Describes an identity provider.</p>
|
|
651
744
|
*/
|
|
652
745
|
IdentityProviderSummary: IdentityProviderSummary | undefined;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./LicenseManagerUserSubscriptionsClient";
|
|
2
2
|
export * from "./LicenseManagerUserSubscriptions";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
3
4
|
export * from "./commands";
|
|
4
5
|
export * from "./pagination";
|
|
5
6
|
export * from "./models";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-license-manager-user-subscriptions",
|
|
3
3
|
"description": "AWS SDK for JavaScript License Manager User Subscriptions Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.382.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.382.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.382.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|