@aws-sdk/client-license-manager-linux-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.
|
@@ -95,17 +95,17 @@ export interface Filter {
|
|
|
95
95
|
* <p>The type of name to filter by.</p>
|
|
96
96
|
* @public
|
|
97
97
|
*/
|
|
98
|
-
Name?: string;
|
|
98
|
+
Name?: string | undefined;
|
|
99
99
|
/**
|
|
100
100
|
* <p>One or more values for the name to filter by.</p>
|
|
101
101
|
* @public
|
|
102
102
|
*/
|
|
103
|
-
Values?: string[];
|
|
103
|
+
Values?: string[] | undefined;
|
|
104
104
|
/**
|
|
105
105
|
* <p>An operator for filtering results.</p>
|
|
106
106
|
* @public
|
|
107
107
|
*/
|
|
108
|
-
Operator?: Operator;
|
|
108
|
+
Operator?: Operator | undefined;
|
|
109
109
|
}
|
|
110
110
|
/**
|
|
111
111
|
* @public
|
|
@@ -161,36 +161,36 @@ export interface GetRegisteredSubscriptionProviderResponse {
|
|
|
161
161
|
* <p>The Amazon Resource Name (ARN) for the BYOL registration resource specified in the request.</p>
|
|
162
162
|
* @public
|
|
163
163
|
*/
|
|
164
|
-
SubscriptionProviderArn?: string;
|
|
164
|
+
SubscriptionProviderArn?: string | undefined;
|
|
165
165
|
/**
|
|
166
166
|
* <p>The subscription provider for the BYOL registration resource specified
|
|
167
167
|
* in the request.</p>
|
|
168
168
|
* @public
|
|
169
169
|
*/
|
|
170
|
-
SubscriptionProviderSource?: SubscriptionProviderSource;
|
|
170
|
+
SubscriptionProviderSource?: SubscriptionProviderSource | undefined;
|
|
171
171
|
/**
|
|
172
172
|
* <p>The Amazon Resource Name (ARN) of the third-party access secret stored in Secrets Manager for the BYOL
|
|
173
173
|
* registration resource specified in the request.</p>
|
|
174
174
|
* @public
|
|
175
175
|
*/
|
|
176
|
-
SecretArn?: string;
|
|
176
|
+
SecretArn?: string | undefined;
|
|
177
177
|
/**
|
|
178
178
|
* <p>The status of the Linux subscription provider access token from the last
|
|
179
179
|
* successful subscription data request.</p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
SubscriptionProviderStatus?: SubscriptionProviderStatus;
|
|
182
|
+
SubscriptionProviderStatus?: SubscriptionProviderStatus | undefined;
|
|
183
183
|
/**
|
|
184
184
|
* <p>The detailed message from your subscription provider token status.</p>
|
|
185
185
|
* @public
|
|
186
186
|
*/
|
|
187
|
-
SubscriptionProviderStatusMessage?: string;
|
|
187
|
+
SubscriptionProviderStatusMessage?: string | undefined;
|
|
188
188
|
/**
|
|
189
189
|
* <p>The timestamp from the last time License Manager retrieved subscription details
|
|
190
190
|
* from your registered third-party Linux subscription provider.</p>
|
|
191
191
|
* @public
|
|
192
192
|
*/
|
|
193
|
-
LastSuccessfulDataRetrievalTime?: string;
|
|
193
|
+
LastSuccessfulDataRetrievalTime?: string | undefined;
|
|
194
194
|
}
|
|
195
195
|
/**
|
|
196
196
|
* @public
|
|
@@ -283,29 +283,29 @@ export interface GetServiceSettingsResponse {
|
|
|
283
283
|
* <p>Lists if discovery has been enabled for Linux subscriptions.</p>
|
|
284
284
|
* @public
|
|
285
285
|
*/
|
|
286
|
-
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
286
|
+
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery | undefined;
|
|
287
287
|
/**
|
|
288
288
|
* <p>Lists the settings defined for Linux subscriptions discovery. The settings include if
|
|
289
289
|
* Organizations integration has been enabled, and which Regions data will be aggregated from.</p>
|
|
290
290
|
* @public
|
|
291
291
|
*/
|
|
292
|
-
LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings;
|
|
292
|
+
LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings | undefined;
|
|
293
293
|
/**
|
|
294
294
|
* <p>Indicates the status of Linux subscriptions settings being applied.</p>
|
|
295
295
|
* @public
|
|
296
296
|
*/
|
|
297
|
-
Status?: Status;
|
|
297
|
+
Status?: Status | undefined;
|
|
298
298
|
/**
|
|
299
299
|
* <p>A message which details the Linux subscriptions service settings current status.</p>
|
|
300
300
|
* @public
|
|
301
301
|
*/
|
|
302
|
-
StatusMessage?: Record<string, string
|
|
302
|
+
StatusMessage?: Record<string, string> | undefined;
|
|
303
303
|
/**
|
|
304
304
|
* <p>The Region in which License Manager displays the aggregated data for Linux
|
|
305
305
|
* subscriptions.</p>
|
|
306
306
|
* @public
|
|
307
307
|
*/
|
|
308
|
-
HomeRegions?: string[];
|
|
308
|
+
HomeRegions?: string[] | undefined;
|
|
309
309
|
}
|
|
310
310
|
/**
|
|
311
311
|
* <p>Details discovered information about a running instance using Linux subscriptions.</p>
|
|
@@ -316,84 +316,84 @@ export interface Instance {
|
|
|
316
316
|
* <p>The AMI ID used to launch the instance.</p>
|
|
317
317
|
* @public
|
|
318
318
|
*/
|
|
319
|
-
AmiId?: string;
|
|
319
|
+
AmiId?: string | undefined;
|
|
320
320
|
/**
|
|
321
321
|
* <p>The instance ID of the resource.</p>
|
|
322
322
|
* @public
|
|
323
323
|
*/
|
|
324
|
-
InstanceID?: string;
|
|
324
|
+
InstanceID?: string | undefined;
|
|
325
325
|
/**
|
|
326
326
|
* <p>The instance type of the resource.</p>
|
|
327
327
|
* @public
|
|
328
328
|
*/
|
|
329
|
-
InstanceType?: string;
|
|
329
|
+
InstanceType?: string | undefined;
|
|
330
330
|
/**
|
|
331
331
|
* <p>The account ID which owns the instance.</p>
|
|
332
332
|
* @public
|
|
333
333
|
*/
|
|
334
|
-
AccountID?: string;
|
|
334
|
+
AccountID?: string | undefined;
|
|
335
335
|
/**
|
|
336
336
|
* <p>The status of the instance.</p>
|
|
337
337
|
* @public
|
|
338
338
|
*/
|
|
339
|
-
Status?: string;
|
|
339
|
+
Status?: string | undefined;
|
|
340
340
|
/**
|
|
341
341
|
* <p>The Region the instance is running in.</p>
|
|
342
342
|
* @public
|
|
343
343
|
*/
|
|
344
|
-
Region?: string;
|
|
344
|
+
Region?: string | undefined;
|
|
345
345
|
/**
|
|
346
346
|
* <p>The usage operation of the instance. For more information, see For more information, see
|
|
347
347
|
* <a href="https://docs.aws.amazon.com/license-manager/latest/userguide/linux-subscriptions-usage-operation.html">Usage
|
|
348
348
|
* operation values</a> in the <i>License Manager User Guide</i>.</p>
|
|
349
349
|
* @public
|
|
350
350
|
*/
|
|
351
|
-
UsageOperation?: string;
|
|
351
|
+
UsageOperation?: string | undefined;
|
|
352
352
|
/**
|
|
353
353
|
* <p>The product code for the instance. For more information, see <a href="https://docs.aws.amazon.com/license-manager/latest/userguide/linux-subscriptions-usage-operation.html">Usage
|
|
354
354
|
* operation values</a> in the <i>License Manager User Guide</i> .</p>
|
|
355
355
|
* @public
|
|
356
356
|
*/
|
|
357
|
-
ProductCode?: string[];
|
|
357
|
+
ProductCode?: string[] | undefined;
|
|
358
358
|
/**
|
|
359
359
|
* <p>The time in which the last discovery updated the instance details.</p>
|
|
360
360
|
* @public
|
|
361
361
|
*/
|
|
362
|
-
LastUpdatedTime?: string;
|
|
362
|
+
LastUpdatedTime?: string | undefined;
|
|
363
363
|
/**
|
|
364
364
|
* <p>The name of the license subscription that the instance uses.</p>
|
|
365
365
|
* @public
|
|
366
366
|
*/
|
|
367
|
-
SubscriptionName?: string;
|
|
367
|
+
SubscriptionName?: string | undefined;
|
|
368
368
|
/**
|
|
369
369
|
* <p>The operating system software version that runs on your instance.</p>
|
|
370
370
|
* @public
|
|
371
371
|
*/
|
|
372
|
-
OsVersion?: string;
|
|
372
|
+
OsVersion?: string | undefined;
|
|
373
373
|
/**
|
|
374
374
|
* <p>The timestamp when you registered the third-party Linux subscription
|
|
375
375
|
* provider for the subscription that the instance uses.</p>
|
|
376
376
|
* @public
|
|
377
377
|
*/
|
|
378
|
-
SubscriptionProviderCreateTime?: string;
|
|
378
|
+
SubscriptionProviderCreateTime?: string | undefined;
|
|
379
379
|
/**
|
|
380
380
|
* <p>The timestamp from the last time that the instance synced with the registered
|
|
381
381
|
* third-party Linux subscription provider.</p>
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
SubscriptionProviderUpdateTime?: string;
|
|
384
|
+
SubscriptionProviderUpdateTime?: string | undefined;
|
|
385
385
|
/**
|
|
386
386
|
* <p>Indicates that you have two different license subscriptions for
|
|
387
387
|
* the same software on your instance.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
DualSubscription?: string;
|
|
390
|
+
DualSubscription?: string | undefined;
|
|
391
391
|
/**
|
|
392
392
|
* <p>Indicates that your instance uses a BYOL license subscription from
|
|
393
393
|
* a third-party Linux subscription provider that you've registered with License Manager.</p>
|
|
394
394
|
* @public
|
|
395
395
|
*/
|
|
396
|
-
RegisteredWithSubscriptionProvider?: string;
|
|
396
|
+
RegisteredWithSubscriptionProvider?: string | undefined;
|
|
397
397
|
}
|
|
398
398
|
/**
|
|
399
399
|
* NextToken length limit is half of ddb accepted limit.
|
|
@@ -476,18 +476,18 @@ export interface ListLinuxSubscriptionInstancesRequest {
|
|
|
476
476
|
* </ul>
|
|
477
477
|
* @public
|
|
478
478
|
*/
|
|
479
|
-
Filters?: Filter[];
|
|
479
|
+
Filters?: Filter[] | undefined;
|
|
480
480
|
/**
|
|
481
481
|
* <p>The maximum items to return in a request.</p>
|
|
482
482
|
* @public
|
|
483
483
|
*/
|
|
484
|
-
MaxResults?: number;
|
|
484
|
+
MaxResults?: number | undefined;
|
|
485
485
|
/**
|
|
486
486
|
* <p>A token to specify where to start paginating. This
|
|
487
487
|
* is the nextToken from a previously truncated response.</p>
|
|
488
488
|
* @public
|
|
489
489
|
*/
|
|
490
|
-
NextToken?: string;
|
|
490
|
+
NextToken?: string | undefined;
|
|
491
491
|
}
|
|
492
492
|
/**
|
|
493
493
|
* @public
|
|
@@ -497,7 +497,7 @@ export interface ListLinuxSubscriptionInstancesResponse {
|
|
|
497
497
|
* <p>An array that contains instance objects.</p>
|
|
498
498
|
* @public
|
|
499
499
|
*/
|
|
500
|
-
Instances?: Instance[];
|
|
500
|
+
Instances?: Instance[] | undefined;
|
|
501
501
|
/**
|
|
502
502
|
* <p>The next token used for paginated responses. When this
|
|
503
503
|
* field isn't empty, there are additional elements that the service hasn't
|
|
@@ -505,7 +505,7 @@ export interface ListLinuxSubscriptionInstancesResponse {
|
|
|
505
505
|
* additional objects.</p>
|
|
506
506
|
* @public
|
|
507
507
|
*/
|
|
508
|
-
NextToken?: string;
|
|
508
|
+
NextToken?: string | undefined;
|
|
509
509
|
}
|
|
510
510
|
/**
|
|
511
511
|
* NextToken length limit is half of ddb accepted limit.
|
|
@@ -546,18 +546,18 @@ export interface ListLinuxSubscriptionsRequest {
|
|
|
546
546
|
* </ul>
|
|
547
547
|
* @public
|
|
548
548
|
*/
|
|
549
|
-
Filters?: Filter[];
|
|
549
|
+
Filters?: Filter[] | undefined;
|
|
550
550
|
/**
|
|
551
551
|
* <p>The maximum items to return in a request.</p>
|
|
552
552
|
* @public
|
|
553
553
|
*/
|
|
554
|
-
MaxResults?: number;
|
|
554
|
+
MaxResults?: number | undefined;
|
|
555
555
|
/**
|
|
556
556
|
* <p>A token to specify where to start paginating. This
|
|
557
557
|
* is the nextToken from a previously truncated response.</p>
|
|
558
558
|
* @public
|
|
559
559
|
*/
|
|
560
|
-
NextToken?: string;
|
|
560
|
+
NextToken?: string | undefined;
|
|
561
561
|
}
|
|
562
562
|
/**
|
|
563
563
|
* <p>An object which details a discovered Linux subscription.</p>
|
|
@@ -568,19 +568,19 @@ export interface Subscription {
|
|
|
568
568
|
* <p>The name of the subscription.</p>
|
|
569
569
|
* @public
|
|
570
570
|
*/
|
|
571
|
-
Name?: string;
|
|
571
|
+
Name?: string | undefined;
|
|
572
572
|
/**
|
|
573
573
|
* <p>The type of subscription. The type can be subscription-included with Amazon EC2, Bring Your Own
|
|
574
574
|
* Subscription model (BYOS), or from the Amazon Web Services Marketplace. Certain subscriptions may use licensing from the
|
|
575
575
|
* Amazon Web Services Marketplace as well as OS licensing from Amazon EC2 or BYOS.</p>
|
|
576
576
|
* @public
|
|
577
577
|
*/
|
|
578
|
-
Type?: string;
|
|
578
|
+
Type?: string | undefined;
|
|
579
579
|
/**
|
|
580
580
|
* <p>The total amount of running instances using this subscription.</p>
|
|
581
581
|
* @public
|
|
582
582
|
*/
|
|
583
|
-
InstanceCount?: number;
|
|
583
|
+
InstanceCount?: number | undefined;
|
|
584
584
|
}
|
|
585
585
|
/**
|
|
586
586
|
* @public
|
|
@@ -590,7 +590,7 @@ export interface ListLinuxSubscriptionsResponse {
|
|
|
590
590
|
* <p>An array that contains subscription objects.</p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
Subscriptions?: Subscription[];
|
|
593
|
+
Subscriptions?: Subscription[] | undefined;
|
|
594
594
|
/**
|
|
595
595
|
* <p>The next token used for paginated responses. When this
|
|
596
596
|
* field isn't empty, there are additional elements that the service hasn't
|
|
@@ -598,7 +598,7 @@ export interface ListLinuxSubscriptionsResponse {
|
|
|
598
598
|
* additional objects.</p>
|
|
599
599
|
* @public
|
|
600
600
|
*/
|
|
601
|
-
NextToken?: string;
|
|
601
|
+
NextToken?: string | undefined;
|
|
602
602
|
}
|
|
603
603
|
/**
|
|
604
604
|
* @public
|
|
@@ -609,18 +609,18 @@ export interface ListRegisteredSubscriptionProvidersRequest {
|
|
|
609
609
|
* in the list.</p>
|
|
610
610
|
* @public
|
|
611
611
|
*/
|
|
612
|
-
SubscriptionProviderSources?: SubscriptionProviderSource[];
|
|
612
|
+
SubscriptionProviderSources?: SubscriptionProviderSource[] | undefined;
|
|
613
613
|
/**
|
|
614
614
|
* <p>The maximum items to return in a request.</p>
|
|
615
615
|
* @public
|
|
616
616
|
*/
|
|
617
|
-
MaxResults?: number;
|
|
617
|
+
MaxResults?: number | undefined;
|
|
618
618
|
/**
|
|
619
619
|
* <p>A token to specify where to start paginating. This
|
|
620
620
|
* is the nextToken from a previously truncated response.</p>
|
|
621
621
|
* @public
|
|
622
622
|
*/
|
|
623
|
-
NextToken?: string;
|
|
623
|
+
NextToken?: string | undefined;
|
|
624
624
|
}
|
|
625
625
|
/**
|
|
626
626
|
* <p>A third-party provider for operating system (OS) platform software and license
|
|
@@ -633,38 +633,38 @@ export interface RegisteredSubscriptionProvider {
|
|
|
633
633
|
* <p>The Amazon Resource Name (ARN) of the Linux subscription provider resource that you registered.</p>
|
|
634
634
|
* @public
|
|
635
635
|
*/
|
|
636
|
-
SubscriptionProviderArn?: string;
|
|
636
|
+
SubscriptionProviderArn?: string | undefined;
|
|
637
637
|
/**
|
|
638
638
|
* <p>A supported third-party Linux subscription provider. License Manager currently supports
|
|
639
639
|
* Red Hat subscriptions.</p>
|
|
640
640
|
* @public
|
|
641
641
|
*/
|
|
642
|
-
SubscriptionProviderSource?: SubscriptionProviderSource;
|
|
642
|
+
SubscriptionProviderSource?: SubscriptionProviderSource | undefined;
|
|
643
643
|
/**
|
|
644
644
|
* <p>The Amazon Resource Name (ARN) of the Secrets Manager secret that stores your registered Linux subscription provider
|
|
645
645
|
* access token. For RHEL account subscriptions, this is the offline token.</p>
|
|
646
646
|
* @public
|
|
647
647
|
*/
|
|
648
|
-
SecretArn?: string;
|
|
648
|
+
SecretArn?: string | undefined;
|
|
649
649
|
/**
|
|
650
650
|
* <p>Indicates the status of your registered Linux subscription provider access token
|
|
651
651
|
* from the last time License Manager retrieved subscription data. For RHEL account subscriptions,
|
|
652
652
|
* this is the status of the offline token.</p>
|
|
653
653
|
* @public
|
|
654
654
|
*/
|
|
655
|
-
SubscriptionProviderStatus?: SubscriptionProviderStatus;
|
|
655
|
+
SubscriptionProviderStatus?: SubscriptionProviderStatus | undefined;
|
|
656
656
|
/**
|
|
657
657
|
* <p>A detailed message that's associated with your BYOL subscription
|
|
658
658
|
* provider token status.</p>
|
|
659
659
|
* @public
|
|
660
660
|
*/
|
|
661
|
-
SubscriptionProviderStatusMessage?: string;
|
|
661
|
+
SubscriptionProviderStatusMessage?: string | undefined;
|
|
662
662
|
/**
|
|
663
663
|
* <p>The timestamp from the last time that License Manager accessed third-party subscription data
|
|
664
664
|
* for your account from your registered Linux subscription provider.</p>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
LastSuccessfulDataRetrievalTime?: string;
|
|
667
|
+
LastSuccessfulDataRetrievalTime?: string | undefined;
|
|
668
668
|
}
|
|
669
669
|
/**
|
|
670
670
|
* @public
|
|
@@ -675,7 +675,7 @@ export interface ListRegisteredSubscriptionProvidersResponse {
|
|
|
675
675
|
* you specified in the request.</p>
|
|
676
676
|
* @public
|
|
677
677
|
*/
|
|
678
|
-
RegisteredSubscriptionProviders?: RegisteredSubscriptionProvider[];
|
|
678
|
+
RegisteredSubscriptionProviders?: RegisteredSubscriptionProvider[] | undefined;
|
|
679
679
|
/**
|
|
680
680
|
* <p>The next token used for paginated responses. When this
|
|
681
681
|
* field isn't empty, there are additional elements that the service hasn't
|
|
@@ -683,7 +683,7 @@ export interface ListRegisteredSubscriptionProvidersResponse {
|
|
|
683
683
|
* additional objects.</p>
|
|
684
684
|
* @public
|
|
685
685
|
*/
|
|
686
|
-
NextToken?: string;
|
|
686
|
+
NextToken?: string | undefined;
|
|
687
687
|
}
|
|
688
688
|
/**
|
|
689
689
|
* @public
|
|
@@ -703,7 +703,7 @@ export interface ListTagsForResourceResponse {
|
|
|
703
703
|
* <p>The metadata tags for the requested resource.</p>
|
|
704
704
|
* @public
|
|
705
705
|
*/
|
|
706
|
-
tags?: Record<string, string
|
|
706
|
+
tags?: Record<string, string> | undefined;
|
|
707
707
|
}
|
|
708
708
|
/**
|
|
709
709
|
* @public
|
|
@@ -726,7 +726,7 @@ export interface RegisterSubscriptionProviderRequest {
|
|
|
726
726
|
* resource.</p>
|
|
727
727
|
* @public
|
|
728
728
|
*/
|
|
729
|
-
Tags?: Record<string, string
|
|
729
|
+
Tags?: Record<string, string> | undefined;
|
|
730
730
|
}
|
|
731
731
|
/**
|
|
732
732
|
* @public
|
|
@@ -736,18 +736,18 @@ export interface RegisterSubscriptionProviderResponse {
|
|
|
736
736
|
* <p>The Linux subscription provider that you registered.</p>
|
|
737
737
|
* @public
|
|
738
738
|
*/
|
|
739
|
-
SubscriptionProviderSource?: SubscriptionProviderSource;
|
|
739
|
+
SubscriptionProviderSource?: SubscriptionProviderSource | undefined;
|
|
740
740
|
/**
|
|
741
741
|
* <p>The Amazon Resource Name (ARN) of the Linux subscription provider resource that you registered.</p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
SubscriptionProviderArn?: string;
|
|
744
|
+
SubscriptionProviderArn?: string | undefined;
|
|
745
745
|
/**
|
|
746
746
|
* <p>Indicates the status of the registration action for the Linux subscription provider
|
|
747
747
|
* that you requested.</p>
|
|
748
748
|
* @public
|
|
749
749
|
*/
|
|
750
|
-
SubscriptionProviderStatus?: SubscriptionProviderStatus;
|
|
750
|
+
SubscriptionProviderStatus?: SubscriptionProviderStatus | undefined;
|
|
751
751
|
}
|
|
752
752
|
/**
|
|
753
753
|
* @public
|
|
@@ -812,7 +812,7 @@ export interface UpdateServiceSettingsRequest {
|
|
|
812
812
|
* allow updates, you can aggregate Linux subscription data in more than one home Region.</p>
|
|
813
813
|
* @public
|
|
814
814
|
*/
|
|
815
|
-
AllowUpdate?: boolean;
|
|
815
|
+
AllowUpdate?: boolean | undefined;
|
|
816
816
|
}
|
|
817
817
|
/**
|
|
818
818
|
* @public
|
|
@@ -822,29 +822,29 @@ export interface UpdateServiceSettingsResponse {
|
|
|
822
822
|
* <p>Lists if discovery has been enabled for Linux subscriptions.</p>
|
|
823
823
|
* @public
|
|
824
824
|
*/
|
|
825
|
-
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
825
|
+
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery | undefined;
|
|
826
826
|
/**
|
|
827
827
|
* <p>The settings defined for Linux subscriptions discovery. The settings include if Organizations
|
|
828
828
|
* integration has been enabled, and which Regions data will be aggregated from.</p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings;
|
|
831
|
+
LinuxSubscriptionsDiscoverySettings?: LinuxSubscriptionsDiscoverySettings | undefined;
|
|
832
832
|
/**
|
|
833
833
|
* <p>Indicates the status of Linux subscriptions settings being applied.</p>
|
|
834
834
|
* @public
|
|
835
835
|
*/
|
|
836
|
-
Status?: Status;
|
|
836
|
+
Status?: Status | undefined;
|
|
837
837
|
/**
|
|
838
838
|
* <p>A message which details the Linux subscriptions service settings current status.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
StatusMessage?: Record<string, string
|
|
841
|
+
StatusMessage?: Record<string, string> | undefined;
|
|
842
842
|
/**
|
|
843
843
|
* <p>The Region in which License Manager displays the aggregated data for Linux
|
|
844
844
|
* subscriptions.</p>
|
|
845
845
|
* @public
|
|
846
846
|
*/
|
|
847
|
-
HomeRegions?: string[];
|
|
847
|
+
HomeRegions?: string[] | undefined;
|
|
848
848
|
}
|
|
849
849
|
/**
|
|
850
850
|
* @internal
|
|
@@ -39,9 +39,9 @@ export declare const Operator: {
|
|
|
39
39
|
};
|
|
40
40
|
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
41
41
|
export interface Filter {
|
|
42
|
-
Name?: string;
|
|
43
|
-
Values?: string[];
|
|
44
|
-
Operator?: Operator;
|
|
42
|
+
Name?: string | undefined;
|
|
43
|
+
Values?: string[] | undefined;
|
|
44
|
+
Operator?: Operator | undefined;
|
|
45
45
|
}
|
|
46
46
|
export interface GetRegisteredSubscriptionProviderRequest {
|
|
47
47
|
SubscriptionProviderArn: string | undefined;
|
|
@@ -59,12 +59,12 @@ export declare const SubscriptionProviderStatus: {
|
|
|
59
59
|
export type SubscriptionProviderStatus =
|
|
60
60
|
(typeof SubscriptionProviderStatus)[keyof typeof SubscriptionProviderStatus];
|
|
61
61
|
export interface GetRegisteredSubscriptionProviderResponse {
|
|
62
|
-
SubscriptionProviderArn?: string;
|
|
63
|
-
SubscriptionProviderSource?: SubscriptionProviderSource;
|
|
64
|
-
SecretArn?: string;
|
|
65
|
-
SubscriptionProviderStatus?: SubscriptionProviderStatus;
|
|
66
|
-
SubscriptionProviderStatusMessage?: string;
|
|
67
|
-
LastSuccessfulDataRetrievalTime?: string;
|
|
62
|
+
SubscriptionProviderArn?: string | undefined;
|
|
63
|
+
SubscriptionProviderSource?: SubscriptionProviderSource | undefined;
|
|
64
|
+
SecretArn?: string | undefined;
|
|
65
|
+
SubscriptionProviderStatus?: SubscriptionProviderStatus | undefined;
|
|
66
|
+
SubscriptionProviderStatusMessage?: string | undefined;
|
|
67
|
+
LastSuccessfulDataRetrievalTime?: string | undefined;
|
|
68
68
|
}
|
|
69
69
|
export interface GetServiceSettingsRequest {}
|
|
70
70
|
export declare const LinuxSubscriptionsDiscovery: {
|
|
@@ -91,84 +91,88 @@ export declare const Status: {
|
|
|
91
91
|
};
|
|
92
92
|
export type Status = (typeof Status)[keyof typeof Status];
|
|
93
93
|
export interface GetServiceSettingsResponse {
|
|
94
|
-
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
95
|
-
LinuxSubscriptionsDiscoverySettings?:
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
94
|
+
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery | undefined;
|
|
95
|
+
LinuxSubscriptionsDiscoverySettings?:
|
|
96
|
+
| LinuxSubscriptionsDiscoverySettings
|
|
97
|
+
| undefined;
|
|
98
|
+
Status?: Status | undefined;
|
|
99
|
+
StatusMessage?: Record<string, string> | undefined;
|
|
100
|
+
HomeRegions?: string[] | undefined;
|
|
99
101
|
}
|
|
100
102
|
export interface Instance {
|
|
101
|
-
AmiId?: string;
|
|
102
|
-
InstanceID?: string;
|
|
103
|
-
InstanceType?: string;
|
|
104
|
-
AccountID?: string;
|
|
105
|
-
Status?: string;
|
|
106
|
-
Region?: string;
|
|
107
|
-
UsageOperation?: string;
|
|
108
|
-
ProductCode?: string[];
|
|
109
|
-
LastUpdatedTime?: string;
|
|
110
|
-
SubscriptionName?: string;
|
|
111
|
-
OsVersion?: string;
|
|
112
|
-
SubscriptionProviderCreateTime?: string;
|
|
113
|
-
SubscriptionProviderUpdateTime?: string;
|
|
114
|
-
DualSubscription?: string;
|
|
115
|
-
RegisteredWithSubscriptionProvider?: string;
|
|
103
|
+
AmiId?: string | undefined;
|
|
104
|
+
InstanceID?: string | undefined;
|
|
105
|
+
InstanceType?: string | undefined;
|
|
106
|
+
AccountID?: string | undefined;
|
|
107
|
+
Status?: string | undefined;
|
|
108
|
+
Region?: string | undefined;
|
|
109
|
+
UsageOperation?: string | undefined;
|
|
110
|
+
ProductCode?: string[] | undefined;
|
|
111
|
+
LastUpdatedTime?: string | undefined;
|
|
112
|
+
SubscriptionName?: string | undefined;
|
|
113
|
+
OsVersion?: string | undefined;
|
|
114
|
+
SubscriptionProviderCreateTime?: string | undefined;
|
|
115
|
+
SubscriptionProviderUpdateTime?: string | undefined;
|
|
116
|
+
DualSubscription?: string | undefined;
|
|
117
|
+
RegisteredWithSubscriptionProvider?: string | undefined;
|
|
116
118
|
}
|
|
117
119
|
export interface ListLinuxSubscriptionInstancesRequest {
|
|
118
|
-
Filters?: Filter[];
|
|
119
|
-
MaxResults?: number;
|
|
120
|
-
NextToken?: string;
|
|
120
|
+
Filters?: Filter[] | undefined;
|
|
121
|
+
MaxResults?: number | undefined;
|
|
122
|
+
NextToken?: string | undefined;
|
|
121
123
|
}
|
|
122
124
|
export interface ListLinuxSubscriptionInstancesResponse {
|
|
123
|
-
Instances?: Instance[];
|
|
124
|
-
NextToken?: string;
|
|
125
|
+
Instances?: Instance[] | undefined;
|
|
126
|
+
NextToken?: string | undefined;
|
|
125
127
|
}
|
|
126
128
|
export interface ListLinuxSubscriptionsRequest {
|
|
127
|
-
Filters?: Filter[];
|
|
128
|
-
MaxResults?: number;
|
|
129
|
-
NextToken?: string;
|
|
129
|
+
Filters?: Filter[] | undefined;
|
|
130
|
+
MaxResults?: number | undefined;
|
|
131
|
+
NextToken?: string | undefined;
|
|
130
132
|
}
|
|
131
133
|
export interface Subscription {
|
|
132
|
-
Name?: string;
|
|
133
|
-
Type?: string;
|
|
134
|
-
InstanceCount?: number;
|
|
134
|
+
Name?: string | undefined;
|
|
135
|
+
Type?: string | undefined;
|
|
136
|
+
InstanceCount?: number | undefined;
|
|
135
137
|
}
|
|
136
138
|
export interface ListLinuxSubscriptionsResponse {
|
|
137
|
-
Subscriptions?: Subscription[];
|
|
138
|
-
NextToken?: string;
|
|
139
|
+
Subscriptions?: Subscription[] | undefined;
|
|
140
|
+
NextToken?: string | undefined;
|
|
139
141
|
}
|
|
140
142
|
export interface ListRegisteredSubscriptionProvidersRequest {
|
|
141
|
-
SubscriptionProviderSources?: SubscriptionProviderSource[];
|
|
142
|
-
MaxResults?: number;
|
|
143
|
-
NextToken?: string;
|
|
143
|
+
SubscriptionProviderSources?: SubscriptionProviderSource[] | undefined;
|
|
144
|
+
MaxResults?: number | undefined;
|
|
145
|
+
NextToken?: string | undefined;
|
|
144
146
|
}
|
|
145
147
|
export interface RegisteredSubscriptionProvider {
|
|
146
|
-
SubscriptionProviderArn?: string;
|
|
147
|
-
SubscriptionProviderSource?: SubscriptionProviderSource;
|
|
148
|
-
SecretArn?: string;
|
|
149
|
-
SubscriptionProviderStatus?: SubscriptionProviderStatus;
|
|
150
|
-
SubscriptionProviderStatusMessage?: string;
|
|
151
|
-
LastSuccessfulDataRetrievalTime?: string;
|
|
148
|
+
SubscriptionProviderArn?: string | undefined;
|
|
149
|
+
SubscriptionProviderSource?: SubscriptionProviderSource | undefined;
|
|
150
|
+
SecretArn?: string | undefined;
|
|
151
|
+
SubscriptionProviderStatus?: SubscriptionProviderStatus | undefined;
|
|
152
|
+
SubscriptionProviderStatusMessage?: string | undefined;
|
|
153
|
+
LastSuccessfulDataRetrievalTime?: string | undefined;
|
|
152
154
|
}
|
|
153
155
|
export interface ListRegisteredSubscriptionProvidersResponse {
|
|
154
|
-
RegisteredSubscriptionProviders?:
|
|
155
|
-
|
|
156
|
+
RegisteredSubscriptionProviders?:
|
|
157
|
+
| RegisteredSubscriptionProvider[]
|
|
158
|
+
| undefined;
|
|
159
|
+
NextToken?: string | undefined;
|
|
156
160
|
}
|
|
157
161
|
export interface ListTagsForResourceRequest {
|
|
158
162
|
resourceArn: string | undefined;
|
|
159
163
|
}
|
|
160
164
|
export interface ListTagsForResourceResponse {
|
|
161
|
-
tags?: Record<string, string
|
|
165
|
+
tags?: Record<string, string> | undefined;
|
|
162
166
|
}
|
|
163
167
|
export interface RegisterSubscriptionProviderRequest {
|
|
164
168
|
SubscriptionProviderSource: SubscriptionProviderSource | undefined;
|
|
165
169
|
SecretArn: string | undefined;
|
|
166
|
-
Tags?: Record<string, string
|
|
170
|
+
Tags?: Record<string, string> | undefined;
|
|
167
171
|
}
|
|
168
172
|
export interface RegisterSubscriptionProviderResponse {
|
|
169
|
-
SubscriptionProviderSource?: SubscriptionProviderSource;
|
|
170
|
-
SubscriptionProviderArn?: string;
|
|
171
|
-
SubscriptionProviderStatus?: SubscriptionProviderStatus;
|
|
173
|
+
SubscriptionProviderSource?: SubscriptionProviderSource | undefined;
|
|
174
|
+
SubscriptionProviderArn?: string | undefined;
|
|
175
|
+
SubscriptionProviderStatus?: SubscriptionProviderStatus | undefined;
|
|
172
176
|
}
|
|
173
177
|
export interface TagResourceRequest {
|
|
174
178
|
resourceArn: string | undefined;
|
|
@@ -185,14 +189,16 @@ export interface UpdateServiceSettingsRequest {
|
|
|
185
189
|
LinuxSubscriptionsDiscoverySettings:
|
|
186
190
|
| LinuxSubscriptionsDiscoverySettings
|
|
187
191
|
| undefined;
|
|
188
|
-
AllowUpdate?: boolean;
|
|
192
|
+
AllowUpdate?: boolean | undefined;
|
|
189
193
|
}
|
|
190
194
|
export interface UpdateServiceSettingsResponse {
|
|
191
|
-
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery;
|
|
192
|
-
LinuxSubscriptionsDiscoverySettings?:
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
195
|
+
LinuxSubscriptionsDiscovery?: LinuxSubscriptionsDiscovery | undefined;
|
|
196
|
+
LinuxSubscriptionsDiscoverySettings?:
|
|
197
|
+
| LinuxSubscriptionsDiscoverySettings
|
|
198
|
+
| undefined;
|
|
199
|
+
Status?: Status | undefined;
|
|
200
|
+
StatusMessage?: Record<string, string> | undefined;
|
|
201
|
+
HomeRegions?: string[] | undefined;
|
|
196
202
|
}
|
|
197
203
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
198
204
|
obj: ListTagsForResourceResponse
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-license-manager-linux-subscriptions",
|
|
3
3
|
"description": "AWS SDK for JavaScript License Manager Linux 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-linux-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",
|