aws-sdk-licensemanager 1.82.0 → 1.83.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-licensemanager/client.rb +1012 -11
- data/lib/aws-sdk-licensemanager/client_api.rb +459 -1
- data/lib/aws-sdk-licensemanager/types.rb +1038 -8
- data/lib/aws-sdk-licensemanager.rb +1 -1
- data/sig/client.rbs +462 -9
- data/sig/types.rbs +296 -4
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -25,6 +25,18 @@ module Aws::LicenseManager
|
|
|
25
25
|
SENSITIVE: []
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
+
class AndRuleStatement
|
|
29
|
+
attr_accessor matching_rule_statements: ::Array[Types::MatchingRuleStatement]
|
|
30
|
+
attr_accessor script_rule_statements: ::Array[Types::ScriptRuleStatement]
|
|
31
|
+
SENSITIVE: []
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
class Asset
|
|
35
|
+
attr_accessor asset_arn: ::String
|
|
36
|
+
attr_accessor latest_asset_discovery_time: ::Time
|
|
37
|
+
SENSITIVE: []
|
|
38
|
+
end
|
|
39
|
+
|
|
28
40
|
class AuthorizationException
|
|
29
41
|
attr_accessor message: ::String
|
|
30
42
|
SENSITIVE: []
|
|
@@ -150,6 +162,37 @@ module Aws::LicenseManager
|
|
|
150
162
|
SENSITIVE: []
|
|
151
163
|
end
|
|
152
164
|
|
|
165
|
+
class CreateLicenseAssetGroupRequest
|
|
166
|
+
attr_accessor name: ::String
|
|
167
|
+
attr_accessor description: ::String
|
|
168
|
+
attr_accessor license_asset_group_configurations: ::Array[Types::LicenseAssetGroupConfiguration]
|
|
169
|
+
attr_accessor associated_license_asset_ruleset_arns: ::Array[::String]
|
|
170
|
+
attr_accessor properties: ::Array[Types::LicenseAssetGroupProperty]
|
|
171
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
172
|
+
attr_accessor client_token: ::String
|
|
173
|
+
SENSITIVE: []
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
class CreateLicenseAssetGroupResponse
|
|
177
|
+
attr_accessor license_asset_group_arn: ::String
|
|
178
|
+
attr_accessor status: ::String
|
|
179
|
+
SENSITIVE: []
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
class CreateLicenseAssetRulesetRequest
|
|
183
|
+
attr_accessor name: ::String
|
|
184
|
+
attr_accessor description: ::String
|
|
185
|
+
attr_accessor rules: ::Array[Types::LicenseAssetRule]
|
|
186
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
187
|
+
attr_accessor client_token: ::String
|
|
188
|
+
SENSITIVE: []
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
class CreateLicenseAssetRulesetResponse
|
|
192
|
+
attr_accessor license_asset_ruleset_arn: ::String
|
|
193
|
+
SENSITIVE: []
|
|
194
|
+
end
|
|
195
|
+
|
|
153
196
|
class CreateLicenseConfigurationRequest
|
|
154
197
|
attr_accessor name: ::String
|
|
155
198
|
attr_accessor description: ::String
|
|
@@ -160,6 +203,7 @@ module Aws::LicenseManager
|
|
|
160
203
|
attr_accessor tags: ::Array[Types::Tag]
|
|
161
204
|
attr_accessor disassociate_when_not_found: bool
|
|
162
205
|
attr_accessor product_information_list: ::Array[Types::ProductInformation]
|
|
206
|
+
attr_accessor license_expiry: ::Integer
|
|
163
207
|
SENSITIVE: []
|
|
164
208
|
end
|
|
165
209
|
|
|
@@ -182,7 +226,7 @@ module Aws::LicenseManager
|
|
|
182
226
|
|
|
183
227
|
class CreateLicenseManagerReportGeneratorRequest
|
|
184
228
|
attr_accessor report_generator_name: ::String
|
|
185
|
-
attr_accessor type: ::Array[("LicenseConfigurationSummaryReport" | "LicenseConfigurationUsageReport")]
|
|
229
|
+
attr_accessor type: ::Array[("LicenseConfigurationSummaryReport" | "LicenseConfigurationUsageReport" | "LicenseAssetGroupUsageReport")]
|
|
186
230
|
attr_accessor report_context: Types::ReportContext
|
|
187
231
|
attr_accessor report_frequency: Types::ReportFrequency
|
|
188
232
|
attr_accessor client_token: ::String
|
|
@@ -258,6 +302,16 @@ module Aws::LicenseManager
|
|
|
258
302
|
SENSITIVE: []
|
|
259
303
|
end
|
|
260
304
|
|
|
305
|
+
class CrossAccountDiscoveryServiceStatus
|
|
306
|
+
attr_accessor message: ::String
|
|
307
|
+
SENSITIVE: []
|
|
308
|
+
end
|
|
309
|
+
|
|
310
|
+
class CrossRegionDiscoveryStatus
|
|
311
|
+
attr_accessor message: ::Hash[::String, Types::RegionStatus]
|
|
312
|
+
SENSITIVE: []
|
|
313
|
+
end
|
|
314
|
+
|
|
261
315
|
class DatetimeRange
|
|
262
316
|
attr_accessor begin: ::String
|
|
263
317
|
attr_accessor end: ::String
|
|
@@ -278,6 +332,24 @@ module Aws::LicenseManager
|
|
|
278
332
|
SENSITIVE: []
|
|
279
333
|
end
|
|
280
334
|
|
|
335
|
+
class DeleteLicenseAssetGroupRequest
|
|
336
|
+
attr_accessor license_asset_group_arn: ::String
|
|
337
|
+
SENSITIVE: []
|
|
338
|
+
end
|
|
339
|
+
|
|
340
|
+
class DeleteLicenseAssetGroupResponse
|
|
341
|
+
attr_accessor status: ("ACTIVE" | "DISABLED" | "DELETED")
|
|
342
|
+
SENSITIVE: []
|
|
343
|
+
end
|
|
344
|
+
|
|
345
|
+
class DeleteLicenseAssetRulesetRequest
|
|
346
|
+
attr_accessor license_asset_ruleset_arn: ::String
|
|
347
|
+
SENSITIVE: []
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
class DeleteLicenseAssetRulesetResponse < Aws::EmptyStructure
|
|
351
|
+
end
|
|
352
|
+
|
|
281
353
|
class DeleteLicenseConfigurationRequest
|
|
282
354
|
attr_accessor license_configuration_arn: ::String
|
|
283
355
|
SENSITIVE: []
|
|
@@ -395,6 +467,26 @@ module Aws::LicenseManager
|
|
|
395
467
|
SENSITIVE: []
|
|
396
468
|
end
|
|
397
469
|
|
|
470
|
+
class GetLicenseAssetGroupRequest
|
|
471
|
+
attr_accessor license_asset_group_arn: ::String
|
|
472
|
+
SENSITIVE: []
|
|
473
|
+
end
|
|
474
|
+
|
|
475
|
+
class GetLicenseAssetGroupResponse
|
|
476
|
+
attr_accessor license_asset_group: Types::LicenseAssetGroup
|
|
477
|
+
SENSITIVE: []
|
|
478
|
+
end
|
|
479
|
+
|
|
480
|
+
class GetLicenseAssetRulesetRequest
|
|
481
|
+
attr_accessor license_asset_ruleset_arn: ::String
|
|
482
|
+
SENSITIVE: []
|
|
483
|
+
end
|
|
484
|
+
|
|
485
|
+
class GetLicenseAssetRulesetResponse
|
|
486
|
+
attr_accessor license_asset_ruleset: Types::LicenseAssetRuleset
|
|
487
|
+
SENSITIVE: []
|
|
488
|
+
end
|
|
489
|
+
|
|
398
490
|
class GetLicenseConfigurationRequest
|
|
399
491
|
attr_accessor license_configuration_arn: ::String
|
|
400
492
|
SENSITIVE: []
|
|
@@ -418,6 +510,7 @@ module Aws::LicenseManager
|
|
|
418
510
|
attr_accessor product_information_list: ::Array[Types::ProductInformation]
|
|
419
511
|
attr_accessor automated_discovery_information: Types::AutomatedDiscoveryInformation
|
|
420
512
|
attr_accessor disassociate_when_not_found: bool
|
|
513
|
+
attr_accessor license_expiry: ::Integer
|
|
421
514
|
SENSITIVE: []
|
|
422
515
|
end
|
|
423
516
|
|
|
@@ -479,6 +572,9 @@ module Aws::LicenseManager
|
|
|
479
572
|
attr_accessor organization_configuration: Types::OrganizationConfiguration
|
|
480
573
|
attr_accessor enable_cross_accounts_discovery: bool
|
|
481
574
|
attr_accessor license_manager_resource_share_arn: ::String
|
|
575
|
+
attr_accessor cross_region_discovery_home_region: ::String
|
|
576
|
+
attr_accessor cross_region_discovery_source_regions: ::Array[::String]
|
|
577
|
+
attr_accessor service_status: Types::ServiceStatus
|
|
482
578
|
SENSITIVE: []
|
|
483
579
|
end
|
|
484
580
|
|
|
@@ -516,6 +612,14 @@ module Aws::LicenseManager
|
|
|
516
612
|
SENSITIVE: []
|
|
517
613
|
end
|
|
518
614
|
|
|
615
|
+
class InstanceRuleStatement
|
|
616
|
+
attr_accessor and_rule_statement: Types::AndRuleStatement
|
|
617
|
+
attr_accessor or_rule_statement: Types::OrRuleStatement
|
|
618
|
+
attr_accessor matching_rule_statement: Types::MatchingRuleStatement
|
|
619
|
+
attr_accessor script_rule_statement: Types::ScriptRuleStatement
|
|
620
|
+
SENSITIVE: []
|
|
621
|
+
end
|
|
622
|
+
|
|
519
623
|
class InvalidParameterValueException
|
|
520
624
|
attr_accessor message: ::String
|
|
521
625
|
SENSITIVE: []
|
|
@@ -564,6 +668,44 @@ module Aws::LicenseManager
|
|
|
564
668
|
SENSITIVE: []
|
|
565
669
|
end
|
|
566
670
|
|
|
671
|
+
class LicenseAssetGroup
|
|
672
|
+
attr_accessor name: ::String
|
|
673
|
+
attr_accessor description: ::String
|
|
674
|
+
attr_accessor license_asset_group_configurations: ::Array[Types::LicenseAssetGroupConfiguration]
|
|
675
|
+
attr_accessor associated_license_asset_ruleset_arns: ::Array[::String]
|
|
676
|
+
attr_accessor properties: ::Array[Types::LicenseAssetGroupProperty]
|
|
677
|
+
attr_accessor license_asset_group_arn: ::String
|
|
678
|
+
attr_accessor status: ("ACTIVE" | "DISABLED" | "DELETED")
|
|
679
|
+
attr_accessor status_message: ::String
|
|
680
|
+
attr_accessor latest_usage_analysis_time: ::Time
|
|
681
|
+
attr_accessor latest_resource_discovery_time: ::Time
|
|
682
|
+
SENSITIVE: []
|
|
683
|
+
end
|
|
684
|
+
|
|
685
|
+
class LicenseAssetGroupConfiguration
|
|
686
|
+
attr_accessor usage_dimension: ::String
|
|
687
|
+
SENSITIVE: []
|
|
688
|
+
end
|
|
689
|
+
|
|
690
|
+
class LicenseAssetGroupProperty
|
|
691
|
+
attr_accessor key: ::String
|
|
692
|
+
attr_accessor value: ::String
|
|
693
|
+
SENSITIVE: []
|
|
694
|
+
end
|
|
695
|
+
|
|
696
|
+
class LicenseAssetRule
|
|
697
|
+
attr_accessor rule_statement: Types::RuleStatement
|
|
698
|
+
SENSITIVE: []
|
|
699
|
+
end
|
|
700
|
+
|
|
701
|
+
class LicenseAssetRuleset
|
|
702
|
+
attr_accessor name: ::String
|
|
703
|
+
attr_accessor description: ::String
|
|
704
|
+
attr_accessor rules: ::Array[Types::LicenseAssetRule]
|
|
705
|
+
attr_accessor license_asset_ruleset_arn: ::String
|
|
706
|
+
SENSITIVE: []
|
|
707
|
+
end
|
|
708
|
+
|
|
567
709
|
class LicenseConfiguration
|
|
568
710
|
attr_accessor license_configuration_id: ::String
|
|
569
711
|
attr_accessor license_configuration_arn: ::String
|
|
@@ -581,6 +723,7 @@ module Aws::LicenseManager
|
|
|
581
723
|
attr_accessor managed_resource_summary_list: ::Array[Types::ManagedResourceSummary]
|
|
582
724
|
attr_accessor product_information_list: ::Array[Types::ProductInformation]
|
|
583
725
|
attr_accessor automated_discovery_information: Types::AutomatedDiscoveryInformation
|
|
726
|
+
attr_accessor license_expiry: ::Integer
|
|
584
727
|
SENSITIVE: []
|
|
585
728
|
end
|
|
586
729
|
|
|
@@ -593,6 +736,13 @@ module Aws::LicenseManager
|
|
|
593
736
|
SENSITIVE: []
|
|
594
737
|
end
|
|
595
738
|
|
|
739
|
+
class LicenseConfigurationRuleStatement
|
|
740
|
+
attr_accessor and_rule_statement: Types::AndRuleStatement
|
|
741
|
+
attr_accessor or_rule_statement: Types::OrRuleStatement
|
|
742
|
+
attr_accessor matching_rule_statement: Types::MatchingRuleStatement
|
|
743
|
+
SENSITIVE: []
|
|
744
|
+
end
|
|
745
|
+
|
|
596
746
|
class LicenseConfigurationUsage
|
|
597
747
|
attr_accessor resource_arn: ::String
|
|
598
748
|
attr_accessor resource_type: ("EC2_INSTANCE" | "EC2_HOST" | "EC2_AMI" | "RDS" | "SYSTEMS_MANAGER_MANAGED_INSTANCE")
|
|
@@ -634,6 +784,13 @@ module Aws::LicenseManager
|
|
|
634
784
|
SENSITIVE: []
|
|
635
785
|
end
|
|
636
786
|
|
|
787
|
+
class LicenseRuleStatement
|
|
788
|
+
attr_accessor and_rule_statement: Types::AndRuleStatement
|
|
789
|
+
attr_accessor or_rule_statement: Types::OrRuleStatement
|
|
790
|
+
attr_accessor matching_rule_statement: Types::MatchingRuleStatement
|
|
791
|
+
SENSITIVE: []
|
|
792
|
+
end
|
|
793
|
+
|
|
637
794
|
class LicenseSpecification
|
|
638
795
|
attr_accessor license_configuration_arn: ::String
|
|
639
796
|
attr_accessor ami_association_scope: ::String
|
|
@@ -650,6 +807,20 @@ module Aws::LicenseManager
|
|
|
650
807
|
SENSITIVE: []
|
|
651
808
|
end
|
|
652
809
|
|
|
810
|
+
class ListAssetsForLicenseAssetGroupRequest
|
|
811
|
+
attr_accessor license_asset_group_arn: ::String
|
|
812
|
+
attr_accessor asset_type: ::String
|
|
813
|
+
attr_accessor max_results: ::Integer
|
|
814
|
+
attr_accessor next_token: ::String
|
|
815
|
+
SENSITIVE: []
|
|
816
|
+
end
|
|
817
|
+
|
|
818
|
+
class ListAssetsForLicenseAssetGroupResponse
|
|
819
|
+
attr_accessor assets: ::Array[Types::Asset]
|
|
820
|
+
attr_accessor next_token: ::String
|
|
821
|
+
SENSITIVE: []
|
|
822
|
+
end
|
|
823
|
+
|
|
653
824
|
class ListAssociationsForLicenseConfigurationRequest
|
|
654
825
|
attr_accessor license_configuration_arn: ::String
|
|
655
826
|
attr_accessor max_results: ::Integer
|
|
@@ -690,6 +861,47 @@ module Aws::LicenseManager
|
|
|
690
861
|
SENSITIVE: []
|
|
691
862
|
end
|
|
692
863
|
|
|
864
|
+
class ListLicenseAssetGroupsRequest
|
|
865
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
866
|
+
attr_accessor max_results: ::Integer
|
|
867
|
+
attr_accessor next_token: ::String
|
|
868
|
+
SENSITIVE: []
|
|
869
|
+
end
|
|
870
|
+
|
|
871
|
+
class ListLicenseAssetGroupsResponse
|
|
872
|
+
attr_accessor license_asset_groups: ::Array[Types::LicenseAssetGroup]
|
|
873
|
+
attr_accessor next_token: ::String
|
|
874
|
+
SENSITIVE: []
|
|
875
|
+
end
|
|
876
|
+
|
|
877
|
+
class ListLicenseAssetRulesetsRequest
|
|
878
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
879
|
+
attr_accessor show_aws_managed_license_asset_rulesets: bool
|
|
880
|
+
attr_accessor max_results: ::Integer
|
|
881
|
+
attr_accessor next_token: ::String
|
|
882
|
+
SENSITIVE: []
|
|
883
|
+
end
|
|
884
|
+
|
|
885
|
+
class ListLicenseAssetRulesetsResponse
|
|
886
|
+
attr_accessor license_asset_rulesets: ::Array[Types::LicenseAssetRuleset]
|
|
887
|
+
attr_accessor next_token: ::String
|
|
888
|
+
SENSITIVE: []
|
|
889
|
+
end
|
|
890
|
+
|
|
891
|
+
class ListLicenseConfigurationsForOrganizationRequest
|
|
892
|
+
attr_accessor license_configuration_arns: ::Array[::String]
|
|
893
|
+
attr_accessor max_results: ::Integer
|
|
894
|
+
attr_accessor next_token: ::String
|
|
895
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
896
|
+
SENSITIVE: []
|
|
897
|
+
end
|
|
898
|
+
|
|
899
|
+
class ListLicenseConfigurationsForOrganizationResponse
|
|
900
|
+
attr_accessor license_configurations: ::Array[Types::LicenseConfiguration]
|
|
901
|
+
attr_accessor next_token: ::String
|
|
902
|
+
SENSITIVE: []
|
|
903
|
+
end
|
|
904
|
+
|
|
693
905
|
class ListLicenseConfigurationsRequest
|
|
694
906
|
attr_accessor license_configuration_arns: ::Array[::String]
|
|
695
907
|
attr_accessor max_results: ::Integer
|
|
@@ -882,6 +1094,13 @@ module Aws::LicenseManager
|
|
|
882
1094
|
SENSITIVE: []
|
|
883
1095
|
end
|
|
884
1096
|
|
|
1097
|
+
class MatchingRuleStatement
|
|
1098
|
+
attr_accessor key_to_match: ::String
|
|
1099
|
+
attr_accessor constraint: ::String
|
|
1100
|
+
attr_accessor value_to_match: ::Array[::String]
|
|
1101
|
+
SENSITIVE: []
|
|
1102
|
+
end
|
|
1103
|
+
|
|
885
1104
|
class Metadata
|
|
886
1105
|
attr_accessor name: ::String
|
|
887
1106
|
attr_accessor value: ::String
|
|
@@ -898,6 +1117,12 @@ module Aws::LicenseManager
|
|
|
898
1117
|
SENSITIVE: []
|
|
899
1118
|
end
|
|
900
1119
|
|
|
1120
|
+
class OrRuleStatement
|
|
1121
|
+
attr_accessor matching_rule_statements: ::Array[Types::MatchingRuleStatement]
|
|
1122
|
+
attr_accessor script_rule_statements: ::Array[Types::ScriptRuleStatement]
|
|
1123
|
+
SENSITIVE: []
|
|
1124
|
+
end
|
|
1125
|
+
|
|
901
1126
|
class OrganizationConfiguration
|
|
902
1127
|
attr_accessor enable_integration: bool
|
|
903
1128
|
SENSITIVE: []
|
|
@@ -945,6 +1170,11 @@ module Aws::LicenseManager
|
|
|
945
1170
|
SENSITIVE: []
|
|
946
1171
|
end
|
|
947
1172
|
|
|
1173
|
+
class RegionStatus
|
|
1174
|
+
attr_accessor status: ::String
|
|
1175
|
+
SENSITIVE: []
|
|
1176
|
+
end
|
|
1177
|
+
|
|
948
1178
|
class RejectGrantRequest
|
|
949
1179
|
attr_accessor grant_arn: ::String
|
|
950
1180
|
SENSITIVE: []
|
|
@@ -959,18 +1189,21 @@ module Aws::LicenseManager
|
|
|
959
1189
|
|
|
960
1190
|
class ReportContext
|
|
961
1191
|
attr_accessor license_configuration_arns: ::Array[::String]
|
|
1192
|
+
attr_accessor license_asset_group_arns: ::Array[::String]
|
|
1193
|
+
attr_accessor report_start_date: ::Time
|
|
1194
|
+
attr_accessor report_end_date: ::Time
|
|
962
1195
|
SENSITIVE: []
|
|
963
1196
|
end
|
|
964
1197
|
|
|
965
1198
|
class ReportFrequency
|
|
966
1199
|
attr_accessor value: ::Integer
|
|
967
|
-
attr_accessor period: ("DAY" | "WEEK" | "MONTH")
|
|
1200
|
+
attr_accessor period: ("DAY" | "WEEK" | "MONTH" | "ONE_TIME")
|
|
968
1201
|
SENSITIVE: []
|
|
969
1202
|
end
|
|
970
1203
|
|
|
971
1204
|
class ReportGenerator
|
|
972
1205
|
attr_accessor report_generator_name: ::String
|
|
973
|
-
attr_accessor report_type: ::Array[("LicenseConfigurationSummaryReport" | "LicenseConfigurationUsageReport")]
|
|
1206
|
+
attr_accessor report_type: ::Array[("LicenseConfigurationSummaryReport" | "LicenseConfigurationUsageReport" | "LicenseAssetGroupUsageReport")]
|
|
974
1207
|
attr_accessor report_context: Types::ReportContext
|
|
975
1208
|
attr_accessor report_frequency: Types::ReportFrequency
|
|
976
1209
|
attr_accessor license_manager_report_generator_arn: ::String
|
|
@@ -992,6 +1225,12 @@ module Aws::LicenseManager
|
|
|
992
1225
|
attr_accessor platform: ::String
|
|
993
1226
|
attr_accessor platform_version: ::String
|
|
994
1227
|
attr_accessor resource_owning_account_id: ::String
|
|
1228
|
+
attr_accessor marketplace_product_codes: ::Array[::String]
|
|
1229
|
+
attr_accessor usage_operation: ::String
|
|
1230
|
+
attr_accessor ami_id: ::String
|
|
1231
|
+
attr_accessor host_id: ::String
|
|
1232
|
+
attr_accessor region: ::String
|
|
1233
|
+
attr_accessor instance_type: ::String
|
|
995
1234
|
SENSITIVE: []
|
|
996
1235
|
end
|
|
997
1236
|
|
|
@@ -1005,17 +1244,36 @@ module Aws::LicenseManager
|
|
|
1005
1244
|
SENSITIVE: []
|
|
1006
1245
|
end
|
|
1007
1246
|
|
|
1247
|
+
class RuleStatement
|
|
1248
|
+
attr_accessor license_configuration_rule_statement: Types::LicenseConfigurationRuleStatement
|
|
1249
|
+
attr_accessor license_rule_statement: Types::LicenseRuleStatement
|
|
1250
|
+
attr_accessor instance_rule_statement: Types::InstanceRuleStatement
|
|
1251
|
+
SENSITIVE: []
|
|
1252
|
+
end
|
|
1253
|
+
|
|
1008
1254
|
class S3Location
|
|
1009
1255
|
attr_accessor bucket: ::String
|
|
1010
1256
|
attr_accessor key_prefix: ::String
|
|
1011
1257
|
SENSITIVE: []
|
|
1012
1258
|
end
|
|
1013
1259
|
|
|
1260
|
+
class ScriptRuleStatement
|
|
1261
|
+
attr_accessor key_to_match: ::String
|
|
1262
|
+
attr_accessor script: ::String
|
|
1263
|
+
SENSITIVE: []
|
|
1264
|
+
end
|
|
1265
|
+
|
|
1014
1266
|
class ServerInternalException
|
|
1015
1267
|
attr_accessor message: ::String
|
|
1016
1268
|
SENSITIVE: []
|
|
1017
1269
|
end
|
|
1018
1270
|
|
|
1271
|
+
class ServiceStatus
|
|
1272
|
+
attr_accessor cross_account_discovery: Types::CrossAccountDiscoveryServiceStatus
|
|
1273
|
+
attr_accessor cross_region_discovery: Types::CrossRegionDiscoveryStatus
|
|
1274
|
+
SENSITIVE: []
|
|
1275
|
+
end
|
|
1276
|
+
|
|
1019
1277
|
class Tag
|
|
1020
1278
|
attr_accessor key: ::String
|
|
1021
1279
|
attr_accessor value: ::String
|
|
@@ -1056,6 +1314,38 @@ module Aws::LicenseManager
|
|
|
1056
1314
|
class UntagResourceResponse < Aws::EmptyStructure
|
|
1057
1315
|
end
|
|
1058
1316
|
|
|
1317
|
+
class UpdateLicenseAssetGroupRequest
|
|
1318
|
+
attr_accessor name: ::String
|
|
1319
|
+
attr_accessor description: ::String
|
|
1320
|
+
attr_accessor license_asset_group_configurations: ::Array[Types::LicenseAssetGroupConfiguration]
|
|
1321
|
+
attr_accessor associated_license_asset_ruleset_arns: ::Array[::String]
|
|
1322
|
+
attr_accessor properties: ::Array[Types::LicenseAssetGroupProperty]
|
|
1323
|
+
attr_accessor license_asset_group_arn: ::String
|
|
1324
|
+
attr_accessor status: ("ACTIVE" | "DISABLED" | "DELETED")
|
|
1325
|
+
attr_accessor client_token: ::String
|
|
1326
|
+
SENSITIVE: []
|
|
1327
|
+
end
|
|
1328
|
+
|
|
1329
|
+
class UpdateLicenseAssetGroupResponse
|
|
1330
|
+
attr_accessor license_asset_group_arn: ::String
|
|
1331
|
+
attr_accessor status: ::String
|
|
1332
|
+
SENSITIVE: []
|
|
1333
|
+
end
|
|
1334
|
+
|
|
1335
|
+
class UpdateLicenseAssetRulesetRequest
|
|
1336
|
+
attr_accessor name: ::String
|
|
1337
|
+
attr_accessor description: ::String
|
|
1338
|
+
attr_accessor rules: ::Array[Types::LicenseAssetRule]
|
|
1339
|
+
attr_accessor license_asset_ruleset_arn: ::String
|
|
1340
|
+
attr_accessor client_token: ::String
|
|
1341
|
+
SENSITIVE: []
|
|
1342
|
+
end
|
|
1343
|
+
|
|
1344
|
+
class UpdateLicenseAssetRulesetResponse
|
|
1345
|
+
attr_accessor license_asset_ruleset_arn: ::String
|
|
1346
|
+
SENSITIVE: []
|
|
1347
|
+
end
|
|
1348
|
+
|
|
1059
1349
|
class UpdateLicenseConfigurationRequest
|
|
1060
1350
|
attr_accessor license_configuration_arn: ::String
|
|
1061
1351
|
attr_accessor license_configuration_status: ("AVAILABLE" | "DISABLED")
|
|
@@ -1066,6 +1356,7 @@ module Aws::LicenseManager
|
|
|
1066
1356
|
attr_accessor description: ::String
|
|
1067
1357
|
attr_accessor product_information_list: ::Array[Types::ProductInformation]
|
|
1068
1358
|
attr_accessor disassociate_when_not_found: bool
|
|
1359
|
+
attr_accessor license_expiry: ::Integer
|
|
1069
1360
|
SENSITIVE: []
|
|
1070
1361
|
end
|
|
1071
1362
|
|
|
@@ -1075,7 +1366,7 @@ module Aws::LicenseManager
|
|
|
1075
1366
|
class UpdateLicenseManagerReportGeneratorRequest
|
|
1076
1367
|
attr_accessor license_manager_report_generator_arn: ::String
|
|
1077
1368
|
attr_accessor report_generator_name: ::String
|
|
1078
|
-
attr_accessor type: ::Array[("LicenseConfigurationSummaryReport" | "LicenseConfigurationUsageReport")]
|
|
1369
|
+
attr_accessor type: ::Array[("LicenseConfigurationSummaryReport" | "LicenseConfigurationUsageReport" | "LicenseAssetGroupUsageReport")]
|
|
1079
1370
|
attr_accessor report_context: Types::ReportContext
|
|
1080
1371
|
attr_accessor report_frequency: Types::ReportFrequency
|
|
1081
1372
|
attr_accessor client_token: ::String
|
|
@@ -1101,6 +1392,7 @@ module Aws::LicenseManager
|
|
|
1101
1392
|
attr_accessor sns_topic_arn: ::String
|
|
1102
1393
|
attr_accessor organization_configuration: Types::OrganizationConfiguration
|
|
1103
1394
|
attr_accessor enable_cross_accounts_discovery: bool
|
|
1395
|
+
attr_accessor enabled_discovery_source_regions: ::Array[::String]
|
|
1104
1396
|
SENSITIVE: []
|
|
1105
1397
|
end
|
|
1106
1398
|
|