@aws-sdk/client-license-manager 3.428.0 → 3.429.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.
@@ -42,7 +42,7 @@ export interface AcceptGrantResponse {
42
42
  * @public
43
43
  * <p>Grant status.</p>
44
44
  */
45
- Status?: GrantStatus | string;
45
+ Status?: GrantStatus;
46
46
  /**
47
47
  * @public
48
48
  * <p>Grant version.</p>
@@ -310,7 +310,7 @@ export interface EntitlementData {
310
310
  * @public
311
311
  * <p>Entitlement data unit.</p>
312
312
  */
313
- Unit: EntitlementDataUnit | string | undefined;
313
+ Unit: EntitlementDataUnit | undefined;
314
314
  }
315
315
  /**
316
316
  * @public
@@ -331,7 +331,7 @@ export interface CheckoutBorrowLicenseRequest {
331
331
  * <p>Digital signature method. The possible value is JSON Web Signature (JWS) algorithm PS384.
332
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>
333
333
  */
334
- DigitalSignatureMethod: DigitalSignatureMethod | string | undefined;
334
+ DigitalSignatureMethod: DigitalSignatureMethod | undefined;
335
335
  /**
336
336
  * @public
337
337
  * <p>Node ID.</p>
@@ -471,7 +471,7 @@ export interface CheckoutLicenseRequest {
471
471
  * @public
472
472
  * <p>Checkout type.</p>
473
473
  */
474
- CheckoutType: CheckoutType | string | undefined;
474
+ CheckoutType: CheckoutType | undefined;
475
475
  /**
476
476
  * @public
477
477
  * <p>Key fingerprint identifying the license.</p>
@@ -506,7 +506,7 @@ export interface CheckoutLicenseResponse {
506
506
  * @public
507
507
  * <p>Checkout type.</p>
508
508
  */
509
- CheckoutType?: CheckoutType | string;
509
+ CheckoutType?: CheckoutType;
510
510
  /**
511
511
  * @public
512
512
  * <p>License consumption token.</p>
@@ -592,7 +592,7 @@ export interface CreateGrantRequest {
592
592
  * @public
593
593
  * <p>Allowed operations for the grant.</p>
594
594
  */
595
- AllowedOperations: (AllowedOperation | string)[] | undefined;
595
+ AllowedOperations: AllowedOperation[] | undefined;
596
596
  }
597
597
  /**
598
598
  * @public
@@ -607,7 +607,7 @@ export interface CreateGrantResponse {
607
607
  * @public
608
608
  * <p>Grant status.</p>
609
609
  */
610
- Status?: GrantStatus | string;
610
+ Status?: GrantStatus;
611
611
  /**
612
612
  * @public
613
613
  * <p>Grant version.</p>
@@ -655,7 +655,7 @@ export interface Options {
655
655
  * </dd>
656
656
  * </dl>
657
657
  */
658
- ActivationOverrideBehavior?: ActivationOverrideBehavior | string;
658
+ ActivationOverrideBehavior?: ActivationOverrideBehavior;
659
659
  }
660
660
  /**
661
661
  * @public
@@ -680,12 +680,12 @@ export interface CreateGrantVersionRequest {
680
680
  * @public
681
681
  * <p>Allowed operations for the grant.</p>
682
682
  */
683
- AllowedOperations?: (AllowedOperation | string)[];
683
+ AllowedOperations?: AllowedOperation[];
684
684
  /**
685
685
  * @public
686
686
  * <p>Grant status.</p>
687
687
  */
688
- Status?: GrantStatus | string;
688
+ Status?: GrantStatus;
689
689
  /**
690
690
  * @public
691
691
  * <p>Grant status reason.</p>
@@ -715,7 +715,7 @@ export interface CreateGrantVersionResponse {
715
715
  * @public
716
716
  * <p>Grant status.</p>
717
717
  */
718
- Status?: GrantStatus | string;
718
+ Status?: GrantStatus;
719
719
  /**
720
720
  * @public
721
721
  * <p>New version of the grant.</p>
@@ -771,7 +771,7 @@ export interface ConsumptionConfiguration {
771
771
  * @public
772
772
  * <p>Renewal frequency.</p>
773
773
  */
774
- RenewType?: RenewType | string;
774
+ RenewType?: RenewType;
775
775
  /**
776
776
  * @public
777
777
  * <p>Details about a provisional configuration.</p>
@@ -849,7 +849,7 @@ export interface Entitlement {
849
849
  * @public
850
850
  * <p>Entitlement unit.</p>
851
851
  */
852
- Unit: EntitlementUnit | string | undefined;
852
+ Unit: EntitlementUnit | undefined;
853
853
  /**
854
854
  * @public
855
855
  * <p>Indicates whether check-ins are allowed.</p>
@@ -981,7 +981,7 @@ export interface CreateLicenseResponse {
981
981
  * @public
982
982
  * <p>License status.</p>
983
983
  */
984
- Status?: LicenseStatus | string;
984
+ Status?: LicenseStatus;
985
985
  /**
986
986
  * @public
987
987
  * <p>License version.</p>
@@ -1142,7 +1142,7 @@ export interface CreateLicenseConfigurationRequest {
1142
1142
  * @public
1143
1143
  * <p>Dimension used to track the license inventory.</p>
1144
1144
  */
1145
- LicenseCountingType: LicenseCountingType | string | undefined;
1145
+ LicenseCountingType: LicenseCountingType | undefined;
1146
1146
  /**
1147
1147
  * @public
1148
1148
  * <p>Number of licenses managed by the license configuration.</p>
@@ -1305,7 +1305,7 @@ export interface ReportFrequency {
1305
1305
  * @public
1306
1306
  * <p>Time period between each report. The period can be daily, weekly, or monthly.</p>
1307
1307
  */
1308
- period?: ReportFrequencyType | string;
1308
+ period?: ReportFrequencyType;
1309
1309
  }
1310
1310
  /**
1311
1311
  * @public
@@ -1340,7 +1340,7 @@ export interface CreateLicenseManagerReportGeneratorRequest {
1340
1340
  * </li>
1341
1341
  * </ul>
1342
1342
  */
1343
- Type: (ReportType | string)[] | undefined;
1343
+ Type: ReportType[] | undefined;
1344
1344
  /**
1345
1345
  * @public
1346
1346
  * <p>Defines the type of license configuration the report generator tracks.</p>
@@ -1432,7 +1432,7 @@ export interface CreateLicenseVersionRequest {
1432
1432
  * @public
1433
1433
  * <p>License status.</p>
1434
1434
  */
1435
- Status: LicenseStatus | string | undefined;
1435
+ Status: LicenseStatus | undefined;
1436
1436
  /**
1437
1437
  * @public
1438
1438
  * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
@@ -1462,7 +1462,7 @@ export interface CreateLicenseVersionResponse {
1462
1462
  * @public
1463
1463
  * <p>License status.</p>
1464
1464
  */
1465
- Status?: LicenseStatus | string;
1465
+ Status?: LicenseStatus;
1466
1466
  }
1467
1467
  /**
1468
1468
  * @public
@@ -1521,7 +1521,7 @@ export interface CreateTokenResponse {
1521
1521
  * @public
1522
1522
  * <p>Token type.</p>
1523
1523
  */
1524
- TokenType?: TokenType | string;
1524
+ TokenType?: TokenType;
1525
1525
  /**
1526
1526
  * @public
1527
1527
  * <p>Refresh token, encoded as a JWT token.</p>
@@ -1561,7 +1561,7 @@ export interface DeleteGrantResponse {
1561
1561
  * @public
1562
1562
  * <p>Grant status.</p>
1563
1563
  */
1564
- Status?: GrantStatus | string;
1564
+ Status?: GrantStatus;
1565
1565
  /**
1566
1566
  * @public
1567
1567
  * <p>Grant version.</p>
@@ -1603,7 +1603,7 @@ export interface DeleteLicenseResponse {
1603
1603
  * @public
1604
1604
  * <p>License status.</p>
1605
1605
  */
1606
- Status?: LicenseDeletionStatus | string;
1606
+ Status?: LicenseDeletionStatus;
1607
1607
  /**
1608
1608
  * @public
1609
1609
  * <p>Date when the license is deleted.</p>
@@ -1764,7 +1764,7 @@ export interface Grant {
1764
1764
  * @public
1765
1765
  * <p>Grant status.</p>
1766
1766
  */
1767
- GrantStatus: GrantStatus | string | undefined;
1767
+ GrantStatus: GrantStatus | undefined;
1768
1768
  /**
1769
1769
  * @public
1770
1770
  * <p>Grant status reason.</p>
@@ -1779,7 +1779,7 @@ export interface Grant {
1779
1779
  * @public
1780
1780
  * <p>Granted operations.</p>
1781
1781
  */
1782
- GrantedOperations: (AllowedOperation | string)[] | undefined;
1782
+ GrantedOperations: AllowedOperation[] | undefined;
1783
1783
  /**
1784
1784
  * @public
1785
1785
  * <p>The options specified for the grant.</p>
@@ -1872,7 +1872,7 @@ export interface License {
1872
1872
  * @public
1873
1873
  * <p>License status.</p>
1874
1874
  */
1875
- Status?: LicenseStatus | string;
1875
+ Status?: LicenseStatus;
1876
1876
  /**
1877
1877
  * @public
1878
1878
  * <p>Date and time range during which the license is valid, in ISO8601-UTC format.</p>
@@ -1953,7 +1953,7 @@ export interface ConsumedLicenseSummary {
1953
1953
  * @public
1954
1954
  * <p>Resource type of the resource consuming a license.</p>
1955
1955
  */
1956
- ResourceType?: ResourceType | string;
1956
+ ResourceType?: ResourceType;
1957
1957
  /**
1958
1958
  * @public
1959
1959
  * <p>Number of licenses consumed by the resource.</p>
@@ -1969,7 +1969,7 @@ export interface ManagedResourceSummary {
1969
1969
  * @public
1970
1970
  * <p>Type of resource associated with a license.</p>
1971
1971
  */
1972
- ResourceType?: ResourceType | string;
1972
+ ResourceType?: ResourceType;
1973
1973
  /**
1974
1974
  * @public
1975
1975
  * <p>Number of resources associated with licenses.</p>
@@ -2004,7 +2004,7 @@ export interface GetLicenseConfigurationResponse {
2004
2004
  * @public
2005
2005
  * <p>Dimension for which the licenses are counted.</p>
2006
2006
  */
2007
- LicenseCountingType?: LicenseCountingType | string;
2007
+ LicenseCountingType?: LicenseCountingType;
2008
2008
  /**
2009
2009
  * @public
2010
2010
  * <p>License rules.</p>
@@ -2122,7 +2122,7 @@ export interface GetLicenseConversionTaskResponse {
2122
2122
  * @public
2123
2123
  * <p>Status of the license type conversion task.</p>
2124
2124
  */
2125
- Status?: LicenseConversionTaskStatus | string;
2125
+ Status?: LicenseConversionTaskStatus;
2126
2126
  /**
2127
2127
  * @public
2128
2128
  * <p>Time at which the license type conversion task was started .</p>
@@ -2179,7 +2179,7 @@ export interface ReportGenerator {
2179
2179
  * @public
2180
2180
  * <p>Type of reports that are generated.</p>
2181
2181
  */
2182
- ReportType?: (ReportType | string)[];
2182
+ ReportType?: ReportType[];
2183
2183
  /**
2184
2184
  * @public
2185
2185
  * <p>License configuration type for this generator.</p>
@@ -2280,7 +2280,7 @@ export interface EntitlementUsage {
2280
2280
  * @public
2281
2281
  * <p>Entitlement usage unit.</p>
2282
2282
  */
2283
- Unit: EntitlementDataUnit | string | undefined;
2283
+ Unit: EntitlementDataUnit | undefined;
2284
2284
  }
2285
2285
  /**
2286
2286
  * @public
@@ -2399,7 +2399,7 @@ export interface LicenseConfigurationAssociation {
2399
2399
  * @public
2400
2400
  * <p>Type of server resource.</p>
2401
2401
  */
2402
- ResourceType?: ResourceType | string;
2402
+ ResourceType?: ResourceType;
2403
2403
  /**
2404
2404
  * @public
2405
2405
  * <p>ID of the Amazon Web Services account that owns the resource consuming licenses.</p>
@@ -2550,7 +2550,7 @@ export interface LicenseOperationFailure {
2550
2550
  * @public
2551
2551
  * <p>Resource type.</p>
2552
2552
  */
2553
- ResourceType?: ResourceType | string;
2553
+ ResourceType?: ResourceType;
2554
2554
  /**
2555
2555
  * @public
2556
2556
  * <p>Error message.</p>
@@ -2674,7 +2674,7 @@ export interface LicenseConfiguration {
2674
2674
  * @public
2675
2675
  * <p>Dimension to use to track the license inventory.</p>
2676
2676
  */
2677
- LicenseCountingType?: LicenseCountingType | string;
2677
+ LicenseCountingType?: LicenseCountingType;
2678
2678
  /**
2679
2679
  * @public
2680
2680
  * <p>License rules.</p>
@@ -2798,7 +2798,7 @@ export interface LicenseConversionTask {
2798
2798
  * @public
2799
2799
  * <p>The status of the conversion task.</p>
2800
2800
  */
2801
- Status?: LicenseConversionTaskStatus | string;
2801
+ Status?: LicenseConversionTaskStatus;
2802
2802
  /**
2803
2803
  * @public
2804
2804
  * <p>The status message for the conversion task.</p>
@@ -3223,7 +3223,7 @@ export interface ReceivedMetadata {
3223
3223
  * @public
3224
3224
  * <p>Received status.</p>
3225
3225
  */
3226
- ReceivedStatus?: ReceivedStatus | string;
3226
+ ReceivedStatus?: ReceivedStatus;
3227
3227
  /**
3228
3228
  * @public
3229
3229
  * <p>Received status reason.</p>
@@ -3233,7 +3233,7 @@ export interface ReceivedMetadata {
3233
3233
  * @public
3234
3234
  * <p>Allowed operations.</p>
3235
3235
  */
3236
- AllowedOperations?: (AllowedOperation | string)[];
3236
+ AllowedOperations?: AllowedOperation[];
3237
3237
  }
3238
3238
  /**
3239
3239
  * @public
@@ -3274,7 +3274,7 @@ export interface GrantedLicense {
3274
3274
  * @public
3275
3275
  * <p>Granted license status.</p>
3276
3276
  */
3277
- Status?: LicenseStatus | string;
3277
+ Status?: LicenseStatus;
3278
3278
  /**
3279
3279
  * @public
3280
3280
  * <p>Date and time range during which the granted license is valid, in ISO8601-UTC format.</p>
@@ -3420,7 +3420,7 @@ export interface InventoryFilter {
3420
3420
  * @public
3421
3421
  * <p>Condition of the filter.</p>
3422
3422
  */
3423
- Condition: InventoryFilterCondition | string | undefined;
3423
+ Condition: InventoryFilterCondition | undefined;
3424
3424
  /**
3425
3425
  * @public
3426
3426
  * <p>Value of the filter.</p>
@@ -3499,7 +3499,7 @@ export interface ResourceInventory {
3499
3499
  * @public
3500
3500
  * <p>Type of resource.</p>
3501
3501
  */
3502
- ResourceType?: ResourceType | string;
3502
+ ResourceType?: ResourceType;
3503
3503
  /**
3504
3504
  * @public
3505
3505
  * <p>Amazon Resource Name (ARN) of the resource.</p>
@@ -3701,7 +3701,7 @@ export interface LicenseConfigurationUsage {
3701
3701
  * @public
3702
3702
  * <p>Type of resource.</p>
3703
3703
  */
3704
- ResourceType?: ResourceType | string;
3704
+ ResourceType?: ResourceType;
3705
3705
  /**
3706
3706
  * @public
3707
3707
  * <p>Status of the resource.</p>
@@ -3761,7 +3761,7 @@ export interface RejectGrantResponse {
3761
3761
  * @public
3762
3762
  * <p>Grant status.</p>
3763
3763
  */
3764
- Status?: GrantStatus | string;
3764
+ Status?: GrantStatus;
3765
3765
  /**
3766
3766
  * @public
3767
3767
  * <p>Grant version.</p>
@@ -3833,7 +3833,7 @@ export interface UpdateLicenseConfigurationRequest {
3833
3833
  * @public
3834
3834
  * <p>New status of the license configuration.</p>
3835
3835
  */
3836
- LicenseConfigurationStatus?: LicenseConfigurationStatus | string;
3836
+ LicenseConfigurationStatus?: LicenseConfigurationStatus;
3837
3837
  /**
3838
3838
  * @public
3839
3839
  * <p>New license rule. The only rule that you can add after you create a license
@@ -3902,7 +3902,7 @@ export interface UpdateLicenseManagerReportGeneratorRequest {
3902
3902
  * </li>
3903
3903
  * </ul>
3904
3904
  */
3905
- Type: (ReportType | string)[] | undefined;
3905
+ Type: ReportType[] | undefined;
3906
3906
  /**
3907
3907
  * @public
3908
3908
  * <p>The report context.</p>
@@ -17,7 +17,7 @@ export declare const GrantStatus: {
17
17
  export type GrantStatus = (typeof GrantStatus)[keyof typeof GrantStatus];
18
18
  export interface AcceptGrantResponse {
19
19
  GrantArn?: string;
20
- Status?: GrantStatus | string;
20
+ Status?: GrantStatus;
21
21
  Version?: string;
22
22
  }
23
23
  export declare class AccessDeniedException extends __BaseException {
@@ -158,12 +158,12 @@ export type EntitlementDataUnit =
158
158
  export interface EntitlementData {
159
159
  Name: string | undefined;
160
160
  Value?: string;
161
- Unit: EntitlementDataUnit | string | undefined;
161
+ Unit: EntitlementDataUnit | undefined;
162
162
  }
163
163
  export interface CheckoutBorrowLicenseRequest {
164
164
  LicenseArn: string | undefined;
165
165
  Entitlements: EntitlementData[] | undefined;
166
- DigitalSignatureMethod: DigitalSignatureMethod | string | undefined;
166
+ DigitalSignatureMethod: DigitalSignatureMethod | undefined;
167
167
  NodeId?: string;
168
168
  CheckoutMetadata?: Metadata[];
169
169
  ClientToken: string | undefined;
@@ -219,7 +219,7 @@ export declare const CheckoutType: {
219
219
  export type CheckoutType = (typeof CheckoutType)[keyof typeof CheckoutType];
220
220
  export interface CheckoutLicenseRequest {
221
221
  ProductSKU: string | undefined;
222
- CheckoutType: CheckoutType | string | undefined;
222
+ CheckoutType: CheckoutType | undefined;
223
223
  KeyFingerprint: string | undefined;
224
224
  Entitlements: EntitlementData[] | undefined;
225
225
  ClientToken: string | undefined;
@@ -227,7 +227,7 @@ export interface CheckoutLicenseRequest {
227
227
  NodeId?: string;
228
228
  }
229
229
  export interface CheckoutLicenseResponse {
230
- CheckoutType?: CheckoutType | string;
230
+ CheckoutType?: CheckoutType;
231
231
  LicenseConsumptionToken?: string;
232
232
  EntitlementsAllowed?: EntitlementData[];
233
233
  SignedToken?: string;
@@ -242,29 +242,29 @@ export interface CreateGrantRequest {
242
242
  LicenseArn: string | undefined;
243
243
  Principals: string[] | undefined;
244
244
  HomeRegion: string | undefined;
245
- AllowedOperations: (AllowedOperation | string)[] | undefined;
245
+ AllowedOperations: AllowedOperation[] | undefined;
246
246
  }
247
247
  export interface CreateGrantResponse {
248
248
  GrantArn?: string;
249
- Status?: GrantStatus | string;
249
+ Status?: GrantStatus;
250
250
  Version?: string;
251
251
  }
252
252
  export interface Options {
253
- ActivationOverrideBehavior?: ActivationOverrideBehavior | string;
253
+ ActivationOverrideBehavior?: ActivationOverrideBehavior;
254
254
  }
255
255
  export interface CreateGrantVersionRequest {
256
256
  ClientToken: string | undefined;
257
257
  GrantArn: string | undefined;
258
258
  GrantName?: string;
259
- AllowedOperations?: (AllowedOperation | string)[];
260
- Status?: GrantStatus | string;
259
+ AllowedOperations?: AllowedOperation[];
260
+ Status?: GrantStatus;
261
261
  StatusReason?: string;
262
262
  SourceVersion?: string;
263
263
  Options?: Options;
264
264
  }
265
265
  export interface CreateGrantVersionResponse {
266
266
  GrantArn?: string;
267
- Status?: GrantStatus | string;
267
+ Status?: GrantStatus;
268
268
  Version?: string;
269
269
  }
270
270
  export interface BorrowConfiguration {
@@ -281,7 +281,7 @@ export declare const RenewType: {
281
281
  };
282
282
  export type RenewType = (typeof RenewType)[keyof typeof RenewType];
283
283
  export interface ConsumptionConfiguration {
284
- RenewType?: RenewType | string;
284
+ RenewType?: RenewType;
285
285
  ProvisionalConfiguration?: ProvisionalConfiguration;
286
286
  BorrowConfiguration?: BorrowConfiguration;
287
287
  }
@@ -321,7 +321,7 @@ export interface Entitlement {
321
321
  Value?: string;
322
322
  MaxCount?: number;
323
323
  Overage?: boolean;
324
- Unit: EntitlementUnit | string | undefined;
324
+ Unit: EntitlementUnit | undefined;
325
325
  AllowCheckIn?: boolean;
326
326
  }
327
327
  export interface Issuer {
@@ -357,7 +357,7 @@ export declare const LicenseStatus: {
357
357
  export type LicenseStatus = (typeof LicenseStatus)[keyof typeof LicenseStatus];
358
358
  export interface CreateLicenseResponse {
359
359
  LicenseArn?: string;
360
- Status?: LicenseStatus | string;
360
+ Status?: LicenseStatus;
361
361
  Version?: string;
362
362
  }
363
363
  export declare const LicenseCountingType: {
@@ -384,7 +384,7 @@ export interface Tag {
384
384
  export interface CreateLicenseConfigurationRequest {
385
385
  Name: string | undefined;
386
386
  Description?: string;
387
- LicenseCountingType: LicenseCountingType | string | undefined;
387
+ LicenseCountingType: LicenseCountingType | undefined;
388
388
  LicenseCount?: number;
389
389
  LicenseCountHardLimit?: boolean;
390
390
  LicenseRules?: string[];
@@ -418,7 +418,7 @@ export type ReportFrequencyType =
418
418
  (typeof ReportFrequencyType)[keyof typeof ReportFrequencyType];
419
419
  export interface ReportFrequency {
420
420
  value?: number;
421
- period?: ReportFrequencyType | string;
421
+ period?: ReportFrequencyType;
422
422
  }
423
423
  export declare const ReportType: {
424
424
  readonly LICENSE_CONFIGURATION_SUMMARY_REPORT: "LicenseConfigurationSummaryReport";
@@ -427,7 +427,7 @@ export declare const ReportType: {
427
427
  export type ReportType = (typeof ReportType)[keyof typeof ReportType];
428
428
  export interface CreateLicenseManagerReportGeneratorRequest {
429
429
  ReportGeneratorName: string | undefined;
430
- Type: (ReportType | string)[] | undefined;
430
+ Type: ReportType[] | undefined;
431
431
  ReportContext: ReportContext | undefined;
432
432
  ReportFrequency: ReportFrequency | undefined;
433
433
  ClientToken: string | undefined;
@@ -447,14 +447,14 @@ export interface CreateLicenseVersionRequest {
447
447
  LicenseMetadata?: Metadata[];
448
448
  Entitlements: Entitlement[] | undefined;
449
449
  ConsumptionConfiguration: ConsumptionConfiguration | undefined;
450
- Status: LicenseStatus | string | undefined;
450
+ Status: LicenseStatus | undefined;
451
451
  ClientToken: string | undefined;
452
452
  SourceVersion?: string;
453
453
  }
454
454
  export interface CreateLicenseVersionResponse {
455
455
  LicenseArn?: string;
456
456
  Version?: string;
457
- Status?: LicenseStatus | string;
457
+ Status?: LicenseStatus;
458
458
  }
459
459
  export interface CreateTokenRequest {
460
460
  LicenseArn: string | undefined;
@@ -469,7 +469,7 @@ export declare const TokenType: {
469
469
  export type TokenType = (typeof TokenType)[keyof typeof TokenType];
470
470
  export interface CreateTokenResponse {
471
471
  TokenId?: string;
472
- TokenType?: TokenType | string;
472
+ TokenType?: TokenType;
473
473
  Token?: string;
474
474
  }
475
475
  export interface DeleteGrantRequest {
@@ -479,7 +479,7 @@ export interface DeleteGrantRequest {
479
479
  }
480
480
  export interface DeleteGrantResponse {
481
481
  GrantArn?: string;
482
- Status?: GrantStatus | string;
482
+ Status?: GrantStatus;
483
483
  Version?: string;
484
484
  }
485
485
  export interface DeleteLicenseRequest {
@@ -493,7 +493,7 @@ export declare const LicenseDeletionStatus: {
493
493
  export type LicenseDeletionStatus =
494
494
  (typeof LicenseDeletionStatus)[keyof typeof LicenseDeletionStatus];
495
495
  export interface DeleteLicenseResponse {
496
- Status?: LicenseDeletionStatus | string;
496
+ Status?: LicenseDeletionStatus;
497
497
  DeletionDate?: string;
498
498
  }
499
499
  export interface DeleteLicenseConfigurationRequest {
@@ -534,10 +534,10 @@ export interface Grant {
534
534
  LicenseArn: string | undefined;
535
535
  GranteePrincipalArn: string | undefined;
536
536
  HomeRegion: string | undefined;
537
- GrantStatus: GrantStatus | string | undefined;
537
+ GrantStatus: GrantStatus | undefined;
538
538
  StatusReason?: string;
539
539
  Version: string | undefined;
540
- GrantedOperations: (AllowedOperation | string)[] | undefined;
540
+ GrantedOperations: AllowedOperation[] | undefined;
541
541
  Options?: Options;
542
542
  }
543
543
  export interface GetGrantResponse {
@@ -559,7 +559,7 @@ export interface License {
559
559
  ProductSKU?: string;
560
560
  Issuer?: IssuerDetails;
561
561
  HomeRegion?: string;
562
- Status?: LicenseStatus | string;
562
+ Status?: LicenseStatus;
563
563
  Validity?: DatetimeRange;
564
564
  Beneficiary?: string;
565
565
  Entitlements?: Entitlement[];
@@ -583,11 +583,11 @@ export declare const ResourceType: {
583
583
  };
584
584
  export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
585
585
  export interface ConsumedLicenseSummary {
586
- ResourceType?: ResourceType | string;
586
+ ResourceType?: ResourceType;
587
587
  ConsumedLicenses?: number;
588
588
  }
589
589
  export interface ManagedResourceSummary {
590
- ResourceType?: ResourceType | string;
590
+ ResourceType?: ResourceType;
591
591
  AssociationCount?: number;
592
592
  }
593
593
  export interface GetLicenseConfigurationResponse {
@@ -595,7 +595,7 @@ export interface GetLicenseConfigurationResponse {
595
595
  LicenseConfigurationArn?: string;
596
596
  Name?: string;
597
597
  Description?: string;
598
- LicenseCountingType?: LicenseCountingType | string;
598
+ LicenseCountingType?: LicenseCountingType;
599
599
  LicenseRules?: string[];
600
600
  LicenseCount?: number;
601
601
  LicenseCountHardLimit?: boolean;
@@ -625,7 +625,7 @@ export interface GetLicenseConversionTaskResponse {
625
625
  SourceLicenseContext?: LicenseConversionContext;
626
626
  DestinationLicenseContext?: LicenseConversionContext;
627
627
  StatusMessage?: string;
628
- Status?: LicenseConversionTaskStatus | string;
628
+ Status?: LicenseConversionTaskStatus;
629
629
  StartTime?: Date;
630
630
  LicenseConversionTime?: Date;
631
631
  EndTime?: Date;
@@ -639,7 +639,7 @@ export interface S3Location {
639
639
  }
640
640
  export interface ReportGenerator {
641
641
  ReportGeneratorName?: string;
642
- ReportType?: (ReportType | string)[];
642
+ ReportType?: ReportType[];
643
643
  ReportContext?: ReportContext;
644
644
  ReportFrequency?: ReportFrequency;
645
645
  LicenseManagerReportGeneratorArn?: string;
@@ -662,7 +662,7 @@ export interface EntitlementUsage {
662
662
  Name: string | undefined;
663
663
  ConsumedValue: string | undefined;
664
664
  MaxCount?: string;
665
- Unit: EntitlementDataUnit | string | undefined;
665
+ Unit: EntitlementDataUnit | undefined;
666
666
  }
667
667
  export interface LicenseUsage {
668
668
  EntitlementUsages?: EntitlementUsage[];
@@ -696,7 +696,7 @@ export interface ListAssociationsForLicenseConfigurationRequest {
696
696
  }
697
697
  export interface LicenseConfigurationAssociation {
698
698
  ResourceArn?: string;
699
- ResourceType?: ResourceType | string;
699
+ ResourceType?: ResourceType;
700
700
  ResourceOwnerId?: string;
701
701
  AssociationTime?: Date;
702
702
  AmiAssociationScope?: string;
@@ -726,7 +726,7 @@ export interface ListFailuresForLicenseConfigurationOperationsRequest {
726
726
  }
727
727
  export interface LicenseOperationFailure {
728
728
  ResourceArn?: string;
729
- ResourceType?: ResourceType | string;
729
+ ResourceType?: ResourceType;
730
730
  ErrorMessage?: string;
731
731
  FailureTime?: Date;
732
732
  OperationName?: string;
@@ -749,7 +749,7 @@ export interface LicenseConfiguration {
749
749
  LicenseConfigurationArn?: string;
750
750
  Name?: string;
751
751
  Description?: string;
752
- LicenseCountingType?: LicenseCountingType | string;
752
+ LicenseCountingType?: LicenseCountingType;
753
753
  LicenseRules?: string[];
754
754
  LicenseCount?: number;
755
755
  LicenseCountHardLimit?: boolean;
@@ -776,7 +776,7 @@ export interface LicenseConversionTask {
776
776
  ResourceArn?: string;
777
777
  SourceLicenseContext?: LicenseConversionContext;
778
778
  DestinationLicenseContext?: LicenseConversionContext;
779
- Status?: LicenseConversionTaskStatus | string;
779
+ Status?: LicenseConversionTaskStatus;
780
780
  StatusMessage?: string;
781
781
  StartTime?: Date;
782
782
  LicenseConversionTime?: Date;
@@ -866,9 +866,9 @@ export declare const ReceivedStatus: {
866
866
  export type ReceivedStatus =
867
867
  (typeof ReceivedStatus)[keyof typeof ReceivedStatus];
868
868
  export interface ReceivedMetadata {
869
- ReceivedStatus?: ReceivedStatus | string;
869
+ ReceivedStatus?: ReceivedStatus;
870
870
  ReceivedStatusReason?: string;
871
- AllowedOperations?: (AllowedOperation | string)[];
871
+ AllowedOperations?: AllowedOperation[];
872
872
  }
873
873
  export interface GrantedLicense {
874
874
  LicenseArn?: string;
@@ -877,7 +877,7 @@ export interface GrantedLicense {
877
877
  ProductSKU?: string;
878
878
  Issuer?: IssuerDetails;
879
879
  HomeRegion?: string;
880
- Status?: LicenseStatus | string;
880
+ Status?: LicenseStatus;
881
881
  Validity?: DatetimeRange;
882
882
  Beneficiary?: string;
883
883
  Entitlements?: Entitlement[];
@@ -919,7 +919,7 @@ export type InventoryFilterCondition =
919
919
  (typeof InventoryFilterCondition)[keyof typeof InventoryFilterCondition];
920
920
  export interface InventoryFilter {
921
921
  Name: string | undefined;
922
- Condition: InventoryFilterCondition | string | undefined;
922
+ Condition: InventoryFilterCondition | undefined;
923
923
  Value?: string;
924
924
  }
925
925
  export interface ListResourceInventoryRequest {
@@ -929,7 +929,7 @@ export interface ListResourceInventoryRequest {
929
929
  }
930
930
  export interface ResourceInventory {
931
931
  ResourceId?: string;
932
- ResourceType?: ResourceType | string;
932
+ ResourceType?: ResourceType;
933
933
  ResourceArn?: string;
934
934
  Platform?: string;
935
935
  PlatformVersion?: string;
@@ -972,7 +972,7 @@ export interface ListUsageForLicenseConfigurationRequest {
972
972
  }
973
973
  export interface LicenseConfigurationUsage {
974
974
  ResourceArn?: string;
975
- ResourceType?: ResourceType | string;
975
+ ResourceType?: ResourceType;
976
976
  ResourceStatus?: string;
977
977
  ResourceOwnerId?: string;
978
978
  AssociationTime?: Date;
@@ -987,7 +987,7 @@ export interface RejectGrantRequest {
987
987
  }
988
988
  export interface RejectGrantResponse {
989
989
  GrantArn?: string;
990
- Status?: GrantStatus | string;
990
+ Status?: GrantStatus;
991
991
  Version?: string;
992
992
  }
993
993
  export interface TagResourceRequest {
@@ -1008,7 +1008,7 @@ export type LicenseConfigurationStatus =
1008
1008
  (typeof LicenseConfigurationStatus)[keyof typeof LicenseConfigurationStatus];
1009
1009
  export interface UpdateLicenseConfigurationRequest {
1010
1010
  LicenseConfigurationArn: string | undefined;
1011
- LicenseConfigurationStatus?: LicenseConfigurationStatus | string;
1011
+ LicenseConfigurationStatus?: LicenseConfigurationStatus;
1012
1012
  LicenseRules?: string[];
1013
1013
  LicenseCount?: number;
1014
1014
  LicenseCountHardLimit?: boolean;
@@ -1021,7 +1021,7 @@ export interface UpdateLicenseConfigurationResponse {}
1021
1021
  export interface UpdateLicenseManagerReportGeneratorRequest {
1022
1022
  LicenseManagerReportGeneratorArn: string | undefined;
1023
1023
  ReportGeneratorName: string | undefined;
1024
- Type: (ReportType | string)[] | undefined;
1024
+ Type: ReportType[] | undefined;
1025
1025
  ReportContext: ReportContext | undefined;
1026
1026
  ReportFrequency: ReportFrequency | undefined;
1027
1027
  ClientToken: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-license-manager",
3
3
  "description": "AWS SDK for JavaScript License Manager Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.429.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",