aws-sdk-licensemanager 1.42.0 → 1.44.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-licensemanager/client.rb +50 -10
- data/lib/aws-sdk-licensemanager/client_api.rb +7 -0
- data/lib/aws-sdk-licensemanager/endpoint_provider.rb +38 -96
- data/lib/aws-sdk-licensemanager/types.rb +84 -843
- data/lib/aws-sdk-licensemanager.rb +1 -1
- metadata +2 -2
@@ -10,13 +10,6 @@
|
|
10
10
|
module Aws::LicenseManager
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# @note When making an API call, you may pass AcceptGrantRequest
|
14
|
-
# data as a hash:
|
15
|
-
#
|
16
|
-
# {
|
17
|
-
# grant_arn: "Arn", # required
|
18
|
-
# }
|
19
|
-
#
|
20
13
|
# @!attribute [rw] grant_arn
|
21
14
|
# Amazon Resource Name (ARN) of the grant.
|
22
15
|
# @return [String]
|
@@ -94,14 +87,6 @@ module Aws::LicenseManager
|
|
94
87
|
|
95
88
|
# Details about a borrow configuration.
|
96
89
|
#
|
97
|
-
# @note When making an API call, you may pass BorrowConfiguration
|
98
|
-
# data as a hash:
|
99
|
-
#
|
100
|
-
# {
|
101
|
-
# allow_early_check_in: false, # required
|
102
|
-
# max_time_to_live_in_minutes: 1, # required
|
103
|
-
# }
|
104
|
-
#
|
105
90
|
# @!attribute [rw] allow_early_check_in
|
106
91
|
# Indicates whether early check-ins are allowed.
|
107
92
|
# @return [Boolean]
|
@@ -119,14 +104,6 @@ module Aws::LicenseManager
|
|
119
104
|
include Aws::Structure
|
120
105
|
end
|
121
106
|
|
122
|
-
# @note When making an API call, you may pass CheckInLicenseRequest
|
123
|
-
# data as a hash:
|
124
|
-
#
|
125
|
-
# {
|
126
|
-
# license_consumption_token: "String", # required
|
127
|
-
# beneficiary: "String",
|
128
|
-
# }
|
129
|
-
#
|
130
107
|
# @!attribute [rw] license_consumption_token
|
131
108
|
# License consumption token.
|
132
109
|
# @return [String]
|
@@ -148,29 +125,6 @@ module Aws::LicenseManager
|
|
148
125
|
#
|
149
126
|
class CheckInLicenseResponse < Aws::EmptyStructure; end
|
150
127
|
|
151
|
-
# @note When making an API call, you may pass CheckoutBorrowLicenseRequest
|
152
|
-
# data as a hash:
|
153
|
-
#
|
154
|
-
# {
|
155
|
-
# license_arn: "Arn", # required
|
156
|
-
# entitlements: [ # required
|
157
|
-
# {
|
158
|
-
# name: "String", # required
|
159
|
-
# value: "String",
|
160
|
-
# unit: "Count", # required, accepts Count, None, Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second
|
161
|
-
# },
|
162
|
-
# ],
|
163
|
-
# digital_signature_method: "JWT_PS384", # required, accepts JWT_PS384
|
164
|
-
# node_id: "String",
|
165
|
-
# checkout_metadata: [
|
166
|
-
# {
|
167
|
-
# name: "String",
|
168
|
-
# value: "String",
|
169
|
-
# },
|
170
|
-
# ],
|
171
|
-
# client_token: "ClientToken", # required
|
172
|
-
# }
|
173
|
-
#
|
174
128
|
# @!attribute [rw] license_arn
|
175
129
|
# Amazon Resource Name (ARN) of the license. The license must use the
|
176
130
|
# borrow consumption configuration.
|
@@ -263,25 +217,6 @@ module Aws::LicenseManager
|
|
263
217
|
include Aws::Structure
|
264
218
|
end
|
265
219
|
|
266
|
-
# @note When making an API call, you may pass CheckoutLicenseRequest
|
267
|
-
# data as a hash:
|
268
|
-
#
|
269
|
-
# {
|
270
|
-
# product_sku: "String", # required
|
271
|
-
# checkout_type: "PROVISIONAL", # required, accepts PROVISIONAL, PERPETUAL
|
272
|
-
# key_fingerprint: "String", # required
|
273
|
-
# entitlements: [ # required
|
274
|
-
# {
|
275
|
-
# name: "String", # required
|
276
|
-
# value: "String",
|
277
|
-
# unit: "Count", # required, accepts Count, None, Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second
|
278
|
-
# },
|
279
|
-
# ],
|
280
|
-
# client_token: "ClientToken", # required
|
281
|
-
# beneficiary: "String",
|
282
|
-
# node_id: "String",
|
283
|
-
# }
|
284
|
-
#
|
285
220
|
# @!attribute [rw] product_sku
|
286
221
|
# Product SKU.
|
287
222
|
# @return [String]
|
@@ -406,20 +341,6 @@ module Aws::LicenseManager
|
|
406
341
|
|
407
342
|
# Details about a consumption configuration.
|
408
343
|
#
|
409
|
-
# @note When making an API call, you may pass ConsumptionConfiguration
|
410
|
-
# data as a hash:
|
411
|
-
#
|
412
|
-
# {
|
413
|
-
# renew_type: "None", # accepts None, Weekly, Monthly
|
414
|
-
# provisional_configuration: {
|
415
|
-
# max_time_to_live_in_minutes: 1, # required
|
416
|
-
# },
|
417
|
-
# borrow_configuration: {
|
418
|
-
# allow_early_check_in: false, # required
|
419
|
-
# max_time_to_live_in_minutes: 1, # required
|
420
|
-
# },
|
421
|
-
# }
|
422
|
-
#
|
423
344
|
# @!attribute [rw] renew_type
|
424
345
|
# Renewal frequency.
|
425
346
|
# @return [String]
|
@@ -442,18 +363,6 @@ module Aws::LicenseManager
|
|
442
363
|
include Aws::Structure
|
443
364
|
end
|
444
365
|
|
445
|
-
# @note When making an API call, you may pass CreateGrantRequest
|
446
|
-
# data as a hash:
|
447
|
-
#
|
448
|
-
# {
|
449
|
-
# client_token: "ClientToken", # required
|
450
|
-
# grant_name: "String", # required
|
451
|
-
# license_arn: "Arn", # required
|
452
|
-
# principals: ["Arn"], # required
|
453
|
-
# home_region: "String", # required
|
454
|
-
# allowed_operations: ["CreateGrant"], # required, accepts CreateGrant, CheckoutLicense, CheckoutBorrowLicense, CheckInLicense, ExtendConsumptionLicense, ListPurchasedLicenses, CreateToken
|
455
|
-
# }
|
456
|
-
#
|
457
366
|
# @!attribute [rw] client_token
|
458
367
|
# Unique, case-sensitive identifier that you provide to ensure the
|
459
368
|
# idempotency of the request.
|
@@ -468,8 +377,25 @@ module Aws::LicenseManager
|
|
468
377
|
# @return [String]
|
469
378
|
#
|
470
379
|
# @!attribute [rw] principals
|
471
|
-
# The grant principals.
|
472
|
-
# Resource Name (ARN)
|
380
|
+
# The grant principals. You can specify one of the following as an
|
381
|
+
# Amazon Resource Name (ARN):
|
382
|
+
#
|
383
|
+
# * An Amazon Web Services account, which includes only the account
|
384
|
+
# specified.
|
385
|
+
#
|
386
|
+
# ^
|
387
|
+
# ^
|
388
|
+
#
|
389
|
+
# * An organizational unit (OU), which includes all accounts in the
|
390
|
+
# OU.
|
391
|
+
#
|
392
|
+
# ^
|
393
|
+
# ^
|
394
|
+
#
|
395
|
+
# * An organization, which will include all accounts across your
|
396
|
+
# organization.
|
397
|
+
#
|
398
|
+
# ^
|
473
399
|
# @return [Array<String>]
|
474
400
|
#
|
475
401
|
# @!attribute [rw] home_region
|
@@ -515,19 +441,6 @@ module Aws::LicenseManager
|
|
515
441
|
include Aws::Structure
|
516
442
|
end
|
517
443
|
|
518
|
-
# @note When making an API call, you may pass CreateGrantVersionRequest
|
519
|
-
# data as a hash:
|
520
|
-
#
|
521
|
-
# {
|
522
|
-
# client_token: "ClientToken", # required
|
523
|
-
# grant_arn: "Arn", # required
|
524
|
-
# grant_name: "String",
|
525
|
-
# allowed_operations: ["CreateGrant"], # accepts CreateGrant, CheckoutLicense, CheckoutBorrowLicense, CheckInLicense, ExtendConsumptionLicense, ListPurchasedLicenses, CreateToken
|
526
|
-
# status: "PENDING_WORKFLOW", # accepts PENDING_WORKFLOW, PENDING_ACCEPT, REJECTED, ACTIVE, FAILED_WORKFLOW, DELETED, PENDING_DELETE, DISABLED, WORKFLOW_COMPLETED
|
527
|
-
# status_reason: "StatusReasonMessage",
|
528
|
-
# source_version: "String",
|
529
|
-
# }
|
530
|
-
#
|
531
444
|
# @!attribute [rw] client_token
|
532
445
|
# Unique, case-sensitive identifier that you provide to ensure the
|
533
446
|
# idempotency of the request.
|
@@ -557,6 +470,10 @@ module Aws::LicenseManager
|
|
557
470
|
# Current version of the grant.
|
558
471
|
# @return [String]
|
559
472
|
#
|
473
|
+
# @!attribute [rw] options
|
474
|
+
# The options specified for the grant.
|
475
|
+
# @return [Types::Options]
|
476
|
+
#
|
560
477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CreateGrantVersionRequest AWS API Documentation
|
561
478
|
#
|
562
479
|
class CreateGrantVersionRequest < Struct.new(
|
@@ -566,7 +483,8 @@ module Aws::LicenseManager
|
|
566
483
|
:allowed_operations,
|
567
484
|
:status,
|
568
485
|
:status_reason,
|
569
|
-
:source_version
|
486
|
+
:source_version,
|
487
|
+
:options)
|
570
488
|
SENSITIVE = []
|
571
489
|
include Aws::Structure
|
572
490
|
end
|
@@ -593,37 +511,6 @@ module Aws::LicenseManager
|
|
593
511
|
include Aws::Structure
|
594
512
|
end
|
595
513
|
|
596
|
-
# @note When making an API call, you may pass CreateLicenseConfigurationRequest
|
597
|
-
# data as a hash:
|
598
|
-
#
|
599
|
-
# {
|
600
|
-
# name: "String", # required
|
601
|
-
# description: "String",
|
602
|
-
# license_counting_type: "vCPU", # required, accepts vCPU, Instance, Core, Socket
|
603
|
-
# license_count: 1,
|
604
|
-
# license_count_hard_limit: false,
|
605
|
-
# license_rules: ["String"],
|
606
|
-
# tags: [
|
607
|
-
# {
|
608
|
-
# key: "String",
|
609
|
-
# value: "String",
|
610
|
-
# },
|
611
|
-
# ],
|
612
|
-
# disassociate_when_not_found: false,
|
613
|
-
# product_information_list: [
|
614
|
-
# {
|
615
|
-
# resource_type: "String", # required
|
616
|
-
# product_information_filter_list: [ # required
|
617
|
-
# {
|
618
|
-
# product_information_filter_name: "String", # required
|
619
|
-
# product_information_filter_value: ["String"],
|
620
|
-
# product_information_filter_comparator: "String", # required
|
621
|
-
# },
|
622
|
-
# ],
|
623
|
-
# },
|
624
|
-
# ],
|
625
|
-
# }
|
626
|
-
#
|
627
514
|
# @!attribute [rw] name
|
628
515
|
# Name of the license configuration.
|
629
516
|
# @return [String]
|
@@ -709,19 +596,6 @@ module Aws::LicenseManager
|
|
709
596
|
include Aws::Structure
|
710
597
|
end
|
711
598
|
|
712
|
-
# @note When making an API call, you may pass CreateLicenseConversionTaskForResourceRequest
|
713
|
-
# data as a hash:
|
714
|
-
#
|
715
|
-
# {
|
716
|
-
# resource_arn: "Arn", # required
|
717
|
-
# source_license_context: { # required
|
718
|
-
# usage_operation: "UsageOperation",
|
719
|
-
# },
|
720
|
-
# destination_license_context: { # required
|
721
|
-
# usage_operation: "UsageOperation",
|
722
|
-
# },
|
723
|
-
# }
|
724
|
-
#
|
725
599
|
# @!attribute [rw] resource_arn
|
726
600
|
# Amazon Resource Name (ARN) of the resource you are converting the
|
727
601
|
# license type for.
|
@@ -730,8 +604,7 @@ module Aws::LicenseManager
|
|
730
604
|
# @!attribute [rw] source_license_context
|
731
605
|
# Information that identifies the license type you are converting
|
732
606
|
# from. For the structure of the source license, see [Convert a
|
733
|
-
# license type using the
|
734
|
-
# Manager User Guide*.
|
607
|
+
# license type using the CLI ][1] in the *License Manager User Guide*.
|
735
608
|
#
|
736
609
|
#
|
737
610
|
#
|
@@ -741,8 +614,7 @@ module Aws::LicenseManager
|
|
741
614
|
# @!attribute [rw] destination_license_context
|
742
615
|
# Information that identifies the license type you are converting to.
|
743
616
|
# For the structure of the destination license, see [Convert a license
|
744
|
-
# type using the
|
745
|
-
# User Guide*.
|
617
|
+
# type using the CLI ][1] in the *License Manager User Guide*.
|
746
618
|
#
|
747
619
|
#
|
748
620
|
#
|
@@ -771,29 +643,6 @@ module Aws::LicenseManager
|
|
771
643
|
include Aws::Structure
|
772
644
|
end
|
773
645
|
|
774
|
-
# @note When making an API call, you may pass CreateLicenseManagerReportGeneratorRequest
|
775
|
-
# data as a hash:
|
776
|
-
#
|
777
|
-
# {
|
778
|
-
# report_generator_name: "ReportGeneratorName", # required
|
779
|
-
# type: ["LicenseConfigurationSummaryReport"], # required, accepts LicenseConfigurationSummaryReport, LicenseConfigurationUsageReport
|
780
|
-
# report_context: { # required
|
781
|
-
# license_configuration_arns: ["Arn"], # required
|
782
|
-
# },
|
783
|
-
# report_frequency: { # required
|
784
|
-
# value: 1,
|
785
|
-
# period: "DAY", # accepts DAY, WEEK, MONTH
|
786
|
-
# },
|
787
|
-
# client_token: "ClientRequestToken", # required
|
788
|
-
# description: "String",
|
789
|
-
# tags: [
|
790
|
-
# {
|
791
|
-
# key: "String",
|
792
|
-
# value: "String",
|
793
|
-
# },
|
794
|
-
# ],
|
795
|
-
# }
|
796
|
-
#
|
797
646
|
# @!attribute [rw] report_generator_name
|
798
647
|
# Name of the report generator.
|
799
648
|
# @return [String]
|
@@ -858,52 +707,6 @@ module Aws::LicenseManager
|
|
858
707
|
include Aws::Structure
|
859
708
|
end
|
860
709
|
|
861
|
-
# @note When making an API call, you may pass CreateLicenseRequest
|
862
|
-
# data as a hash:
|
863
|
-
#
|
864
|
-
# {
|
865
|
-
# license_name: "String", # required
|
866
|
-
# product_name: "String", # required
|
867
|
-
# product_sku: "String", # required
|
868
|
-
# issuer: { # required
|
869
|
-
# name: "String", # required
|
870
|
-
# sign_key: "String",
|
871
|
-
# },
|
872
|
-
# home_region: "String", # required
|
873
|
-
# validity: { # required
|
874
|
-
# begin: "ISO8601DateTime", # required
|
875
|
-
# end: "ISO8601DateTime",
|
876
|
-
# },
|
877
|
-
# entitlements: [ # required
|
878
|
-
# {
|
879
|
-
# name: "String", # required
|
880
|
-
# value: "String",
|
881
|
-
# max_count: 1,
|
882
|
-
# overage: false,
|
883
|
-
# unit: "Count", # required, accepts Count, None, Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second
|
884
|
-
# allow_check_in: false,
|
885
|
-
# },
|
886
|
-
# ],
|
887
|
-
# beneficiary: "String", # required
|
888
|
-
# consumption_configuration: { # required
|
889
|
-
# renew_type: "None", # accepts None, Weekly, Monthly
|
890
|
-
# provisional_configuration: {
|
891
|
-
# max_time_to_live_in_minutes: 1, # required
|
892
|
-
# },
|
893
|
-
# borrow_configuration: {
|
894
|
-
# allow_early_check_in: false, # required
|
895
|
-
# max_time_to_live_in_minutes: 1, # required
|
896
|
-
# },
|
897
|
-
# },
|
898
|
-
# license_metadata: [
|
899
|
-
# {
|
900
|
-
# name: "String",
|
901
|
-
# value: "String",
|
902
|
-
# },
|
903
|
-
# ],
|
904
|
-
# client_token: "ClientToken", # required
|
905
|
-
# }
|
906
|
-
#
|
907
710
|
# @!attribute [rw] license_name
|
908
711
|
# License name.
|
909
712
|
# @return [String]
|
@@ -992,53 +795,6 @@ module Aws::LicenseManager
|
|
992
795
|
include Aws::Structure
|
993
796
|
end
|
994
797
|
|
995
|
-
# @note When making an API call, you may pass CreateLicenseVersionRequest
|
996
|
-
# data as a hash:
|
997
|
-
#
|
998
|
-
# {
|
999
|
-
# license_arn: "Arn", # required
|
1000
|
-
# license_name: "String", # required
|
1001
|
-
# product_name: "String", # required
|
1002
|
-
# issuer: { # required
|
1003
|
-
# name: "String", # required
|
1004
|
-
# sign_key: "String",
|
1005
|
-
# },
|
1006
|
-
# home_region: "String", # required
|
1007
|
-
# validity: { # required
|
1008
|
-
# begin: "ISO8601DateTime", # required
|
1009
|
-
# end: "ISO8601DateTime",
|
1010
|
-
# },
|
1011
|
-
# license_metadata: [
|
1012
|
-
# {
|
1013
|
-
# name: "String",
|
1014
|
-
# value: "String",
|
1015
|
-
# },
|
1016
|
-
# ],
|
1017
|
-
# entitlements: [ # required
|
1018
|
-
# {
|
1019
|
-
# name: "String", # required
|
1020
|
-
# value: "String",
|
1021
|
-
# max_count: 1,
|
1022
|
-
# overage: false,
|
1023
|
-
# unit: "Count", # required, accepts Count, None, Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second
|
1024
|
-
# allow_check_in: false,
|
1025
|
-
# },
|
1026
|
-
# ],
|
1027
|
-
# consumption_configuration: { # required
|
1028
|
-
# renew_type: "None", # accepts None, Weekly, Monthly
|
1029
|
-
# provisional_configuration: {
|
1030
|
-
# max_time_to_live_in_minutes: 1, # required
|
1031
|
-
# },
|
1032
|
-
# borrow_configuration: {
|
1033
|
-
# allow_early_check_in: false, # required
|
1034
|
-
# max_time_to_live_in_minutes: 1, # required
|
1035
|
-
# },
|
1036
|
-
# },
|
1037
|
-
# status: "AVAILABLE", # required, accepts AVAILABLE, PENDING_AVAILABLE, DEACTIVATED, SUSPENDED, EXPIRED, PENDING_DELETE, DELETED
|
1038
|
-
# client_token: "ClientToken", # required
|
1039
|
-
# source_version: "String",
|
1040
|
-
# }
|
1041
|
-
#
|
1042
798
|
# @!attribute [rw] license_arn
|
1043
799
|
# Amazon Resource Name (ARN) of the license.
|
1044
800
|
# @return [String]
|
@@ -1132,17 +888,6 @@ module Aws::LicenseManager
|
|
1132
888
|
include Aws::Structure
|
1133
889
|
end
|
1134
890
|
|
1135
|
-
# @note When making an API call, you may pass CreateTokenRequest
|
1136
|
-
# data as a hash:
|
1137
|
-
#
|
1138
|
-
# {
|
1139
|
-
# license_arn: "Arn", # required
|
1140
|
-
# role_arns: ["Arn"],
|
1141
|
-
# expiration_in_days: 1,
|
1142
|
-
# token_properties: ["String"],
|
1143
|
-
# client_token: "ClientToken", # required
|
1144
|
-
# }
|
1145
|
-
#
|
1146
891
|
# @!attribute [rw] license_arn
|
1147
892
|
# Amazon Resource Name (ARN) of the license. The ARN is mapped to the
|
1148
893
|
# aud claim of the JWT token.
|
@@ -1203,14 +948,6 @@ module Aws::LicenseManager
|
|
1203
948
|
|
1204
949
|
# Describes a time range, in ISO8601-UTC format.
|
1205
950
|
#
|
1206
|
-
# @note When making an API call, you may pass DatetimeRange
|
1207
|
-
# data as a hash:
|
1208
|
-
#
|
1209
|
-
# {
|
1210
|
-
# begin: "ISO8601DateTime", # required
|
1211
|
-
# end: "ISO8601DateTime",
|
1212
|
-
# }
|
1213
|
-
#
|
1214
951
|
# @!attribute [rw] begin
|
1215
952
|
# Start of the time range.
|
1216
953
|
# @return [String]
|
@@ -1228,15 +965,6 @@ module Aws::LicenseManager
|
|
1228
965
|
include Aws::Structure
|
1229
966
|
end
|
1230
967
|
|
1231
|
-
# @note When making an API call, you may pass DeleteGrantRequest
|
1232
|
-
# data as a hash:
|
1233
|
-
#
|
1234
|
-
# {
|
1235
|
-
# grant_arn: "Arn", # required
|
1236
|
-
# status_reason: "StatusReasonMessage",
|
1237
|
-
# version: "String", # required
|
1238
|
-
# }
|
1239
|
-
#
|
1240
968
|
# @!attribute [rw] grant_arn
|
1241
969
|
# Amazon Resource Name (ARN) of the grant.
|
1242
970
|
# @return [String]
|
@@ -1281,13 +1009,6 @@ module Aws::LicenseManager
|
|
1281
1009
|
include Aws::Structure
|
1282
1010
|
end
|
1283
1011
|
|
1284
|
-
# @note When making an API call, you may pass DeleteLicenseConfigurationRequest
|
1285
|
-
# data as a hash:
|
1286
|
-
#
|
1287
|
-
# {
|
1288
|
-
# license_configuration_arn: "String", # required
|
1289
|
-
# }
|
1290
|
-
#
|
1291
1012
|
# @!attribute [rw] license_configuration_arn
|
1292
1013
|
# ID of the license configuration.
|
1293
1014
|
# @return [String]
|
@@ -1304,13 +1025,6 @@ module Aws::LicenseManager
|
|
1304
1025
|
#
|
1305
1026
|
class DeleteLicenseConfigurationResponse < Aws::EmptyStructure; end
|
1306
1027
|
|
1307
|
-
# @note When making an API call, you may pass DeleteLicenseManagerReportGeneratorRequest
|
1308
|
-
# data as a hash:
|
1309
|
-
#
|
1310
|
-
# {
|
1311
|
-
# license_manager_report_generator_arn: "String", # required
|
1312
|
-
# }
|
1313
|
-
#
|
1314
1028
|
# @!attribute [rw] license_manager_report_generator_arn
|
1315
1029
|
# Amazon Resource Name (ARN) of the report generator to be deleted.
|
1316
1030
|
# @return [String]
|
@@ -1327,14 +1041,6 @@ module Aws::LicenseManager
|
|
1327
1041
|
#
|
1328
1042
|
class DeleteLicenseManagerReportGeneratorResponse < Aws::EmptyStructure; end
|
1329
1043
|
|
1330
|
-
# @note When making an API call, you may pass DeleteLicenseRequest
|
1331
|
-
# data as a hash:
|
1332
|
-
#
|
1333
|
-
# {
|
1334
|
-
# license_arn: "Arn", # required
|
1335
|
-
# source_version: "String", # required
|
1336
|
-
# }
|
1337
|
-
#
|
1338
1044
|
# @!attribute [rw] license_arn
|
1339
1045
|
# Amazon Resource Name (ARN) of the license.
|
1340
1046
|
# @return [String]
|
@@ -1369,13 +1075,6 @@ module Aws::LicenseManager
|
|
1369
1075
|
include Aws::Structure
|
1370
1076
|
end
|
1371
1077
|
|
1372
|
-
# @note When making an API call, you may pass DeleteTokenRequest
|
1373
|
-
# data as a hash:
|
1374
|
-
#
|
1375
|
-
# {
|
1376
|
-
# token_id: "String", # required
|
1377
|
-
# }
|
1378
|
-
#
|
1379
1078
|
# @!attribute [rw] token_id
|
1380
1079
|
# Token ID.
|
1381
1080
|
# @return [String]
|
@@ -1394,18 +1093,6 @@ module Aws::LicenseManager
|
|
1394
1093
|
|
1395
1094
|
# Describes a resource entitled for use with a license.
|
1396
1095
|
#
|
1397
|
-
# @note When making an API call, you may pass Entitlement
|
1398
|
-
# data as a hash:
|
1399
|
-
#
|
1400
|
-
# {
|
1401
|
-
# name: "String", # required
|
1402
|
-
# value: "String",
|
1403
|
-
# max_count: 1,
|
1404
|
-
# overage: false,
|
1405
|
-
# unit: "Count", # required, accepts Count, None, Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second
|
1406
|
-
# allow_check_in: false,
|
1407
|
-
# }
|
1408
|
-
#
|
1409
1096
|
# @!attribute [rw] name
|
1410
1097
|
# Entitlement name.
|
1411
1098
|
# @return [String]
|
@@ -1445,15 +1132,6 @@ module Aws::LicenseManager
|
|
1445
1132
|
|
1446
1133
|
# Data associated with an entitlement resource.
|
1447
1134
|
#
|
1448
|
-
# @note When making an API call, you may pass EntitlementData
|
1449
|
-
# data as a hash:
|
1450
|
-
#
|
1451
|
-
# {
|
1452
|
-
# name: "String", # required
|
1453
|
-
# value: "String",
|
1454
|
-
# unit: "Count", # required, accepts Count, None, Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second
|
1455
|
-
# }
|
1456
|
-
#
|
1457
1135
|
# @!attribute [rw] name
|
1458
1136
|
# Entitlement data name.
|
1459
1137
|
# @return [String]
|
@@ -1518,14 +1196,6 @@ module Aws::LicenseManager
|
|
1518
1196
|
include Aws::Structure
|
1519
1197
|
end
|
1520
1198
|
|
1521
|
-
# @note When making an API call, you may pass ExtendLicenseConsumptionRequest
|
1522
|
-
# data as a hash:
|
1523
|
-
#
|
1524
|
-
# {
|
1525
|
-
# license_consumption_token: "String", # required
|
1526
|
-
# dry_run: false,
|
1527
|
-
# }
|
1528
|
-
#
|
1529
1199
|
# @!attribute [rw] license_consumption_token
|
1530
1200
|
# License consumption token.
|
1531
1201
|
# @return [String]
|
@@ -1583,20 +1253,13 @@ module Aws::LicenseManager
|
|
1583
1253
|
# results from a describe operation. Filters can be used to match a set
|
1584
1254
|
# of resources by specific criteria, such as tags, attributes, or IDs.
|
1585
1255
|
#
|
1586
|
-
# @note When making an API call, you may pass Filter
|
1587
|
-
# data as a hash:
|
1588
|
-
#
|
1589
|
-
# {
|
1590
|
-
# name: "FilterName",
|
1591
|
-
# values: ["FilterValue"],
|
1592
|
-
# }
|
1593
|
-
#
|
1594
1256
|
# @!attribute [rw] name
|
1595
1257
|
# Name of the filter. Filter names are case-sensitive.
|
1596
1258
|
# @return [String]
|
1597
1259
|
#
|
1598
1260
|
# @!attribute [rw] values
|
1599
|
-
#
|
1261
|
+
# The value of the filter, which is case-sensitive. You can only
|
1262
|
+
# specify one value for the filter.
|
1600
1263
|
# @return [Array<String>]
|
1601
1264
|
#
|
1602
1265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/Filter AWS API Documentation
|
@@ -1621,14 +1284,6 @@ module Aws::LicenseManager
|
|
1621
1284
|
include Aws::Structure
|
1622
1285
|
end
|
1623
1286
|
|
1624
|
-
# @note When making an API call, you may pass GetAccessTokenRequest
|
1625
|
-
# data as a hash:
|
1626
|
-
#
|
1627
|
-
# {
|
1628
|
-
# token: "TokenString", # required
|
1629
|
-
# token_properties: ["String"],
|
1630
|
-
# }
|
1631
|
-
#
|
1632
1287
|
# @!attribute [rw] token
|
1633
1288
|
# Refresh token, encoded as a JWT token.
|
1634
1289
|
# @return [String]
|
@@ -1658,14 +1313,6 @@ module Aws::LicenseManager
|
|
1658
1313
|
include Aws::Structure
|
1659
1314
|
end
|
1660
1315
|
|
1661
|
-
# @note When making an API call, you may pass GetGrantRequest
|
1662
|
-
# data as a hash:
|
1663
|
-
#
|
1664
|
-
# {
|
1665
|
-
# grant_arn: "Arn", # required
|
1666
|
-
# version: "String",
|
1667
|
-
# }
|
1668
|
-
#
|
1669
1316
|
# @!attribute [rw] grant_arn
|
1670
1317
|
# Amazon Resource Name (ARN) of the grant.
|
1671
1318
|
# @return [String]
|
@@ -1695,13 +1342,6 @@ module Aws::LicenseManager
|
|
1695
1342
|
include Aws::Structure
|
1696
1343
|
end
|
1697
1344
|
|
1698
|
-
# @note When making an API call, you may pass GetLicenseConfigurationRequest
|
1699
|
-
# data as a hash:
|
1700
|
-
#
|
1701
|
-
# {
|
1702
|
-
# license_configuration_arn: "String", # required
|
1703
|
-
# }
|
1704
|
-
#
|
1705
1345
|
# @!attribute [rw] license_configuration_arn
|
1706
1346
|
# Amazon Resource Name (ARN) of the license configuration.
|
1707
1347
|
# @return [String]
|
@@ -1806,13 +1446,6 @@ module Aws::LicenseManager
|
|
1806
1446
|
include Aws::Structure
|
1807
1447
|
end
|
1808
1448
|
|
1809
|
-
# @note When making an API call, you may pass GetLicenseConversionTaskRequest
|
1810
|
-
# data as a hash:
|
1811
|
-
#
|
1812
|
-
# {
|
1813
|
-
# license_conversion_task_id: "LicenseConversionTaskId", # required
|
1814
|
-
# }
|
1815
|
-
#
|
1816
1449
|
# @!attribute [rw] license_conversion_task_id
|
1817
1450
|
# ID of the license type conversion task to retrieve information on.
|
1818
1451
|
# @return [String]
|
@@ -1878,13 +1511,6 @@ module Aws::LicenseManager
|
|
1878
1511
|
include Aws::Structure
|
1879
1512
|
end
|
1880
1513
|
|
1881
|
-
# @note When making an API call, you may pass GetLicenseManagerReportGeneratorRequest
|
1882
|
-
# data as a hash:
|
1883
|
-
#
|
1884
|
-
# {
|
1885
|
-
# license_manager_report_generator_arn: "String", # required
|
1886
|
-
# }
|
1887
|
-
#
|
1888
1514
|
# @!attribute [rw] license_manager_report_generator_arn
|
1889
1515
|
# Amazon Resource Name (ARN) of the report generator.
|
1890
1516
|
# @return [String]
|
@@ -1910,14 +1536,6 @@ module Aws::LicenseManager
|
|
1910
1536
|
include Aws::Structure
|
1911
1537
|
end
|
1912
1538
|
|
1913
|
-
# @note When making an API call, you may pass GetLicenseRequest
|
1914
|
-
# data as a hash:
|
1915
|
-
#
|
1916
|
-
# {
|
1917
|
-
# license_arn: "Arn", # required
|
1918
|
-
# version: "String",
|
1919
|
-
# }
|
1920
|
-
#
|
1921
1539
|
# @!attribute [rw] license_arn
|
1922
1540
|
# Amazon Resource Name (ARN) of the license.
|
1923
1541
|
# @return [String]
|
@@ -1947,13 +1565,6 @@ module Aws::LicenseManager
|
|
1947
1565
|
include Aws::Structure
|
1948
1566
|
end
|
1949
1567
|
|
1950
|
-
# @note When making an API call, you may pass GetLicenseUsageRequest
|
1951
|
-
# data as a hash:
|
1952
|
-
#
|
1953
|
-
# {
|
1954
|
-
# license_arn: "Arn", # required
|
1955
|
-
# }
|
1956
|
-
#
|
1957
1568
|
# @!attribute [rw] license_arn
|
1958
1569
|
# Amazon Resource Name (ARN) of the license.
|
1959
1570
|
# @return [String]
|
@@ -2062,6 +1673,10 @@ module Aws::LicenseManager
|
|
2062
1673
|
# Granted operations.
|
2063
1674
|
# @return [Array<String>]
|
2064
1675
|
#
|
1676
|
+
# @!attribute [rw] options
|
1677
|
+
# The options specified for the grant.
|
1678
|
+
# @return [Types::Options]
|
1679
|
+
#
|
2065
1680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/Grant AWS API Documentation
|
2066
1681
|
#
|
2067
1682
|
class Grant < Struct.new(
|
@@ -2074,7 +1689,8 @@ module Aws::LicenseManager
|
|
2074
1689
|
:grant_status,
|
2075
1690
|
:status_reason,
|
2076
1691
|
:version,
|
2077
|
-
:granted_operations
|
1692
|
+
:granted_operations,
|
1693
|
+
:options)
|
2078
1694
|
SENSITIVE = []
|
2079
1695
|
include Aws::Structure
|
2080
1696
|
end
|
@@ -2196,15 +1812,6 @@ module Aws::LicenseManager
|
|
2196
1812
|
|
2197
1813
|
# An inventory filter.
|
2198
1814
|
#
|
2199
|
-
# @note When making an API call, you may pass InventoryFilter
|
2200
|
-
# data as a hash:
|
2201
|
-
#
|
2202
|
-
# {
|
2203
|
-
# name: "String", # required
|
2204
|
-
# condition: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, BEGINS_WITH, CONTAINS
|
2205
|
-
# value: "String",
|
2206
|
-
# }
|
2207
|
-
#
|
2208
1815
|
# @!attribute [rw] name
|
2209
1816
|
# Name of the filter.
|
2210
1817
|
# @return [String]
|
@@ -2229,14 +1836,6 @@ module Aws::LicenseManager
|
|
2229
1836
|
|
2230
1837
|
# Details about the issuer of a license.
|
2231
1838
|
#
|
2232
|
-
# @note When making an API call, you may pass Issuer
|
2233
|
-
# data as a hash:
|
2234
|
-
#
|
2235
|
-
# {
|
2236
|
-
# name: "String", # required
|
2237
|
-
# sign_key: "String",
|
2238
|
-
# }
|
2239
|
-
#
|
2240
1839
|
# @!attribute [rw] name
|
2241
1840
|
# Issuer name.
|
2242
1841
|
# @return [String]
|
@@ -2536,13 +2135,6 @@ module Aws::LicenseManager
|
|
2536
2135
|
|
2537
2136
|
# Information about a license type conversion task.
|
2538
2137
|
#
|
2539
|
-
# @note When making an API call, you may pass LicenseConversionContext
|
2540
|
-
# data as a hash:
|
2541
|
-
#
|
2542
|
-
# {
|
2543
|
-
# usage_operation: "UsageOperation",
|
2544
|
-
# }
|
2545
|
-
#
|
2546
2138
|
# @!attribute [rw] usage_operation
|
2547
2139
|
# The Usage operation value that corresponds to the license type you
|
2548
2140
|
# are converting your resource from. For more information about which
|
@@ -2670,14 +2262,6 @@ module Aws::LicenseManager
|
|
2670
2262
|
|
2671
2263
|
# Details for associating a license configuration with a resource.
|
2672
2264
|
#
|
2673
|
-
# @note When making an API call, you may pass LicenseSpecification
|
2674
|
-
# data as a hash:
|
2675
|
-
#
|
2676
|
-
# {
|
2677
|
-
# license_configuration_arn: "String", # required
|
2678
|
-
# ami_association_scope: "String",
|
2679
|
-
# }
|
2680
|
-
#
|
2681
2265
|
# @!attribute [rw] license_configuration_arn
|
2682
2266
|
# Amazon Resource Name (ARN) of the license configuration.
|
2683
2267
|
# @return [String]
|
@@ -2723,15 +2307,6 @@ module Aws::LicenseManager
|
|
2723
2307
|
include Aws::Structure
|
2724
2308
|
end
|
2725
2309
|
|
2726
|
-
# @note When making an API call, you may pass ListAssociationsForLicenseConfigurationRequest
|
2727
|
-
# data as a hash:
|
2728
|
-
#
|
2729
|
-
# {
|
2730
|
-
# license_configuration_arn: "String", # required
|
2731
|
-
# max_results: 1,
|
2732
|
-
# next_token: "String",
|
2733
|
-
# }
|
2734
|
-
#
|
2735
2310
|
# @!attribute [rw] license_configuration_arn
|
2736
2311
|
# Amazon Resource Name (ARN) of a license configuration.
|
2737
2312
|
# @return [String]
|
@@ -2771,21 +2346,6 @@ module Aws::LicenseManager
|
|
2771
2346
|
include Aws::Structure
|
2772
2347
|
end
|
2773
2348
|
|
2774
|
-
# @note When making an API call, you may pass ListDistributedGrantsRequest
|
2775
|
-
# data as a hash:
|
2776
|
-
#
|
2777
|
-
# {
|
2778
|
-
# grant_arns: ["Arn"],
|
2779
|
-
# filters: [
|
2780
|
-
# {
|
2781
|
-
# name: "FilterName",
|
2782
|
-
# values: ["FilterValue"],
|
2783
|
-
# },
|
2784
|
-
# ],
|
2785
|
-
# next_token: "String",
|
2786
|
-
# max_results: 1,
|
2787
|
-
# }
|
2788
|
-
#
|
2789
2349
|
# @!attribute [rw] grant_arns
|
2790
2350
|
# Amazon Resource Names (ARNs) of the grants.
|
2791
2351
|
# @return [Array<String>]
|
@@ -2840,15 +2400,6 @@ module Aws::LicenseManager
|
|
2840
2400
|
include Aws::Structure
|
2841
2401
|
end
|
2842
2402
|
|
2843
|
-
# @note When making an API call, you may pass ListFailuresForLicenseConfigurationOperationsRequest
|
2844
|
-
# data as a hash:
|
2845
|
-
#
|
2846
|
-
# {
|
2847
|
-
# license_configuration_arn: "String", # required
|
2848
|
-
# max_results: 1,
|
2849
|
-
# next_token: "String",
|
2850
|
-
# }
|
2851
|
-
#
|
2852
2403
|
# @!attribute [rw] license_configuration_arn
|
2853
2404
|
# Amazon Resource Name of the license configuration.
|
2854
2405
|
# @return [String]
|
@@ -2888,21 +2439,6 @@ module Aws::LicenseManager
|
|
2888
2439
|
include Aws::Structure
|
2889
2440
|
end
|
2890
2441
|
|
2891
|
-
# @note When making an API call, you may pass ListLicenseConfigurationsRequest
|
2892
|
-
# data as a hash:
|
2893
|
-
#
|
2894
|
-
# {
|
2895
|
-
# license_configuration_arns: ["String"],
|
2896
|
-
# max_results: 1,
|
2897
|
-
# next_token: "String",
|
2898
|
-
# filters: [
|
2899
|
-
# {
|
2900
|
-
# name: "FilterName",
|
2901
|
-
# values: ["FilterValue"],
|
2902
|
-
# },
|
2903
|
-
# ],
|
2904
|
-
# }
|
2905
|
-
#
|
2906
2442
|
# @!attribute [rw] license_configuration_arns
|
2907
2443
|
# Amazon Resource Names (ARN) of the license configurations.
|
2908
2444
|
# @return [Array<String>]
|
@@ -2960,20 +2496,6 @@ module Aws::LicenseManager
|
|
2960
2496
|
include Aws::Structure
|
2961
2497
|
end
|
2962
2498
|
|
2963
|
-
# @note When making an API call, you may pass ListLicenseConversionTasksRequest
|
2964
|
-
# data as a hash:
|
2965
|
-
#
|
2966
|
-
# {
|
2967
|
-
# next_token: "String",
|
2968
|
-
# max_results: 1,
|
2969
|
-
# filters: [
|
2970
|
-
# {
|
2971
|
-
# name: "FilterName",
|
2972
|
-
# values: ["FilterValue"],
|
2973
|
-
# },
|
2974
|
-
# ],
|
2975
|
-
# }
|
2976
|
-
#
|
2977
2499
|
# @!attribute [rw] next_token
|
2978
2500
|
# Token for the next set of results.
|
2979
2501
|
# @return [String]
|
@@ -3014,20 +2536,6 @@ module Aws::LicenseManager
|
|
3014
2536
|
include Aws::Structure
|
3015
2537
|
end
|
3016
2538
|
|
3017
|
-
# @note When making an API call, you may pass ListLicenseManagerReportGeneratorsRequest
|
3018
|
-
# data as a hash:
|
3019
|
-
#
|
3020
|
-
# {
|
3021
|
-
# filters: [
|
3022
|
-
# {
|
3023
|
-
# name: "FilterName",
|
3024
|
-
# values: ["FilterValue"],
|
3025
|
-
# },
|
3026
|
-
# ],
|
3027
|
-
# next_token: "String",
|
3028
|
-
# max_results: 1,
|
3029
|
-
# }
|
3030
|
-
#
|
3031
2539
|
# @!attribute [rw] filters
|
3032
2540
|
# Filters to scope the results. The following filters are supported:
|
3033
2541
|
#
|
@@ -3072,15 +2580,6 @@ module Aws::LicenseManager
|
|
3072
2580
|
include Aws::Structure
|
3073
2581
|
end
|
3074
2582
|
|
3075
|
-
# @note When making an API call, you may pass ListLicenseSpecificationsForResourceRequest
|
3076
|
-
# data as a hash:
|
3077
|
-
#
|
3078
|
-
# {
|
3079
|
-
# resource_arn: "String", # required
|
3080
|
-
# max_results: 1,
|
3081
|
-
# next_token: "String",
|
3082
|
-
# }
|
3083
|
-
#
|
3084
2583
|
# @!attribute [rw] resource_arn
|
3085
2584
|
# Amazon Resource Name (ARN) of a resource that has an associated
|
3086
2585
|
# license configuration.
|
@@ -3121,15 +2620,6 @@ module Aws::LicenseManager
|
|
3121
2620
|
include Aws::Structure
|
3122
2621
|
end
|
3123
2622
|
|
3124
|
-
# @note When making an API call, you may pass ListLicenseVersionsRequest
|
3125
|
-
# data as a hash:
|
3126
|
-
#
|
3127
|
-
# {
|
3128
|
-
# license_arn: "Arn", # required
|
3129
|
-
# next_token: "String",
|
3130
|
-
# max_results: 1,
|
3131
|
-
# }
|
3132
|
-
#
|
3133
2623
|
# @!attribute [rw] license_arn
|
3134
2624
|
# Amazon Resource Name (ARN) of the license.
|
3135
2625
|
# @return [String]
|
@@ -3169,21 +2659,6 @@ module Aws::LicenseManager
|
|
3169
2659
|
include Aws::Structure
|
3170
2660
|
end
|
3171
2661
|
|
3172
|
-
# @note When making an API call, you may pass ListLicensesRequest
|
3173
|
-
# data as a hash:
|
3174
|
-
#
|
3175
|
-
# {
|
3176
|
-
# license_arns: ["Arn"],
|
3177
|
-
# filters: [
|
3178
|
-
# {
|
3179
|
-
# name: "FilterName",
|
3180
|
-
# values: ["FilterValue"],
|
3181
|
-
# },
|
3182
|
-
# ],
|
3183
|
-
# next_token: "String",
|
3184
|
-
# max_results: 1,
|
3185
|
-
# }
|
3186
|
-
#
|
3187
2662
|
# @!attribute [rw] license_arns
|
3188
2663
|
# Amazon Resource Names (ARNs) of the licenses.
|
3189
2664
|
# @return [Array<String>]
|
@@ -3236,21 +2711,6 @@ module Aws::LicenseManager
|
|
3236
2711
|
include Aws::Structure
|
3237
2712
|
end
|
3238
2713
|
|
3239
|
-
# @note When making an API call, you may pass ListReceivedGrantsForOrganizationRequest
|
3240
|
-
# data as a hash:
|
3241
|
-
#
|
3242
|
-
# {
|
3243
|
-
# license_arn: "Arn", # required
|
3244
|
-
# filters: [
|
3245
|
-
# {
|
3246
|
-
# name: "FilterName",
|
3247
|
-
# values: ["FilterValue"],
|
3248
|
-
# },
|
3249
|
-
# ],
|
3250
|
-
# next_token: "String",
|
3251
|
-
# max_results: 1,
|
3252
|
-
# }
|
3253
|
-
#
|
3254
2714
|
# @!attribute [rw] license_arn
|
3255
2715
|
# The Amazon Resource Name (ARN) of the received license.
|
3256
2716
|
# @return [String]
|
@@ -3299,21 +2759,6 @@ module Aws::LicenseManager
|
|
3299
2759
|
include Aws::Structure
|
3300
2760
|
end
|
3301
2761
|
|
3302
|
-
# @note When making an API call, you may pass ListReceivedGrantsRequest
|
3303
|
-
# data as a hash:
|
3304
|
-
#
|
3305
|
-
# {
|
3306
|
-
# grant_arns: ["Arn"],
|
3307
|
-
# filters: [
|
3308
|
-
# {
|
3309
|
-
# name: "FilterName",
|
3310
|
-
# values: ["FilterValue"],
|
3311
|
-
# },
|
3312
|
-
# ],
|
3313
|
-
# next_token: "String",
|
3314
|
-
# max_results: 1,
|
3315
|
-
# }
|
3316
|
-
#
|
3317
2762
|
# @!attribute [rw] grant_arns
|
3318
2763
|
# Amazon Resource Names (ARNs) of the grants.
|
3319
2764
|
# @return [Array<String>]
|
@@ -3368,20 +2813,6 @@ module Aws::LicenseManager
|
|
3368
2813
|
include Aws::Structure
|
3369
2814
|
end
|
3370
2815
|
|
3371
|
-
# @note When making an API call, you may pass ListReceivedLicensesForOrganizationRequest
|
3372
|
-
# data as a hash:
|
3373
|
-
#
|
3374
|
-
# {
|
3375
|
-
# filters: [
|
3376
|
-
# {
|
3377
|
-
# name: "FilterName",
|
3378
|
-
# values: ["FilterValue"],
|
3379
|
-
# },
|
3380
|
-
# ],
|
3381
|
-
# next_token: "String",
|
3382
|
-
# max_results: 1,
|
3383
|
-
# }
|
3384
|
-
#
|
3385
2816
|
# @!attribute [rw] filters
|
3386
2817
|
# Filters to scope the results. The following filters are supported:
|
3387
2818
|
#
|
@@ -3425,21 +2856,6 @@ module Aws::LicenseManager
|
|
3425
2856
|
include Aws::Structure
|
3426
2857
|
end
|
3427
2858
|
|
3428
|
-
# @note When making an API call, you may pass ListReceivedLicensesRequest
|
3429
|
-
# data as a hash:
|
3430
|
-
#
|
3431
|
-
# {
|
3432
|
-
# license_arns: ["Arn"],
|
3433
|
-
# filters: [
|
3434
|
-
# {
|
3435
|
-
# name: "FilterName",
|
3436
|
-
# values: ["FilterValue"],
|
3437
|
-
# },
|
3438
|
-
# ],
|
3439
|
-
# next_token: "String",
|
3440
|
-
# max_results: 1,
|
3441
|
-
# }
|
3442
|
-
#
|
3443
2859
|
# @!attribute [rw] license_arns
|
3444
2860
|
# Amazon Resource Names (ARNs) of the licenses.
|
3445
2861
|
# @return [Array<String>]
|
@@ -3494,21 +2910,6 @@ module Aws::LicenseManager
|
|
3494
2910
|
include Aws::Structure
|
3495
2911
|
end
|
3496
2912
|
|
3497
|
-
# @note When making an API call, you may pass ListResourceInventoryRequest
|
3498
|
-
# data as a hash:
|
3499
|
-
#
|
3500
|
-
# {
|
3501
|
-
# max_results: 1,
|
3502
|
-
# next_token: "String",
|
3503
|
-
# filters: [
|
3504
|
-
# {
|
3505
|
-
# name: "String", # required
|
3506
|
-
# condition: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, BEGINS_WITH, CONTAINS
|
3507
|
-
# value: "String",
|
3508
|
-
# },
|
3509
|
-
# ],
|
3510
|
-
# }
|
3511
|
-
#
|
3512
2913
|
# @!attribute [rw] max_results
|
3513
2914
|
# Maximum number of results to return in a single call.
|
3514
2915
|
# @return [Integer]
|
@@ -3570,13 +2971,6 @@ module Aws::LicenseManager
|
|
3570
2971
|
include Aws::Structure
|
3571
2972
|
end
|
3572
2973
|
|
3573
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
3574
|
-
# data as a hash:
|
3575
|
-
#
|
3576
|
-
# {
|
3577
|
-
# resource_arn: "String", # required
|
3578
|
-
# }
|
3579
|
-
#
|
3580
2974
|
# @!attribute [rw] resource_arn
|
3581
2975
|
# Amazon Resource Name (ARN) of the license configuration.
|
3582
2976
|
# @return [String]
|
@@ -3601,21 +2995,6 @@ module Aws::LicenseManager
|
|
3601
2995
|
include Aws::Structure
|
3602
2996
|
end
|
3603
2997
|
|
3604
|
-
# @note When making an API call, you may pass ListTokensRequest
|
3605
|
-
# data as a hash:
|
3606
|
-
#
|
3607
|
-
# {
|
3608
|
-
# token_ids: ["String"],
|
3609
|
-
# filters: [
|
3610
|
-
# {
|
3611
|
-
# name: "FilterName",
|
3612
|
-
# values: ["FilterValue"],
|
3613
|
-
# },
|
3614
|
-
# ],
|
3615
|
-
# next_token: "String",
|
3616
|
-
# max_results: 1,
|
3617
|
-
# }
|
3618
|
-
#
|
3619
2998
|
# @!attribute [rw] token_ids
|
3620
2999
|
# Token IDs.
|
3621
3000
|
# @return [Array<String>]
|
@@ -3664,21 +3043,6 @@ module Aws::LicenseManager
|
|
3664
3043
|
include Aws::Structure
|
3665
3044
|
end
|
3666
3045
|
|
3667
|
-
# @note When making an API call, you may pass ListUsageForLicenseConfigurationRequest
|
3668
|
-
# data as a hash:
|
3669
|
-
#
|
3670
|
-
# {
|
3671
|
-
# license_configuration_arn: "String", # required
|
3672
|
-
# max_results: 1,
|
3673
|
-
# next_token: "String",
|
3674
|
-
# filters: [
|
3675
|
-
# {
|
3676
|
-
# name: "FilterName",
|
3677
|
-
# values: ["FilterValue"],
|
3678
|
-
# },
|
3679
|
-
# ],
|
3680
|
-
# }
|
3681
|
-
#
|
3682
3046
|
# @!attribute [rw] license_configuration_arn
|
3683
3047
|
# Amazon Resource Name (ARN) of the license configuration.
|
3684
3048
|
# @return [String]
|
@@ -3755,14 +3119,6 @@ module Aws::LicenseManager
|
|
3755
3119
|
|
3756
3120
|
# Describes key/value pairs.
|
3757
3121
|
#
|
3758
|
-
# @note When making an API call, you may pass Metadata
|
3759
|
-
# data as a hash:
|
3760
|
-
#
|
3761
|
-
# {
|
3762
|
-
# name: "String",
|
3763
|
-
# value: "String",
|
3764
|
-
# }
|
3765
|
-
#
|
3766
3122
|
# @!attribute [rw] name
|
3767
3123
|
# The key name.
|
3768
3124
|
# @return [String]
|
@@ -3794,14 +3150,55 @@ module Aws::LicenseManager
|
|
3794
3150
|
include Aws::Structure
|
3795
3151
|
end
|
3796
3152
|
|
3797
|
-
#
|
3153
|
+
# The options you can specify when you create a new version of a grant,
|
3154
|
+
# such as activation override behavior. For more information, see
|
3155
|
+
# [Granted licenses in License Manager][1] in the *License Manager User
|
3156
|
+
# Guide*.
|
3157
|
+
#
|
3798
3158
|
#
|
3799
|
-
# @note When making an API call, you may pass OrganizationConfiguration
|
3800
|
-
# data as a hash:
|
3801
3159
|
#
|
3802
|
-
#
|
3803
|
-
#
|
3804
|
-
#
|
3160
|
+
# [1]: https://docs.aws.amazon.com/license-manager/latest/userguide/granted-licenses.html
|
3161
|
+
#
|
3162
|
+
# @!attribute [rw] activation_override_behavior
|
3163
|
+
# An activation option for your grant that determines the behavior of
|
3164
|
+
# activating a grant. Activation options can only be used with granted
|
3165
|
+
# licenses sourced from the Amazon Web Services Marketplace.
|
3166
|
+
# Additionally, the operation must specify the value of `ACTIVE` for
|
3167
|
+
# the `Status` parameter.
|
3168
|
+
#
|
3169
|
+
# * As a license administrator, you can optionally specify an
|
3170
|
+
# `ActivationOverrideBehavior` when activating a grant.
|
3171
|
+
#
|
3172
|
+
# * As a grantor, you can optionally specify an
|
3173
|
+
# `ActivationOverrideBehavior` when you activate a grant for a
|
3174
|
+
# grantee account in your organization.
|
3175
|
+
#
|
3176
|
+
# * As a grantee, if the grantor creating the distributed grant
|
3177
|
+
# doesn’t specify an `ActivationOverrideBehavior`, you can
|
3178
|
+
# optionally specify one when you are activating the grant.
|
3179
|
+
#
|
3180
|
+
# DISTRIBUTED\_GRANTS\_ONLY
|
3181
|
+
#
|
3182
|
+
# : Use this value to activate a grant without replacing any member
|
3183
|
+
# account’s active grants for the same product.
|
3184
|
+
#
|
3185
|
+
# ALL\_GRANTS\_PERMITTED\_BY\_ISSUER
|
3186
|
+
#
|
3187
|
+
# : Use this value to activate a grant and disable other active grants
|
3188
|
+
# in any member accounts for the same product. This action will also
|
3189
|
+
# replace their previously activated grants with this activated
|
3190
|
+
# grant.
|
3191
|
+
# @return [String]
|
3192
|
+
#
|
3193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/Options AWS API Documentation
|
3194
|
+
#
|
3195
|
+
class Options < Struct.new(
|
3196
|
+
:activation_override_behavior)
|
3197
|
+
SENSITIVE = []
|
3198
|
+
include Aws::Structure
|
3199
|
+
end
|
3200
|
+
|
3201
|
+
# Configuration information for Organizations.
|
3805
3202
|
#
|
3806
3203
|
# @!attribute [rw] enable_integration
|
3807
3204
|
# Enables Organizations integration.
|
@@ -3817,20 +3214,6 @@ module Aws::LicenseManager
|
|
3817
3214
|
|
3818
3215
|
# Describes product information for a license configuration.
|
3819
3216
|
#
|
3820
|
-
# @note When making an API call, you may pass ProductInformation
|
3821
|
-
# data as a hash:
|
3822
|
-
#
|
3823
|
-
# {
|
3824
|
-
# resource_type: "String", # required
|
3825
|
-
# product_information_filter_list: [ # required
|
3826
|
-
# {
|
3827
|
-
# product_information_filter_name: "String", # required
|
3828
|
-
# product_information_filter_value: ["String"],
|
3829
|
-
# product_information_filter_comparator: "String", # required
|
3830
|
-
# },
|
3831
|
-
# ],
|
3832
|
-
# }
|
3833
|
-
#
|
3834
3217
|
# @!attribute [rw] resource_type
|
3835
3218
|
# Resource type. The possible values are `SSM_MANAGED` \| `RDS`.
|
3836
3219
|
# @return [String]
|
@@ -3847,7 +3230,7 @@ module Aws::LicenseManager
|
|
3847
3230
|
# `ProductInformationFilterComparator`.
|
3848
3231
|
#
|
3849
3232
|
# The following filters and are supported when the resource type is
|
3850
|
-
# `SSM_MANAGED
|
3233
|
+
# `SSM_MANAGED`:
|
3851
3234
|
#
|
3852
3235
|
# * `Application Name` - The name of the application. Logical operator
|
3853
3236
|
# is `EQUALS`.
|
@@ -3880,7 +3263,7 @@ module Aws::LicenseManager
|
|
3880
3263
|
# `sql-server-web` \| `windows-server-datacenter`.
|
3881
3264
|
#
|
3882
3265
|
# The following filters and logical operators are supported when the
|
3883
|
-
# resource type is `RDS
|
3266
|
+
# resource type is `RDS`:
|
3884
3267
|
#
|
3885
3268
|
# * `Engine Edition` - The edition of the database engine. Logical
|
3886
3269
|
# operator is `EQUALS`. Possible values are: `oracle-ee` \|
|
@@ -3902,15 +3285,6 @@ module Aws::LicenseManager
|
|
3902
3285
|
|
3903
3286
|
# Describes product information filters.
|
3904
3287
|
#
|
3905
|
-
# @note When making an API call, you may pass ProductInformationFilter
|
3906
|
-
# data as a hash:
|
3907
|
-
#
|
3908
|
-
# {
|
3909
|
-
# product_information_filter_name: "String", # required
|
3910
|
-
# product_information_filter_value: ["String"],
|
3911
|
-
# product_information_filter_comparator: "String", # required
|
3912
|
-
# }
|
3913
|
-
#
|
3914
3288
|
# @!attribute [rw] product_information_filter_name
|
3915
3289
|
# Filter name.
|
3916
3290
|
# @return [String]
|
@@ -3935,13 +3309,6 @@ module Aws::LicenseManager
|
|
3935
3309
|
|
3936
3310
|
# Details about a provisional configuration.
|
3937
3311
|
#
|
3938
|
-
# @note When making an API call, you may pass ProvisionalConfiguration
|
3939
|
-
# data as a hash:
|
3940
|
-
#
|
3941
|
-
# {
|
3942
|
-
# max_time_to_live_in_minutes: 1, # required
|
3943
|
-
# }
|
3944
|
-
#
|
3945
3312
|
# @!attribute [rw] max_time_to_live_in_minutes
|
3946
3313
|
# Maximum time for the provisional configuration, in minutes.
|
3947
3314
|
# @return [Integer]
|
@@ -4008,13 +3375,6 @@ module Aws::LicenseManager
|
|
4008
3375
|
include Aws::Structure
|
4009
3376
|
end
|
4010
3377
|
|
4011
|
-
# @note When making an API call, you may pass RejectGrantRequest
|
4012
|
-
# data as a hash:
|
4013
|
-
#
|
4014
|
-
# {
|
4015
|
-
# grant_arn: "Arn", # required
|
4016
|
-
# }
|
4017
|
-
#
|
4018
3378
|
# @!attribute [rw] grant_arn
|
4019
3379
|
# Amazon Resource Name (ARN) of the grant.
|
4020
3380
|
# @return [String]
|
@@ -4051,13 +3411,6 @@ module Aws::LicenseManager
|
|
4051
3411
|
|
4052
3412
|
# Details of the license configuration that this generator reports on.
|
4053
3413
|
#
|
4054
|
-
# @note When making an API call, you may pass ReportContext
|
4055
|
-
# data as a hash:
|
4056
|
-
#
|
4057
|
-
# {
|
4058
|
-
# license_configuration_arns: ["Arn"], # required
|
4059
|
-
# }
|
4060
|
-
#
|
4061
3414
|
# @!attribute [rw] license_configuration_arns
|
4062
3415
|
# Amazon Resource Name (ARN) of the license configuration that this
|
4063
3416
|
# generator reports on.
|
@@ -4073,14 +3426,6 @@ module Aws::LicenseManager
|
|
4073
3426
|
|
4074
3427
|
# Details about how frequently reports are generated.
|
4075
3428
|
#
|
4076
|
-
# @note When making an API call, you may pass ReportFrequency
|
4077
|
-
# data as a hash:
|
4078
|
-
#
|
4079
|
-
# {
|
4080
|
-
# value: 1,
|
4081
|
-
# period: "DAY", # accepts DAY, WEEK, MONTH
|
4082
|
-
# }
|
4083
|
-
#
|
4084
3429
|
# @!attribute [rw] value
|
4085
3430
|
# Number of times within the frequency period that a report is
|
4086
3431
|
# generated. The only supported value is `1`.
|
@@ -4276,14 +3621,6 @@ module Aws::LicenseManager
|
|
4276
3621
|
|
4277
3622
|
# Details about a tag for a license configuration.
|
4278
3623
|
#
|
4279
|
-
# @note When making an API call, you may pass Tag
|
4280
|
-
# data as a hash:
|
4281
|
-
#
|
4282
|
-
# {
|
4283
|
-
# key: "String",
|
4284
|
-
# value: "String",
|
4285
|
-
# }
|
4286
|
-
#
|
4287
3624
|
# @!attribute [rw] key
|
4288
3625
|
# Tag key.
|
4289
3626
|
# @return [String]
|
@@ -4301,19 +3638,6 @@ module Aws::LicenseManager
|
|
4301
3638
|
include Aws::Structure
|
4302
3639
|
end
|
4303
3640
|
|
4304
|
-
# @note When making an API call, you may pass TagResourceRequest
|
4305
|
-
# data as a hash:
|
4306
|
-
#
|
4307
|
-
# {
|
4308
|
-
# resource_arn: "String", # required
|
4309
|
-
# tags: [ # required
|
4310
|
-
# {
|
4311
|
-
# key: "String",
|
4312
|
-
# value: "String",
|
4313
|
-
# },
|
4314
|
-
# ],
|
4315
|
-
# }
|
4316
|
-
#
|
4317
3641
|
# @!attribute [rw] resource_arn
|
4318
3642
|
# Amazon Resource Name (ARN) of the license configuration.
|
4319
3643
|
# @return [String]
|
@@ -4392,14 +3716,6 @@ module Aws::LicenseManager
|
|
4392
3716
|
include Aws::Structure
|
4393
3717
|
end
|
4394
3718
|
|
4395
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
4396
|
-
# data as a hash:
|
4397
|
-
#
|
4398
|
-
# {
|
4399
|
-
# resource_arn: "String", # required
|
4400
|
-
# tag_keys: ["String"], # required
|
4401
|
-
# }
|
4402
|
-
#
|
4403
3719
|
# @!attribute [rw] resource_arn
|
4404
3720
|
# Amazon Resource Name (ARN) of the license configuration.
|
4405
3721
|
# @return [String]
|
@@ -4421,32 +3737,6 @@ module Aws::LicenseManager
|
|
4421
3737
|
#
|
4422
3738
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
4423
3739
|
|
4424
|
-
# @note When making an API call, you may pass UpdateLicenseConfigurationRequest
|
4425
|
-
# data as a hash:
|
4426
|
-
#
|
4427
|
-
# {
|
4428
|
-
# license_configuration_arn: "String", # required
|
4429
|
-
# license_configuration_status: "AVAILABLE", # accepts AVAILABLE, DISABLED
|
4430
|
-
# license_rules: ["String"],
|
4431
|
-
# license_count: 1,
|
4432
|
-
# license_count_hard_limit: false,
|
4433
|
-
# name: "String",
|
4434
|
-
# description: "String",
|
4435
|
-
# product_information_list: [
|
4436
|
-
# {
|
4437
|
-
# resource_type: "String", # required
|
4438
|
-
# product_information_filter_list: [ # required
|
4439
|
-
# {
|
4440
|
-
# product_information_filter_name: "String", # required
|
4441
|
-
# product_information_filter_value: ["String"],
|
4442
|
-
# product_information_filter_comparator: "String", # required
|
4443
|
-
# },
|
4444
|
-
# ],
|
4445
|
-
# },
|
4446
|
-
# ],
|
4447
|
-
# disassociate_when_not_found: false,
|
4448
|
-
# }
|
4449
|
-
#
|
4450
3740
|
# @!attribute [rw] license_configuration_arn
|
4451
3741
|
# Amazon Resource Name (ARN) of the license configuration.
|
4452
3742
|
# @return [String]
|
@@ -4504,24 +3794,6 @@ module Aws::LicenseManager
|
|
4504
3794
|
#
|
4505
3795
|
class UpdateLicenseConfigurationResponse < Aws::EmptyStructure; end
|
4506
3796
|
|
4507
|
-
# @note When making an API call, you may pass UpdateLicenseManagerReportGeneratorRequest
|
4508
|
-
# data as a hash:
|
4509
|
-
#
|
4510
|
-
# {
|
4511
|
-
# license_manager_report_generator_arn: "String", # required
|
4512
|
-
# report_generator_name: "ReportGeneratorName", # required
|
4513
|
-
# type: ["LicenseConfigurationSummaryReport"], # required, accepts LicenseConfigurationSummaryReport, LicenseConfigurationUsageReport
|
4514
|
-
# report_context: { # required
|
4515
|
-
# license_configuration_arns: ["Arn"], # required
|
4516
|
-
# },
|
4517
|
-
# report_frequency: { # required
|
4518
|
-
# value: 1,
|
4519
|
-
# period: "DAY", # accepts DAY, WEEK, MONTH
|
4520
|
-
# },
|
4521
|
-
# client_token: "ClientRequestToken", # required
|
4522
|
-
# description: "String",
|
4523
|
-
# }
|
4524
|
-
#
|
4525
3797
|
# @!attribute [rw] license_manager_report_generator_arn
|
4526
3798
|
# Amazon Resource Name (ARN) of the report generator to update.
|
4527
3799
|
# @return [String]
|
@@ -4576,25 +3848,6 @@ module Aws::LicenseManager
|
|
4576
3848
|
#
|
4577
3849
|
class UpdateLicenseManagerReportGeneratorResponse < Aws::EmptyStructure; end
|
4578
3850
|
|
4579
|
-
# @note When making an API call, you may pass UpdateLicenseSpecificationsForResourceRequest
|
4580
|
-
# data as a hash:
|
4581
|
-
#
|
4582
|
-
# {
|
4583
|
-
# resource_arn: "String", # required
|
4584
|
-
# add_license_specifications: [
|
4585
|
-
# {
|
4586
|
-
# license_configuration_arn: "String", # required
|
4587
|
-
# ami_association_scope: "String",
|
4588
|
-
# },
|
4589
|
-
# ],
|
4590
|
-
# remove_license_specifications: [
|
4591
|
-
# {
|
4592
|
-
# license_configuration_arn: "String", # required
|
4593
|
-
# ami_association_scope: "String",
|
4594
|
-
# },
|
4595
|
-
# ],
|
4596
|
-
# }
|
4597
|
-
#
|
4598
3851
|
# @!attribute [rw] resource_arn
|
4599
3852
|
# Amazon Resource Name (ARN) of the Amazon Web Services resource.
|
4600
3853
|
# @return [String]
|
@@ -4621,18 +3874,6 @@ module Aws::LicenseManager
|
|
4621
3874
|
#
|
4622
3875
|
class UpdateLicenseSpecificationsForResourceResponse < Aws::EmptyStructure; end
|
4623
3876
|
|
4624
|
-
# @note When making an API call, you may pass UpdateServiceSettingsRequest
|
4625
|
-
# data as a hash:
|
4626
|
-
#
|
4627
|
-
# {
|
4628
|
-
# s3_bucket_arn: "String",
|
4629
|
-
# sns_topic_arn: "String",
|
4630
|
-
# organization_configuration: {
|
4631
|
-
# enable_integration: false, # required
|
4632
|
-
# },
|
4633
|
-
# enable_cross_accounts_discovery: false,
|
4634
|
-
# }
|
4635
|
-
#
|
4636
3877
|
# @!attribute [rw] s3_bucket_arn
|
4637
3878
|
# Amazon Resource Name (ARN) of the Amazon S3 bucket where the License
|
4638
3879
|
# Manager information is stored.
|