@aws-sdk/client-license-manager-user-subscriptions 3.686.0 → 3.691.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.
|
@@ -21,7 +21,7 @@ export interface ActiveDirectoryIdentityProvider {
|
|
|
21
21
|
* <p>The directory ID for an Active Directory identity provider.</p>
|
|
22
22
|
* @public
|
|
23
23
|
*/
|
|
24
|
-
DirectoryId?: string;
|
|
24
|
+
DirectoryId?: string | undefined;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
27
|
* <p>Details about an identity provider.</p>
|
|
@@ -76,7 +76,7 @@ export interface AssociateUserRequest {
|
|
|
76
76
|
* <p>The domain name of the user.</p>
|
|
77
77
|
* @public
|
|
78
78
|
*/
|
|
79
|
-
Domain?: string;
|
|
79
|
+
Domain?: string | undefined;
|
|
80
80
|
}
|
|
81
81
|
/**
|
|
82
82
|
* <p>Describes users of an EC2 instance providing user-based subscriptions.</p>
|
|
@@ -107,22 +107,22 @@ export interface InstanceUserSummary {
|
|
|
107
107
|
* <p>The status message for users of an EC2 instance.</p>
|
|
108
108
|
* @public
|
|
109
109
|
*/
|
|
110
|
-
StatusMessage?: string;
|
|
110
|
+
StatusMessage?: string | undefined;
|
|
111
111
|
/**
|
|
112
112
|
* <p>The domain name of the user.</p>
|
|
113
113
|
* @public
|
|
114
114
|
*/
|
|
115
|
-
Domain?: string;
|
|
115
|
+
Domain?: string | undefined;
|
|
116
116
|
/**
|
|
117
117
|
* <p>The date a user was associated with an EC2 instance.</p>
|
|
118
118
|
* @public
|
|
119
119
|
*/
|
|
120
|
-
AssociationDate?: string;
|
|
120
|
+
AssociationDate?: string | undefined;
|
|
121
121
|
/**
|
|
122
122
|
* <p>The date a user was disassociated from an EC2 instance.</p>
|
|
123
123
|
* @public
|
|
124
124
|
*/
|
|
125
|
-
DisassociationDate?: string;
|
|
125
|
+
DisassociationDate?: string | undefined;
|
|
126
126
|
}
|
|
127
127
|
/**
|
|
128
128
|
* @public
|
|
@@ -272,7 +272,7 @@ export interface IdentityProviderSummary {
|
|
|
272
272
|
* <p>The failure message associated with an identity provider.</p>
|
|
273
273
|
* @public
|
|
274
274
|
*/
|
|
275
|
-
FailureMessage?: string;
|
|
275
|
+
FailureMessage?: string | undefined;
|
|
276
276
|
}
|
|
277
277
|
/**
|
|
278
278
|
* @public
|
|
@@ -307,7 +307,7 @@ export interface DisassociateUserRequest {
|
|
|
307
307
|
* <p>The domain name of the user.</p>
|
|
308
308
|
* @public
|
|
309
309
|
*/
|
|
310
|
-
Domain?: string;
|
|
310
|
+
Domain?: string | undefined;
|
|
311
311
|
}
|
|
312
312
|
/**
|
|
313
313
|
* @public
|
|
@@ -330,17 +330,17 @@ export interface Filter {
|
|
|
330
330
|
* <p>The name of an attribute to use as a filter.</p>
|
|
331
331
|
* @public
|
|
332
332
|
*/
|
|
333
|
-
Attribute?: string;
|
|
333
|
+
Attribute?: string | undefined;
|
|
334
334
|
/**
|
|
335
335
|
* <p>The type of search (For example, eq, geq, leq)</p>
|
|
336
336
|
* @public
|
|
337
337
|
*/
|
|
338
|
-
Operation?: string;
|
|
338
|
+
Operation?: string | undefined;
|
|
339
339
|
/**
|
|
340
340
|
* <p>Value of the filter.</p>
|
|
341
341
|
* @public
|
|
342
342
|
*/
|
|
343
|
-
Value?: string;
|
|
343
|
+
Value?: string | undefined;
|
|
344
344
|
}
|
|
345
345
|
/**
|
|
346
346
|
* <p>Describes an EC2 instance providing user-based subscriptions.</p>
|
|
@@ -366,12 +366,12 @@ export interface InstanceSummary {
|
|
|
366
366
|
* <p>The date of the last status check.</p>
|
|
367
367
|
* @public
|
|
368
368
|
*/
|
|
369
|
-
LastStatusCheckDate?: string;
|
|
369
|
+
LastStatusCheckDate?: string | undefined;
|
|
370
370
|
/**
|
|
371
371
|
* <p>The status message for an EC2 instance.</p>
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
StatusMessage?: string;
|
|
374
|
+
StatusMessage?: string | undefined;
|
|
375
375
|
}
|
|
376
376
|
/**
|
|
377
377
|
* @public
|
|
@@ -381,12 +381,12 @@ export interface ListIdentityProvidersRequest {
|
|
|
381
381
|
* <p>Maximum number of results to return in a single call.</p>
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
MaxResults?: number;
|
|
384
|
+
MaxResults?: number | undefined;
|
|
385
385
|
/**
|
|
386
386
|
* <p>Token for the next set of results.</p>
|
|
387
387
|
* @public
|
|
388
388
|
*/
|
|
389
|
-
NextToken?: string;
|
|
389
|
+
NextToken?: string | undefined;
|
|
390
390
|
}
|
|
391
391
|
/**
|
|
392
392
|
* @public
|
|
@@ -401,7 +401,7 @@ export interface ListIdentityProvidersResponse {
|
|
|
401
401
|
* <p>Token for the next set of results.</p>
|
|
402
402
|
* @public
|
|
403
403
|
*/
|
|
404
|
-
NextToken?: string;
|
|
404
|
+
NextToken?: string | undefined;
|
|
405
405
|
}
|
|
406
406
|
/**
|
|
407
407
|
* @public
|
|
@@ -411,18 +411,18 @@ export interface ListInstancesRequest {
|
|
|
411
411
|
* <p>Maximum number of results to return in a single call.</p>
|
|
412
412
|
* @public
|
|
413
413
|
*/
|
|
414
|
-
MaxResults?: number;
|
|
414
|
+
MaxResults?: number | undefined;
|
|
415
415
|
/**
|
|
416
416
|
* <p>Token for the next set of results.</p>
|
|
417
417
|
* @public
|
|
418
418
|
*/
|
|
419
|
-
NextToken?: string;
|
|
419
|
+
NextToken?: string | undefined;
|
|
420
420
|
/**
|
|
421
421
|
* <p>An array of structures that you can use to filter the results to those that match one or
|
|
422
422
|
* more sets of key-value pairs that you specify.</p>
|
|
423
423
|
* @public
|
|
424
424
|
*/
|
|
425
|
-
Filters?: Filter[];
|
|
425
|
+
Filters?: Filter[] | undefined;
|
|
426
426
|
}
|
|
427
427
|
/**
|
|
428
428
|
* @public
|
|
@@ -432,12 +432,12 @@ export interface ListInstancesResponse {
|
|
|
432
432
|
* <p>Metadata that describes the list instances operation.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
InstanceSummaries?: InstanceSummary[];
|
|
435
|
+
InstanceSummaries?: InstanceSummary[] | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>Token for the next set of results.</p>
|
|
438
438
|
* @public
|
|
439
439
|
*/
|
|
440
|
-
NextToken?: string;
|
|
440
|
+
NextToken?: string | undefined;
|
|
441
441
|
}
|
|
442
442
|
/**
|
|
443
443
|
* @public
|
|
@@ -457,18 +457,18 @@ export interface ListProductSubscriptionsRequest {
|
|
|
457
457
|
* <p>Maximum number of results to return in a single call.</p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
MaxResults?: number;
|
|
460
|
+
MaxResults?: number | undefined;
|
|
461
461
|
/**
|
|
462
462
|
* <p>An array of structures that you can use to filter the results to those that match one or
|
|
463
463
|
* more sets of key-value pairs that you specify.</p>
|
|
464
464
|
* @public
|
|
465
465
|
*/
|
|
466
|
-
Filters?: Filter[];
|
|
466
|
+
Filters?: Filter[] | undefined;
|
|
467
467
|
/**
|
|
468
468
|
* <p>Token for the next set of results.</p>
|
|
469
469
|
* @public
|
|
470
470
|
*/
|
|
471
|
-
NextToken?: string;
|
|
471
|
+
NextToken?: string | undefined;
|
|
472
472
|
}
|
|
473
473
|
/**
|
|
474
474
|
* <p>The summary of the user-based subscription products for a user.</p>
|
|
@@ -499,22 +499,22 @@ export interface ProductUserSummary {
|
|
|
499
499
|
* <p>The status message for a product for a user.</p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
StatusMessage?: string;
|
|
502
|
+
StatusMessage?: string | undefined;
|
|
503
503
|
/**
|
|
504
504
|
* <p>The domain name of the user.</p>
|
|
505
505
|
* @public
|
|
506
506
|
*/
|
|
507
|
-
Domain?: string;
|
|
507
|
+
Domain?: string | undefined;
|
|
508
508
|
/**
|
|
509
509
|
* <p>The start date of a subscription.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
SubscriptionStartDate?: string;
|
|
512
|
+
SubscriptionStartDate?: string | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>The end date of a subscription.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
SubscriptionEndDate?: string;
|
|
517
|
+
SubscriptionEndDate?: string | undefined;
|
|
518
518
|
}
|
|
519
519
|
/**
|
|
520
520
|
* @public
|
|
@@ -524,12 +524,12 @@ export interface ListProductSubscriptionsResponse {
|
|
|
524
524
|
* <p>Metadata that describes the list product subscriptions operation.</p>
|
|
525
525
|
* @public
|
|
526
526
|
*/
|
|
527
|
-
ProductUserSummaries?: ProductUserSummary[];
|
|
527
|
+
ProductUserSummaries?: ProductUserSummary[] | undefined;
|
|
528
528
|
/**
|
|
529
529
|
* <p>Token for the next set of results.</p>
|
|
530
530
|
* @public
|
|
531
531
|
*/
|
|
532
|
-
NextToken?: string;
|
|
532
|
+
NextToken?: string | undefined;
|
|
533
533
|
}
|
|
534
534
|
/**
|
|
535
535
|
* @public
|
|
@@ -549,18 +549,18 @@ export interface ListUserAssociationsRequest {
|
|
|
549
549
|
* <p>Maximum number of results to return in a single call.</p>
|
|
550
550
|
* @public
|
|
551
551
|
*/
|
|
552
|
-
MaxResults?: number;
|
|
552
|
+
MaxResults?: number | undefined;
|
|
553
553
|
/**
|
|
554
554
|
* <p>An array of structures that you can use to filter the results to those that match one or
|
|
555
555
|
* more sets of key-value pairs that you specify.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
Filters?: Filter[];
|
|
558
|
+
Filters?: Filter[] | undefined;
|
|
559
559
|
/**
|
|
560
560
|
* <p>Token for the next set of results.</p>
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
NextToken?: string;
|
|
563
|
+
NextToken?: string | undefined;
|
|
564
564
|
}
|
|
565
565
|
/**
|
|
566
566
|
* @public
|
|
@@ -570,12 +570,12 @@ export interface ListUserAssociationsResponse {
|
|
|
570
570
|
* <p>Metadata that describes the list user association operation.</p>
|
|
571
571
|
* @public
|
|
572
572
|
*/
|
|
573
|
-
InstanceUserSummaries?: InstanceUserSummary[];
|
|
573
|
+
InstanceUserSummaries?: InstanceUserSummary[] | undefined;
|
|
574
574
|
/**
|
|
575
575
|
* <p>Token for the next set of results.</p>
|
|
576
576
|
* @public
|
|
577
577
|
*/
|
|
578
|
-
NextToken?: string;
|
|
578
|
+
NextToken?: string | undefined;
|
|
579
579
|
}
|
|
580
580
|
/**
|
|
581
581
|
* @public
|
|
@@ -596,7 +596,7 @@ export interface RegisterIdentityProviderRequest {
|
|
|
596
596
|
* subnets to provision VPC endpoints.</p>
|
|
597
597
|
* @public
|
|
598
598
|
*/
|
|
599
|
-
Settings?: Settings;
|
|
599
|
+
Settings?: Settings | undefined;
|
|
600
600
|
}
|
|
601
601
|
/**
|
|
602
602
|
* @public
|
|
@@ -631,7 +631,7 @@ export interface StartProductSubscriptionRequest {
|
|
|
631
631
|
* <p>The domain name of the user.</p>
|
|
632
632
|
* @public
|
|
633
633
|
*/
|
|
634
|
-
Domain?: string;
|
|
634
|
+
Domain?: string | undefined;
|
|
635
635
|
}
|
|
636
636
|
/**
|
|
637
637
|
* @public
|
|
@@ -666,7 +666,7 @@ export interface StopProductSubscriptionRequest {
|
|
|
666
666
|
* <p>The domain name of the user.</p>
|
|
667
667
|
* @public
|
|
668
668
|
*/
|
|
669
|
-
Domain?: string;
|
|
669
|
+
Domain?: string | undefined;
|
|
670
670
|
}
|
|
671
671
|
/**
|
|
672
672
|
* @public
|
|
@@ -700,7 +700,7 @@ export interface UpdateSettings {
|
|
|
700
700
|
* your VPC and the VPC endpoints for activation servers.</p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
SecurityGroupId?: string;
|
|
703
|
+
SecurityGroupId?: string | undefined;
|
|
704
704
|
}
|
|
705
705
|
/**
|
|
706
706
|
* @public
|
|
@@ -8,7 +8,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
);
|
|
9
9
|
}
|
|
10
10
|
export interface ActiveDirectoryIdentityProvider {
|
|
11
|
-
DirectoryId?: string;
|
|
11
|
+
DirectoryId?: string | undefined;
|
|
12
12
|
}
|
|
13
13
|
export type IdentityProvider =
|
|
14
14
|
| IdentityProvider.ActiveDirectoryIdentityProviderMember
|
|
@@ -34,17 +34,17 @@ export interface AssociateUserRequest {
|
|
|
34
34
|
Username: string | undefined;
|
|
35
35
|
InstanceId: string | undefined;
|
|
36
36
|
IdentityProvider: IdentityProvider | undefined;
|
|
37
|
-
Domain?: string;
|
|
37
|
+
Domain?: string | undefined;
|
|
38
38
|
}
|
|
39
39
|
export interface InstanceUserSummary {
|
|
40
40
|
Username: string | undefined;
|
|
41
41
|
InstanceId: string | undefined;
|
|
42
42
|
IdentityProvider: IdentityProvider | undefined;
|
|
43
43
|
Status: string | undefined;
|
|
44
|
-
StatusMessage?: string;
|
|
45
|
-
Domain?: string;
|
|
46
|
-
AssociationDate?: string;
|
|
47
|
-
DisassociationDate?: string;
|
|
44
|
+
StatusMessage?: string | undefined;
|
|
45
|
+
Domain?: string | undefined;
|
|
46
|
+
AssociationDate?: string | undefined;
|
|
47
|
+
DisassociationDate?: string | undefined;
|
|
48
48
|
}
|
|
49
49
|
export interface AssociateUserResponse {
|
|
50
50
|
InstanceUserSummary: InstanceUserSummary | undefined;
|
|
@@ -102,7 +102,7 @@ export interface IdentityProviderSummary {
|
|
|
102
102
|
Settings: Settings | undefined;
|
|
103
103
|
Product: string | undefined;
|
|
104
104
|
Status: string | undefined;
|
|
105
|
-
FailureMessage?: string;
|
|
105
|
+
FailureMessage?: string | undefined;
|
|
106
106
|
}
|
|
107
107
|
export interface DeregisterIdentityProviderResponse {
|
|
108
108
|
IdentityProviderSummary: IdentityProviderSummary | undefined;
|
|
@@ -111,76 +111,76 @@ export interface DisassociateUserRequest {
|
|
|
111
111
|
Username: string | undefined;
|
|
112
112
|
InstanceId: string | undefined;
|
|
113
113
|
IdentityProvider: IdentityProvider | undefined;
|
|
114
|
-
Domain?: string;
|
|
114
|
+
Domain?: string | undefined;
|
|
115
115
|
}
|
|
116
116
|
export interface DisassociateUserResponse {
|
|
117
117
|
InstanceUserSummary: InstanceUserSummary | undefined;
|
|
118
118
|
}
|
|
119
119
|
export interface Filter {
|
|
120
|
-
Attribute?: string;
|
|
121
|
-
Operation?: string;
|
|
122
|
-
Value?: string;
|
|
120
|
+
Attribute?: string | undefined;
|
|
121
|
+
Operation?: string | undefined;
|
|
122
|
+
Value?: string | undefined;
|
|
123
123
|
}
|
|
124
124
|
export interface InstanceSummary {
|
|
125
125
|
InstanceId: string | undefined;
|
|
126
126
|
Status: string | undefined;
|
|
127
127
|
Products: string[] | undefined;
|
|
128
|
-
LastStatusCheckDate?: string;
|
|
129
|
-
StatusMessage?: string;
|
|
128
|
+
LastStatusCheckDate?: string | undefined;
|
|
129
|
+
StatusMessage?: string | undefined;
|
|
130
130
|
}
|
|
131
131
|
export interface ListIdentityProvidersRequest {
|
|
132
|
-
MaxResults?: number;
|
|
133
|
-
NextToken?: string;
|
|
132
|
+
MaxResults?: number | undefined;
|
|
133
|
+
NextToken?: string | undefined;
|
|
134
134
|
}
|
|
135
135
|
export interface ListIdentityProvidersResponse {
|
|
136
136
|
IdentityProviderSummaries: IdentityProviderSummary[] | undefined;
|
|
137
|
-
NextToken?: string;
|
|
137
|
+
NextToken?: string | undefined;
|
|
138
138
|
}
|
|
139
139
|
export interface ListInstancesRequest {
|
|
140
|
-
MaxResults?: number;
|
|
141
|
-
NextToken?: string;
|
|
142
|
-
Filters?: Filter[];
|
|
140
|
+
MaxResults?: number | undefined;
|
|
141
|
+
NextToken?: string | undefined;
|
|
142
|
+
Filters?: Filter[] | undefined;
|
|
143
143
|
}
|
|
144
144
|
export interface ListInstancesResponse {
|
|
145
|
-
InstanceSummaries?: InstanceSummary[];
|
|
146
|
-
NextToken?: string;
|
|
145
|
+
InstanceSummaries?: InstanceSummary[] | undefined;
|
|
146
|
+
NextToken?: string | undefined;
|
|
147
147
|
}
|
|
148
148
|
export interface ListProductSubscriptionsRequest {
|
|
149
149
|
Product: string | undefined;
|
|
150
150
|
IdentityProvider: IdentityProvider | undefined;
|
|
151
|
-
MaxResults?: number;
|
|
152
|
-
Filters?: Filter[];
|
|
153
|
-
NextToken?: string;
|
|
151
|
+
MaxResults?: number | undefined;
|
|
152
|
+
Filters?: Filter[] | undefined;
|
|
153
|
+
NextToken?: string | undefined;
|
|
154
154
|
}
|
|
155
155
|
export interface ProductUserSummary {
|
|
156
156
|
Username: string | undefined;
|
|
157
157
|
Product: string | undefined;
|
|
158
158
|
IdentityProvider: IdentityProvider | undefined;
|
|
159
159
|
Status: string | undefined;
|
|
160
|
-
StatusMessage?: string;
|
|
161
|
-
Domain?: string;
|
|
162
|
-
SubscriptionStartDate?: string;
|
|
163
|
-
SubscriptionEndDate?: string;
|
|
160
|
+
StatusMessage?: string | undefined;
|
|
161
|
+
Domain?: string | undefined;
|
|
162
|
+
SubscriptionStartDate?: string | undefined;
|
|
163
|
+
SubscriptionEndDate?: string | undefined;
|
|
164
164
|
}
|
|
165
165
|
export interface ListProductSubscriptionsResponse {
|
|
166
|
-
ProductUserSummaries?: ProductUserSummary[];
|
|
167
|
-
NextToken?: string;
|
|
166
|
+
ProductUserSummaries?: ProductUserSummary[] | undefined;
|
|
167
|
+
NextToken?: string | undefined;
|
|
168
168
|
}
|
|
169
169
|
export interface ListUserAssociationsRequest {
|
|
170
170
|
InstanceId: string | undefined;
|
|
171
171
|
IdentityProvider: IdentityProvider | undefined;
|
|
172
|
-
MaxResults?: number;
|
|
173
|
-
Filters?: Filter[];
|
|
174
|
-
NextToken?: string;
|
|
172
|
+
MaxResults?: number | undefined;
|
|
173
|
+
Filters?: Filter[] | undefined;
|
|
174
|
+
NextToken?: string | undefined;
|
|
175
175
|
}
|
|
176
176
|
export interface ListUserAssociationsResponse {
|
|
177
|
-
InstanceUserSummaries?: InstanceUserSummary[];
|
|
178
|
-
NextToken?: string;
|
|
177
|
+
InstanceUserSummaries?: InstanceUserSummary[] | undefined;
|
|
178
|
+
NextToken?: string | undefined;
|
|
179
179
|
}
|
|
180
180
|
export interface RegisterIdentityProviderRequest {
|
|
181
181
|
IdentityProvider: IdentityProvider | undefined;
|
|
182
182
|
Product: string | undefined;
|
|
183
|
-
Settings?: Settings;
|
|
183
|
+
Settings?: Settings | undefined;
|
|
184
184
|
}
|
|
185
185
|
export interface RegisterIdentityProviderResponse {
|
|
186
186
|
IdentityProviderSummary: IdentityProviderSummary | undefined;
|
|
@@ -189,7 +189,7 @@ export interface StartProductSubscriptionRequest {
|
|
|
189
189
|
Username: string | undefined;
|
|
190
190
|
IdentityProvider: IdentityProvider | undefined;
|
|
191
191
|
Product: string | undefined;
|
|
192
|
-
Domain?: string;
|
|
192
|
+
Domain?: string | undefined;
|
|
193
193
|
}
|
|
194
194
|
export interface StartProductSubscriptionResponse {
|
|
195
195
|
ProductUserSummary: ProductUserSummary | undefined;
|
|
@@ -198,7 +198,7 @@ export interface StopProductSubscriptionRequest {
|
|
|
198
198
|
Username: string | undefined;
|
|
199
199
|
IdentityProvider: IdentityProvider | undefined;
|
|
200
200
|
Product: string | undefined;
|
|
201
|
-
Domain?: string;
|
|
201
|
+
Domain?: string | undefined;
|
|
202
202
|
}
|
|
203
203
|
export interface StopProductSubscriptionResponse {
|
|
204
204
|
ProductUserSummary: ProductUserSummary | undefined;
|
|
@@ -206,7 +206,7 @@ export interface StopProductSubscriptionResponse {
|
|
|
206
206
|
export interface UpdateSettings {
|
|
207
207
|
AddSubnets: string[] | undefined;
|
|
208
208
|
RemoveSubnets: string[] | undefined;
|
|
209
|
-
SecurityGroupId?: string;
|
|
209
|
+
SecurityGroupId?: string | undefined;
|
|
210
210
|
}
|
|
211
211
|
export interface UpdateIdentityProviderSettingsRequest {
|
|
212
212
|
IdentityProvider: IdentityProvider | undefined;
|
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.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-license-manager-user-subscriptions",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|