@aws-sdk/client-license-manager 3.300.0 → 3.303.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.
Files changed (54) hide show
  1. package/dist-cjs/models/models_0.js +153 -171
  2. package/dist-es/models/models_0.js +153 -171
  3. package/dist-types/commands/AcceptGrantCommand.d.ts +1 -1
  4. package/dist-types/commands/CheckInLicenseCommand.d.ts +1 -1
  5. package/dist-types/commands/CheckoutBorrowLicenseCommand.d.ts +5 -5
  6. package/dist-types/commands/CheckoutLicenseCommand.d.ts +3 -3
  7. package/dist-types/commands/CreateGrantCommand.d.ts +3 -3
  8. package/dist-types/commands/CreateGrantVersionCommand.d.ts +2 -2
  9. package/dist-types/commands/CreateLicenseCommand.d.ts +10 -10
  10. package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +8 -8
  11. package/dist-types/commands/CreateLicenseConversionTaskForResourceCommand.d.ts +2 -2
  12. package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +7 -7
  13. package/dist-types/commands/CreateLicenseVersionCommand.d.ts +10 -10
  14. package/dist-types/commands/CreateTokenCommand.d.ts +3 -3
  15. package/dist-types/commands/DeleteGrantCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteLicenseCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteLicenseConfigurationCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteLicenseManagerReportGeneratorCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteTokenCommand.d.ts +1 -1
  20. package/dist-types/commands/ExtendLicenseConsumptionCommand.d.ts +1 -1
  21. package/dist-types/commands/GetAccessTokenCommand.d.ts +2 -2
  22. package/dist-types/commands/GetGrantCommand.d.ts +1 -1
  23. package/dist-types/commands/GetLicenseCommand.d.ts +1 -1
  24. package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +1 -1
  25. package/dist-types/commands/GetLicenseConversionTaskCommand.d.ts +1 -1
  26. package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +1 -1
  27. package/dist-types/commands/GetLicenseUsageCommand.d.ts +1 -1
  28. package/dist-types/commands/ListAssociationsForLicenseConfigurationCommand.d.ts +1 -1
  29. package/dist-types/commands/ListDistributedGrantsCommand.d.ts +5 -5
  30. package/dist-types/commands/ListFailuresForLicenseConfigurationOperationsCommand.d.ts +1 -1
  31. package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +5 -5
  32. package/dist-types/commands/ListLicenseConversionTasksCommand.d.ts +4 -4
  33. package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +4 -4
  34. package/dist-types/commands/ListLicenseSpecificationsForResourceCommand.d.ts +1 -1
  35. package/dist-types/commands/ListLicenseVersionsCommand.d.ts +1 -1
  36. package/dist-types/commands/ListLicensesCommand.d.ts +5 -5
  37. package/dist-types/commands/ListReceivedGrantsCommand.d.ts +5 -5
  38. package/dist-types/commands/ListReceivedGrantsForOrganizationCommand.d.ts +4 -4
  39. package/dist-types/commands/ListReceivedLicensesCommand.d.ts +5 -5
  40. package/dist-types/commands/ListReceivedLicensesForOrganizationCommand.d.ts +4 -4
  41. package/dist-types/commands/ListResourceInventoryCommand.d.ts +3 -3
  42. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  43. package/dist-types/commands/ListTokensCommand.d.ts +5 -5
  44. package/dist-types/commands/ListUsageForLicenseConfigurationCommand.d.ts +4 -4
  45. package/dist-types/commands/RejectGrantCommand.d.ts +1 -1
  46. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  47. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  48. package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +6 -6
  49. package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +5 -5
  50. package/dist-types/commands/UpdateLicenseSpecificationsForResourceCommand.d.ts +3 -3
  51. package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +2 -2
  52. package/dist-types/models/models_0.d.ts +244 -154
  53. package/dist-types/ts3.4/models/models_0.d.ts +182 -153
  54. package/package.json +34 -34
@@ -3,17 +3,18 @@ import { LicenseManagerServiceException as __BaseException } from "./LicenseMana
3
3
  export interface AcceptGrantRequest {
4
4
  GrantArn: string | undefined;
5
5
  }
6
- export declare enum GrantStatus {
7
- ACTIVE = "ACTIVE",
8
- DELETED = "DELETED",
9
- DISABLED = "DISABLED",
10
- FAILED_WORKFLOW = "FAILED_WORKFLOW",
11
- PENDING_ACCEPT = "PENDING_ACCEPT",
12
- PENDING_DELETE = "PENDING_DELETE",
13
- PENDING_WORKFLOW = "PENDING_WORKFLOW",
14
- REJECTED = "REJECTED",
15
- WORKFLOW_COMPLETED = "WORKFLOW_COMPLETED",
16
- }
6
+ export declare const GrantStatus: {
7
+ readonly ACTIVE: "ACTIVE";
8
+ readonly DELETED: "DELETED";
9
+ readonly DISABLED: "DISABLED";
10
+ readonly FAILED_WORKFLOW: "FAILED_WORKFLOW";
11
+ readonly PENDING_ACCEPT: "PENDING_ACCEPT";
12
+ readonly PENDING_DELETE: "PENDING_DELETE";
13
+ readonly PENDING_WORKFLOW: "PENDING_WORKFLOW";
14
+ readonly REJECTED: "REJECTED";
15
+ readonly WORKFLOW_COMPLETED: "WORKFLOW_COMPLETED";
16
+ };
17
+ export type GrantStatus = (typeof GrantStatus)[keyof typeof GrantStatus];
17
18
  export interface AcceptGrantResponse {
18
19
  GrantArn?: string;
19
20
  Status?: GrantStatus | string;
@@ -75,15 +76,17 @@ export declare class ValidationException extends __BaseException {
75
76
  opts: __ExceptionOptionType<ValidationException, __BaseException>
76
77
  );
77
78
  }
78
- export declare enum AllowedOperation {
79
- CHECKOUT_BORROW_LICENSE = "CheckoutBorrowLicense",
80
- CHECKOUT_LICENSE = "CheckoutLicense",
81
- CHECK_IN_LICENSE = "CheckInLicense",
82
- CREATE_GRANT = "CreateGrant",
83
- CREATE_TOKEN = "CreateToken",
84
- EXTEND_CONSUMPTION_LICENSE = "ExtendConsumptionLicense",
85
- LIST_PURCHASED_LICENSES = "ListPurchasedLicenses",
86
- }
79
+ export declare const AllowedOperation: {
80
+ readonly CHECKOUT_BORROW_LICENSE: "CheckoutBorrowLicense";
81
+ readonly CHECKOUT_LICENSE: "CheckoutLicense";
82
+ readonly CHECK_IN_LICENSE: "CheckInLicense";
83
+ readonly CREATE_GRANT: "CreateGrant";
84
+ readonly CREATE_TOKEN: "CreateToken";
85
+ readonly EXTEND_CONSUMPTION_LICENSE: "ExtendConsumptionLicense";
86
+ readonly LIST_PURCHASED_LICENSES: "ListPurchasedLicenses";
87
+ };
88
+ export type AllowedOperation =
89
+ (typeof AllowedOperation)[keyof typeof AllowedOperation];
87
90
  export interface AutomatedDiscoveryInformation {
88
91
  LastRunTime?: Date;
89
92
  }
@@ -110,38 +113,42 @@ export interface Metadata {
110
113
  Name?: string;
111
114
  Value?: string;
112
115
  }
113
- export declare enum DigitalSignatureMethod {
114
- JWT_PS384 = "JWT_PS384",
115
- }
116
- export declare enum EntitlementDataUnit {
117
- BITS = "Bits",
118
- BITS_PER_SECOND = "Bits/Second",
119
- BYTES = "Bytes",
120
- BYTES_PER_SECOND = "Bytes/Second",
121
- COUNT = "Count",
122
- COUNT_PER_SECOND = "Count/Second",
123
- GIGABITS = "Gigabits",
124
- GIGABITS_PER_SECOND = "Gigabits/Second",
125
- GIGABYTES = "Gigabytes",
126
- GIGABYTES_PER_SECOND = "Gigabytes/Second",
127
- KILOBITS = "Kilobits",
128
- KILOBITS_PER_SECOND = "Kilobits/Second",
129
- KILOBYTES = "Kilobytes",
130
- KILOBYTES_PER_SECOND = "Kilobytes/Second",
131
- MEGABITS = "Megabits",
132
- MEGABITS_PER_SECOND = "Megabits/Second",
133
- MEGABYTES = "Megabytes",
134
- MEGABYTES_PER_SECOND = "Megabytes/Second",
135
- MICROSECONDS = "Microseconds",
136
- MILLISECONDS = "Milliseconds",
137
- NONE = "None",
138
- PERCENT = "Percent",
139
- SECONDS = "Seconds",
140
- TERABITS = "Terabits",
141
- TERABITS_PER_SECOND = "Terabits/Second",
142
- TERABYTES = "Terabytes",
143
- TERABYTES_PER_SECOND = "Terabytes/Second",
144
- }
116
+ export declare const DigitalSignatureMethod: {
117
+ readonly JWT_PS384: "JWT_PS384";
118
+ };
119
+ export type DigitalSignatureMethod =
120
+ (typeof DigitalSignatureMethod)[keyof typeof DigitalSignatureMethod];
121
+ export declare const EntitlementDataUnit: {
122
+ readonly BITS: "Bits";
123
+ readonly BITS_PER_SECOND: "Bits/Second";
124
+ readonly BYTES: "Bytes";
125
+ readonly BYTES_PER_SECOND: "Bytes/Second";
126
+ readonly COUNT: "Count";
127
+ readonly COUNT_PER_SECOND: "Count/Second";
128
+ readonly GIGABITS: "Gigabits";
129
+ readonly GIGABITS_PER_SECOND: "Gigabits/Second";
130
+ readonly GIGABYTES: "Gigabytes";
131
+ readonly GIGABYTES_PER_SECOND: "Gigabytes/Second";
132
+ readonly KILOBITS: "Kilobits";
133
+ readonly KILOBITS_PER_SECOND: "Kilobits/Second";
134
+ readonly KILOBYTES: "Kilobytes";
135
+ readonly KILOBYTES_PER_SECOND: "Kilobytes/Second";
136
+ readonly MEGABITS: "Megabits";
137
+ readonly MEGABITS_PER_SECOND: "Megabits/Second";
138
+ readonly MEGABYTES: "Megabytes";
139
+ readonly MEGABYTES_PER_SECOND: "Megabytes/Second";
140
+ readonly MICROSECONDS: "Microseconds";
141
+ readonly MILLISECONDS: "Milliseconds";
142
+ readonly NONE: "None";
143
+ readonly PERCENT: "Percent";
144
+ readonly SECONDS: "Seconds";
145
+ readonly TERABITS: "Terabits";
146
+ readonly TERABITS_PER_SECOND: "Terabits/Second";
147
+ readonly TERABYTES: "Terabytes";
148
+ readonly TERABYTES_PER_SECOND: "Terabytes/Second";
149
+ };
150
+ export type EntitlementDataUnit =
151
+ (typeof EntitlementDataUnit)[keyof typeof EntitlementDataUnit];
145
152
  export interface EntitlementData {
146
153
  Name: string | undefined;
147
154
  Value?: string;
@@ -199,10 +206,11 @@ export declare class UnsupportedDigitalSignatureMethodException extends __BaseEx
199
206
  >
200
207
  );
201
208
  }
202
- export declare enum CheckoutType {
203
- PERPETUAL = "PERPETUAL",
204
- PROVISIONAL = "PROVISIONAL",
205
- }
209
+ export declare const CheckoutType: {
210
+ readonly PERPETUAL: "PERPETUAL";
211
+ readonly PROVISIONAL: "PROVISIONAL";
212
+ };
213
+ export type CheckoutType = (typeof CheckoutType)[keyof typeof CheckoutType];
206
214
  export interface CheckoutLicenseRequest {
207
215
  ProductSKU: string | undefined;
208
216
  CheckoutType: CheckoutType | string | undefined;
@@ -256,45 +264,48 @@ export interface BorrowConfiguration {
256
264
  export interface ProvisionalConfiguration {
257
265
  MaxTimeToLiveInMinutes: number | undefined;
258
266
  }
259
- export declare enum RenewType {
260
- MONTHLY = "Monthly",
261
- NONE = "None",
262
- WEEKLY = "Weekly",
263
- }
267
+ export declare const RenewType: {
268
+ readonly MONTHLY: "Monthly";
269
+ readonly NONE: "None";
270
+ readonly WEEKLY: "Weekly";
271
+ };
272
+ export type RenewType = (typeof RenewType)[keyof typeof RenewType];
264
273
  export interface ConsumptionConfiguration {
265
274
  RenewType?: RenewType | string;
266
275
  ProvisionalConfiguration?: ProvisionalConfiguration;
267
276
  BorrowConfiguration?: BorrowConfiguration;
268
277
  }
269
- export declare enum EntitlementUnit {
270
- BITS = "Bits",
271
- BITS_PER_SECOND = "Bits/Second",
272
- BYTES = "Bytes",
273
- BYTES_PER_SECOND = "Bytes/Second",
274
- COUNT = "Count",
275
- COUNT_PER_SECOND = "Count/Second",
276
- GIGABITS = "Gigabits",
277
- GIGABITS_PER_SECOND = "Gigabits/Second",
278
- GIGABYTES = "Gigabytes",
279
- GIGABYTES_PER_SECOND = "Gigabytes/Second",
280
- KILOBITS = "Kilobits",
281
- KILOBITS_PER_SECOND = "Kilobits/Second",
282
- KILOBYTES = "Kilobytes",
283
- KILOBYTES_PER_SECOND = "Kilobytes/Second",
284
- MEGABITS = "Megabits",
285
- MEGABITS_PER_SECOND = "Megabits/Second",
286
- MEGABYTES = "Megabytes",
287
- MEGABYTES_PER_SECOND = "Megabytes/Second",
288
- MICROSECONDS = "Microseconds",
289
- MILLISECONDS = "Milliseconds",
290
- NONE = "None",
291
- PERCENT = "Percent",
292
- SECONDS = "Seconds",
293
- TERABITS = "Terabits",
294
- TERABITS_PER_SECOND = "Terabits/Second",
295
- TERABYTES = "Terabytes",
296
- TERABYTES_PER_SECOND = "Terabytes/Second",
297
- }
278
+ export declare const EntitlementUnit: {
279
+ readonly BITS: "Bits";
280
+ readonly BITS_PER_SECOND: "Bits/Second";
281
+ readonly BYTES: "Bytes";
282
+ readonly BYTES_PER_SECOND: "Bytes/Second";
283
+ readonly COUNT: "Count";
284
+ readonly COUNT_PER_SECOND: "Count/Second";
285
+ readonly GIGABITS: "Gigabits";
286
+ readonly GIGABITS_PER_SECOND: "Gigabits/Second";
287
+ readonly GIGABYTES: "Gigabytes";
288
+ readonly GIGABYTES_PER_SECOND: "Gigabytes/Second";
289
+ readonly KILOBITS: "Kilobits";
290
+ readonly KILOBITS_PER_SECOND: "Kilobits/Second";
291
+ readonly KILOBYTES: "Kilobytes";
292
+ readonly KILOBYTES_PER_SECOND: "Kilobytes/Second";
293
+ readonly MEGABITS: "Megabits";
294
+ readonly MEGABITS_PER_SECOND: "Megabits/Second";
295
+ readonly MEGABYTES: "Megabytes";
296
+ readonly MEGABYTES_PER_SECOND: "Megabytes/Second";
297
+ readonly MICROSECONDS: "Microseconds";
298
+ readonly MILLISECONDS: "Milliseconds";
299
+ readonly NONE: "None";
300
+ readonly PERCENT: "Percent";
301
+ readonly SECONDS: "Seconds";
302
+ readonly TERABITS: "Terabits";
303
+ readonly TERABITS_PER_SECOND: "Terabits/Second";
304
+ readonly TERABYTES: "Terabytes";
305
+ readonly TERABYTES_PER_SECOND: "Terabytes/Second";
306
+ };
307
+ export type EntitlementUnit =
308
+ (typeof EntitlementUnit)[keyof typeof EntitlementUnit];
298
309
  export interface Entitlement {
299
310
  Name: string | undefined;
300
311
  Value?: string;
@@ -324,26 +335,29 @@ export interface CreateLicenseRequest {
324
335
  LicenseMetadata?: Metadata[];
325
336
  ClientToken: string | undefined;
326
337
  }
327
- export declare enum LicenseStatus {
328
- AVAILABLE = "AVAILABLE",
329
- DEACTIVATED = "DEACTIVATED",
330
- DELETED = "DELETED",
331
- EXPIRED = "EXPIRED",
332
- PENDING_AVAILABLE = "PENDING_AVAILABLE",
333
- PENDING_DELETE = "PENDING_DELETE",
334
- SUSPENDED = "SUSPENDED",
335
- }
338
+ export declare const LicenseStatus: {
339
+ readonly AVAILABLE: "AVAILABLE";
340
+ readonly DEACTIVATED: "DEACTIVATED";
341
+ readonly DELETED: "DELETED";
342
+ readonly EXPIRED: "EXPIRED";
343
+ readonly PENDING_AVAILABLE: "PENDING_AVAILABLE";
344
+ readonly PENDING_DELETE: "PENDING_DELETE";
345
+ readonly SUSPENDED: "SUSPENDED";
346
+ };
347
+ export type LicenseStatus = (typeof LicenseStatus)[keyof typeof LicenseStatus];
336
348
  export interface CreateLicenseResponse {
337
349
  LicenseArn?: string;
338
350
  Status?: LicenseStatus | string;
339
351
  Version?: string;
340
352
  }
341
- export declare enum LicenseCountingType {
342
- CORE = "Core",
343
- INSTANCE = "Instance",
344
- SOCKET = "Socket",
345
- VCPU = "vCPU",
346
- }
353
+ export declare const LicenseCountingType: {
354
+ readonly CORE: "Core";
355
+ readonly INSTANCE: "Instance";
356
+ readonly SOCKET: "Socket";
357
+ readonly VCPU: "vCPU";
358
+ };
359
+ export type LicenseCountingType =
360
+ (typeof LicenseCountingType)[keyof typeof LicenseCountingType];
347
361
  export interface ProductInformationFilter {
348
362
  ProductInformationFilterName: string | undefined;
349
363
  ProductInformationFilterValue?: string[];
@@ -385,19 +399,22 @@ export interface CreateLicenseConversionTaskForResourceResponse {
385
399
  export interface ReportContext {
386
400
  licenseConfigurationArns: string[] | undefined;
387
401
  }
388
- export declare enum ReportFrequencyType {
389
- DAY = "DAY",
390
- MONTH = "MONTH",
391
- WEEK = "WEEK",
392
- }
402
+ export declare const ReportFrequencyType: {
403
+ readonly DAY: "DAY";
404
+ readonly MONTH: "MONTH";
405
+ readonly WEEK: "WEEK";
406
+ };
407
+ export type ReportFrequencyType =
408
+ (typeof ReportFrequencyType)[keyof typeof ReportFrequencyType];
393
409
  export interface ReportFrequency {
394
410
  value?: number;
395
411
  period?: ReportFrequencyType | string;
396
412
  }
397
- export declare enum ReportType {
398
- LICENSE_CONFIGURATION_SUMMARY_REPORT = "LicenseConfigurationSummaryReport",
399
- LICENSE_CONFIGURATION_USAGE_REPORT = "LicenseConfigurationUsageReport",
400
- }
413
+ export declare const ReportType: {
414
+ readonly LICENSE_CONFIGURATION_SUMMARY_REPORT: "LicenseConfigurationSummaryReport";
415
+ readonly LICENSE_CONFIGURATION_USAGE_REPORT: "LicenseConfigurationUsageReport";
416
+ };
417
+ export type ReportType = (typeof ReportType)[keyof typeof ReportType];
401
418
  export interface CreateLicenseManagerReportGeneratorRequest {
402
419
  ReportGeneratorName: string | undefined;
403
420
  Type: (ReportType | string)[] | undefined;
@@ -436,9 +453,10 @@ export interface CreateTokenRequest {
436
453
  TokenProperties?: string[];
437
454
  ClientToken: string | undefined;
438
455
  }
439
- export declare enum TokenType {
440
- REFRESH_TOKEN = "REFRESH_TOKEN",
441
- }
456
+ export declare const TokenType: {
457
+ readonly REFRESH_TOKEN: "REFRESH_TOKEN";
458
+ };
459
+ export type TokenType = (typeof TokenType)[keyof typeof TokenType];
442
460
  export interface CreateTokenResponse {
443
461
  TokenId?: string;
444
462
  TokenType?: TokenType | string;
@@ -458,10 +476,12 @@ export interface DeleteLicenseRequest {
458
476
  LicenseArn: string | undefined;
459
477
  SourceVersion: string | undefined;
460
478
  }
461
- export declare enum LicenseDeletionStatus {
462
- DELETED = "DELETED",
463
- PENDING_DELETE = "PENDING_DELETE",
464
- }
479
+ export declare const LicenseDeletionStatus: {
480
+ readonly DELETED: "DELETED";
481
+ readonly PENDING_DELETE: "PENDING_DELETE";
482
+ };
483
+ export type LicenseDeletionStatus =
484
+ (typeof LicenseDeletionStatus)[keyof typeof LicenseDeletionStatus];
465
485
  export interface DeleteLicenseResponse {
466
486
  Status?: LicenseDeletionStatus | string;
467
487
  DeletionDate?: string;
@@ -543,13 +563,14 @@ export interface GetLicenseResponse {
543
563
  export interface GetLicenseConfigurationRequest {
544
564
  LicenseConfigurationArn: string | undefined;
545
565
  }
546
- export declare enum ResourceType {
547
- EC2_AMI = "EC2_AMI",
548
- EC2_HOST = "EC2_HOST",
549
- EC2_INSTANCE = "EC2_INSTANCE",
550
- RDS = "RDS",
551
- SYSTEMS_MANAGER_MANAGED_INSTANCE = "SYSTEMS_MANAGER_MANAGED_INSTANCE",
552
- }
566
+ export declare const ResourceType: {
567
+ readonly EC2_AMI: "EC2_AMI";
568
+ readonly EC2_HOST: "EC2_HOST";
569
+ readonly EC2_INSTANCE: "EC2_INSTANCE";
570
+ readonly RDS: "RDS";
571
+ readonly SYSTEMS_MANAGER_MANAGED_INSTANCE: "SYSTEMS_MANAGER_MANAGED_INSTANCE";
572
+ };
573
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
553
574
  export interface ConsumedLicenseSummary {
554
575
  ResourceType?: ResourceType | string;
555
576
  ConsumedLicenses?: number;
@@ -580,11 +601,13 @@ export interface GetLicenseConfigurationResponse {
580
601
  export interface GetLicenseConversionTaskRequest {
581
602
  LicenseConversionTaskId: string | undefined;
582
603
  }
583
- export declare enum LicenseConversionTaskStatus {
584
- FAILED = "FAILED",
585
- IN_PROGRESS = "IN_PROGRESS",
586
- SUCCEEDED = "SUCCEEDED",
587
- }
604
+ export declare const LicenseConversionTaskStatus: {
605
+ readonly FAILED: "FAILED";
606
+ readonly IN_PROGRESS: "IN_PROGRESS";
607
+ readonly SUCCEEDED: "SUCCEEDED";
608
+ };
609
+ export type LicenseConversionTaskStatus =
610
+ (typeof LicenseConversionTaskStatus)[keyof typeof LicenseConversionTaskStatus];
588
611
  export interface GetLicenseConversionTaskResponse {
589
612
  LicenseConversionTaskId?: string;
590
613
  ResourceArn?: string;
@@ -819,16 +842,18 @@ export interface ListReceivedLicensesRequest {
819
842
  NextToken?: string;
820
843
  MaxResults?: number;
821
844
  }
822
- export declare enum ReceivedStatus {
823
- ACTIVE = "ACTIVE",
824
- DELETED = "DELETED",
825
- DISABLED = "DISABLED",
826
- FAILED_WORKFLOW = "FAILED_WORKFLOW",
827
- PENDING_ACCEPT = "PENDING_ACCEPT",
828
- PENDING_WORKFLOW = "PENDING_WORKFLOW",
829
- REJECTED = "REJECTED",
830
- WORKFLOW_COMPLETED = "WORKFLOW_COMPLETED",
831
- }
845
+ export declare const ReceivedStatus: {
846
+ readonly ACTIVE: "ACTIVE";
847
+ readonly DELETED: "DELETED";
848
+ readonly DISABLED: "DISABLED";
849
+ readonly FAILED_WORKFLOW: "FAILED_WORKFLOW";
850
+ readonly PENDING_ACCEPT: "PENDING_ACCEPT";
851
+ readonly PENDING_WORKFLOW: "PENDING_WORKFLOW";
852
+ readonly REJECTED: "REJECTED";
853
+ readonly WORKFLOW_COMPLETED: "WORKFLOW_COMPLETED";
854
+ };
855
+ export type ReceivedStatus =
856
+ (typeof ReceivedStatus)[keyof typeof ReceivedStatus];
832
857
  export interface ReceivedMetadata {
833
858
  ReceivedStatus?: ReceivedStatus | string;
834
859
  ReceivedStatusReason?: string;
@@ -873,12 +898,14 @@ export declare class FailedDependencyException extends __BaseException {
873
898
  opts: __ExceptionOptionType<FailedDependencyException, __BaseException>
874
899
  );
875
900
  }
876
- export declare enum InventoryFilterCondition {
877
- BEGINS_WITH = "BEGINS_WITH",
878
- CONTAINS = "CONTAINS",
879
- EQUALS = "EQUALS",
880
- NOT_EQUALS = "NOT_EQUALS",
881
- }
901
+ export declare const InventoryFilterCondition: {
902
+ readonly BEGINS_WITH: "BEGINS_WITH";
903
+ readonly CONTAINS: "CONTAINS";
904
+ readonly EQUALS: "EQUALS";
905
+ readonly NOT_EQUALS: "NOT_EQUALS";
906
+ };
907
+ export type InventoryFilterCondition =
908
+ (typeof InventoryFilterCondition)[keyof typeof InventoryFilterCondition];
882
909
  export interface InventoryFilter {
883
910
  Name: string | undefined;
884
911
  Condition: InventoryFilterCondition | string | undefined;
@@ -962,10 +989,12 @@ export interface UntagResourceRequest {
962
989
  TagKeys: string[] | undefined;
963
990
  }
964
991
  export interface UntagResourceResponse {}
965
- export declare enum LicenseConfigurationStatus {
966
- AVAILABLE = "AVAILABLE",
967
- DISABLED = "DISABLED",
968
- }
992
+ export declare const LicenseConfigurationStatus: {
993
+ readonly AVAILABLE: "AVAILABLE";
994
+ readonly DISABLED: "DISABLED";
995
+ };
996
+ export type LicenseConfigurationStatus =
997
+ (typeof LicenseConfigurationStatus)[keyof typeof LicenseConfigurationStatus];
969
998
  export interface UpdateLicenseConfigurationRequest {
970
999
  LicenseConfigurationArn: string | undefined;
971
1000
  LicenseConfigurationStatus?: LicenseConfigurationStatus | string;
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.300.0",
4
+ "version": "3.303.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,42 +21,42 @@
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.300.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "concurrently": "7.0.0",