aws-sdk-licensemanager 1.41.0 → 1.43.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 +153 -4
- data/lib/aws-sdk-licensemanager/client_api.rb +53 -0
- data/lib/aws-sdk-licensemanager/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-licensemanager/endpoints.rb +28 -0
- data/lib/aws-sdk-licensemanager/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-licensemanager/types.rb +93 -804
- 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,7 +377,8 @@ module Aws::LicenseManager
|
|
468
377
|
# @return [String]
|
469
378
|
#
|
470
379
|
# @!attribute [rw] principals
|
471
|
-
# The grant principals.
|
380
|
+
# The grant principals. This value should be specified as an Amazon
|
381
|
+
# Resource Name (ARN).
|
472
382
|
# @return [Array<String>]
|
473
383
|
#
|
474
384
|
# @!attribute [rw] home_region
|
@@ -514,19 +424,6 @@ module Aws::LicenseManager
|
|
514
424
|
include Aws::Structure
|
515
425
|
end
|
516
426
|
|
517
|
-
# @note When making an API call, you may pass CreateGrantVersionRequest
|
518
|
-
# data as a hash:
|
519
|
-
#
|
520
|
-
# {
|
521
|
-
# client_token: "ClientToken", # required
|
522
|
-
# grant_arn: "Arn", # required
|
523
|
-
# grant_name: "String",
|
524
|
-
# allowed_operations: ["CreateGrant"], # accepts CreateGrant, CheckoutLicense, CheckoutBorrowLicense, CheckInLicense, ExtendConsumptionLicense, ListPurchasedLicenses, CreateToken
|
525
|
-
# status: "PENDING_WORKFLOW", # accepts PENDING_WORKFLOW, PENDING_ACCEPT, REJECTED, ACTIVE, FAILED_WORKFLOW, DELETED, PENDING_DELETE, DISABLED, WORKFLOW_COMPLETED
|
526
|
-
# status_reason: "StatusReasonMessage",
|
527
|
-
# source_version: "String",
|
528
|
-
# }
|
529
|
-
#
|
530
427
|
# @!attribute [rw] client_token
|
531
428
|
# Unique, case-sensitive identifier that you provide to ensure the
|
532
429
|
# idempotency of the request.
|
@@ -592,37 +489,6 @@ module Aws::LicenseManager
|
|
592
489
|
include Aws::Structure
|
593
490
|
end
|
594
491
|
|
595
|
-
# @note When making an API call, you may pass CreateLicenseConfigurationRequest
|
596
|
-
# data as a hash:
|
597
|
-
#
|
598
|
-
# {
|
599
|
-
# name: "String", # required
|
600
|
-
# description: "String",
|
601
|
-
# license_counting_type: "vCPU", # required, accepts vCPU, Instance, Core, Socket
|
602
|
-
# license_count: 1,
|
603
|
-
# license_count_hard_limit: false,
|
604
|
-
# license_rules: ["String"],
|
605
|
-
# tags: [
|
606
|
-
# {
|
607
|
-
# key: "String",
|
608
|
-
# value: "String",
|
609
|
-
# },
|
610
|
-
# ],
|
611
|
-
# disassociate_when_not_found: false,
|
612
|
-
# product_information_list: [
|
613
|
-
# {
|
614
|
-
# resource_type: "String", # required
|
615
|
-
# product_information_filter_list: [ # required
|
616
|
-
# {
|
617
|
-
# product_information_filter_name: "String", # required
|
618
|
-
# product_information_filter_value: ["String"],
|
619
|
-
# product_information_filter_comparator: "String", # required
|
620
|
-
# },
|
621
|
-
# ],
|
622
|
-
# },
|
623
|
-
# ],
|
624
|
-
# }
|
625
|
-
#
|
626
492
|
# @!attribute [rw] name
|
627
493
|
# Name of the license configuration.
|
628
494
|
# @return [String]
|
@@ -708,19 +574,6 @@ module Aws::LicenseManager
|
|
708
574
|
include Aws::Structure
|
709
575
|
end
|
710
576
|
|
711
|
-
# @note When making an API call, you may pass CreateLicenseConversionTaskForResourceRequest
|
712
|
-
# data as a hash:
|
713
|
-
#
|
714
|
-
# {
|
715
|
-
# resource_arn: "Arn", # required
|
716
|
-
# source_license_context: { # required
|
717
|
-
# usage_operation: "UsageOperation",
|
718
|
-
# },
|
719
|
-
# destination_license_context: { # required
|
720
|
-
# usage_operation: "UsageOperation",
|
721
|
-
# },
|
722
|
-
# }
|
723
|
-
#
|
724
577
|
# @!attribute [rw] resource_arn
|
725
578
|
# Amazon Resource Name (ARN) of the resource you are converting the
|
726
579
|
# license type for.
|
@@ -729,8 +582,8 @@ module Aws::LicenseManager
|
|
729
582
|
# @!attribute [rw] source_license_context
|
730
583
|
# Information that identifies the license type you are converting
|
731
584
|
# from. For the structure of the source license, see [Convert a
|
732
|
-
# license type using the
|
733
|
-
# Guide*.
|
585
|
+
# license type using the Amazon Web Services CLI][1] in the *License
|
586
|
+
# Manager User Guide*.
|
734
587
|
#
|
735
588
|
#
|
736
589
|
#
|
@@ -740,7 +593,8 @@ module Aws::LicenseManager
|
|
740
593
|
# @!attribute [rw] destination_license_context
|
741
594
|
# Information that identifies the license type you are converting to.
|
742
595
|
# For the structure of the destination license, see [Convert a license
|
743
|
-
# type using the
|
596
|
+
# type using the Amazon Web Services CLI][1] in the *License Manager
|
597
|
+
# User Guide*.
|
744
598
|
#
|
745
599
|
#
|
746
600
|
#
|
@@ -769,29 +623,6 @@ module Aws::LicenseManager
|
|
769
623
|
include Aws::Structure
|
770
624
|
end
|
771
625
|
|
772
|
-
# @note When making an API call, you may pass CreateLicenseManagerReportGeneratorRequest
|
773
|
-
# data as a hash:
|
774
|
-
#
|
775
|
-
# {
|
776
|
-
# report_generator_name: "ReportGeneratorName", # required
|
777
|
-
# type: ["LicenseConfigurationSummaryReport"], # required, accepts LicenseConfigurationSummaryReport, LicenseConfigurationUsageReport
|
778
|
-
# report_context: { # required
|
779
|
-
# license_configuration_arns: ["Arn"], # required
|
780
|
-
# },
|
781
|
-
# report_frequency: { # required
|
782
|
-
# value: 1,
|
783
|
-
# period: "DAY", # accepts DAY, WEEK, MONTH
|
784
|
-
# },
|
785
|
-
# client_token: "ClientRequestToken", # required
|
786
|
-
# description: "String",
|
787
|
-
# tags: [
|
788
|
-
# {
|
789
|
-
# key: "String",
|
790
|
-
# value: "String",
|
791
|
-
# },
|
792
|
-
# ],
|
793
|
-
# }
|
794
|
-
#
|
795
626
|
# @!attribute [rw] report_generator_name
|
796
627
|
# Name of the report generator.
|
797
628
|
# @return [String]
|
@@ -856,52 +687,6 @@ module Aws::LicenseManager
|
|
856
687
|
include Aws::Structure
|
857
688
|
end
|
858
689
|
|
859
|
-
# @note When making an API call, you may pass CreateLicenseRequest
|
860
|
-
# data as a hash:
|
861
|
-
#
|
862
|
-
# {
|
863
|
-
# license_name: "String", # required
|
864
|
-
# product_name: "String", # required
|
865
|
-
# product_sku: "String", # required
|
866
|
-
# issuer: { # required
|
867
|
-
# name: "String", # required
|
868
|
-
# sign_key: "String",
|
869
|
-
# },
|
870
|
-
# home_region: "String", # required
|
871
|
-
# validity: { # required
|
872
|
-
# begin: "ISO8601DateTime", # required
|
873
|
-
# end: "ISO8601DateTime",
|
874
|
-
# },
|
875
|
-
# entitlements: [ # required
|
876
|
-
# {
|
877
|
-
# name: "String", # required
|
878
|
-
# value: "String",
|
879
|
-
# max_count: 1,
|
880
|
-
# overage: false,
|
881
|
-
# 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
|
882
|
-
# allow_check_in: false,
|
883
|
-
# },
|
884
|
-
# ],
|
885
|
-
# beneficiary: "String", # required
|
886
|
-
# consumption_configuration: { # required
|
887
|
-
# renew_type: "None", # accepts None, Weekly, Monthly
|
888
|
-
# provisional_configuration: {
|
889
|
-
# max_time_to_live_in_minutes: 1, # required
|
890
|
-
# },
|
891
|
-
# borrow_configuration: {
|
892
|
-
# allow_early_check_in: false, # required
|
893
|
-
# max_time_to_live_in_minutes: 1, # required
|
894
|
-
# },
|
895
|
-
# },
|
896
|
-
# license_metadata: [
|
897
|
-
# {
|
898
|
-
# name: "String",
|
899
|
-
# value: "String",
|
900
|
-
# },
|
901
|
-
# ],
|
902
|
-
# client_token: "ClientToken", # required
|
903
|
-
# }
|
904
|
-
#
|
905
690
|
# @!attribute [rw] license_name
|
906
691
|
# License name.
|
907
692
|
# @return [String]
|
@@ -990,53 +775,6 @@ module Aws::LicenseManager
|
|
990
775
|
include Aws::Structure
|
991
776
|
end
|
992
777
|
|
993
|
-
# @note When making an API call, you may pass CreateLicenseVersionRequest
|
994
|
-
# data as a hash:
|
995
|
-
#
|
996
|
-
# {
|
997
|
-
# license_arn: "Arn", # required
|
998
|
-
# license_name: "String", # required
|
999
|
-
# product_name: "String", # required
|
1000
|
-
# issuer: { # required
|
1001
|
-
# name: "String", # required
|
1002
|
-
# sign_key: "String",
|
1003
|
-
# },
|
1004
|
-
# home_region: "String", # required
|
1005
|
-
# validity: { # required
|
1006
|
-
# begin: "ISO8601DateTime", # required
|
1007
|
-
# end: "ISO8601DateTime",
|
1008
|
-
# },
|
1009
|
-
# license_metadata: [
|
1010
|
-
# {
|
1011
|
-
# name: "String",
|
1012
|
-
# value: "String",
|
1013
|
-
# },
|
1014
|
-
# ],
|
1015
|
-
# entitlements: [ # required
|
1016
|
-
# {
|
1017
|
-
# name: "String", # required
|
1018
|
-
# value: "String",
|
1019
|
-
# max_count: 1,
|
1020
|
-
# overage: false,
|
1021
|
-
# 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
|
1022
|
-
# allow_check_in: false,
|
1023
|
-
# },
|
1024
|
-
# ],
|
1025
|
-
# consumption_configuration: { # required
|
1026
|
-
# renew_type: "None", # accepts None, Weekly, Monthly
|
1027
|
-
# provisional_configuration: {
|
1028
|
-
# max_time_to_live_in_minutes: 1, # required
|
1029
|
-
# },
|
1030
|
-
# borrow_configuration: {
|
1031
|
-
# allow_early_check_in: false, # required
|
1032
|
-
# max_time_to_live_in_minutes: 1, # required
|
1033
|
-
# },
|
1034
|
-
# },
|
1035
|
-
# status: "AVAILABLE", # required, accepts AVAILABLE, PENDING_AVAILABLE, DEACTIVATED, SUSPENDED, EXPIRED, PENDING_DELETE, DELETED
|
1036
|
-
# client_token: "ClientToken", # required
|
1037
|
-
# source_version: "String",
|
1038
|
-
# }
|
1039
|
-
#
|
1040
778
|
# @!attribute [rw] license_arn
|
1041
779
|
# Amazon Resource Name (ARN) of the license.
|
1042
780
|
# @return [String]
|
@@ -1130,17 +868,6 @@ module Aws::LicenseManager
|
|
1130
868
|
include Aws::Structure
|
1131
869
|
end
|
1132
870
|
|
1133
|
-
# @note When making an API call, you may pass CreateTokenRequest
|
1134
|
-
# data as a hash:
|
1135
|
-
#
|
1136
|
-
# {
|
1137
|
-
# license_arn: "Arn", # required
|
1138
|
-
# role_arns: ["Arn"],
|
1139
|
-
# expiration_in_days: 1,
|
1140
|
-
# token_properties: ["String"],
|
1141
|
-
# client_token: "ClientToken", # required
|
1142
|
-
# }
|
1143
|
-
#
|
1144
871
|
# @!attribute [rw] license_arn
|
1145
872
|
# Amazon Resource Name (ARN) of the license. The ARN is mapped to the
|
1146
873
|
# aud claim of the JWT token.
|
@@ -1201,14 +928,6 @@ module Aws::LicenseManager
|
|
1201
928
|
|
1202
929
|
# Describes a time range, in ISO8601-UTC format.
|
1203
930
|
#
|
1204
|
-
# @note When making an API call, you may pass DatetimeRange
|
1205
|
-
# data as a hash:
|
1206
|
-
#
|
1207
|
-
# {
|
1208
|
-
# begin: "ISO8601DateTime", # required
|
1209
|
-
# end: "ISO8601DateTime",
|
1210
|
-
# }
|
1211
|
-
#
|
1212
931
|
# @!attribute [rw] begin
|
1213
932
|
# Start of the time range.
|
1214
933
|
# @return [String]
|
@@ -1226,15 +945,6 @@ module Aws::LicenseManager
|
|
1226
945
|
include Aws::Structure
|
1227
946
|
end
|
1228
947
|
|
1229
|
-
# @note When making an API call, you may pass DeleteGrantRequest
|
1230
|
-
# data as a hash:
|
1231
|
-
#
|
1232
|
-
# {
|
1233
|
-
# grant_arn: "Arn", # required
|
1234
|
-
# status_reason: "StatusReasonMessage",
|
1235
|
-
# version: "String", # required
|
1236
|
-
# }
|
1237
|
-
#
|
1238
948
|
# @!attribute [rw] grant_arn
|
1239
949
|
# Amazon Resource Name (ARN) of the grant.
|
1240
950
|
# @return [String]
|
@@ -1279,13 +989,6 @@ module Aws::LicenseManager
|
|
1279
989
|
include Aws::Structure
|
1280
990
|
end
|
1281
991
|
|
1282
|
-
# @note When making an API call, you may pass DeleteLicenseConfigurationRequest
|
1283
|
-
# data as a hash:
|
1284
|
-
#
|
1285
|
-
# {
|
1286
|
-
# license_configuration_arn: "String", # required
|
1287
|
-
# }
|
1288
|
-
#
|
1289
992
|
# @!attribute [rw] license_configuration_arn
|
1290
993
|
# ID of the license configuration.
|
1291
994
|
# @return [String]
|
@@ -1302,13 +1005,6 @@ module Aws::LicenseManager
|
|
1302
1005
|
#
|
1303
1006
|
class DeleteLicenseConfigurationResponse < Aws::EmptyStructure; end
|
1304
1007
|
|
1305
|
-
# @note When making an API call, you may pass DeleteLicenseManagerReportGeneratorRequest
|
1306
|
-
# data as a hash:
|
1307
|
-
#
|
1308
|
-
# {
|
1309
|
-
# license_manager_report_generator_arn: "String", # required
|
1310
|
-
# }
|
1311
|
-
#
|
1312
1008
|
# @!attribute [rw] license_manager_report_generator_arn
|
1313
1009
|
# Amazon Resource Name (ARN) of the report generator to be deleted.
|
1314
1010
|
# @return [String]
|
@@ -1325,14 +1021,6 @@ module Aws::LicenseManager
|
|
1325
1021
|
#
|
1326
1022
|
class DeleteLicenseManagerReportGeneratorResponse < Aws::EmptyStructure; end
|
1327
1023
|
|
1328
|
-
# @note When making an API call, you may pass DeleteLicenseRequest
|
1329
|
-
# data as a hash:
|
1330
|
-
#
|
1331
|
-
# {
|
1332
|
-
# license_arn: "Arn", # required
|
1333
|
-
# source_version: "String", # required
|
1334
|
-
# }
|
1335
|
-
#
|
1336
1024
|
# @!attribute [rw] license_arn
|
1337
1025
|
# Amazon Resource Name (ARN) of the license.
|
1338
1026
|
# @return [String]
|
@@ -1367,13 +1055,6 @@ module Aws::LicenseManager
|
|
1367
1055
|
include Aws::Structure
|
1368
1056
|
end
|
1369
1057
|
|
1370
|
-
# @note When making an API call, you may pass DeleteTokenRequest
|
1371
|
-
# data as a hash:
|
1372
|
-
#
|
1373
|
-
# {
|
1374
|
-
# token_id: "String", # required
|
1375
|
-
# }
|
1376
|
-
#
|
1377
1058
|
# @!attribute [rw] token_id
|
1378
1059
|
# Token ID.
|
1379
1060
|
# @return [String]
|
@@ -1392,18 +1073,6 @@ module Aws::LicenseManager
|
|
1392
1073
|
|
1393
1074
|
# Describes a resource entitled for use with a license.
|
1394
1075
|
#
|
1395
|
-
# @note When making an API call, you may pass Entitlement
|
1396
|
-
# data as a hash:
|
1397
|
-
#
|
1398
|
-
# {
|
1399
|
-
# name: "String", # required
|
1400
|
-
# value: "String",
|
1401
|
-
# max_count: 1,
|
1402
|
-
# overage: false,
|
1403
|
-
# 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
|
1404
|
-
# allow_check_in: false,
|
1405
|
-
# }
|
1406
|
-
#
|
1407
1076
|
# @!attribute [rw] name
|
1408
1077
|
# Entitlement name.
|
1409
1078
|
# @return [String]
|
@@ -1443,15 +1112,6 @@ module Aws::LicenseManager
|
|
1443
1112
|
|
1444
1113
|
# Data associated with an entitlement resource.
|
1445
1114
|
#
|
1446
|
-
# @note When making an API call, you may pass EntitlementData
|
1447
|
-
# data as a hash:
|
1448
|
-
#
|
1449
|
-
# {
|
1450
|
-
# name: "String", # required
|
1451
|
-
# value: "String",
|
1452
|
-
# 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
|
1453
|
-
# }
|
1454
|
-
#
|
1455
1115
|
# @!attribute [rw] name
|
1456
1116
|
# Entitlement data name.
|
1457
1117
|
# @return [String]
|
@@ -1516,14 +1176,6 @@ module Aws::LicenseManager
|
|
1516
1176
|
include Aws::Structure
|
1517
1177
|
end
|
1518
1178
|
|
1519
|
-
# @note When making an API call, you may pass ExtendLicenseConsumptionRequest
|
1520
|
-
# data as a hash:
|
1521
|
-
#
|
1522
|
-
# {
|
1523
|
-
# license_consumption_token: "String", # required
|
1524
|
-
# dry_run: false,
|
1525
|
-
# }
|
1526
|
-
#
|
1527
1179
|
# @!attribute [rw] license_consumption_token
|
1528
1180
|
# License consumption token.
|
1529
1181
|
# @return [String]
|
@@ -1581,14 +1233,6 @@ module Aws::LicenseManager
|
|
1581
1233
|
# results from a describe operation. Filters can be used to match a set
|
1582
1234
|
# of resources by specific criteria, such as tags, attributes, or IDs.
|
1583
1235
|
#
|
1584
|
-
# @note When making an API call, you may pass Filter
|
1585
|
-
# data as a hash:
|
1586
|
-
#
|
1587
|
-
# {
|
1588
|
-
# name: "FilterName",
|
1589
|
-
# values: ["FilterValue"],
|
1590
|
-
# }
|
1591
|
-
#
|
1592
1236
|
# @!attribute [rw] name
|
1593
1237
|
# Name of the filter. Filter names are case-sensitive.
|
1594
1238
|
# @return [String]
|
@@ -1619,14 +1263,6 @@ module Aws::LicenseManager
|
|
1619
1263
|
include Aws::Structure
|
1620
1264
|
end
|
1621
1265
|
|
1622
|
-
# @note When making an API call, you may pass GetAccessTokenRequest
|
1623
|
-
# data as a hash:
|
1624
|
-
#
|
1625
|
-
# {
|
1626
|
-
# token: "TokenString", # required
|
1627
|
-
# token_properties: ["String"],
|
1628
|
-
# }
|
1629
|
-
#
|
1630
1266
|
# @!attribute [rw] token
|
1631
1267
|
# Refresh token, encoded as a JWT token.
|
1632
1268
|
# @return [String]
|
@@ -1656,14 +1292,6 @@ module Aws::LicenseManager
|
|
1656
1292
|
include Aws::Structure
|
1657
1293
|
end
|
1658
1294
|
|
1659
|
-
# @note When making an API call, you may pass GetGrantRequest
|
1660
|
-
# data as a hash:
|
1661
|
-
#
|
1662
|
-
# {
|
1663
|
-
# grant_arn: "Arn", # required
|
1664
|
-
# version: "String",
|
1665
|
-
# }
|
1666
|
-
#
|
1667
1295
|
# @!attribute [rw] grant_arn
|
1668
1296
|
# Amazon Resource Name (ARN) of the grant.
|
1669
1297
|
# @return [String]
|
@@ -1693,13 +1321,6 @@ module Aws::LicenseManager
|
|
1693
1321
|
include Aws::Structure
|
1694
1322
|
end
|
1695
1323
|
|
1696
|
-
# @note When making an API call, you may pass GetLicenseConfigurationRequest
|
1697
|
-
# data as a hash:
|
1698
|
-
#
|
1699
|
-
# {
|
1700
|
-
# license_configuration_arn: "String", # required
|
1701
|
-
# }
|
1702
|
-
#
|
1703
1324
|
# @!attribute [rw] license_configuration_arn
|
1704
1325
|
# Amazon Resource Name (ARN) of the license configuration.
|
1705
1326
|
# @return [String]
|
@@ -1804,13 +1425,6 @@ module Aws::LicenseManager
|
|
1804
1425
|
include Aws::Structure
|
1805
1426
|
end
|
1806
1427
|
|
1807
|
-
# @note When making an API call, you may pass GetLicenseConversionTaskRequest
|
1808
|
-
# data as a hash:
|
1809
|
-
#
|
1810
|
-
# {
|
1811
|
-
# license_conversion_task_id: "LicenseConversionTaskId", # required
|
1812
|
-
# }
|
1813
|
-
#
|
1814
1428
|
# @!attribute [rw] license_conversion_task_id
|
1815
1429
|
# ID of the license type conversion task to retrieve information on.
|
1816
1430
|
# @return [String]
|
@@ -1876,13 +1490,6 @@ module Aws::LicenseManager
|
|
1876
1490
|
include Aws::Structure
|
1877
1491
|
end
|
1878
1492
|
|
1879
|
-
# @note When making an API call, you may pass GetLicenseManagerReportGeneratorRequest
|
1880
|
-
# data as a hash:
|
1881
|
-
#
|
1882
|
-
# {
|
1883
|
-
# license_manager_report_generator_arn: "String", # required
|
1884
|
-
# }
|
1885
|
-
#
|
1886
1493
|
# @!attribute [rw] license_manager_report_generator_arn
|
1887
1494
|
# Amazon Resource Name (ARN) of the report generator.
|
1888
1495
|
# @return [String]
|
@@ -1908,14 +1515,6 @@ module Aws::LicenseManager
|
|
1908
1515
|
include Aws::Structure
|
1909
1516
|
end
|
1910
1517
|
|
1911
|
-
# @note When making an API call, you may pass GetLicenseRequest
|
1912
|
-
# data as a hash:
|
1913
|
-
#
|
1914
|
-
# {
|
1915
|
-
# license_arn: "Arn", # required
|
1916
|
-
# version: "String",
|
1917
|
-
# }
|
1918
|
-
#
|
1919
1518
|
# @!attribute [rw] license_arn
|
1920
1519
|
# Amazon Resource Name (ARN) of the license.
|
1921
1520
|
# @return [String]
|
@@ -1945,13 +1544,6 @@ module Aws::LicenseManager
|
|
1945
1544
|
include Aws::Structure
|
1946
1545
|
end
|
1947
1546
|
|
1948
|
-
# @note When making an API call, you may pass GetLicenseUsageRequest
|
1949
|
-
# data as a hash:
|
1950
|
-
#
|
1951
|
-
# {
|
1952
|
-
# license_arn: "Arn", # required
|
1953
|
-
# }
|
1954
|
-
#
|
1955
1547
|
# @!attribute [rw] license_arn
|
1956
1548
|
# Amazon Resource Name (ARN) of the license.
|
1957
1549
|
# @return [String]
|
@@ -2194,15 +1786,6 @@ module Aws::LicenseManager
|
|
2194
1786
|
|
2195
1787
|
# An inventory filter.
|
2196
1788
|
#
|
2197
|
-
# @note When making an API call, you may pass InventoryFilter
|
2198
|
-
# data as a hash:
|
2199
|
-
#
|
2200
|
-
# {
|
2201
|
-
# name: "String", # required
|
2202
|
-
# condition: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, BEGINS_WITH, CONTAINS
|
2203
|
-
# value: "String",
|
2204
|
-
# }
|
2205
|
-
#
|
2206
1789
|
# @!attribute [rw] name
|
2207
1790
|
# Name of the filter.
|
2208
1791
|
# @return [String]
|
@@ -2227,14 +1810,6 @@ module Aws::LicenseManager
|
|
2227
1810
|
|
2228
1811
|
# Details about the issuer of a license.
|
2229
1812
|
#
|
2230
|
-
# @note When making an API call, you may pass Issuer
|
2231
|
-
# data as a hash:
|
2232
|
-
#
|
2233
|
-
# {
|
2234
|
-
# name: "String", # required
|
2235
|
-
# sign_key: "String",
|
2236
|
-
# }
|
2237
|
-
#
|
2238
1813
|
# @!attribute [rw] name
|
2239
1814
|
# Issuer name.
|
2240
1815
|
# @return [String]
|
@@ -2534,13 +2109,6 @@ module Aws::LicenseManager
|
|
2534
2109
|
|
2535
2110
|
# Information about a license type conversion task.
|
2536
2111
|
#
|
2537
|
-
# @note When making an API call, you may pass LicenseConversionContext
|
2538
|
-
# data as a hash:
|
2539
|
-
#
|
2540
|
-
# {
|
2541
|
-
# usage_operation: "UsageOperation",
|
2542
|
-
# }
|
2543
|
-
#
|
2544
2112
|
# @!attribute [rw] usage_operation
|
2545
2113
|
# The Usage operation value that corresponds to the license type you
|
2546
2114
|
# are converting your resource from. For more information about which
|
@@ -2668,14 +2236,6 @@ module Aws::LicenseManager
|
|
2668
2236
|
|
2669
2237
|
# Details for associating a license configuration with a resource.
|
2670
2238
|
#
|
2671
|
-
# @note When making an API call, you may pass LicenseSpecification
|
2672
|
-
# data as a hash:
|
2673
|
-
#
|
2674
|
-
# {
|
2675
|
-
# license_configuration_arn: "String", # required
|
2676
|
-
# ami_association_scope: "String",
|
2677
|
-
# }
|
2678
|
-
#
|
2679
2239
|
# @!attribute [rw] license_configuration_arn
|
2680
2240
|
# Amazon Resource Name (ARN) of the license configuration.
|
2681
2241
|
# @return [String]
|
@@ -2721,15 +2281,6 @@ module Aws::LicenseManager
|
|
2721
2281
|
include Aws::Structure
|
2722
2282
|
end
|
2723
2283
|
|
2724
|
-
# @note When making an API call, you may pass ListAssociationsForLicenseConfigurationRequest
|
2725
|
-
# data as a hash:
|
2726
|
-
#
|
2727
|
-
# {
|
2728
|
-
# license_configuration_arn: "String", # required
|
2729
|
-
# max_results: 1,
|
2730
|
-
# next_token: "String",
|
2731
|
-
# }
|
2732
|
-
#
|
2733
2284
|
# @!attribute [rw] license_configuration_arn
|
2734
2285
|
# Amazon Resource Name (ARN) of a license configuration.
|
2735
2286
|
# @return [String]
|
@@ -2769,21 +2320,6 @@ module Aws::LicenseManager
|
|
2769
2320
|
include Aws::Structure
|
2770
2321
|
end
|
2771
2322
|
|
2772
|
-
# @note When making an API call, you may pass ListDistributedGrantsRequest
|
2773
|
-
# data as a hash:
|
2774
|
-
#
|
2775
|
-
# {
|
2776
|
-
# grant_arns: ["Arn"],
|
2777
|
-
# filters: [
|
2778
|
-
# {
|
2779
|
-
# name: "FilterName",
|
2780
|
-
# values: ["FilterValue"],
|
2781
|
-
# },
|
2782
|
-
# ],
|
2783
|
-
# next_token: "String",
|
2784
|
-
# max_results: 1,
|
2785
|
-
# }
|
2786
|
-
#
|
2787
2323
|
# @!attribute [rw] grant_arns
|
2788
2324
|
# Amazon Resource Names (ARNs) of the grants.
|
2789
2325
|
# @return [Array<String>]
|
@@ -2838,15 +2374,6 @@ module Aws::LicenseManager
|
|
2838
2374
|
include Aws::Structure
|
2839
2375
|
end
|
2840
2376
|
|
2841
|
-
# @note When making an API call, you may pass ListFailuresForLicenseConfigurationOperationsRequest
|
2842
|
-
# data as a hash:
|
2843
|
-
#
|
2844
|
-
# {
|
2845
|
-
# license_configuration_arn: "String", # required
|
2846
|
-
# max_results: 1,
|
2847
|
-
# next_token: "String",
|
2848
|
-
# }
|
2849
|
-
#
|
2850
2377
|
# @!attribute [rw] license_configuration_arn
|
2851
2378
|
# Amazon Resource Name of the license configuration.
|
2852
2379
|
# @return [String]
|
@@ -2886,21 +2413,6 @@ module Aws::LicenseManager
|
|
2886
2413
|
include Aws::Structure
|
2887
2414
|
end
|
2888
2415
|
|
2889
|
-
# @note When making an API call, you may pass ListLicenseConfigurationsRequest
|
2890
|
-
# data as a hash:
|
2891
|
-
#
|
2892
|
-
# {
|
2893
|
-
# license_configuration_arns: ["String"],
|
2894
|
-
# max_results: 1,
|
2895
|
-
# next_token: "String",
|
2896
|
-
# filters: [
|
2897
|
-
# {
|
2898
|
-
# name: "FilterName",
|
2899
|
-
# values: ["FilterValue"],
|
2900
|
-
# },
|
2901
|
-
# ],
|
2902
|
-
# }
|
2903
|
-
#
|
2904
2416
|
# @!attribute [rw] license_configuration_arns
|
2905
2417
|
# Amazon Resource Names (ARN) of the license configurations.
|
2906
2418
|
# @return [Array<String>]
|
@@ -2958,20 +2470,6 @@ module Aws::LicenseManager
|
|
2958
2470
|
include Aws::Structure
|
2959
2471
|
end
|
2960
2472
|
|
2961
|
-
# @note When making an API call, you may pass ListLicenseConversionTasksRequest
|
2962
|
-
# data as a hash:
|
2963
|
-
#
|
2964
|
-
# {
|
2965
|
-
# next_token: "String",
|
2966
|
-
# max_results: 1,
|
2967
|
-
# filters: [
|
2968
|
-
# {
|
2969
|
-
# name: "FilterName",
|
2970
|
-
# values: ["FilterValue"],
|
2971
|
-
# },
|
2972
|
-
# ],
|
2973
|
-
# }
|
2974
|
-
#
|
2975
2473
|
# @!attribute [rw] next_token
|
2976
2474
|
# Token for the next set of results.
|
2977
2475
|
# @return [String]
|
@@ -3012,20 +2510,6 @@ module Aws::LicenseManager
|
|
3012
2510
|
include Aws::Structure
|
3013
2511
|
end
|
3014
2512
|
|
3015
|
-
# @note When making an API call, you may pass ListLicenseManagerReportGeneratorsRequest
|
3016
|
-
# data as a hash:
|
3017
|
-
#
|
3018
|
-
# {
|
3019
|
-
# filters: [
|
3020
|
-
# {
|
3021
|
-
# name: "FilterName",
|
3022
|
-
# values: ["FilterValue"],
|
3023
|
-
# },
|
3024
|
-
# ],
|
3025
|
-
# next_token: "String",
|
3026
|
-
# max_results: 1,
|
3027
|
-
# }
|
3028
|
-
#
|
3029
2513
|
# @!attribute [rw] filters
|
3030
2514
|
# Filters to scope the results. The following filters are supported:
|
3031
2515
|
#
|
@@ -3070,15 +2554,6 @@ module Aws::LicenseManager
|
|
3070
2554
|
include Aws::Structure
|
3071
2555
|
end
|
3072
2556
|
|
3073
|
-
# @note When making an API call, you may pass ListLicenseSpecificationsForResourceRequest
|
3074
|
-
# data as a hash:
|
3075
|
-
#
|
3076
|
-
# {
|
3077
|
-
# resource_arn: "String", # required
|
3078
|
-
# max_results: 1,
|
3079
|
-
# next_token: "String",
|
3080
|
-
# }
|
3081
|
-
#
|
3082
2557
|
# @!attribute [rw] resource_arn
|
3083
2558
|
# Amazon Resource Name (ARN) of a resource that has an associated
|
3084
2559
|
# license configuration.
|
@@ -3119,15 +2594,6 @@ module Aws::LicenseManager
|
|
3119
2594
|
include Aws::Structure
|
3120
2595
|
end
|
3121
2596
|
|
3122
|
-
# @note When making an API call, you may pass ListLicenseVersionsRequest
|
3123
|
-
# data as a hash:
|
3124
|
-
#
|
3125
|
-
# {
|
3126
|
-
# license_arn: "Arn", # required
|
3127
|
-
# next_token: "String",
|
3128
|
-
# max_results: 1,
|
3129
|
-
# }
|
3130
|
-
#
|
3131
2597
|
# @!attribute [rw] license_arn
|
3132
2598
|
# Amazon Resource Name (ARN) of the license.
|
3133
2599
|
# @return [String]
|
@@ -3167,21 +2633,6 @@ module Aws::LicenseManager
|
|
3167
2633
|
include Aws::Structure
|
3168
2634
|
end
|
3169
2635
|
|
3170
|
-
# @note When making an API call, you may pass ListLicensesRequest
|
3171
|
-
# data as a hash:
|
3172
|
-
#
|
3173
|
-
# {
|
3174
|
-
# license_arns: ["Arn"],
|
3175
|
-
# filters: [
|
3176
|
-
# {
|
3177
|
-
# name: "FilterName",
|
3178
|
-
# values: ["FilterValue"],
|
3179
|
-
# },
|
3180
|
-
# ],
|
3181
|
-
# next_token: "String",
|
3182
|
-
# max_results: 1,
|
3183
|
-
# }
|
3184
|
-
#
|
3185
2636
|
# @!attribute [rw] license_arns
|
3186
2637
|
# Amazon Resource Names (ARNs) of the licenses.
|
3187
2638
|
# @return [Array<String>]
|
@@ -3234,21 +2685,54 @@ module Aws::LicenseManager
|
|
3234
2685
|
include Aws::Structure
|
3235
2686
|
end
|
3236
2687
|
|
3237
|
-
#
|
3238
|
-
#
|
2688
|
+
# @!attribute [rw] license_arn
|
2689
|
+
# The Amazon Resource Name (ARN) of the received license.
|
2690
|
+
# @return [String]
|
2691
|
+
#
|
2692
|
+
# @!attribute [rw] filters
|
2693
|
+
# Filters to scope the results. The following filters are supported:
|
2694
|
+
#
|
2695
|
+
# * `ParentArn`
|
2696
|
+
#
|
2697
|
+
# * `GranteePrincipalArn`
|
2698
|
+
# @return [Array<Types::Filter>]
|
3239
2699
|
#
|
3240
|
-
#
|
3241
|
-
#
|
3242
|
-
#
|
3243
|
-
# {
|
3244
|
-
# name: "FilterName",
|
3245
|
-
# values: ["FilterValue"],
|
3246
|
-
# },
|
3247
|
-
# ],
|
3248
|
-
# next_token: "String",
|
3249
|
-
# max_results: 1,
|
3250
|
-
# }
|
2700
|
+
# @!attribute [rw] next_token
|
2701
|
+
# Token for the next set of results.
|
2702
|
+
# @return [String]
|
3251
2703
|
#
|
2704
|
+
# @!attribute [rw] max_results
|
2705
|
+
# Maximum number of results to return in a single call.
|
2706
|
+
# @return [Integer]
|
2707
|
+
#
|
2708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListReceivedGrantsForOrganizationRequest AWS API Documentation
|
2709
|
+
#
|
2710
|
+
class ListReceivedGrantsForOrganizationRequest < Struct.new(
|
2711
|
+
:license_arn,
|
2712
|
+
:filters,
|
2713
|
+
:next_token,
|
2714
|
+
:max_results)
|
2715
|
+
SENSITIVE = []
|
2716
|
+
include Aws::Structure
|
2717
|
+
end
|
2718
|
+
|
2719
|
+
# @!attribute [rw] grants
|
2720
|
+
# Lists the grants the organization has received.
|
2721
|
+
# @return [Array<Types::Grant>]
|
2722
|
+
#
|
2723
|
+
# @!attribute [rw] next_token
|
2724
|
+
# Token for the next set of results.
|
2725
|
+
# @return [String]
|
2726
|
+
#
|
2727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListReceivedGrantsForOrganizationResponse AWS API Documentation
|
2728
|
+
#
|
2729
|
+
class ListReceivedGrantsForOrganizationResponse < Struct.new(
|
2730
|
+
:grants,
|
2731
|
+
:next_token)
|
2732
|
+
SENSITIVE = []
|
2733
|
+
include Aws::Structure
|
2734
|
+
end
|
2735
|
+
|
3252
2736
|
# @!attribute [rw] grant_arns
|
3253
2737
|
# Amazon Resource Names (ARNs) of the grants.
|
3254
2738
|
# @return [Array<String>]
|
@@ -3303,21 +2787,49 @@ module Aws::LicenseManager
|
|
3303
2787
|
include Aws::Structure
|
3304
2788
|
end
|
3305
2789
|
|
3306
|
-
#
|
3307
|
-
#
|
2790
|
+
# @!attribute [rw] filters
|
2791
|
+
# Filters to scope the results. The following filters are supported:
|
2792
|
+
#
|
2793
|
+
# * `Beneficiary`
|
2794
|
+
#
|
2795
|
+
# * `ProductSKU`
|
2796
|
+
# @return [Array<Types::Filter>]
|
2797
|
+
#
|
2798
|
+
# @!attribute [rw] next_token
|
2799
|
+
# Token for the next set of results.
|
2800
|
+
# @return [String]
|
2801
|
+
#
|
2802
|
+
# @!attribute [rw] max_results
|
2803
|
+
# Maximum number of results to return in a single call.
|
2804
|
+
# @return [Integer]
|
2805
|
+
#
|
2806
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListReceivedLicensesForOrganizationRequest AWS API Documentation
|
2807
|
+
#
|
2808
|
+
class ListReceivedLicensesForOrganizationRequest < Struct.new(
|
2809
|
+
:filters,
|
2810
|
+
:next_token,
|
2811
|
+
:max_results)
|
2812
|
+
SENSITIVE = []
|
2813
|
+
include Aws::Structure
|
2814
|
+
end
|
2815
|
+
|
2816
|
+
# @!attribute [rw] licenses
|
2817
|
+
# Lists the licenses the organization has received.
|
2818
|
+
# @return [Array<Types::GrantedLicense>]
|
2819
|
+
#
|
2820
|
+
# @!attribute [rw] next_token
|
2821
|
+
# Token for the next set of results.
|
2822
|
+
# @return [String]
|
3308
2823
|
#
|
3309
|
-
#
|
3310
|
-
# license_arns: ["Arn"],
|
3311
|
-
# filters: [
|
3312
|
-
# {
|
3313
|
-
# name: "FilterName",
|
3314
|
-
# values: ["FilterValue"],
|
3315
|
-
# },
|
3316
|
-
# ],
|
3317
|
-
# next_token: "String",
|
3318
|
-
# max_results: 1,
|
3319
|
-
# }
|
2824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListReceivedLicensesForOrganizationResponse AWS API Documentation
|
3320
2825
|
#
|
2826
|
+
class ListReceivedLicensesForOrganizationResponse < Struct.new(
|
2827
|
+
:licenses,
|
2828
|
+
:next_token)
|
2829
|
+
SENSITIVE = []
|
2830
|
+
include Aws::Structure
|
2831
|
+
end
|
2832
|
+
|
3321
2833
|
# @!attribute [rw] license_arns
|
3322
2834
|
# Amazon Resource Names (ARNs) of the licenses.
|
3323
2835
|
# @return [Array<String>]
|
@@ -3372,21 +2884,6 @@ module Aws::LicenseManager
|
|
3372
2884
|
include Aws::Structure
|
3373
2885
|
end
|
3374
2886
|
|
3375
|
-
# @note When making an API call, you may pass ListResourceInventoryRequest
|
3376
|
-
# data as a hash:
|
3377
|
-
#
|
3378
|
-
# {
|
3379
|
-
# max_results: 1,
|
3380
|
-
# next_token: "String",
|
3381
|
-
# filters: [
|
3382
|
-
# {
|
3383
|
-
# name: "String", # required
|
3384
|
-
# condition: "EQUALS", # required, accepts EQUALS, NOT_EQUALS, BEGINS_WITH, CONTAINS
|
3385
|
-
# value: "String",
|
3386
|
-
# },
|
3387
|
-
# ],
|
3388
|
-
# }
|
3389
|
-
#
|
3390
2887
|
# @!attribute [rw] max_results
|
3391
2888
|
# Maximum number of results to return in a single call.
|
3392
2889
|
# @return [Integer]
|
@@ -3448,13 +2945,6 @@ module Aws::LicenseManager
|
|
3448
2945
|
include Aws::Structure
|
3449
2946
|
end
|
3450
2947
|
|
3451
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
3452
|
-
# data as a hash:
|
3453
|
-
#
|
3454
|
-
# {
|
3455
|
-
# resource_arn: "String", # required
|
3456
|
-
# }
|
3457
|
-
#
|
3458
2948
|
# @!attribute [rw] resource_arn
|
3459
2949
|
# Amazon Resource Name (ARN) of the license configuration.
|
3460
2950
|
# @return [String]
|
@@ -3479,21 +2969,6 @@ module Aws::LicenseManager
|
|
3479
2969
|
include Aws::Structure
|
3480
2970
|
end
|
3481
2971
|
|
3482
|
-
# @note When making an API call, you may pass ListTokensRequest
|
3483
|
-
# data as a hash:
|
3484
|
-
#
|
3485
|
-
# {
|
3486
|
-
# token_ids: ["String"],
|
3487
|
-
# filters: [
|
3488
|
-
# {
|
3489
|
-
# name: "FilterName",
|
3490
|
-
# values: ["FilterValue"],
|
3491
|
-
# },
|
3492
|
-
# ],
|
3493
|
-
# next_token: "String",
|
3494
|
-
# max_results: 1,
|
3495
|
-
# }
|
3496
|
-
#
|
3497
2972
|
# @!attribute [rw] token_ids
|
3498
2973
|
# Token IDs.
|
3499
2974
|
# @return [Array<String>]
|
@@ -3542,21 +3017,6 @@ module Aws::LicenseManager
|
|
3542
3017
|
include Aws::Structure
|
3543
3018
|
end
|
3544
3019
|
|
3545
|
-
# @note When making an API call, you may pass ListUsageForLicenseConfigurationRequest
|
3546
|
-
# data as a hash:
|
3547
|
-
#
|
3548
|
-
# {
|
3549
|
-
# license_configuration_arn: "String", # required
|
3550
|
-
# max_results: 1,
|
3551
|
-
# next_token: "String",
|
3552
|
-
# filters: [
|
3553
|
-
# {
|
3554
|
-
# name: "FilterName",
|
3555
|
-
# values: ["FilterValue"],
|
3556
|
-
# },
|
3557
|
-
# ],
|
3558
|
-
# }
|
3559
|
-
#
|
3560
3020
|
# @!attribute [rw] license_configuration_arn
|
3561
3021
|
# Amazon Resource Name (ARN) of the license configuration.
|
3562
3022
|
# @return [String]
|
@@ -3633,14 +3093,6 @@ module Aws::LicenseManager
|
|
3633
3093
|
|
3634
3094
|
# Describes key/value pairs.
|
3635
3095
|
#
|
3636
|
-
# @note When making an API call, you may pass Metadata
|
3637
|
-
# data as a hash:
|
3638
|
-
#
|
3639
|
-
# {
|
3640
|
-
# name: "String",
|
3641
|
-
# value: "String",
|
3642
|
-
# }
|
3643
|
-
#
|
3644
3096
|
# @!attribute [rw] name
|
3645
3097
|
# The key name.
|
3646
3098
|
# @return [String]
|
@@ -3674,13 +3126,6 @@ module Aws::LicenseManager
|
|
3674
3126
|
|
3675
3127
|
# Configuration information for Organizations.
|
3676
3128
|
#
|
3677
|
-
# @note When making an API call, you may pass OrganizationConfiguration
|
3678
|
-
# data as a hash:
|
3679
|
-
#
|
3680
|
-
# {
|
3681
|
-
# enable_integration: false, # required
|
3682
|
-
# }
|
3683
|
-
#
|
3684
3129
|
# @!attribute [rw] enable_integration
|
3685
3130
|
# Enables Organizations integration.
|
3686
3131
|
# @return [Boolean]
|
@@ -3695,20 +3140,6 @@ module Aws::LicenseManager
|
|
3695
3140
|
|
3696
3141
|
# Describes product information for a license configuration.
|
3697
3142
|
#
|
3698
|
-
# @note When making an API call, you may pass ProductInformation
|
3699
|
-
# data as a hash:
|
3700
|
-
#
|
3701
|
-
# {
|
3702
|
-
# resource_type: "String", # required
|
3703
|
-
# product_information_filter_list: [ # required
|
3704
|
-
# {
|
3705
|
-
# product_information_filter_name: "String", # required
|
3706
|
-
# product_information_filter_value: ["String"],
|
3707
|
-
# product_information_filter_comparator: "String", # required
|
3708
|
-
# },
|
3709
|
-
# ],
|
3710
|
-
# }
|
3711
|
-
#
|
3712
3143
|
# @!attribute [rw] resource_type
|
3713
3144
|
# Resource type. The possible values are `SSM_MANAGED` \| `RDS`.
|
3714
3145
|
# @return [String]
|
@@ -3780,15 +3211,6 @@ module Aws::LicenseManager
|
|
3780
3211
|
|
3781
3212
|
# Describes product information filters.
|
3782
3213
|
#
|
3783
|
-
# @note When making an API call, you may pass ProductInformationFilter
|
3784
|
-
# data as a hash:
|
3785
|
-
#
|
3786
|
-
# {
|
3787
|
-
# product_information_filter_name: "String", # required
|
3788
|
-
# product_information_filter_value: ["String"],
|
3789
|
-
# product_information_filter_comparator: "String", # required
|
3790
|
-
# }
|
3791
|
-
#
|
3792
3214
|
# @!attribute [rw] product_information_filter_name
|
3793
3215
|
# Filter name.
|
3794
3216
|
# @return [String]
|
@@ -3813,13 +3235,6 @@ module Aws::LicenseManager
|
|
3813
3235
|
|
3814
3236
|
# Details about a provisional configuration.
|
3815
3237
|
#
|
3816
|
-
# @note When making an API call, you may pass ProvisionalConfiguration
|
3817
|
-
# data as a hash:
|
3818
|
-
#
|
3819
|
-
# {
|
3820
|
-
# max_time_to_live_in_minutes: 1, # required
|
3821
|
-
# }
|
3822
|
-
#
|
3823
3238
|
# @!attribute [rw] max_time_to_live_in_minutes
|
3824
3239
|
# Maximum time for the provisional configuration, in minutes.
|
3825
3240
|
# @return [Integer]
|
@@ -3886,13 +3301,6 @@ module Aws::LicenseManager
|
|
3886
3301
|
include Aws::Structure
|
3887
3302
|
end
|
3888
3303
|
|
3889
|
-
# @note When making an API call, you may pass RejectGrantRequest
|
3890
|
-
# data as a hash:
|
3891
|
-
#
|
3892
|
-
# {
|
3893
|
-
# grant_arn: "Arn", # required
|
3894
|
-
# }
|
3895
|
-
#
|
3896
3304
|
# @!attribute [rw] grant_arn
|
3897
3305
|
# Amazon Resource Name (ARN) of the grant.
|
3898
3306
|
# @return [String]
|
@@ -3929,13 +3337,6 @@ module Aws::LicenseManager
|
|
3929
3337
|
|
3930
3338
|
# Details of the license configuration that this generator reports on.
|
3931
3339
|
#
|
3932
|
-
# @note When making an API call, you may pass ReportContext
|
3933
|
-
# data as a hash:
|
3934
|
-
#
|
3935
|
-
# {
|
3936
|
-
# license_configuration_arns: ["Arn"], # required
|
3937
|
-
# }
|
3938
|
-
#
|
3939
3340
|
# @!attribute [rw] license_configuration_arns
|
3940
3341
|
# Amazon Resource Name (ARN) of the license configuration that this
|
3941
3342
|
# generator reports on.
|
@@ -3951,14 +3352,6 @@ module Aws::LicenseManager
|
|
3951
3352
|
|
3952
3353
|
# Details about how frequently reports are generated.
|
3953
3354
|
#
|
3954
|
-
# @note When making an API call, you may pass ReportFrequency
|
3955
|
-
# data as a hash:
|
3956
|
-
#
|
3957
|
-
# {
|
3958
|
-
# value: 1,
|
3959
|
-
# period: "DAY", # accepts DAY, WEEK, MONTH
|
3960
|
-
# }
|
3961
|
-
#
|
3962
3355
|
# @!attribute [rw] value
|
3963
3356
|
# Number of times within the frequency period that a report is
|
3964
3357
|
# generated. The only supported value is `1`.
|
@@ -4154,14 +3547,6 @@ module Aws::LicenseManager
|
|
4154
3547
|
|
4155
3548
|
# Details about a tag for a license configuration.
|
4156
3549
|
#
|
4157
|
-
# @note When making an API call, you may pass Tag
|
4158
|
-
# data as a hash:
|
4159
|
-
#
|
4160
|
-
# {
|
4161
|
-
# key: "String",
|
4162
|
-
# value: "String",
|
4163
|
-
# }
|
4164
|
-
#
|
4165
3550
|
# @!attribute [rw] key
|
4166
3551
|
# Tag key.
|
4167
3552
|
# @return [String]
|
@@ -4179,19 +3564,6 @@ module Aws::LicenseManager
|
|
4179
3564
|
include Aws::Structure
|
4180
3565
|
end
|
4181
3566
|
|
4182
|
-
# @note When making an API call, you may pass TagResourceRequest
|
4183
|
-
# data as a hash:
|
4184
|
-
#
|
4185
|
-
# {
|
4186
|
-
# resource_arn: "String", # required
|
4187
|
-
# tags: [ # required
|
4188
|
-
# {
|
4189
|
-
# key: "String",
|
4190
|
-
# value: "String",
|
4191
|
-
# },
|
4192
|
-
# ],
|
4193
|
-
# }
|
4194
|
-
#
|
4195
3567
|
# @!attribute [rw] resource_arn
|
4196
3568
|
# Amazon Resource Name (ARN) of the license configuration.
|
4197
3569
|
# @return [String]
|
@@ -4270,14 +3642,6 @@ module Aws::LicenseManager
|
|
4270
3642
|
include Aws::Structure
|
4271
3643
|
end
|
4272
3644
|
|
4273
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
4274
|
-
# data as a hash:
|
4275
|
-
#
|
4276
|
-
# {
|
4277
|
-
# resource_arn: "String", # required
|
4278
|
-
# tag_keys: ["String"], # required
|
4279
|
-
# }
|
4280
|
-
#
|
4281
3645
|
# @!attribute [rw] resource_arn
|
4282
3646
|
# Amazon Resource Name (ARN) of the license configuration.
|
4283
3647
|
# @return [String]
|
@@ -4299,32 +3663,6 @@ module Aws::LicenseManager
|
|
4299
3663
|
#
|
4300
3664
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
4301
3665
|
|
4302
|
-
# @note When making an API call, you may pass UpdateLicenseConfigurationRequest
|
4303
|
-
# data as a hash:
|
4304
|
-
#
|
4305
|
-
# {
|
4306
|
-
# license_configuration_arn: "String", # required
|
4307
|
-
# license_configuration_status: "AVAILABLE", # accepts AVAILABLE, DISABLED
|
4308
|
-
# license_rules: ["String"],
|
4309
|
-
# license_count: 1,
|
4310
|
-
# license_count_hard_limit: false,
|
4311
|
-
# name: "String",
|
4312
|
-
# description: "String",
|
4313
|
-
# product_information_list: [
|
4314
|
-
# {
|
4315
|
-
# resource_type: "String", # required
|
4316
|
-
# product_information_filter_list: [ # required
|
4317
|
-
# {
|
4318
|
-
# product_information_filter_name: "String", # required
|
4319
|
-
# product_information_filter_value: ["String"],
|
4320
|
-
# product_information_filter_comparator: "String", # required
|
4321
|
-
# },
|
4322
|
-
# ],
|
4323
|
-
# },
|
4324
|
-
# ],
|
4325
|
-
# disassociate_when_not_found: false,
|
4326
|
-
# }
|
4327
|
-
#
|
4328
3666
|
# @!attribute [rw] license_configuration_arn
|
4329
3667
|
# Amazon Resource Name (ARN) of the license configuration.
|
4330
3668
|
# @return [String]
|
@@ -4382,24 +3720,6 @@ module Aws::LicenseManager
|
|
4382
3720
|
#
|
4383
3721
|
class UpdateLicenseConfigurationResponse < Aws::EmptyStructure; end
|
4384
3722
|
|
4385
|
-
# @note When making an API call, you may pass UpdateLicenseManagerReportGeneratorRequest
|
4386
|
-
# data as a hash:
|
4387
|
-
#
|
4388
|
-
# {
|
4389
|
-
# license_manager_report_generator_arn: "String", # required
|
4390
|
-
# report_generator_name: "ReportGeneratorName", # required
|
4391
|
-
# type: ["LicenseConfigurationSummaryReport"], # required, accepts LicenseConfigurationSummaryReport, LicenseConfigurationUsageReport
|
4392
|
-
# report_context: { # required
|
4393
|
-
# license_configuration_arns: ["Arn"], # required
|
4394
|
-
# },
|
4395
|
-
# report_frequency: { # required
|
4396
|
-
# value: 1,
|
4397
|
-
# period: "DAY", # accepts DAY, WEEK, MONTH
|
4398
|
-
# },
|
4399
|
-
# client_token: "ClientRequestToken", # required
|
4400
|
-
# description: "String",
|
4401
|
-
# }
|
4402
|
-
#
|
4403
3723
|
# @!attribute [rw] license_manager_report_generator_arn
|
4404
3724
|
# Amazon Resource Name (ARN) of the report generator to update.
|
4405
3725
|
# @return [String]
|
@@ -4454,25 +3774,6 @@ module Aws::LicenseManager
|
|
4454
3774
|
#
|
4455
3775
|
class UpdateLicenseManagerReportGeneratorResponse < Aws::EmptyStructure; end
|
4456
3776
|
|
4457
|
-
# @note When making an API call, you may pass UpdateLicenseSpecificationsForResourceRequest
|
4458
|
-
# data as a hash:
|
4459
|
-
#
|
4460
|
-
# {
|
4461
|
-
# resource_arn: "String", # required
|
4462
|
-
# add_license_specifications: [
|
4463
|
-
# {
|
4464
|
-
# license_configuration_arn: "String", # required
|
4465
|
-
# ami_association_scope: "String",
|
4466
|
-
# },
|
4467
|
-
# ],
|
4468
|
-
# remove_license_specifications: [
|
4469
|
-
# {
|
4470
|
-
# license_configuration_arn: "String", # required
|
4471
|
-
# ami_association_scope: "String",
|
4472
|
-
# },
|
4473
|
-
# ],
|
4474
|
-
# }
|
4475
|
-
#
|
4476
3777
|
# @!attribute [rw] resource_arn
|
4477
3778
|
# Amazon Resource Name (ARN) of the Amazon Web Services resource.
|
4478
3779
|
# @return [String]
|
@@ -4499,18 +3800,6 @@ module Aws::LicenseManager
|
|
4499
3800
|
#
|
4500
3801
|
class UpdateLicenseSpecificationsForResourceResponse < Aws::EmptyStructure; end
|
4501
3802
|
|
4502
|
-
# @note When making an API call, you may pass UpdateServiceSettingsRequest
|
4503
|
-
# data as a hash:
|
4504
|
-
#
|
4505
|
-
# {
|
4506
|
-
# s3_bucket_arn: "String",
|
4507
|
-
# sns_topic_arn: "String",
|
4508
|
-
# organization_configuration: {
|
4509
|
-
# enable_integration: false, # required
|
4510
|
-
# },
|
4511
|
-
# enable_cross_accounts_discovery: false,
|
4512
|
-
# }
|
4513
|
-
#
|
4514
3803
|
# @!attribute [rw] s3_bucket_arn
|
4515
3804
|
# Amazon Resource Name (ARN) of the Amazon S3 bucket where the License
|
4516
3805
|
# Manager information is stored.
|