@aws-sdk/client-license-manager 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.
|
@@ -5,6 +5,7 @@ import { LicenseManagerServiceException as __BaseException } from "./LicenseMana
|
|
|
5
5
|
*/
|
|
6
6
|
export interface AcceptGrantRequest {
|
|
7
7
|
/**
|
|
8
|
+
* @public
|
|
8
9
|
* <p>Amazon Resource Name (ARN) of the grant.</p>
|
|
9
10
|
*/
|
|
10
11
|
GrantArn: string | undefined;
|
|
@@ -33,14 +34,17 @@ export type GrantStatus = (typeof GrantStatus)[keyof typeof GrantStatus];
|
|
|
33
34
|
*/
|
|
34
35
|
export interface AcceptGrantResponse {
|
|
35
36
|
/**
|
|
37
|
+
* @public
|
|
36
38
|
* <p>Grant ARN.</p>
|
|
37
39
|
*/
|
|
38
40
|
GrantArn?: string;
|
|
39
41
|
/**
|
|
42
|
+
* @public
|
|
40
43
|
* <p>Grant status.</p>
|
|
41
44
|
*/
|
|
42
45
|
Status?: GrantStatus | string;
|
|
43
46
|
/**
|
|
47
|
+
* @public
|
|
44
48
|
* <p>Grant version.</p>
|
|
45
49
|
*/
|
|
46
50
|
Version?: string;
|
|
@@ -172,6 +176,7 @@ export type AllowedOperation = (typeof AllowedOperation)[keyof typeof AllowedOpe
|
|
|
172
176
|
*/
|
|
173
177
|
export interface AutomatedDiscoveryInformation {
|
|
174
178
|
/**
|
|
179
|
+
* @public
|
|
175
180
|
* <p>Time that automated discovery last ran.</p>
|
|
176
181
|
*/
|
|
177
182
|
LastRunTime?: Date;
|
|
@@ -181,10 +186,12 @@ export interface AutomatedDiscoveryInformation {
|
|
|
181
186
|
*/
|
|
182
187
|
export interface CheckInLicenseRequest {
|
|
183
188
|
/**
|
|
189
|
+
* @public
|
|
184
190
|
* <p>License consumption token.</p>
|
|
185
191
|
*/
|
|
186
192
|
LicenseConsumptionToken: string | undefined;
|
|
187
193
|
/**
|
|
194
|
+
* @public
|
|
188
195
|
* <p>License beneficiary.</p>
|
|
189
196
|
*/
|
|
190
197
|
Beneficiary?: string;
|
|
@@ -226,10 +233,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
226
233
|
*/
|
|
227
234
|
export interface Metadata {
|
|
228
235
|
/**
|
|
236
|
+
* @public
|
|
229
237
|
* <p>The key name.</p>
|
|
230
238
|
*/
|
|
231
239
|
Name?: string;
|
|
232
240
|
/**
|
|
241
|
+
* @public
|
|
233
242
|
* <p>The value.</p>
|
|
234
243
|
*/
|
|
235
244
|
Value?: string;
|
|
@@ -288,14 +297,17 @@ export type EntitlementDataUnit = (typeof EntitlementDataUnit)[keyof typeof Enti
|
|
|
288
297
|
*/
|
|
289
298
|
export interface EntitlementData {
|
|
290
299
|
/**
|
|
300
|
+
* @public
|
|
291
301
|
* <p>Entitlement data name.</p>
|
|
292
302
|
*/
|
|
293
303
|
Name: string | undefined;
|
|
294
304
|
/**
|
|
305
|
+
* @public
|
|
295
306
|
* <p>Entitlement data value.</p>
|
|
296
307
|
*/
|
|
297
308
|
Value?: string;
|
|
298
309
|
/**
|
|
310
|
+
* @public
|
|
299
311
|
* <p>Entitlement data unit.</p>
|
|
300
312
|
*/
|
|
301
313
|
Unit: EntitlementDataUnit | string | undefined;
|
|
@@ -305,27 +317,33 @@ export interface EntitlementData {
|
|
|
305
317
|
*/
|
|
306
318
|
export interface CheckoutBorrowLicenseRequest {
|
|
307
319
|
/**
|
|
320
|
+
* @public
|
|
308
321
|
* <p>Amazon Resource Name (ARN) of the license. The license must use the borrow consumption configuration.</p>
|
|
309
322
|
*/
|
|
310
323
|
LicenseArn: string | undefined;
|
|
311
324
|
/**
|
|
325
|
+
* @public
|
|
312
326
|
* <p>License entitlements. Partial checkouts are not supported.</p>
|
|
313
327
|
*/
|
|
314
328
|
Entitlements: EntitlementData[] | undefined;
|
|
315
329
|
/**
|
|
330
|
+
* @public
|
|
316
331
|
* <p>Digital signature method. The possible value is JSON Web Signature (JWS) algorithm PS384.
|
|
317
332
|
* For more information, see <a href="https://tools.ietf.org/html/rfc7518#section-3.5">RFC 7518 Digital Signature with RSASSA-PSS</a>.</p>
|
|
318
333
|
*/
|
|
319
334
|
DigitalSignatureMethod: DigitalSignatureMethod | string | undefined;
|
|
320
335
|
/**
|
|
336
|
+
* @public
|
|
321
337
|
* <p>Node ID.</p>
|
|
322
338
|
*/
|
|
323
339
|
NodeId?: string;
|
|
324
340
|
/**
|
|
341
|
+
* @public
|
|
325
342
|
* <p>Information about constraints.</p>
|
|
326
343
|
*/
|
|
327
344
|
CheckoutMetadata?: Metadata[];
|
|
328
345
|
/**
|
|
346
|
+
* @public
|
|
329
347
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
330
348
|
*/
|
|
331
349
|
ClientToken: string | undefined;
|
|
@@ -335,34 +353,42 @@ export interface CheckoutBorrowLicenseRequest {
|
|
|
335
353
|
*/
|
|
336
354
|
export interface CheckoutBorrowLicenseResponse {
|
|
337
355
|
/**
|
|
356
|
+
* @public
|
|
338
357
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
339
358
|
*/
|
|
340
359
|
LicenseArn?: string;
|
|
341
360
|
/**
|
|
361
|
+
* @public
|
|
342
362
|
* <p>License consumption token.</p>
|
|
343
363
|
*/
|
|
344
364
|
LicenseConsumptionToken?: string;
|
|
345
365
|
/**
|
|
366
|
+
* @public
|
|
346
367
|
* <p>Allowed license entitlements.</p>
|
|
347
368
|
*/
|
|
348
369
|
EntitlementsAllowed?: EntitlementData[];
|
|
349
370
|
/**
|
|
371
|
+
* @public
|
|
350
372
|
* <p>Node ID.</p>
|
|
351
373
|
*/
|
|
352
374
|
NodeId?: string;
|
|
353
375
|
/**
|
|
376
|
+
* @public
|
|
354
377
|
* <p>Signed token.</p>
|
|
355
378
|
*/
|
|
356
379
|
SignedToken?: string;
|
|
357
380
|
/**
|
|
381
|
+
* @public
|
|
358
382
|
* <p>Date and time at which the license checkout is issued.</p>
|
|
359
383
|
*/
|
|
360
384
|
IssuedAt?: string;
|
|
361
385
|
/**
|
|
386
|
+
* @public
|
|
362
387
|
* <p>Date and time at which the license checkout expires.</p>
|
|
363
388
|
*/
|
|
364
389
|
Expiration?: string;
|
|
365
390
|
/**
|
|
391
|
+
* @public
|
|
366
392
|
* <p>Information about constraints.</p>
|
|
367
393
|
*/
|
|
368
394
|
CheckoutMetadata?: Metadata[];
|
|
@@ -437,30 +463,37 @@ export type CheckoutType = (typeof CheckoutType)[keyof typeof CheckoutType];
|
|
|
437
463
|
*/
|
|
438
464
|
export interface CheckoutLicenseRequest {
|
|
439
465
|
/**
|
|
466
|
+
* @public
|
|
440
467
|
* <p>Product SKU.</p>
|
|
441
468
|
*/
|
|
442
469
|
ProductSKU: string | undefined;
|
|
443
470
|
/**
|
|
471
|
+
* @public
|
|
444
472
|
* <p>Checkout type.</p>
|
|
445
473
|
*/
|
|
446
474
|
CheckoutType: CheckoutType | string | undefined;
|
|
447
475
|
/**
|
|
476
|
+
* @public
|
|
448
477
|
* <p>Key fingerprint identifying the license.</p>
|
|
449
478
|
*/
|
|
450
479
|
KeyFingerprint: string | undefined;
|
|
451
480
|
/**
|
|
481
|
+
* @public
|
|
452
482
|
* <p>License entitlements.</p>
|
|
453
483
|
*/
|
|
454
484
|
Entitlements: EntitlementData[] | undefined;
|
|
455
485
|
/**
|
|
486
|
+
* @public
|
|
456
487
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
457
488
|
*/
|
|
458
489
|
ClientToken: string | undefined;
|
|
459
490
|
/**
|
|
491
|
+
* @public
|
|
460
492
|
* <p>License beneficiary.</p>
|
|
461
493
|
*/
|
|
462
494
|
Beneficiary?: string;
|
|
463
495
|
/**
|
|
496
|
+
* @public
|
|
464
497
|
* <p>Node ID.</p>
|
|
465
498
|
*/
|
|
466
499
|
NodeId?: string;
|
|
@@ -470,34 +503,42 @@ export interface CheckoutLicenseRequest {
|
|
|
470
503
|
*/
|
|
471
504
|
export interface CheckoutLicenseResponse {
|
|
472
505
|
/**
|
|
506
|
+
* @public
|
|
473
507
|
* <p>Checkout type.</p>
|
|
474
508
|
*/
|
|
475
509
|
CheckoutType?: CheckoutType | string;
|
|
476
510
|
/**
|
|
511
|
+
* @public
|
|
477
512
|
* <p>License consumption token.</p>
|
|
478
513
|
*/
|
|
479
514
|
LicenseConsumptionToken?: string;
|
|
480
515
|
/**
|
|
516
|
+
* @public
|
|
481
517
|
* <p>Allowed license entitlements.</p>
|
|
482
518
|
*/
|
|
483
519
|
EntitlementsAllowed?: EntitlementData[];
|
|
484
520
|
/**
|
|
521
|
+
* @public
|
|
485
522
|
* <p>Signed token.</p>
|
|
486
523
|
*/
|
|
487
524
|
SignedToken?: string;
|
|
488
525
|
/**
|
|
526
|
+
* @public
|
|
489
527
|
* <p>Node ID.</p>
|
|
490
528
|
*/
|
|
491
529
|
NodeId?: string;
|
|
492
530
|
/**
|
|
531
|
+
* @public
|
|
493
532
|
* <p>Date and time at which the license checkout is issued.</p>
|
|
494
533
|
*/
|
|
495
534
|
IssuedAt?: string;
|
|
496
535
|
/**
|
|
536
|
+
* @public
|
|
497
537
|
* <p>Date and time at which the license checkout expires.</p>
|
|
498
538
|
*/
|
|
499
539
|
Expiration?: string;
|
|
500
540
|
/**
|
|
541
|
+
* @public
|
|
501
542
|
* <p>Amazon Resource Name (ARN) of the checkout license.</p>
|
|
502
543
|
*/
|
|
503
544
|
LicenseArn?: string;
|
|
@@ -507,18 +548,22 @@ export interface CheckoutLicenseResponse {
|
|
|
507
548
|
*/
|
|
508
549
|
export interface CreateGrantRequest {
|
|
509
550
|
/**
|
|
551
|
+
* @public
|
|
510
552
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
511
553
|
*/
|
|
512
554
|
ClientToken: string | undefined;
|
|
513
555
|
/**
|
|
556
|
+
* @public
|
|
514
557
|
* <p>Grant name.</p>
|
|
515
558
|
*/
|
|
516
559
|
GrantName: string | undefined;
|
|
517
560
|
/**
|
|
561
|
+
* @public
|
|
518
562
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
519
563
|
*/
|
|
520
564
|
LicenseArn: string | undefined;
|
|
521
565
|
/**
|
|
566
|
+
* @public
|
|
522
567
|
* <p>The grant principals. You can specify one of the following as an Amazon Resource Name
|
|
523
568
|
* (ARN):</p>
|
|
524
569
|
* <ul>
|
|
@@ -539,10 +584,12 @@ export interface CreateGrantRequest {
|
|
|
539
584
|
*/
|
|
540
585
|
Principals: string[] | undefined;
|
|
541
586
|
/**
|
|
587
|
+
* @public
|
|
542
588
|
* <p>Home Region of the grant.</p>
|
|
543
589
|
*/
|
|
544
590
|
HomeRegion: string | undefined;
|
|
545
591
|
/**
|
|
592
|
+
* @public
|
|
546
593
|
* <p>Allowed operations for the grant.</p>
|
|
547
594
|
*/
|
|
548
595
|
AllowedOperations: (AllowedOperation | string)[] | undefined;
|
|
@@ -552,14 +599,17 @@ export interface CreateGrantRequest {
|
|
|
552
599
|
*/
|
|
553
600
|
export interface CreateGrantResponse {
|
|
554
601
|
/**
|
|
602
|
+
* @public
|
|
555
603
|
* <p>Grant ARN.</p>
|
|
556
604
|
*/
|
|
557
605
|
GrantArn?: string;
|
|
558
606
|
/**
|
|
607
|
+
* @public
|
|
559
608
|
* <p>Grant status.</p>
|
|
560
609
|
*/
|
|
561
610
|
Status?: GrantStatus | string;
|
|
562
611
|
/**
|
|
612
|
+
* @public
|
|
563
613
|
* <p>Grant version.</p>
|
|
564
614
|
*/
|
|
565
615
|
Version?: string;
|
|
@@ -571,6 +621,7 @@ export interface CreateGrantResponse {
|
|
|
571
621
|
*/
|
|
572
622
|
export interface Options {
|
|
573
623
|
/**
|
|
624
|
+
* @public
|
|
574
625
|
* <p>An activation option for your grant that determines the behavior of activating a grant.
|
|
575
626
|
* Activation options can only be used with granted licenses sourced from the Amazon Web Services Marketplace. Additionally, the operation must specify the value of <code>ACTIVE</code> for the
|
|
576
627
|
* <code>Status</code> parameter.</p>
|
|
@@ -611,34 +662,42 @@ export interface Options {
|
|
|
611
662
|
*/
|
|
612
663
|
export interface CreateGrantVersionRequest {
|
|
613
664
|
/**
|
|
665
|
+
* @public
|
|
614
666
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
615
667
|
*/
|
|
616
668
|
ClientToken: string | undefined;
|
|
617
669
|
/**
|
|
670
|
+
* @public
|
|
618
671
|
* <p>Amazon Resource Name (ARN) of the grant.</p>
|
|
619
672
|
*/
|
|
620
673
|
GrantArn: string | undefined;
|
|
621
674
|
/**
|
|
675
|
+
* @public
|
|
622
676
|
* <p>Grant name.</p>
|
|
623
677
|
*/
|
|
624
678
|
GrantName?: string;
|
|
625
679
|
/**
|
|
680
|
+
* @public
|
|
626
681
|
* <p>Allowed operations for the grant.</p>
|
|
627
682
|
*/
|
|
628
683
|
AllowedOperations?: (AllowedOperation | string)[];
|
|
629
684
|
/**
|
|
685
|
+
* @public
|
|
630
686
|
* <p>Grant status.</p>
|
|
631
687
|
*/
|
|
632
688
|
Status?: GrantStatus | string;
|
|
633
689
|
/**
|
|
690
|
+
* @public
|
|
634
691
|
* <p>Grant status reason.</p>
|
|
635
692
|
*/
|
|
636
693
|
StatusReason?: string;
|
|
637
694
|
/**
|
|
695
|
+
* @public
|
|
638
696
|
* <p>Current version of the grant.</p>
|
|
639
697
|
*/
|
|
640
698
|
SourceVersion?: string;
|
|
641
699
|
/**
|
|
700
|
+
* @public
|
|
642
701
|
* <p>The options specified for the grant.</p>
|
|
643
702
|
*/
|
|
644
703
|
Options?: Options;
|
|
@@ -648,14 +707,17 @@ export interface CreateGrantVersionRequest {
|
|
|
648
707
|
*/
|
|
649
708
|
export interface CreateGrantVersionResponse {
|
|
650
709
|
/**
|
|
710
|
+
* @public
|
|
651
711
|
* <p>Grant ARN.</p>
|
|
652
712
|
*/
|
|
653
713
|
GrantArn?: string;
|
|
654
714
|
/**
|
|
715
|
+
* @public
|
|
655
716
|
* <p>Grant status.</p>
|
|
656
717
|
*/
|
|
657
718
|
Status?: GrantStatus | string;
|
|
658
719
|
/**
|
|
720
|
+
* @public
|
|
659
721
|
* <p>New version of the grant.</p>
|
|
660
722
|
*/
|
|
661
723
|
Version?: string;
|
|
@@ -666,10 +728,12 @@ export interface CreateGrantVersionResponse {
|
|
|
666
728
|
*/
|
|
667
729
|
export interface BorrowConfiguration {
|
|
668
730
|
/**
|
|
731
|
+
* @public
|
|
669
732
|
* <p>Indicates whether early check-ins are allowed.</p>
|
|
670
733
|
*/
|
|
671
734
|
AllowEarlyCheckIn: boolean | undefined;
|
|
672
735
|
/**
|
|
736
|
+
* @public
|
|
673
737
|
* <p>Maximum time for the borrow configuration, in minutes.</p>
|
|
674
738
|
*/
|
|
675
739
|
MaxTimeToLiveInMinutes: number | undefined;
|
|
@@ -680,6 +744,7 @@ export interface BorrowConfiguration {
|
|
|
680
744
|
*/
|
|
681
745
|
export interface ProvisionalConfiguration {
|
|
682
746
|
/**
|
|
747
|
+
* @public
|
|
683
748
|
* <p>Maximum time for the provisional configuration, in minutes.</p>
|
|
684
749
|
*/
|
|
685
750
|
MaxTimeToLiveInMinutes: number | undefined;
|
|
@@ -703,14 +768,17 @@ export type RenewType = (typeof RenewType)[keyof typeof RenewType];
|
|
|
703
768
|
*/
|
|
704
769
|
export interface ConsumptionConfiguration {
|
|
705
770
|
/**
|
|
771
|
+
* @public
|
|
706
772
|
* <p>Renewal frequency.</p>
|
|
707
773
|
*/
|
|
708
774
|
RenewType?: RenewType | string;
|
|
709
775
|
/**
|
|
776
|
+
* @public
|
|
710
777
|
* <p>Details about a provisional configuration.</p>
|
|
711
778
|
*/
|
|
712
779
|
ProvisionalConfiguration?: ProvisionalConfiguration;
|
|
713
780
|
/**
|
|
781
|
+
* @public
|
|
714
782
|
* <p>Details about a borrow configuration.</p>
|
|
715
783
|
*/
|
|
716
784
|
BorrowConfiguration?: BorrowConfiguration;
|
|
@@ -758,26 +826,32 @@ export type EntitlementUnit = (typeof EntitlementUnit)[keyof typeof EntitlementU
|
|
|
758
826
|
*/
|
|
759
827
|
export interface Entitlement {
|
|
760
828
|
/**
|
|
829
|
+
* @public
|
|
761
830
|
* <p>Entitlement name.</p>
|
|
762
831
|
*/
|
|
763
832
|
Name: string | undefined;
|
|
764
833
|
/**
|
|
834
|
+
* @public
|
|
765
835
|
* <p>Entitlement resource. Use only if the unit is None.</p>
|
|
766
836
|
*/
|
|
767
837
|
Value?: string;
|
|
768
838
|
/**
|
|
839
|
+
* @public
|
|
769
840
|
* <p>Maximum entitlement count. Use if the unit is not None.</p>
|
|
770
841
|
*/
|
|
771
842
|
MaxCount?: number;
|
|
772
843
|
/**
|
|
844
|
+
* @public
|
|
773
845
|
* <p>Indicates whether overages are allowed.</p>
|
|
774
846
|
*/
|
|
775
847
|
Overage?: boolean;
|
|
776
848
|
/**
|
|
849
|
+
* @public
|
|
777
850
|
* <p>Entitlement unit.</p>
|
|
778
851
|
*/
|
|
779
852
|
Unit: EntitlementUnit | string | undefined;
|
|
780
853
|
/**
|
|
854
|
+
* @public
|
|
781
855
|
* <p>Indicates whether check-ins are allowed.</p>
|
|
782
856
|
*/
|
|
783
857
|
AllowCheckIn?: boolean;
|
|
@@ -788,10 +862,12 @@ export interface Entitlement {
|
|
|
788
862
|
*/
|
|
789
863
|
export interface Issuer {
|
|
790
864
|
/**
|
|
865
|
+
* @public
|
|
791
866
|
* <p>Issuer name.</p>
|
|
792
867
|
*/
|
|
793
868
|
Name: string | undefined;
|
|
794
869
|
/**
|
|
870
|
+
* @public
|
|
795
871
|
* <p>Asymmetric KMS key from Key Management Service. The KMS key must have a key usage of sign and verify,
|
|
796
872
|
* and support the RSASSA-PSS SHA-256 signing algorithm.</p>
|
|
797
873
|
*/
|
|
@@ -803,10 +879,12 @@ export interface Issuer {
|
|
|
803
879
|
*/
|
|
804
880
|
export interface DatetimeRange {
|
|
805
881
|
/**
|
|
882
|
+
* @public
|
|
806
883
|
* <p>Start of the time range.</p>
|
|
807
884
|
*/
|
|
808
885
|
Begin: string | undefined;
|
|
809
886
|
/**
|
|
887
|
+
* @public
|
|
810
888
|
* <p>End of the time range.</p>
|
|
811
889
|
*/
|
|
812
890
|
End?: string;
|
|
@@ -816,48 +894,59 @@ export interface DatetimeRange {
|
|
|
816
894
|
*/
|
|
817
895
|
export interface CreateLicenseRequest {
|
|
818
896
|
/**
|
|
897
|
+
* @public
|
|
819
898
|
* <p>License name.</p>
|
|
820
899
|
*/
|
|
821
900
|
LicenseName: string | undefined;
|
|
822
901
|
/**
|
|
902
|
+
* @public
|
|
823
903
|
* <p>Product name.</p>
|
|
824
904
|
*/
|
|
825
905
|
ProductName: string | undefined;
|
|
826
906
|
/**
|
|
907
|
+
* @public
|
|
827
908
|
* <p>Product SKU.</p>
|
|
828
909
|
*/
|
|
829
910
|
ProductSKU: string | undefined;
|
|
830
911
|
/**
|
|
912
|
+
* @public
|
|
831
913
|
* <p>License issuer.</p>
|
|
832
914
|
*/
|
|
833
915
|
Issuer: Issuer | undefined;
|
|
834
916
|
/**
|
|
917
|
+
* @public
|
|
835
918
|
* <p>Home Region for the license.</p>
|
|
836
919
|
*/
|
|
837
920
|
HomeRegion: string | undefined;
|
|
838
921
|
/**
|
|
922
|
+
* @public
|
|
839
923
|
* <p>Date and time range during which the license is valid, in ISO8601-UTC format.</p>
|
|
840
924
|
*/
|
|
841
925
|
Validity: DatetimeRange | undefined;
|
|
842
926
|
/**
|
|
927
|
+
* @public
|
|
843
928
|
* <p>License entitlements.</p>
|
|
844
929
|
*/
|
|
845
930
|
Entitlements: Entitlement[] | undefined;
|
|
846
931
|
/**
|
|
932
|
+
* @public
|
|
847
933
|
* <p>License beneficiary.</p>
|
|
848
934
|
*/
|
|
849
935
|
Beneficiary: string | undefined;
|
|
850
936
|
/**
|
|
937
|
+
* @public
|
|
851
938
|
* <p>Configuration for consumption of the license. Choose a provisional configuration for workloads
|
|
852
939
|
* running with continuous connectivity. Choose a borrow configuration for workloads with offline
|
|
853
940
|
* usage.</p>
|
|
854
941
|
*/
|
|
855
942
|
ConsumptionConfiguration: ConsumptionConfiguration | undefined;
|
|
856
943
|
/**
|
|
944
|
+
* @public
|
|
857
945
|
* <p>Information about the license.</p>
|
|
858
946
|
*/
|
|
859
947
|
LicenseMetadata?: Metadata[];
|
|
860
948
|
/**
|
|
949
|
+
* @public
|
|
861
950
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
862
951
|
*/
|
|
863
952
|
ClientToken: string | undefined;
|
|
@@ -884,14 +973,17 @@ export type LicenseStatus = (typeof LicenseStatus)[keyof typeof LicenseStatus];
|
|
|
884
973
|
*/
|
|
885
974
|
export interface CreateLicenseResponse {
|
|
886
975
|
/**
|
|
976
|
+
* @public
|
|
887
977
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
888
978
|
*/
|
|
889
979
|
LicenseArn?: string;
|
|
890
980
|
/**
|
|
981
|
+
* @public
|
|
891
982
|
* <p>License status.</p>
|
|
892
983
|
*/
|
|
893
984
|
Status?: LicenseStatus | string;
|
|
894
985
|
/**
|
|
986
|
+
* @public
|
|
895
987
|
* <p>License version.</p>
|
|
896
988
|
*/
|
|
897
989
|
Version?: string;
|
|
@@ -916,14 +1008,17 @@ export type LicenseCountingType = (typeof LicenseCountingType)[keyof typeof Lice
|
|
|
916
1008
|
*/
|
|
917
1009
|
export interface ProductInformationFilter {
|
|
918
1010
|
/**
|
|
1011
|
+
* @public
|
|
919
1012
|
* <p>Filter name.</p>
|
|
920
1013
|
*/
|
|
921
1014
|
ProductInformationFilterName: string | undefined;
|
|
922
1015
|
/**
|
|
1016
|
+
* @public
|
|
923
1017
|
* <p>Filter value.</p>
|
|
924
1018
|
*/
|
|
925
1019
|
ProductInformationFilterValue?: string[];
|
|
926
1020
|
/**
|
|
1021
|
+
* @public
|
|
927
1022
|
* <p>Logical operator.</p>
|
|
928
1023
|
*/
|
|
929
1024
|
ProductInformationFilterComparator: string | undefined;
|
|
@@ -934,10 +1029,12 @@ export interface ProductInformationFilter {
|
|
|
934
1029
|
*/
|
|
935
1030
|
export interface ProductInformation {
|
|
936
1031
|
/**
|
|
1032
|
+
* @public
|
|
937
1033
|
* <p>Resource type. The possible values are <code>SSM_MANAGED</code> | <code>RDS</code>.</p>
|
|
938
1034
|
*/
|
|
939
1035
|
ResourceType: string | undefined;
|
|
940
1036
|
/**
|
|
1037
|
+
* @public
|
|
941
1038
|
* <p>A Product information filter consists of a <code>ProductInformationFilterComparator</code> which is a logical operator, a <code>ProductInformationFilterName</code> which specifies the type of filter being declared, and a <code>ProductInformationFilterValue</code> that specifies the value to filter on. </p>
|
|
942
1039
|
* <p>Accepted values for <code>ProductInformationFilterName</code> are listed here along with descriptions and valid options for <code>ProductInformationFilterComparator</code>. </p>
|
|
943
1040
|
* <p>The following filters and are supported when the resource type
|
|
@@ -1017,10 +1114,12 @@ export interface ProductInformation {
|
|
|
1017
1114
|
*/
|
|
1018
1115
|
export interface Tag {
|
|
1019
1116
|
/**
|
|
1117
|
+
* @public
|
|
1020
1118
|
* <p>Tag key.</p>
|
|
1021
1119
|
*/
|
|
1022
1120
|
Key?: string;
|
|
1023
1121
|
/**
|
|
1122
|
+
* @public
|
|
1024
1123
|
* <p>Tag value.</p>
|
|
1025
1124
|
*/
|
|
1026
1125
|
Value?: string;
|
|
@@ -1030,27 +1129,33 @@ export interface Tag {
|
|
|
1030
1129
|
*/
|
|
1031
1130
|
export interface CreateLicenseConfigurationRequest {
|
|
1032
1131
|
/**
|
|
1132
|
+
* @public
|
|
1033
1133
|
* <p>Name of the license configuration.</p>
|
|
1034
1134
|
*/
|
|
1035
1135
|
Name: string | undefined;
|
|
1036
1136
|
/**
|
|
1137
|
+
* @public
|
|
1037
1138
|
* <p>Description of the license configuration.</p>
|
|
1038
1139
|
*/
|
|
1039
1140
|
Description?: string;
|
|
1040
1141
|
/**
|
|
1142
|
+
* @public
|
|
1041
1143
|
* <p>Dimension used to track the license inventory.</p>
|
|
1042
1144
|
*/
|
|
1043
1145
|
LicenseCountingType: LicenseCountingType | string | undefined;
|
|
1044
1146
|
/**
|
|
1147
|
+
* @public
|
|
1045
1148
|
* <p>Number of licenses managed by the license configuration.</p>
|
|
1046
1149
|
*/
|
|
1047
1150
|
LicenseCount?: number;
|
|
1048
1151
|
/**
|
|
1152
|
+
* @public
|
|
1049
1153
|
* <p>Indicates whether hard or soft license enforcement is used. Exceeding a hard limit
|
|
1050
1154
|
* blocks the launch of new instances.</p>
|
|
1051
1155
|
*/
|
|
1052
1156
|
LicenseCountHardLimit?: boolean;
|
|
1053
1157
|
/**
|
|
1158
|
+
* @public
|
|
1054
1159
|
* <p>License rules. The syntax is #name=value (for example, #allowedTenancy=EC2-DedicatedHost). The available rules
|
|
1055
1160
|
* vary by dimension, as follows.</p>
|
|
1056
1161
|
* <ul>
|
|
@@ -1091,14 +1196,17 @@ export interface CreateLicenseConfigurationRequest {
|
|
|
1091
1196
|
*/
|
|
1092
1197
|
LicenseRules?: string[];
|
|
1093
1198
|
/**
|
|
1199
|
+
* @public
|
|
1094
1200
|
* <p>Tags to add to the license configuration.</p>
|
|
1095
1201
|
*/
|
|
1096
1202
|
Tags?: Tag[];
|
|
1097
1203
|
/**
|
|
1204
|
+
* @public
|
|
1098
1205
|
* <p>When true, disassociates a resource when software is uninstalled.</p>
|
|
1099
1206
|
*/
|
|
1100
1207
|
DisassociateWhenNotFound?: boolean;
|
|
1101
1208
|
/**
|
|
1209
|
+
* @public
|
|
1102
1210
|
* <p>Product information.</p>
|
|
1103
1211
|
*/
|
|
1104
1212
|
ProductInformationList?: ProductInformation[];
|
|
@@ -1108,6 +1216,7 @@ export interface CreateLicenseConfigurationRequest {
|
|
|
1108
1216
|
*/
|
|
1109
1217
|
export interface CreateLicenseConfigurationResponse {
|
|
1110
1218
|
/**
|
|
1219
|
+
* @public
|
|
1111
1220
|
* <p>Amazon Resource Name (ARN) of the license configuration.</p>
|
|
1112
1221
|
*/
|
|
1113
1222
|
LicenseConfigurationArn?: string;
|
|
@@ -1118,6 +1227,7 @@ export interface CreateLicenseConfigurationResponse {
|
|
|
1118
1227
|
*/
|
|
1119
1228
|
export interface LicenseConversionContext {
|
|
1120
1229
|
/**
|
|
1230
|
+
* @public
|
|
1121
1231
|
* <p>The Usage operation value that corresponds to the license type you are converting your resource from. For more information about which platforms correspond to which usage operation values see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/billing-info-fields.html#billing-info">Sample data: usage operation by platform
|
|
1122
1232
|
* </a>
|
|
1123
1233
|
* </p>
|
|
@@ -1129,16 +1239,19 @@ export interface LicenseConversionContext {
|
|
|
1129
1239
|
*/
|
|
1130
1240
|
export interface CreateLicenseConversionTaskForResourceRequest {
|
|
1131
1241
|
/**
|
|
1242
|
+
* @public
|
|
1132
1243
|
* <p>Amazon Resource Name (ARN) of the resource you are converting the license type for.</p>
|
|
1133
1244
|
*/
|
|
1134
1245
|
ResourceArn: string | undefined;
|
|
1135
1246
|
/**
|
|
1247
|
+
* @public
|
|
1136
1248
|
* <p>Information that identifies the license type you are converting from.
|
|
1137
1249
|
*
|
|
1138
1250
|
* For the structure of the source license, see <a href="https://docs.aws.amazon.com/license-manager/latest/userguide/conversion-procedures.html#conversion-cli">Convert a license type using the CLI </a> in the <i>License Manager User Guide</i>.</p>
|
|
1139
1251
|
*/
|
|
1140
1252
|
SourceLicenseContext: LicenseConversionContext | undefined;
|
|
1141
1253
|
/**
|
|
1254
|
+
* @public
|
|
1142
1255
|
* <p>Information that identifies the license type you are converting to. For the structure of the destination license, see <a href="https://docs.aws.amazon.com/license-manager/latest/userguide/conversion-procedures.html#conversion-cli">Convert a license type using the CLI </a> in the <i>License Manager User Guide</i>.</p>
|
|
1143
1256
|
*/
|
|
1144
1257
|
DestinationLicenseContext: LicenseConversionContext | undefined;
|
|
@@ -1148,6 +1261,7 @@ export interface CreateLicenseConversionTaskForResourceRequest {
|
|
|
1148
1261
|
*/
|
|
1149
1262
|
export interface CreateLicenseConversionTaskForResourceResponse {
|
|
1150
1263
|
/**
|
|
1264
|
+
* @public
|
|
1151
1265
|
* <p>The ID of the created license type conversion task.</p>
|
|
1152
1266
|
*/
|
|
1153
1267
|
LicenseConversionTaskId?: string;
|
|
@@ -1158,6 +1272,7 @@ export interface CreateLicenseConversionTaskForResourceResponse {
|
|
|
1158
1272
|
*/
|
|
1159
1273
|
export interface ReportContext {
|
|
1160
1274
|
/**
|
|
1275
|
+
* @public
|
|
1161
1276
|
* <p>Amazon Resource Name (ARN) of the license configuration that this generator reports on.</p>
|
|
1162
1277
|
*/
|
|
1163
1278
|
licenseConfigurationArns: string[] | undefined;
|
|
@@ -1181,11 +1296,13 @@ export type ReportFrequencyType = (typeof ReportFrequencyType)[keyof typeof Repo
|
|
|
1181
1296
|
*/
|
|
1182
1297
|
export interface ReportFrequency {
|
|
1183
1298
|
/**
|
|
1299
|
+
* @public
|
|
1184
1300
|
* <p>Number of times within the frequency period that a report is generated.
|
|
1185
1301
|
* The only supported value is <code>1</code>.</p>
|
|
1186
1302
|
*/
|
|
1187
1303
|
value?: number;
|
|
1188
1304
|
/**
|
|
1305
|
+
* @public
|
|
1189
1306
|
* <p>Time period between each report. The period can be daily, weekly, or monthly.</p>
|
|
1190
1307
|
*/
|
|
1191
1308
|
period?: ReportFrequencyType | string;
|
|
@@ -1207,10 +1324,12 @@ export type ReportType = (typeof ReportType)[keyof typeof ReportType];
|
|
|
1207
1324
|
*/
|
|
1208
1325
|
export interface CreateLicenseManagerReportGeneratorRequest {
|
|
1209
1326
|
/**
|
|
1327
|
+
* @public
|
|
1210
1328
|
* <p>Name of the report generator.</p>
|
|
1211
1329
|
*/
|
|
1212
1330
|
ReportGeneratorName: string | undefined;
|
|
1213
1331
|
/**
|
|
1332
|
+
* @public
|
|
1214
1333
|
* <p>Type of reports to generate. The following report types an be generated:</p>
|
|
1215
1334
|
* <ul>
|
|
1216
1335
|
* <li>
|
|
@@ -1223,22 +1342,27 @@ export interface CreateLicenseManagerReportGeneratorRequest {
|
|
|
1223
1342
|
*/
|
|
1224
1343
|
Type: (ReportType | string)[] | undefined;
|
|
1225
1344
|
/**
|
|
1345
|
+
* @public
|
|
1226
1346
|
* <p>Defines the type of license configuration the report generator tracks.</p>
|
|
1227
1347
|
*/
|
|
1228
1348
|
ReportContext: ReportContext | undefined;
|
|
1229
1349
|
/**
|
|
1350
|
+
* @public
|
|
1230
1351
|
* <p>Frequency by which reports are generated. Reports can be generated daily, monthly, or weekly.</p>
|
|
1231
1352
|
*/
|
|
1232
1353
|
ReportFrequency: ReportFrequency | undefined;
|
|
1233
1354
|
/**
|
|
1355
|
+
* @public
|
|
1234
1356
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
1235
1357
|
*/
|
|
1236
1358
|
ClientToken: string | undefined;
|
|
1237
1359
|
/**
|
|
1360
|
+
* @public
|
|
1238
1361
|
* <p>Description of the report generator.</p>
|
|
1239
1362
|
*/
|
|
1240
1363
|
Description?: string;
|
|
1241
1364
|
/**
|
|
1365
|
+
* @public
|
|
1242
1366
|
* <p>Tags to add to the report generator.</p>
|
|
1243
1367
|
*/
|
|
1244
1368
|
Tags?: Tag[];
|
|
@@ -1248,6 +1372,7 @@ export interface CreateLicenseManagerReportGeneratorRequest {
|
|
|
1248
1372
|
*/
|
|
1249
1373
|
export interface CreateLicenseManagerReportGeneratorResponse {
|
|
1250
1374
|
/**
|
|
1375
|
+
* @public
|
|
1251
1376
|
* <p>The Amazon Resource Name (ARN) of the new report generator.</p>
|
|
1252
1377
|
*/
|
|
1253
1378
|
LicenseManagerReportGeneratorArn?: string;
|
|
@@ -1257,52 +1382,64 @@ export interface CreateLicenseManagerReportGeneratorResponse {
|
|
|
1257
1382
|
*/
|
|
1258
1383
|
export interface CreateLicenseVersionRequest {
|
|
1259
1384
|
/**
|
|
1385
|
+
* @public
|
|
1260
1386
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
1261
1387
|
*/
|
|
1262
1388
|
LicenseArn: string | undefined;
|
|
1263
1389
|
/**
|
|
1390
|
+
* @public
|
|
1264
1391
|
* <p>License name.</p>
|
|
1265
1392
|
*/
|
|
1266
1393
|
LicenseName: string | undefined;
|
|
1267
1394
|
/**
|
|
1395
|
+
* @public
|
|
1268
1396
|
* <p>Product name.</p>
|
|
1269
1397
|
*/
|
|
1270
1398
|
ProductName: string | undefined;
|
|
1271
1399
|
/**
|
|
1400
|
+
* @public
|
|
1272
1401
|
* <p>License issuer.</p>
|
|
1273
1402
|
*/
|
|
1274
1403
|
Issuer: Issuer | undefined;
|
|
1275
1404
|
/**
|
|
1405
|
+
* @public
|
|
1276
1406
|
* <p>Home Region of the license.</p>
|
|
1277
1407
|
*/
|
|
1278
1408
|
HomeRegion: string | undefined;
|
|
1279
1409
|
/**
|
|
1410
|
+
* @public
|
|
1280
1411
|
* <p>Date and time range during which the license is valid, in ISO8601-UTC format.</p>
|
|
1281
1412
|
*/
|
|
1282
1413
|
Validity: DatetimeRange | undefined;
|
|
1283
1414
|
/**
|
|
1415
|
+
* @public
|
|
1284
1416
|
* <p>Information about the license.</p>
|
|
1285
1417
|
*/
|
|
1286
1418
|
LicenseMetadata?: Metadata[];
|
|
1287
1419
|
/**
|
|
1420
|
+
* @public
|
|
1288
1421
|
* <p>License entitlements.</p>
|
|
1289
1422
|
*/
|
|
1290
1423
|
Entitlements: Entitlement[] | undefined;
|
|
1291
1424
|
/**
|
|
1425
|
+
* @public
|
|
1292
1426
|
* <p>Configuration for consumption of the license. Choose a provisional configuration for workloads
|
|
1293
1427
|
* running with continuous connectivity. Choose a borrow configuration for workloads with offline
|
|
1294
1428
|
* usage.</p>
|
|
1295
1429
|
*/
|
|
1296
1430
|
ConsumptionConfiguration: ConsumptionConfiguration | undefined;
|
|
1297
1431
|
/**
|
|
1432
|
+
* @public
|
|
1298
1433
|
* <p>License status.</p>
|
|
1299
1434
|
*/
|
|
1300
1435
|
Status: LicenseStatus | string | undefined;
|
|
1301
1436
|
/**
|
|
1437
|
+
* @public
|
|
1302
1438
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
1303
1439
|
*/
|
|
1304
1440
|
ClientToken: string | undefined;
|
|
1305
1441
|
/**
|
|
1442
|
+
* @public
|
|
1306
1443
|
* <p>Current version of the license.</p>
|
|
1307
1444
|
*/
|
|
1308
1445
|
SourceVersion?: string;
|
|
@@ -1312,14 +1449,17 @@ export interface CreateLicenseVersionRequest {
|
|
|
1312
1449
|
*/
|
|
1313
1450
|
export interface CreateLicenseVersionResponse {
|
|
1314
1451
|
/**
|
|
1452
|
+
* @public
|
|
1315
1453
|
* <p>License ARN.</p>
|
|
1316
1454
|
*/
|
|
1317
1455
|
LicenseArn?: string;
|
|
1318
1456
|
/**
|
|
1457
|
+
* @public
|
|
1319
1458
|
* <p>New version of the license.</p>
|
|
1320
1459
|
*/
|
|
1321
1460
|
Version?: string;
|
|
1322
1461
|
/**
|
|
1462
|
+
* @public
|
|
1323
1463
|
* <p>License status.</p>
|
|
1324
1464
|
*/
|
|
1325
1465
|
Status?: LicenseStatus | string;
|
|
@@ -1329,25 +1469,30 @@ export interface CreateLicenseVersionResponse {
|
|
|
1329
1469
|
*/
|
|
1330
1470
|
export interface CreateTokenRequest {
|
|
1331
1471
|
/**
|
|
1472
|
+
* @public
|
|
1332
1473
|
* <p>Amazon Resource Name (ARN) of the license. The ARN is mapped to the aud claim of the
|
|
1333
1474
|
* JWT token.</p>
|
|
1334
1475
|
*/
|
|
1335
1476
|
LicenseArn: string | undefined;
|
|
1336
1477
|
/**
|
|
1478
|
+
* @public
|
|
1337
1479
|
* <p>Amazon Resource Name (ARN) of the IAM roles to embed in the token.
|
|
1338
1480
|
* License Manager does not check whether the roles are in use.</p>
|
|
1339
1481
|
*/
|
|
1340
1482
|
RoleArns?: string[];
|
|
1341
1483
|
/**
|
|
1484
|
+
* @public
|
|
1342
1485
|
* <p>Token expiration, in days, counted from token creation. The default is 365 days.</p>
|
|
1343
1486
|
*/
|
|
1344
1487
|
ExpirationInDays?: number;
|
|
1345
1488
|
/**
|
|
1489
|
+
* @public
|
|
1346
1490
|
* <p>Data specified by the caller to be included in the JWT token. The data is mapped
|
|
1347
1491
|
* to the amr claim of the JWT token.</p>
|
|
1348
1492
|
*/
|
|
1349
1493
|
TokenProperties?: string[];
|
|
1350
1494
|
/**
|
|
1495
|
+
* @public
|
|
1351
1496
|
* <p>Idempotency token, valid for 10 minutes.</p>
|
|
1352
1497
|
*/
|
|
1353
1498
|
ClientToken: string | undefined;
|
|
@@ -1368,14 +1513,17 @@ export type TokenType = (typeof TokenType)[keyof typeof TokenType];
|
|
|
1368
1513
|
*/
|
|
1369
1514
|
export interface CreateTokenResponse {
|
|
1370
1515
|
/**
|
|
1516
|
+
* @public
|
|
1371
1517
|
* <p>Token ID.</p>
|
|
1372
1518
|
*/
|
|
1373
1519
|
TokenId?: string;
|
|
1374
1520
|
/**
|
|
1521
|
+
* @public
|
|
1375
1522
|
* <p>Token type.</p>
|
|
1376
1523
|
*/
|
|
1377
1524
|
TokenType?: TokenType | string;
|
|
1378
1525
|
/**
|
|
1526
|
+
* @public
|
|
1379
1527
|
* <p>Refresh token, encoded as a JWT token.</p>
|
|
1380
1528
|
*/
|
|
1381
1529
|
Token?: string;
|
|
@@ -1385,14 +1533,17 @@ export interface CreateTokenResponse {
|
|
|
1385
1533
|
*/
|
|
1386
1534
|
export interface DeleteGrantRequest {
|
|
1387
1535
|
/**
|
|
1536
|
+
* @public
|
|
1388
1537
|
* <p>Amazon Resource Name (ARN) of the grant.</p>
|
|
1389
1538
|
*/
|
|
1390
1539
|
GrantArn: string | undefined;
|
|
1391
1540
|
/**
|
|
1541
|
+
* @public
|
|
1392
1542
|
* <p>The Status reason for the delete request.</p>
|
|
1393
1543
|
*/
|
|
1394
1544
|
StatusReason?: string;
|
|
1395
1545
|
/**
|
|
1546
|
+
* @public
|
|
1396
1547
|
* <p>Current version of the grant.</p>
|
|
1397
1548
|
*/
|
|
1398
1549
|
Version: string | undefined;
|
|
@@ -1402,14 +1553,17 @@ export interface DeleteGrantRequest {
|
|
|
1402
1553
|
*/
|
|
1403
1554
|
export interface DeleteGrantResponse {
|
|
1404
1555
|
/**
|
|
1556
|
+
* @public
|
|
1405
1557
|
* <p>Grant ARN.</p>
|
|
1406
1558
|
*/
|
|
1407
1559
|
GrantArn?: string;
|
|
1408
1560
|
/**
|
|
1561
|
+
* @public
|
|
1409
1562
|
* <p>Grant status.</p>
|
|
1410
1563
|
*/
|
|
1411
1564
|
Status?: GrantStatus | string;
|
|
1412
1565
|
/**
|
|
1566
|
+
* @public
|
|
1413
1567
|
* <p>Grant version.</p>
|
|
1414
1568
|
*/
|
|
1415
1569
|
Version?: string;
|
|
@@ -1419,10 +1573,12 @@ export interface DeleteGrantResponse {
|
|
|
1419
1573
|
*/
|
|
1420
1574
|
export interface DeleteLicenseRequest {
|
|
1421
1575
|
/**
|
|
1576
|
+
* @public
|
|
1422
1577
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
1423
1578
|
*/
|
|
1424
1579
|
LicenseArn: string | undefined;
|
|
1425
1580
|
/**
|
|
1581
|
+
* @public
|
|
1426
1582
|
* <p>Current version of the license.</p>
|
|
1427
1583
|
*/
|
|
1428
1584
|
SourceVersion: string | undefined;
|
|
@@ -1444,10 +1600,12 @@ export type LicenseDeletionStatus = (typeof LicenseDeletionStatus)[keyof typeof
|
|
|
1444
1600
|
*/
|
|
1445
1601
|
export interface DeleteLicenseResponse {
|
|
1446
1602
|
/**
|
|
1603
|
+
* @public
|
|
1447
1604
|
* <p>License status.</p>
|
|
1448
1605
|
*/
|
|
1449
1606
|
Status?: LicenseDeletionStatus | string;
|
|
1450
1607
|
/**
|
|
1608
|
+
* @public
|
|
1451
1609
|
* <p>Date when the license is deleted.</p>
|
|
1452
1610
|
*/
|
|
1453
1611
|
DeletionDate?: string;
|
|
@@ -1457,6 +1615,7 @@ export interface DeleteLicenseResponse {
|
|
|
1457
1615
|
*/
|
|
1458
1616
|
export interface DeleteLicenseConfigurationRequest {
|
|
1459
1617
|
/**
|
|
1618
|
+
* @public
|
|
1460
1619
|
* <p>ID of the license configuration.</p>
|
|
1461
1620
|
*/
|
|
1462
1621
|
LicenseConfigurationArn: string | undefined;
|
|
@@ -1471,6 +1630,7 @@ export interface DeleteLicenseConfigurationResponse {
|
|
|
1471
1630
|
*/
|
|
1472
1631
|
export interface DeleteLicenseManagerReportGeneratorRequest {
|
|
1473
1632
|
/**
|
|
1633
|
+
* @public
|
|
1474
1634
|
* <p>Amazon Resource Name (ARN) of the report generator to be deleted.</p>
|
|
1475
1635
|
*/
|
|
1476
1636
|
LicenseManagerReportGeneratorArn: string | undefined;
|
|
@@ -1485,6 +1645,7 @@ export interface DeleteLicenseManagerReportGeneratorResponse {
|
|
|
1485
1645
|
*/
|
|
1486
1646
|
export interface DeleteTokenRequest {
|
|
1487
1647
|
/**
|
|
1648
|
+
* @public
|
|
1488
1649
|
* <p>Token ID.</p>
|
|
1489
1650
|
*/
|
|
1490
1651
|
TokenId: string | undefined;
|
|
@@ -1499,10 +1660,12 @@ export interface DeleteTokenResponse {
|
|
|
1499
1660
|
*/
|
|
1500
1661
|
export interface ExtendLicenseConsumptionRequest {
|
|
1501
1662
|
/**
|
|
1663
|
+
* @public
|
|
1502
1664
|
* <p>License consumption token.</p>
|
|
1503
1665
|
*/
|
|
1504
1666
|
LicenseConsumptionToken: string | undefined;
|
|
1505
1667
|
/**
|
|
1668
|
+
* @public
|
|
1506
1669
|
* <p>Checks whether you have the required permissions for the action, without actually making the request. Provides an error response if you do not have the required permissions.</p>
|
|
1507
1670
|
*/
|
|
1508
1671
|
DryRun?: boolean;
|
|
@@ -1512,10 +1675,12 @@ export interface ExtendLicenseConsumptionRequest {
|
|
|
1512
1675
|
*/
|
|
1513
1676
|
export interface ExtendLicenseConsumptionResponse {
|
|
1514
1677
|
/**
|
|
1678
|
+
* @public
|
|
1515
1679
|
* <p>License consumption token.</p>
|
|
1516
1680
|
*/
|
|
1517
1681
|
LicenseConsumptionToken?: string;
|
|
1518
1682
|
/**
|
|
1683
|
+
* @public
|
|
1519
1684
|
* <p>Date and time at which the license consumption expires.</p>
|
|
1520
1685
|
*/
|
|
1521
1686
|
Expiration?: string;
|
|
@@ -1525,10 +1690,12 @@ export interface ExtendLicenseConsumptionResponse {
|
|
|
1525
1690
|
*/
|
|
1526
1691
|
export interface GetAccessTokenRequest {
|
|
1527
1692
|
/**
|
|
1693
|
+
* @public
|
|
1528
1694
|
* <p>Refresh token, encoded as a JWT token.</p>
|
|
1529
1695
|
*/
|
|
1530
1696
|
Token: string | undefined;
|
|
1531
1697
|
/**
|
|
1698
|
+
* @public
|
|
1532
1699
|
* <p>Token properties to validate against those present in the JWT token.</p>
|
|
1533
1700
|
*/
|
|
1534
1701
|
TokenProperties?: string[];
|
|
@@ -1538,6 +1705,7 @@ export interface GetAccessTokenRequest {
|
|
|
1538
1705
|
*/
|
|
1539
1706
|
export interface GetAccessTokenResponse {
|
|
1540
1707
|
/**
|
|
1708
|
+
* @public
|
|
1541
1709
|
* <p>Temporary access token.</p>
|
|
1542
1710
|
*/
|
|
1543
1711
|
AccessToken?: string;
|
|
@@ -1547,10 +1715,12 @@ export interface GetAccessTokenResponse {
|
|
|
1547
1715
|
*/
|
|
1548
1716
|
export interface GetGrantRequest {
|
|
1549
1717
|
/**
|
|
1718
|
+
* @public
|
|
1550
1719
|
* <p>Amazon Resource Name (ARN) of the grant.</p>
|
|
1551
1720
|
*/
|
|
1552
1721
|
GrantArn: string | undefined;
|
|
1553
1722
|
/**
|
|
1723
|
+
* @public
|
|
1554
1724
|
* <p>Grant version.</p>
|
|
1555
1725
|
*/
|
|
1556
1726
|
Version?: string;
|
|
@@ -1561,46 +1731,57 @@ export interface GetGrantRequest {
|
|
|
1561
1731
|
*/
|
|
1562
1732
|
export interface Grant {
|
|
1563
1733
|
/**
|
|
1734
|
+
* @public
|
|
1564
1735
|
* <p>Amazon Resource Name (ARN) of the grant.</p>
|
|
1565
1736
|
*/
|
|
1566
1737
|
GrantArn: string | undefined;
|
|
1567
1738
|
/**
|
|
1739
|
+
* @public
|
|
1568
1740
|
* <p>Grant name.</p>
|
|
1569
1741
|
*/
|
|
1570
1742
|
GrantName: string | undefined;
|
|
1571
1743
|
/**
|
|
1744
|
+
* @public
|
|
1572
1745
|
* <p>Parent ARN.</p>
|
|
1573
1746
|
*/
|
|
1574
1747
|
ParentArn: string | undefined;
|
|
1575
1748
|
/**
|
|
1749
|
+
* @public
|
|
1576
1750
|
* <p>License ARN.</p>
|
|
1577
1751
|
*/
|
|
1578
1752
|
LicenseArn: string | undefined;
|
|
1579
1753
|
/**
|
|
1754
|
+
* @public
|
|
1580
1755
|
* <p>The grantee principal ARN.</p>
|
|
1581
1756
|
*/
|
|
1582
1757
|
GranteePrincipalArn: string | undefined;
|
|
1583
1758
|
/**
|
|
1759
|
+
* @public
|
|
1584
1760
|
* <p>Home Region of the grant.</p>
|
|
1585
1761
|
*/
|
|
1586
1762
|
HomeRegion: string | undefined;
|
|
1587
1763
|
/**
|
|
1764
|
+
* @public
|
|
1588
1765
|
* <p>Grant status.</p>
|
|
1589
1766
|
*/
|
|
1590
1767
|
GrantStatus: GrantStatus | string | undefined;
|
|
1591
1768
|
/**
|
|
1769
|
+
* @public
|
|
1592
1770
|
* <p>Grant status reason.</p>
|
|
1593
1771
|
*/
|
|
1594
1772
|
StatusReason?: string;
|
|
1595
1773
|
/**
|
|
1774
|
+
* @public
|
|
1596
1775
|
* <p>Grant version.</p>
|
|
1597
1776
|
*/
|
|
1598
1777
|
Version: string | undefined;
|
|
1599
1778
|
/**
|
|
1779
|
+
* @public
|
|
1600
1780
|
* <p>Granted operations.</p>
|
|
1601
1781
|
*/
|
|
1602
1782
|
GrantedOperations: (AllowedOperation | string)[] | undefined;
|
|
1603
1783
|
/**
|
|
1784
|
+
* @public
|
|
1604
1785
|
* <p>The options specified for the grant.</p>
|
|
1605
1786
|
*/
|
|
1606
1787
|
Options?: Options;
|
|
@@ -1610,6 +1791,7 @@ export interface Grant {
|
|
|
1610
1791
|
*/
|
|
1611
1792
|
export interface GetGrantResponse {
|
|
1612
1793
|
/**
|
|
1794
|
+
* @public
|
|
1613
1795
|
* <p>Grant details.</p>
|
|
1614
1796
|
*/
|
|
1615
1797
|
Grant?: Grant;
|
|
@@ -1619,10 +1801,12 @@ export interface GetGrantResponse {
|
|
|
1619
1801
|
*/
|
|
1620
1802
|
export interface GetLicenseRequest {
|
|
1621
1803
|
/**
|
|
1804
|
+
* @public
|
|
1622
1805
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
1623
1806
|
*/
|
|
1624
1807
|
LicenseArn: string | undefined;
|
|
1625
1808
|
/**
|
|
1809
|
+
* @public
|
|
1626
1810
|
* <p>License version.</p>
|
|
1627
1811
|
*/
|
|
1628
1812
|
Version?: string;
|
|
@@ -1633,15 +1817,18 @@ export interface GetLicenseRequest {
|
|
|
1633
1817
|
*/
|
|
1634
1818
|
export interface IssuerDetails {
|
|
1635
1819
|
/**
|
|
1820
|
+
* @public
|
|
1636
1821
|
* <p>Issuer name.</p>
|
|
1637
1822
|
*/
|
|
1638
1823
|
Name?: string;
|
|
1639
1824
|
/**
|
|
1825
|
+
* @public
|
|
1640
1826
|
* <p>Asymmetric KMS key from Key Management Service. The KMS key must have a key usage of sign and verify,
|
|
1641
1827
|
* and support the RSASSA-PSS SHA-256 signing algorithm.</p>
|
|
1642
1828
|
*/
|
|
1643
1829
|
SignKey?: string;
|
|
1644
1830
|
/**
|
|
1831
|
+
* @public
|
|
1645
1832
|
* <p>Issuer key fingerprint.</p>
|
|
1646
1833
|
*/
|
|
1647
1834
|
KeyFingerprint?: string;
|
|
@@ -1652,58 +1839,72 @@ export interface IssuerDetails {
|
|
|
1652
1839
|
*/
|
|
1653
1840
|
export interface License {
|
|
1654
1841
|
/**
|
|
1842
|
+
* @public
|
|
1655
1843
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
1656
1844
|
*/
|
|
1657
1845
|
LicenseArn?: string;
|
|
1658
1846
|
/**
|
|
1847
|
+
* @public
|
|
1659
1848
|
* <p>License name.</p>
|
|
1660
1849
|
*/
|
|
1661
1850
|
LicenseName?: string;
|
|
1662
1851
|
/**
|
|
1852
|
+
* @public
|
|
1663
1853
|
* <p>Product name.</p>
|
|
1664
1854
|
*/
|
|
1665
1855
|
ProductName?: string;
|
|
1666
1856
|
/**
|
|
1857
|
+
* @public
|
|
1667
1858
|
* <p>Product SKU.</p>
|
|
1668
1859
|
*/
|
|
1669
1860
|
ProductSKU?: string;
|
|
1670
1861
|
/**
|
|
1862
|
+
* @public
|
|
1671
1863
|
* <p>License issuer.</p>
|
|
1672
1864
|
*/
|
|
1673
1865
|
Issuer?: IssuerDetails;
|
|
1674
1866
|
/**
|
|
1867
|
+
* @public
|
|
1675
1868
|
* <p>Home Region of the license.</p>
|
|
1676
1869
|
*/
|
|
1677
1870
|
HomeRegion?: string;
|
|
1678
1871
|
/**
|
|
1872
|
+
* @public
|
|
1679
1873
|
* <p>License status.</p>
|
|
1680
1874
|
*/
|
|
1681
1875
|
Status?: LicenseStatus | string;
|
|
1682
1876
|
/**
|
|
1877
|
+
* @public
|
|
1683
1878
|
* <p>Date and time range during which the license is valid, in ISO8601-UTC format.</p>
|
|
1684
1879
|
*/
|
|
1685
1880
|
Validity?: DatetimeRange;
|
|
1686
1881
|
/**
|
|
1882
|
+
* @public
|
|
1687
1883
|
* <p>License beneficiary.</p>
|
|
1688
1884
|
*/
|
|
1689
1885
|
Beneficiary?: string;
|
|
1690
1886
|
/**
|
|
1887
|
+
* @public
|
|
1691
1888
|
* <p>License entitlements.</p>
|
|
1692
1889
|
*/
|
|
1693
1890
|
Entitlements?: Entitlement[];
|
|
1694
1891
|
/**
|
|
1892
|
+
* @public
|
|
1695
1893
|
* <p>Configuration for consumption of the license.</p>
|
|
1696
1894
|
*/
|
|
1697
1895
|
ConsumptionConfiguration?: ConsumptionConfiguration;
|
|
1698
1896
|
/**
|
|
1897
|
+
* @public
|
|
1699
1898
|
* <p>License metadata.</p>
|
|
1700
1899
|
*/
|
|
1701
1900
|
LicenseMetadata?: Metadata[];
|
|
1702
1901
|
/**
|
|
1902
|
+
* @public
|
|
1703
1903
|
* <p>License creation time.</p>
|
|
1704
1904
|
*/
|
|
1705
1905
|
CreateTime?: string;
|
|
1706
1906
|
/**
|
|
1907
|
+
* @public
|
|
1707
1908
|
* <p>License version.</p>
|
|
1708
1909
|
*/
|
|
1709
1910
|
Version?: string;
|
|
@@ -1713,6 +1914,7 @@ export interface License {
|
|
|
1713
1914
|
*/
|
|
1714
1915
|
export interface GetLicenseResponse {
|
|
1715
1916
|
/**
|
|
1917
|
+
* @public
|
|
1716
1918
|
* <p>License details.</p>
|
|
1717
1919
|
*/
|
|
1718
1920
|
License?: License;
|
|
@@ -1722,6 +1924,7 @@ export interface GetLicenseResponse {
|
|
|
1722
1924
|
*/
|
|
1723
1925
|
export interface GetLicenseConfigurationRequest {
|
|
1724
1926
|
/**
|
|
1927
|
+
* @public
|
|
1725
1928
|
* <p>Amazon Resource Name (ARN) of the license configuration.</p>
|
|
1726
1929
|
*/
|
|
1727
1930
|
LicenseConfigurationArn: string | undefined;
|
|
@@ -1747,10 +1950,12 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
|
1747
1950
|
*/
|
|
1748
1951
|
export interface ConsumedLicenseSummary {
|
|
1749
1952
|
/**
|
|
1953
|
+
* @public
|
|
1750
1954
|
* <p>Resource type of the resource consuming a license.</p>
|
|
1751
1955
|
*/
|
|
1752
1956
|
ResourceType?: ResourceType | string;
|
|
1753
1957
|
/**
|
|
1958
|
+
* @public
|
|
1754
1959
|
* <p>Number of licenses consumed by the resource.</p>
|
|
1755
1960
|
*/
|
|
1756
1961
|
ConsumedLicenses?: number;
|
|
@@ -1761,10 +1966,12 @@ export interface ConsumedLicenseSummary {
|
|
|
1761
1966
|
*/
|
|
1762
1967
|
export interface ManagedResourceSummary {
|
|
1763
1968
|
/**
|
|
1969
|
+
* @public
|
|
1764
1970
|
* <p>Type of resource associated with a license.</p>
|
|
1765
1971
|
*/
|
|
1766
1972
|
ResourceType?: ResourceType | string;
|
|
1767
1973
|
/**
|
|
1974
|
+
* @public
|
|
1768
1975
|
* <p>Number of resources associated with licenses.</p>
|
|
1769
1976
|
*/
|
|
1770
1977
|
AssociationCount?: number;
|
|
@@ -1774,70 +1981,87 @@ export interface ManagedResourceSummary {
|
|
|
1774
1981
|
*/
|
|
1775
1982
|
export interface GetLicenseConfigurationResponse {
|
|
1776
1983
|
/**
|
|
1984
|
+
* @public
|
|
1777
1985
|
* <p>Unique ID for the license configuration.</p>
|
|
1778
1986
|
*/
|
|
1779
1987
|
LicenseConfigurationId?: string;
|
|
1780
1988
|
/**
|
|
1989
|
+
* @public
|
|
1781
1990
|
* <p>Amazon Resource Name (ARN) of the license configuration.</p>
|
|
1782
1991
|
*/
|
|
1783
1992
|
LicenseConfigurationArn?: string;
|
|
1784
1993
|
/**
|
|
1994
|
+
* @public
|
|
1785
1995
|
* <p>Name of the license configuration.</p>
|
|
1786
1996
|
*/
|
|
1787
1997
|
Name?: string;
|
|
1788
1998
|
/**
|
|
1999
|
+
* @public
|
|
1789
2000
|
* <p>Description of the license configuration.</p>
|
|
1790
2001
|
*/
|
|
1791
2002
|
Description?: string;
|
|
1792
2003
|
/**
|
|
2004
|
+
* @public
|
|
1793
2005
|
* <p>Dimension for which the licenses are counted.</p>
|
|
1794
2006
|
*/
|
|
1795
2007
|
LicenseCountingType?: LicenseCountingType | string;
|
|
1796
2008
|
/**
|
|
2009
|
+
* @public
|
|
1797
2010
|
* <p>License rules.</p>
|
|
1798
2011
|
*/
|
|
1799
2012
|
LicenseRules?: string[];
|
|
1800
2013
|
/**
|
|
2014
|
+
* @public
|
|
1801
2015
|
* <p>Number of available licenses.</p>
|
|
1802
2016
|
*/
|
|
1803
2017
|
LicenseCount?: number;
|
|
1804
2018
|
/**
|
|
2019
|
+
* @public
|
|
1805
2020
|
* <p>Sets the number of available licenses as a hard limit.</p>
|
|
1806
2021
|
*/
|
|
1807
2022
|
LicenseCountHardLimit?: boolean;
|
|
1808
2023
|
/**
|
|
2024
|
+
* @public
|
|
1809
2025
|
* <p>Number of licenses assigned to resources.</p>
|
|
1810
2026
|
*/
|
|
1811
2027
|
ConsumedLicenses?: number;
|
|
1812
2028
|
/**
|
|
2029
|
+
* @public
|
|
1813
2030
|
* <p>License configuration status.</p>
|
|
1814
2031
|
*/
|
|
1815
2032
|
Status?: string;
|
|
1816
2033
|
/**
|
|
2034
|
+
* @public
|
|
1817
2035
|
* <p>Account ID of the owner of the license configuration.</p>
|
|
1818
2036
|
*/
|
|
1819
2037
|
OwnerAccountId?: string;
|
|
1820
2038
|
/**
|
|
2039
|
+
* @public
|
|
1821
2040
|
* <p>Summaries of the licenses consumed by resources.</p>
|
|
1822
2041
|
*/
|
|
1823
2042
|
ConsumedLicenseSummaryList?: ConsumedLicenseSummary[];
|
|
1824
2043
|
/**
|
|
2044
|
+
* @public
|
|
1825
2045
|
* <p>Summaries of the managed resources.</p>
|
|
1826
2046
|
*/
|
|
1827
2047
|
ManagedResourceSummaryList?: ManagedResourceSummary[];
|
|
1828
2048
|
/**
|
|
2049
|
+
* @public
|
|
1829
2050
|
* <p>Tags for the license configuration.</p>
|
|
1830
2051
|
*/
|
|
1831
2052
|
Tags?: Tag[];
|
|
1832
2053
|
/**
|
|
2054
|
+
* @public
|
|
1833
2055
|
* <p>Product information.</p>
|
|
1834
2056
|
*/
|
|
1835
2057
|
ProductInformationList?: ProductInformation[];
|
|
1836
2058
|
/**
|
|
2059
|
+
* @public
|
|
1837
2060
|
* <p>Automated discovery information.</p>
|
|
1838
2061
|
*/
|
|
1839
2062
|
AutomatedDiscoveryInformation?: AutomatedDiscoveryInformation;
|
|
1840
2063
|
/**
|
|
2064
|
+
* @public
|
|
1841
2065
|
* <p>When true, disassociates a resource when software is uninstalled.</p>
|
|
1842
2066
|
*/
|
|
1843
2067
|
DisassociateWhenNotFound?: boolean;
|
|
@@ -1847,6 +2071,7 @@ export interface GetLicenseConfigurationResponse {
|
|
|
1847
2071
|
*/
|
|
1848
2072
|
export interface GetLicenseConversionTaskRequest {
|
|
1849
2073
|
/**
|
|
2074
|
+
* @public
|
|
1850
2075
|
* <p>ID of the license type conversion task to retrieve information on.</p>
|
|
1851
2076
|
*/
|
|
1852
2077
|
LicenseConversionTaskId: string | undefined;
|
|
@@ -1869,38 +2094,47 @@ export type LicenseConversionTaskStatus = (typeof LicenseConversionTaskStatus)[k
|
|
|
1869
2094
|
*/
|
|
1870
2095
|
export interface GetLicenseConversionTaskResponse {
|
|
1871
2096
|
/**
|
|
2097
|
+
* @public
|
|
1872
2098
|
* <p>ID of the license type conversion task.</p>
|
|
1873
2099
|
*/
|
|
1874
2100
|
LicenseConversionTaskId?: string;
|
|
1875
2101
|
/**
|
|
2102
|
+
* @public
|
|
1876
2103
|
* <p>Amazon Resource Names (ARN) of the resources the license conversion task is associated with.</p>
|
|
1877
2104
|
*/
|
|
1878
2105
|
ResourceArn?: string;
|
|
1879
2106
|
/**
|
|
2107
|
+
* @public
|
|
1880
2108
|
* <p>Information about the license type converted from.</p>
|
|
1881
2109
|
*/
|
|
1882
2110
|
SourceLicenseContext?: LicenseConversionContext;
|
|
1883
2111
|
/**
|
|
2112
|
+
* @public
|
|
1884
2113
|
* <p>Information about the license type converted to.</p>
|
|
1885
2114
|
*/
|
|
1886
2115
|
DestinationLicenseContext?: LicenseConversionContext;
|
|
1887
2116
|
/**
|
|
2117
|
+
* @public
|
|
1888
2118
|
* <p>The status message for the conversion task.</p>
|
|
1889
2119
|
*/
|
|
1890
2120
|
StatusMessage?: string;
|
|
1891
2121
|
/**
|
|
2122
|
+
* @public
|
|
1892
2123
|
* <p>Status of the license type conversion task.</p>
|
|
1893
2124
|
*/
|
|
1894
2125
|
Status?: LicenseConversionTaskStatus | string;
|
|
1895
2126
|
/**
|
|
2127
|
+
* @public
|
|
1896
2128
|
* <p>Time at which the license type conversion task was started .</p>
|
|
1897
2129
|
*/
|
|
1898
2130
|
StartTime?: Date;
|
|
1899
2131
|
/**
|
|
2132
|
+
* @public
|
|
1900
2133
|
* <p>Amount of time to complete the license type conversion.</p>
|
|
1901
2134
|
*/
|
|
1902
2135
|
LicenseConversionTime?: Date;
|
|
1903
2136
|
/**
|
|
2137
|
+
* @public
|
|
1904
2138
|
* <p>Time at which the license type conversion task was completed.</p>
|
|
1905
2139
|
*/
|
|
1906
2140
|
EndTime?: Date;
|
|
@@ -1910,6 +2144,7 @@ export interface GetLicenseConversionTaskResponse {
|
|
|
1910
2144
|
*/
|
|
1911
2145
|
export interface GetLicenseManagerReportGeneratorRequest {
|
|
1912
2146
|
/**
|
|
2147
|
+
* @public
|
|
1913
2148
|
* <p>Amazon Resource Name (ARN) of the report generator.</p>
|
|
1914
2149
|
*/
|
|
1915
2150
|
LicenseManagerReportGeneratorArn: string | undefined;
|
|
@@ -1920,10 +2155,12 @@ export interface GetLicenseManagerReportGeneratorRequest {
|
|
|
1920
2155
|
*/
|
|
1921
2156
|
export interface S3Location {
|
|
1922
2157
|
/**
|
|
2158
|
+
* @public
|
|
1923
2159
|
* <p>Name of the S3 bucket reports are published to.</p>
|
|
1924
2160
|
*/
|
|
1925
2161
|
bucket?: string;
|
|
1926
2162
|
/**
|
|
2163
|
+
* @public
|
|
1927
2164
|
* <p>Prefix of the S3 bucket reports are published to.</p>
|
|
1928
2165
|
*/
|
|
1929
2166
|
keyPrefix?: string;
|
|
@@ -1934,54 +2171,67 @@ export interface S3Location {
|
|
|
1934
2171
|
*/
|
|
1935
2172
|
export interface ReportGenerator {
|
|
1936
2173
|
/**
|
|
2174
|
+
* @public
|
|
1937
2175
|
* <p>Name of the report generator.</p>
|
|
1938
2176
|
*/
|
|
1939
2177
|
ReportGeneratorName?: string;
|
|
1940
2178
|
/**
|
|
2179
|
+
* @public
|
|
1941
2180
|
* <p>Type of reports that are generated.</p>
|
|
1942
2181
|
*/
|
|
1943
2182
|
ReportType?: (ReportType | string)[];
|
|
1944
2183
|
/**
|
|
2184
|
+
* @public
|
|
1945
2185
|
* <p>License configuration type for this generator.</p>
|
|
1946
2186
|
*/
|
|
1947
2187
|
ReportContext?: ReportContext;
|
|
1948
2188
|
/**
|
|
2189
|
+
* @public
|
|
1949
2190
|
* <p>Details about how frequently reports are generated.</p>
|
|
1950
2191
|
*/
|
|
1951
2192
|
ReportFrequency?: ReportFrequency;
|
|
1952
2193
|
/**
|
|
2194
|
+
* @public
|
|
1953
2195
|
* <p>Amazon Resource Name (ARN) of the report generator.</p>
|
|
1954
2196
|
*/
|
|
1955
2197
|
LicenseManagerReportGeneratorArn?: string;
|
|
1956
2198
|
/**
|
|
2199
|
+
* @public
|
|
1957
2200
|
* <p>Status of the last report generation attempt.</p>
|
|
1958
2201
|
*/
|
|
1959
2202
|
LastRunStatus?: string;
|
|
1960
2203
|
/**
|
|
2204
|
+
* @public
|
|
1961
2205
|
* <p>Failure message for the last report generation attempt.</p>
|
|
1962
2206
|
*/
|
|
1963
2207
|
LastRunFailureReason?: string;
|
|
1964
2208
|
/**
|
|
2209
|
+
* @public
|
|
1965
2210
|
* <p>Time the last report was generated at.</p>
|
|
1966
2211
|
*/
|
|
1967
2212
|
LastReportGenerationTime?: string;
|
|
1968
2213
|
/**
|
|
2214
|
+
* @public
|
|
1969
2215
|
* <p>The Amazon Web Services account ID used to create the report generator.</p>
|
|
1970
2216
|
*/
|
|
1971
2217
|
ReportCreatorAccount?: string;
|
|
1972
2218
|
/**
|
|
2219
|
+
* @public
|
|
1973
2220
|
* <p>Description of the report generator.</p>
|
|
1974
2221
|
*/
|
|
1975
2222
|
Description?: string;
|
|
1976
2223
|
/**
|
|
2224
|
+
* @public
|
|
1977
2225
|
* <p>Details of the S3 bucket that report generator reports are published to.</p>
|
|
1978
2226
|
*/
|
|
1979
2227
|
S3Location?: S3Location;
|
|
1980
2228
|
/**
|
|
2229
|
+
* @public
|
|
1981
2230
|
* <p>Time the report was created.</p>
|
|
1982
2231
|
*/
|
|
1983
2232
|
CreateTime?: string;
|
|
1984
2233
|
/**
|
|
2234
|
+
* @public
|
|
1985
2235
|
* <p>Tags associated with the report generator.</p>
|
|
1986
2236
|
*/
|
|
1987
2237
|
Tags?: Tag[];
|
|
@@ -1991,6 +2241,7 @@ export interface ReportGenerator {
|
|
|
1991
2241
|
*/
|
|
1992
2242
|
export interface GetLicenseManagerReportGeneratorResponse {
|
|
1993
2243
|
/**
|
|
2244
|
+
* @public
|
|
1994
2245
|
* <p>A report generator that creates periodic reports about your license configurations.</p>
|
|
1995
2246
|
*/
|
|
1996
2247
|
ReportGenerator?: ReportGenerator;
|
|
@@ -2000,6 +2251,7 @@ export interface GetLicenseManagerReportGeneratorResponse {
|
|
|
2000
2251
|
*/
|
|
2001
2252
|
export interface GetLicenseUsageRequest {
|
|
2002
2253
|
/**
|
|
2254
|
+
* @public
|
|
2003
2255
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
2004
2256
|
*/
|
|
2005
2257
|
LicenseArn: string | undefined;
|
|
@@ -2010,18 +2262,22 @@ export interface GetLicenseUsageRequest {
|
|
|
2010
2262
|
*/
|
|
2011
2263
|
export interface EntitlementUsage {
|
|
2012
2264
|
/**
|
|
2265
|
+
* @public
|
|
2013
2266
|
* <p>Entitlement usage name.</p>
|
|
2014
2267
|
*/
|
|
2015
2268
|
Name: string | undefined;
|
|
2016
2269
|
/**
|
|
2270
|
+
* @public
|
|
2017
2271
|
* <p>Resource usage consumed.</p>
|
|
2018
2272
|
*/
|
|
2019
2273
|
ConsumedValue: string | undefined;
|
|
2020
2274
|
/**
|
|
2275
|
+
* @public
|
|
2021
2276
|
* <p>Maximum entitlement usage count.</p>
|
|
2022
2277
|
*/
|
|
2023
2278
|
MaxCount?: string;
|
|
2024
2279
|
/**
|
|
2280
|
+
* @public
|
|
2025
2281
|
* <p>Entitlement usage unit.</p>
|
|
2026
2282
|
*/
|
|
2027
2283
|
Unit: EntitlementDataUnit | string | undefined;
|
|
@@ -2032,6 +2288,7 @@ export interface EntitlementUsage {
|
|
|
2032
2288
|
*/
|
|
2033
2289
|
export interface LicenseUsage {
|
|
2034
2290
|
/**
|
|
2291
|
+
* @public
|
|
2035
2292
|
* <p>License entitlement usages.</p>
|
|
2036
2293
|
*/
|
|
2037
2294
|
EntitlementUsages?: EntitlementUsage[];
|
|
@@ -2041,6 +2298,7 @@ export interface LicenseUsage {
|
|
|
2041
2298
|
*/
|
|
2042
2299
|
export interface GetLicenseUsageResponse {
|
|
2043
2300
|
/**
|
|
2301
|
+
* @public
|
|
2044
2302
|
* <p>License usage details.</p>
|
|
2045
2303
|
*/
|
|
2046
2304
|
LicenseUsage?: LicenseUsage;
|
|
@@ -2056,6 +2314,7 @@ export interface GetServiceSettingsRequest {
|
|
|
2056
2314
|
*/
|
|
2057
2315
|
export interface OrganizationConfiguration {
|
|
2058
2316
|
/**
|
|
2317
|
+
* @public
|
|
2059
2318
|
* <p>Enables Organizations integration.</p>
|
|
2060
2319
|
*/
|
|
2061
2320
|
EnableIntegration: boolean | undefined;
|
|
@@ -2065,24 +2324,29 @@ export interface OrganizationConfiguration {
|
|
|
2065
2324
|
*/
|
|
2066
2325
|
export interface GetServiceSettingsResponse {
|
|
2067
2326
|
/**
|
|
2327
|
+
* @public
|
|
2068
2328
|
* <p>Regional S3 bucket path for storing reports, license trail event data, discovery data,
|
|
2069
2329
|
* and so on.</p>
|
|
2070
2330
|
*/
|
|
2071
2331
|
S3BucketArn?: string;
|
|
2072
2332
|
/**
|
|
2333
|
+
* @public
|
|
2073
2334
|
* <p>SNS topic configured to receive notifications from License Manager.</p>
|
|
2074
2335
|
*/
|
|
2075
2336
|
SnsTopicArn?: string;
|
|
2076
2337
|
/**
|
|
2338
|
+
* @public
|
|
2077
2339
|
* <p>Indicates whether Organizations is integrated with License Manager for
|
|
2078
2340
|
* cross-account discovery.</p>
|
|
2079
2341
|
*/
|
|
2080
2342
|
OrganizationConfiguration?: OrganizationConfiguration;
|
|
2081
2343
|
/**
|
|
2344
|
+
* @public
|
|
2082
2345
|
* <p>Indicates whether cross-account discovery is enabled.</p>
|
|
2083
2346
|
*/
|
|
2084
2347
|
EnableCrossAccountsDiscovery?: boolean;
|
|
2085
2348
|
/**
|
|
2349
|
+
* @public
|
|
2086
2350
|
* <p>Amazon Resource Name (ARN) of the resource share. The License Manager management account
|
|
2087
2351
|
* provides member accounts with access to this share.</p>
|
|
2088
2352
|
*/
|
|
@@ -2106,14 +2370,17 @@ export declare class FilterLimitExceededException extends __BaseException {
|
|
|
2106
2370
|
*/
|
|
2107
2371
|
export interface ListAssociationsForLicenseConfigurationRequest {
|
|
2108
2372
|
/**
|
|
2373
|
+
* @public
|
|
2109
2374
|
* <p>Amazon Resource Name (ARN) of a license configuration.</p>
|
|
2110
2375
|
*/
|
|
2111
2376
|
LicenseConfigurationArn: string | undefined;
|
|
2112
2377
|
/**
|
|
2378
|
+
* @public
|
|
2113
2379
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2114
2380
|
*/
|
|
2115
2381
|
MaxResults?: number;
|
|
2116
2382
|
/**
|
|
2383
|
+
* @public
|
|
2117
2384
|
* <p>Token for the next set of results.</p>
|
|
2118
2385
|
*/
|
|
2119
2386
|
NextToken?: string;
|
|
@@ -2124,22 +2391,27 @@ export interface ListAssociationsForLicenseConfigurationRequest {
|
|
|
2124
2391
|
*/
|
|
2125
2392
|
export interface LicenseConfigurationAssociation {
|
|
2126
2393
|
/**
|
|
2394
|
+
* @public
|
|
2127
2395
|
* <p>Amazon Resource Name (ARN) of the resource.</p>
|
|
2128
2396
|
*/
|
|
2129
2397
|
ResourceArn?: string;
|
|
2130
2398
|
/**
|
|
2399
|
+
* @public
|
|
2131
2400
|
* <p>Type of server resource.</p>
|
|
2132
2401
|
*/
|
|
2133
2402
|
ResourceType?: ResourceType | string;
|
|
2134
2403
|
/**
|
|
2404
|
+
* @public
|
|
2135
2405
|
* <p>ID of the Amazon Web Services account that owns the resource consuming licenses.</p>
|
|
2136
2406
|
*/
|
|
2137
2407
|
ResourceOwnerId?: string;
|
|
2138
2408
|
/**
|
|
2409
|
+
* @public
|
|
2139
2410
|
* <p>Time when the license configuration was associated with the resource.</p>
|
|
2140
2411
|
*/
|
|
2141
2412
|
AssociationTime?: Date;
|
|
2142
2413
|
/**
|
|
2414
|
+
* @public
|
|
2143
2415
|
* <p>Scope of AMI associations. The possible value is <code>cross-account</code>.</p>
|
|
2144
2416
|
*/
|
|
2145
2417
|
AmiAssociationScope?: string;
|
|
@@ -2149,10 +2421,12 @@ export interface LicenseConfigurationAssociation {
|
|
|
2149
2421
|
*/
|
|
2150
2422
|
export interface ListAssociationsForLicenseConfigurationResponse {
|
|
2151
2423
|
/**
|
|
2424
|
+
* @public
|
|
2152
2425
|
* <p>Information about the associations for the license configuration.</p>
|
|
2153
2426
|
*/
|
|
2154
2427
|
LicenseConfigurationAssociations?: LicenseConfigurationAssociation[];
|
|
2155
2428
|
/**
|
|
2429
|
+
* @public
|
|
2156
2430
|
* <p>Token for the next set of results.</p>
|
|
2157
2431
|
*/
|
|
2158
2432
|
NextToken?: string;
|
|
@@ -2165,10 +2439,12 @@ export interface ListAssociationsForLicenseConfigurationResponse {
|
|
|
2165
2439
|
*/
|
|
2166
2440
|
export interface Filter {
|
|
2167
2441
|
/**
|
|
2442
|
+
* @public
|
|
2168
2443
|
* <p>Name of the filter. Filter names are case-sensitive.</p>
|
|
2169
2444
|
*/
|
|
2170
2445
|
Name?: string;
|
|
2171
2446
|
/**
|
|
2447
|
+
* @public
|
|
2172
2448
|
* <p>The value of the filter, which is case-sensitive. You can only specify one value for the filter.</p>
|
|
2173
2449
|
*/
|
|
2174
2450
|
Values?: string[];
|
|
@@ -2178,10 +2454,12 @@ export interface Filter {
|
|
|
2178
2454
|
*/
|
|
2179
2455
|
export interface ListDistributedGrantsRequest {
|
|
2180
2456
|
/**
|
|
2457
|
+
* @public
|
|
2181
2458
|
* <p>Amazon Resource Names (ARNs) of the grants.</p>
|
|
2182
2459
|
*/
|
|
2183
2460
|
GrantArns?: string[];
|
|
2184
2461
|
/**
|
|
2462
|
+
* @public
|
|
2185
2463
|
* <p>Filters to scope the results. The following filters are supported:</p>
|
|
2186
2464
|
* <ul>
|
|
2187
2465
|
* <li>
|
|
@@ -2213,10 +2491,12 @@ export interface ListDistributedGrantsRequest {
|
|
|
2213
2491
|
*/
|
|
2214
2492
|
Filters?: Filter[];
|
|
2215
2493
|
/**
|
|
2494
|
+
* @public
|
|
2216
2495
|
* <p>Token for the next set of results.</p>
|
|
2217
2496
|
*/
|
|
2218
2497
|
NextToken?: string;
|
|
2219
2498
|
/**
|
|
2499
|
+
* @public
|
|
2220
2500
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2221
2501
|
*/
|
|
2222
2502
|
MaxResults?: number;
|
|
@@ -2226,10 +2506,12 @@ export interface ListDistributedGrantsRequest {
|
|
|
2226
2506
|
*/
|
|
2227
2507
|
export interface ListDistributedGrantsResponse {
|
|
2228
2508
|
/**
|
|
2509
|
+
* @public
|
|
2229
2510
|
* <p>Distributed grant details.</p>
|
|
2230
2511
|
*/
|
|
2231
2512
|
Grants?: Grant[];
|
|
2232
2513
|
/**
|
|
2514
|
+
* @public
|
|
2233
2515
|
* <p>Token for the next set of results.</p>
|
|
2234
2516
|
*/
|
|
2235
2517
|
NextToken?: string;
|
|
@@ -2239,14 +2521,17 @@ export interface ListDistributedGrantsResponse {
|
|
|
2239
2521
|
*/
|
|
2240
2522
|
export interface ListFailuresForLicenseConfigurationOperationsRequest {
|
|
2241
2523
|
/**
|
|
2524
|
+
* @public
|
|
2242
2525
|
* <p>Amazon Resource Name of the license configuration.</p>
|
|
2243
2526
|
*/
|
|
2244
2527
|
LicenseConfigurationArn: string | undefined;
|
|
2245
2528
|
/**
|
|
2529
|
+
* @public
|
|
2246
2530
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2247
2531
|
*/
|
|
2248
2532
|
MaxResults?: number;
|
|
2249
2533
|
/**
|
|
2534
|
+
* @public
|
|
2250
2535
|
* <p>Token for the next set of results.</p>
|
|
2251
2536
|
*/
|
|
2252
2537
|
NextToken?: string;
|
|
@@ -2257,34 +2542,42 @@ export interface ListFailuresForLicenseConfigurationOperationsRequest {
|
|
|
2257
2542
|
*/
|
|
2258
2543
|
export interface LicenseOperationFailure {
|
|
2259
2544
|
/**
|
|
2545
|
+
* @public
|
|
2260
2546
|
* <p>Amazon Resource Name (ARN) of the resource.</p>
|
|
2261
2547
|
*/
|
|
2262
2548
|
ResourceArn?: string;
|
|
2263
2549
|
/**
|
|
2550
|
+
* @public
|
|
2264
2551
|
* <p>Resource type.</p>
|
|
2265
2552
|
*/
|
|
2266
2553
|
ResourceType?: ResourceType | string;
|
|
2267
2554
|
/**
|
|
2555
|
+
* @public
|
|
2268
2556
|
* <p>Error message.</p>
|
|
2269
2557
|
*/
|
|
2270
2558
|
ErrorMessage?: string;
|
|
2271
2559
|
/**
|
|
2560
|
+
* @public
|
|
2272
2561
|
* <p>Failure time.</p>
|
|
2273
2562
|
*/
|
|
2274
2563
|
FailureTime?: Date;
|
|
2275
2564
|
/**
|
|
2565
|
+
* @public
|
|
2276
2566
|
* <p>Name of the operation.</p>
|
|
2277
2567
|
*/
|
|
2278
2568
|
OperationName?: string;
|
|
2279
2569
|
/**
|
|
2570
|
+
* @public
|
|
2280
2571
|
* <p>ID of the Amazon Web Services account that owns the resource.</p>
|
|
2281
2572
|
*/
|
|
2282
2573
|
ResourceOwnerId?: string;
|
|
2283
2574
|
/**
|
|
2575
|
+
* @public
|
|
2284
2576
|
* <p>The requester is "License Manager Automated Discovery".</p>
|
|
2285
2577
|
*/
|
|
2286
2578
|
OperationRequestedBy?: string;
|
|
2287
2579
|
/**
|
|
2580
|
+
* @public
|
|
2288
2581
|
* <p>Reserved.</p>
|
|
2289
2582
|
*/
|
|
2290
2583
|
MetadataList?: Metadata[];
|
|
@@ -2294,10 +2587,12 @@ export interface LicenseOperationFailure {
|
|
|
2294
2587
|
*/
|
|
2295
2588
|
export interface ListFailuresForLicenseConfigurationOperationsResponse {
|
|
2296
2589
|
/**
|
|
2590
|
+
* @public
|
|
2297
2591
|
* <p>License configuration operations that failed.</p>
|
|
2298
2592
|
*/
|
|
2299
2593
|
LicenseOperationFailureList?: LicenseOperationFailure[];
|
|
2300
2594
|
/**
|
|
2595
|
+
* @public
|
|
2301
2596
|
* <p>Token for the next set of results.</p>
|
|
2302
2597
|
*/
|
|
2303
2598
|
NextToken?: string;
|
|
@@ -2307,18 +2602,22 @@ export interface ListFailuresForLicenseConfigurationOperationsResponse {
|
|
|
2307
2602
|
*/
|
|
2308
2603
|
export interface ListLicenseConfigurationsRequest {
|
|
2309
2604
|
/**
|
|
2605
|
+
* @public
|
|
2310
2606
|
* <p>Amazon Resource Names (ARN) of the license configurations.</p>
|
|
2311
2607
|
*/
|
|
2312
2608
|
LicenseConfigurationArns?: string[];
|
|
2313
2609
|
/**
|
|
2610
|
+
* @public
|
|
2314
2611
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2315
2612
|
*/
|
|
2316
2613
|
MaxResults?: number;
|
|
2317
2614
|
/**
|
|
2615
|
+
* @public
|
|
2318
2616
|
* <p>Token for the next set of results.</p>
|
|
2319
2617
|
*/
|
|
2320
2618
|
NextToken?: string;
|
|
2321
2619
|
/**
|
|
2620
|
+
* @public
|
|
2322
2621
|
* <p>Filters to scope the results. The following filters and logical operators
|
|
2323
2622
|
* are supported:</p>
|
|
2324
2623
|
* <ul>
|
|
@@ -2352,66 +2651,82 @@ export interface ListLicenseConfigurationsRequest {
|
|
|
2352
2651
|
*/
|
|
2353
2652
|
export interface LicenseConfiguration {
|
|
2354
2653
|
/**
|
|
2654
|
+
* @public
|
|
2355
2655
|
* <p>Unique ID of the license configuration.</p>
|
|
2356
2656
|
*/
|
|
2357
2657
|
LicenseConfigurationId?: string;
|
|
2358
2658
|
/**
|
|
2659
|
+
* @public
|
|
2359
2660
|
* <p>Amazon Resource Name (ARN) of the license configuration.</p>
|
|
2360
2661
|
*/
|
|
2361
2662
|
LicenseConfigurationArn?: string;
|
|
2362
2663
|
/**
|
|
2664
|
+
* @public
|
|
2363
2665
|
* <p>Name of the license configuration.</p>
|
|
2364
2666
|
*/
|
|
2365
2667
|
Name?: string;
|
|
2366
2668
|
/**
|
|
2669
|
+
* @public
|
|
2367
2670
|
* <p>Description of the license configuration.</p>
|
|
2368
2671
|
*/
|
|
2369
2672
|
Description?: string;
|
|
2370
2673
|
/**
|
|
2674
|
+
* @public
|
|
2371
2675
|
* <p>Dimension to use to track the license inventory.</p>
|
|
2372
2676
|
*/
|
|
2373
2677
|
LicenseCountingType?: LicenseCountingType | string;
|
|
2374
2678
|
/**
|
|
2679
|
+
* @public
|
|
2375
2680
|
* <p>License rules.</p>
|
|
2376
2681
|
*/
|
|
2377
2682
|
LicenseRules?: string[];
|
|
2378
2683
|
/**
|
|
2684
|
+
* @public
|
|
2379
2685
|
* <p>Number of licenses managed by the license configuration.</p>
|
|
2380
2686
|
*/
|
|
2381
2687
|
LicenseCount?: number;
|
|
2382
2688
|
/**
|
|
2689
|
+
* @public
|
|
2383
2690
|
* <p>Number of available licenses as a hard limit.</p>
|
|
2384
2691
|
*/
|
|
2385
2692
|
LicenseCountHardLimit?: boolean;
|
|
2386
2693
|
/**
|
|
2694
|
+
* @public
|
|
2387
2695
|
* <p>When true, disassociates a resource when software is uninstalled.</p>
|
|
2388
2696
|
*/
|
|
2389
2697
|
DisassociateWhenNotFound?: boolean;
|
|
2390
2698
|
/**
|
|
2699
|
+
* @public
|
|
2391
2700
|
* <p>Number of licenses consumed. </p>
|
|
2392
2701
|
*/
|
|
2393
2702
|
ConsumedLicenses?: number;
|
|
2394
2703
|
/**
|
|
2704
|
+
* @public
|
|
2395
2705
|
* <p>Status of the license configuration.</p>
|
|
2396
2706
|
*/
|
|
2397
2707
|
Status?: string;
|
|
2398
2708
|
/**
|
|
2709
|
+
* @public
|
|
2399
2710
|
* <p>Account ID of the license configuration's owner.</p>
|
|
2400
2711
|
*/
|
|
2401
2712
|
OwnerAccountId?: string;
|
|
2402
2713
|
/**
|
|
2714
|
+
* @public
|
|
2403
2715
|
* <p>Summaries for licenses consumed by various resources.</p>
|
|
2404
2716
|
*/
|
|
2405
2717
|
ConsumedLicenseSummaryList?: ConsumedLicenseSummary[];
|
|
2406
2718
|
/**
|
|
2719
|
+
* @public
|
|
2407
2720
|
* <p>Summaries for managed resources.</p>
|
|
2408
2721
|
*/
|
|
2409
2722
|
ManagedResourceSummaryList?: ManagedResourceSummary[];
|
|
2410
2723
|
/**
|
|
2724
|
+
* @public
|
|
2411
2725
|
* <p>Product information.</p>
|
|
2412
2726
|
*/
|
|
2413
2727
|
ProductInformationList?: ProductInformation[];
|
|
2414
2728
|
/**
|
|
2729
|
+
* @public
|
|
2415
2730
|
* <p>Automated discovery information.</p>
|
|
2416
2731
|
*/
|
|
2417
2732
|
AutomatedDiscoveryInformation?: AutomatedDiscoveryInformation;
|
|
@@ -2421,10 +2736,12 @@ export interface LicenseConfiguration {
|
|
|
2421
2736
|
*/
|
|
2422
2737
|
export interface ListLicenseConfigurationsResponse {
|
|
2423
2738
|
/**
|
|
2739
|
+
* @public
|
|
2424
2740
|
* <p>Information about the license configurations.</p>
|
|
2425
2741
|
*/
|
|
2426
2742
|
LicenseConfigurations?: LicenseConfiguration[];
|
|
2427
2743
|
/**
|
|
2744
|
+
* @public
|
|
2428
2745
|
* <p>Token for the next set of results.</p>
|
|
2429
2746
|
*/
|
|
2430
2747
|
NextToken?: string;
|
|
@@ -2434,14 +2751,17 @@ export interface ListLicenseConfigurationsResponse {
|
|
|
2434
2751
|
*/
|
|
2435
2752
|
export interface ListLicenseConversionTasksRequest {
|
|
2436
2753
|
/**
|
|
2754
|
+
* @public
|
|
2437
2755
|
* <p>Token for the next set of results.</p>
|
|
2438
2756
|
*/
|
|
2439
2757
|
NextToken?: string;
|
|
2440
2758
|
/**
|
|
2759
|
+
* @public
|
|
2441
2760
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2442
2761
|
*/
|
|
2443
2762
|
MaxResults?: number;
|
|
2444
2763
|
/**
|
|
2764
|
+
* @public
|
|
2445
2765
|
* <p>
|
|
2446
2766
|
* Filters to scope the results. Valid filters are <code>ResourceArns</code> and <code>Status</code>.
|
|
2447
2767
|
* </p>
|
|
@@ -2454,39 +2774,48 @@ export interface ListLicenseConversionTasksRequest {
|
|
|
2454
2774
|
*/
|
|
2455
2775
|
export interface LicenseConversionTask {
|
|
2456
2776
|
/**
|
|
2777
|
+
* @public
|
|
2457
2778
|
* <p>The ID of the license type conversion task.</p>
|
|
2458
2779
|
*/
|
|
2459
2780
|
LicenseConversionTaskId?: string;
|
|
2460
2781
|
/**
|
|
2782
|
+
* @public
|
|
2461
2783
|
* <p>The Amazon Resource Name (ARN) of the resource associated with the license type
|
|
2462
2784
|
* conversion task.</p>
|
|
2463
2785
|
*/
|
|
2464
2786
|
ResourceArn?: string;
|
|
2465
2787
|
/**
|
|
2788
|
+
* @public
|
|
2466
2789
|
* <p>Information about the license type this conversion task converted from.</p>
|
|
2467
2790
|
*/
|
|
2468
2791
|
SourceLicenseContext?: LicenseConversionContext;
|
|
2469
2792
|
/**
|
|
2793
|
+
* @public
|
|
2470
2794
|
* <p>Information about the license type this conversion task converted to.</p>
|
|
2471
2795
|
*/
|
|
2472
2796
|
DestinationLicenseContext?: LicenseConversionContext;
|
|
2473
2797
|
/**
|
|
2798
|
+
* @public
|
|
2474
2799
|
* <p>The status of the conversion task.</p>
|
|
2475
2800
|
*/
|
|
2476
2801
|
Status?: LicenseConversionTaskStatus | string;
|
|
2477
2802
|
/**
|
|
2803
|
+
* @public
|
|
2478
2804
|
* <p>The status message for the conversion task.</p>
|
|
2479
2805
|
*/
|
|
2480
2806
|
StatusMessage?: string;
|
|
2481
2807
|
/**
|
|
2808
|
+
* @public
|
|
2482
2809
|
* <p>The time the conversion task was started at.</p>
|
|
2483
2810
|
*/
|
|
2484
2811
|
StartTime?: Date;
|
|
2485
2812
|
/**
|
|
2813
|
+
* @public
|
|
2486
2814
|
* <p>The time the usage operation value of the resource was changed.</p>
|
|
2487
2815
|
*/
|
|
2488
2816
|
LicenseConversionTime?: Date;
|
|
2489
2817
|
/**
|
|
2818
|
+
* @public
|
|
2490
2819
|
* <p>The time the conversion task was completed.</p>
|
|
2491
2820
|
*/
|
|
2492
2821
|
EndTime?: Date;
|
|
@@ -2496,10 +2825,12 @@ export interface LicenseConversionTask {
|
|
|
2496
2825
|
*/
|
|
2497
2826
|
export interface ListLicenseConversionTasksResponse {
|
|
2498
2827
|
/**
|
|
2828
|
+
* @public
|
|
2499
2829
|
* <p>Information about the license configuration tasks for your account.</p>
|
|
2500
2830
|
*/
|
|
2501
2831
|
LicenseConversionTasks?: LicenseConversionTask[];
|
|
2502
2832
|
/**
|
|
2833
|
+
* @public
|
|
2503
2834
|
* <p>Token for the next set of results.</p>
|
|
2504
2835
|
*/
|
|
2505
2836
|
NextToken?: string;
|
|
@@ -2509,6 +2840,7 @@ export interface ListLicenseConversionTasksResponse {
|
|
|
2509
2840
|
*/
|
|
2510
2841
|
export interface ListLicenseManagerReportGeneratorsRequest {
|
|
2511
2842
|
/**
|
|
2843
|
+
* @public
|
|
2512
2844
|
* <p>Filters to scope the results. The following filters are supported: </p>
|
|
2513
2845
|
* <ul>
|
|
2514
2846
|
* <li>
|
|
@@ -2520,10 +2852,12 @@ export interface ListLicenseManagerReportGeneratorsRequest {
|
|
|
2520
2852
|
*/
|
|
2521
2853
|
Filters?: Filter[];
|
|
2522
2854
|
/**
|
|
2855
|
+
* @public
|
|
2523
2856
|
* <p>Token for the next set of results.</p>
|
|
2524
2857
|
*/
|
|
2525
2858
|
NextToken?: string;
|
|
2526
2859
|
/**
|
|
2860
|
+
* @public
|
|
2527
2861
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2528
2862
|
*/
|
|
2529
2863
|
MaxResults?: number;
|
|
@@ -2533,10 +2867,12 @@ export interface ListLicenseManagerReportGeneratorsRequest {
|
|
|
2533
2867
|
*/
|
|
2534
2868
|
export interface ListLicenseManagerReportGeneratorsResponse {
|
|
2535
2869
|
/**
|
|
2870
|
+
* @public
|
|
2536
2871
|
* <p>A report generator that creates periodic reports about your license configurations.</p>
|
|
2537
2872
|
*/
|
|
2538
2873
|
ReportGenerators?: ReportGenerator[];
|
|
2539
2874
|
/**
|
|
2875
|
+
* @public
|
|
2540
2876
|
* <p>Token for the next set of results.</p>
|
|
2541
2877
|
*/
|
|
2542
2878
|
NextToken?: string;
|
|
@@ -2546,10 +2882,12 @@ export interface ListLicenseManagerReportGeneratorsResponse {
|
|
|
2546
2882
|
*/
|
|
2547
2883
|
export interface ListLicensesRequest {
|
|
2548
2884
|
/**
|
|
2885
|
+
* @public
|
|
2549
2886
|
* <p>Amazon Resource Names (ARNs) of the licenses.</p>
|
|
2550
2887
|
*/
|
|
2551
2888
|
LicenseArns?: string[];
|
|
2552
2889
|
/**
|
|
2890
|
+
* @public
|
|
2553
2891
|
* <p>Filters to scope the results. The following filters are supported:</p>
|
|
2554
2892
|
* <ul>
|
|
2555
2893
|
* <li>
|
|
@@ -2576,10 +2914,12 @@ export interface ListLicensesRequest {
|
|
|
2576
2914
|
*/
|
|
2577
2915
|
Filters?: Filter[];
|
|
2578
2916
|
/**
|
|
2917
|
+
* @public
|
|
2579
2918
|
* <p>Token for the next set of results.</p>
|
|
2580
2919
|
*/
|
|
2581
2920
|
NextToken?: string;
|
|
2582
2921
|
/**
|
|
2922
|
+
* @public
|
|
2583
2923
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2584
2924
|
*/
|
|
2585
2925
|
MaxResults?: number;
|
|
@@ -2589,10 +2929,12 @@ export interface ListLicensesRequest {
|
|
|
2589
2929
|
*/
|
|
2590
2930
|
export interface ListLicensesResponse {
|
|
2591
2931
|
/**
|
|
2932
|
+
* @public
|
|
2592
2933
|
* <p>License details.</p>
|
|
2593
2934
|
*/
|
|
2594
2935
|
Licenses?: License[];
|
|
2595
2936
|
/**
|
|
2937
|
+
* @public
|
|
2596
2938
|
* <p>Token for the next set of results.</p>
|
|
2597
2939
|
*/
|
|
2598
2940
|
NextToken?: string;
|
|
@@ -2602,14 +2944,17 @@ export interface ListLicensesResponse {
|
|
|
2602
2944
|
*/
|
|
2603
2945
|
export interface ListLicenseSpecificationsForResourceRequest {
|
|
2604
2946
|
/**
|
|
2947
|
+
* @public
|
|
2605
2948
|
* <p>Amazon Resource Name (ARN) of a resource that has an associated license configuration.</p>
|
|
2606
2949
|
*/
|
|
2607
2950
|
ResourceArn: string | undefined;
|
|
2608
2951
|
/**
|
|
2952
|
+
* @public
|
|
2609
2953
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2610
2954
|
*/
|
|
2611
2955
|
MaxResults?: number;
|
|
2612
2956
|
/**
|
|
2957
|
+
* @public
|
|
2613
2958
|
* <p>Token for the next set of results.</p>
|
|
2614
2959
|
*/
|
|
2615
2960
|
NextToken?: string;
|
|
@@ -2620,10 +2965,12 @@ export interface ListLicenseSpecificationsForResourceRequest {
|
|
|
2620
2965
|
*/
|
|
2621
2966
|
export interface LicenseSpecification {
|
|
2622
2967
|
/**
|
|
2968
|
+
* @public
|
|
2623
2969
|
* <p>Amazon Resource Name (ARN) of the license configuration.</p>
|
|
2624
2970
|
*/
|
|
2625
2971
|
LicenseConfigurationArn: string | undefined;
|
|
2626
2972
|
/**
|
|
2973
|
+
* @public
|
|
2627
2974
|
* <p>Scope of AMI associations. The possible value is <code>cross-account</code>.</p>
|
|
2628
2975
|
*/
|
|
2629
2976
|
AmiAssociationScope?: string;
|
|
@@ -2633,10 +2980,12 @@ export interface LicenseSpecification {
|
|
|
2633
2980
|
*/
|
|
2634
2981
|
export interface ListLicenseSpecificationsForResourceResponse {
|
|
2635
2982
|
/**
|
|
2983
|
+
* @public
|
|
2636
2984
|
* <p>License configurations associated with a resource.</p>
|
|
2637
2985
|
*/
|
|
2638
2986
|
LicenseSpecifications?: LicenseSpecification[];
|
|
2639
2987
|
/**
|
|
2988
|
+
* @public
|
|
2640
2989
|
* <p>Token for the next set of results.</p>
|
|
2641
2990
|
*/
|
|
2642
2991
|
NextToken?: string;
|
|
@@ -2646,14 +2995,17 @@ export interface ListLicenseSpecificationsForResourceResponse {
|
|
|
2646
2995
|
*/
|
|
2647
2996
|
export interface ListLicenseVersionsRequest {
|
|
2648
2997
|
/**
|
|
2998
|
+
* @public
|
|
2649
2999
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
2650
3000
|
*/
|
|
2651
3001
|
LicenseArn: string | undefined;
|
|
2652
3002
|
/**
|
|
3003
|
+
* @public
|
|
2653
3004
|
* <p>Token for the next set of results.</p>
|
|
2654
3005
|
*/
|
|
2655
3006
|
NextToken?: string;
|
|
2656
3007
|
/**
|
|
3008
|
+
* @public
|
|
2657
3009
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2658
3010
|
*/
|
|
2659
3011
|
MaxResults?: number;
|
|
@@ -2663,10 +3015,12 @@ export interface ListLicenseVersionsRequest {
|
|
|
2663
3015
|
*/
|
|
2664
3016
|
export interface ListLicenseVersionsResponse {
|
|
2665
3017
|
/**
|
|
3018
|
+
* @public
|
|
2666
3019
|
* <p>License details.</p>
|
|
2667
3020
|
*/
|
|
2668
3021
|
Licenses?: License[];
|
|
2669
3022
|
/**
|
|
3023
|
+
* @public
|
|
2670
3024
|
* <p>Token for the next set of results.</p>
|
|
2671
3025
|
*/
|
|
2672
3026
|
NextToken?: string;
|
|
@@ -2676,10 +3030,12 @@ export interface ListLicenseVersionsResponse {
|
|
|
2676
3030
|
*/
|
|
2677
3031
|
export interface ListReceivedGrantsRequest {
|
|
2678
3032
|
/**
|
|
3033
|
+
* @public
|
|
2679
3034
|
* <p>Amazon Resource Names (ARNs) of the grants.</p>
|
|
2680
3035
|
*/
|
|
2681
3036
|
GrantArns?: string[];
|
|
2682
3037
|
/**
|
|
3038
|
+
* @public
|
|
2683
3039
|
* <p>Filters to scope the results. The following filters are supported:</p>
|
|
2684
3040
|
* <ul>
|
|
2685
3041
|
* <li>
|
|
@@ -2711,10 +3067,12 @@ export interface ListReceivedGrantsRequest {
|
|
|
2711
3067
|
*/
|
|
2712
3068
|
Filters?: Filter[];
|
|
2713
3069
|
/**
|
|
3070
|
+
* @public
|
|
2714
3071
|
* <p>Token for the next set of results.</p>
|
|
2715
3072
|
*/
|
|
2716
3073
|
NextToken?: string;
|
|
2717
3074
|
/**
|
|
3075
|
+
* @public
|
|
2718
3076
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2719
3077
|
*/
|
|
2720
3078
|
MaxResults?: number;
|
|
@@ -2724,10 +3082,12 @@ export interface ListReceivedGrantsRequest {
|
|
|
2724
3082
|
*/
|
|
2725
3083
|
export interface ListReceivedGrantsResponse {
|
|
2726
3084
|
/**
|
|
3085
|
+
* @public
|
|
2727
3086
|
* <p>Received grant details.</p>
|
|
2728
3087
|
*/
|
|
2729
3088
|
Grants?: Grant[];
|
|
2730
3089
|
/**
|
|
3090
|
+
* @public
|
|
2731
3091
|
* <p>Token for the next set of results.</p>
|
|
2732
3092
|
*/
|
|
2733
3093
|
NextToken?: string;
|
|
@@ -2737,10 +3097,12 @@ export interface ListReceivedGrantsResponse {
|
|
|
2737
3097
|
*/
|
|
2738
3098
|
export interface ListReceivedGrantsForOrganizationRequest {
|
|
2739
3099
|
/**
|
|
3100
|
+
* @public
|
|
2740
3101
|
* <p>The Amazon Resource Name (ARN) of the received license.</p>
|
|
2741
3102
|
*/
|
|
2742
3103
|
LicenseArn: string | undefined;
|
|
2743
3104
|
/**
|
|
3105
|
+
* @public
|
|
2744
3106
|
* <p>Filters to scope the results. The following filters are supported:</p>
|
|
2745
3107
|
* <ul>
|
|
2746
3108
|
* <li>
|
|
@@ -2757,10 +3119,12 @@ export interface ListReceivedGrantsForOrganizationRequest {
|
|
|
2757
3119
|
*/
|
|
2758
3120
|
Filters?: Filter[];
|
|
2759
3121
|
/**
|
|
3122
|
+
* @public
|
|
2760
3123
|
* <p>Token for the next set of results.</p>
|
|
2761
3124
|
*/
|
|
2762
3125
|
NextToken?: string;
|
|
2763
3126
|
/**
|
|
3127
|
+
* @public
|
|
2764
3128
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2765
3129
|
*/
|
|
2766
3130
|
MaxResults?: number;
|
|
@@ -2770,10 +3134,12 @@ export interface ListReceivedGrantsForOrganizationRequest {
|
|
|
2770
3134
|
*/
|
|
2771
3135
|
export interface ListReceivedGrantsForOrganizationResponse {
|
|
2772
3136
|
/**
|
|
3137
|
+
* @public
|
|
2773
3138
|
* <p>Lists the grants the organization has received.</p>
|
|
2774
3139
|
*/
|
|
2775
3140
|
Grants?: Grant[];
|
|
2776
3141
|
/**
|
|
3142
|
+
* @public
|
|
2777
3143
|
* <p>Token for the next set of results.</p>
|
|
2778
3144
|
*/
|
|
2779
3145
|
NextToken?: string;
|
|
@@ -2783,10 +3149,12 @@ export interface ListReceivedGrantsForOrganizationResponse {
|
|
|
2783
3149
|
*/
|
|
2784
3150
|
export interface ListReceivedLicensesRequest {
|
|
2785
3151
|
/**
|
|
3152
|
+
* @public
|
|
2786
3153
|
* <p>Amazon Resource Names (ARNs) of the licenses.</p>
|
|
2787
3154
|
*/
|
|
2788
3155
|
LicenseArns?: string[];
|
|
2789
3156
|
/**
|
|
3157
|
+
* @public
|
|
2790
3158
|
* <p>Filters to scope the results. The following filters are supported:</p>
|
|
2791
3159
|
* <ul>
|
|
2792
3160
|
* <li>
|
|
@@ -2818,10 +3186,12 @@ export interface ListReceivedLicensesRequest {
|
|
|
2818
3186
|
*/
|
|
2819
3187
|
Filters?: Filter[];
|
|
2820
3188
|
/**
|
|
3189
|
+
* @public
|
|
2821
3190
|
* <p>Token for the next set of results.</p>
|
|
2822
3191
|
*/
|
|
2823
3192
|
NextToken?: string;
|
|
2824
3193
|
/**
|
|
3194
|
+
* @public
|
|
2825
3195
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2826
3196
|
*/
|
|
2827
3197
|
MaxResults?: number;
|
|
@@ -2850,14 +3220,17 @@ export type ReceivedStatus = (typeof ReceivedStatus)[keyof typeof ReceivedStatus
|
|
|
2850
3220
|
*/
|
|
2851
3221
|
export interface ReceivedMetadata {
|
|
2852
3222
|
/**
|
|
3223
|
+
* @public
|
|
2853
3224
|
* <p>Received status.</p>
|
|
2854
3225
|
*/
|
|
2855
3226
|
ReceivedStatus?: ReceivedStatus | string;
|
|
2856
3227
|
/**
|
|
3228
|
+
* @public
|
|
2857
3229
|
* <p>Received status reason.</p>
|
|
2858
3230
|
*/
|
|
2859
3231
|
ReceivedStatusReason?: string;
|
|
2860
3232
|
/**
|
|
3233
|
+
* @public
|
|
2861
3234
|
* <p>Allowed operations.</p>
|
|
2862
3235
|
*/
|
|
2863
3236
|
AllowedOperations?: (AllowedOperation | string)[];
|
|
@@ -2868,62 +3241,77 @@ export interface ReceivedMetadata {
|
|
|
2868
3241
|
*/
|
|
2869
3242
|
export interface GrantedLicense {
|
|
2870
3243
|
/**
|
|
3244
|
+
* @public
|
|
2871
3245
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
2872
3246
|
*/
|
|
2873
3247
|
LicenseArn?: string;
|
|
2874
3248
|
/**
|
|
3249
|
+
* @public
|
|
2875
3250
|
* <p>License name.</p>
|
|
2876
3251
|
*/
|
|
2877
3252
|
LicenseName?: string;
|
|
2878
3253
|
/**
|
|
3254
|
+
* @public
|
|
2879
3255
|
* <p>Product name.</p>
|
|
2880
3256
|
*/
|
|
2881
3257
|
ProductName?: string;
|
|
2882
3258
|
/**
|
|
3259
|
+
* @public
|
|
2883
3260
|
* <p>Product SKU.</p>
|
|
2884
3261
|
*/
|
|
2885
3262
|
ProductSKU?: string;
|
|
2886
3263
|
/**
|
|
3264
|
+
* @public
|
|
2887
3265
|
* <p>Granted license issuer.</p>
|
|
2888
3266
|
*/
|
|
2889
3267
|
Issuer?: IssuerDetails;
|
|
2890
3268
|
/**
|
|
3269
|
+
* @public
|
|
2891
3270
|
* <p>Home Region of the granted license.</p>
|
|
2892
3271
|
*/
|
|
2893
3272
|
HomeRegion?: string;
|
|
2894
3273
|
/**
|
|
3274
|
+
* @public
|
|
2895
3275
|
* <p>Granted license status.</p>
|
|
2896
3276
|
*/
|
|
2897
3277
|
Status?: LicenseStatus | string;
|
|
2898
3278
|
/**
|
|
3279
|
+
* @public
|
|
2899
3280
|
* <p>Date and time range during which the granted license is valid, in ISO8601-UTC format.</p>
|
|
2900
3281
|
*/
|
|
2901
3282
|
Validity?: DatetimeRange;
|
|
2902
3283
|
/**
|
|
3284
|
+
* @public
|
|
2903
3285
|
* <p>Granted license beneficiary.</p>
|
|
2904
3286
|
*/
|
|
2905
3287
|
Beneficiary?: string;
|
|
2906
3288
|
/**
|
|
3289
|
+
* @public
|
|
2907
3290
|
* <p>License entitlements.</p>
|
|
2908
3291
|
*/
|
|
2909
3292
|
Entitlements?: Entitlement[];
|
|
2910
3293
|
/**
|
|
3294
|
+
* @public
|
|
2911
3295
|
* <p>Configuration for consumption of the license.</p>
|
|
2912
3296
|
*/
|
|
2913
3297
|
ConsumptionConfiguration?: ConsumptionConfiguration;
|
|
2914
3298
|
/**
|
|
3299
|
+
* @public
|
|
2915
3300
|
* <p>Granted license metadata.</p>
|
|
2916
3301
|
*/
|
|
2917
3302
|
LicenseMetadata?: Metadata[];
|
|
2918
3303
|
/**
|
|
3304
|
+
* @public
|
|
2919
3305
|
* <p>Creation time of the granted license.</p>
|
|
2920
3306
|
*/
|
|
2921
3307
|
CreateTime?: string;
|
|
2922
3308
|
/**
|
|
3309
|
+
* @public
|
|
2923
3310
|
* <p>Version of the granted license.</p>
|
|
2924
3311
|
*/
|
|
2925
3312
|
Version?: string;
|
|
2926
3313
|
/**
|
|
3314
|
+
* @public
|
|
2927
3315
|
* <p>Granted license received metadata.</p>
|
|
2928
3316
|
*/
|
|
2929
3317
|
ReceivedMetadata?: ReceivedMetadata;
|
|
@@ -2933,10 +3321,12 @@ export interface GrantedLicense {
|
|
|
2933
3321
|
*/
|
|
2934
3322
|
export interface ListReceivedLicensesResponse {
|
|
2935
3323
|
/**
|
|
3324
|
+
* @public
|
|
2936
3325
|
* <p>Received license details.</p>
|
|
2937
3326
|
*/
|
|
2938
3327
|
Licenses?: GrantedLicense[];
|
|
2939
3328
|
/**
|
|
3329
|
+
* @public
|
|
2940
3330
|
* <p>Token for the next set of results.</p>
|
|
2941
3331
|
*/
|
|
2942
3332
|
NextToken?: string;
|
|
@@ -2946,6 +3336,7 @@ export interface ListReceivedLicensesResponse {
|
|
|
2946
3336
|
*/
|
|
2947
3337
|
export interface ListReceivedLicensesForOrganizationRequest {
|
|
2948
3338
|
/**
|
|
3339
|
+
* @public
|
|
2949
3340
|
* <p>Filters to scope the results. The following filters are supported:</p>
|
|
2950
3341
|
* <ul>
|
|
2951
3342
|
* <li>
|
|
@@ -2962,10 +3353,12 @@ export interface ListReceivedLicensesForOrganizationRequest {
|
|
|
2962
3353
|
*/
|
|
2963
3354
|
Filters?: Filter[];
|
|
2964
3355
|
/**
|
|
3356
|
+
* @public
|
|
2965
3357
|
* <p>Token for the next set of results.</p>
|
|
2966
3358
|
*/
|
|
2967
3359
|
NextToken?: string;
|
|
2968
3360
|
/**
|
|
3361
|
+
* @public
|
|
2969
3362
|
* <p>Maximum number of results to return in a single call.</p>
|
|
2970
3363
|
*/
|
|
2971
3364
|
MaxResults?: number;
|
|
@@ -2975,10 +3368,12 @@ export interface ListReceivedLicensesForOrganizationRequest {
|
|
|
2975
3368
|
*/
|
|
2976
3369
|
export interface ListReceivedLicensesForOrganizationResponse {
|
|
2977
3370
|
/**
|
|
3371
|
+
* @public
|
|
2978
3372
|
* <p>Lists the licenses the organization has received.</p>
|
|
2979
3373
|
*/
|
|
2980
3374
|
Licenses?: GrantedLicense[];
|
|
2981
3375
|
/**
|
|
3376
|
+
* @public
|
|
2982
3377
|
* <p>Token for the next set of results.</p>
|
|
2983
3378
|
*/
|
|
2984
3379
|
NextToken?: string;
|
|
@@ -3017,14 +3412,17 @@ export type InventoryFilterCondition = (typeof InventoryFilterCondition)[keyof t
|
|
|
3017
3412
|
*/
|
|
3018
3413
|
export interface InventoryFilter {
|
|
3019
3414
|
/**
|
|
3415
|
+
* @public
|
|
3020
3416
|
* <p>Name of the filter.</p>
|
|
3021
3417
|
*/
|
|
3022
3418
|
Name: string | undefined;
|
|
3023
3419
|
/**
|
|
3420
|
+
* @public
|
|
3024
3421
|
* <p>Condition of the filter.</p>
|
|
3025
3422
|
*/
|
|
3026
3423
|
Condition: InventoryFilterCondition | string | undefined;
|
|
3027
3424
|
/**
|
|
3425
|
+
* @public
|
|
3028
3426
|
* <p>Value of the filter.</p>
|
|
3029
3427
|
*/
|
|
3030
3428
|
Value?: string;
|
|
@@ -3034,14 +3432,17 @@ export interface InventoryFilter {
|
|
|
3034
3432
|
*/
|
|
3035
3433
|
export interface ListResourceInventoryRequest {
|
|
3036
3434
|
/**
|
|
3435
|
+
* @public
|
|
3037
3436
|
* <p>Maximum number of results to return in a single call.</p>
|
|
3038
3437
|
*/
|
|
3039
3438
|
MaxResults?: number;
|
|
3040
3439
|
/**
|
|
3440
|
+
* @public
|
|
3041
3441
|
* <p>Token for the next set of results.</p>
|
|
3042
3442
|
*/
|
|
3043
3443
|
NextToken?: string;
|
|
3044
3444
|
/**
|
|
3445
|
+
* @public
|
|
3045
3446
|
* <p>Filters to scope the results. The following filters and logical operators
|
|
3046
3447
|
* are supported:</p>
|
|
3047
3448
|
* <ul>
|
|
@@ -3090,26 +3491,32 @@ export interface ListResourceInventoryRequest {
|
|
|
3090
3491
|
*/
|
|
3091
3492
|
export interface ResourceInventory {
|
|
3092
3493
|
/**
|
|
3494
|
+
* @public
|
|
3093
3495
|
* <p>ID of the resource.</p>
|
|
3094
3496
|
*/
|
|
3095
3497
|
ResourceId?: string;
|
|
3096
3498
|
/**
|
|
3499
|
+
* @public
|
|
3097
3500
|
* <p>Type of resource.</p>
|
|
3098
3501
|
*/
|
|
3099
3502
|
ResourceType?: ResourceType | string;
|
|
3100
3503
|
/**
|
|
3504
|
+
* @public
|
|
3101
3505
|
* <p>Amazon Resource Name (ARN) of the resource.</p>
|
|
3102
3506
|
*/
|
|
3103
3507
|
ResourceArn?: string;
|
|
3104
3508
|
/**
|
|
3509
|
+
* @public
|
|
3105
3510
|
* <p>Platform of the resource.</p>
|
|
3106
3511
|
*/
|
|
3107
3512
|
Platform?: string;
|
|
3108
3513
|
/**
|
|
3514
|
+
* @public
|
|
3109
3515
|
* <p>Platform version of the resource in the inventory.</p>
|
|
3110
3516
|
*/
|
|
3111
3517
|
PlatformVersion?: string;
|
|
3112
3518
|
/**
|
|
3519
|
+
* @public
|
|
3113
3520
|
* <p>ID of the account that owns the resource.</p>
|
|
3114
3521
|
*/
|
|
3115
3522
|
ResourceOwningAccountId?: string;
|
|
@@ -3119,10 +3526,12 @@ export interface ResourceInventory {
|
|
|
3119
3526
|
*/
|
|
3120
3527
|
export interface ListResourceInventoryResponse {
|
|
3121
3528
|
/**
|
|
3529
|
+
* @public
|
|
3122
3530
|
* <p>Information about the resources.</p>
|
|
3123
3531
|
*/
|
|
3124
3532
|
ResourceInventoryList?: ResourceInventory[];
|
|
3125
3533
|
/**
|
|
3534
|
+
* @public
|
|
3126
3535
|
* <p>Token for the next set of results.</p>
|
|
3127
3536
|
*/
|
|
3128
3537
|
NextToken?: string;
|
|
@@ -3132,6 +3541,7 @@ export interface ListResourceInventoryResponse {
|
|
|
3132
3541
|
*/
|
|
3133
3542
|
export interface ListTagsForResourceRequest {
|
|
3134
3543
|
/**
|
|
3544
|
+
* @public
|
|
3135
3545
|
* <p>Amazon Resource Name (ARN) of the license configuration.</p>
|
|
3136
3546
|
*/
|
|
3137
3547
|
ResourceArn: string | undefined;
|
|
@@ -3141,6 +3551,7 @@ export interface ListTagsForResourceRequest {
|
|
|
3141
3551
|
*/
|
|
3142
3552
|
export interface ListTagsForResourceResponse {
|
|
3143
3553
|
/**
|
|
3554
|
+
* @public
|
|
3144
3555
|
* <p>Information about the tags.</p>
|
|
3145
3556
|
*/
|
|
3146
3557
|
Tags?: Tag[];
|
|
@@ -3150,10 +3561,12 @@ export interface ListTagsForResourceResponse {
|
|
|
3150
3561
|
*/
|
|
3151
3562
|
export interface ListTokensRequest {
|
|
3152
3563
|
/**
|
|
3564
|
+
* @public
|
|
3153
3565
|
* <p>Token IDs.</p>
|
|
3154
3566
|
*/
|
|
3155
3567
|
TokenIds?: string[];
|
|
3156
3568
|
/**
|
|
3569
|
+
* @public
|
|
3157
3570
|
* <p>Filters to scope the results. The following filter is supported:</p>
|
|
3158
3571
|
* <ul>
|
|
3159
3572
|
* <li>
|
|
@@ -3165,10 +3578,12 @@ export interface ListTokensRequest {
|
|
|
3165
3578
|
*/
|
|
3166
3579
|
Filters?: Filter[];
|
|
3167
3580
|
/**
|
|
3581
|
+
* @public
|
|
3168
3582
|
* <p>Token for the next set of results.</p>
|
|
3169
3583
|
*/
|
|
3170
3584
|
NextToken?: string;
|
|
3171
3585
|
/**
|
|
3586
|
+
* @public
|
|
3172
3587
|
* <p>Maximum number of results to return in a single call.</p>
|
|
3173
3588
|
*/
|
|
3174
3589
|
MaxResults?: number;
|
|
@@ -3179,30 +3594,37 @@ export interface ListTokensRequest {
|
|
|
3179
3594
|
*/
|
|
3180
3595
|
export interface TokenData {
|
|
3181
3596
|
/**
|
|
3597
|
+
* @public
|
|
3182
3598
|
* <p>Token ID.</p>
|
|
3183
3599
|
*/
|
|
3184
3600
|
TokenId?: string;
|
|
3185
3601
|
/**
|
|
3602
|
+
* @public
|
|
3186
3603
|
* <p>Type of token generated. The supported value is <code>REFRESH_TOKEN</code>.</p>
|
|
3187
3604
|
*/
|
|
3188
3605
|
TokenType?: string;
|
|
3189
3606
|
/**
|
|
3607
|
+
* @public
|
|
3190
3608
|
* <p>Amazon Resource Name (ARN) of the license.</p>
|
|
3191
3609
|
*/
|
|
3192
3610
|
LicenseArn?: string;
|
|
3193
3611
|
/**
|
|
3612
|
+
* @public
|
|
3194
3613
|
* <p>Token expiration time, in ISO8601-UTC format.</p>
|
|
3195
3614
|
*/
|
|
3196
3615
|
ExpirationTime?: string;
|
|
3197
3616
|
/**
|
|
3617
|
+
* @public
|
|
3198
3618
|
* <p>Data specified by the caller.</p>
|
|
3199
3619
|
*/
|
|
3200
3620
|
TokenProperties?: string[];
|
|
3201
3621
|
/**
|
|
3622
|
+
* @public
|
|
3202
3623
|
* <p>Amazon Resource Names (ARN) of the roles included in the token.</p>
|
|
3203
3624
|
*/
|
|
3204
3625
|
RoleArns?: string[];
|
|
3205
3626
|
/**
|
|
3627
|
+
* @public
|
|
3206
3628
|
* <p>Token status. The possible values are <code>AVAILABLE</code> and <code>DELETED</code>.</p>
|
|
3207
3629
|
*/
|
|
3208
3630
|
Status?: string;
|
|
@@ -3212,10 +3634,12 @@ export interface TokenData {
|
|
|
3212
3634
|
*/
|
|
3213
3635
|
export interface ListTokensResponse {
|
|
3214
3636
|
/**
|
|
3637
|
+
* @public
|
|
3215
3638
|
* <p>Received token details.</p>
|
|
3216
3639
|
*/
|
|
3217
3640
|
Tokens?: TokenData[];
|
|
3218
3641
|
/**
|
|
3642
|
+
* @public
|
|
3219
3643
|
* <p>Token for the next set of results.</p>
|
|
3220
3644
|
*/
|
|
3221
3645
|
NextToken?: string;
|
|
@@ -3225,18 +3649,22 @@ export interface ListTokensResponse {
|
|
|
3225
3649
|
*/
|
|
3226
3650
|
export interface ListUsageForLicenseConfigurationRequest {
|
|
3227
3651
|
/**
|
|
3652
|
+
* @public
|
|
3228
3653
|
* <p>Amazon Resource Name (ARN) of the license configuration.</p>
|
|
3229
3654
|
*/
|
|
3230
3655
|
LicenseConfigurationArn: string | undefined;
|
|
3231
3656
|
/**
|
|
3657
|
+
* @public
|
|
3232
3658
|
* <p>Maximum number of results to return in a single call.</p>
|
|
3233
3659
|
*/
|
|
3234
3660
|
MaxResults?: number;
|
|
3235
3661
|
/**
|
|
3662
|
+
* @public
|
|
3236
3663
|
* <p>Token for the next set of results.</p>
|
|
3237
3664
|
*/
|
|
3238
3665
|
NextToken?: string;
|
|
3239
3666
|
/**
|
|
3667
|
+
* @public
|
|
3240
3668
|
* <p>Filters to scope the results. The following filters and logical operators
|
|
3241
3669
|
* are supported:</p>
|
|
3242
3670
|
* <ul>
|
|
@@ -3265,26 +3693,32 @@ export interface ListUsageForLicenseConfigurationRequest {
|
|
|
3265
3693
|
*/
|
|
3266
3694
|
export interface LicenseConfigurationUsage {
|
|
3267
3695
|
/**
|
|
3696
|
+
* @public
|
|
3268
3697
|
* <p>Amazon Resource Name (ARN) of the resource.</p>
|
|
3269
3698
|
*/
|
|
3270
3699
|
ResourceArn?: string;
|
|
3271
3700
|
/**
|
|
3701
|
+
* @public
|
|
3272
3702
|
* <p>Type of resource.</p>
|
|
3273
3703
|
*/
|
|
3274
3704
|
ResourceType?: ResourceType | string;
|
|
3275
3705
|
/**
|
|
3706
|
+
* @public
|
|
3276
3707
|
* <p>Status of the resource.</p>
|
|
3277
3708
|
*/
|
|
3278
3709
|
ResourceStatus?: string;
|
|
3279
3710
|
/**
|
|
3711
|
+
* @public
|
|
3280
3712
|
* <p>ID of the account that owns the resource.</p>
|
|
3281
3713
|
*/
|
|
3282
3714
|
ResourceOwnerId?: string;
|
|
3283
3715
|
/**
|
|
3716
|
+
* @public
|
|
3284
3717
|
* <p>Time when the license configuration was initially associated with the resource.</p>
|
|
3285
3718
|
*/
|
|
3286
3719
|
AssociationTime?: Date;
|
|
3287
3720
|
/**
|
|
3721
|
+
* @public
|
|
3288
3722
|
* <p>Number of licenses consumed by the resource.</p>
|
|
3289
3723
|
*/
|
|
3290
3724
|
ConsumedLicenses?: number;
|
|
@@ -3294,10 +3728,12 @@ export interface LicenseConfigurationUsage {
|
|
|
3294
3728
|
*/
|
|
3295
3729
|
export interface ListUsageForLicenseConfigurationResponse {
|
|
3296
3730
|
/**
|
|
3731
|
+
* @public
|
|
3297
3732
|
* <p>Information about the license configurations.</p>
|
|
3298
3733
|
*/
|
|
3299
3734
|
LicenseConfigurationUsageList?: LicenseConfigurationUsage[];
|
|
3300
3735
|
/**
|
|
3736
|
+
* @public
|
|
3301
3737
|
* <p>Token for the next set of results.</p>
|
|
3302
3738
|
*/
|
|
3303
3739
|
NextToken?: string;
|
|
@@ -3307,6 +3743,7 @@ export interface ListUsageForLicenseConfigurationResponse {
|
|
|
3307
3743
|
*/
|
|
3308
3744
|
export interface RejectGrantRequest {
|
|
3309
3745
|
/**
|
|
3746
|
+
* @public
|
|
3310
3747
|
* <p>Amazon Resource Name (ARN) of the grant.</p>
|
|
3311
3748
|
*/
|
|
3312
3749
|
GrantArn: string | undefined;
|
|
@@ -3316,14 +3753,17 @@ export interface RejectGrantRequest {
|
|
|
3316
3753
|
*/
|
|
3317
3754
|
export interface RejectGrantResponse {
|
|
3318
3755
|
/**
|
|
3756
|
+
* @public
|
|
3319
3757
|
* <p>Grant ARN.</p>
|
|
3320
3758
|
*/
|
|
3321
3759
|
GrantArn?: string;
|
|
3322
3760
|
/**
|
|
3761
|
+
* @public
|
|
3323
3762
|
* <p>Grant status.</p>
|
|
3324
3763
|
*/
|
|
3325
3764
|
Status?: GrantStatus | string;
|
|
3326
3765
|
/**
|
|
3766
|
+
* @public
|
|
3327
3767
|
* <p>Grant version.</p>
|
|
3328
3768
|
*/
|
|
3329
3769
|
Version?: string;
|
|
@@ -3333,10 +3773,12 @@ export interface RejectGrantResponse {
|
|
|
3333
3773
|
*/
|
|
3334
3774
|
export interface TagResourceRequest {
|
|
3335
3775
|
/**
|
|
3776
|
+
* @public
|
|
3336
3777
|
* <p>Amazon Resource Name (ARN) of the license configuration.</p>
|
|
3337
3778
|
*/
|
|
3338
3779
|
ResourceArn: string | undefined;
|
|
3339
3780
|
/**
|
|
3781
|
+
* @public
|
|
3340
3782
|
* <p>One or more tags.</p>
|
|
3341
3783
|
*/
|
|
3342
3784
|
Tags: Tag[] | undefined;
|
|
@@ -3351,10 +3793,12 @@ export interface TagResourceResponse {
|
|
|
3351
3793
|
*/
|
|
3352
3794
|
export interface UntagResourceRequest {
|
|
3353
3795
|
/**
|
|
3796
|
+
* @public
|
|
3354
3797
|
* <p>Amazon Resource Name (ARN) of the license configuration.</p>
|
|
3355
3798
|
*/
|
|
3356
3799
|
ResourceArn: string | undefined;
|
|
3357
3800
|
/**
|
|
3801
|
+
* @public
|
|
3358
3802
|
* <p>Keys identifying the tags to remove.</p>
|
|
3359
3803
|
*/
|
|
3360
3804
|
TagKeys: string[] | undefined;
|
|
@@ -3381,39 +3825,48 @@ export type LicenseConfigurationStatus = (typeof LicenseConfigurationStatus)[key
|
|
|
3381
3825
|
*/
|
|
3382
3826
|
export interface UpdateLicenseConfigurationRequest {
|
|
3383
3827
|
/**
|
|
3828
|
+
* @public
|
|
3384
3829
|
* <p>Amazon Resource Name (ARN) of the license configuration.</p>
|
|
3385
3830
|
*/
|
|
3386
3831
|
LicenseConfigurationArn: string | undefined;
|
|
3387
3832
|
/**
|
|
3833
|
+
* @public
|
|
3388
3834
|
* <p>New status of the license configuration.</p>
|
|
3389
3835
|
*/
|
|
3390
3836
|
LicenseConfigurationStatus?: LicenseConfigurationStatus | string;
|
|
3391
3837
|
/**
|
|
3838
|
+
* @public
|
|
3392
3839
|
* <p>New license rule. The only rule that you can add after you create a license
|
|
3393
3840
|
* configuration is licenseAffinityToHost.</p>
|
|
3394
3841
|
*/
|
|
3395
3842
|
LicenseRules?: string[];
|
|
3396
3843
|
/**
|
|
3844
|
+
* @public
|
|
3397
3845
|
* <p>New number of licenses managed by the license configuration.</p>
|
|
3398
3846
|
*/
|
|
3399
3847
|
LicenseCount?: number;
|
|
3400
3848
|
/**
|
|
3849
|
+
* @public
|
|
3401
3850
|
* <p>New hard limit of the number of available licenses.</p>
|
|
3402
3851
|
*/
|
|
3403
3852
|
LicenseCountHardLimit?: boolean;
|
|
3404
3853
|
/**
|
|
3854
|
+
* @public
|
|
3405
3855
|
* <p>New name of the license configuration.</p>
|
|
3406
3856
|
*/
|
|
3407
3857
|
Name?: string;
|
|
3408
3858
|
/**
|
|
3859
|
+
* @public
|
|
3409
3860
|
* <p>New description of the license configuration.</p>
|
|
3410
3861
|
*/
|
|
3411
3862
|
Description?: string;
|
|
3412
3863
|
/**
|
|
3864
|
+
* @public
|
|
3413
3865
|
* <p>New product information.</p>
|
|
3414
3866
|
*/
|
|
3415
3867
|
ProductInformationList?: ProductInformation[];
|
|
3416
3868
|
/**
|
|
3869
|
+
* @public
|
|
3417
3870
|
* <p>When true, disassociates a resource when software is uninstalled.</p>
|
|
3418
3871
|
*/
|
|
3419
3872
|
DisassociateWhenNotFound?: boolean;
|
|
@@ -3428,14 +3881,17 @@ export interface UpdateLicenseConfigurationResponse {
|
|
|
3428
3881
|
*/
|
|
3429
3882
|
export interface UpdateLicenseManagerReportGeneratorRequest {
|
|
3430
3883
|
/**
|
|
3884
|
+
* @public
|
|
3431
3885
|
* <p>Amazon Resource Name (ARN) of the report generator to update.</p>
|
|
3432
3886
|
*/
|
|
3433
3887
|
LicenseManagerReportGeneratorArn: string | undefined;
|
|
3434
3888
|
/**
|
|
3889
|
+
* @public
|
|
3435
3890
|
* <p>Name of the report generator.</p>
|
|
3436
3891
|
*/
|
|
3437
3892
|
ReportGeneratorName: string | undefined;
|
|
3438
3893
|
/**
|
|
3894
|
+
* @public
|
|
3439
3895
|
* <p>Type of reports to generate. The following report types are supported:</p>
|
|
3440
3896
|
* <ul>
|
|
3441
3897
|
* <li>
|
|
@@ -3448,18 +3904,22 @@ export interface UpdateLicenseManagerReportGeneratorRequest {
|
|
|
3448
3904
|
*/
|
|
3449
3905
|
Type: (ReportType | string)[] | undefined;
|
|
3450
3906
|
/**
|
|
3907
|
+
* @public
|
|
3451
3908
|
* <p>The report context.</p>
|
|
3452
3909
|
*/
|
|
3453
3910
|
ReportContext: ReportContext | undefined;
|
|
3454
3911
|
/**
|
|
3912
|
+
* @public
|
|
3455
3913
|
* <p>Frequency by which reports are generated.</p>
|
|
3456
3914
|
*/
|
|
3457
3915
|
ReportFrequency: ReportFrequency | undefined;
|
|
3458
3916
|
/**
|
|
3917
|
+
* @public
|
|
3459
3918
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
3460
3919
|
*/
|
|
3461
3920
|
ClientToken: string | undefined;
|
|
3462
3921
|
/**
|
|
3922
|
+
* @public
|
|
3463
3923
|
* <p>Description of the report generator.</p>
|
|
3464
3924
|
*/
|
|
3465
3925
|
Description?: string;
|
|
@@ -3502,14 +3962,17 @@ export declare class LicenseUsageException extends __BaseException {
|
|
|
3502
3962
|
*/
|
|
3503
3963
|
export interface UpdateLicenseSpecificationsForResourceRequest {
|
|
3504
3964
|
/**
|
|
3965
|
+
* @public
|
|
3505
3966
|
* <p>Amazon Resource Name (ARN) of the Amazon Web Services resource.</p>
|
|
3506
3967
|
*/
|
|
3507
3968
|
ResourceArn: string | undefined;
|
|
3508
3969
|
/**
|
|
3970
|
+
* @public
|
|
3509
3971
|
* <p>ARNs of the license configurations to add.</p>
|
|
3510
3972
|
*/
|
|
3511
3973
|
AddLicenseSpecifications?: LicenseSpecification[];
|
|
3512
3974
|
/**
|
|
3975
|
+
* @public
|
|
3513
3976
|
* <p>ARNs of the license configurations to remove.</p>
|
|
3514
3977
|
*/
|
|
3515
3978
|
RemoveLicenseSpecifications?: LicenseSpecification[];
|
|
@@ -3524,18 +3987,22 @@ export interface UpdateLicenseSpecificationsForResourceResponse {
|
|
|
3524
3987
|
*/
|
|
3525
3988
|
export interface UpdateServiceSettingsRequest {
|
|
3526
3989
|
/**
|
|
3990
|
+
* @public
|
|
3527
3991
|
* <p>Amazon Resource Name (ARN) of the Amazon S3 bucket where the License Manager information is stored.</p>
|
|
3528
3992
|
*/
|
|
3529
3993
|
S3BucketArn?: string;
|
|
3530
3994
|
/**
|
|
3995
|
+
* @public
|
|
3531
3996
|
* <p>Amazon Resource Name (ARN) of the Amazon SNS topic used for License Manager alerts.</p>
|
|
3532
3997
|
*/
|
|
3533
3998
|
SnsTopicArn?: string;
|
|
3534
3999
|
/**
|
|
4000
|
+
* @public
|
|
3535
4001
|
* <p>Enables integration with Organizations for cross-account discovery.</p>
|
|
3536
4002
|
*/
|
|
3537
4003
|
OrganizationConfiguration?: OrganizationConfiguration;
|
|
3538
4004
|
/**
|
|
4005
|
+
* @public
|
|
3539
4006
|
* <p>Activates cross-account discovery.</p>
|
|
3540
4007
|
*/
|
|
3541
4008
|
EnableCrossAccountsDiscovery?: boolean;
|