@aws-sdk/client-license-manager 3.170.0 → 3.171.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/LicenseManager.d.ts +0 -48
- package/dist-types/ts3.4/LicenseManagerClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AcceptGrantCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CheckInLicenseCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CheckoutBorrowLicenseCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CheckoutLicenseCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateGrantCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateGrantVersionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLicenseCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLicenseConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLicenseConversionTaskForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLicenseVersionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteGrantCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLicenseCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLicenseConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLicenseManagerReportGeneratorCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteTokenCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ExtendLicenseConsumptionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetGrantCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetLicenseCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetLicenseConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetLicenseConversionTaskCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetLicenseManagerReportGeneratorCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetLicenseUsageCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetServiceSettingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListAssociationsForLicenseConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListDistributedGrantsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListFailuresForLicenseConfigurationOperationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListLicenseConfigurationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListLicenseConversionTasksCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListLicenseSpecificationsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListLicenseVersionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListLicensesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListReceivedGrantsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListReceivedLicensesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListResourceInventoryCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTokensCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListUsageForLicenseConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RejectGrantCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateLicenseConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateLicenseSpecificationsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateServiceSettingsCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/LicenseManagerServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -535
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -16,77 +16,61 @@ export declare enum GrantStatus {
|
|
|
16
16
|
}
|
|
17
17
|
export interface AcceptGrantResponse {
|
|
18
18
|
GrantArn?: string;
|
|
19
|
-
|
|
20
19
|
Status?: GrantStatus | string;
|
|
21
|
-
|
|
22
20
|
Version?: string;
|
|
23
21
|
}
|
|
24
|
-
|
|
25
22
|
export declare class AccessDeniedException extends __BaseException {
|
|
26
23
|
readonly name: "AccessDeniedException";
|
|
27
24
|
readonly $fault: "client";
|
|
28
25
|
Message?: string;
|
|
29
|
-
|
|
30
26
|
constructor(
|
|
31
27
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
32
28
|
);
|
|
33
29
|
}
|
|
34
|
-
|
|
35
30
|
export declare class AuthorizationException extends __BaseException {
|
|
36
31
|
readonly name: "AuthorizationException";
|
|
37
32
|
readonly $fault: "client";
|
|
38
33
|
Message?: string;
|
|
39
|
-
|
|
40
34
|
constructor(
|
|
41
35
|
opts: __ExceptionOptionType<AuthorizationException, __BaseException>
|
|
42
36
|
);
|
|
43
37
|
}
|
|
44
|
-
|
|
45
38
|
export declare class InvalidParameterValueException extends __BaseException {
|
|
46
39
|
readonly name: "InvalidParameterValueException";
|
|
47
40
|
readonly $fault: "client";
|
|
48
41
|
Message?: string;
|
|
49
|
-
|
|
50
42
|
constructor(
|
|
51
43
|
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
52
44
|
);
|
|
53
45
|
}
|
|
54
|
-
|
|
55
46
|
export declare class RateLimitExceededException extends __BaseException {
|
|
56
47
|
readonly name: "RateLimitExceededException";
|
|
57
48
|
readonly $fault: "client";
|
|
58
49
|
Message?: string;
|
|
59
|
-
|
|
60
50
|
constructor(
|
|
61
51
|
opts: __ExceptionOptionType<RateLimitExceededException, __BaseException>
|
|
62
52
|
);
|
|
63
53
|
}
|
|
64
|
-
|
|
65
54
|
export declare class ResourceLimitExceededException extends __BaseException {
|
|
66
55
|
readonly name: "ResourceLimitExceededException";
|
|
67
56
|
readonly $fault: "client";
|
|
68
57
|
Message?: string;
|
|
69
|
-
|
|
70
58
|
constructor(
|
|
71
59
|
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
72
60
|
);
|
|
73
61
|
}
|
|
74
|
-
|
|
75
62
|
export declare class ServerInternalException extends __BaseException {
|
|
76
63
|
readonly name: "ServerInternalException";
|
|
77
64
|
readonly $fault: "server";
|
|
78
65
|
Message?: string;
|
|
79
|
-
|
|
80
66
|
constructor(
|
|
81
67
|
opts: __ExceptionOptionType<ServerInternalException, __BaseException>
|
|
82
68
|
);
|
|
83
69
|
}
|
|
84
|
-
|
|
85
70
|
export declare class ValidationException extends __BaseException {
|
|
86
71
|
readonly name: "ValidationException";
|
|
87
72
|
readonly $fault: "client";
|
|
88
73
|
Message?: string;
|
|
89
|
-
|
|
90
74
|
constructor(
|
|
91
75
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
92
76
|
);
|
|
@@ -100,38 +84,30 @@ export declare enum AllowedOperation {
|
|
|
100
84
|
EXTEND_CONSUMPTION_LICENSE = "ExtendConsumptionLicense",
|
|
101
85
|
LIST_PURCHASED_LICENSES = "ListPurchasedLicenses",
|
|
102
86
|
}
|
|
103
|
-
|
|
104
87
|
export interface AutomatedDiscoveryInformation {
|
|
105
88
|
LastRunTime?: Date;
|
|
106
89
|
}
|
|
107
90
|
export interface CheckInLicenseRequest {
|
|
108
91
|
LicenseConsumptionToken: string | undefined;
|
|
109
|
-
|
|
110
92
|
Beneficiary?: string;
|
|
111
93
|
}
|
|
112
94
|
export interface CheckInLicenseResponse {}
|
|
113
|
-
|
|
114
95
|
export declare class ConflictException extends __BaseException {
|
|
115
96
|
readonly name: "ConflictException";
|
|
116
97
|
readonly $fault: "client";
|
|
117
98
|
Message?: string;
|
|
118
|
-
|
|
119
99
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
120
100
|
}
|
|
121
|
-
|
|
122
101
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
123
102
|
readonly name: "ResourceNotFoundException";
|
|
124
103
|
readonly $fault: "client";
|
|
125
104
|
Message?: string;
|
|
126
|
-
|
|
127
105
|
constructor(
|
|
128
106
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
129
107
|
);
|
|
130
108
|
}
|
|
131
|
-
|
|
132
109
|
export interface Metadata {
|
|
133
110
|
Name?: string;
|
|
134
|
-
|
|
135
111
|
Value?: string;
|
|
136
112
|
}
|
|
137
113
|
export declare enum DigitalSignatureMethod {
|
|
@@ -166,79 +142,56 @@ export declare enum EntitlementDataUnit {
|
|
|
166
142
|
TERABYTES = "Terabytes",
|
|
167
143
|
TERABYTES_PER_SECOND = "Terabytes/Second",
|
|
168
144
|
}
|
|
169
|
-
|
|
170
145
|
export interface EntitlementData {
|
|
171
146
|
Name: string | undefined;
|
|
172
|
-
|
|
173
147
|
Value?: string;
|
|
174
|
-
|
|
175
148
|
Unit: EntitlementDataUnit | string | undefined;
|
|
176
149
|
}
|
|
177
150
|
export interface CheckoutBorrowLicenseRequest {
|
|
178
151
|
LicenseArn: string | undefined;
|
|
179
|
-
|
|
180
152
|
Entitlements: EntitlementData[] | undefined;
|
|
181
|
-
|
|
182
153
|
DigitalSignatureMethod: DigitalSignatureMethod | string | undefined;
|
|
183
|
-
|
|
184
154
|
NodeId?: string;
|
|
185
|
-
|
|
186
155
|
CheckoutMetadata?: Metadata[];
|
|
187
|
-
|
|
188
156
|
ClientToken: string | undefined;
|
|
189
157
|
}
|
|
190
158
|
export interface CheckoutBorrowLicenseResponse {
|
|
191
159
|
LicenseArn?: string;
|
|
192
|
-
|
|
193
160
|
LicenseConsumptionToken?: string;
|
|
194
|
-
|
|
195
161
|
EntitlementsAllowed?: EntitlementData[];
|
|
196
|
-
|
|
197
162
|
NodeId?: string;
|
|
198
|
-
|
|
199
163
|
SignedToken?: string;
|
|
200
|
-
|
|
201
164
|
IssuedAt?: string;
|
|
202
|
-
|
|
203
165
|
Expiration?: string;
|
|
204
|
-
|
|
205
166
|
CheckoutMetadata?: Metadata[];
|
|
206
167
|
}
|
|
207
|
-
|
|
208
168
|
export declare class EntitlementNotAllowedException extends __BaseException {
|
|
209
169
|
readonly name: "EntitlementNotAllowedException";
|
|
210
170
|
readonly $fault: "client";
|
|
211
171
|
Message?: string;
|
|
212
|
-
|
|
213
172
|
constructor(
|
|
214
173
|
opts: __ExceptionOptionType<EntitlementNotAllowedException, __BaseException>
|
|
215
174
|
);
|
|
216
175
|
}
|
|
217
|
-
|
|
218
176
|
export declare class NoEntitlementsAllowedException extends __BaseException {
|
|
219
177
|
readonly name: "NoEntitlementsAllowedException";
|
|
220
178
|
readonly $fault: "client";
|
|
221
179
|
Message?: string;
|
|
222
|
-
|
|
223
180
|
constructor(
|
|
224
181
|
opts: __ExceptionOptionType<NoEntitlementsAllowedException, __BaseException>
|
|
225
182
|
);
|
|
226
183
|
}
|
|
227
|
-
|
|
228
184
|
export declare class RedirectException extends __BaseException {
|
|
229
185
|
readonly name: "RedirectException";
|
|
230
186
|
readonly $fault: "client";
|
|
231
187
|
Location?: string;
|
|
232
188
|
Message?: string;
|
|
233
|
-
|
|
234
189
|
constructor(opts: __ExceptionOptionType<RedirectException, __BaseException>);
|
|
235
190
|
}
|
|
236
|
-
|
|
237
191
|
export declare class UnsupportedDigitalSignatureMethodException extends __BaseException {
|
|
238
192
|
readonly name: "UnsupportedDigitalSignatureMethodException";
|
|
239
193
|
readonly $fault: "client";
|
|
240
194
|
Message?: string;
|
|
241
|
-
|
|
242
195
|
constructor(
|
|
243
196
|
opts: __ExceptionOptionType<
|
|
244
197
|
UnsupportedDigitalSignatureMethodException,
|
|
@@ -252,85 +205,54 @@ export declare enum CheckoutType {
|
|
|
252
205
|
}
|
|
253
206
|
export interface CheckoutLicenseRequest {
|
|
254
207
|
ProductSKU: string | undefined;
|
|
255
|
-
|
|
256
208
|
CheckoutType: CheckoutType | string | undefined;
|
|
257
|
-
|
|
258
209
|
KeyFingerprint: string | undefined;
|
|
259
|
-
|
|
260
210
|
Entitlements: EntitlementData[] | undefined;
|
|
261
|
-
|
|
262
211
|
ClientToken: string | undefined;
|
|
263
|
-
|
|
264
212
|
Beneficiary?: string;
|
|
265
|
-
|
|
266
213
|
NodeId?: string;
|
|
267
214
|
}
|
|
268
215
|
export interface CheckoutLicenseResponse {
|
|
269
216
|
CheckoutType?: CheckoutType | string;
|
|
270
|
-
|
|
271
217
|
LicenseConsumptionToken?: string;
|
|
272
|
-
|
|
273
218
|
EntitlementsAllowed?: EntitlementData[];
|
|
274
|
-
|
|
275
219
|
SignedToken?: string;
|
|
276
|
-
|
|
277
220
|
NodeId?: string;
|
|
278
|
-
|
|
279
221
|
IssuedAt?: string;
|
|
280
|
-
|
|
281
222
|
Expiration?: string;
|
|
282
|
-
|
|
283
223
|
LicenseArn?: string;
|
|
284
224
|
}
|
|
285
225
|
export interface CreateGrantRequest {
|
|
286
226
|
ClientToken: string | undefined;
|
|
287
|
-
|
|
288
227
|
GrantName: string | undefined;
|
|
289
|
-
|
|
290
228
|
LicenseArn: string | undefined;
|
|
291
|
-
|
|
292
229
|
Principals: string[] | undefined;
|
|
293
|
-
|
|
294
230
|
HomeRegion: string | undefined;
|
|
295
|
-
|
|
296
231
|
AllowedOperations: (AllowedOperation | string)[] | undefined;
|
|
297
232
|
}
|
|
298
233
|
export interface CreateGrantResponse {
|
|
299
234
|
GrantArn?: string;
|
|
300
|
-
|
|
301
235
|
Status?: GrantStatus | string;
|
|
302
|
-
|
|
303
236
|
Version?: string;
|
|
304
237
|
}
|
|
305
238
|
export interface CreateGrantVersionRequest {
|
|
306
239
|
ClientToken: string | undefined;
|
|
307
|
-
|
|
308
240
|
GrantArn: string | undefined;
|
|
309
|
-
|
|
310
241
|
GrantName?: string;
|
|
311
|
-
|
|
312
242
|
AllowedOperations?: (AllowedOperation | string)[];
|
|
313
|
-
|
|
314
243
|
Status?: GrantStatus | string;
|
|
315
|
-
|
|
316
244
|
StatusReason?: string;
|
|
317
|
-
|
|
318
245
|
SourceVersion?: string;
|
|
319
246
|
}
|
|
320
247
|
export interface CreateGrantVersionResponse {
|
|
321
248
|
GrantArn?: string;
|
|
322
|
-
|
|
323
249
|
Status?: GrantStatus | string;
|
|
324
|
-
|
|
325
250
|
Version?: string;
|
|
326
251
|
}
|
|
327
|
-
|
|
328
252
|
export interface BorrowConfiguration {
|
|
329
253
|
AllowEarlyCheckIn: boolean | undefined;
|
|
330
|
-
|
|
331
254
|
MaxTimeToLiveInMinutes: number | undefined;
|
|
332
255
|
}
|
|
333
|
-
|
|
334
256
|
export interface ProvisionalConfiguration {
|
|
335
257
|
MaxTimeToLiveInMinutes: number | undefined;
|
|
336
258
|
}
|
|
@@ -339,12 +261,9 @@ export declare enum RenewType {
|
|
|
339
261
|
NONE = "None",
|
|
340
262
|
WEEKLY = "Weekly",
|
|
341
263
|
}
|
|
342
|
-
|
|
343
264
|
export interface ConsumptionConfiguration {
|
|
344
265
|
RenewType?: RenewType | string;
|
|
345
|
-
|
|
346
266
|
ProvisionalConfiguration?: ProvisionalConfiguration;
|
|
347
|
-
|
|
348
267
|
BorrowConfiguration?: BorrowConfiguration;
|
|
349
268
|
}
|
|
350
269
|
export declare enum EntitlementUnit {
|
|
@@ -376,53 +295,33 @@ export declare enum EntitlementUnit {
|
|
|
376
295
|
TERABYTES = "Terabytes",
|
|
377
296
|
TERABYTES_PER_SECOND = "Terabytes/Second",
|
|
378
297
|
}
|
|
379
|
-
|
|
380
298
|
export interface Entitlement {
|
|
381
299
|
Name: string | undefined;
|
|
382
|
-
|
|
383
300
|
Value?: string;
|
|
384
|
-
|
|
385
301
|
MaxCount?: number;
|
|
386
|
-
|
|
387
302
|
Overage?: boolean;
|
|
388
|
-
|
|
389
303
|
Unit: EntitlementUnit | string | undefined;
|
|
390
|
-
|
|
391
304
|
AllowCheckIn?: boolean;
|
|
392
305
|
}
|
|
393
|
-
|
|
394
306
|
export interface Issuer {
|
|
395
307
|
Name: string | undefined;
|
|
396
|
-
|
|
397
308
|
SignKey?: string;
|
|
398
309
|
}
|
|
399
|
-
|
|
400
310
|
export interface DatetimeRange {
|
|
401
311
|
Begin: string | undefined;
|
|
402
|
-
|
|
403
312
|
End?: string;
|
|
404
313
|
}
|
|
405
314
|
export interface CreateLicenseRequest {
|
|
406
315
|
LicenseName: string | undefined;
|
|
407
|
-
|
|
408
316
|
ProductName: string | undefined;
|
|
409
|
-
|
|
410
317
|
ProductSKU: string | undefined;
|
|
411
|
-
|
|
412
318
|
Issuer: Issuer | undefined;
|
|
413
|
-
|
|
414
319
|
HomeRegion: string | undefined;
|
|
415
|
-
|
|
416
320
|
Validity: DatetimeRange | undefined;
|
|
417
|
-
|
|
418
321
|
Entitlements: Entitlement[] | undefined;
|
|
419
|
-
|
|
420
322
|
Beneficiary: string | undefined;
|
|
421
|
-
|
|
422
323
|
ConsumptionConfiguration: ConsumptionConfiguration | undefined;
|
|
423
|
-
|
|
424
324
|
LicenseMetadata?: Metadata[];
|
|
425
|
-
|
|
426
325
|
ClientToken: string | undefined;
|
|
427
326
|
}
|
|
428
327
|
export declare enum LicenseStatus {
|
|
@@ -436,9 +335,7 @@ export declare enum LicenseStatus {
|
|
|
436
335
|
}
|
|
437
336
|
export interface CreateLicenseResponse {
|
|
438
337
|
LicenseArn?: string;
|
|
439
|
-
|
|
440
338
|
Status?: LicenseStatus | string;
|
|
441
|
-
|
|
442
339
|
Version?: string;
|
|
443
340
|
}
|
|
444
341
|
export declare enum LicenseCountingType {
|
|
@@ -447,63 +344,44 @@ export declare enum LicenseCountingType {
|
|
|
447
344
|
SOCKET = "Socket",
|
|
448
345
|
VCPU = "vCPU",
|
|
449
346
|
}
|
|
450
|
-
|
|
451
347
|
export interface ProductInformationFilter {
|
|
452
348
|
ProductInformationFilterName: string | undefined;
|
|
453
|
-
|
|
454
349
|
ProductInformationFilterValue?: string[];
|
|
455
|
-
|
|
456
350
|
ProductInformationFilterComparator: string | undefined;
|
|
457
351
|
}
|
|
458
|
-
|
|
459
352
|
export interface ProductInformation {
|
|
460
353
|
ResourceType: string | undefined;
|
|
461
|
-
|
|
462
354
|
ProductInformationFilterList: ProductInformationFilter[] | undefined;
|
|
463
355
|
}
|
|
464
|
-
|
|
465
356
|
export interface Tag {
|
|
466
357
|
Key?: string;
|
|
467
|
-
|
|
468
358
|
Value?: string;
|
|
469
359
|
}
|
|
470
360
|
export interface CreateLicenseConfigurationRequest {
|
|
471
361
|
Name: string | undefined;
|
|
472
|
-
|
|
473
362
|
Description?: string;
|
|
474
|
-
|
|
475
363
|
LicenseCountingType: LicenseCountingType | string | undefined;
|
|
476
|
-
|
|
477
364
|
LicenseCount?: number;
|
|
478
|
-
|
|
479
365
|
LicenseCountHardLimit?: boolean;
|
|
480
|
-
|
|
481
366
|
LicenseRules?: string[];
|
|
482
|
-
|
|
483
367
|
Tags?: Tag[];
|
|
484
|
-
|
|
485
368
|
DisassociateWhenNotFound?: boolean;
|
|
486
|
-
|
|
487
369
|
ProductInformationList?: ProductInformation[];
|
|
488
370
|
}
|
|
489
371
|
export interface CreateLicenseConfigurationResponse {
|
|
490
372
|
LicenseConfigurationArn?: string;
|
|
491
373
|
}
|
|
492
|
-
|
|
493
374
|
export interface LicenseConversionContext {
|
|
494
375
|
UsageOperation?: string;
|
|
495
376
|
}
|
|
496
377
|
export interface CreateLicenseConversionTaskForResourceRequest {
|
|
497
378
|
ResourceArn: string | undefined;
|
|
498
|
-
|
|
499
379
|
SourceLicenseContext: LicenseConversionContext | undefined;
|
|
500
|
-
|
|
501
380
|
DestinationLicenseContext: LicenseConversionContext | undefined;
|
|
502
381
|
}
|
|
503
382
|
export interface CreateLicenseConversionTaskForResourceResponse {
|
|
504
383
|
LicenseConversionTaskId?: string;
|
|
505
384
|
}
|
|
506
|
-
|
|
507
385
|
export interface ReportContext {
|
|
508
386
|
licenseConfigurationArns: string[] | undefined;
|
|
509
387
|
}
|
|
@@ -512,10 +390,8 @@ export declare enum ReportFrequencyType {
|
|
|
512
390
|
MONTH = "MONTH",
|
|
513
391
|
WEEK = "WEEK",
|
|
514
392
|
}
|
|
515
|
-
|
|
516
393
|
export interface ReportFrequency {
|
|
517
394
|
value?: number;
|
|
518
|
-
|
|
519
395
|
period?: ReportFrequencyType | string;
|
|
520
396
|
}
|
|
521
397
|
export declare enum ReportType {
|
|
@@ -524,17 +400,11 @@ export declare enum ReportType {
|
|
|
524
400
|
}
|
|
525
401
|
export interface CreateLicenseManagerReportGeneratorRequest {
|
|
526
402
|
ReportGeneratorName: string | undefined;
|
|
527
|
-
|
|
528
403
|
Type: (ReportType | string)[] | undefined;
|
|
529
|
-
|
|
530
404
|
ReportContext: ReportContext | undefined;
|
|
531
|
-
|
|
532
405
|
ReportFrequency: ReportFrequency | undefined;
|
|
533
|
-
|
|
534
406
|
ClientToken: string | undefined;
|
|
535
|
-
|
|
536
407
|
Description?: string;
|
|
537
|
-
|
|
538
408
|
Tags?: Tag[];
|
|
539
409
|
}
|
|
540
410
|
export interface CreateLicenseManagerReportGeneratorResponse {
|
|
@@ -542,45 +412,28 @@ export interface CreateLicenseManagerReportGeneratorResponse {
|
|
|
542
412
|
}
|
|
543
413
|
export interface CreateLicenseVersionRequest {
|
|
544
414
|
LicenseArn: string | undefined;
|
|
545
|
-
|
|
546
415
|
LicenseName: string | undefined;
|
|
547
|
-
|
|
548
416
|
ProductName: string | undefined;
|
|
549
|
-
|
|
550
417
|
Issuer: Issuer | undefined;
|
|
551
|
-
|
|
552
418
|
HomeRegion: string | undefined;
|
|
553
|
-
|
|
554
419
|
Validity: DatetimeRange | undefined;
|
|
555
|
-
|
|
556
420
|
LicenseMetadata?: Metadata[];
|
|
557
|
-
|
|
558
421
|
Entitlements: Entitlement[] | undefined;
|
|
559
|
-
|
|
560
422
|
ConsumptionConfiguration: ConsumptionConfiguration | undefined;
|
|
561
|
-
|
|
562
423
|
Status: LicenseStatus | string | undefined;
|
|
563
|
-
|
|
564
424
|
ClientToken: string | undefined;
|
|
565
|
-
|
|
566
425
|
SourceVersion?: string;
|
|
567
426
|
}
|
|
568
427
|
export interface CreateLicenseVersionResponse {
|
|
569
428
|
LicenseArn?: string;
|
|
570
|
-
|
|
571
429
|
Version?: string;
|
|
572
|
-
|
|
573
430
|
Status?: LicenseStatus | string;
|
|
574
431
|
}
|
|
575
432
|
export interface CreateTokenRequest {
|
|
576
433
|
LicenseArn: string | undefined;
|
|
577
|
-
|
|
578
434
|
RoleArns?: string[];
|
|
579
|
-
|
|
580
435
|
ExpirationInDays?: number;
|
|
581
|
-
|
|
582
436
|
TokenProperties?: string[];
|
|
583
|
-
|
|
584
437
|
ClientToken: string | undefined;
|
|
585
438
|
}
|
|
586
439
|
export declare enum TokenType {
|
|
@@ -588,28 +441,21 @@ export declare enum TokenType {
|
|
|
588
441
|
}
|
|
589
442
|
export interface CreateTokenResponse {
|
|
590
443
|
TokenId?: string;
|
|
591
|
-
|
|
592
444
|
TokenType?: TokenType | string;
|
|
593
|
-
|
|
594
445
|
Token?: string;
|
|
595
446
|
}
|
|
596
447
|
export interface DeleteGrantRequest {
|
|
597
448
|
GrantArn: string | undefined;
|
|
598
|
-
|
|
599
449
|
StatusReason?: string;
|
|
600
|
-
|
|
601
450
|
Version: string | undefined;
|
|
602
451
|
}
|
|
603
452
|
export interface DeleteGrantResponse {
|
|
604
453
|
GrantArn?: string;
|
|
605
|
-
|
|
606
454
|
Status?: GrantStatus | string;
|
|
607
|
-
|
|
608
455
|
Version?: string;
|
|
609
456
|
}
|
|
610
457
|
export interface DeleteLicenseRequest {
|
|
611
458
|
LicenseArn: string | undefined;
|
|
612
|
-
|
|
613
459
|
SourceVersion: string | undefined;
|
|
614
460
|
}
|
|
615
461
|
export declare enum LicenseDeletionStatus {
|
|
@@ -618,7 +464,6 @@ export declare enum LicenseDeletionStatus {
|
|
|
618
464
|
}
|
|
619
465
|
export interface DeleteLicenseResponse {
|
|
620
466
|
Status?: LicenseDeletionStatus | string;
|
|
621
|
-
|
|
622
467
|
DeletionDate?: string;
|
|
623
468
|
}
|
|
624
469
|
export interface DeleteLicenseConfigurationRequest {
|
|
@@ -635,17 +480,14 @@ export interface DeleteTokenRequest {
|
|
|
635
480
|
export interface DeleteTokenResponse {}
|
|
636
481
|
export interface ExtendLicenseConsumptionRequest {
|
|
637
482
|
LicenseConsumptionToken: string | undefined;
|
|
638
|
-
|
|
639
483
|
DryRun?: boolean;
|
|
640
484
|
}
|
|
641
485
|
export interface ExtendLicenseConsumptionResponse {
|
|
642
486
|
LicenseConsumptionToken?: string;
|
|
643
|
-
|
|
644
487
|
Expiration?: string;
|
|
645
488
|
}
|
|
646
489
|
export interface GetAccessTokenRequest {
|
|
647
490
|
Token: string | undefined;
|
|
648
|
-
|
|
649
491
|
TokenProperties?: string[];
|
|
650
492
|
}
|
|
651
493
|
export interface GetAccessTokenResponse {
|
|
@@ -653,29 +495,18 @@ export interface GetAccessTokenResponse {
|
|
|
653
495
|
}
|
|
654
496
|
export interface GetGrantRequest {
|
|
655
497
|
GrantArn: string | undefined;
|
|
656
|
-
|
|
657
498
|
Version?: string;
|
|
658
499
|
}
|
|
659
|
-
|
|
660
500
|
export interface Grant {
|
|
661
501
|
GrantArn: string | undefined;
|
|
662
|
-
|
|
663
502
|
GrantName: string | undefined;
|
|
664
|
-
|
|
665
503
|
ParentArn: string | undefined;
|
|
666
|
-
|
|
667
504
|
LicenseArn: string | undefined;
|
|
668
|
-
|
|
669
505
|
GranteePrincipalArn: string | undefined;
|
|
670
|
-
|
|
671
506
|
HomeRegion: string | undefined;
|
|
672
|
-
|
|
673
507
|
GrantStatus: GrantStatus | string | undefined;
|
|
674
|
-
|
|
675
508
|
StatusReason?: string;
|
|
676
|
-
|
|
677
509
|
Version: string | undefined;
|
|
678
|
-
|
|
679
510
|
GrantedOperations: (AllowedOperation | string)[] | undefined;
|
|
680
511
|
}
|
|
681
512
|
export interface GetGrantResponse {
|
|
@@ -683,45 +514,27 @@ export interface GetGrantResponse {
|
|
|
683
514
|
}
|
|
684
515
|
export interface GetLicenseRequest {
|
|
685
516
|
LicenseArn: string | undefined;
|
|
686
|
-
|
|
687
517
|
Version?: string;
|
|
688
518
|
}
|
|
689
|
-
|
|
690
519
|
export interface IssuerDetails {
|
|
691
520
|
Name?: string;
|
|
692
|
-
|
|
693
521
|
SignKey?: string;
|
|
694
|
-
|
|
695
522
|
KeyFingerprint?: string;
|
|
696
523
|
}
|
|
697
|
-
|
|
698
524
|
export interface License {
|
|
699
525
|
LicenseArn?: string;
|
|
700
|
-
|
|
701
526
|
LicenseName?: string;
|
|
702
|
-
|
|
703
527
|
ProductName?: string;
|
|
704
|
-
|
|
705
528
|
ProductSKU?: string;
|
|
706
|
-
|
|
707
529
|
Issuer?: IssuerDetails;
|
|
708
|
-
|
|
709
530
|
HomeRegion?: string;
|
|
710
|
-
|
|
711
531
|
Status?: LicenseStatus | string;
|
|
712
|
-
|
|
713
532
|
Validity?: DatetimeRange;
|
|
714
|
-
|
|
715
533
|
Beneficiary?: string;
|
|
716
|
-
|
|
717
534
|
Entitlements?: Entitlement[];
|
|
718
|
-
|
|
719
535
|
ConsumptionConfiguration?: ConsumptionConfiguration;
|
|
720
|
-
|
|
721
536
|
LicenseMetadata?: Metadata[];
|
|
722
|
-
|
|
723
537
|
CreateTime?: string;
|
|
724
|
-
|
|
725
538
|
Version?: string;
|
|
726
539
|
}
|
|
727
540
|
export interface GetLicenseResponse {
|
|
@@ -737,51 +550,31 @@ export declare enum ResourceType {
|
|
|
737
550
|
RDS = "RDS",
|
|
738
551
|
SYSTEMS_MANAGER_MANAGED_INSTANCE = "SYSTEMS_MANAGER_MANAGED_INSTANCE",
|
|
739
552
|
}
|
|
740
|
-
|
|
741
553
|
export interface ConsumedLicenseSummary {
|
|
742
554
|
ResourceType?: ResourceType | string;
|
|
743
|
-
|
|
744
555
|
ConsumedLicenses?: number;
|
|
745
556
|
}
|
|
746
|
-
|
|
747
557
|
export interface ManagedResourceSummary {
|
|
748
558
|
ResourceType?: ResourceType | string;
|
|
749
|
-
|
|
750
559
|
AssociationCount?: number;
|
|
751
560
|
}
|
|
752
561
|
export interface GetLicenseConfigurationResponse {
|
|
753
562
|
LicenseConfigurationId?: string;
|
|
754
|
-
|
|
755
563
|
LicenseConfigurationArn?: string;
|
|
756
|
-
|
|
757
564
|
Name?: string;
|
|
758
|
-
|
|
759
565
|
Description?: string;
|
|
760
|
-
|
|
761
566
|
LicenseCountingType?: LicenseCountingType | string;
|
|
762
|
-
|
|
763
567
|
LicenseRules?: string[];
|
|
764
|
-
|
|
765
568
|
LicenseCount?: number;
|
|
766
|
-
|
|
767
569
|
LicenseCountHardLimit?: boolean;
|
|
768
|
-
|
|
769
570
|
ConsumedLicenses?: number;
|
|
770
|
-
|
|
771
571
|
Status?: string;
|
|
772
|
-
|
|
773
572
|
OwnerAccountId?: string;
|
|
774
|
-
|
|
775
573
|
ConsumedLicenseSummaryList?: ConsumedLicenseSummary[];
|
|
776
|
-
|
|
777
574
|
ManagedResourceSummaryList?: ManagedResourceSummary[];
|
|
778
|
-
|
|
779
575
|
Tags?: Tag[];
|
|
780
|
-
|
|
781
576
|
ProductInformationList?: ProductInformation[];
|
|
782
|
-
|
|
783
577
|
AutomatedDiscoveryInformation?: AutomatedDiscoveryInformation;
|
|
784
|
-
|
|
785
578
|
DisassociateWhenNotFound?: boolean;
|
|
786
579
|
}
|
|
787
580
|
export interface GetLicenseConversionTaskRequest {
|
|
@@ -794,58 +587,35 @@ export declare enum LicenseConversionTaskStatus {
|
|
|
794
587
|
}
|
|
795
588
|
export interface GetLicenseConversionTaskResponse {
|
|
796
589
|
LicenseConversionTaskId?: string;
|
|
797
|
-
|
|
798
590
|
ResourceArn?: string;
|
|
799
|
-
|
|
800
591
|
SourceLicenseContext?: LicenseConversionContext;
|
|
801
|
-
|
|
802
592
|
DestinationLicenseContext?: LicenseConversionContext;
|
|
803
|
-
|
|
804
593
|
StatusMessage?: string;
|
|
805
|
-
|
|
806
594
|
Status?: LicenseConversionTaskStatus | string;
|
|
807
|
-
|
|
808
595
|
StartTime?: Date;
|
|
809
|
-
|
|
810
596
|
LicenseConversionTime?: Date;
|
|
811
|
-
|
|
812
597
|
EndTime?: Date;
|
|
813
598
|
}
|
|
814
599
|
export interface GetLicenseManagerReportGeneratorRequest {
|
|
815
600
|
LicenseManagerReportGeneratorArn: string | undefined;
|
|
816
601
|
}
|
|
817
|
-
|
|
818
602
|
export interface S3Location {
|
|
819
603
|
bucket?: string;
|
|
820
|
-
|
|
821
604
|
keyPrefix?: string;
|
|
822
605
|
}
|
|
823
|
-
|
|
824
606
|
export interface ReportGenerator {
|
|
825
607
|
ReportGeneratorName?: string;
|
|
826
|
-
|
|
827
608
|
ReportType?: (ReportType | string)[];
|
|
828
|
-
|
|
829
609
|
ReportContext?: ReportContext;
|
|
830
|
-
|
|
831
610
|
ReportFrequency?: ReportFrequency;
|
|
832
|
-
|
|
833
611
|
LicenseManagerReportGeneratorArn?: string;
|
|
834
|
-
|
|
835
612
|
LastRunStatus?: string;
|
|
836
|
-
|
|
837
613
|
LastRunFailureReason?: string;
|
|
838
|
-
|
|
839
614
|
LastReportGenerationTime?: string;
|
|
840
|
-
|
|
841
615
|
ReportCreatorAccount?: string;
|
|
842
|
-
|
|
843
616
|
Description?: string;
|
|
844
|
-
|
|
845
617
|
S3Location?: S3Location;
|
|
846
|
-
|
|
847
618
|
CreateTime?: string;
|
|
848
|
-
|
|
849
619
|
Tags?: Tag[];
|
|
850
620
|
}
|
|
851
621
|
export interface GetLicenseManagerReportGeneratorResponse {
|
|
@@ -854,17 +624,12 @@ export interface GetLicenseManagerReportGeneratorResponse {
|
|
|
854
624
|
export interface GetLicenseUsageRequest {
|
|
855
625
|
LicenseArn: string | undefined;
|
|
856
626
|
}
|
|
857
|
-
|
|
858
627
|
export interface EntitlementUsage {
|
|
859
628
|
Name: string | undefined;
|
|
860
|
-
|
|
861
629
|
ConsumedValue: string | undefined;
|
|
862
|
-
|
|
863
630
|
MaxCount?: string;
|
|
864
|
-
|
|
865
631
|
Unit: EntitlementDataUnit | string | undefined;
|
|
866
632
|
}
|
|
867
|
-
|
|
868
633
|
export interface LicenseUsage {
|
|
869
634
|
EntitlementUsages?: EntitlementUsage[];
|
|
870
635
|
}
|
|
@@ -872,262 +637,176 @@ export interface GetLicenseUsageResponse {
|
|
|
872
637
|
LicenseUsage?: LicenseUsage;
|
|
873
638
|
}
|
|
874
639
|
export interface GetServiceSettingsRequest {}
|
|
875
|
-
|
|
876
640
|
export interface OrganizationConfiguration {
|
|
877
641
|
EnableIntegration: boolean | undefined;
|
|
878
642
|
}
|
|
879
643
|
export interface GetServiceSettingsResponse {
|
|
880
644
|
S3BucketArn?: string;
|
|
881
|
-
|
|
882
645
|
SnsTopicArn?: string;
|
|
883
|
-
|
|
884
646
|
OrganizationConfiguration?: OrganizationConfiguration;
|
|
885
|
-
|
|
886
647
|
EnableCrossAccountsDiscovery?: boolean;
|
|
887
|
-
|
|
888
648
|
LicenseManagerResourceShareArn?: string;
|
|
889
649
|
}
|
|
890
|
-
|
|
891
650
|
export declare class FilterLimitExceededException extends __BaseException {
|
|
892
651
|
readonly name: "FilterLimitExceededException";
|
|
893
652
|
readonly $fault: "client";
|
|
894
653
|
Message?: string;
|
|
895
|
-
|
|
896
654
|
constructor(
|
|
897
655
|
opts: __ExceptionOptionType<FilterLimitExceededException, __BaseException>
|
|
898
656
|
);
|
|
899
657
|
}
|
|
900
658
|
export interface ListAssociationsForLicenseConfigurationRequest {
|
|
901
659
|
LicenseConfigurationArn: string | undefined;
|
|
902
|
-
|
|
903
660
|
MaxResults?: number;
|
|
904
|
-
|
|
905
661
|
NextToken?: string;
|
|
906
662
|
}
|
|
907
|
-
|
|
908
663
|
export interface LicenseConfigurationAssociation {
|
|
909
664
|
ResourceArn?: string;
|
|
910
|
-
|
|
911
665
|
ResourceType?: ResourceType | string;
|
|
912
|
-
|
|
913
666
|
ResourceOwnerId?: string;
|
|
914
|
-
|
|
915
667
|
AssociationTime?: Date;
|
|
916
|
-
|
|
917
668
|
AmiAssociationScope?: string;
|
|
918
669
|
}
|
|
919
670
|
export interface ListAssociationsForLicenseConfigurationResponse {
|
|
920
671
|
LicenseConfigurationAssociations?: LicenseConfigurationAssociation[];
|
|
921
|
-
|
|
922
672
|
NextToken?: string;
|
|
923
673
|
}
|
|
924
|
-
|
|
925
674
|
export interface Filter {
|
|
926
675
|
Name?: string;
|
|
927
|
-
|
|
928
676
|
Values?: string[];
|
|
929
677
|
}
|
|
930
678
|
export interface ListDistributedGrantsRequest {
|
|
931
679
|
GrantArns?: string[];
|
|
932
|
-
|
|
933
680
|
Filters?: Filter[];
|
|
934
|
-
|
|
935
681
|
NextToken?: string;
|
|
936
|
-
|
|
937
682
|
MaxResults?: number;
|
|
938
683
|
}
|
|
939
684
|
export interface ListDistributedGrantsResponse {
|
|
940
685
|
Grants?: Grant[];
|
|
941
|
-
|
|
942
686
|
NextToken?: string;
|
|
943
687
|
}
|
|
944
688
|
export interface ListFailuresForLicenseConfigurationOperationsRequest {
|
|
945
689
|
LicenseConfigurationArn: string | undefined;
|
|
946
|
-
|
|
947
690
|
MaxResults?: number;
|
|
948
|
-
|
|
949
691
|
NextToken?: string;
|
|
950
692
|
}
|
|
951
|
-
|
|
952
693
|
export interface LicenseOperationFailure {
|
|
953
694
|
ResourceArn?: string;
|
|
954
|
-
|
|
955
695
|
ResourceType?: ResourceType | string;
|
|
956
|
-
|
|
957
696
|
ErrorMessage?: string;
|
|
958
|
-
|
|
959
697
|
FailureTime?: Date;
|
|
960
|
-
|
|
961
698
|
OperationName?: string;
|
|
962
|
-
|
|
963
699
|
ResourceOwnerId?: string;
|
|
964
|
-
|
|
965
700
|
OperationRequestedBy?: string;
|
|
966
|
-
|
|
967
701
|
MetadataList?: Metadata[];
|
|
968
702
|
}
|
|
969
703
|
export interface ListFailuresForLicenseConfigurationOperationsResponse {
|
|
970
704
|
LicenseOperationFailureList?: LicenseOperationFailure[];
|
|
971
|
-
|
|
972
705
|
NextToken?: string;
|
|
973
706
|
}
|
|
974
707
|
export interface ListLicenseConfigurationsRequest {
|
|
975
708
|
LicenseConfigurationArns?: string[];
|
|
976
|
-
|
|
977
709
|
MaxResults?: number;
|
|
978
|
-
|
|
979
710
|
NextToken?: string;
|
|
980
|
-
|
|
981
711
|
Filters?: Filter[];
|
|
982
712
|
}
|
|
983
|
-
|
|
984
713
|
export interface LicenseConfiguration {
|
|
985
714
|
LicenseConfigurationId?: string;
|
|
986
|
-
|
|
987
715
|
LicenseConfigurationArn?: string;
|
|
988
|
-
|
|
989
716
|
Name?: string;
|
|
990
|
-
|
|
991
717
|
Description?: string;
|
|
992
|
-
|
|
993
718
|
LicenseCountingType?: LicenseCountingType | string;
|
|
994
|
-
|
|
995
719
|
LicenseRules?: string[];
|
|
996
|
-
|
|
997
720
|
LicenseCount?: number;
|
|
998
|
-
|
|
999
721
|
LicenseCountHardLimit?: boolean;
|
|
1000
|
-
|
|
1001
722
|
DisassociateWhenNotFound?: boolean;
|
|
1002
|
-
|
|
1003
723
|
ConsumedLicenses?: number;
|
|
1004
|
-
|
|
1005
724
|
Status?: string;
|
|
1006
|
-
|
|
1007
725
|
OwnerAccountId?: string;
|
|
1008
|
-
|
|
1009
726
|
ConsumedLicenseSummaryList?: ConsumedLicenseSummary[];
|
|
1010
|
-
|
|
1011
727
|
ManagedResourceSummaryList?: ManagedResourceSummary[];
|
|
1012
|
-
|
|
1013
728
|
ProductInformationList?: ProductInformation[];
|
|
1014
|
-
|
|
1015
729
|
AutomatedDiscoveryInformation?: AutomatedDiscoveryInformation;
|
|
1016
730
|
}
|
|
1017
731
|
export interface ListLicenseConfigurationsResponse {
|
|
1018
732
|
LicenseConfigurations?: LicenseConfiguration[];
|
|
1019
|
-
|
|
1020
733
|
NextToken?: string;
|
|
1021
734
|
}
|
|
1022
735
|
export interface ListLicenseConversionTasksRequest {
|
|
1023
736
|
NextToken?: string;
|
|
1024
|
-
|
|
1025
737
|
MaxResults?: number;
|
|
1026
|
-
|
|
1027
738
|
Filters?: Filter[];
|
|
1028
739
|
}
|
|
1029
|
-
|
|
1030
740
|
export interface LicenseConversionTask {
|
|
1031
741
|
LicenseConversionTaskId?: string;
|
|
1032
|
-
|
|
1033
742
|
ResourceArn?: string;
|
|
1034
|
-
|
|
1035
743
|
SourceLicenseContext?: LicenseConversionContext;
|
|
1036
|
-
|
|
1037
744
|
DestinationLicenseContext?: LicenseConversionContext;
|
|
1038
|
-
|
|
1039
745
|
Status?: LicenseConversionTaskStatus | string;
|
|
1040
|
-
|
|
1041
746
|
StatusMessage?: string;
|
|
1042
|
-
|
|
1043
747
|
StartTime?: Date;
|
|
1044
|
-
|
|
1045
748
|
LicenseConversionTime?: Date;
|
|
1046
|
-
|
|
1047
749
|
EndTime?: Date;
|
|
1048
750
|
}
|
|
1049
751
|
export interface ListLicenseConversionTasksResponse {
|
|
1050
752
|
LicenseConversionTasks?: LicenseConversionTask[];
|
|
1051
|
-
|
|
1052
753
|
NextToken?: string;
|
|
1053
754
|
}
|
|
1054
755
|
export interface ListLicenseManagerReportGeneratorsRequest {
|
|
1055
756
|
Filters?: Filter[];
|
|
1056
|
-
|
|
1057
757
|
NextToken?: string;
|
|
1058
|
-
|
|
1059
758
|
MaxResults?: number;
|
|
1060
759
|
}
|
|
1061
760
|
export interface ListLicenseManagerReportGeneratorsResponse {
|
|
1062
761
|
ReportGenerators?: ReportGenerator[];
|
|
1063
|
-
|
|
1064
762
|
NextToken?: string;
|
|
1065
763
|
}
|
|
1066
764
|
export interface ListLicensesRequest {
|
|
1067
765
|
LicenseArns?: string[];
|
|
1068
|
-
|
|
1069
766
|
Filters?: Filter[];
|
|
1070
|
-
|
|
1071
767
|
NextToken?: string;
|
|
1072
|
-
|
|
1073
768
|
MaxResults?: number;
|
|
1074
769
|
}
|
|
1075
770
|
export interface ListLicensesResponse {
|
|
1076
771
|
Licenses?: License[];
|
|
1077
|
-
|
|
1078
772
|
NextToken?: string;
|
|
1079
773
|
}
|
|
1080
774
|
export interface ListLicenseSpecificationsForResourceRequest {
|
|
1081
775
|
ResourceArn: string | undefined;
|
|
1082
|
-
|
|
1083
776
|
MaxResults?: number;
|
|
1084
|
-
|
|
1085
777
|
NextToken?: string;
|
|
1086
778
|
}
|
|
1087
|
-
|
|
1088
779
|
export interface LicenseSpecification {
|
|
1089
780
|
LicenseConfigurationArn: string | undefined;
|
|
1090
|
-
|
|
1091
781
|
AmiAssociationScope?: string;
|
|
1092
782
|
}
|
|
1093
783
|
export interface ListLicenseSpecificationsForResourceResponse {
|
|
1094
784
|
LicenseSpecifications?: LicenseSpecification[];
|
|
1095
|
-
|
|
1096
785
|
NextToken?: string;
|
|
1097
786
|
}
|
|
1098
787
|
export interface ListLicenseVersionsRequest {
|
|
1099
788
|
LicenseArn: string | undefined;
|
|
1100
|
-
|
|
1101
789
|
NextToken?: string;
|
|
1102
|
-
|
|
1103
790
|
MaxResults?: number;
|
|
1104
791
|
}
|
|
1105
792
|
export interface ListLicenseVersionsResponse {
|
|
1106
793
|
Licenses?: License[];
|
|
1107
|
-
|
|
1108
794
|
NextToken?: string;
|
|
1109
795
|
}
|
|
1110
796
|
export interface ListReceivedGrantsRequest {
|
|
1111
797
|
GrantArns?: string[];
|
|
1112
|
-
|
|
1113
798
|
Filters?: Filter[];
|
|
1114
|
-
|
|
1115
799
|
NextToken?: string;
|
|
1116
|
-
|
|
1117
800
|
MaxResults?: number;
|
|
1118
801
|
}
|
|
1119
802
|
export interface ListReceivedGrantsResponse {
|
|
1120
803
|
Grants?: Grant[];
|
|
1121
|
-
|
|
1122
804
|
NextToken?: string;
|
|
1123
805
|
}
|
|
1124
806
|
export interface ListReceivedLicensesRequest {
|
|
1125
807
|
LicenseArns?: string[];
|
|
1126
|
-
|
|
1127
808
|
Filters?: Filter[];
|
|
1128
|
-
|
|
1129
809
|
NextToken?: string;
|
|
1130
|
-
|
|
1131
810
|
MaxResults?: number;
|
|
1132
811
|
}
|
|
1133
812
|
export declare enum ReceivedStatus {
|
|
@@ -1140,58 +819,37 @@ export declare enum ReceivedStatus {
|
|
|
1140
819
|
REJECTED = "REJECTED",
|
|
1141
820
|
WORKFLOW_COMPLETED = "WORKFLOW_COMPLETED",
|
|
1142
821
|
}
|
|
1143
|
-
|
|
1144
822
|
export interface ReceivedMetadata {
|
|
1145
823
|
ReceivedStatus?: ReceivedStatus | string;
|
|
1146
|
-
|
|
1147
824
|
ReceivedStatusReason?: string;
|
|
1148
|
-
|
|
1149
825
|
AllowedOperations?: (AllowedOperation | string)[];
|
|
1150
826
|
}
|
|
1151
|
-
|
|
1152
827
|
export interface GrantedLicense {
|
|
1153
828
|
LicenseArn?: string;
|
|
1154
|
-
|
|
1155
829
|
LicenseName?: string;
|
|
1156
|
-
|
|
1157
830
|
ProductName?: string;
|
|
1158
|
-
|
|
1159
831
|
ProductSKU?: string;
|
|
1160
|
-
|
|
1161
832
|
Issuer?: IssuerDetails;
|
|
1162
|
-
|
|
1163
833
|
HomeRegion?: string;
|
|
1164
|
-
|
|
1165
834
|
Status?: LicenseStatus | string;
|
|
1166
|
-
|
|
1167
835
|
Validity?: DatetimeRange;
|
|
1168
|
-
|
|
1169
836
|
Beneficiary?: string;
|
|
1170
|
-
|
|
1171
837
|
Entitlements?: Entitlement[];
|
|
1172
|
-
|
|
1173
838
|
ConsumptionConfiguration?: ConsumptionConfiguration;
|
|
1174
|
-
|
|
1175
839
|
LicenseMetadata?: Metadata[];
|
|
1176
|
-
|
|
1177
840
|
CreateTime?: string;
|
|
1178
|
-
|
|
1179
841
|
Version?: string;
|
|
1180
|
-
|
|
1181
842
|
ReceivedMetadata?: ReceivedMetadata;
|
|
1182
843
|
}
|
|
1183
844
|
export interface ListReceivedLicensesResponse {
|
|
1184
845
|
Licenses?: GrantedLicense[];
|
|
1185
|
-
|
|
1186
846
|
NextToken?: string;
|
|
1187
847
|
}
|
|
1188
|
-
|
|
1189
848
|
export declare class FailedDependencyException extends __BaseException {
|
|
1190
849
|
readonly name: "FailedDependencyException";
|
|
1191
850
|
readonly $fault: "client";
|
|
1192
851
|
Message?: string;
|
|
1193
852
|
ErrorCode?: string;
|
|
1194
|
-
|
|
1195
853
|
constructor(
|
|
1196
854
|
opts: __ExceptionOptionType<FailedDependencyException, __BaseException>
|
|
1197
855
|
);
|
|
@@ -1202,38 +860,26 @@ export declare enum InventoryFilterCondition {
|
|
|
1202
860
|
EQUALS = "EQUALS",
|
|
1203
861
|
NOT_EQUALS = "NOT_EQUALS",
|
|
1204
862
|
}
|
|
1205
|
-
|
|
1206
863
|
export interface InventoryFilter {
|
|
1207
864
|
Name: string | undefined;
|
|
1208
|
-
|
|
1209
865
|
Condition: InventoryFilterCondition | string | undefined;
|
|
1210
|
-
|
|
1211
866
|
Value?: string;
|
|
1212
867
|
}
|
|
1213
868
|
export interface ListResourceInventoryRequest {
|
|
1214
869
|
MaxResults?: number;
|
|
1215
|
-
|
|
1216
870
|
NextToken?: string;
|
|
1217
|
-
|
|
1218
871
|
Filters?: InventoryFilter[];
|
|
1219
872
|
}
|
|
1220
|
-
|
|
1221
873
|
export interface ResourceInventory {
|
|
1222
874
|
ResourceId?: string;
|
|
1223
|
-
|
|
1224
875
|
ResourceType?: ResourceType | string;
|
|
1225
|
-
|
|
1226
876
|
ResourceArn?: string;
|
|
1227
|
-
|
|
1228
877
|
Platform?: string;
|
|
1229
|
-
|
|
1230
878
|
PlatformVersion?: string;
|
|
1231
|
-
|
|
1232
879
|
ResourceOwningAccountId?: string;
|
|
1233
880
|
}
|
|
1234
881
|
export interface ListResourceInventoryResponse {
|
|
1235
882
|
ResourceInventoryList?: ResourceInventory[];
|
|
1236
|
-
|
|
1237
883
|
NextToken?: string;
|
|
1238
884
|
}
|
|
1239
885
|
export interface ListTagsForResourceRequest {
|
|
@@ -1244,60 +890,39 @@ export interface ListTagsForResourceResponse {
|
|
|
1244
890
|
}
|
|
1245
891
|
export interface ListTokensRequest {
|
|
1246
892
|
TokenIds?: string[];
|
|
1247
|
-
|
|
1248
893
|
Filters?: Filter[];
|
|
1249
|
-
|
|
1250
894
|
NextToken?: string;
|
|
1251
|
-
|
|
1252
895
|
MaxResults?: number;
|
|
1253
896
|
}
|
|
1254
|
-
|
|
1255
897
|
export interface TokenData {
|
|
1256
898
|
TokenId?: string;
|
|
1257
|
-
|
|
1258
899
|
TokenType?: string;
|
|
1259
|
-
|
|
1260
900
|
LicenseArn?: string;
|
|
1261
|
-
|
|
1262
901
|
ExpirationTime?: string;
|
|
1263
|
-
|
|
1264
902
|
TokenProperties?: string[];
|
|
1265
|
-
|
|
1266
903
|
RoleArns?: string[];
|
|
1267
|
-
|
|
1268
904
|
Status?: string;
|
|
1269
905
|
}
|
|
1270
906
|
export interface ListTokensResponse {
|
|
1271
907
|
Tokens?: TokenData[];
|
|
1272
|
-
|
|
1273
908
|
NextToken?: string;
|
|
1274
909
|
}
|
|
1275
910
|
export interface ListUsageForLicenseConfigurationRequest {
|
|
1276
911
|
LicenseConfigurationArn: string | undefined;
|
|
1277
|
-
|
|
1278
912
|
MaxResults?: number;
|
|
1279
|
-
|
|
1280
913
|
NextToken?: string;
|
|
1281
|
-
|
|
1282
914
|
Filters?: Filter[];
|
|
1283
915
|
}
|
|
1284
|
-
|
|
1285
916
|
export interface LicenseConfigurationUsage {
|
|
1286
917
|
ResourceArn?: string;
|
|
1287
|
-
|
|
1288
918
|
ResourceType?: ResourceType | string;
|
|
1289
|
-
|
|
1290
919
|
ResourceStatus?: string;
|
|
1291
|
-
|
|
1292
920
|
ResourceOwnerId?: string;
|
|
1293
|
-
|
|
1294
921
|
AssociationTime?: Date;
|
|
1295
|
-
|
|
1296
922
|
ConsumedLicenses?: number;
|
|
1297
923
|
}
|
|
1298
924
|
export interface ListUsageForLicenseConfigurationResponse {
|
|
1299
925
|
LicenseConfigurationUsageList?: LicenseConfigurationUsage[];
|
|
1300
|
-
|
|
1301
926
|
NextToken?: string;
|
|
1302
927
|
}
|
|
1303
928
|
export interface RejectGrantRequest {
|
|
@@ -1305,20 +930,16 @@ export interface RejectGrantRequest {
|
|
|
1305
930
|
}
|
|
1306
931
|
export interface RejectGrantResponse {
|
|
1307
932
|
GrantArn?: string;
|
|
1308
|
-
|
|
1309
933
|
Status?: GrantStatus | string;
|
|
1310
|
-
|
|
1311
934
|
Version?: string;
|
|
1312
935
|
}
|
|
1313
936
|
export interface TagResourceRequest {
|
|
1314
937
|
ResourceArn: string | undefined;
|
|
1315
|
-
|
|
1316
938
|
Tags: Tag[] | undefined;
|
|
1317
939
|
}
|
|
1318
940
|
export interface TagResourceResponse {}
|
|
1319
941
|
export interface UntagResourceRequest {
|
|
1320
942
|
ResourceArn: string | undefined;
|
|
1321
|
-
|
|
1322
943
|
TagKeys: string[] | undefined;
|
|
1323
944
|
}
|
|
1324
945
|
export interface UntagResourceResponse {}
|
|
@@ -1328,587 +949,431 @@ export declare enum LicenseConfigurationStatus {
|
|
|
1328
949
|
}
|
|
1329
950
|
export interface UpdateLicenseConfigurationRequest {
|
|
1330
951
|
LicenseConfigurationArn: string | undefined;
|
|
1331
|
-
|
|
1332
952
|
LicenseConfigurationStatus?: LicenseConfigurationStatus | string;
|
|
1333
|
-
|
|
1334
953
|
LicenseRules?: string[];
|
|
1335
|
-
|
|
1336
954
|
LicenseCount?: number;
|
|
1337
|
-
|
|
1338
955
|
LicenseCountHardLimit?: boolean;
|
|
1339
|
-
|
|
1340
956
|
Name?: string;
|
|
1341
|
-
|
|
1342
957
|
Description?: string;
|
|
1343
|
-
|
|
1344
958
|
ProductInformationList?: ProductInformation[];
|
|
1345
|
-
|
|
1346
959
|
DisassociateWhenNotFound?: boolean;
|
|
1347
960
|
}
|
|
1348
961
|
export interface UpdateLicenseConfigurationResponse {}
|
|
1349
962
|
export interface UpdateLicenseManagerReportGeneratorRequest {
|
|
1350
963
|
LicenseManagerReportGeneratorArn: string | undefined;
|
|
1351
|
-
|
|
1352
964
|
ReportGeneratorName: string | undefined;
|
|
1353
|
-
|
|
1354
965
|
Type: (ReportType | string)[] | undefined;
|
|
1355
|
-
|
|
1356
966
|
ReportContext: ReportContext | undefined;
|
|
1357
|
-
|
|
1358
967
|
ReportFrequency: ReportFrequency | undefined;
|
|
1359
|
-
|
|
1360
968
|
ClientToken: string | undefined;
|
|
1361
|
-
|
|
1362
969
|
Description?: string;
|
|
1363
970
|
}
|
|
1364
971
|
export interface UpdateLicenseManagerReportGeneratorResponse {}
|
|
1365
|
-
|
|
1366
972
|
export declare class InvalidResourceStateException extends __BaseException {
|
|
1367
973
|
readonly name: "InvalidResourceStateException";
|
|
1368
974
|
readonly $fault: "client";
|
|
1369
975
|
Message?: string;
|
|
1370
|
-
|
|
1371
976
|
constructor(
|
|
1372
977
|
opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>
|
|
1373
978
|
);
|
|
1374
979
|
}
|
|
1375
|
-
|
|
1376
980
|
export declare class LicenseUsageException extends __BaseException {
|
|
1377
981
|
readonly name: "LicenseUsageException";
|
|
1378
982
|
readonly $fault: "client";
|
|
1379
983
|
Message?: string;
|
|
1380
|
-
|
|
1381
984
|
constructor(
|
|
1382
985
|
opts: __ExceptionOptionType<LicenseUsageException, __BaseException>
|
|
1383
986
|
);
|
|
1384
987
|
}
|
|
1385
988
|
export interface UpdateLicenseSpecificationsForResourceRequest {
|
|
1386
989
|
ResourceArn: string | undefined;
|
|
1387
|
-
|
|
1388
990
|
AddLicenseSpecifications?: LicenseSpecification[];
|
|
1389
|
-
|
|
1390
991
|
RemoveLicenseSpecifications?: LicenseSpecification[];
|
|
1391
992
|
}
|
|
1392
993
|
export interface UpdateLicenseSpecificationsForResourceResponse {}
|
|
1393
994
|
export interface UpdateServiceSettingsRequest {
|
|
1394
995
|
S3BucketArn?: string;
|
|
1395
|
-
|
|
1396
996
|
SnsTopicArn?: string;
|
|
1397
|
-
|
|
1398
997
|
OrganizationConfiguration?: OrganizationConfiguration;
|
|
1399
|
-
|
|
1400
998
|
EnableCrossAccountsDiscovery?: boolean;
|
|
1401
999
|
}
|
|
1402
1000
|
export interface UpdateServiceSettingsResponse {}
|
|
1403
|
-
|
|
1404
1001
|
export declare const AcceptGrantRequestFilterSensitiveLog: (
|
|
1405
1002
|
obj: AcceptGrantRequest
|
|
1406
1003
|
) => any;
|
|
1407
|
-
|
|
1408
1004
|
export declare const AcceptGrantResponseFilterSensitiveLog: (
|
|
1409
1005
|
obj: AcceptGrantResponse
|
|
1410
1006
|
) => any;
|
|
1411
|
-
|
|
1412
1007
|
export declare const AutomatedDiscoveryInformationFilterSensitiveLog: (
|
|
1413
1008
|
obj: AutomatedDiscoveryInformation
|
|
1414
1009
|
) => any;
|
|
1415
|
-
|
|
1416
1010
|
export declare const CheckInLicenseRequestFilterSensitiveLog: (
|
|
1417
1011
|
obj: CheckInLicenseRequest
|
|
1418
1012
|
) => any;
|
|
1419
|
-
|
|
1420
1013
|
export declare const CheckInLicenseResponseFilterSensitiveLog: (
|
|
1421
1014
|
obj: CheckInLicenseResponse
|
|
1422
1015
|
) => any;
|
|
1423
|
-
|
|
1424
1016
|
export declare const MetadataFilterSensitiveLog: (obj: Metadata) => any;
|
|
1425
|
-
|
|
1426
1017
|
export declare const EntitlementDataFilterSensitiveLog: (
|
|
1427
1018
|
obj: EntitlementData
|
|
1428
1019
|
) => any;
|
|
1429
|
-
|
|
1430
1020
|
export declare const CheckoutBorrowLicenseRequestFilterSensitiveLog: (
|
|
1431
1021
|
obj: CheckoutBorrowLicenseRequest
|
|
1432
1022
|
) => any;
|
|
1433
|
-
|
|
1434
1023
|
export declare const CheckoutBorrowLicenseResponseFilterSensitiveLog: (
|
|
1435
1024
|
obj: CheckoutBorrowLicenseResponse
|
|
1436
1025
|
) => any;
|
|
1437
|
-
|
|
1438
1026
|
export declare const CheckoutLicenseRequestFilterSensitiveLog: (
|
|
1439
1027
|
obj: CheckoutLicenseRequest
|
|
1440
1028
|
) => any;
|
|
1441
|
-
|
|
1442
1029
|
export declare const CheckoutLicenseResponseFilterSensitiveLog: (
|
|
1443
1030
|
obj: CheckoutLicenseResponse
|
|
1444
1031
|
) => any;
|
|
1445
|
-
|
|
1446
1032
|
export declare const CreateGrantRequestFilterSensitiveLog: (
|
|
1447
1033
|
obj: CreateGrantRequest
|
|
1448
1034
|
) => any;
|
|
1449
|
-
|
|
1450
1035
|
export declare const CreateGrantResponseFilterSensitiveLog: (
|
|
1451
1036
|
obj: CreateGrantResponse
|
|
1452
1037
|
) => any;
|
|
1453
|
-
|
|
1454
1038
|
export declare const CreateGrantVersionRequestFilterSensitiveLog: (
|
|
1455
1039
|
obj: CreateGrantVersionRequest
|
|
1456
1040
|
) => any;
|
|
1457
|
-
|
|
1458
1041
|
export declare const CreateGrantVersionResponseFilterSensitiveLog: (
|
|
1459
1042
|
obj: CreateGrantVersionResponse
|
|
1460
1043
|
) => any;
|
|
1461
|
-
|
|
1462
1044
|
export declare const BorrowConfigurationFilterSensitiveLog: (
|
|
1463
1045
|
obj: BorrowConfiguration
|
|
1464
1046
|
) => any;
|
|
1465
|
-
|
|
1466
1047
|
export declare const ProvisionalConfigurationFilterSensitiveLog: (
|
|
1467
1048
|
obj: ProvisionalConfiguration
|
|
1468
1049
|
) => any;
|
|
1469
|
-
|
|
1470
1050
|
export declare const ConsumptionConfigurationFilterSensitiveLog: (
|
|
1471
1051
|
obj: ConsumptionConfiguration
|
|
1472
1052
|
) => any;
|
|
1473
|
-
|
|
1474
1053
|
export declare const EntitlementFilterSensitiveLog: (obj: Entitlement) => any;
|
|
1475
|
-
|
|
1476
1054
|
export declare const IssuerFilterSensitiveLog: (obj: Issuer) => any;
|
|
1477
|
-
|
|
1478
1055
|
export declare const DatetimeRangeFilterSensitiveLog: (
|
|
1479
1056
|
obj: DatetimeRange
|
|
1480
1057
|
) => any;
|
|
1481
|
-
|
|
1482
1058
|
export declare const CreateLicenseRequestFilterSensitiveLog: (
|
|
1483
1059
|
obj: CreateLicenseRequest
|
|
1484
1060
|
) => any;
|
|
1485
|
-
|
|
1486
1061
|
export declare const CreateLicenseResponseFilterSensitiveLog: (
|
|
1487
1062
|
obj: CreateLicenseResponse
|
|
1488
1063
|
) => any;
|
|
1489
|
-
|
|
1490
1064
|
export declare const ProductInformationFilterFilterSensitiveLog: (
|
|
1491
1065
|
obj: ProductInformationFilter
|
|
1492
1066
|
) => any;
|
|
1493
|
-
|
|
1494
1067
|
export declare const ProductInformationFilterSensitiveLog: (
|
|
1495
1068
|
obj: ProductInformation
|
|
1496
1069
|
) => any;
|
|
1497
|
-
|
|
1498
1070
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1499
|
-
|
|
1500
1071
|
export declare const CreateLicenseConfigurationRequestFilterSensitiveLog: (
|
|
1501
1072
|
obj: CreateLicenseConfigurationRequest
|
|
1502
1073
|
) => any;
|
|
1503
|
-
|
|
1504
1074
|
export declare const CreateLicenseConfigurationResponseFilterSensitiveLog: (
|
|
1505
1075
|
obj: CreateLicenseConfigurationResponse
|
|
1506
1076
|
) => any;
|
|
1507
|
-
|
|
1508
1077
|
export declare const LicenseConversionContextFilterSensitiveLog: (
|
|
1509
1078
|
obj: LicenseConversionContext
|
|
1510
1079
|
) => any;
|
|
1511
|
-
|
|
1512
1080
|
export declare const CreateLicenseConversionTaskForResourceRequestFilterSensitiveLog: (
|
|
1513
1081
|
obj: CreateLicenseConversionTaskForResourceRequest
|
|
1514
1082
|
) => any;
|
|
1515
|
-
|
|
1516
1083
|
export declare const CreateLicenseConversionTaskForResourceResponseFilterSensitiveLog: (
|
|
1517
1084
|
obj: CreateLicenseConversionTaskForResourceResponse
|
|
1518
1085
|
) => any;
|
|
1519
|
-
|
|
1520
1086
|
export declare const ReportContextFilterSensitiveLog: (
|
|
1521
1087
|
obj: ReportContext
|
|
1522
1088
|
) => any;
|
|
1523
|
-
|
|
1524
1089
|
export declare const ReportFrequencyFilterSensitiveLog: (
|
|
1525
1090
|
obj: ReportFrequency
|
|
1526
1091
|
) => any;
|
|
1527
|
-
|
|
1528
1092
|
export declare const CreateLicenseManagerReportGeneratorRequestFilterSensitiveLog: (
|
|
1529
1093
|
obj: CreateLicenseManagerReportGeneratorRequest
|
|
1530
1094
|
) => any;
|
|
1531
|
-
|
|
1532
1095
|
export declare const CreateLicenseManagerReportGeneratorResponseFilterSensitiveLog: (
|
|
1533
1096
|
obj: CreateLicenseManagerReportGeneratorResponse
|
|
1534
1097
|
) => any;
|
|
1535
|
-
|
|
1536
1098
|
export declare const CreateLicenseVersionRequestFilterSensitiveLog: (
|
|
1537
1099
|
obj: CreateLicenseVersionRequest
|
|
1538
1100
|
) => any;
|
|
1539
|
-
|
|
1540
1101
|
export declare const CreateLicenseVersionResponseFilterSensitiveLog: (
|
|
1541
1102
|
obj: CreateLicenseVersionResponse
|
|
1542
1103
|
) => any;
|
|
1543
|
-
|
|
1544
1104
|
export declare const CreateTokenRequestFilterSensitiveLog: (
|
|
1545
1105
|
obj: CreateTokenRequest
|
|
1546
1106
|
) => any;
|
|
1547
|
-
|
|
1548
1107
|
export declare const CreateTokenResponseFilterSensitiveLog: (
|
|
1549
1108
|
obj: CreateTokenResponse
|
|
1550
1109
|
) => any;
|
|
1551
|
-
|
|
1552
1110
|
export declare const DeleteGrantRequestFilterSensitiveLog: (
|
|
1553
1111
|
obj: DeleteGrantRequest
|
|
1554
1112
|
) => any;
|
|
1555
|
-
|
|
1556
1113
|
export declare const DeleteGrantResponseFilterSensitiveLog: (
|
|
1557
1114
|
obj: DeleteGrantResponse
|
|
1558
1115
|
) => any;
|
|
1559
|
-
|
|
1560
1116
|
export declare const DeleteLicenseRequestFilterSensitiveLog: (
|
|
1561
1117
|
obj: DeleteLicenseRequest
|
|
1562
1118
|
) => any;
|
|
1563
|
-
|
|
1564
1119
|
export declare const DeleteLicenseResponseFilterSensitiveLog: (
|
|
1565
1120
|
obj: DeleteLicenseResponse
|
|
1566
1121
|
) => any;
|
|
1567
|
-
|
|
1568
1122
|
export declare const DeleteLicenseConfigurationRequestFilterSensitiveLog: (
|
|
1569
1123
|
obj: DeleteLicenseConfigurationRequest
|
|
1570
1124
|
) => any;
|
|
1571
|
-
|
|
1572
1125
|
export declare const DeleteLicenseConfigurationResponseFilterSensitiveLog: (
|
|
1573
1126
|
obj: DeleteLicenseConfigurationResponse
|
|
1574
1127
|
) => any;
|
|
1575
|
-
|
|
1576
1128
|
export declare const DeleteLicenseManagerReportGeneratorRequestFilterSensitiveLog: (
|
|
1577
1129
|
obj: DeleteLicenseManagerReportGeneratorRequest
|
|
1578
1130
|
) => any;
|
|
1579
|
-
|
|
1580
1131
|
export declare const DeleteLicenseManagerReportGeneratorResponseFilterSensitiveLog: (
|
|
1581
1132
|
obj: DeleteLicenseManagerReportGeneratorResponse
|
|
1582
1133
|
) => any;
|
|
1583
|
-
|
|
1584
1134
|
export declare const DeleteTokenRequestFilterSensitiveLog: (
|
|
1585
1135
|
obj: DeleteTokenRequest
|
|
1586
1136
|
) => any;
|
|
1587
|
-
|
|
1588
1137
|
export declare const DeleteTokenResponseFilterSensitiveLog: (
|
|
1589
1138
|
obj: DeleteTokenResponse
|
|
1590
1139
|
) => any;
|
|
1591
|
-
|
|
1592
1140
|
export declare const ExtendLicenseConsumptionRequestFilterSensitiveLog: (
|
|
1593
1141
|
obj: ExtendLicenseConsumptionRequest
|
|
1594
1142
|
) => any;
|
|
1595
|
-
|
|
1596
1143
|
export declare const ExtendLicenseConsumptionResponseFilterSensitiveLog: (
|
|
1597
1144
|
obj: ExtendLicenseConsumptionResponse
|
|
1598
1145
|
) => any;
|
|
1599
|
-
|
|
1600
1146
|
export declare const GetAccessTokenRequestFilterSensitiveLog: (
|
|
1601
1147
|
obj: GetAccessTokenRequest
|
|
1602
1148
|
) => any;
|
|
1603
|
-
|
|
1604
1149
|
export declare const GetAccessTokenResponseFilterSensitiveLog: (
|
|
1605
1150
|
obj: GetAccessTokenResponse
|
|
1606
1151
|
) => any;
|
|
1607
|
-
|
|
1608
1152
|
export declare const GetGrantRequestFilterSensitiveLog: (
|
|
1609
1153
|
obj: GetGrantRequest
|
|
1610
1154
|
) => any;
|
|
1611
|
-
|
|
1612
1155
|
export declare const GrantFilterSensitiveLog: (obj: Grant) => any;
|
|
1613
|
-
|
|
1614
1156
|
export declare const GetGrantResponseFilterSensitiveLog: (
|
|
1615
1157
|
obj: GetGrantResponse
|
|
1616
1158
|
) => any;
|
|
1617
|
-
|
|
1618
1159
|
export declare const GetLicenseRequestFilterSensitiveLog: (
|
|
1619
1160
|
obj: GetLicenseRequest
|
|
1620
1161
|
) => any;
|
|
1621
|
-
|
|
1622
1162
|
export declare const IssuerDetailsFilterSensitiveLog: (
|
|
1623
1163
|
obj: IssuerDetails
|
|
1624
1164
|
) => any;
|
|
1625
|
-
|
|
1626
1165
|
export declare const LicenseFilterSensitiveLog: (obj: License) => any;
|
|
1627
|
-
|
|
1628
1166
|
export declare const GetLicenseResponseFilterSensitiveLog: (
|
|
1629
1167
|
obj: GetLicenseResponse
|
|
1630
1168
|
) => any;
|
|
1631
|
-
|
|
1632
1169
|
export declare const GetLicenseConfigurationRequestFilterSensitiveLog: (
|
|
1633
1170
|
obj: GetLicenseConfigurationRequest
|
|
1634
1171
|
) => any;
|
|
1635
|
-
|
|
1636
1172
|
export declare const ConsumedLicenseSummaryFilterSensitiveLog: (
|
|
1637
1173
|
obj: ConsumedLicenseSummary
|
|
1638
1174
|
) => any;
|
|
1639
|
-
|
|
1640
1175
|
export declare const ManagedResourceSummaryFilterSensitiveLog: (
|
|
1641
1176
|
obj: ManagedResourceSummary
|
|
1642
1177
|
) => any;
|
|
1643
|
-
|
|
1644
1178
|
export declare const GetLicenseConfigurationResponseFilterSensitiveLog: (
|
|
1645
1179
|
obj: GetLicenseConfigurationResponse
|
|
1646
1180
|
) => any;
|
|
1647
|
-
|
|
1648
1181
|
export declare const GetLicenseConversionTaskRequestFilterSensitiveLog: (
|
|
1649
1182
|
obj: GetLicenseConversionTaskRequest
|
|
1650
1183
|
) => any;
|
|
1651
|
-
|
|
1652
1184
|
export declare const GetLicenseConversionTaskResponseFilterSensitiveLog: (
|
|
1653
1185
|
obj: GetLicenseConversionTaskResponse
|
|
1654
1186
|
) => any;
|
|
1655
|
-
|
|
1656
1187
|
export declare const GetLicenseManagerReportGeneratorRequestFilterSensitiveLog: (
|
|
1657
1188
|
obj: GetLicenseManagerReportGeneratorRequest
|
|
1658
1189
|
) => any;
|
|
1659
|
-
|
|
1660
1190
|
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
1661
|
-
|
|
1662
1191
|
export declare const ReportGeneratorFilterSensitiveLog: (
|
|
1663
1192
|
obj: ReportGenerator
|
|
1664
1193
|
) => any;
|
|
1665
|
-
|
|
1666
1194
|
export declare const GetLicenseManagerReportGeneratorResponseFilterSensitiveLog: (
|
|
1667
1195
|
obj: GetLicenseManagerReportGeneratorResponse
|
|
1668
1196
|
) => any;
|
|
1669
|
-
|
|
1670
1197
|
export declare const GetLicenseUsageRequestFilterSensitiveLog: (
|
|
1671
1198
|
obj: GetLicenseUsageRequest
|
|
1672
1199
|
) => any;
|
|
1673
|
-
|
|
1674
1200
|
export declare const EntitlementUsageFilterSensitiveLog: (
|
|
1675
1201
|
obj: EntitlementUsage
|
|
1676
1202
|
) => any;
|
|
1677
|
-
|
|
1678
1203
|
export declare const LicenseUsageFilterSensitiveLog: (obj: LicenseUsage) => any;
|
|
1679
|
-
|
|
1680
1204
|
export declare const GetLicenseUsageResponseFilterSensitiveLog: (
|
|
1681
1205
|
obj: GetLicenseUsageResponse
|
|
1682
1206
|
) => any;
|
|
1683
|
-
|
|
1684
1207
|
export declare const GetServiceSettingsRequestFilterSensitiveLog: (
|
|
1685
1208
|
obj: GetServiceSettingsRequest
|
|
1686
1209
|
) => any;
|
|
1687
|
-
|
|
1688
1210
|
export declare const OrganizationConfigurationFilterSensitiveLog: (
|
|
1689
1211
|
obj: OrganizationConfiguration
|
|
1690
1212
|
) => any;
|
|
1691
|
-
|
|
1692
1213
|
export declare const GetServiceSettingsResponseFilterSensitiveLog: (
|
|
1693
1214
|
obj: GetServiceSettingsResponse
|
|
1694
1215
|
) => any;
|
|
1695
|
-
|
|
1696
1216
|
export declare const ListAssociationsForLicenseConfigurationRequestFilterSensitiveLog: (
|
|
1697
1217
|
obj: ListAssociationsForLicenseConfigurationRequest
|
|
1698
1218
|
) => any;
|
|
1699
|
-
|
|
1700
1219
|
export declare const LicenseConfigurationAssociationFilterSensitiveLog: (
|
|
1701
1220
|
obj: LicenseConfigurationAssociation
|
|
1702
1221
|
) => any;
|
|
1703
|
-
|
|
1704
1222
|
export declare const ListAssociationsForLicenseConfigurationResponseFilterSensitiveLog: (
|
|
1705
1223
|
obj: ListAssociationsForLicenseConfigurationResponse
|
|
1706
1224
|
) => any;
|
|
1707
|
-
|
|
1708
1225
|
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
1709
|
-
|
|
1710
1226
|
export declare const ListDistributedGrantsRequestFilterSensitiveLog: (
|
|
1711
1227
|
obj: ListDistributedGrantsRequest
|
|
1712
1228
|
) => any;
|
|
1713
|
-
|
|
1714
1229
|
export declare const ListDistributedGrantsResponseFilterSensitiveLog: (
|
|
1715
1230
|
obj: ListDistributedGrantsResponse
|
|
1716
1231
|
) => any;
|
|
1717
|
-
|
|
1718
1232
|
export declare const ListFailuresForLicenseConfigurationOperationsRequestFilterSensitiveLog: (
|
|
1719
1233
|
obj: ListFailuresForLicenseConfigurationOperationsRequest
|
|
1720
1234
|
) => any;
|
|
1721
|
-
|
|
1722
1235
|
export declare const LicenseOperationFailureFilterSensitiveLog: (
|
|
1723
1236
|
obj: LicenseOperationFailure
|
|
1724
1237
|
) => any;
|
|
1725
|
-
|
|
1726
1238
|
export declare const ListFailuresForLicenseConfigurationOperationsResponseFilterSensitiveLog: (
|
|
1727
1239
|
obj: ListFailuresForLicenseConfigurationOperationsResponse
|
|
1728
1240
|
) => any;
|
|
1729
|
-
|
|
1730
1241
|
export declare const ListLicenseConfigurationsRequestFilterSensitiveLog: (
|
|
1731
1242
|
obj: ListLicenseConfigurationsRequest
|
|
1732
1243
|
) => any;
|
|
1733
|
-
|
|
1734
1244
|
export declare const LicenseConfigurationFilterSensitiveLog: (
|
|
1735
1245
|
obj: LicenseConfiguration
|
|
1736
1246
|
) => any;
|
|
1737
|
-
|
|
1738
1247
|
export declare const ListLicenseConfigurationsResponseFilterSensitiveLog: (
|
|
1739
1248
|
obj: ListLicenseConfigurationsResponse
|
|
1740
1249
|
) => any;
|
|
1741
|
-
|
|
1742
1250
|
export declare const ListLicenseConversionTasksRequestFilterSensitiveLog: (
|
|
1743
1251
|
obj: ListLicenseConversionTasksRequest
|
|
1744
1252
|
) => any;
|
|
1745
|
-
|
|
1746
1253
|
export declare const LicenseConversionTaskFilterSensitiveLog: (
|
|
1747
1254
|
obj: LicenseConversionTask
|
|
1748
1255
|
) => any;
|
|
1749
|
-
|
|
1750
1256
|
export declare const ListLicenseConversionTasksResponseFilterSensitiveLog: (
|
|
1751
1257
|
obj: ListLicenseConversionTasksResponse
|
|
1752
1258
|
) => any;
|
|
1753
|
-
|
|
1754
1259
|
export declare const ListLicenseManagerReportGeneratorsRequestFilterSensitiveLog: (
|
|
1755
1260
|
obj: ListLicenseManagerReportGeneratorsRequest
|
|
1756
1261
|
) => any;
|
|
1757
|
-
|
|
1758
1262
|
export declare const ListLicenseManagerReportGeneratorsResponseFilterSensitiveLog: (
|
|
1759
1263
|
obj: ListLicenseManagerReportGeneratorsResponse
|
|
1760
1264
|
) => any;
|
|
1761
|
-
|
|
1762
1265
|
export declare const ListLicensesRequestFilterSensitiveLog: (
|
|
1763
1266
|
obj: ListLicensesRequest
|
|
1764
1267
|
) => any;
|
|
1765
|
-
|
|
1766
1268
|
export declare const ListLicensesResponseFilterSensitiveLog: (
|
|
1767
1269
|
obj: ListLicensesResponse
|
|
1768
1270
|
) => any;
|
|
1769
|
-
|
|
1770
1271
|
export declare const ListLicenseSpecificationsForResourceRequestFilterSensitiveLog: (
|
|
1771
1272
|
obj: ListLicenseSpecificationsForResourceRequest
|
|
1772
1273
|
) => any;
|
|
1773
|
-
|
|
1774
1274
|
export declare const LicenseSpecificationFilterSensitiveLog: (
|
|
1775
1275
|
obj: LicenseSpecification
|
|
1776
1276
|
) => any;
|
|
1777
|
-
|
|
1778
1277
|
export declare const ListLicenseSpecificationsForResourceResponseFilterSensitiveLog: (
|
|
1779
1278
|
obj: ListLicenseSpecificationsForResourceResponse
|
|
1780
1279
|
) => any;
|
|
1781
|
-
|
|
1782
1280
|
export declare const ListLicenseVersionsRequestFilterSensitiveLog: (
|
|
1783
1281
|
obj: ListLicenseVersionsRequest
|
|
1784
1282
|
) => any;
|
|
1785
|
-
|
|
1786
1283
|
export declare const ListLicenseVersionsResponseFilterSensitiveLog: (
|
|
1787
1284
|
obj: ListLicenseVersionsResponse
|
|
1788
1285
|
) => any;
|
|
1789
|
-
|
|
1790
1286
|
export declare const ListReceivedGrantsRequestFilterSensitiveLog: (
|
|
1791
1287
|
obj: ListReceivedGrantsRequest
|
|
1792
1288
|
) => any;
|
|
1793
|
-
|
|
1794
1289
|
export declare const ListReceivedGrantsResponseFilterSensitiveLog: (
|
|
1795
1290
|
obj: ListReceivedGrantsResponse
|
|
1796
1291
|
) => any;
|
|
1797
|
-
|
|
1798
1292
|
export declare const ListReceivedLicensesRequestFilterSensitiveLog: (
|
|
1799
1293
|
obj: ListReceivedLicensesRequest
|
|
1800
1294
|
) => any;
|
|
1801
|
-
|
|
1802
1295
|
export declare const ReceivedMetadataFilterSensitiveLog: (
|
|
1803
1296
|
obj: ReceivedMetadata
|
|
1804
1297
|
) => any;
|
|
1805
|
-
|
|
1806
1298
|
export declare const GrantedLicenseFilterSensitiveLog: (
|
|
1807
1299
|
obj: GrantedLicense
|
|
1808
1300
|
) => any;
|
|
1809
|
-
|
|
1810
1301
|
export declare const ListReceivedLicensesResponseFilterSensitiveLog: (
|
|
1811
1302
|
obj: ListReceivedLicensesResponse
|
|
1812
1303
|
) => any;
|
|
1813
|
-
|
|
1814
1304
|
export declare const InventoryFilterFilterSensitiveLog: (
|
|
1815
1305
|
obj: InventoryFilter
|
|
1816
1306
|
) => any;
|
|
1817
|
-
|
|
1818
1307
|
export declare const ListResourceInventoryRequestFilterSensitiveLog: (
|
|
1819
1308
|
obj: ListResourceInventoryRequest
|
|
1820
1309
|
) => any;
|
|
1821
|
-
|
|
1822
1310
|
export declare const ResourceInventoryFilterSensitiveLog: (
|
|
1823
1311
|
obj: ResourceInventory
|
|
1824
1312
|
) => any;
|
|
1825
|
-
|
|
1826
1313
|
export declare const ListResourceInventoryResponseFilterSensitiveLog: (
|
|
1827
1314
|
obj: ListResourceInventoryResponse
|
|
1828
1315
|
) => any;
|
|
1829
|
-
|
|
1830
1316
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
1831
1317
|
obj: ListTagsForResourceRequest
|
|
1832
1318
|
) => any;
|
|
1833
|
-
|
|
1834
1319
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
1835
1320
|
obj: ListTagsForResourceResponse
|
|
1836
1321
|
) => any;
|
|
1837
|
-
|
|
1838
1322
|
export declare const ListTokensRequestFilterSensitiveLog: (
|
|
1839
1323
|
obj: ListTokensRequest
|
|
1840
1324
|
) => any;
|
|
1841
|
-
|
|
1842
1325
|
export declare const TokenDataFilterSensitiveLog: (obj: TokenData) => any;
|
|
1843
|
-
|
|
1844
1326
|
export declare const ListTokensResponseFilterSensitiveLog: (
|
|
1845
1327
|
obj: ListTokensResponse
|
|
1846
1328
|
) => any;
|
|
1847
|
-
|
|
1848
1329
|
export declare const ListUsageForLicenseConfigurationRequestFilterSensitiveLog: (
|
|
1849
1330
|
obj: ListUsageForLicenseConfigurationRequest
|
|
1850
1331
|
) => any;
|
|
1851
|
-
|
|
1852
1332
|
export declare const LicenseConfigurationUsageFilterSensitiveLog: (
|
|
1853
1333
|
obj: LicenseConfigurationUsage
|
|
1854
1334
|
) => any;
|
|
1855
|
-
|
|
1856
1335
|
export declare const ListUsageForLicenseConfigurationResponseFilterSensitiveLog: (
|
|
1857
1336
|
obj: ListUsageForLicenseConfigurationResponse
|
|
1858
1337
|
) => any;
|
|
1859
|
-
|
|
1860
1338
|
export declare const RejectGrantRequestFilterSensitiveLog: (
|
|
1861
1339
|
obj: RejectGrantRequest
|
|
1862
1340
|
) => any;
|
|
1863
|
-
|
|
1864
1341
|
export declare const RejectGrantResponseFilterSensitiveLog: (
|
|
1865
1342
|
obj: RejectGrantResponse
|
|
1866
1343
|
) => any;
|
|
1867
|
-
|
|
1868
1344
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
1869
1345
|
obj: TagResourceRequest
|
|
1870
1346
|
) => any;
|
|
1871
|
-
|
|
1872
1347
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
1873
1348
|
obj: TagResourceResponse
|
|
1874
1349
|
) => any;
|
|
1875
|
-
|
|
1876
1350
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
1877
1351
|
obj: UntagResourceRequest
|
|
1878
1352
|
) => any;
|
|
1879
|
-
|
|
1880
1353
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
1881
1354
|
obj: UntagResourceResponse
|
|
1882
1355
|
) => any;
|
|
1883
|
-
|
|
1884
1356
|
export declare const UpdateLicenseConfigurationRequestFilterSensitiveLog: (
|
|
1885
1357
|
obj: UpdateLicenseConfigurationRequest
|
|
1886
1358
|
) => any;
|
|
1887
|
-
|
|
1888
1359
|
export declare const UpdateLicenseConfigurationResponseFilterSensitiveLog: (
|
|
1889
1360
|
obj: UpdateLicenseConfigurationResponse
|
|
1890
1361
|
) => any;
|
|
1891
|
-
|
|
1892
1362
|
export declare const UpdateLicenseManagerReportGeneratorRequestFilterSensitiveLog: (
|
|
1893
1363
|
obj: UpdateLicenseManagerReportGeneratorRequest
|
|
1894
1364
|
) => any;
|
|
1895
|
-
|
|
1896
1365
|
export declare const UpdateLicenseManagerReportGeneratorResponseFilterSensitiveLog: (
|
|
1897
1366
|
obj: UpdateLicenseManagerReportGeneratorResponse
|
|
1898
1367
|
) => any;
|
|
1899
|
-
|
|
1900
1368
|
export declare const UpdateLicenseSpecificationsForResourceRequestFilterSensitiveLog: (
|
|
1901
1369
|
obj: UpdateLicenseSpecificationsForResourceRequest
|
|
1902
1370
|
) => any;
|
|
1903
|
-
|
|
1904
1371
|
export declare const UpdateLicenseSpecificationsForResourceResponseFilterSensitiveLog: (
|
|
1905
1372
|
obj: UpdateLicenseSpecificationsForResourceResponse
|
|
1906
1373
|
) => any;
|
|
1907
|
-
|
|
1908
1374
|
export declare const UpdateServiceSettingsRequestFilterSensitiveLog: (
|
|
1909
1375
|
obj: UpdateServiceSettingsRequest
|
|
1910
1376
|
) => any;
|
|
1911
|
-
|
|
1912
1377
|
export declare const UpdateServiceSettingsResponseFilterSensitiveLog: (
|
|
1913
1378
|
obj: UpdateServiceSettingsResponse
|
|
1914
1379
|
) => any;
|