@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.
- package/dist-cjs/index.js +161 -160
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +160 -0
- package/dist-es/models/errors.js +243 -0
- package/dist-es/models/models_0.js +1 -403
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +320 -0
- package/dist-types/models/errors.d.ts +228 -0
- package/dist-types/models/models_0.d.ts +1 -548
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +193 -0
- package/dist-types/ts3.4/models/errors.d.ts +139 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -332
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,98 +1,33 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
ActivationOverrideBehavior,
|
|
3
|
+
AllowedOperation,
|
|
4
|
+
CheckoutType,
|
|
5
|
+
DigitalSignatureMethod,
|
|
6
|
+
EntitlementDataUnit,
|
|
7
|
+
EntitlementUnit,
|
|
8
|
+
GrantStatus,
|
|
9
|
+
InventoryFilterCondition,
|
|
10
|
+
LicenseConfigurationStatus,
|
|
11
|
+
LicenseConversionTaskStatus,
|
|
12
|
+
LicenseCountingType,
|
|
13
|
+
LicenseDeletionStatus,
|
|
14
|
+
LicenseStatus,
|
|
15
|
+
ProductCodeType,
|
|
16
|
+
ReceivedStatus,
|
|
17
|
+
RenewType,
|
|
18
|
+
ReportFrequencyType,
|
|
19
|
+
ReportType,
|
|
20
|
+
ResourceType,
|
|
21
|
+
TokenType,
|
|
22
|
+
} from "./enums";
|
|
3
23
|
export interface AcceptGrantRequest {
|
|
4
24
|
GrantArn: string | undefined;
|
|
5
25
|
}
|
|
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];
|
|
18
26
|
export interface AcceptGrantResponse {
|
|
19
27
|
GrantArn?: string | undefined;
|
|
20
28
|
Status?: GrantStatus | undefined;
|
|
21
29
|
Version?: string | undefined;
|
|
22
30
|
}
|
|
23
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
24
|
-
readonly name: "AccessDeniedException";
|
|
25
|
-
readonly $fault: "client";
|
|
26
|
-
Message?: string | undefined;
|
|
27
|
-
constructor(
|
|
28
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
29
|
-
);
|
|
30
|
-
}
|
|
31
|
-
export declare class AuthorizationException extends __BaseException {
|
|
32
|
-
readonly name: "AuthorizationException";
|
|
33
|
-
readonly $fault: "client";
|
|
34
|
-
Message?: string | undefined;
|
|
35
|
-
constructor(
|
|
36
|
-
opts: __ExceptionOptionType<AuthorizationException, __BaseException>
|
|
37
|
-
);
|
|
38
|
-
}
|
|
39
|
-
export declare class InvalidParameterValueException extends __BaseException {
|
|
40
|
-
readonly name: "InvalidParameterValueException";
|
|
41
|
-
readonly $fault: "client";
|
|
42
|
-
Message?: string | undefined;
|
|
43
|
-
constructor(
|
|
44
|
-
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
45
|
-
);
|
|
46
|
-
}
|
|
47
|
-
export declare class RateLimitExceededException extends __BaseException {
|
|
48
|
-
readonly name: "RateLimitExceededException";
|
|
49
|
-
readonly $fault: "client";
|
|
50
|
-
Message?: string | undefined;
|
|
51
|
-
constructor(
|
|
52
|
-
opts: __ExceptionOptionType<RateLimitExceededException, __BaseException>
|
|
53
|
-
);
|
|
54
|
-
}
|
|
55
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
56
|
-
readonly name: "ResourceLimitExceededException";
|
|
57
|
-
readonly $fault: "client";
|
|
58
|
-
Message?: string | undefined;
|
|
59
|
-
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
61
|
-
);
|
|
62
|
-
}
|
|
63
|
-
export declare class ServerInternalException extends __BaseException {
|
|
64
|
-
readonly name: "ServerInternalException";
|
|
65
|
-
readonly $fault: "server";
|
|
66
|
-
Message?: string | undefined;
|
|
67
|
-
constructor(
|
|
68
|
-
opts: __ExceptionOptionType<ServerInternalException, __BaseException>
|
|
69
|
-
);
|
|
70
|
-
}
|
|
71
|
-
export declare class ValidationException extends __BaseException {
|
|
72
|
-
readonly name: "ValidationException";
|
|
73
|
-
readonly $fault: "client";
|
|
74
|
-
Message?: string | undefined;
|
|
75
|
-
constructor(
|
|
76
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
77
|
-
);
|
|
78
|
-
}
|
|
79
|
-
export declare const ActivationOverrideBehavior: {
|
|
80
|
-
readonly ALL_GRANTS_PERMITTED_BY_ISSUER: "ALL_GRANTS_PERMITTED_BY_ISSUER";
|
|
81
|
-
readonly DISTRIBUTED_GRANTS_ONLY: "DISTRIBUTED_GRANTS_ONLY";
|
|
82
|
-
};
|
|
83
|
-
export type ActivationOverrideBehavior =
|
|
84
|
-
(typeof ActivationOverrideBehavior)[keyof typeof ActivationOverrideBehavior];
|
|
85
|
-
export declare const AllowedOperation: {
|
|
86
|
-
readonly CHECKOUT_BORROW_LICENSE: "CheckoutBorrowLicense";
|
|
87
|
-
readonly CHECKOUT_LICENSE: "CheckoutLicense";
|
|
88
|
-
readonly CHECK_IN_LICENSE: "CheckInLicense";
|
|
89
|
-
readonly CREATE_GRANT: "CreateGrant";
|
|
90
|
-
readonly CREATE_TOKEN: "CreateToken";
|
|
91
|
-
readonly EXTEND_CONSUMPTION_LICENSE: "ExtendConsumptionLicense";
|
|
92
|
-
readonly LIST_PURCHASED_LICENSES: "ListPurchasedLicenses";
|
|
93
|
-
};
|
|
94
|
-
export type AllowedOperation =
|
|
95
|
-
(typeof AllowedOperation)[keyof typeof AllowedOperation];
|
|
96
31
|
export interface AutomatedDiscoveryInformation {
|
|
97
32
|
LastRunTime?: Date | undefined;
|
|
98
33
|
}
|
|
@@ -101,60 +36,10 @@ export interface CheckInLicenseRequest {
|
|
|
101
36
|
Beneficiary?: string | undefined;
|
|
102
37
|
}
|
|
103
38
|
export interface CheckInLicenseResponse {}
|
|
104
|
-
export declare class ConflictException extends __BaseException {
|
|
105
|
-
readonly name: "ConflictException";
|
|
106
|
-
readonly $fault: "client";
|
|
107
|
-
Message?: string | undefined;
|
|
108
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
109
|
-
}
|
|
110
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
111
|
-
readonly name: "ResourceNotFoundException";
|
|
112
|
-
readonly $fault: "client";
|
|
113
|
-
Message?: string | undefined;
|
|
114
|
-
constructor(
|
|
115
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
116
|
-
);
|
|
117
|
-
}
|
|
118
39
|
export interface Metadata {
|
|
119
40
|
Name?: string | undefined;
|
|
120
41
|
Value?: string | undefined;
|
|
121
42
|
}
|
|
122
|
-
export declare const DigitalSignatureMethod: {
|
|
123
|
-
readonly JWT_PS384: "JWT_PS384";
|
|
124
|
-
};
|
|
125
|
-
export type DigitalSignatureMethod =
|
|
126
|
-
(typeof DigitalSignatureMethod)[keyof typeof DigitalSignatureMethod];
|
|
127
|
-
export declare const EntitlementDataUnit: {
|
|
128
|
-
readonly BITS: "Bits";
|
|
129
|
-
readonly BITS_PER_SECOND: "Bits/Second";
|
|
130
|
-
readonly BYTES: "Bytes";
|
|
131
|
-
readonly BYTES_PER_SECOND: "Bytes/Second";
|
|
132
|
-
readonly COUNT: "Count";
|
|
133
|
-
readonly COUNT_PER_SECOND: "Count/Second";
|
|
134
|
-
readonly GIGABITS: "Gigabits";
|
|
135
|
-
readonly GIGABITS_PER_SECOND: "Gigabits/Second";
|
|
136
|
-
readonly GIGABYTES: "Gigabytes";
|
|
137
|
-
readonly GIGABYTES_PER_SECOND: "Gigabytes/Second";
|
|
138
|
-
readonly KILOBITS: "Kilobits";
|
|
139
|
-
readonly KILOBITS_PER_SECOND: "Kilobits/Second";
|
|
140
|
-
readonly KILOBYTES: "Kilobytes";
|
|
141
|
-
readonly KILOBYTES_PER_SECOND: "Kilobytes/Second";
|
|
142
|
-
readonly MEGABITS: "Megabits";
|
|
143
|
-
readonly MEGABITS_PER_SECOND: "Megabits/Second";
|
|
144
|
-
readonly MEGABYTES: "Megabytes";
|
|
145
|
-
readonly MEGABYTES_PER_SECOND: "Megabytes/Second";
|
|
146
|
-
readonly MICROSECONDS: "Microseconds";
|
|
147
|
-
readonly MILLISECONDS: "Milliseconds";
|
|
148
|
-
readonly NONE: "None";
|
|
149
|
-
readonly PERCENT: "Percent";
|
|
150
|
-
readonly SECONDS: "Seconds";
|
|
151
|
-
readonly TERABITS: "Terabits";
|
|
152
|
-
readonly TERABITS_PER_SECOND: "Terabits/Second";
|
|
153
|
-
readonly TERABYTES: "Terabytes";
|
|
154
|
-
readonly TERABYTES_PER_SECOND: "Terabytes/Second";
|
|
155
|
-
};
|
|
156
|
-
export type EntitlementDataUnit =
|
|
157
|
-
(typeof EntitlementDataUnit)[keyof typeof EntitlementDataUnit];
|
|
158
43
|
export interface EntitlementData {
|
|
159
44
|
Name: string | undefined;
|
|
160
45
|
Value?: string | undefined;
|
|
@@ -178,45 +63,6 @@ export interface CheckoutBorrowLicenseResponse {
|
|
|
178
63
|
Expiration?: string | undefined;
|
|
179
64
|
CheckoutMetadata?: Metadata[] | undefined;
|
|
180
65
|
}
|
|
181
|
-
export declare class EntitlementNotAllowedException extends __BaseException {
|
|
182
|
-
readonly name: "EntitlementNotAllowedException";
|
|
183
|
-
readonly $fault: "client";
|
|
184
|
-
Message?: string | undefined;
|
|
185
|
-
constructor(
|
|
186
|
-
opts: __ExceptionOptionType<EntitlementNotAllowedException, __BaseException>
|
|
187
|
-
);
|
|
188
|
-
}
|
|
189
|
-
export declare class NoEntitlementsAllowedException extends __BaseException {
|
|
190
|
-
readonly name: "NoEntitlementsAllowedException";
|
|
191
|
-
readonly $fault: "client";
|
|
192
|
-
Message?: string | undefined;
|
|
193
|
-
constructor(
|
|
194
|
-
opts: __ExceptionOptionType<NoEntitlementsAllowedException, __BaseException>
|
|
195
|
-
);
|
|
196
|
-
}
|
|
197
|
-
export declare class RedirectException extends __BaseException {
|
|
198
|
-
readonly name: "RedirectException";
|
|
199
|
-
readonly $fault: "client";
|
|
200
|
-
Location?: string | undefined;
|
|
201
|
-
Message?: string | undefined;
|
|
202
|
-
constructor(opts: __ExceptionOptionType<RedirectException, __BaseException>);
|
|
203
|
-
}
|
|
204
|
-
export declare class UnsupportedDigitalSignatureMethodException extends __BaseException {
|
|
205
|
-
readonly name: "UnsupportedDigitalSignatureMethodException";
|
|
206
|
-
readonly $fault: "client";
|
|
207
|
-
Message?: string | undefined;
|
|
208
|
-
constructor(
|
|
209
|
-
opts: __ExceptionOptionType<
|
|
210
|
-
UnsupportedDigitalSignatureMethodException,
|
|
211
|
-
__BaseException
|
|
212
|
-
>
|
|
213
|
-
);
|
|
214
|
-
}
|
|
215
|
-
export declare const CheckoutType: {
|
|
216
|
-
readonly PERPETUAL: "PERPETUAL";
|
|
217
|
-
readonly PROVISIONAL: "PROVISIONAL";
|
|
218
|
-
};
|
|
219
|
-
export type CheckoutType = (typeof CheckoutType)[keyof typeof CheckoutType];
|
|
220
66
|
export interface CheckoutLicenseRequest {
|
|
221
67
|
ProductSKU: string | undefined;
|
|
222
68
|
CheckoutType: CheckoutType | undefined;
|
|
@@ -279,48 +125,11 @@ export interface BorrowConfiguration {
|
|
|
279
125
|
export interface ProvisionalConfiguration {
|
|
280
126
|
MaxTimeToLiveInMinutes: number | undefined;
|
|
281
127
|
}
|
|
282
|
-
export declare const RenewType: {
|
|
283
|
-
readonly MONTHLY: "Monthly";
|
|
284
|
-
readonly NONE: "None";
|
|
285
|
-
readonly WEEKLY: "Weekly";
|
|
286
|
-
};
|
|
287
|
-
export type RenewType = (typeof RenewType)[keyof typeof RenewType];
|
|
288
128
|
export interface ConsumptionConfiguration {
|
|
289
129
|
RenewType?: RenewType | undefined;
|
|
290
130
|
ProvisionalConfiguration?: ProvisionalConfiguration | undefined;
|
|
291
131
|
BorrowConfiguration?: BorrowConfiguration | undefined;
|
|
292
132
|
}
|
|
293
|
-
export declare const EntitlementUnit: {
|
|
294
|
-
readonly BITS: "Bits";
|
|
295
|
-
readonly BITS_PER_SECOND: "Bits/Second";
|
|
296
|
-
readonly BYTES: "Bytes";
|
|
297
|
-
readonly BYTES_PER_SECOND: "Bytes/Second";
|
|
298
|
-
readonly COUNT: "Count";
|
|
299
|
-
readonly COUNT_PER_SECOND: "Count/Second";
|
|
300
|
-
readonly GIGABITS: "Gigabits";
|
|
301
|
-
readonly GIGABITS_PER_SECOND: "Gigabits/Second";
|
|
302
|
-
readonly GIGABYTES: "Gigabytes";
|
|
303
|
-
readonly GIGABYTES_PER_SECOND: "Gigabytes/Second";
|
|
304
|
-
readonly KILOBITS: "Kilobits";
|
|
305
|
-
readonly KILOBITS_PER_SECOND: "Kilobits/Second";
|
|
306
|
-
readonly KILOBYTES: "Kilobytes";
|
|
307
|
-
readonly KILOBYTES_PER_SECOND: "Kilobytes/Second";
|
|
308
|
-
readonly MEGABITS: "Megabits";
|
|
309
|
-
readonly MEGABITS_PER_SECOND: "Megabits/Second";
|
|
310
|
-
readonly MEGABYTES: "Megabytes";
|
|
311
|
-
readonly MEGABYTES_PER_SECOND: "Megabytes/Second";
|
|
312
|
-
readonly MICROSECONDS: "Microseconds";
|
|
313
|
-
readonly MILLISECONDS: "Milliseconds";
|
|
314
|
-
readonly NONE: "None";
|
|
315
|
-
readonly PERCENT: "Percent";
|
|
316
|
-
readonly SECONDS: "Seconds";
|
|
317
|
-
readonly TERABITS: "Terabits";
|
|
318
|
-
readonly TERABITS_PER_SECOND: "Terabits/Second";
|
|
319
|
-
readonly TERABYTES: "Terabytes";
|
|
320
|
-
readonly TERABYTES_PER_SECOND: "Terabytes/Second";
|
|
321
|
-
};
|
|
322
|
-
export type EntitlementUnit =
|
|
323
|
-
(typeof EntitlementUnit)[keyof typeof EntitlementUnit];
|
|
324
133
|
export interface Entitlement {
|
|
325
134
|
Name: string | undefined;
|
|
326
135
|
Value?: string | undefined;
|
|
@@ -351,29 +160,11 @@ export interface CreateLicenseRequest {
|
|
|
351
160
|
ClientToken: string | undefined;
|
|
352
161
|
Tags?: Tag[] | undefined;
|
|
353
162
|
}
|
|
354
|
-
export declare const LicenseStatus: {
|
|
355
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
356
|
-
readonly DEACTIVATED: "DEACTIVATED";
|
|
357
|
-
readonly DELETED: "DELETED";
|
|
358
|
-
readonly EXPIRED: "EXPIRED";
|
|
359
|
-
readonly PENDING_AVAILABLE: "PENDING_AVAILABLE";
|
|
360
|
-
readonly PENDING_DELETE: "PENDING_DELETE";
|
|
361
|
-
readonly SUSPENDED: "SUSPENDED";
|
|
362
|
-
};
|
|
363
|
-
export type LicenseStatus = (typeof LicenseStatus)[keyof typeof LicenseStatus];
|
|
364
163
|
export interface CreateLicenseResponse {
|
|
365
164
|
LicenseArn?: string | undefined;
|
|
366
165
|
Status?: LicenseStatus | undefined;
|
|
367
166
|
Version?: string | undefined;
|
|
368
167
|
}
|
|
369
|
-
export declare const LicenseCountingType: {
|
|
370
|
-
readonly CORE: "Core";
|
|
371
|
-
readonly INSTANCE: "Instance";
|
|
372
|
-
readonly SOCKET: "Socket";
|
|
373
|
-
readonly VCPU: "vCPU";
|
|
374
|
-
};
|
|
375
|
-
export type LicenseCountingType =
|
|
376
|
-
(typeof LicenseCountingType)[keyof typeof LicenseCountingType];
|
|
377
168
|
export interface ProductInformationFilter {
|
|
378
169
|
ProductInformationFilterName: string | undefined;
|
|
379
170
|
ProductInformationFilterValue?: string[] | undefined;
|
|
@@ -397,11 +188,6 @@ export interface CreateLicenseConfigurationRequest {
|
|
|
397
188
|
export interface CreateLicenseConfigurationResponse {
|
|
398
189
|
LicenseConfigurationArn?: string | undefined;
|
|
399
190
|
}
|
|
400
|
-
export declare const ProductCodeType: {
|
|
401
|
-
readonly MARKETPLACE: "marketplace";
|
|
402
|
-
};
|
|
403
|
-
export type ProductCodeType =
|
|
404
|
-
(typeof ProductCodeType)[keyof typeof ProductCodeType];
|
|
405
191
|
export interface ProductCodeListItem {
|
|
406
192
|
ProductCodeId: string | undefined;
|
|
407
193
|
ProductCodeType: ProductCodeType | undefined;
|
|
@@ -421,22 +207,10 @@ export interface CreateLicenseConversionTaskForResourceResponse {
|
|
|
421
207
|
export interface ReportContext {
|
|
422
208
|
licenseConfigurationArns: string[] | undefined;
|
|
423
209
|
}
|
|
424
|
-
export declare const ReportFrequencyType: {
|
|
425
|
-
readonly DAY: "DAY";
|
|
426
|
-
readonly MONTH: "MONTH";
|
|
427
|
-
readonly WEEK: "WEEK";
|
|
428
|
-
};
|
|
429
|
-
export type ReportFrequencyType =
|
|
430
|
-
(typeof ReportFrequencyType)[keyof typeof ReportFrequencyType];
|
|
431
210
|
export interface ReportFrequency {
|
|
432
211
|
value?: number | undefined;
|
|
433
212
|
period?: ReportFrequencyType | undefined;
|
|
434
213
|
}
|
|
435
|
-
export declare const ReportType: {
|
|
436
|
-
readonly LICENSE_CONFIGURATION_SUMMARY_REPORT: "LicenseConfigurationSummaryReport";
|
|
437
|
-
readonly LICENSE_CONFIGURATION_USAGE_REPORT: "LicenseConfigurationUsageReport";
|
|
438
|
-
};
|
|
439
|
-
export type ReportType = (typeof ReportType)[keyof typeof ReportType];
|
|
440
214
|
export interface CreateLicenseManagerReportGeneratorRequest {
|
|
441
215
|
ReportGeneratorName: string | undefined;
|
|
442
216
|
Type: ReportType[] | undefined;
|
|
@@ -475,10 +249,6 @@ export interface CreateTokenRequest {
|
|
|
475
249
|
TokenProperties?: string[] | undefined;
|
|
476
250
|
ClientToken: string | undefined;
|
|
477
251
|
}
|
|
478
|
-
export declare const TokenType: {
|
|
479
|
-
readonly REFRESH_TOKEN: "REFRESH_TOKEN";
|
|
480
|
-
};
|
|
481
|
-
export type TokenType = (typeof TokenType)[keyof typeof TokenType];
|
|
482
252
|
export interface CreateTokenResponse {
|
|
483
253
|
TokenId?: string | undefined;
|
|
484
254
|
TokenType?: TokenType | undefined;
|
|
@@ -498,12 +268,6 @@ export interface DeleteLicenseRequest {
|
|
|
498
268
|
LicenseArn: string | undefined;
|
|
499
269
|
SourceVersion: string | undefined;
|
|
500
270
|
}
|
|
501
|
-
export declare const LicenseDeletionStatus: {
|
|
502
|
-
readonly DELETED: "DELETED";
|
|
503
|
-
readonly PENDING_DELETE: "PENDING_DELETE";
|
|
504
|
-
};
|
|
505
|
-
export type LicenseDeletionStatus =
|
|
506
|
-
(typeof LicenseDeletionStatus)[keyof typeof LicenseDeletionStatus];
|
|
507
271
|
export interface DeleteLicenseResponse {
|
|
508
272
|
Status?: LicenseDeletionStatus | undefined;
|
|
509
273
|
DeletionDate?: string | undefined;
|
|
@@ -586,14 +350,6 @@ export interface GetLicenseResponse {
|
|
|
586
350
|
export interface GetLicenseConfigurationRequest {
|
|
587
351
|
LicenseConfigurationArn: string | undefined;
|
|
588
352
|
}
|
|
589
|
-
export declare const ResourceType: {
|
|
590
|
-
readonly EC2_AMI: "EC2_AMI";
|
|
591
|
-
readonly EC2_HOST: "EC2_HOST";
|
|
592
|
-
readonly EC2_INSTANCE: "EC2_INSTANCE";
|
|
593
|
-
readonly RDS: "RDS";
|
|
594
|
-
readonly SYSTEMS_MANAGER_MANAGED_INSTANCE: "SYSTEMS_MANAGER_MANAGED_INSTANCE";
|
|
595
|
-
};
|
|
596
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
597
353
|
export interface ConsumedLicenseSummary {
|
|
598
354
|
ResourceType?: ResourceType | undefined;
|
|
599
355
|
ConsumedLicenses?: number | undefined;
|
|
@@ -624,13 +380,6 @@ export interface GetLicenseConfigurationResponse {
|
|
|
624
380
|
export interface GetLicenseConversionTaskRequest {
|
|
625
381
|
LicenseConversionTaskId: string | undefined;
|
|
626
382
|
}
|
|
627
|
-
export declare const LicenseConversionTaskStatus: {
|
|
628
|
-
readonly FAILED: "FAILED";
|
|
629
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
630
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
631
|
-
};
|
|
632
|
-
export type LicenseConversionTaskStatus =
|
|
633
|
-
(typeof LicenseConversionTaskStatus)[keyof typeof LicenseConversionTaskStatus];
|
|
634
383
|
export interface GetLicenseConversionTaskResponse {
|
|
635
384
|
LicenseConversionTaskId?: string | undefined;
|
|
636
385
|
ResourceArn?: string | undefined;
|
|
@@ -693,14 +442,6 @@ export interface GetServiceSettingsResponse {
|
|
|
693
442
|
EnableCrossAccountsDiscovery?: boolean | undefined;
|
|
694
443
|
LicenseManagerResourceShareArn?: string | undefined;
|
|
695
444
|
}
|
|
696
|
-
export declare class FilterLimitExceededException extends __BaseException {
|
|
697
|
-
readonly name: "FilterLimitExceededException";
|
|
698
|
-
readonly $fault: "client";
|
|
699
|
-
Message?: string | undefined;
|
|
700
|
-
constructor(
|
|
701
|
-
opts: __ExceptionOptionType<FilterLimitExceededException, __BaseException>
|
|
702
|
-
);
|
|
703
|
-
}
|
|
704
445
|
export interface ListAssociationsForLicenseConfigurationRequest {
|
|
705
446
|
LicenseConfigurationArn: string | undefined;
|
|
706
447
|
MaxResults?: number | undefined;
|
|
@@ -867,18 +608,6 @@ export interface ListReceivedLicensesRequest {
|
|
|
867
608
|
NextToken?: string | undefined;
|
|
868
609
|
MaxResults?: number | undefined;
|
|
869
610
|
}
|
|
870
|
-
export declare const ReceivedStatus: {
|
|
871
|
-
readonly ACTIVE: "ACTIVE";
|
|
872
|
-
readonly DELETED: "DELETED";
|
|
873
|
-
readonly DISABLED: "DISABLED";
|
|
874
|
-
readonly FAILED_WORKFLOW: "FAILED_WORKFLOW";
|
|
875
|
-
readonly PENDING_ACCEPT: "PENDING_ACCEPT";
|
|
876
|
-
readonly PENDING_WORKFLOW: "PENDING_WORKFLOW";
|
|
877
|
-
readonly REJECTED: "REJECTED";
|
|
878
|
-
readonly WORKFLOW_COMPLETED: "WORKFLOW_COMPLETED";
|
|
879
|
-
};
|
|
880
|
-
export type ReceivedStatus =
|
|
881
|
-
(typeof ReceivedStatus)[keyof typeof ReceivedStatus];
|
|
882
611
|
export interface ReceivedMetadata {
|
|
883
612
|
ReceivedStatus?: ReceivedStatus | undefined;
|
|
884
613
|
ReceivedStatusReason?: string | undefined;
|
|
@@ -914,23 +643,6 @@ export interface ListReceivedLicensesForOrganizationResponse {
|
|
|
914
643
|
Licenses?: GrantedLicense[] | undefined;
|
|
915
644
|
NextToken?: string | undefined;
|
|
916
645
|
}
|
|
917
|
-
export declare class FailedDependencyException extends __BaseException {
|
|
918
|
-
readonly name: "FailedDependencyException";
|
|
919
|
-
readonly $fault: "client";
|
|
920
|
-
Message?: string | undefined;
|
|
921
|
-
ErrorCode?: string | undefined;
|
|
922
|
-
constructor(
|
|
923
|
-
opts: __ExceptionOptionType<FailedDependencyException, __BaseException>
|
|
924
|
-
);
|
|
925
|
-
}
|
|
926
|
-
export declare const InventoryFilterCondition: {
|
|
927
|
-
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
928
|
-
readonly CONTAINS: "CONTAINS";
|
|
929
|
-
readonly EQUALS: "EQUALS";
|
|
930
|
-
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
931
|
-
};
|
|
932
|
-
export type InventoryFilterCondition =
|
|
933
|
-
(typeof InventoryFilterCondition)[keyof typeof InventoryFilterCondition];
|
|
934
646
|
export interface InventoryFilter {
|
|
935
647
|
Name: string | undefined;
|
|
936
648
|
Condition: InventoryFilterCondition | undefined;
|
|
@@ -1014,12 +726,6 @@ export interface UntagResourceRequest {
|
|
|
1014
726
|
TagKeys: string[] | undefined;
|
|
1015
727
|
}
|
|
1016
728
|
export interface UntagResourceResponse {}
|
|
1017
|
-
export declare const LicenseConfigurationStatus: {
|
|
1018
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
1019
|
-
readonly DISABLED: "DISABLED";
|
|
1020
|
-
};
|
|
1021
|
-
export type LicenseConfigurationStatus =
|
|
1022
|
-
(typeof LicenseConfigurationStatus)[keyof typeof LicenseConfigurationStatus];
|
|
1023
729
|
export interface UpdateLicenseConfigurationRequest {
|
|
1024
730
|
LicenseConfigurationArn: string | undefined;
|
|
1025
731
|
LicenseConfigurationStatus?: LicenseConfigurationStatus | undefined;
|
|
@@ -1042,22 +748,6 @@ export interface UpdateLicenseManagerReportGeneratorRequest {
|
|
|
1042
748
|
Description?: string | undefined;
|
|
1043
749
|
}
|
|
1044
750
|
export interface UpdateLicenseManagerReportGeneratorResponse {}
|
|
1045
|
-
export declare class InvalidResourceStateException extends __BaseException {
|
|
1046
|
-
readonly name: "InvalidResourceStateException";
|
|
1047
|
-
readonly $fault: "client";
|
|
1048
|
-
Message?: string | undefined;
|
|
1049
|
-
constructor(
|
|
1050
|
-
opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>
|
|
1051
|
-
);
|
|
1052
|
-
}
|
|
1053
|
-
export declare class LicenseUsageException extends __BaseException {
|
|
1054
|
-
readonly name: "LicenseUsageException";
|
|
1055
|
-
readonly $fault: "client";
|
|
1056
|
-
Message?: string | undefined;
|
|
1057
|
-
constructor(
|
|
1058
|
-
opts: __ExceptionOptionType<LicenseUsageException, __BaseException>
|
|
1059
|
-
);
|
|
1060
|
-
}
|
|
1061
751
|
export interface UpdateLicenseSpecificationsForResourceRequest {
|
|
1062
752
|
ResourceArn: string | undefined;
|
|
1063
753
|
AddLicenseSpecifications?: LicenseSpecification[] | 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.
|
|
4
|
+
"version": "3.936.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-license-manager",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|