@aws-sdk/client-license-manager 3.300.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +153 -171
- package/dist-es/models/models_0.js +153 -171
- package/dist-types/commands/AcceptGrantCommand.d.ts +1 -1
- package/dist-types/commands/CheckInLicenseCommand.d.ts +1 -1
- package/dist-types/commands/CheckoutBorrowLicenseCommand.d.ts +5 -5
- package/dist-types/commands/CheckoutLicenseCommand.d.ts +3 -3
- package/dist-types/commands/CreateGrantCommand.d.ts +3 -3
- package/dist-types/commands/CreateGrantVersionCommand.d.ts +2 -2
- package/dist-types/commands/CreateLicenseCommand.d.ts +10 -10
- package/dist-types/commands/CreateLicenseConfigurationCommand.d.ts +8 -8
- package/dist-types/commands/CreateLicenseConversionTaskForResourceCommand.d.ts +2 -2
- package/dist-types/commands/CreateLicenseManagerReportGeneratorCommand.d.ts +7 -7
- package/dist-types/commands/CreateLicenseVersionCommand.d.ts +10 -10
- package/dist-types/commands/CreateTokenCommand.d.ts +3 -3
- package/dist-types/commands/DeleteGrantCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLicenseCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLicenseConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLicenseManagerReportGeneratorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTokenCommand.d.ts +1 -1
- package/dist-types/commands/ExtendLicenseConsumptionCommand.d.ts +1 -1
- package/dist-types/commands/GetAccessTokenCommand.d.ts +2 -2
- package/dist-types/commands/GetGrantCommand.d.ts +1 -1
- package/dist-types/commands/GetLicenseCommand.d.ts +1 -1
- package/dist-types/commands/GetLicenseConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetLicenseConversionTaskCommand.d.ts +1 -1
- package/dist-types/commands/GetLicenseManagerReportGeneratorCommand.d.ts +1 -1
- package/dist-types/commands/GetLicenseUsageCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociationsForLicenseConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/ListDistributedGrantsCommand.d.ts +5 -5
- package/dist-types/commands/ListFailuresForLicenseConfigurationOperationsCommand.d.ts +1 -1
- package/dist-types/commands/ListLicenseConfigurationsCommand.d.ts +5 -5
- package/dist-types/commands/ListLicenseConversionTasksCommand.d.ts +4 -4
- package/dist-types/commands/ListLicenseManagerReportGeneratorsCommand.d.ts +4 -4
- package/dist-types/commands/ListLicenseSpecificationsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListLicenseVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListLicensesCommand.d.ts +5 -5
- package/dist-types/commands/ListReceivedGrantsCommand.d.ts +5 -5
- package/dist-types/commands/ListReceivedGrantsForOrganizationCommand.d.ts +4 -4
- package/dist-types/commands/ListReceivedLicensesCommand.d.ts +5 -5
- package/dist-types/commands/ListReceivedLicensesForOrganizationCommand.d.ts +4 -4
- package/dist-types/commands/ListResourceInventoryCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTokensCommand.d.ts +5 -5
- package/dist-types/commands/ListUsageForLicenseConfigurationCommand.d.ts +4 -4
- package/dist-types/commands/RejectGrantCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateLicenseConfigurationCommand.d.ts +6 -6
- package/dist-types/commands/UpdateLicenseManagerReportGeneratorCommand.d.ts +5 -5
- package/dist-types/commands/UpdateLicenseSpecificationsForResourceCommand.d.ts +3 -3
- package/dist-types/commands/UpdateServiceSettingsCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +244 -154
- package/dist-types/ts3.4/models/models_0.d.ts +182 -153
- package/package.json +34 -34
|
@@ -11,18 +11,23 @@ export interface AcceptGrantRequest {
|
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
13
|
* @public
|
|
14
|
+
* @enum
|
|
14
15
|
*/
|
|
15
|
-
export declare
|
|
16
|
-
ACTIVE
|
|
17
|
-
DELETED
|
|
18
|
-
DISABLED
|
|
19
|
-
FAILED_WORKFLOW
|
|
20
|
-
PENDING_ACCEPT
|
|
21
|
-
PENDING_DELETE
|
|
22
|
-
PENDING_WORKFLOW
|
|
23
|
-
REJECTED
|
|
24
|
-
WORKFLOW_COMPLETED
|
|
25
|
-
}
|
|
16
|
+
export declare const GrantStatus: {
|
|
17
|
+
readonly ACTIVE: "ACTIVE";
|
|
18
|
+
readonly DELETED: "DELETED";
|
|
19
|
+
readonly DISABLED: "DISABLED";
|
|
20
|
+
readonly FAILED_WORKFLOW: "FAILED_WORKFLOW";
|
|
21
|
+
readonly PENDING_ACCEPT: "PENDING_ACCEPT";
|
|
22
|
+
readonly PENDING_DELETE: "PENDING_DELETE";
|
|
23
|
+
readonly PENDING_WORKFLOW: "PENDING_WORKFLOW";
|
|
24
|
+
readonly REJECTED: "REJECTED";
|
|
25
|
+
readonly WORKFLOW_COMPLETED: "WORKFLOW_COMPLETED";
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
export type GrantStatus = (typeof GrantStatus)[keyof typeof GrantStatus];
|
|
26
31
|
/**
|
|
27
32
|
* @public
|
|
28
33
|
*/
|
|
@@ -134,16 +139,21 @@ export declare class ValidationException extends __BaseException {
|
|
|
134
139
|
}
|
|
135
140
|
/**
|
|
136
141
|
* @public
|
|
142
|
+
* @enum
|
|
137
143
|
*/
|
|
138
|
-
export declare
|
|
139
|
-
CHECKOUT_BORROW_LICENSE
|
|
140
|
-
CHECKOUT_LICENSE
|
|
141
|
-
CHECK_IN_LICENSE
|
|
142
|
-
CREATE_GRANT
|
|
143
|
-
CREATE_TOKEN
|
|
144
|
-
EXTEND_CONSUMPTION_LICENSE
|
|
145
|
-
LIST_PURCHASED_LICENSES
|
|
146
|
-
}
|
|
144
|
+
export declare const AllowedOperation: {
|
|
145
|
+
readonly CHECKOUT_BORROW_LICENSE: "CheckoutBorrowLicense";
|
|
146
|
+
readonly CHECKOUT_LICENSE: "CheckoutLicense";
|
|
147
|
+
readonly CHECK_IN_LICENSE: "CheckInLicense";
|
|
148
|
+
readonly CREATE_GRANT: "CreateGrant";
|
|
149
|
+
readonly CREATE_TOKEN: "CreateToken";
|
|
150
|
+
readonly EXTEND_CONSUMPTION_LICENSE: "ExtendConsumptionLicense";
|
|
151
|
+
readonly LIST_PURCHASED_LICENSES: "ListPurchasedLicenses";
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
export type AllowedOperation = (typeof AllowedOperation)[keyof typeof AllowedOperation];
|
|
147
157
|
/**
|
|
148
158
|
* @public
|
|
149
159
|
* <p>Describes automated discovery.</p>
|
|
@@ -214,42 +224,52 @@ export interface Metadata {
|
|
|
214
224
|
}
|
|
215
225
|
/**
|
|
216
226
|
* @public
|
|
227
|
+
* @enum
|
|
217
228
|
*/
|
|
218
|
-
export declare
|
|
219
|
-
JWT_PS384
|
|
220
|
-
}
|
|
229
|
+
export declare const DigitalSignatureMethod: {
|
|
230
|
+
readonly JWT_PS384: "JWT_PS384";
|
|
231
|
+
};
|
|
221
232
|
/**
|
|
222
233
|
* @public
|
|
223
234
|
*/
|
|
224
|
-
export
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
235
|
+
export type DigitalSignatureMethod = (typeof DigitalSignatureMethod)[keyof typeof DigitalSignatureMethod];
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
* @enum
|
|
239
|
+
*/
|
|
240
|
+
export declare const EntitlementDataUnit: {
|
|
241
|
+
readonly BITS: "Bits";
|
|
242
|
+
readonly BITS_PER_SECOND: "Bits/Second";
|
|
243
|
+
readonly BYTES: "Bytes";
|
|
244
|
+
readonly BYTES_PER_SECOND: "Bytes/Second";
|
|
245
|
+
readonly COUNT: "Count";
|
|
246
|
+
readonly COUNT_PER_SECOND: "Count/Second";
|
|
247
|
+
readonly GIGABITS: "Gigabits";
|
|
248
|
+
readonly GIGABITS_PER_SECOND: "Gigabits/Second";
|
|
249
|
+
readonly GIGABYTES: "Gigabytes";
|
|
250
|
+
readonly GIGABYTES_PER_SECOND: "Gigabytes/Second";
|
|
251
|
+
readonly KILOBITS: "Kilobits";
|
|
252
|
+
readonly KILOBITS_PER_SECOND: "Kilobits/Second";
|
|
253
|
+
readonly KILOBYTES: "Kilobytes";
|
|
254
|
+
readonly KILOBYTES_PER_SECOND: "Kilobytes/Second";
|
|
255
|
+
readonly MEGABITS: "Megabits";
|
|
256
|
+
readonly MEGABITS_PER_SECOND: "Megabits/Second";
|
|
257
|
+
readonly MEGABYTES: "Megabytes";
|
|
258
|
+
readonly MEGABYTES_PER_SECOND: "Megabytes/Second";
|
|
259
|
+
readonly MICROSECONDS: "Microseconds";
|
|
260
|
+
readonly MILLISECONDS: "Milliseconds";
|
|
261
|
+
readonly NONE: "None";
|
|
262
|
+
readonly PERCENT: "Percent";
|
|
263
|
+
readonly SECONDS: "Seconds";
|
|
264
|
+
readonly TERABITS: "Terabits";
|
|
265
|
+
readonly TERABITS_PER_SECOND: "Terabits/Second";
|
|
266
|
+
readonly TERABYTES: "Terabytes";
|
|
267
|
+
readonly TERABYTES_PER_SECOND: "Terabytes/Second";
|
|
268
|
+
};
|
|
269
|
+
/**
|
|
270
|
+
* @public
|
|
271
|
+
*/
|
|
272
|
+
export type EntitlementDataUnit = (typeof EntitlementDataUnit)[keyof typeof EntitlementDataUnit];
|
|
253
273
|
/**
|
|
254
274
|
* @public
|
|
255
275
|
* <p>Data associated with an entitlement resource.</p>
|
|
@@ -390,11 +410,16 @@ export declare class UnsupportedDigitalSignatureMethodException extends __BaseEx
|
|
|
390
410
|
}
|
|
391
411
|
/**
|
|
392
412
|
* @public
|
|
413
|
+
* @enum
|
|
393
414
|
*/
|
|
394
|
-
export declare
|
|
395
|
-
PERPETUAL
|
|
396
|
-
PROVISIONAL
|
|
397
|
-
}
|
|
415
|
+
export declare const CheckoutType: {
|
|
416
|
+
readonly PERPETUAL: "PERPETUAL";
|
|
417
|
+
readonly PROVISIONAL: "PROVISIONAL";
|
|
418
|
+
};
|
|
419
|
+
/**
|
|
420
|
+
* @public
|
|
421
|
+
*/
|
|
422
|
+
export type CheckoutType = (typeof CheckoutType)[keyof typeof CheckoutType];
|
|
398
423
|
/**
|
|
399
424
|
* @public
|
|
400
425
|
*/
|
|
@@ -587,12 +612,17 @@ export interface ProvisionalConfiguration {
|
|
|
587
612
|
}
|
|
588
613
|
/**
|
|
589
614
|
* @public
|
|
615
|
+
* @enum
|
|
590
616
|
*/
|
|
591
|
-
export declare
|
|
592
|
-
MONTHLY
|
|
593
|
-
NONE
|
|
594
|
-
WEEKLY
|
|
595
|
-
}
|
|
617
|
+
export declare const RenewType: {
|
|
618
|
+
readonly MONTHLY: "Monthly";
|
|
619
|
+
readonly NONE: "None";
|
|
620
|
+
readonly WEEKLY: "Weekly";
|
|
621
|
+
};
|
|
622
|
+
/**
|
|
623
|
+
* @public
|
|
624
|
+
*/
|
|
625
|
+
export type RenewType = (typeof RenewType)[keyof typeof RenewType];
|
|
596
626
|
/**
|
|
597
627
|
* @public
|
|
598
628
|
* <p>Details about a consumption configuration.</p>
|
|
@@ -613,36 +643,41 @@ export interface ConsumptionConfiguration {
|
|
|
613
643
|
}
|
|
614
644
|
/**
|
|
615
645
|
* @public
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
+
* @enum
|
|
647
|
+
*/
|
|
648
|
+
export declare const EntitlementUnit: {
|
|
649
|
+
readonly BITS: "Bits";
|
|
650
|
+
readonly BITS_PER_SECOND: "Bits/Second";
|
|
651
|
+
readonly BYTES: "Bytes";
|
|
652
|
+
readonly BYTES_PER_SECOND: "Bytes/Second";
|
|
653
|
+
readonly COUNT: "Count";
|
|
654
|
+
readonly COUNT_PER_SECOND: "Count/Second";
|
|
655
|
+
readonly GIGABITS: "Gigabits";
|
|
656
|
+
readonly GIGABITS_PER_SECOND: "Gigabits/Second";
|
|
657
|
+
readonly GIGABYTES: "Gigabytes";
|
|
658
|
+
readonly GIGABYTES_PER_SECOND: "Gigabytes/Second";
|
|
659
|
+
readonly KILOBITS: "Kilobits";
|
|
660
|
+
readonly KILOBITS_PER_SECOND: "Kilobits/Second";
|
|
661
|
+
readonly KILOBYTES: "Kilobytes";
|
|
662
|
+
readonly KILOBYTES_PER_SECOND: "Kilobytes/Second";
|
|
663
|
+
readonly MEGABITS: "Megabits";
|
|
664
|
+
readonly MEGABITS_PER_SECOND: "Megabits/Second";
|
|
665
|
+
readonly MEGABYTES: "Megabytes";
|
|
666
|
+
readonly MEGABYTES_PER_SECOND: "Megabytes/Second";
|
|
667
|
+
readonly MICROSECONDS: "Microseconds";
|
|
668
|
+
readonly MILLISECONDS: "Milliseconds";
|
|
669
|
+
readonly NONE: "None";
|
|
670
|
+
readonly PERCENT: "Percent";
|
|
671
|
+
readonly SECONDS: "Seconds";
|
|
672
|
+
readonly TERABITS: "Terabits";
|
|
673
|
+
readonly TERABITS_PER_SECOND: "Terabits/Second";
|
|
674
|
+
readonly TERABYTES: "Terabytes";
|
|
675
|
+
readonly TERABYTES_PER_SECOND: "Terabytes/Second";
|
|
676
|
+
};
|
|
677
|
+
/**
|
|
678
|
+
* @public
|
|
679
|
+
*/
|
|
680
|
+
export type EntitlementUnit = (typeof EntitlementUnit)[keyof typeof EntitlementUnit];
|
|
646
681
|
/**
|
|
647
682
|
* @public
|
|
648
683
|
* <p>Describes a resource entitled for use with a license.</p>
|
|
@@ -755,16 +790,21 @@ export interface CreateLicenseRequest {
|
|
|
755
790
|
}
|
|
756
791
|
/**
|
|
757
792
|
* @public
|
|
793
|
+
* @enum
|
|
758
794
|
*/
|
|
759
|
-
export declare
|
|
760
|
-
AVAILABLE
|
|
761
|
-
DEACTIVATED
|
|
762
|
-
DELETED
|
|
763
|
-
EXPIRED
|
|
764
|
-
PENDING_AVAILABLE
|
|
765
|
-
PENDING_DELETE
|
|
766
|
-
SUSPENDED
|
|
767
|
-
}
|
|
795
|
+
export declare const LicenseStatus: {
|
|
796
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
797
|
+
readonly DEACTIVATED: "DEACTIVATED";
|
|
798
|
+
readonly DELETED: "DELETED";
|
|
799
|
+
readonly EXPIRED: "EXPIRED";
|
|
800
|
+
readonly PENDING_AVAILABLE: "PENDING_AVAILABLE";
|
|
801
|
+
readonly PENDING_DELETE: "PENDING_DELETE";
|
|
802
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
803
|
+
};
|
|
804
|
+
/**
|
|
805
|
+
* @public
|
|
806
|
+
*/
|
|
807
|
+
export type LicenseStatus = (typeof LicenseStatus)[keyof typeof LicenseStatus];
|
|
768
808
|
/**
|
|
769
809
|
* @public
|
|
770
810
|
*/
|
|
@@ -784,13 +824,18 @@ export interface CreateLicenseResponse {
|
|
|
784
824
|
}
|
|
785
825
|
/**
|
|
786
826
|
* @public
|
|
827
|
+
* @enum
|
|
787
828
|
*/
|
|
788
|
-
export declare
|
|
789
|
-
CORE
|
|
790
|
-
INSTANCE
|
|
791
|
-
SOCKET
|
|
792
|
-
VCPU
|
|
793
|
-
}
|
|
829
|
+
export declare const LicenseCountingType: {
|
|
830
|
+
readonly CORE: "Core";
|
|
831
|
+
readonly INSTANCE: "Instance";
|
|
832
|
+
readonly SOCKET: "Socket";
|
|
833
|
+
readonly VCPU: "vCPU";
|
|
834
|
+
};
|
|
835
|
+
/**
|
|
836
|
+
* @public
|
|
837
|
+
*/
|
|
838
|
+
export type LicenseCountingType = (typeof LicenseCountingType)[keyof typeof LicenseCountingType];
|
|
794
839
|
/**
|
|
795
840
|
* @public
|
|
796
841
|
* <p>Describes product information filters.</p>
|
|
@@ -1045,12 +1090,17 @@ export interface ReportContext {
|
|
|
1045
1090
|
}
|
|
1046
1091
|
/**
|
|
1047
1092
|
* @public
|
|
1093
|
+
* @enum
|
|
1048
1094
|
*/
|
|
1049
|
-
export declare
|
|
1050
|
-
DAY
|
|
1051
|
-
MONTH
|
|
1052
|
-
WEEK
|
|
1053
|
-
}
|
|
1095
|
+
export declare const ReportFrequencyType: {
|
|
1096
|
+
readonly DAY: "DAY";
|
|
1097
|
+
readonly MONTH: "MONTH";
|
|
1098
|
+
readonly WEEK: "WEEK";
|
|
1099
|
+
};
|
|
1100
|
+
/**
|
|
1101
|
+
* @public
|
|
1102
|
+
*/
|
|
1103
|
+
export type ReportFrequencyType = (typeof ReportFrequencyType)[keyof typeof ReportFrequencyType];
|
|
1054
1104
|
/**
|
|
1055
1105
|
* @public
|
|
1056
1106
|
* <p>Details about how frequently reports are generated.</p>
|
|
@@ -1068,11 +1118,16 @@ export interface ReportFrequency {
|
|
|
1068
1118
|
}
|
|
1069
1119
|
/**
|
|
1070
1120
|
* @public
|
|
1121
|
+
* @enum
|
|
1071
1122
|
*/
|
|
1072
|
-
export declare
|
|
1073
|
-
LICENSE_CONFIGURATION_SUMMARY_REPORT
|
|
1074
|
-
LICENSE_CONFIGURATION_USAGE_REPORT
|
|
1075
|
-
}
|
|
1123
|
+
export declare const ReportType: {
|
|
1124
|
+
readonly LICENSE_CONFIGURATION_SUMMARY_REPORT: "LicenseConfigurationSummaryReport";
|
|
1125
|
+
readonly LICENSE_CONFIGURATION_USAGE_REPORT: "LicenseConfigurationUsageReport";
|
|
1126
|
+
};
|
|
1127
|
+
/**
|
|
1128
|
+
* @public
|
|
1129
|
+
*/
|
|
1130
|
+
export type ReportType = (typeof ReportType)[keyof typeof ReportType];
|
|
1076
1131
|
/**
|
|
1077
1132
|
* @public
|
|
1078
1133
|
*/
|
|
@@ -1225,10 +1280,15 @@ export interface CreateTokenRequest {
|
|
|
1225
1280
|
}
|
|
1226
1281
|
/**
|
|
1227
1282
|
* @public
|
|
1283
|
+
* @enum
|
|
1228
1284
|
*/
|
|
1229
|
-
export declare
|
|
1230
|
-
REFRESH_TOKEN
|
|
1231
|
-
}
|
|
1285
|
+
export declare const TokenType: {
|
|
1286
|
+
readonly REFRESH_TOKEN: "REFRESH_TOKEN";
|
|
1287
|
+
};
|
|
1288
|
+
/**
|
|
1289
|
+
* @public
|
|
1290
|
+
*/
|
|
1291
|
+
export type TokenType = (typeof TokenType)[keyof typeof TokenType];
|
|
1232
1292
|
/**
|
|
1233
1293
|
* @public
|
|
1234
1294
|
*/
|
|
@@ -1295,11 +1355,16 @@ export interface DeleteLicenseRequest {
|
|
|
1295
1355
|
}
|
|
1296
1356
|
/**
|
|
1297
1357
|
* @public
|
|
1358
|
+
* @enum
|
|
1298
1359
|
*/
|
|
1299
|
-
export declare
|
|
1300
|
-
DELETED
|
|
1301
|
-
PENDING_DELETE
|
|
1302
|
-
}
|
|
1360
|
+
export declare const LicenseDeletionStatus: {
|
|
1361
|
+
readonly DELETED: "DELETED";
|
|
1362
|
+
readonly PENDING_DELETE: "PENDING_DELETE";
|
|
1363
|
+
};
|
|
1364
|
+
/**
|
|
1365
|
+
* @public
|
|
1366
|
+
*/
|
|
1367
|
+
export type LicenseDeletionStatus = (typeof LicenseDeletionStatus)[keyof typeof LicenseDeletionStatus];
|
|
1303
1368
|
/**
|
|
1304
1369
|
* @public
|
|
1305
1370
|
*/
|
|
@@ -1585,14 +1650,19 @@ export interface GetLicenseConfigurationRequest {
|
|
|
1585
1650
|
}
|
|
1586
1651
|
/**
|
|
1587
1652
|
* @public
|
|
1653
|
+
* @enum
|
|
1588
1654
|
*/
|
|
1589
|
-
export declare
|
|
1590
|
-
EC2_AMI
|
|
1591
|
-
EC2_HOST
|
|
1592
|
-
EC2_INSTANCE
|
|
1593
|
-
RDS
|
|
1594
|
-
SYSTEMS_MANAGER_MANAGED_INSTANCE
|
|
1595
|
-
}
|
|
1655
|
+
export declare const ResourceType: {
|
|
1656
|
+
readonly EC2_AMI: "EC2_AMI";
|
|
1657
|
+
readonly EC2_HOST: "EC2_HOST";
|
|
1658
|
+
readonly EC2_INSTANCE: "EC2_INSTANCE";
|
|
1659
|
+
readonly RDS: "RDS";
|
|
1660
|
+
readonly SYSTEMS_MANAGER_MANAGED_INSTANCE: "SYSTEMS_MANAGER_MANAGED_INSTANCE";
|
|
1661
|
+
};
|
|
1662
|
+
/**
|
|
1663
|
+
* @public
|
|
1664
|
+
*/
|
|
1665
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
1596
1666
|
/**
|
|
1597
1667
|
* @public
|
|
1598
1668
|
* <p>Details about license consumption.</p>
|
|
@@ -1705,12 +1775,17 @@ export interface GetLicenseConversionTaskRequest {
|
|
|
1705
1775
|
}
|
|
1706
1776
|
/**
|
|
1707
1777
|
* @public
|
|
1778
|
+
* @enum
|
|
1708
1779
|
*/
|
|
1709
|
-
export declare
|
|
1710
|
-
FAILED
|
|
1711
|
-
IN_PROGRESS
|
|
1712
|
-
SUCCEEDED
|
|
1713
|
-
}
|
|
1780
|
+
export declare const LicenseConversionTaskStatus: {
|
|
1781
|
+
readonly FAILED: "FAILED";
|
|
1782
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1783
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
1784
|
+
};
|
|
1785
|
+
/**
|
|
1786
|
+
* @public
|
|
1787
|
+
*/
|
|
1788
|
+
export type LicenseConversionTaskStatus = (typeof LicenseConversionTaskStatus)[keyof typeof LicenseConversionTaskStatus];
|
|
1714
1789
|
/**
|
|
1715
1790
|
* @public
|
|
1716
1791
|
*/
|
|
@@ -2675,17 +2750,22 @@ export interface ListReceivedLicensesRequest {
|
|
|
2675
2750
|
}
|
|
2676
2751
|
/**
|
|
2677
2752
|
* @public
|
|
2753
|
+
* @enum
|
|
2678
2754
|
*/
|
|
2679
|
-
export declare
|
|
2680
|
-
ACTIVE
|
|
2681
|
-
DELETED
|
|
2682
|
-
DISABLED
|
|
2683
|
-
FAILED_WORKFLOW
|
|
2684
|
-
PENDING_ACCEPT
|
|
2685
|
-
PENDING_WORKFLOW
|
|
2686
|
-
REJECTED
|
|
2687
|
-
WORKFLOW_COMPLETED
|
|
2688
|
-
}
|
|
2755
|
+
export declare const ReceivedStatus: {
|
|
2756
|
+
readonly ACTIVE: "ACTIVE";
|
|
2757
|
+
readonly DELETED: "DELETED";
|
|
2758
|
+
readonly DISABLED: "DISABLED";
|
|
2759
|
+
readonly FAILED_WORKFLOW: "FAILED_WORKFLOW";
|
|
2760
|
+
readonly PENDING_ACCEPT: "PENDING_ACCEPT";
|
|
2761
|
+
readonly PENDING_WORKFLOW: "PENDING_WORKFLOW";
|
|
2762
|
+
readonly REJECTED: "REJECTED";
|
|
2763
|
+
readonly WORKFLOW_COMPLETED: "WORKFLOW_COMPLETED";
|
|
2764
|
+
};
|
|
2765
|
+
/**
|
|
2766
|
+
* @public
|
|
2767
|
+
*/
|
|
2768
|
+
export type ReceivedStatus = (typeof ReceivedStatus)[keyof typeof ReceivedStatus];
|
|
2689
2769
|
/**
|
|
2690
2770
|
* @public
|
|
2691
2771
|
* <p>Metadata associated with received licenses and grants.</p>
|
|
@@ -2841,13 +2921,18 @@ export declare class FailedDependencyException extends __BaseException {
|
|
|
2841
2921
|
}
|
|
2842
2922
|
/**
|
|
2843
2923
|
* @public
|
|
2924
|
+
* @enum
|
|
2844
2925
|
*/
|
|
2845
|
-
export declare
|
|
2846
|
-
BEGINS_WITH
|
|
2847
|
-
CONTAINS
|
|
2848
|
-
EQUALS
|
|
2849
|
-
NOT_EQUALS
|
|
2850
|
-
}
|
|
2926
|
+
export declare const InventoryFilterCondition: {
|
|
2927
|
+
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
2928
|
+
readonly CONTAINS: "CONTAINS";
|
|
2929
|
+
readonly EQUALS: "EQUALS";
|
|
2930
|
+
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
2931
|
+
};
|
|
2932
|
+
/**
|
|
2933
|
+
* @public
|
|
2934
|
+
*/
|
|
2935
|
+
export type InventoryFilterCondition = (typeof InventoryFilterCondition)[keyof typeof InventoryFilterCondition];
|
|
2851
2936
|
/**
|
|
2852
2937
|
* @public
|
|
2853
2938
|
* <p>An inventory filter.</p>
|
|
@@ -3203,11 +3288,16 @@ export interface UntagResourceResponse {
|
|
|
3203
3288
|
}
|
|
3204
3289
|
/**
|
|
3205
3290
|
* @public
|
|
3291
|
+
* @enum
|
|
3206
3292
|
*/
|
|
3207
|
-
export declare
|
|
3208
|
-
AVAILABLE
|
|
3209
|
-
DISABLED
|
|
3210
|
-
}
|
|
3293
|
+
export declare const LicenseConfigurationStatus: {
|
|
3294
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
3295
|
+
readonly DISABLED: "DISABLED";
|
|
3296
|
+
};
|
|
3297
|
+
/**
|
|
3298
|
+
* @public
|
|
3299
|
+
*/
|
|
3300
|
+
export type LicenseConfigurationStatus = (typeof LicenseConfigurationStatus)[keyof typeof LicenseConfigurationStatus];
|
|
3211
3301
|
/**
|
|
3212
3302
|
* @public
|
|
3213
3303
|
*/
|