aws-sdk 2.990.0 → 2.994.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 +27 -1
- package/README.md +1 -1
- package/apis/appsync-2017-07-25.min.json +97 -77
- package/apis/comprehend-2017-11-27.min.json +205 -123
- package/apis/comprehend-2017-11-27.paginators.json +10 -0
- package/apis/dms-2016-01-01.min.json +3 -0
- package/apis/ec2-2016-11-15.min.json +125 -54
- package/apis/ec2-2016-11-15.paginators.json +6 -0
- package/apis/ecr-2015-09-21.min.json +66 -14
- package/apis/es-2015-01-01.min.json +14 -4
- package/apis/imagebuilder-2019-12-02.min.json +116 -82
- package/apis/iot-2015-05-28.min.json +80 -44
- package/apis/license-manager-2018-08-01.min.json +184 -71
- package/apis/mediaconvert-2017-08-29.min.json +194 -83
- package/apis/mediapackage-vod-2018-11-07.min.json +3 -0
- package/apis/mediatailor-2018-04-23.min.json +198 -149
- package/apis/models.lex.v2-2020-08-07.min.json +179 -22
- package/apis/models.lex.v2-2020-08-07.paginators.json +5 -0
- package/apis/opensearch-2021-01-01.min.json +14 -4
- package/apis/ssm-2014-11-06.min.json +105 -100
- package/apis/ssm-2014-11-06.waiters2.json +5 -0
- package/apis/wafv2-2019-07-29.min.json +114 -97
- package/clients/appsync.d.ts +35 -13
- package/clients/comprehend.d.ts +165 -1
- package/clients/dms.d.ts +14 -10
- package/clients/ec2.d.ts +147 -61
- package/clients/ecr.d.ts +76 -4
- package/clients/es.d.ts +18 -3
- package/clients/iam.d.ts +85 -85
- package/clients/imagebuilder.d.ts +73 -25
- package/clients/iot.d.ts +55 -5
- package/clients/lexmodelsv2.d.ts +188 -0
- package/clients/licensemanager.d.ts +211 -42
- package/clients/mediaconvert.d.ts +154 -17
- package/clients/mediapackagevod.d.ts +4 -0
- package/clients/mediatailor.d.ts +47 -1
- package/clients/opensearch.d.ts +22 -1
- package/clients/ssm.d.ts +40 -19
- package/clients/wafv2.d.ts +18 -0
- package/dist/aws-sdk-core-react-native.js +4 -4
- package/dist/aws-sdk-react-native.js +24 -24
- package/dist/aws-sdk.js +608 -341
- package/dist/aws-sdk.min.js +72 -72
- package/lib/config.js +1 -1
- package/lib/core.js +1 -1
- package/lib/event_listeners.js +1 -1
- package/lib/http_request.d.ts +1 -1
- package/lib/signers/v4.js +1 -1
- package/package.json +1 -1
|
@@ -44,11 +44,11 @@ declare class LicenseManager extends Service {
|
|
|
44
44
|
*/
|
|
45
45
|
checkoutLicense(callback?: (err: AWSError, data: LicenseManager.Types.CheckoutLicenseResponse) => void): Request<LicenseManager.Types.CheckoutLicenseResponse, AWSError>;
|
|
46
46
|
/**
|
|
47
|
-
* Creates a grant for the specified license. A grant shares the use of license entitlements with specific
|
|
47
|
+
* Creates a grant for the specified license. A grant shares the use of license entitlements with specific Amazon Web Services accounts.
|
|
48
48
|
*/
|
|
49
49
|
createGrant(params: LicenseManager.Types.CreateGrantRequest, callback?: (err: AWSError, data: LicenseManager.Types.CreateGrantResponse) => void): Request<LicenseManager.Types.CreateGrantResponse, AWSError>;
|
|
50
50
|
/**
|
|
51
|
-
* Creates a grant for the specified license. A grant shares the use of license entitlements with specific
|
|
51
|
+
* Creates a grant for the specified license. A grant shares the use of license entitlements with specific Amazon Web Services accounts.
|
|
52
52
|
*/
|
|
53
53
|
createGrant(callback?: (err: AWSError, data: LicenseManager.Types.CreateGrantResponse) => void): Request<LicenseManager.Types.CreateGrantResponse, AWSError>;
|
|
54
54
|
/**
|
|
@@ -76,11 +76,19 @@ declare class LicenseManager extends Service {
|
|
|
76
76
|
*/
|
|
77
77
|
createLicenseConfiguration(callback?: (err: AWSError, data: LicenseManager.Types.CreateLicenseConfigurationResponse) => void): Request<LicenseManager.Types.CreateLicenseConfigurationResponse, AWSError>;
|
|
78
78
|
/**
|
|
79
|
-
* Creates a new
|
|
79
|
+
* Creates a new license conversion task.
|
|
80
|
+
*/
|
|
81
|
+
createLicenseConversionTaskForResource(params: LicenseManager.Types.CreateLicenseConversionTaskForResourceRequest, callback?: (err: AWSError, data: LicenseManager.Types.CreateLicenseConversionTaskForResourceResponse) => void): Request<LicenseManager.Types.CreateLicenseConversionTaskForResourceResponse, AWSError>;
|
|
82
|
+
/**
|
|
83
|
+
* Creates a new license conversion task.
|
|
84
|
+
*/
|
|
85
|
+
createLicenseConversionTaskForResource(callback?: (err: AWSError, data: LicenseManager.Types.CreateLicenseConversionTaskForResourceResponse) => void): Request<LicenseManager.Types.CreateLicenseConversionTaskForResourceResponse, AWSError>;
|
|
86
|
+
/**
|
|
87
|
+
* Creates a report generator.
|
|
80
88
|
*/
|
|
81
89
|
createLicenseManagerReportGenerator(params: LicenseManager.Types.CreateLicenseManagerReportGeneratorRequest, callback?: (err: AWSError, data: LicenseManager.Types.CreateLicenseManagerReportGeneratorResponse) => void): Request<LicenseManager.Types.CreateLicenseManagerReportGeneratorResponse, AWSError>;
|
|
82
90
|
/**
|
|
83
|
-
* Creates a
|
|
91
|
+
* Creates a report generator.
|
|
84
92
|
*/
|
|
85
93
|
createLicenseManagerReportGenerator(callback?: (err: AWSError, data: LicenseManager.Types.CreateLicenseManagerReportGeneratorResponse) => void): Request<LicenseManager.Types.CreateLicenseManagerReportGeneratorResponse, AWSError>;
|
|
86
94
|
/**
|
|
@@ -124,11 +132,11 @@ declare class LicenseManager extends Service {
|
|
|
124
132
|
*/
|
|
125
133
|
deleteLicenseConfiguration(callback?: (err: AWSError, data: LicenseManager.Types.DeleteLicenseConfigurationResponse) => void): Request<LicenseManager.Types.DeleteLicenseConfigurationResponse, AWSError>;
|
|
126
134
|
/**
|
|
127
|
-
*
|
|
135
|
+
* Deletes the specified report generator. This action deletes the report generator, which stops it from generating future reports. The action cannot be reversed. It has no effect on the previous reports from this generator.
|
|
128
136
|
*/
|
|
129
137
|
deleteLicenseManagerReportGenerator(params: LicenseManager.Types.DeleteLicenseManagerReportGeneratorRequest, callback?: (err: AWSError, data: LicenseManager.Types.DeleteLicenseManagerReportGeneratorResponse) => void): Request<LicenseManager.Types.DeleteLicenseManagerReportGeneratorResponse, AWSError>;
|
|
130
138
|
/**
|
|
131
|
-
*
|
|
139
|
+
* Deletes the specified report generator. This action deletes the report generator, which stops it from generating future reports. The action cannot be reversed. It has no effect on the previous reports from this generator.
|
|
132
140
|
*/
|
|
133
141
|
deleteLicenseManagerReportGenerator(callback?: (err: AWSError, data: LicenseManager.Types.DeleteLicenseManagerReportGeneratorResponse) => void): Request<LicenseManager.Types.DeleteLicenseManagerReportGeneratorResponse, AWSError>;
|
|
134
142
|
/**
|
|
@@ -180,11 +188,19 @@ declare class LicenseManager extends Service {
|
|
|
180
188
|
*/
|
|
181
189
|
getLicenseConfiguration(callback?: (err: AWSError, data: LicenseManager.Types.GetLicenseConfigurationResponse) => void): Request<LicenseManager.Types.GetLicenseConfigurationResponse, AWSError>;
|
|
182
190
|
/**
|
|
183
|
-
* Gets information
|
|
191
|
+
* Gets information about the specified license type conversion task.
|
|
192
|
+
*/
|
|
193
|
+
getLicenseConversionTask(params: LicenseManager.Types.GetLicenseConversionTaskRequest, callback?: (err: AWSError, data: LicenseManager.Types.GetLicenseConversionTaskResponse) => void): Request<LicenseManager.Types.GetLicenseConversionTaskResponse, AWSError>;
|
|
194
|
+
/**
|
|
195
|
+
* Gets information about the specified license type conversion task.
|
|
196
|
+
*/
|
|
197
|
+
getLicenseConversionTask(callback?: (err: AWSError, data: LicenseManager.Types.GetLicenseConversionTaskResponse) => void): Request<LicenseManager.Types.GetLicenseConversionTaskResponse, AWSError>;
|
|
198
|
+
/**
|
|
199
|
+
* Gets information about the specified report generator.
|
|
184
200
|
*/
|
|
185
201
|
getLicenseManagerReportGenerator(params: LicenseManager.Types.GetLicenseManagerReportGeneratorRequest, callback?: (err: AWSError, data: LicenseManager.Types.GetLicenseManagerReportGeneratorResponse) => void): Request<LicenseManager.Types.GetLicenseManagerReportGeneratorResponse, AWSError>;
|
|
186
202
|
/**
|
|
187
|
-
* Gets information
|
|
203
|
+
* Gets information about the specified report generator.
|
|
188
204
|
*/
|
|
189
205
|
getLicenseManagerReportGenerator(callback?: (err: AWSError, data: LicenseManager.Types.GetLicenseManagerReportGeneratorResponse) => void): Request<LicenseManager.Types.GetLicenseManagerReportGeneratorResponse, AWSError>;
|
|
190
206
|
/**
|
|
@@ -235,6 +251,14 @@ declare class LicenseManager extends Service {
|
|
|
235
251
|
* Lists the license configurations for your account.
|
|
236
252
|
*/
|
|
237
253
|
listLicenseConfigurations(callback?: (err: AWSError, data: LicenseManager.Types.ListLicenseConfigurationsResponse) => void): Request<LicenseManager.Types.ListLicenseConfigurationsResponse, AWSError>;
|
|
254
|
+
/**
|
|
255
|
+
* Lists the license type conversion tasks for your account.
|
|
256
|
+
*/
|
|
257
|
+
listLicenseConversionTasks(params: LicenseManager.Types.ListLicenseConversionTasksRequest, callback?: (err: AWSError, data: LicenseManager.Types.ListLicenseConversionTasksResponse) => void): Request<LicenseManager.Types.ListLicenseConversionTasksResponse, AWSError>;
|
|
258
|
+
/**
|
|
259
|
+
* Lists the license type conversion tasks for your account.
|
|
260
|
+
*/
|
|
261
|
+
listLicenseConversionTasks(callback?: (err: AWSError, data: LicenseManager.Types.ListLicenseConversionTasksResponse) => void): Request<LicenseManager.Types.ListLicenseConversionTasksResponse, AWSError>;
|
|
238
262
|
/**
|
|
239
263
|
* Lists the report generators for your account.
|
|
240
264
|
*/
|
|
@@ -348,19 +372,19 @@ declare class LicenseManager extends Service {
|
|
|
348
372
|
*/
|
|
349
373
|
updateLicenseConfiguration(callback?: (err: AWSError, data: LicenseManager.Types.UpdateLicenseConfigurationResponse) => void): Request<LicenseManager.Types.UpdateLicenseConfigurationResponse, AWSError>;
|
|
350
374
|
/**
|
|
351
|
-
* Updates a report generator. After you make changes to a report generator, it
|
|
375
|
+
* Updates a report generator. After you make changes to a report generator, it starts generating new reports within 60 minutes of being updated.
|
|
352
376
|
*/
|
|
353
377
|
updateLicenseManagerReportGenerator(params: LicenseManager.Types.UpdateLicenseManagerReportGeneratorRequest, callback?: (err: AWSError, data: LicenseManager.Types.UpdateLicenseManagerReportGeneratorResponse) => void): Request<LicenseManager.Types.UpdateLicenseManagerReportGeneratorResponse, AWSError>;
|
|
354
378
|
/**
|
|
355
|
-
* Updates a report generator. After you make changes to a report generator, it
|
|
379
|
+
* Updates a report generator. After you make changes to a report generator, it starts generating new reports within 60 minutes of being updated.
|
|
356
380
|
*/
|
|
357
381
|
updateLicenseManagerReportGenerator(callback?: (err: AWSError, data: LicenseManager.Types.UpdateLicenseManagerReportGeneratorResponse) => void): Request<LicenseManager.Types.UpdateLicenseManagerReportGeneratorResponse, AWSError>;
|
|
358
382
|
/**
|
|
359
|
-
* Adds or removes the specified license configurations for the specified
|
|
383
|
+
* Adds or removes the specified license configurations for the specified Amazon Web Services resource. You can update the license specifications of AMIs, instances, and hosts. You cannot update the license specifications for launch templates and CloudFormation templates, as they send license configurations to the operation that creates the resource.
|
|
360
384
|
*/
|
|
361
385
|
updateLicenseSpecificationsForResource(params: LicenseManager.Types.UpdateLicenseSpecificationsForResourceRequest, callback?: (err: AWSError, data: LicenseManager.Types.UpdateLicenseSpecificationsForResourceResponse) => void): Request<LicenseManager.Types.UpdateLicenseSpecificationsForResourceResponse, AWSError>;
|
|
362
386
|
/**
|
|
363
|
-
* Adds or removes the specified license configurations for the specified
|
|
387
|
+
* Adds or removes the specified license configurations for the specified Amazon Web Services resource. You can update the license specifications of AMIs, instances, and hosts. You cannot update the license specifications for launch templates and CloudFormation templates, as they send license configurations to the operation that creates the resource.
|
|
364
388
|
*/
|
|
365
389
|
updateLicenseSpecificationsForResource(callback?: (err: AWSError, data: LicenseManager.Types.UpdateLicenseSpecificationsForResourceResponse) => void): Request<LicenseManager.Types.UpdateLicenseSpecificationsForResourceResponse, AWSError>;
|
|
366
390
|
/**
|
|
@@ -638,6 +662,9 @@ declare namespace LicenseManager {
|
|
|
638
662
|
* Grant status.
|
|
639
663
|
*/
|
|
640
664
|
Status?: GrantStatus;
|
|
665
|
+
/**
|
|
666
|
+
* Grant status reason.
|
|
667
|
+
*/
|
|
641
668
|
StatusReason?: StatusReasonMessage;
|
|
642
669
|
/**
|
|
643
670
|
* Current version of the grant.
|
|
@@ -702,13 +729,33 @@ declare namespace LicenseManager {
|
|
|
702
729
|
*/
|
|
703
730
|
LicenseConfigurationArn?: String;
|
|
704
731
|
}
|
|
732
|
+
export interface CreateLicenseConversionTaskForResourceRequest {
|
|
733
|
+
/**
|
|
734
|
+
* Amazon Resource Name (ARN) of the resource you are converting the license type for.
|
|
735
|
+
*/
|
|
736
|
+
ResourceArn: Arn;
|
|
737
|
+
/**
|
|
738
|
+
* Information that identifies the license type you are converting from. For the structure of the source license, see Convert a license type using the AWS CLI in the License Manager User Guide.
|
|
739
|
+
*/
|
|
740
|
+
SourceLicenseContext: LicenseConversionContext;
|
|
741
|
+
/**
|
|
742
|
+
* Information that identifies the license type you are converting to. For the structure of the destination license, see Convert a license type using the AWS CLI in the License Manager User Guide.
|
|
743
|
+
*/
|
|
744
|
+
DestinationLicenseContext: LicenseConversionContext;
|
|
745
|
+
}
|
|
746
|
+
export interface CreateLicenseConversionTaskForResourceResponse {
|
|
747
|
+
/**
|
|
748
|
+
* The ID of the created license type conversion task.
|
|
749
|
+
*/
|
|
750
|
+
LicenseConversionTaskId?: LicenseConversionTaskId;
|
|
751
|
+
}
|
|
705
752
|
export interface CreateLicenseManagerReportGeneratorRequest {
|
|
706
753
|
/**
|
|
707
754
|
* Name of the report generator.
|
|
708
755
|
*/
|
|
709
756
|
ReportGeneratorName: ReportGeneratorName;
|
|
710
757
|
/**
|
|
711
|
-
* Type of reports to generate. The following report types an be generated: License configuration report - Reports
|
|
758
|
+
* Type of reports to generate. The following report types an be generated: License configuration report - Reports the number and details of consumed licenses for a license configuration. Resource report - Reports the tracked licenses and resource consumption for a license configuration.
|
|
712
759
|
*/
|
|
713
760
|
Type: ReportTypeList;
|
|
714
761
|
/**
|
|
@@ -734,7 +781,7 @@ declare namespace LicenseManager {
|
|
|
734
781
|
}
|
|
735
782
|
export interface CreateLicenseManagerReportGeneratorResponse {
|
|
736
783
|
/**
|
|
737
|
-
* The Amazon Resource
|
|
784
|
+
* The Amazon Resource Name (ARN) of the new report generator.
|
|
738
785
|
*/
|
|
739
786
|
LicenseManagerReportGeneratorArn?: String;
|
|
740
787
|
}
|
|
@@ -914,6 +961,9 @@ declare namespace LicenseManager {
|
|
|
914
961
|
* Amazon Resource Name (ARN) of the grant.
|
|
915
962
|
*/
|
|
916
963
|
GrantArn: Arn;
|
|
964
|
+
/**
|
|
965
|
+
* The Status reason for the delete request.
|
|
966
|
+
*/
|
|
917
967
|
StatusReason?: StatusReasonMessage;
|
|
918
968
|
/**
|
|
919
969
|
* Current version of the grant.
|
|
@@ -944,7 +994,7 @@ declare namespace LicenseManager {
|
|
|
944
994
|
}
|
|
945
995
|
export interface DeleteLicenseManagerReportGeneratorRequest {
|
|
946
996
|
/**
|
|
947
|
-
* Amazon Resource
|
|
997
|
+
* Amazon Resource Name (ARN) of the report generator to be deleted.
|
|
948
998
|
*/
|
|
949
999
|
LicenseManagerReportGeneratorArn: String;
|
|
950
1000
|
}
|
|
@@ -966,7 +1016,7 @@ declare namespace LicenseManager {
|
|
|
966
1016
|
*/
|
|
967
1017
|
Status?: LicenseDeletionStatus;
|
|
968
1018
|
/**
|
|
969
|
-
* Date
|
|
1019
|
+
* Date when the license is deleted.
|
|
970
1020
|
*/
|
|
971
1021
|
DeletionDate?: ISO8601DateTime;
|
|
972
1022
|
}
|
|
@@ -1133,7 +1183,7 @@ declare namespace LicenseManager {
|
|
|
1133
1183
|
*/
|
|
1134
1184
|
Description?: String;
|
|
1135
1185
|
/**
|
|
1136
|
-
* Dimension
|
|
1186
|
+
* Dimension for which the licenses are counted.
|
|
1137
1187
|
*/
|
|
1138
1188
|
LicenseCountingType?: LicenseCountingType;
|
|
1139
1189
|
/**
|
|
@@ -1185,15 +1235,59 @@ declare namespace LicenseManager {
|
|
|
1185
1235
|
*/
|
|
1186
1236
|
DisassociateWhenNotFound?: BoxBoolean;
|
|
1187
1237
|
}
|
|
1238
|
+
export interface GetLicenseConversionTaskRequest {
|
|
1239
|
+
/**
|
|
1240
|
+
* ID of the license type conversion task to retrieve information on.
|
|
1241
|
+
*/
|
|
1242
|
+
LicenseConversionTaskId: LicenseConversionTaskId;
|
|
1243
|
+
}
|
|
1244
|
+
export interface GetLicenseConversionTaskResponse {
|
|
1245
|
+
/**
|
|
1246
|
+
* ID of the license type conversion task.
|
|
1247
|
+
*/
|
|
1248
|
+
LicenseConversionTaskId?: LicenseConversionTaskId;
|
|
1249
|
+
/**
|
|
1250
|
+
* Amazon Resource Names (ARN) of the resources the license conversion task is associated with.
|
|
1251
|
+
*/
|
|
1252
|
+
ResourceArn?: String;
|
|
1253
|
+
/**
|
|
1254
|
+
* Information about the license type converted from.
|
|
1255
|
+
*/
|
|
1256
|
+
SourceLicenseContext?: LicenseConversionContext;
|
|
1257
|
+
/**
|
|
1258
|
+
* Information about the license type converted to.
|
|
1259
|
+
*/
|
|
1260
|
+
DestinationLicenseContext?: LicenseConversionContext;
|
|
1261
|
+
/**
|
|
1262
|
+
* The status message for the conversion task.
|
|
1263
|
+
*/
|
|
1264
|
+
StatusMessage?: String;
|
|
1265
|
+
/**
|
|
1266
|
+
* Status of the license type conversion task.
|
|
1267
|
+
*/
|
|
1268
|
+
Status?: LicenseConversionTaskStatus;
|
|
1269
|
+
/**
|
|
1270
|
+
* Time at which the license type conversion task was started .
|
|
1271
|
+
*/
|
|
1272
|
+
StartTime?: DateTime;
|
|
1273
|
+
/**
|
|
1274
|
+
* Amount of time to complete the license type conversion.
|
|
1275
|
+
*/
|
|
1276
|
+
LicenseConversionTime?: DateTime;
|
|
1277
|
+
/**
|
|
1278
|
+
* Time at which the license type conversion task was completed.
|
|
1279
|
+
*/
|
|
1280
|
+
EndTime?: DateTime;
|
|
1281
|
+
}
|
|
1188
1282
|
export interface GetLicenseManagerReportGeneratorRequest {
|
|
1189
1283
|
/**
|
|
1190
|
-
*
|
|
1284
|
+
* Amazon Resource Name (ARN) of the report generator.
|
|
1191
1285
|
*/
|
|
1192
1286
|
LicenseManagerReportGeneratorArn: String;
|
|
1193
1287
|
}
|
|
1194
1288
|
export interface GetLicenseManagerReportGeneratorResponse {
|
|
1195
1289
|
/**
|
|
1196
|
-
* A report generator that creates periodic reports
|
|
1290
|
+
* A report generator that creates periodic reports about your license configurations.
|
|
1197
1291
|
*/
|
|
1198
1292
|
ReportGenerator?: ReportGenerator;
|
|
1199
1293
|
}
|
|
@@ -1237,7 +1331,7 @@ declare namespace LicenseManager {
|
|
|
1237
1331
|
*/
|
|
1238
1332
|
SnsTopicArn?: String;
|
|
1239
1333
|
/**
|
|
1240
|
-
* Indicates whether
|
|
1334
|
+
* Indicates whether Organizations is integrated with License Manager for cross-account discovery.
|
|
1241
1335
|
*/
|
|
1242
1336
|
OrganizationConfiguration?: OrganizationConfiguration;
|
|
1243
1337
|
/**
|
|
@@ -1245,7 +1339,7 @@ declare namespace LicenseManager {
|
|
|
1245
1339
|
*/
|
|
1246
1340
|
EnableCrossAccountsDiscovery?: BoxBoolean;
|
|
1247
1341
|
/**
|
|
1248
|
-
* Amazon Resource Name (ARN) of the
|
|
1342
|
+
* Amazon Resource Name (ARN) of the resource share. The License Manager management account provides member accounts with access to this share.
|
|
1249
1343
|
*/
|
|
1250
1344
|
LicenseManagerResourceShareArn?: String;
|
|
1251
1345
|
}
|
|
@@ -1380,7 +1474,7 @@ declare namespace LicenseManager {
|
|
|
1380
1474
|
*/
|
|
1381
1475
|
Name: String;
|
|
1382
1476
|
/**
|
|
1383
|
-
* Asymmetric
|
|
1477
|
+
* Asymmetric KMS key from Key Management Service. The KMS key must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.
|
|
1384
1478
|
*/
|
|
1385
1479
|
SignKey?: String;
|
|
1386
1480
|
}
|
|
@@ -1390,7 +1484,7 @@ declare namespace LicenseManager {
|
|
|
1390
1484
|
*/
|
|
1391
1485
|
Name?: String;
|
|
1392
1486
|
/**
|
|
1393
|
-
* Asymmetric
|
|
1487
|
+
* Asymmetric KMS key from Key Management Service. The KMS key must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.
|
|
1394
1488
|
*/
|
|
1395
1489
|
SignKey?: String;
|
|
1396
1490
|
/**
|
|
@@ -1532,7 +1626,7 @@ declare namespace LicenseManager {
|
|
|
1532
1626
|
*/
|
|
1533
1627
|
ResourceType?: ResourceType;
|
|
1534
1628
|
/**
|
|
1535
|
-
* ID of the
|
|
1629
|
+
* ID of the Amazon Web Services account that owns the resource consuming licenses.
|
|
1536
1630
|
*/
|
|
1537
1631
|
ResourceOwnerId?: String;
|
|
1538
1632
|
/**
|
|
@@ -1574,6 +1668,53 @@ declare namespace LicenseManager {
|
|
|
1574
1668
|
}
|
|
1575
1669
|
export type LicenseConfigurationUsageList = LicenseConfigurationUsage[];
|
|
1576
1670
|
export type LicenseConfigurations = LicenseConfiguration[];
|
|
1671
|
+
export interface LicenseConversionContext {
|
|
1672
|
+
/**
|
|
1673
|
+
* The Usage operation value that corresponds to the license type you are converting your resource from. For more information about which platforms correspond to which usage operation values see Sample data: usage operation by platform
|
|
1674
|
+
*/
|
|
1675
|
+
UsageOperation?: UsageOperation;
|
|
1676
|
+
}
|
|
1677
|
+
export interface LicenseConversionTask {
|
|
1678
|
+
/**
|
|
1679
|
+
* The ID of the license type conversion task.
|
|
1680
|
+
*/
|
|
1681
|
+
LicenseConversionTaskId?: LicenseConversionTaskId;
|
|
1682
|
+
/**
|
|
1683
|
+
* The Amazon Resource Name (ARN) of the resource associated with the license type conversion task.
|
|
1684
|
+
*/
|
|
1685
|
+
ResourceArn?: String;
|
|
1686
|
+
/**
|
|
1687
|
+
* Information about the license type this conversion task converted from.
|
|
1688
|
+
*/
|
|
1689
|
+
SourceLicenseContext?: LicenseConversionContext;
|
|
1690
|
+
/**
|
|
1691
|
+
* Information about the license type this conversion task converted to.
|
|
1692
|
+
*/
|
|
1693
|
+
DestinationLicenseContext?: LicenseConversionContext;
|
|
1694
|
+
/**
|
|
1695
|
+
* The status of the conversion task.
|
|
1696
|
+
*/
|
|
1697
|
+
Status?: LicenseConversionTaskStatus;
|
|
1698
|
+
/**
|
|
1699
|
+
* The status message for the conversion task.
|
|
1700
|
+
*/
|
|
1701
|
+
StatusMessage?: String;
|
|
1702
|
+
/**
|
|
1703
|
+
* The time the conversion task was started at.
|
|
1704
|
+
*/
|
|
1705
|
+
StartTime?: DateTime;
|
|
1706
|
+
/**
|
|
1707
|
+
* The time the usage operation value of the resource was changed.
|
|
1708
|
+
*/
|
|
1709
|
+
LicenseConversionTime?: DateTime;
|
|
1710
|
+
/**
|
|
1711
|
+
* The time the conversion task was completed.
|
|
1712
|
+
*/
|
|
1713
|
+
EndTime?: DateTime;
|
|
1714
|
+
}
|
|
1715
|
+
export type LicenseConversionTaskId = string;
|
|
1716
|
+
export type LicenseConversionTaskStatus = "IN_PROGRESS"|"SUCCEEDED"|"FAILED"|string;
|
|
1717
|
+
export type LicenseConversionTasks = LicenseConversionTask[];
|
|
1577
1718
|
export type LicenseCountingType = "vCPU"|"Instance"|"Core"|"Socket"|string;
|
|
1578
1719
|
export type LicenseDeletionStatus = "PENDING_DELETE"|"DELETED"|string;
|
|
1579
1720
|
export type LicenseList = License[];
|
|
@@ -1599,7 +1740,7 @@ declare namespace LicenseManager {
|
|
|
1599
1740
|
*/
|
|
1600
1741
|
OperationName?: String;
|
|
1601
1742
|
/**
|
|
1602
|
-
* ID of the
|
|
1743
|
+
* ID of the Amazon Web Services account that owns the resource.
|
|
1603
1744
|
*/
|
|
1604
1745
|
ResourceOwnerId?: String;
|
|
1605
1746
|
/**
|
|
@@ -1720,7 +1861,7 @@ declare namespace LicenseManager {
|
|
|
1720
1861
|
*/
|
|
1721
1862
|
NextToken?: String;
|
|
1722
1863
|
/**
|
|
1723
|
-
* Filters to scope the results. The following filters and logical operators are supported: licenseCountingType - The dimension
|
|
1864
|
+
* Filters to scope the results. The following filters and logical operators are supported: licenseCountingType - The dimension for which licenses are counted. Possible values are vCPU | Instance | Core | Socket. Logical operators are EQUALS | NOT_EQUALS. enforceLicenseCount - A Boolean value that indicates whether hard license enforcement is used. Logical operators are EQUALS | NOT_EQUALS. usagelimitExceeded - A Boolean value that indicates whether the available licenses have been exceeded. Logical operators are EQUALS | NOT_EQUALS.
|
|
1724
1865
|
*/
|
|
1725
1866
|
Filters?: Filters;
|
|
1726
1867
|
}
|
|
@@ -1734,6 +1875,30 @@ declare namespace LicenseManager {
|
|
|
1734
1875
|
*/
|
|
1735
1876
|
NextToken?: String;
|
|
1736
1877
|
}
|
|
1878
|
+
export interface ListLicenseConversionTasksRequest {
|
|
1879
|
+
/**
|
|
1880
|
+
* Token for the next set of results.
|
|
1881
|
+
*/
|
|
1882
|
+
NextToken?: String;
|
|
1883
|
+
/**
|
|
1884
|
+
* Maximum number of results to return in a single call.
|
|
1885
|
+
*/
|
|
1886
|
+
MaxResults?: BoxInteger;
|
|
1887
|
+
/**
|
|
1888
|
+
* Filters to scope the results. Valid filters are ResourceArns and Status.
|
|
1889
|
+
*/
|
|
1890
|
+
Filters?: Filters;
|
|
1891
|
+
}
|
|
1892
|
+
export interface ListLicenseConversionTasksResponse {
|
|
1893
|
+
/**
|
|
1894
|
+
* Information about the license configuration tasks for your account.
|
|
1895
|
+
*/
|
|
1896
|
+
LicenseConversionTasks?: LicenseConversionTasks;
|
|
1897
|
+
/**
|
|
1898
|
+
* Token for the next set of results.
|
|
1899
|
+
*/
|
|
1900
|
+
NextToken?: String;
|
|
1901
|
+
}
|
|
1737
1902
|
export interface ListLicenseManagerReportGeneratorsRequest {
|
|
1738
1903
|
/**
|
|
1739
1904
|
* Filters to scope the results. The following filters are supported: LicenseConfigurationArn
|
|
@@ -1750,7 +1915,7 @@ declare namespace LicenseManager {
|
|
|
1750
1915
|
}
|
|
1751
1916
|
export interface ListLicenseManagerReportGeneratorsResponse {
|
|
1752
1917
|
/**
|
|
1753
|
-
* A report generator that creates periodic reports
|
|
1918
|
+
* A report generator that creates periodic reports about your license configurations.
|
|
1754
1919
|
*/
|
|
1755
1920
|
ReportGenerators?: ReportGeneratorList;
|
|
1756
1921
|
/**
|
|
@@ -1900,7 +2065,7 @@ declare namespace LicenseManager {
|
|
|
1900
2065
|
*/
|
|
1901
2066
|
NextToken?: String;
|
|
1902
2067
|
/**
|
|
1903
|
-
* Filters to scope the results. The following filters and logical operators are supported: account_id - The ID of the
|
|
2068
|
+
* Filters to scope the results. The following filters and logical operators are supported: account_id - The ID of the Amazon Web Services account that owns the resource. Logical operators are EQUALS | NOT_EQUALS. application_name - The name of the application. Logical operators are EQUALS | BEGINS_WITH. license_included - The type of license included. Logical operators are EQUALS | NOT_EQUALS. Possible values are sql-server-enterprise | sql-server-standard | sql-server-web | windows-server-datacenter. platform - The platform of the resource. Logical operators are EQUALS | BEGINS_WITH. resource_id - The ID of the resource. Logical operators are EQUALS | NOT_EQUALS. tag:<key> - The key/value combination of a tag assigned to the resource. Logical operators are EQUALS (single account) or EQUALS | NOT_EQUALS (cross account).
|
|
1904
2069
|
*/
|
|
1905
2070
|
Filters?: InventoryFilterList;
|
|
1906
2071
|
}
|
|
@@ -2009,7 +2174,7 @@ declare namespace LicenseManager {
|
|
|
2009
2174
|
export type MetadataList = Metadata[];
|
|
2010
2175
|
export interface OrganizationConfiguration {
|
|
2011
2176
|
/**
|
|
2012
|
-
* Enables
|
|
2177
|
+
* Enables Organizations integration.
|
|
2013
2178
|
*/
|
|
2014
2179
|
EnableIntegration: Boolean;
|
|
2015
2180
|
}
|
|
@@ -2020,7 +2185,7 @@ declare namespace LicenseManager {
|
|
|
2020
2185
|
*/
|
|
2021
2186
|
ResourceType: String;
|
|
2022
2187
|
/**
|
|
2023
|
-
* A Product information filter consists of a ProductInformationFilterComparator which is a logical operator, a ProductInformationFilterName which specifies the type of filter being declared, and a ProductInformationFilterValue that specifies the value to filter on. Accepted values for ProductInformationFilterName are listed here along with descriptions and valid options for ProductInformationFilterComparator. The following filters and are supported when the resource type is SSM_MANAGED: Application Name - The name of the application. Logical operator is EQUALS. Application Publisher - The publisher of the application. Logical operator is EQUALS. Application Version - The version of the application. Logical operator is EQUALS. Platform Name - The name of the platform. Logical operator is EQUALS. Platform Type - The platform type. Logical operator is EQUALS. Tag:key - The key of a tag attached to an
|
|
2188
|
+
* A Product information filter consists of a ProductInformationFilterComparator which is a logical operator, a ProductInformationFilterName which specifies the type of filter being declared, and a ProductInformationFilterValue that specifies the value to filter on. Accepted values for ProductInformationFilterName are listed here along with descriptions and valid options for ProductInformationFilterComparator. The following filters and are supported when the resource type is SSM_MANAGED: Application Name - The name of the application. Logical operator is EQUALS. Application Publisher - The publisher of the application. Logical operator is EQUALS. Application Version - The version of the application. Logical operator is EQUALS. Platform Name - The name of the platform. Logical operator is EQUALS. Platform Type - The platform type. Logical operator is EQUALS. Tag:key - The key of a tag attached to an Amazon Web Services resource you wish to exclude from automated discovery. Logical operator is NOT_EQUALS. The key for your tag must be appended to Tag: following the example: Tag:name-of-your-key. ProductInformationFilterValue is optional if you are not using values for the key. AccountId - The 12-digit ID of an Amazon Web Services account you wish to exclude from automated discovery. Logical operator is NOT_EQUALS. License Included - The type of license included. Logical operators are EQUALS and NOT_EQUALS. Possible values are: sql-server-enterprise | sql-server-standard | sql-server-web | windows-server-datacenter. The following filters and logical operators are supported when the resource type is RDS: Engine Edition - The edition of the database engine. Logical operator is EQUALS. Possible values are: oracle-ee | oracle-se | oracle-se1 | oracle-se2. License Pack - The license pack. Logical operator is EQUALS. Possible values are: data guard | diagnostic pack sqlt | tuning pack sqlt | ols | olap.
|
|
2024
2189
|
*/
|
|
2025
2190
|
ProductInformationFilterList: ProductInformationFilterList;
|
|
2026
2191
|
}
|
|
@@ -2051,6 +2216,9 @@ declare namespace LicenseManager {
|
|
|
2051
2216
|
* Received status.
|
|
2052
2217
|
*/
|
|
2053
2218
|
ReceivedStatus?: ReceivedStatus;
|
|
2219
|
+
/**
|
|
2220
|
+
* Received status reason.
|
|
2221
|
+
*/
|
|
2054
2222
|
ReceivedStatusReason?: StatusReasonMessage;
|
|
2055
2223
|
/**
|
|
2056
2224
|
* Allowed operations.
|
|
@@ -2081,13 +2249,13 @@ declare namespace LicenseManager {
|
|
|
2081
2249
|
export type RenewType = "None"|"Weekly"|"Monthly"|string;
|
|
2082
2250
|
export interface ReportContext {
|
|
2083
2251
|
/**
|
|
2084
|
-
* Amazon Resource
|
|
2252
|
+
* Amazon Resource Name (ARN) of the license configuration that this generator reports on.
|
|
2085
2253
|
*/
|
|
2086
2254
|
licenseConfigurationArns: ArnList;
|
|
2087
2255
|
}
|
|
2088
2256
|
export interface ReportFrequency {
|
|
2089
2257
|
/**
|
|
2090
|
-
* Number of times within the frequency period that a report
|
|
2258
|
+
* Number of times within the frequency period that a report is generated. The only supported value is 1.
|
|
2091
2259
|
*/
|
|
2092
2260
|
value?: Integer;
|
|
2093
2261
|
/**
|
|
@@ -2106,15 +2274,15 @@ declare namespace LicenseManager {
|
|
|
2106
2274
|
*/
|
|
2107
2275
|
ReportType?: ReportTypeList;
|
|
2108
2276
|
/**
|
|
2109
|
-
* License configuration type this generator
|
|
2277
|
+
* License configuration type for this generator.
|
|
2110
2278
|
*/
|
|
2111
2279
|
ReportContext?: ReportContext;
|
|
2112
2280
|
/**
|
|
2113
|
-
* Details
|
|
2281
|
+
* Details about how frequently reports are generated.
|
|
2114
2282
|
*/
|
|
2115
2283
|
ReportFrequency?: ReportFrequency;
|
|
2116
2284
|
/**
|
|
2117
|
-
* Amazon Resource
|
|
2285
|
+
* Amazon Resource Name (ARN) of the report generator.
|
|
2118
2286
|
*/
|
|
2119
2287
|
LicenseManagerReportGeneratorArn?: String;
|
|
2120
2288
|
/**
|
|
@@ -2130,7 +2298,7 @@ declare namespace LicenseManager {
|
|
|
2130
2298
|
*/
|
|
2131
2299
|
LastReportGenerationTime?: String;
|
|
2132
2300
|
/**
|
|
2133
|
-
* The
|
|
2301
|
+
* The Amazon Web Services account ID used to create the report generator.
|
|
2134
2302
|
*/
|
|
2135
2303
|
ReportCreatorAccount?: String;
|
|
2136
2304
|
/**
|
|
@@ -2307,7 +2475,7 @@ declare namespace LicenseManager {
|
|
|
2307
2475
|
}
|
|
2308
2476
|
export interface UpdateLicenseManagerReportGeneratorRequest {
|
|
2309
2477
|
/**
|
|
2310
|
-
* Amazon Resource
|
|
2478
|
+
* Amazon Resource Name (ARN) of the report generator to update.
|
|
2311
2479
|
*/
|
|
2312
2480
|
LicenseManagerReportGeneratorArn: String;
|
|
2313
2481
|
/**
|
|
@@ -2315,15 +2483,15 @@ declare namespace LicenseManager {
|
|
|
2315
2483
|
*/
|
|
2316
2484
|
ReportGeneratorName: ReportGeneratorName;
|
|
2317
2485
|
/**
|
|
2318
|
-
* Type of reports to generate. The following report types
|
|
2486
|
+
* Type of reports to generate. The following report types are supported: License configuration report - Reports the number and details of consumed licenses for a license configuration. Resource report - Reports the tracked licenses and resource consumption for a license configuration.
|
|
2319
2487
|
*/
|
|
2320
2488
|
Type: ReportTypeList;
|
|
2321
2489
|
/**
|
|
2322
|
-
*
|
|
2490
|
+
* The report context.
|
|
2323
2491
|
*/
|
|
2324
2492
|
ReportContext: ReportContext;
|
|
2325
2493
|
/**
|
|
2326
|
-
* Frequency by which reports are generated.
|
|
2494
|
+
* Frequency by which reports are generated.
|
|
2327
2495
|
*/
|
|
2328
2496
|
ReportFrequency: ReportFrequency;
|
|
2329
2497
|
/**
|
|
@@ -2339,7 +2507,7 @@ declare namespace LicenseManager {
|
|
|
2339
2507
|
}
|
|
2340
2508
|
export interface UpdateLicenseSpecificationsForResourceRequest {
|
|
2341
2509
|
/**
|
|
2342
|
-
* Amazon Resource Name (ARN) of the
|
|
2510
|
+
* Amazon Resource Name (ARN) of the Amazon Web Services resource.
|
|
2343
2511
|
*/
|
|
2344
2512
|
ResourceArn: String;
|
|
2345
2513
|
/**
|
|
@@ -2363,7 +2531,7 @@ declare namespace LicenseManager {
|
|
|
2363
2531
|
*/
|
|
2364
2532
|
SnsTopicArn?: String;
|
|
2365
2533
|
/**
|
|
2366
|
-
* Enables integration with
|
|
2534
|
+
* Enables integration with Organizations for cross-account discovery.
|
|
2367
2535
|
*/
|
|
2368
2536
|
OrganizationConfiguration?: OrganizationConfiguration;
|
|
2369
2537
|
/**
|
|
@@ -2373,6 +2541,7 @@ declare namespace LicenseManager {
|
|
|
2373
2541
|
}
|
|
2374
2542
|
export interface UpdateServiceSettingsResponse {
|
|
2375
2543
|
}
|
|
2544
|
+
export type UsageOperation = string;
|
|
2376
2545
|
/**
|
|
2377
2546
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
2378
2547
|
*/
|