aws-sdk-licensemanager 1.23.0 → 1.28.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +153 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-licensemanager.rb +2 -2
- data/lib/aws-sdk-licensemanager/client.rb +322 -29
- data/lib/aws-sdk-licensemanager/client_api.rb +188 -9
- data/lib/aws-sdk-licensemanager/errors.rb +1 -1
- data/lib/aws-sdk-licensemanager/resource.rb +1 -1
- data/lib/aws-sdk-licensemanager/types.rb +491 -25
- metadata +11 -9
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -34,6 +34,7 @@ module Aws::LicenseManager
|
|
34
34
|
CheckoutLicenseRequest = Shapes::StructureShape.new(name: 'CheckoutLicenseRequest')
|
35
35
|
CheckoutLicenseResponse = Shapes::StructureShape.new(name: 'CheckoutLicenseResponse')
|
36
36
|
CheckoutType = Shapes::StringShape.new(name: 'CheckoutType')
|
37
|
+
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
37
38
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
38
39
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
39
40
|
ConsumedLicenseSummary = Shapes::StructureShape.new(name: 'ConsumedLicenseSummary')
|
@@ -45,6 +46,8 @@ module Aws::LicenseManager
|
|
45
46
|
CreateGrantVersionResponse = Shapes::StructureShape.new(name: 'CreateGrantVersionResponse')
|
46
47
|
CreateLicenseConfigurationRequest = Shapes::StructureShape.new(name: 'CreateLicenseConfigurationRequest')
|
47
48
|
CreateLicenseConfigurationResponse = Shapes::StructureShape.new(name: 'CreateLicenseConfigurationResponse')
|
49
|
+
CreateLicenseManagerReportGeneratorRequest = Shapes::StructureShape.new(name: 'CreateLicenseManagerReportGeneratorRequest')
|
50
|
+
CreateLicenseManagerReportGeneratorResponse = Shapes::StructureShape.new(name: 'CreateLicenseManagerReportGeneratorResponse')
|
48
51
|
CreateLicenseRequest = Shapes::StructureShape.new(name: 'CreateLicenseRequest')
|
49
52
|
CreateLicenseResponse = Shapes::StructureShape.new(name: 'CreateLicenseResponse')
|
50
53
|
CreateLicenseVersionRequest = Shapes::StructureShape.new(name: 'CreateLicenseVersionRequest')
|
@@ -57,6 +60,8 @@ module Aws::LicenseManager
|
|
57
60
|
DeleteGrantResponse = Shapes::StructureShape.new(name: 'DeleteGrantResponse')
|
58
61
|
DeleteLicenseConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteLicenseConfigurationRequest')
|
59
62
|
DeleteLicenseConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteLicenseConfigurationResponse')
|
63
|
+
DeleteLicenseManagerReportGeneratorRequest = Shapes::StructureShape.new(name: 'DeleteLicenseManagerReportGeneratorRequest')
|
64
|
+
DeleteLicenseManagerReportGeneratorResponse = Shapes::StructureShape.new(name: 'DeleteLicenseManagerReportGeneratorResponse')
|
60
65
|
DeleteLicenseRequest = Shapes::StructureShape.new(name: 'DeleteLicenseRequest')
|
61
66
|
DeleteLicenseResponse = Shapes::StructureShape.new(name: 'DeleteLicenseResponse')
|
62
67
|
DeleteTokenRequest = Shapes::StructureShape.new(name: 'DeleteTokenRequest')
|
@@ -87,6 +92,8 @@ module Aws::LicenseManager
|
|
87
92
|
GetGrantResponse = Shapes::StructureShape.new(name: 'GetGrantResponse')
|
88
93
|
GetLicenseConfigurationRequest = Shapes::StructureShape.new(name: 'GetLicenseConfigurationRequest')
|
89
94
|
GetLicenseConfigurationResponse = Shapes::StructureShape.new(name: 'GetLicenseConfigurationResponse')
|
95
|
+
GetLicenseManagerReportGeneratorRequest = Shapes::StructureShape.new(name: 'GetLicenseManagerReportGeneratorRequest')
|
96
|
+
GetLicenseManagerReportGeneratorResponse = Shapes::StructureShape.new(name: 'GetLicenseManagerReportGeneratorResponse')
|
90
97
|
GetLicenseRequest = Shapes::StructureShape.new(name: 'GetLicenseRequest')
|
91
98
|
GetLicenseResponse = Shapes::StructureShape.new(name: 'GetLicenseResponse')
|
92
99
|
GetLicenseUsageRequest = Shapes::StructureShape.new(name: 'GetLicenseUsageRequest')
|
@@ -99,7 +106,6 @@ module Aws::LicenseManager
|
|
99
106
|
GrantedLicense = Shapes::StructureShape.new(name: 'GrantedLicense')
|
100
107
|
GrantedLicenseList = Shapes::ListShape.new(name: 'GrantedLicenseList')
|
101
108
|
ISO8601DateTime = Shapes::StringShape.new(name: 'ISO8601DateTime')
|
102
|
-
IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
|
103
109
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
104
110
|
InvalidParameterValueException = Shapes::StructureShape.new(name: 'InvalidParameterValueException')
|
105
111
|
InvalidResourceStateException = Shapes::StructureShape.new(name: 'InvalidResourceStateException')
|
@@ -134,6 +140,8 @@ module Aws::LicenseManager
|
|
134
140
|
ListFailuresForLicenseConfigurationOperationsResponse = Shapes::StructureShape.new(name: 'ListFailuresForLicenseConfigurationOperationsResponse')
|
135
141
|
ListLicenseConfigurationsRequest = Shapes::StructureShape.new(name: 'ListLicenseConfigurationsRequest')
|
136
142
|
ListLicenseConfigurationsResponse = Shapes::StructureShape.new(name: 'ListLicenseConfigurationsResponse')
|
143
|
+
ListLicenseManagerReportGeneratorsRequest = Shapes::StructureShape.new(name: 'ListLicenseManagerReportGeneratorsRequest')
|
144
|
+
ListLicenseManagerReportGeneratorsResponse = Shapes::StructureShape.new(name: 'ListLicenseManagerReportGeneratorsResponse')
|
137
145
|
ListLicenseSpecificationsForResourceRequest = Shapes::StructureShape.new(name: 'ListLicenseSpecificationsForResourceRequest')
|
138
146
|
ListLicenseSpecificationsForResourceResponse = Shapes::StructureShape.new(name: 'ListLicenseSpecificationsForResourceResponse')
|
139
147
|
ListLicenseVersionsRequest = Shapes::StructureShape.new(name: 'ListLicenseVersionsRequest')
|
@@ -176,13 +184,23 @@ module Aws::LicenseManager
|
|
176
184
|
RejectGrantRequest = Shapes::StructureShape.new(name: 'RejectGrantRequest')
|
177
185
|
RejectGrantResponse = Shapes::StructureShape.new(name: 'RejectGrantResponse')
|
178
186
|
RenewType = Shapes::StringShape.new(name: 'RenewType')
|
187
|
+
ReportContext = Shapes::StructureShape.new(name: 'ReportContext')
|
188
|
+
ReportFrequency = Shapes::StructureShape.new(name: 'ReportFrequency')
|
189
|
+
ReportFrequencyType = Shapes::StringShape.new(name: 'ReportFrequencyType')
|
190
|
+
ReportGenerator = Shapes::StructureShape.new(name: 'ReportGenerator')
|
191
|
+
ReportGeneratorList = Shapes::ListShape.new(name: 'ReportGeneratorList')
|
192
|
+
ReportGeneratorName = Shapes::StringShape.new(name: 'ReportGeneratorName')
|
193
|
+
ReportType = Shapes::StringShape.new(name: 'ReportType')
|
194
|
+
ReportTypeList = Shapes::ListShape.new(name: 'ReportTypeList')
|
179
195
|
ResourceInventory = Shapes::StructureShape.new(name: 'ResourceInventory')
|
180
196
|
ResourceInventoryList = Shapes::ListShape.new(name: 'ResourceInventoryList')
|
181
197
|
ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
|
182
198
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
183
199
|
ResourceType = Shapes::StringShape.new(name: 'ResourceType')
|
200
|
+
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
184
201
|
ServerInternalException = Shapes::StructureShape.new(name: 'ServerInternalException')
|
185
202
|
SignedToken = Shapes::StringShape.new(name: 'SignedToken')
|
203
|
+
StatusReasonMessage = Shapes::StringShape.new(name: 'StatusReasonMessage')
|
186
204
|
String = Shapes::StringShape.new(name: 'String')
|
187
205
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
188
206
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
@@ -199,6 +217,8 @@ module Aws::LicenseManager
|
|
199
217
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
200
218
|
UpdateLicenseConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateLicenseConfigurationRequest')
|
201
219
|
UpdateLicenseConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateLicenseConfigurationResponse')
|
220
|
+
UpdateLicenseManagerReportGeneratorRequest = Shapes::StructureShape.new(name: 'UpdateLicenseManagerReportGeneratorRequest')
|
221
|
+
UpdateLicenseManagerReportGeneratorResponse = Shapes::StructureShape.new(name: 'UpdateLicenseManagerReportGeneratorResponse')
|
202
222
|
UpdateLicenseSpecificationsForResourceRequest = Shapes::StructureShape.new(name: 'UpdateLicenseSpecificationsForResourceRequest')
|
203
223
|
UpdateLicenseSpecificationsForResourceResponse = Shapes::StructureShape.new(name: 'UpdateLicenseSpecificationsForResourceResponse')
|
204
224
|
UpdateServiceSettingsRequest = Shapes::StructureShape.new(name: 'UpdateServiceSettingsRequest')
|
@@ -286,7 +306,7 @@ module Aws::LicenseManager
|
|
286
306
|
ConsumptionConfiguration.add_member(:borrow_configuration, Shapes::ShapeRef.new(shape: BorrowConfiguration, location_name: "BorrowConfiguration"))
|
287
307
|
ConsumptionConfiguration.struct_class = Types::ConsumptionConfiguration
|
288
308
|
|
289
|
-
CreateGrantRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
309
|
+
CreateGrantRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "ClientToken"))
|
290
310
|
CreateGrantRequest.add_member(:grant_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "GrantName"))
|
291
311
|
CreateGrantRequest.add_member(:license_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "LicenseArn"))
|
292
312
|
CreateGrantRequest.add_member(:principals, Shapes::ShapeRef.new(shape: PrincipalArnList, required: true, location_name: "Principals"))
|
@@ -299,11 +319,12 @@ module Aws::LicenseManager
|
|
299
319
|
CreateGrantResponse.add_member(:version, Shapes::ShapeRef.new(shape: String, location_name: "Version"))
|
300
320
|
CreateGrantResponse.struct_class = Types::CreateGrantResponse
|
301
321
|
|
302
|
-
CreateGrantVersionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
322
|
+
CreateGrantVersionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "ClientToken"))
|
303
323
|
CreateGrantVersionRequest.add_member(:grant_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "GrantArn"))
|
304
324
|
CreateGrantVersionRequest.add_member(:grant_name, Shapes::ShapeRef.new(shape: String, location_name: "GrantName"))
|
305
325
|
CreateGrantVersionRequest.add_member(:allowed_operations, Shapes::ShapeRef.new(shape: AllowedOperationList, location_name: "AllowedOperations"))
|
306
326
|
CreateGrantVersionRequest.add_member(:status, Shapes::ShapeRef.new(shape: GrantStatus, location_name: "Status"))
|
327
|
+
CreateGrantVersionRequest.add_member(:status_reason, Shapes::ShapeRef.new(shape: StatusReasonMessage, location_name: "StatusReason"))
|
307
328
|
CreateGrantVersionRequest.add_member(:source_version, Shapes::ShapeRef.new(shape: String, location_name: "SourceVersion"))
|
308
329
|
CreateGrantVersionRequest.struct_class = Types::CreateGrantVersionRequest
|
309
330
|
|
@@ -326,6 +347,18 @@ module Aws::LicenseManager
|
|
326
347
|
CreateLicenseConfigurationResponse.add_member(:license_configuration_arn, Shapes::ShapeRef.new(shape: String, location_name: "LicenseConfigurationArn"))
|
327
348
|
CreateLicenseConfigurationResponse.struct_class = Types::CreateLicenseConfigurationResponse
|
328
349
|
|
350
|
+
CreateLicenseManagerReportGeneratorRequest.add_member(:report_generator_name, Shapes::ShapeRef.new(shape: ReportGeneratorName, required: true, location_name: "ReportGeneratorName"))
|
351
|
+
CreateLicenseManagerReportGeneratorRequest.add_member(:type, Shapes::ShapeRef.new(shape: ReportTypeList, required: true, location_name: "Type"))
|
352
|
+
CreateLicenseManagerReportGeneratorRequest.add_member(:report_context, Shapes::ShapeRef.new(shape: ReportContext, required: true, location_name: "ReportContext"))
|
353
|
+
CreateLicenseManagerReportGeneratorRequest.add_member(:report_frequency, Shapes::ShapeRef.new(shape: ReportFrequency, required: true, location_name: "ReportFrequency"))
|
354
|
+
CreateLicenseManagerReportGeneratorRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientToken"))
|
355
|
+
CreateLicenseManagerReportGeneratorRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
356
|
+
CreateLicenseManagerReportGeneratorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
357
|
+
CreateLicenseManagerReportGeneratorRequest.struct_class = Types::CreateLicenseManagerReportGeneratorRequest
|
358
|
+
|
359
|
+
CreateLicenseManagerReportGeneratorResponse.add_member(:license_manager_report_generator_arn, Shapes::ShapeRef.new(shape: String, location_name: "LicenseManagerReportGeneratorArn"))
|
360
|
+
CreateLicenseManagerReportGeneratorResponse.struct_class = Types::CreateLicenseManagerReportGeneratorResponse
|
361
|
+
|
329
362
|
CreateLicenseRequest.add_member(:license_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "LicenseName"))
|
330
363
|
CreateLicenseRequest.add_member(:product_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ProductName"))
|
331
364
|
CreateLicenseRequest.add_member(:product_sku, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ProductSKU"))
|
@@ -336,7 +369,7 @@ module Aws::LicenseManager
|
|
336
369
|
CreateLicenseRequest.add_member(:beneficiary, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Beneficiary"))
|
337
370
|
CreateLicenseRequest.add_member(:consumption_configuration, Shapes::ShapeRef.new(shape: ConsumptionConfiguration, required: true, location_name: "ConsumptionConfiguration"))
|
338
371
|
CreateLicenseRequest.add_member(:license_metadata, Shapes::ShapeRef.new(shape: MetadataList, location_name: "LicenseMetadata"))
|
339
|
-
CreateLicenseRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
372
|
+
CreateLicenseRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "ClientToken"))
|
340
373
|
CreateLicenseRequest.struct_class = Types::CreateLicenseRequest
|
341
374
|
|
342
375
|
CreateLicenseResponse.add_member(:license_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "LicenseArn"))
|
@@ -354,7 +387,7 @@ module Aws::LicenseManager
|
|
354
387
|
CreateLicenseVersionRequest.add_member(:entitlements, Shapes::ShapeRef.new(shape: EntitlementList, required: true, location_name: "Entitlements"))
|
355
388
|
CreateLicenseVersionRequest.add_member(:consumption_configuration, Shapes::ShapeRef.new(shape: ConsumptionConfiguration, required: true, location_name: "ConsumptionConfiguration"))
|
356
389
|
CreateLicenseVersionRequest.add_member(:status, Shapes::ShapeRef.new(shape: LicenseStatus, required: true, location_name: "Status"))
|
357
|
-
CreateLicenseVersionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
390
|
+
CreateLicenseVersionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "ClientToken"))
|
358
391
|
CreateLicenseVersionRequest.add_member(:source_version, Shapes::ShapeRef.new(shape: String, location_name: "SourceVersion"))
|
359
392
|
CreateLicenseVersionRequest.struct_class = Types::CreateLicenseVersionRequest
|
360
393
|
|
@@ -367,7 +400,7 @@ module Aws::LicenseManager
|
|
367
400
|
CreateTokenRequest.add_member(:role_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "RoleArns"))
|
368
401
|
CreateTokenRequest.add_member(:expiration_in_days, Shapes::ShapeRef.new(shape: Integer, location_name: "ExpirationInDays"))
|
369
402
|
CreateTokenRequest.add_member(:token_properties, Shapes::ShapeRef.new(shape: MaxSize3StringList, location_name: "TokenProperties"))
|
370
|
-
CreateTokenRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
403
|
+
CreateTokenRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "ClientToken"))
|
371
404
|
CreateTokenRequest.struct_class = Types::CreateTokenRequest
|
372
405
|
|
373
406
|
CreateTokenResponse.add_member(:token_id, Shapes::ShapeRef.new(shape: String, location_name: "TokenId"))
|
@@ -380,6 +413,7 @@ module Aws::LicenseManager
|
|
380
413
|
DatetimeRange.struct_class = Types::DatetimeRange
|
381
414
|
|
382
415
|
DeleteGrantRequest.add_member(:grant_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "GrantArn"))
|
416
|
+
DeleteGrantRequest.add_member(:status_reason, Shapes::ShapeRef.new(shape: StatusReasonMessage, location_name: "StatusReason"))
|
383
417
|
DeleteGrantRequest.add_member(:version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Version"))
|
384
418
|
DeleteGrantRequest.struct_class = Types::DeleteGrantRequest
|
385
419
|
|
@@ -393,6 +427,11 @@ module Aws::LicenseManager
|
|
393
427
|
|
394
428
|
DeleteLicenseConfigurationResponse.struct_class = Types::DeleteLicenseConfigurationResponse
|
395
429
|
|
430
|
+
DeleteLicenseManagerReportGeneratorRequest.add_member(:license_manager_report_generator_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "LicenseManagerReportGeneratorArn"))
|
431
|
+
DeleteLicenseManagerReportGeneratorRequest.struct_class = Types::DeleteLicenseManagerReportGeneratorRequest
|
432
|
+
|
433
|
+
DeleteLicenseManagerReportGeneratorResponse.struct_class = Types::DeleteLicenseManagerReportGeneratorResponse
|
434
|
+
|
396
435
|
DeleteLicenseRequest.add_member(:license_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "LicenseArn"))
|
397
436
|
DeleteLicenseRequest.add_member(:source_version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceVersion"))
|
398
437
|
DeleteLicenseRequest.struct_class = Types::DeleteLicenseRequest
|
@@ -495,6 +534,12 @@ module Aws::LicenseManager
|
|
495
534
|
GetLicenseConfigurationResponse.add_member(:disassociate_when_not_found, Shapes::ShapeRef.new(shape: BoxBoolean, location_name: "DisassociateWhenNotFound"))
|
496
535
|
GetLicenseConfigurationResponse.struct_class = Types::GetLicenseConfigurationResponse
|
497
536
|
|
537
|
+
GetLicenseManagerReportGeneratorRequest.add_member(:license_manager_report_generator_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "LicenseManagerReportGeneratorArn"))
|
538
|
+
GetLicenseManagerReportGeneratorRequest.struct_class = Types::GetLicenseManagerReportGeneratorRequest
|
539
|
+
|
540
|
+
GetLicenseManagerReportGeneratorResponse.add_member(:report_generator, Shapes::ShapeRef.new(shape: ReportGenerator, location_name: "ReportGenerator"))
|
541
|
+
GetLicenseManagerReportGeneratorResponse.struct_class = Types::GetLicenseManagerReportGeneratorResponse
|
542
|
+
|
498
543
|
GetLicenseRequest.add_member(:license_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "LicenseArn"))
|
499
544
|
GetLicenseRequest.add_member(:version, Shapes::ShapeRef.new(shape: String, location_name: "Version"))
|
500
545
|
GetLicenseRequest.struct_class = Types::GetLicenseRequest
|
@@ -524,7 +569,7 @@ module Aws::LicenseManager
|
|
524
569
|
Grant.add_member(:grantee_principal_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "GranteePrincipalArn"))
|
525
570
|
Grant.add_member(:home_region, Shapes::ShapeRef.new(shape: String, required: true, location_name: "HomeRegion"))
|
526
571
|
Grant.add_member(:grant_status, Shapes::ShapeRef.new(shape: GrantStatus, required: true, location_name: "GrantStatus"))
|
527
|
-
Grant.add_member(:status_reason, Shapes::ShapeRef.new(shape:
|
572
|
+
Grant.add_member(:status_reason, Shapes::ShapeRef.new(shape: StatusReasonMessage, location_name: "StatusReason"))
|
528
573
|
Grant.add_member(:version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Version"))
|
529
574
|
Grant.add_member(:granted_operations, Shapes::ShapeRef.new(shape: AllowedOperationList, required: true, location_name: "GrantedOperations"))
|
530
575
|
Grant.struct_class = Types::Grant
|
@@ -691,6 +736,15 @@ module Aws::LicenseManager
|
|
691
736
|
ListLicenseConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
692
737
|
ListLicenseConfigurationsResponse.struct_class = Types::ListLicenseConfigurationsResponse
|
693
738
|
|
739
|
+
ListLicenseManagerReportGeneratorsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
740
|
+
ListLicenseManagerReportGeneratorsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
741
|
+
ListLicenseManagerReportGeneratorsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxSize100, location_name: "MaxResults"))
|
742
|
+
ListLicenseManagerReportGeneratorsRequest.struct_class = Types::ListLicenseManagerReportGeneratorsRequest
|
743
|
+
|
744
|
+
ListLicenseManagerReportGeneratorsResponse.add_member(:report_generators, Shapes::ShapeRef.new(shape: ReportGeneratorList, location_name: "ReportGenerators"))
|
745
|
+
ListLicenseManagerReportGeneratorsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
746
|
+
ListLicenseManagerReportGeneratorsResponse.struct_class = Types::ListLicenseManagerReportGeneratorsResponse
|
747
|
+
|
694
748
|
ListLicenseSpecificationsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceArn"))
|
695
749
|
ListLicenseSpecificationsForResourceRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: BoxInteger, location_name: "MaxResults"))
|
696
750
|
ListLicenseSpecificationsForResourceRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
@@ -801,7 +855,7 @@ module Aws::LicenseManager
|
|
801
855
|
ProductInformation.struct_class = Types::ProductInformation
|
802
856
|
|
803
857
|
ProductInformationFilter.add_member(:product_information_filter_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ProductInformationFilterName"))
|
804
|
-
ProductInformationFilter.add_member(:product_information_filter_value, Shapes::ShapeRef.new(shape: StringList,
|
858
|
+
ProductInformationFilter.add_member(:product_information_filter_value, Shapes::ShapeRef.new(shape: StringList, location_name: "ProductInformationFilterValue"))
|
805
859
|
ProductInformationFilter.add_member(:product_information_filter_comparator, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ProductInformationFilterComparator"))
|
806
860
|
ProductInformationFilter.struct_class = Types::ProductInformationFilter
|
807
861
|
|
@@ -816,6 +870,7 @@ module Aws::LicenseManager
|
|
816
870
|
RateLimitExceededException.struct_class = Types::RateLimitExceededException
|
817
871
|
|
818
872
|
ReceivedMetadata.add_member(:received_status, Shapes::ShapeRef.new(shape: ReceivedStatus, location_name: "ReceivedStatus"))
|
873
|
+
ReceivedMetadata.add_member(:received_status_reason, Shapes::ShapeRef.new(shape: StatusReasonMessage, location_name: "ReceivedStatusReason"))
|
819
874
|
ReceivedMetadata.add_member(:allowed_operations, Shapes::ShapeRef.new(shape: AllowedOperationList, location_name: "AllowedOperations"))
|
820
875
|
ReceivedMetadata.struct_class = Types::ReceivedMetadata
|
821
876
|
|
@@ -831,6 +886,32 @@ module Aws::LicenseManager
|
|
831
886
|
RejectGrantResponse.add_member(:version, Shapes::ShapeRef.new(shape: String, location_name: "Version"))
|
832
887
|
RejectGrantResponse.struct_class = Types::RejectGrantResponse
|
833
888
|
|
889
|
+
ReportContext.add_member(:license_configuration_arns, Shapes::ShapeRef.new(shape: ArnList, required: true, location_name: "licenseConfigurationArns"))
|
890
|
+
ReportContext.struct_class = Types::ReportContext
|
891
|
+
|
892
|
+
ReportFrequency.add_member(:value, Shapes::ShapeRef.new(shape: Integer, location_name: "value"))
|
893
|
+
ReportFrequency.add_member(:period, Shapes::ShapeRef.new(shape: ReportFrequencyType, location_name: "period"))
|
894
|
+
ReportFrequency.struct_class = Types::ReportFrequency
|
895
|
+
|
896
|
+
ReportGenerator.add_member(:report_generator_name, Shapes::ShapeRef.new(shape: String, location_name: "ReportGeneratorName"))
|
897
|
+
ReportGenerator.add_member(:report_type, Shapes::ShapeRef.new(shape: ReportTypeList, location_name: "ReportType"))
|
898
|
+
ReportGenerator.add_member(:report_context, Shapes::ShapeRef.new(shape: ReportContext, location_name: "ReportContext"))
|
899
|
+
ReportGenerator.add_member(:report_frequency, Shapes::ShapeRef.new(shape: ReportFrequency, location_name: "ReportFrequency"))
|
900
|
+
ReportGenerator.add_member(:license_manager_report_generator_arn, Shapes::ShapeRef.new(shape: String, location_name: "LicenseManagerReportGeneratorArn"))
|
901
|
+
ReportGenerator.add_member(:last_run_status, Shapes::ShapeRef.new(shape: String, location_name: "LastRunStatus"))
|
902
|
+
ReportGenerator.add_member(:last_run_failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "LastRunFailureReason"))
|
903
|
+
ReportGenerator.add_member(:last_report_generation_time, Shapes::ShapeRef.new(shape: String, location_name: "LastReportGenerationTime"))
|
904
|
+
ReportGenerator.add_member(:report_creator_account, Shapes::ShapeRef.new(shape: String, location_name: "ReportCreatorAccount"))
|
905
|
+
ReportGenerator.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
906
|
+
ReportGenerator.add_member(:s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "S3Location"))
|
907
|
+
ReportGenerator.add_member(:create_time, Shapes::ShapeRef.new(shape: String, location_name: "CreateTime"))
|
908
|
+
ReportGenerator.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
909
|
+
ReportGenerator.struct_class = Types::ReportGenerator
|
910
|
+
|
911
|
+
ReportGeneratorList.member = Shapes::ShapeRef.new(shape: ReportGenerator)
|
912
|
+
|
913
|
+
ReportTypeList.member = Shapes::ShapeRef.new(shape: ReportType)
|
914
|
+
|
834
915
|
ResourceInventory.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
|
835
916
|
ResourceInventory.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
|
836
917
|
ResourceInventory.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, location_name: "ResourceArn"))
|
@@ -847,6 +928,10 @@ module Aws::LicenseManager
|
|
847
928
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
848
929
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
849
930
|
|
931
|
+
S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: String, location_name: "bucket"))
|
932
|
+
S3Location.add_member(:key_prefix, Shapes::ShapeRef.new(shape: String, location_name: "keyPrefix"))
|
933
|
+
S3Location.struct_class = Types::S3Location
|
934
|
+
|
850
935
|
ServerInternalException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
851
936
|
ServerInternalException.struct_class = Types::ServerInternalException
|
852
937
|
|
@@ -899,6 +984,17 @@ module Aws::LicenseManager
|
|
899
984
|
|
900
985
|
UpdateLicenseConfigurationResponse.struct_class = Types::UpdateLicenseConfigurationResponse
|
901
986
|
|
987
|
+
UpdateLicenseManagerReportGeneratorRequest.add_member(:license_manager_report_generator_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "LicenseManagerReportGeneratorArn"))
|
988
|
+
UpdateLicenseManagerReportGeneratorRequest.add_member(:report_generator_name, Shapes::ShapeRef.new(shape: ReportGeneratorName, required: true, location_name: "ReportGeneratorName"))
|
989
|
+
UpdateLicenseManagerReportGeneratorRequest.add_member(:type, Shapes::ShapeRef.new(shape: ReportTypeList, required: true, location_name: "Type"))
|
990
|
+
UpdateLicenseManagerReportGeneratorRequest.add_member(:report_context, Shapes::ShapeRef.new(shape: ReportContext, required: true, location_name: "ReportContext"))
|
991
|
+
UpdateLicenseManagerReportGeneratorRequest.add_member(:report_frequency, Shapes::ShapeRef.new(shape: ReportFrequency, required: true, location_name: "ReportFrequency"))
|
992
|
+
UpdateLicenseManagerReportGeneratorRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientToken"))
|
993
|
+
UpdateLicenseManagerReportGeneratorRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
994
|
+
UpdateLicenseManagerReportGeneratorRequest.struct_class = Types::UpdateLicenseManagerReportGeneratorRequest
|
995
|
+
|
996
|
+
UpdateLicenseManagerReportGeneratorResponse.struct_class = Types::UpdateLicenseManagerReportGeneratorResponse
|
997
|
+
|
902
998
|
UpdateLicenseSpecificationsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceArn"))
|
903
999
|
UpdateLicenseSpecificationsForResourceRequest.add_member(:add_license_specifications, Shapes::ShapeRef.new(shape: LicenseSpecifications, location_name: "AddLicenseSpecifications"))
|
904
1000
|
UpdateLicenseSpecificationsForResourceRequest.add_member(:remove_license_specifications, Shapes::ShapeRef.new(shape: LicenseSpecifications, location_name: "RemoveLicenseSpecifications"))
|
@@ -957,6 +1053,7 @@ module Aws::LicenseManager
|
|
957
1053
|
o.input = Shapes::ShapeRef.new(shape: CheckInLicenseRequest)
|
958
1054
|
o.output = Shapes::ShapeRef.new(shape: CheckInLicenseResponse)
|
959
1055
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1056
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
960
1057
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
961
1058
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
962
1059
|
o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
|
@@ -972,6 +1069,7 @@ module Aws::LicenseManager
|
|
972
1069
|
o.input = Shapes::ShapeRef.new(shape: CheckoutBorrowLicenseRequest)
|
973
1070
|
o.output = Shapes::ShapeRef.new(shape: CheckoutBorrowLicenseResponse)
|
974
1071
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1072
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
975
1073
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
976
1074
|
o.errors << Shapes::ShapeRef.new(shape: NoEntitlementsAllowedException)
|
977
1075
|
o.errors << Shapes::ShapeRef.new(shape: EntitlementNotAllowedException)
|
@@ -990,6 +1088,7 @@ module Aws::LicenseManager
|
|
990
1088
|
o.input = Shapes::ShapeRef.new(shape: CheckoutLicenseRequest)
|
991
1089
|
o.output = Shapes::ShapeRef.new(shape: CheckoutLicenseResponse)
|
992
1090
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1091
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
993
1092
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
994
1093
|
o.errors << Shapes::ShapeRef.new(shape: NoEntitlementsAllowedException)
|
995
1094
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedDigitalSignatureMethodException)
|
@@ -1059,6 +1158,22 @@ module Aws::LicenseManager
|
|
1059
1158
|
o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
|
1060
1159
|
end)
|
1061
1160
|
|
1161
|
+
api.add_operation(:create_license_manager_report_generator, Seahorse::Model::Operation.new.tap do |o|
|
1162
|
+
o.name = "CreateLicenseManagerReportGenerator"
|
1163
|
+
o.http_method = "POST"
|
1164
|
+
o.http_request_uri = "/"
|
1165
|
+
o.input = Shapes::ShapeRef.new(shape: CreateLicenseManagerReportGeneratorRequest)
|
1166
|
+
o.output = Shapes::ShapeRef.new(shape: CreateLicenseManagerReportGeneratorResponse)
|
1167
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1168
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1169
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
1170
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
|
1171
|
+
o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
|
1172
|
+
o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
|
1173
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1174
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1175
|
+
end)
|
1176
|
+
|
1062
1177
|
api.add_operation(:create_license_version, Seahorse::Model::Operation.new.tap do |o|
|
1063
1178
|
o.name = "CreateLicenseVersion"
|
1064
1179
|
o.http_method = "POST"
|
@@ -1135,6 +1250,22 @@ module Aws::LicenseManager
|
|
1135
1250
|
o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
|
1136
1251
|
end)
|
1137
1252
|
|
1253
|
+
api.add_operation(:delete_license_manager_report_generator, Seahorse::Model::Operation.new.tap do |o|
|
1254
|
+
o.name = "DeleteLicenseManagerReportGenerator"
|
1255
|
+
o.http_method = "POST"
|
1256
|
+
o.http_request_uri = "/"
|
1257
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteLicenseManagerReportGeneratorRequest)
|
1258
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteLicenseManagerReportGeneratorResponse)
|
1259
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1260
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1261
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
1262
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
|
1263
|
+
o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
|
1264
|
+
o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
|
1265
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1266
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1267
|
+
end)
|
1268
|
+
|
1138
1269
|
api.add_operation(:delete_token, Seahorse::Model::Operation.new.tap do |o|
|
1139
1270
|
o.name = "DeleteToken"
|
1140
1271
|
o.http_method = "POST"
|
@@ -1220,6 +1351,22 @@ module Aws::LicenseManager
|
|
1220
1351
|
o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
|
1221
1352
|
end)
|
1222
1353
|
|
1354
|
+
api.add_operation(:get_license_manager_report_generator, Seahorse::Model::Operation.new.tap do |o|
|
1355
|
+
o.name = "GetLicenseManagerReportGenerator"
|
1356
|
+
o.http_method = "POST"
|
1357
|
+
o.http_request_uri = "/"
|
1358
|
+
o.input = Shapes::ShapeRef.new(shape: GetLicenseManagerReportGeneratorRequest)
|
1359
|
+
o.output = Shapes::ShapeRef.new(shape: GetLicenseManagerReportGeneratorResponse)
|
1360
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1361
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1362
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
1363
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
|
1364
|
+
o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
|
1365
|
+
o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
|
1366
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1367
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1368
|
+
end)
|
1369
|
+
|
1223
1370
|
api.add_operation(:get_license_usage, Seahorse::Model::Operation.new.tap do |o|
|
1224
1371
|
o.name = "GetLicenseUsage"
|
1225
1372
|
o.http_method = "POST"
|
@@ -1302,6 +1449,22 @@ module Aws::LicenseManager
|
|
1302
1449
|
o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
|
1303
1450
|
end)
|
1304
1451
|
|
1452
|
+
api.add_operation(:list_license_manager_report_generators, Seahorse::Model::Operation.new.tap do |o|
|
1453
|
+
o.name = "ListLicenseManagerReportGenerators"
|
1454
|
+
o.http_method = "POST"
|
1455
|
+
o.http_request_uri = "/"
|
1456
|
+
o.input = Shapes::ShapeRef.new(shape: ListLicenseManagerReportGeneratorsRequest)
|
1457
|
+
o.output = Shapes::ShapeRef.new(shape: ListLicenseManagerReportGeneratorsResponse)
|
1458
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1459
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1460
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
1461
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
|
1462
|
+
o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
|
1463
|
+
o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
|
1464
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1465
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1466
|
+
end)
|
1467
|
+
|
1305
1468
|
api.add_operation(:list_license_specifications_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
1306
1469
|
o.name = "ListLicenseSpecificationsForResource"
|
1307
1470
|
o.http_method = "POST"
|
@@ -1482,6 +1645,22 @@ module Aws::LicenseManager
|
|
1482
1645
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
1483
1646
|
end)
|
1484
1647
|
|
1648
|
+
api.add_operation(:update_license_manager_report_generator, Seahorse::Model::Operation.new.tap do |o|
|
1649
|
+
o.name = "UpdateLicenseManagerReportGenerator"
|
1650
|
+
o.http_method = "POST"
|
1651
|
+
o.http_request_uri = "/"
|
1652
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateLicenseManagerReportGeneratorRequest)
|
1653
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateLicenseManagerReportGeneratorResponse)
|
1654
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1655
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1656
|
+
o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
|
1657
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
|
1658
|
+
o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
|
1659
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1660
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1661
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
1662
|
+
end)
|
1663
|
+
|
1485
1664
|
api.add_operation(:update_license_specifications_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
1486
1665
|
o.name = "UpdateLicenseSpecificationsForResource"
|
1487
1666
|
o.http_method = "POST"
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -441,7 +441,7 @@ module Aws::LicenseManager
|
|
441
441
|
# data as a hash:
|
442
442
|
#
|
443
443
|
# {
|
444
|
-
# client_token: "
|
444
|
+
# client_token: "ClientToken", # required
|
445
445
|
# grant_name: "String", # required
|
446
446
|
# license_arn: "Arn", # required
|
447
447
|
# principals: ["Arn"], # required
|
@@ -513,11 +513,12 @@ module Aws::LicenseManager
|
|
513
513
|
# data as a hash:
|
514
514
|
#
|
515
515
|
# {
|
516
|
-
# client_token: "
|
516
|
+
# client_token: "ClientToken", # required
|
517
517
|
# grant_arn: "Arn", # required
|
518
518
|
# grant_name: "String",
|
519
519
|
# allowed_operations: ["CreateGrant"], # accepts CreateGrant, CheckoutLicense, CheckoutBorrowLicense, CheckInLicense, ExtendConsumptionLicense, ListPurchasedLicenses, CreateToken
|
520
|
-
# status: "PENDING_WORKFLOW", # accepts PENDING_WORKFLOW, PENDING_ACCEPT, REJECTED, ACTIVE, FAILED_WORKFLOW, DELETED, PENDING_DELETE, DISABLED
|
520
|
+
# status: "PENDING_WORKFLOW", # accepts PENDING_WORKFLOW, PENDING_ACCEPT, REJECTED, ACTIVE, FAILED_WORKFLOW, DELETED, PENDING_DELETE, DISABLED, WORKFLOW_COMPLETED
|
521
|
+
# status_reason: "StatusReasonMessage",
|
521
522
|
# source_version: "String",
|
522
523
|
# }
|
523
524
|
#
|
@@ -542,6 +543,9 @@ module Aws::LicenseManager
|
|
542
543
|
# Grant status.
|
543
544
|
# @return [String]
|
544
545
|
#
|
546
|
+
# @!attribute [rw] status_reason
|
547
|
+
# @return [String]
|
548
|
+
#
|
545
549
|
# @!attribute [rw] source_version
|
546
550
|
# Current version of the grant.
|
547
551
|
# @return [String]
|
@@ -554,6 +558,7 @@ module Aws::LicenseManager
|
|
554
558
|
:grant_name,
|
555
559
|
:allowed_operations,
|
556
560
|
:status,
|
561
|
+
:status_reason,
|
557
562
|
:source_version)
|
558
563
|
SENSITIVE = []
|
559
564
|
include Aws::Structure
|
@@ -604,7 +609,7 @@ module Aws::LicenseManager
|
|
604
609
|
# product_information_filter_list: [ # required
|
605
610
|
# {
|
606
611
|
# product_information_filter_name: "String", # required
|
607
|
-
# product_information_filter_value: ["String"],
|
612
|
+
# product_information_filter_value: ["String"],
|
608
613
|
# product_information_filter_comparator: "String", # required
|
609
614
|
# },
|
610
615
|
# ],
|
@@ -697,6 +702,93 @@ module Aws::LicenseManager
|
|
697
702
|
include Aws::Structure
|
698
703
|
end
|
699
704
|
|
705
|
+
# @note When making an API call, you may pass CreateLicenseManagerReportGeneratorRequest
|
706
|
+
# data as a hash:
|
707
|
+
#
|
708
|
+
# {
|
709
|
+
# report_generator_name: "ReportGeneratorName", # required
|
710
|
+
# type: ["LicenseConfigurationSummaryReport"], # required, accepts LicenseConfigurationSummaryReport, LicenseConfigurationUsageReport
|
711
|
+
# report_context: { # required
|
712
|
+
# license_configuration_arns: ["Arn"], # required
|
713
|
+
# },
|
714
|
+
# report_frequency: { # required
|
715
|
+
# value: 1,
|
716
|
+
# period: "DAY", # accepts DAY, WEEK, MONTH
|
717
|
+
# },
|
718
|
+
# client_token: "ClientRequestToken", # required
|
719
|
+
# description: "String",
|
720
|
+
# tags: [
|
721
|
+
# {
|
722
|
+
# key: "String",
|
723
|
+
# value: "String",
|
724
|
+
# },
|
725
|
+
# ],
|
726
|
+
# }
|
727
|
+
#
|
728
|
+
# @!attribute [rw] report_generator_name
|
729
|
+
# Name of the report generator.
|
730
|
+
# @return [String]
|
731
|
+
#
|
732
|
+
# @!attribute [rw] type
|
733
|
+
# Type of reports to generate. The following report types an be
|
734
|
+
# generated:
|
735
|
+
#
|
736
|
+
# * License configuration report - Reports on the number and details
|
737
|
+
# of consumed licenses for a license configuration.
|
738
|
+
#
|
739
|
+
# * Resource report - Reports on the tracked licenses and resource
|
740
|
+
# consumption for a license configuration.
|
741
|
+
# @return [Array<String>]
|
742
|
+
#
|
743
|
+
# @!attribute [rw] report_context
|
744
|
+
# Defines the type of license configuration the report generator
|
745
|
+
# tracks.
|
746
|
+
# @return [Types::ReportContext]
|
747
|
+
#
|
748
|
+
# @!attribute [rw] report_frequency
|
749
|
+
# Frequency by which reports are generated. Reports can be generated
|
750
|
+
# daily, monthly, or weekly.
|
751
|
+
# @return [Types::ReportFrequency]
|
752
|
+
#
|
753
|
+
# @!attribute [rw] client_token
|
754
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
755
|
+
# idempotency of the request.
|
756
|
+
# @return [String]
|
757
|
+
#
|
758
|
+
# @!attribute [rw] description
|
759
|
+
# Description of the report generator.
|
760
|
+
# @return [String]
|
761
|
+
#
|
762
|
+
# @!attribute [rw] tags
|
763
|
+
# Tags to add to the report generator.
|
764
|
+
# @return [Array<Types::Tag>]
|
765
|
+
#
|
766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CreateLicenseManagerReportGeneratorRequest AWS API Documentation
|
767
|
+
#
|
768
|
+
class CreateLicenseManagerReportGeneratorRequest < Struct.new(
|
769
|
+
:report_generator_name,
|
770
|
+
:type,
|
771
|
+
:report_context,
|
772
|
+
:report_frequency,
|
773
|
+
:client_token,
|
774
|
+
:description,
|
775
|
+
:tags)
|
776
|
+
SENSITIVE = []
|
777
|
+
include Aws::Structure
|
778
|
+
end
|
779
|
+
|
780
|
+
# @!attribute [rw] license_manager_report_generator_arn
|
781
|
+
# The Amazon Resource Number (ARN) of the new report generator.
|
782
|
+
# @return [String]
|
783
|
+
#
|
784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CreateLicenseManagerReportGeneratorResponse AWS API Documentation
|
785
|
+
#
|
786
|
+
class CreateLicenseManagerReportGeneratorResponse < Struct.new(
|
787
|
+
:license_manager_report_generator_arn)
|
788
|
+
SENSITIVE = []
|
789
|
+
include Aws::Structure
|
790
|
+
end
|
791
|
+
|
700
792
|
# @note When making an API call, you may pass CreateLicenseRequest
|
701
793
|
# data as a hash:
|
702
794
|
#
|
@@ -740,7 +832,7 @@ module Aws::LicenseManager
|
|
740
832
|
# value: "String",
|
741
833
|
# },
|
742
834
|
# ],
|
743
|
-
# client_token: "
|
835
|
+
# client_token: "ClientToken", # required
|
744
836
|
# }
|
745
837
|
#
|
746
838
|
# @!attribute [rw] license_name
|
@@ -874,7 +966,7 @@ module Aws::LicenseManager
|
|
874
966
|
# },
|
875
967
|
# },
|
876
968
|
# status: "AVAILABLE", # required, accepts AVAILABLE, PENDING_AVAILABLE, DEACTIVATED, SUSPENDED, EXPIRED, PENDING_DELETE, DELETED
|
877
|
-
# client_token: "
|
969
|
+
# client_token: "ClientToken", # required
|
878
970
|
# source_version: "String",
|
879
971
|
# }
|
880
972
|
#
|
@@ -979,7 +1071,7 @@ module Aws::LicenseManager
|
|
979
1071
|
# role_arns: ["Arn"],
|
980
1072
|
# expiration_in_days: 1,
|
981
1073
|
# token_properties: ["String"],
|
982
|
-
# client_token: "
|
1074
|
+
# client_token: "ClientToken", # required
|
983
1075
|
# }
|
984
1076
|
#
|
985
1077
|
# @!attribute [rw] license_arn
|
@@ -1072,6 +1164,7 @@ module Aws::LicenseManager
|
|
1072
1164
|
#
|
1073
1165
|
# {
|
1074
1166
|
# grant_arn: "Arn", # required
|
1167
|
+
# status_reason: "StatusReasonMessage",
|
1075
1168
|
# version: "String", # required
|
1076
1169
|
# }
|
1077
1170
|
#
|
@@ -1079,6 +1172,9 @@ module Aws::LicenseManager
|
|
1079
1172
|
# Amazon Resource Name (ARN) of the grant.
|
1080
1173
|
# @return [String]
|
1081
1174
|
#
|
1175
|
+
# @!attribute [rw] status_reason
|
1176
|
+
# @return [String]
|
1177
|
+
#
|
1082
1178
|
# @!attribute [rw] version
|
1083
1179
|
# Current version of the grant.
|
1084
1180
|
# @return [String]
|
@@ -1087,6 +1183,7 @@ module Aws::LicenseManager
|
|
1087
1183
|
#
|
1088
1184
|
class DeleteGrantRequest < Struct.new(
|
1089
1185
|
:grant_arn,
|
1186
|
+
:status_reason,
|
1090
1187
|
:version)
|
1091
1188
|
SENSITIVE = []
|
1092
1189
|
include Aws::Structure
|
@@ -1137,6 +1234,30 @@ module Aws::LicenseManager
|
|
1137
1234
|
#
|
1138
1235
|
class DeleteLicenseConfigurationResponse < Aws::EmptyStructure; end
|
1139
1236
|
|
1237
|
+
# @note When making an API call, you may pass DeleteLicenseManagerReportGeneratorRequest
|
1238
|
+
# data as a hash:
|
1239
|
+
#
|
1240
|
+
# {
|
1241
|
+
# license_manager_report_generator_arn: "String", # required
|
1242
|
+
# }
|
1243
|
+
#
|
1244
|
+
# @!attribute [rw] license_manager_report_generator_arn
|
1245
|
+
# Amazon Resource Number (ARN) of the report generator that will be
|
1246
|
+
# deleted.
|
1247
|
+
# @return [String]
|
1248
|
+
#
|
1249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/DeleteLicenseManagerReportGeneratorRequest AWS API Documentation
|
1250
|
+
#
|
1251
|
+
class DeleteLicenseManagerReportGeneratorRequest < Struct.new(
|
1252
|
+
:license_manager_report_generator_arn)
|
1253
|
+
SENSITIVE = []
|
1254
|
+
include Aws::Structure
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/DeleteLicenseManagerReportGeneratorResponse AWS API Documentation
|
1258
|
+
#
|
1259
|
+
class DeleteLicenseManagerReportGeneratorResponse < Aws::EmptyStructure; end
|
1260
|
+
|
1140
1261
|
# @note When making an API call, you may pass DeleteLicenseRequest
|
1141
1262
|
# data as a hash:
|
1142
1263
|
#
|
@@ -1616,6 +1737,39 @@ module Aws::LicenseManager
|
|
1616
1737
|
include Aws::Structure
|
1617
1738
|
end
|
1618
1739
|
|
1740
|
+
# @note When making an API call, you may pass GetLicenseManagerReportGeneratorRequest
|
1741
|
+
# data as a hash:
|
1742
|
+
#
|
1743
|
+
# {
|
1744
|
+
# license_manager_report_generator_arn: "String", # required
|
1745
|
+
# }
|
1746
|
+
#
|
1747
|
+
# @!attribute [rw] license_manager_report_generator_arn
|
1748
|
+
# mazon Resource Number (ARN) of the report generator to retrieve
|
1749
|
+
# information on.
|
1750
|
+
# @return [String]
|
1751
|
+
#
|
1752
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/GetLicenseManagerReportGeneratorRequest AWS API Documentation
|
1753
|
+
#
|
1754
|
+
class GetLicenseManagerReportGeneratorRequest < Struct.new(
|
1755
|
+
:license_manager_report_generator_arn)
|
1756
|
+
SENSITIVE = []
|
1757
|
+
include Aws::Structure
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
# @!attribute [rw] report_generator
|
1761
|
+
# A report generator that creates periodic reports on your license
|
1762
|
+
# configurations.
|
1763
|
+
# @return [Types::ReportGenerator]
|
1764
|
+
#
|
1765
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/GetLicenseManagerReportGeneratorResponse AWS API Documentation
|
1766
|
+
#
|
1767
|
+
class GetLicenseManagerReportGeneratorResponse < Struct.new(
|
1768
|
+
:report_generator)
|
1769
|
+
SENSITIVE = []
|
1770
|
+
include Aws::Structure
|
1771
|
+
end
|
1772
|
+
|
1619
1773
|
# @note When making an API call, you may pass GetLicenseRequest
|
1620
1774
|
# data as a hash:
|
1621
1775
|
#
|
@@ -1710,7 +1864,7 @@ module Aws::LicenseManager
|
|
1710
1864
|
#
|
1711
1865
|
# @!attribute [rw] license_manager_resource_share_arn
|
1712
1866
|
# Amazon Resource Name (ARN) of the AWS resource share. The License
|
1713
|
-
# Manager
|
1867
|
+
# Manager management account provides member accounts with access to
|
1714
1868
|
# this share.
|
1715
1869
|
# @return [String]
|
1716
1870
|
#
|
@@ -2413,13 +2567,15 @@ module Aws::LicenseManager
|
|
2413
2567
|
# @!attribute [rw] filters
|
2414
2568
|
# Filters to scope the results. The following filters are supported:
|
2415
2569
|
#
|
2416
|
-
# * `
|
2570
|
+
# * `LicenseArn`
|
2417
2571
|
#
|
2418
|
-
# * `
|
2572
|
+
# * `GrantStatus`
|
2419
2573
|
#
|
2420
|
-
# * `
|
2574
|
+
# * `GranteePrincipalARN`
|
2575
|
+
#
|
2576
|
+
# * `ProductSKU`
|
2421
2577
|
#
|
2422
|
-
# * `
|
2578
|
+
# * `LicenseIssuerName`
|
2423
2579
|
# @return [Array<Types::Filter>]
|
2424
2580
|
#
|
2425
2581
|
# @!attribute [rw] next_token
|
@@ -2578,6 +2734,64 @@ module Aws::LicenseManager
|
|
2578
2734
|
include Aws::Structure
|
2579
2735
|
end
|
2580
2736
|
|
2737
|
+
# @note When making an API call, you may pass ListLicenseManagerReportGeneratorsRequest
|
2738
|
+
# data as a hash:
|
2739
|
+
#
|
2740
|
+
# {
|
2741
|
+
# filters: [
|
2742
|
+
# {
|
2743
|
+
# name: "FilterName",
|
2744
|
+
# values: ["FilterValue"],
|
2745
|
+
# },
|
2746
|
+
# ],
|
2747
|
+
# next_token: "String",
|
2748
|
+
# max_results: 1,
|
2749
|
+
# }
|
2750
|
+
#
|
2751
|
+
# @!attribute [rw] filters
|
2752
|
+
# Filters to scope the results. The following filters are supported:
|
2753
|
+
#
|
2754
|
+
# * `LicenseConfigurationArn`
|
2755
|
+
#
|
2756
|
+
# ^
|
2757
|
+
# @return [Array<Types::Filter>]
|
2758
|
+
#
|
2759
|
+
# @!attribute [rw] next_token
|
2760
|
+
# Token for the next set of results.
|
2761
|
+
# @return [String]
|
2762
|
+
#
|
2763
|
+
# @!attribute [rw] max_results
|
2764
|
+
# Maximum number of results to return in a single call.
|
2765
|
+
# @return [Integer]
|
2766
|
+
#
|
2767
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseManagerReportGeneratorsRequest AWS API Documentation
|
2768
|
+
#
|
2769
|
+
class ListLicenseManagerReportGeneratorsRequest < Struct.new(
|
2770
|
+
:filters,
|
2771
|
+
:next_token,
|
2772
|
+
:max_results)
|
2773
|
+
SENSITIVE = []
|
2774
|
+
include Aws::Structure
|
2775
|
+
end
|
2776
|
+
|
2777
|
+
# @!attribute [rw] report_generators
|
2778
|
+
# A report generator that creates periodic reports on your license
|
2779
|
+
# configurations.
|
2780
|
+
# @return [Array<Types::ReportGenerator>]
|
2781
|
+
#
|
2782
|
+
# @!attribute [rw] next_token
|
2783
|
+
# Token for the next set of results.
|
2784
|
+
# @return [String]
|
2785
|
+
#
|
2786
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseManagerReportGeneratorsResponse AWS API Documentation
|
2787
|
+
#
|
2788
|
+
class ListLicenseManagerReportGeneratorsResponse < Struct.new(
|
2789
|
+
:report_generators,
|
2790
|
+
:next_token)
|
2791
|
+
SENSITIVE = []
|
2792
|
+
include Aws::Structure
|
2793
|
+
end
|
2794
|
+
|
2581
2795
|
# @note When making an API call, you may pass ListLicenseSpecificationsForResourceRequest
|
2582
2796
|
# data as a hash:
|
2583
2797
|
#
|
@@ -2701,7 +2915,7 @@ module Aws::LicenseManager
|
|
2701
2915
|
#
|
2702
2916
|
# * `ProductSKU`
|
2703
2917
|
#
|
2704
|
-
# * `
|
2918
|
+
# * `Fingerprint`
|
2705
2919
|
#
|
2706
2920
|
# * `Status`
|
2707
2921
|
# @return [Array<Types::Filter>]
|
@@ -2764,9 +2978,15 @@ module Aws::LicenseManager
|
|
2764
2978
|
# @!attribute [rw] filters
|
2765
2979
|
# Filters to scope the results. The following filters are supported:
|
2766
2980
|
#
|
2767
|
-
# * `
|
2981
|
+
# * `ProductSKU`
|
2982
|
+
#
|
2983
|
+
# * `LicenseIssuerName`
|
2768
2984
|
#
|
2769
|
-
# * `
|
2985
|
+
# * `LicenseArn`
|
2986
|
+
#
|
2987
|
+
# * `GrantStatus`
|
2988
|
+
#
|
2989
|
+
# * `GranterAccountId`
|
2770
2990
|
# @return [Array<Types::Filter>]
|
2771
2991
|
#
|
2772
2992
|
# @!attribute [rw] next_token
|
@@ -2831,9 +3051,11 @@ module Aws::LicenseManager
|
|
2831
3051
|
#
|
2832
3052
|
# * `Status`
|
2833
3053
|
#
|
2834
|
-
# * `
|
3054
|
+
# * `Fingerprint`
|
2835
3055
|
#
|
2836
|
-
# * `
|
3056
|
+
# * `IssuerName`
|
3057
|
+
#
|
3058
|
+
# * `Beneficiary`
|
2837
3059
|
# @return [Array<Types::Filter>]
|
2838
3060
|
#
|
2839
3061
|
# @!attribute [rw] next_token
|
@@ -3001,7 +3223,7 @@ module Aws::LicenseManager
|
|
3001
3223
|
# @!attribute [rw] filters
|
3002
3224
|
# Filters to scope the results. The following filter is supported:
|
3003
3225
|
#
|
3004
|
-
# * `
|
3226
|
+
# * `LicenseArns`
|
3005
3227
|
#
|
3006
3228
|
# ^
|
3007
3229
|
# @return [Array<Types::Filter>]
|
@@ -3203,7 +3425,7 @@ module Aws::LicenseManager
|
|
3203
3425
|
# product_information_filter_list: [ # required
|
3204
3426
|
# {
|
3205
3427
|
# product_information_filter_name: "String", # required
|
3206
|
-
# product_information_filter_value: ["String"],
|
3428
|
+
# product_information_filter_value: ["String"],
|
3207
3429
|
# product_information_filter_comparator: "String", # required
|
3208
3430
|
# },
|
3209
3431
|
# ],
|
@@ -3214,10 +3436,18 @@ module Aws::LicenseManager
|
|
3214
3436
|
# @return [String]
|
3215
3437
|
#
|
3216
3438
|
# @!attribute [rw] product_information_filter_list
|
3217
|
-
# Product information
|
3439
|
+
# A Product information filter consists of a
|
3440
|
+
# `ProductInformationFilterComparator` which is a logical operator, a
|
3441
|
+
# `ProductInformationFilterName` which specifies the type of filter
|
3442
|
+
# being declared, and a `ProductInformationFilterValue` that specifies
|
3443
|
+
# the value to filter on.
|
3218
3444
|
#
|
3219
|
-
#
|
3220
|
-
#
|
3445
|
+
# Accepted values for `ProductInformationFilterName` are listed here
|
3446
|
+
# along with descriptions and valid options for
|
3447
|
+
# `ProductInformationFilterComparator`.
|
3448
|
+
#
|
3449
|
+
# The following filters and are supported when the resource type is
|
3450
|
+
# `SSM_MANAGED`\:
|
3221
3451
|
#
|
3222
3452
|
# * `Application Name` - The name of the application. Logical operator
|
3223
3453
|
# is `EQUALS`.
|
@@ -3233,6 +3463,17 @@ module Aws::LicenseManager
|
|
3233
3463
|
#
|
3234
3464
|
# * `Platform Type` - The platform type. Logical operator is `EQUALS`.
|
3235
3465
|
#
|
3466
|
+
# * `Tag:key` - The key of a tag attached to an AWS resource you wish
|
3467
|
+
# to exclude from automated discovery. Logical operator is
|
3468
|
+
# `NOT_EQUALS`. The key for your tag must be appended to `Tag:`
|
3469
|
+
# following the example: `Tag:name-of-your-key`.
|
3470
|
+
# `ProductInformationFilterValue` is optional if you are not using
|
3471
|
+
# values for the key.
|
3472
|
+
#
|
3473
|
+
# * `AccountId` - The 12-digit ID of an AWS account you wish to
|
3474
|
+
# exclude from automated discovery. Logical operator is
|
3475
|
+
# `NOT_EQUALS`.
|
3476
|
+
#
|
3236
3477
|
# * `License Included` - The type of license included. Logical
|
3237
3478
|
# operators are `EQUALS` and `NOT_EQUALS`. Possible values are:
|
3238
3479
|
# `sql-server-enterprise` \| `sql-server-standard` \|
|
@@ -3266,7 +3507,7 @@ module Aws::LicenseManager
|
|
3266
3507
|
#
|
3267
3508
|
# {
|
3268
3509
|
# product_information_filter_name: "String", # required
|
3269
|
-
# product_information_filter_value: ["String"],
|
3510
|
+
# product_information_filter_value: ["String"],
|
3270
3511
|
# product_information_filter_comparator: "String", # required
|
3271
3512
|
# }
|
3272
3513
|
#
|
@@ -3332,6 +3573,9 @@ module Aws::LicenseManager
|
|
3332
3573
|
# Received status.
|
3333
3574
|
# @return [String]
|
3334
3575
|
#
|
3576
|
+
# @!attribute [rw] received_status_reason
|
3577
|
+
# @return [String]
|
3578
|
+
#
|
3335
3579
|
# @!attribute [rw] allowed_operations
|
3336
3580
|
# Allowed operations.
|
3337
3581
|
# @return [Array<String>]
|
@@ -3340,6 +3584,7 @@ module Aws::LicenseManager
|
|
3340
3584
|
#
|
3341
3585
|
class ReceivedMetadata < Struct.new(
|
3342
3586
|
:received_status,
|
3587
|
+
:received_status_reason,
|
3343
3588
|
:allowed_operations)
|
3344
3589
|
SENSITIVE = []
|
3345
3590
|
include Aws::Structure
|
@@ -3403,6 +3648,132 @@ module Aws::LicenseManager
|
|
3403
3648
|
include Aws::Structure
|
3404
3649
|
end
|
3405
3650
|
|
3651
|
+
# Details of the license configuration that this generator reports on.
|
3652
|
+
#
|
3653
|
+
# @note When making an API call, you may pass ReportContext
|
3654
|
+
# data as a hash:
|
3655
|
+
#
|
3656
|
+
# {
|
3657
|
+
# license_configuration_arns: ["Arn"], # required
|
3658
|
+
# }
|
3659
|
+
#
|
3660
|
+
# @!attribute [rw] license_configuration_arns
|
3661
|
+
# Amazon Resource Number (ARN) of the license configuration that this
|
3662
|
+
# generator reports on.
|
3663
|
+
# @return [Array<String>]
|
3664
|
+
#
|
3665
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ReportContext AWS API Documentation
|
3666
|
+
#
|
3667
|
+
class ReportContext < Struct.new(
|
3668
|
+
:license_configuration_arns)
|
3669
|
+
SENSITIVE = []
|
3670
|
+
include Aws::Structure
|
3671
|
+
end
|
3672
|
+
|
3673
|
+
# Details on how frequently reports are generated.
|
3674
|
+
#
|
3675
|
+
# @note When making an API call, you may pass ReportFrequency
|
3676
|
+
# data as a hash:
|
3677
|
+
#
|
3678
|
+
# {
|
3679
|
+
# value: 1,
|
3680
|
+
# period: "DAY", # accepts DAY, WEEK, MONTH
|
3681
|
+
# }
|
3682
|
+
#
|
3683
|
+
# @!attribute [rw] value
|
3684
|
+
# Number of times within the frequency period that a report will be
|
3685
|
+
# generated. Currently only `1` is supported.
|
3686
|
+
# @return [Integer]
|
3687
|
+
#
|
3688
|
+
# @!attribute [rw] period
|
3689
|
+
# Time period between each report. The period can be daily, weekly, or
|
3690
|
+
# monthly.
|
3691
|
+
# @return [String]
|
3692
|
+
#
|
3693
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ReportFrequency AWS API Documentation
|
3694
|
+
#
|
3695
|
+
class ReportFrequency < Struct.new(
|
3696
|
+
:value,
|
3697
|
+
:period)
|
3698
|
+
SENSITIVE = []
|
3699
|
+
include Aws::Structure
|
3700
|
+
end
|
3701
|
+
|
3702
|
+
# Describe the details of a report generator.
|
3703
|
+
#
|
3704
|
+
# @!attribute [rw] report_generator_name
|
3705
|
+
# Name of the report generator.
|
3706
|
+
# @return [String]
|
3707
|
+
#
|
3708
|
+
# @!attribute [rw] report_type
|
3709
|
+
# Type of reports that are generated.
|
3710
|
+
# @return [Array<String>]
|
3711
|
+
#
|
3712
|
+
# @!attribute [rw] report_context
|
3713
|
+
# License configuration type this generator reports on.
|
3714
|
+
# @return [Types::ReportContext]
|
3715
|
+
#
|
3716
|
+
# @!attribute [rw] report_frequency
|
3717
|
+
# Details on how frequently reports are generated.
|
3718
|
+
# @return [Types::ReportFrequency]
|
3719
|
+
#
|
3720
|
+
# @!attribute [rw] license_manager_report_generator_arn
|
3721
|
+
# Amazon Resource Number (ARN) of the report generator.
|
3722
|
+
# @return [String]
|
3723
|
+
#
|
3724
|
+
# @!attribute [rw] last_run_status
|
3725
|
+
# Status of the last report generation attempt.
|
3726
|
+
# @return [String]
|
3727
|
+
#
|
3728
|
+
# @!attribute [rw] last_run_failure_reason
|
3729
|
+
# Failure message for the last report generation attempt.
|
3730
|
+
# @return [String]
|
3731
|
+
#
|
3732
|
+
# @!attribute [rw] last_report_generation_time
|
3733
|
+
# Time the last report was generated at.
|
3734
|
+
# @return [String]
|
3735
|
+
#
|
3736
|
+
# @!attribute [rw] report_creator_account
|
3737
|
+
# The AWS account ID used to create the report generator.
|
3738
|
+
# @return [String]
|
3739
|
+
#
|
3740
|
+
# @!attribute [rw] description
|
3741
|
+
# Description of the report generator.
|
3742
|
+
# @return [String]
|
3743
|
+
#
|
3744
|
+
# @!attribute [rw] s3_location
|
3745
|
+
# Details of the S3 bucket that report generator reports are published
|
3746
|
+
# to.
|
3747
|
+
# @return [Types::S3Location]
|
3748
|
+
#
|
3749
|
+
# @!attribute [rw] create_time
|
3750
|
+
# Time the report was created.
|
3751
|
+
# @return [String]
|
3752
|
+
#
|
3753
|
+
# @!attribute [rw] tags
|
3754
|
+
# Tags associated with the report generator.
|
3755
|
+
# @return [Array<Types::Tag>]
|
3756
|
+
#
|
3757
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ReportGenerator AWS API Documentation
|
3758
|
+
#
|
3759
|
+
class ReportGenerator < Struct.new(
|
3760
|
+
:report_generator_name,
|
3761
|
+
:report_type,
|
3762
|
+
:report_context,
|
3763
|
+
:report_frequency,
|
3764
|
+
:license_manager_report_generator_arn,
|
3765
|
+
:last_run_status,
|
3766
|
+
:last_run_failure_reason,
|
3767
|
+
:last_report_generation_time,
|
3768
|
+
:report_creator_account,
|
3769
|
+
:description,
|
3770
|
+
:s3_location,
|
3771
|
+
:create_time,
|
3772
|
+
:tags)
|
3773
|
+
SENSITIVE = []
|
3774
|
+
include Aws::Structure
|
3775
|
+
end
|
3776
|
+
|
3406
3777
|
# Details about a resource.
|
3407
3778
|
#
|
3408
3779
|
# @!attribute [rw] resource_id
|
@@ -3468,6 +3839,26 @@ module Aws::LicenseManager
|
|
3468
3839
|
include Aws::Structure
|
3469
3840
|
end
|
3470
3841
|
|
3842
|
+
# Details of the S3 bucket that report generator reports are published
|
3843
|
+
# to.
|
3844
|
+
#
|
3845
|
+
# @!attribute [rw] bucket
|
3846
|
+
# Name of the S3 bucket reports are published to.
|
3847
|
+
# @return [String]
|
3848
|
+
#
|
3849
|
+
# @!attribute [rw] key_prefix
|
3850
|
+
# Prefix of the S3 bucket reports are published to.
|
3851
|
+
# @return [String]
|
3852
|
+
#
|
3853
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/S3Location AWS API Documentation
|
3854
|
+
#
|
3855
|
+
class S3Location < Struct.new(
|
3856
|
+
:bucket,
|
3857
|
+
:key_prefix)
|
3858
|
+
SENSITIVE = []
|
3859
|
+
include Aws::Structure
|
3860
|
+
end
|
3861
|
+
|
3471
3862
|
# The server experienced an internal error. Try again.
|
3472
3863
|
#
|
3473
3864
|
# @!attribute [rw] message
|
@@ -3645,7 +4036,7 @@ module Aws::LicenseManager
|
|
3645
4036
|
# product_information_filter_list: [ # required
|
3646
4037
|
# {
|
3647
4038
|
# product_information_filter_name: "String", # required
|
3648
|
-
# product_information_filter_value: ["String"],
|
4039
|
+
# product_information_filter_value: ["String"],
|
3649
4040
|
# product_information_filter_comparator: "String", # required
|
3650
4041
|
# },
|
3651
4042
|
# ],
|
@@ -3711,6 +4102,81 @@ module Aws::LicenseManager
|
|
3711
4102
|
#
|
3712
4103
|
class UpdateLicenseConfigurationResponse < Aws::EmptyStructure; end
|
3713
4104
|
|
4105
|
+
# @note When making an API call, you may pass UpdateLicenseManagerReportGeneratorRequest
|
4106
|
+
# data as a hash:
|
4107
|
+
#
|
4108
|
+
# {
|
4109
|
+
# license_manager_report_generator_arn: "String", # required
|
4110
|
+
# report_generator_name: "ReportGeneratorName", # required
|
4111
|
+
# type: ["LicenseConfigurationSummaryReport"], # required, accepts LicenseConfigurationSummaryReport, LicenseConfigurationUsageReport
|
4112
|
+
# report_context: { # required
|
4113
|
+
# license_configuration_arns: ["Arn"], # required
|
4114
|
+
# },
|
4115
|
+
# report_frequency: { # required
|
4116
|
+
# value: 1,
|
4117
|
+
# period: "DAY", # accepts DAY, WEEK, MONTH
|
4118
|
+
# },
|
4119
|
+
# client_token: "ClientRequestToken", # required
|
4120
|
+
# description: "String",
|
4121
|
+
# }
|
4122
|
+
#
|
4123
|
+
# @!attribute [rw] license_manager_report_generator_arn
|
4124
|
+
# Amazon Resource Number (ARN) of the report generator to update.
|
4125
|
+
# @return [String]
|
4126
|
+
#
|
4127
|
+
# @!attribute [rw] report_generator_name
|
4128
|
+
# Name of the report generator.
|
4129
|
+
# @return [String]
|
4130
|
+
#
|
4131
|
+
# @!attribute [rw] type
|
4132
|
+
# Type of reports to generate. The following report types an be
|
4133
|
+
# generated:
|
4134
|
+
#
|
4135
|
+
# * License configuration report - Reports on the number and details
|
4136
|
+
# of consumed licenses for a license configuration.
|
4137
|
+
#
|
4138
|
+
# * Resource report - Reports on the tracked licenses and resource
|
4139
|
+
# consumption for a license configuration.
|
4140
|
+
# @return [Array<String>]
|
4141
|
+
#
|
4142
|
+
# @!attribute [rw] report_context
|
4143
|
+
# ?
|
4144
|
+
# @return [Types::ReportContext]
|
4145
|
+
#
|
4146
|
+
# @!attribute [rw] report_frequency
|
4147
|
+
# Frequency by which reports are generated. The following options are
|
4148
|
+
# avaiable:
|
4149
|
+
#
|
4150
|
+
# ??? What are the APi value options?
|
4151
|
+
# @return [Types::ReportFrequency]
|
4152
|
+
#
|
4153
|
+
# @!attribute [rw] client_token
|
4154
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
4155
|
+
# idempotency of the request.
|
4156
|
+
# @return [String]
|
4157
|
+
#
|
4158
|
+
# @!attribute [rw] description
|
4159
|
+
# Description of the report generator.
|
4160
|
+
# @return [String]
|
4161
|
+
#
|
4162
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/UpdateLicenseManagerReportGeneratorRequest AWS API Documentation
|
4163
|
+
#
|
4164
|
+
class UpdateLicenseManagerReportGeneratorRequest < Struct.new(
|
4165
|
+
:license_manager_report_generator_arn,
|
4166
|
+
:report_generator_name,
|
4167
|
+
:type,
|
4168
|
+
:report_context,
|
4169
|
+
:report_frequency,
|
4170
|
+
:client_token,
|
4171
|
+
:description)
|
4172
|
+
SENSITIVE = []
|
4173
|
+
include Aws::Structure
|
4174
|
+
end
|
4175
|
+
|
4176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/UpdateLicenseManagerReportGeneratorResponse AWS API Documentation
|
4177
|
+
#
|
4178
|
+
class UpdateLicenseManagerReportGeneratorResponse < Aws::EmptyStructure; end
|
4179
|
+
|
3714
4180
|
# @note When making an API call, you may pass UpdateLicenseSpecificationsForResourceRequest
|
3715
4181
|
# data as a hash:
|
3716
4182
|
#
|