@aws-sdk/client-license-manager 3.934.0 → 3.936.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.
@@ -1,5 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { LicenseManagerServiceException as __BaseException } from "./LicenseManagerServiceException";
1
+ import { ActivationOverrideBehavior, AllowedOperation, CheckoutType, DigitalSignatureMethod, EntitlementDataUnit, EntitlementUnit, GrantStatus, InventoryFilterCondition, LicenseConfigurationStatus, LicenseConversionTaskStatus, LicenseCountingType, LicenseDeletionStatus, LicenseStatus, ProductCodeType, ReceivedStatus, RenewType, ReportFrequencyType, ReportType, ResourceType, TokenType } from "./enums";
3
2
  /**
4
3
  * @public
5
4
  */
@@ -10,25 +9,6 @@ export interface AcceptGrantRequest {
10
9
  */
11
10
  GrantArn: string | undefined;
12
11
  }
13
- /**
14
- * @public
15
- * @enum
16
- */
17
- export declare const GrantStatus: {
18
- readonly ACTIVE: "ACTIVE";
19
- readonly DELETED: "DELETED";
20
- readonly DISABLED: "DISABLED";
21
- readonly FAILED_WORKFLOW: "FAILED_WORKFLOW";
22
- readonly PENDING_ACCEPT: "PENDING_ACCEPT";
23
- readonly PENDING_DELETE: "PENDING_DELETE";
24
- readonly PENDING_WORKFLOW: "PENDING_WORKFLOW";
25
- readonly REJECTED: "REJECTED";
26
- readonly WORKFLOW_COMPLETED: "WORKFLOW_COMPLETED";
27
- };
28
- /**
29
- * @public
30
- */
31
- export type GrantStatus = (typeof GrantStatus)[keyof typeof GrantStatus];
32
12
  /**
33
13
  * @public
34
14
  */
@@ -49,127 +29,6 @@ export interface AcceptGrantResponse {
49
29
  */
50
30
  Version?: string | undefined;
51
31
  }
52
- /**
53
- * <p>Access to resource denied.</p>
54
- * @public
55
- */
56
- export declare class AccessDeniedException extends __BaseException {
57
- readonly name: "AccessDeniedException";
58
- readonly $fault: "client";
59
- Message?: string | undefined;
60
- /**
61
- * @internal
62
- */
63
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
64
- }
65
- /**
66
- * <p>The Amazon Web Services user account does not have permission to perform the action. Check the IAM
67
- * policy associated with this account.</p>
68
- * @public
69
- */
70
- export declare class AuthorizationException extends __BaseException {
71
- readonly name: "AuthorizationException";
72
- readonly $fault: "client";
73
- Message?: string | undefined;
74
- /**
75
- * @internal
76
- */
77
- constructor(opts: __ExceptionOptionType<AuthorizationException, __BaseException>);
78
- }
79
- /**
80
- * <p>One or more parameter values are not valid.</p>
81
- * @public
82
- */
83
- export declare class InvalidParameterValueException extends __BaseException {
84
- readonly name: "InvalidParameterValueException";
85
- readonly $fault: "client";
86
- Message?: string | undefined;
87
- /**
88
- * @internal
89
- */
90
- constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
91
- }
92
- /**
93
- * <p>Too many requests have been submitted. Try again after a brief wait.</p>
94
- * @public
95
- */
96
- export declare class RateLimitExceededException extends __BaseException {
97
- readonly name: "RateLimitExceededException";
98
- readonly $fault: "client";
99
- Message?: string | undefined;
100
- /**
101
- * @internal
102
- */
103
- constructor(opts: __ExceptionOptionType<RateLimitExceededException, __BaseException>);
104
- }
105
- /**
106
- * <p>Your resource limits have been exceeded.</p>
107
- * @public
108
- */
109
- export declare class ResourceLimitExceededException extends __BaseException {
110
- readonly name: "ResourceLimitExceededException";
111
- readonly $fault: "client";
112
- Message?: string | undefined;
113
- /**
114
- * @internal
115
- */
116
- constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
117
- }
118
- /**
119
- * <p>The server experienced an internal error. Try again.</p>
120
- * @public
121
- */
122
- export declare class ServerInternalException extends __BaseException {
123
- readonly name: "ServerInternalException";
124
- readonly $fault: "server";
125
- Message?: string | undefined;
126
- /**
127
- * @internal
128
- */
129
- constructor(opts: __ExceptionOptionType<ServerInternalException, __BaseException>);
130
- }
131
- /**
132
- * <p>The provided input is not valid. Try your request again.</p>
133
- * @public
134
- */
135
- export declare class ValidationException extends __BaseException {
136
- readonly name: "ValidationException";
137
- readonly $fault: "client";
138
- Message?: string | undefined;
139
- /**
140
- * @internal
141
- */
142
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
143
- }
144
- /**
145
- * @public
146
- * @enum
147
- */
148
- export declare const ActivationOverrideBehavior: {
149
- readonly ALL_GRANTS_PERMITTED_BY_ISSUER: "ALL_GRANTS_PERMITTED_BY_ISSUER";
150
- readonly DISTRIBUTED_GRANTS_ONLY: "DISTRIBUTED_GRANTS_ONLY";
151
- };
152
- /**
153
- * @public
154
- */
155
- export type ActivationOverrideBehavior = (typeof ActivationOverrideBehavior)[keyof typeof ActivationOverrideBehavior];
156
- /**
157
- * @public
158
- * @enum
159
- */
160
- export declare const AllowedOperation: {
161
- readonly CHECKOUT_BORROW_LICENSE: "CheckoutBorrowLicense";
162
- readonly CHECKOUT_LICENSE: "CheckoutLicense";
163
- readonly CHECK_IN_LICENSE: "CheckInLicense";
164
- readonly CREATE_GRANT: "CreateGrant";
165
- readonly CREATE_TOKEN: "CreateToken";
166
- readonly EXTEND_CONSUMPTION_LICENSE: "ExtendConsumptionLicense";
167
- readonly LIST_PURCHASED_LICENSES: "ListPurchasedLicenses";
168
- };
169
- /**
170
- * @public
171
- */
172
- export type AllowedOperation = (typeof AllowedOperation)[keyof typeof AllowedOperation];
173
32
  /**
174
33
  * <p>Describes automated discovery.</p>
175
34
  * @public
@@ -201,32 +60,6 @@ export interface CheckInLicenseRequest {
201
60
  */
202
61
  export interface CheckInLicenseResponse {
203
62
  }
204
- /**
205
- * <p>There was a conflict processing the request. Try your request again.</p>
206
- * @public
207
- */
208
- export declare class ConflictException extends __BaseException {
209
- readonly name: "ConflictException";
210
- readonly $fault: "client";
211
- Message?: string | undefined;
212
- /**
213
- * @internal
214
- */
215
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
216
- }
217
- /**
218
- * <p>The resource cannot be found.</p>
219
- * @public
220
- */
221
- export declare class ResourceNotFoundException extends __BaseException {
222
- readonly name: "ResourceNotFoundException";
223
- readonly $fault: "client";
224
- Message?: string | undefined;
225
- /**
226
- * @internal
227
- */
228
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
229
- }
230
63
  /**
231
64
  * <p>Describes key/value pairs.</p>
232
65
  * @public
@@ -243,54 +76,6 @@ export interface Metadata {
243
76
  */
244
77
  Value?: string | undefined;
245
78
  }
246
- /**
247
- * @public
248
- * @enum
249
- */
250
- export declare const DigitalSignatureMethod: {
251
- readonly JWT_PS384: "JWT_PS384";
252
- };
253
- /**
254
- * @public
255
- */
256
- export type DigitalSignatureMethod = (typeof DigitalSignatureMethod)[keyof typeof DigitalSignatureMethod];
257
- /**
258
- * @public
259
- * @enum
260
- */
261
- export declare const EntitlementDataUnit: {
262
- readonly BITS: "Bits";
263
- readonly BITS_PER_SECOND: "Bits/Second";
264
- readonly BYTES: "Bytes";
265
- readonly BYTES_PER_SECOND: "Bytes/Second";
266
- readonly COUNT: "Count";
267
- readonly COUNT_PER_SECOND: "Count/Second";
268
- readonly GIGABITS: "Gigabits";
269
- readonly GIGABITS_PER_SECOND: "Gigabits/Second";
270
- readonly GIGABYTES: "Gigabytes";
271
- readonly GIGABYTES_PER_SECOND: "Gigabytes/Second";
272
- readonly KILOBITS: "Kilobits";
273
- readonly KILOBITS_PER_SECOND: "Kilobits/Second";
274
- readonly KILOBYTES: "Kilobytes";
275
- readonly KILOBYTES_PER_SECOND: "Kilobytes/Second";
276
- readonly MEGABITS: "Megabits";
277
- readonly MEGABITS_PER_SECOND: "Megabits/Second";
278
- readonly MEGABYTES: "Megabytes";
279
- readonly MEGABYTES_PER_SECOND: "Megabytes/Second";
280
- readonly MICROSECONDS: "Microseconds";
281
- readonly MILLISECONDS: "Milliseconds";
282
- readonly NONE: "None";
283
- readonly PERCENT: "Percent";
284
- readonly SECONDS: "Seconds";
285
- readonly TERABITS: "Terabits";
286
- readonly TERABITS_PER_SECOND: "Terabits/Second";
287
- readonly TERABYTES: "Terabytes";
288
- readonly TERABYTES_PER_SECOND: "Terabytes/Second";
289
- };
290
- /**
291
- * @public
292
- */
293
- export type EntitlementDataUnit = (typeof EntitlementDataUnit)[keyof typeof EntitlementDataUnit];
294
79
  /**
295
80
  * <p>Data associated with an entitlement resource.</p>
296
81
  * @public
@@ -393,71 +178,6 @@ export interface CheckoutBorrowLicenseResponse {
393
178
  */
394
179
  CheckoutMetadata?: Metadata[] | undefined;
395
180
  }
396
- /**
397
- * <p>The entitlement is not allowed.</p>
398
- * @public
399
- */
400
- export declare class EntitlementNotAllowedException extends __BaseException {
401
- readonly name: "EntitlementNotAllowedException";
402
- readonly $fault: "client";
403
- Message?: string | undefined;
404
- /**
405
- * @internal
406
- */
407
- constructor(opts: __ExceptionOptionType<EntitlementNotAllowedException, __BaseException>);
408
- }
409
- /**
410
- * <p>There are no entitlements found for this license, or the entitlement maximum count is reached.</p>
411
- * @public
412
- */
413
- export declare class NoEntitlementsAllowedException extends __BaseException {
414
- readonly name: "NoEntitlementsAllowedException";
415
- readonly $fault: "client";
416
- Message?: string | undefined;
417
- /**
418
- * @internal
419
- */
420
- constructor(opts: __ExceptionOptionType<NoEntitlementsAllowedException, __BaseException>);
421
- }
422
- /**
423
- * <p>This is not the correct Region for the resource. Try again.</p>
424
- * @public
425
- */
426
- export declare class RedirectException extends __BaseException {
427
- readonly name: "RedirectException";
428
- readonly $fault: "client";
429
- Location?: string | undefined;
430
- Message?: string | undefined;
431
- /**
432
- * @internal
433
- */
434
- constructor(opts: __ExceptionOptionType<RedirectException, __BaseException>);
435
- }
436
- /**
437
- * <p>The digital signature method is unsupported. Try your request again.</p>
438
- * @public
439
- */
440
- export declare class UnsupportedDigitalSignatureMethodException extends __BaseException {
441
- readonly name: "UnsupportedDigitalSignatureMethodException";
442
- readonly $fault: "client";
443
- Message?: string | undefined;
444
- /**
445
- * @internal
446
- */
447
- constructor(opts: __ExceptionOptionType<UnsupportedDigitalSignatureMethodException, __BaseException>);
448
- }
449
- /**
450
- * @public
451
- * @enum
452
- */
453
- export declare const CheckoutType: {
454
- readonly PERPETUAL: "PERPETUAL";
455
- readonly PROVISIONAL: "PROVISIONAL";
456
- };
457
- /**
458
- * @public
459
- */
460
- export type CheckoutType = (typeof CheckoutType)[keyof typeof CheckoutType];
461
181
  /**
462
182
  * @public
463
183
  */
@@ -772,19 +492,6 @@ export interface ProvisionalConfiguration {
772
492
  */
773
493
  MaxTimeToLiveInMinutes: number | undefined;
774
494
  }
775
- /**
776
- * @public
777
- * @enum
778
- */
779
- export declare const RenewType: {
780
- readonly MONTHLY: "Monthly";
781
- readonly NONE: "None";
782
- readonly WEEKLY: "Weekly";
783
- };
784
- /**
785
- * @public
786
- */
787
- export type RenewType = (typeof RenewType)[keyof typeof RenewType];
788
495
  /**
789
496
  * <p>Details about a consumption configuration.</p>
790
497
  * @public
@@ -806,43 +513,6 @@ export interface ConsumptionConfiguration {
806
513
  */
807
514
  BorrowConfiguration?: BorrowConfiguration | undefined;
808
515
  }
809
- /**
810
- * @public
811
- * @enum
812
- */
813
- export declare const EntitlementUnit: {
814
- readonly BITS: "Bits";
815
- readonly BITS_PER_SECOND: "Bits/Second";
816
- readonly BYTES: "Bytes";
817
- readonly BYTES_PER_SECOND: "Bytes/Second";
818
- readonly COUNT: "Count";
819
- readonly COUNT_PER_SECOND: "Count/Second";
820
- readonly GIGABITS: "Gigabits";
821
- readonly GIGABITS_PER_SECOND: "Gigabits/Second";
822
- readonly GIGABYTES: "Gigabytes";
823
- readonly GIGABYTES_PER_SECOND: "Gigabytes/Second";
824
- readonly KILOBITS: "Kilobits";
825
- readonly KILOBITS_PER_SECOND: "Kilobits/Second";
826
- readonly KILOBYTES: "Kilobytes";
827
- readonly KILOBYTES_PER_SECOND: "Kilobytes/Second";
828
- readonly MEGABITS: "Megabits";
829
- readonly MEGABITS_PER_SECOND: "Megabits/Second";
830
- readonly MEGABYTES: "Megabytes";
831
- readonly MEGABYTES_PER_SECOND: "Megabytes/Second";
832
- readonly MICROSECONDS: "Microseconds";
833
- readonly MILLISECONDS: "Milliseconds";
834
- readonly NONE: "None";
835
- readonly PERCENT: "Percent";
836
- readonly SECONDS: "Seconds";
837
- readonly TERABITS: "Terabits";
838
- readonly TERABITS_PER_SECOND: "Terabits/Second";
839
- readonly TERABYTES: "Terabytes";
840
- readonly TERABYTES_PER_SECOND: "Terabytes/Second";
841
- };
842
- /**
843
- * @public
844
- */
845
- export type EntitlementUnit = (typeof EntitlementUnit)[keyof typeof EntitlementUnit];
846
516
  /**
847
517
  * <p>Describes a resource entitled for use with a license.</p>
848
518
  * @public
@@ -980,23 +650,6 @@ export interface CreateLicenseRequest {
980
650
  */
981
651
  Tags?: Tag[] | undefined;
982
652
  }
983
- /**
984
- * @public
985
- * @enum
986
- */
987
- export declare const LicenseStatus: {
988
- readonly AVAILABLE: "AVAILABLE";
989
- readonly DEACTIVATED: "DEACTIVATED";
990
- readonly DELETED: "DELETED";
991
- readonly EXPIRED: "EXPIRED";
992
- readonly PENDING_AVAILABLE: "PENDING_AVAILABLE";
993
- readonly PENDING_DELETE: "PENDING_DELETE";
994
- readonly SUSPENDED: "SUSPENDED";
995
- };
996
- /**
997
- * @public
998
- */
999
- export type LicenseStatus = (typeof LicenseStatus)[keyof typeof LicenseStatus];
1000
653
  /**
1001
654
  * @public
1002
655
  */
@@ -1017,20 +670,6 @@ export interface CreateLicenseResponse {
1017
670
  */
1018
671
  Version?: string | undefined;
1019
672
  }
1020
- /**
1021
- * @public
1022
- * @enum
1023
- */
1024
- export declare const LicenseCountingType: {
1025
- readonly CORE: "Core";
1026
- readonly INSTANCE: "Instance";
1027
- readonly SOCKET: "Socket";
1028
- readonly VCPU: "vCPU";
1029
- };
1030
- /**
1031
- * @public
1032
- */
1033
- export type LicenseCountingType = (typeof LicenseCountingType)[keyof typeof LicenseCountingType];
1034
673
  /**
1035
674
  * <p>Describes product information filters.</p>
1036
675
  * @public
@@ -1233,17 +872,6 @@ export interface CreateLicenseConfigurationResponse {
1233
872
  */
1234
873
  LicenseConfigurationArn?: string | undefined;
1235
874
  }
1236
- /**
1237
- * @public
1238
- * @enum
1239
- */
1240
- export declare const ProductCodeType: {
1241
- readonly MARKETPLACE: "marketplace";
1242
- };
1243
- /**
1244
- * @public
1245
- */
1246
- export type ProductCodeType = (typeof ProductCodeType)[keyof typeof ProductCodeType];
1247
875
  /**
1248
876
  * <p>A list item that contains a product code.</p>
1249
877
  * @public
@@ -1321,19 +949,6 @@ export interface ReportContext {
1321
949
  */
1322
950
  licenseConfigurationArns: string[] | undefined;
1323
951
  }
1324
- /**
1325
- * @public
1326
- * @enum
1327
- */
1328
- export declare const ReportFrequencyType: {
1329
- readonly DAY: "DAY";
1330
- readonly MONTH: "MONTH";
1331
- readonly WEEK: "WEEK";
1332
- };
1333
- /**
1334
- * @public
1335
- */
1336
- export type ReportFrequencyType = (typeof ReportFrequencyType)[keyof typeof ReportFrequencyType];
1337
952
  /**
1338
953
  * <p>Details about how frequently reports are generated.</p>
1339
954
  * @public
@@ -1351,18 +966,6 @@ export interface ReportFrequency {
1351
966
  */
1352
967
  period?: ReportFrequencyType | undefined;
1353
968
  }
1354
- /**
1355
- * @public
1356
- * @enum
1357
- */
1358
- export declare const ReportType: {
1359
- readonly LICENSE_CONFIGURATION_SUMMARY_REPORT: "LicenseConfigurationSummaryReport";
1360
- readonly LICENSE_CONFIGURATION_USAGE_REPORT: "LicenseConfigurationUsageReport";
1361
- };
1362
- /**
1363
- * @public
1364
- */
1365
- export type ReportType = (typeof ReportType)[keyof typeof ReportType];
1366
969
  /**
1367
970
  * @public
1368
971
  */
@@ -1541,17 +1144,6 @@ export interface CreateTokenRequest {
1541
1144
  */
1542
1145
  ClientToken: string | undefined;
1543
1146
  }
1544
- /**
1545
- * @public
1546
- * @enum
1547
- */
1548
- export declare const TokenType: {
1549
- readonly REFRESH_TOKEN: "REFRESH_TOKEN";
1550
- };
1551
- /**
1552
- * @public
1553
- */
1554
- export type TokenType = (typeof TokenType)[keyof typeof TokenType];
1555
1147
  /**
1556
1148
  * @public
1557
1149
  */
@@ -1627,18 +1219,6 @@ export interface DeleteLicenseRequest {
1627
1219
  */
1628
1220
  SourceVersion: string | undefined;
1629
1221
  }
1630
- /**
1631
- * @public
1632
- * @enum
1633
- */
1634
- export declare const LicenseDeletionStatus: {
1635
- readonly DELETED: "DELETED";
1636
- readonly PENDING_DELETE: "PENDING_DELETE";
1637
- };
1638
- /**
1639
- * @public
1640
- */
1641
- export type LicenseDeletionStatus = (typeof LicenseDeletionStatus)[keyof typeof LicenseDeletionStatus];
1642
1222
  /**
1643
1223
  * @public
1644
1224
  */
@@ -1973,21 +1553,6 @@ export interface GetLicenseConfigurationRequest {
1973
1553
  */
1974
1554
  LicenseConfigurationArn: string | undefined;
1975
1555
  }
1976
- /**
1977
- * @public
1978
- * @enum
1979
- */
1980
- export declare const ResourceType: {
1981
- readonly EC2_AMI: "EC2_AMI";
1982
- readonly EC2_HOST: "EC2_HOST";
1983
- readonly EC2_INSTANCE: "EC2_INSTANCE";
1984
- readonly RDS: "RDS";
1985
- readonly SYSTEMS_MANAGER_MANAGED_INSTANCE: "SYSTEMS_MANAGER_MANAGED_INSTANCE";
1986
- };
1987
- /**
1988
- * @public
1989
- */
1990
- export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
1991
1556
  /**
1992
1557
  * <p>Details about license consumption.</p>
1993
1558
  * @public
@@ -2120,19 +1685,6 @@ export interface GetLicenseConversionTaskRequest {
2120
1685
  */
2121
1686
  LicenseConversionTaskId: string | undefined;
2122
1687
  }
2123
- /**
2124
- * @public
2125
- * @enum
2126
- */
2127
- export declare const LicenseConversionTaskStatus: {
2128
- readonly FAILED: "FAILED";
2129
- readonly IN_PROGRESS: "IN_PROGRESS";
2130
- readonly SUCCEEDED: "SUCCEEDED";
2131
- };
2132
- /**
2133
- * @public
2134
- */
2135
- export type LicenseConversionTaskStatus = (typeof LicenseConversionTaskStatus)[keyof typeof LicenseConversionTaskStatus];
2136
1688
  /**
2137
1689
  * @public
2138
1690
  */
@@ -2396,19 +1948,6 @@ export interface GetServiceSettingsResponse {
2396
1948
  */
2397
1949
  LicenseManagerResourceShareArn?: string | undefined;
2398
1950
  }
2399
- /**
2400
- * <p>The request uses too many filters or too many filter values.</p>
2401
- * @public
2402
- */
2403
- export declare class FilterLimitExceededException extends __BaseException {
2404
- readonly name: "FilterLimitExceededException";
2405
- readonly $fault: "client";
2406
- Message?: string | undefined;
2407
- /**
2408
- * @internal
2409
- */
2410
- constructor(opts: __ExceptionOptionType<FilterLimitExceededException, __BaseException>);
2411
- }
2412
1951
  /**
2413
1952
  * @public
2414
1953
  */
@@ -3237,24 +2776,6 @@ export interface ListReceivedLicensesRequest {
3237
2776
  */
3238
2777
  MaxResults?: number | undefined;
3239
2778
  }
3240
- /**
3241
- * @public
3242
- * @enum
3243
- */
3244
- export declare const ReceivedStatus: {
3245
- readonly ACTIVE: "ACTIVE";
3246
- readonly DELETED: "DELETED";
3247
- readonly DISABLED: "DISABLED";
3248
- readonly FAILED_WORKFLOW: "FAILED_WORKFLOW";
3249
- readonly PENDING_ACCEPT: "PENDING_ACCEPT";
3250
- readonly PENDING_WORKFLOW: "PENDING_WORKFLOW";
3251
- readonly REJECTED: "REJECTED";
3252
- readonly WORKFLOW_COMPLETED: "WORKFLOW_COMPLETED";
3253
- };
3254
- /**
3255
- * @public
3256
- */
3257
- export type ReceivedStatus = (typeof ReceivedStatus)[keyof typeof ReceivedStatus];
3258
2779
  /**
3259
2780
  * <p>Metadata associated with received licenses and grants.</p>
3260
2781
  * @public
@@ -3419,34 +2940,6 @@ export interface ListReceivedLicensesForOrganizationResponse {
3419
2940
  */
3420
2941
  NextToken?: string | undefined;
3421
2942
  }
3422
- /**
3423
- * <p>A dependency required to run the API is missing.</p>
3424
- * @public
3425
- */
3426
- export declare class FailedDependencyException extends __BaseException {
3427
- readonly name: "FailedDependencyException";
3428
- readonly $fault: "client";
3429
- Message?: string | undefined;
3430
- ErrorCode?: string | undefined;
3431
- /**
3432
- * @internal
3433
- */
3434
- constructor(opts: __ExceptionOptionType<FailedDependencyException, __BaseException>);
3435
- }
3436
- /**
3437
- * @public
3438
- * @enum
3439
- */
3440
- export declare const InventoryFilterCondition: {
3441
- readonly BEGINS_WITH: "BEGINS_WITH";
3442
- readonly CONTAINS: "CONTAINS";
3443
- readonly EQUALS: "EQUALS";
3444
- readonly NOT_EQUALS: "NOT_EQUALS";
3445
- };
3446
- /**
3447
- * @public
3448
- */
3449
- export type InventoryFilterCondition = (typeof InventoryFilterCondition)[keyof typeof InventoryFilterCondition];
3450
2943
  /**
3451
2944
  * <p>An inventory filter.</p>
3452
2945
  * @public
@@ -3870,18 +3363,6 @@ export interface UntagResourceRequest {
3870
3363
  */
3871
3364
  export interface UntagResourceResponse {
3872
3365
  }
3873
- /**
3874
- * @public
3875
- * @enum
3876
- */
3877
- export declare const LicenseConfigurationStatus: {
3878
- readonly AVAILABLE: "AVAILABLE";
3879
- readonly DISABLED: "DISABLED";
3880
- };
3881
- /**
3882
- * @public
3883
- */
3884
- export type LicenseConfigurationStatus = (typeof LicenseConfigurationStatus)[keyof typeof LicenseConfigurationStatus];
3885
3366
  /**
3886
3367
  * @public
3887
3368
  */
@@ -3991,34 +3472,6 @@ export interface UpdateLicenseManagerReportGeneratorRequest {
3991
3472
  */
3992
3473
  export interface UpdateLicenseManagerReportGeneratorResponse {
3993
3474
  }
3994
- /**
3995
- * <p>License Manager cannot allocate a license to a resource because of its state. </p>
3996
- * <p>For example, you cannot allocate a license to an instance in the process of shutting
3997
- * down.</p>
3998
- * @public
3999
- */
4000
- export declare class InvalidResourceStateException extends __BaseException {
4001
- readonly name: "InvalidResourceStateException";
4002
- readonly $fault: "client";
4003
- Message?: string | undefined;
4004
- /**
4005
- * @internal
4006
- */
4007
- constructor(opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>);
4008
- }
4009
- /**
4010
- * <p>You do not have enough licenses available to support a new resource launch.</p>
4011
- * @public
4012
- */
4013
- export declare class LicenseUsageException extends __BaseException {
4014
- readonly name: "LicenseUsageException";
4015
- readonly $fault: "client";
4016
- Message?: string | undefined;
4017
- /**
4018
- * @internal
4019
- */
4020
- constructor(opts: __ExceptionOptionType<LicenseUsageException, __BaseException>);
4021
- }
4022
3475
  /**
4023
3476
  * @public
4024
3477
  */
@@ -4,5 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { LicenseManagerExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
- export * from "./models";
7
+ export * from "./models/enums";
8
+ export * from "./models/errors";
9
+ export * from "./models/models_0";
8
10
  export { LicenseManagerServiceException } from "./models/LicenseManagerServiceException";