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.
@@ -57,6 +57,44 @@ module Aws::LicenseManager
57
57
  include Aws::Structure
58
58
  end
59
59
 
60
+ # AND rule statement.
61
+ #
62
+ # @!attribute [rw] matching_rule_statements
63
+ # Matching rule statements.
64
+ # @return [Array<Types::MatchingRuleStatement>]
65
+ #
66
+ # @!attribute [rw] script_rule_statements
67
+ # Script rule statements.
68
+ # @return [Array<Types::ScriptRuleStatement>]
69
+ #
70
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/AndRuleStatement AWS API Documentation
71
+ #
72
+ class AndRuleStatement < Struct.new(
73
+ :matching_rule_statements,
74
+ :script_rule_statements)
75
+ SENSITIVE = []
76
+ include Aws::Structure
77
+ end
78
+
79
+ # Asset.
80
+ #
81
+ # @!attribute [rw] asset_arn
82
+ # Amazon Resource Name (ARN) of the asset.
83
+ # @return [String]
84
+ #
85
+ # @!attribute [rw] latest_asset_discovery_time
86
+ # Latest asset discovery time.
87
+ # @return [Time]
88
+ #
89
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/Asset AWS API Documentation
90
+ #
91
+ class Asset < Struct.new(
92
+ :asset_arn,
93
+ :latest_asset_discovery_time)
94
+ SENSITIVE = []
95
+ include Aws::Structure
96
+ end
97
+
60
98
  # The Amazon Web Services user account does not have permission to
61
99
  # perform the action. Check the IAM policy associated with this account.
62
100
  #
@@ -521,6 +559,111 @@ module Aws::LicenseManager
521
559
  include Aws::Structure
522
560
  end
523
561
 
562
+ # @!attribute [rw] name
563
+ # License asset group name.
564
+ # @return [String]
565
+ #
566
+ # @!attribute [rw] description
567
+ # License asset group description.
568
+ # @return [String]
569
+ #
570
+ # @!attribute [rw] license_asset_group_configurations
571
+ # License asset group configurations.
572
+ # @return [Array<Types::LicenseAssetGroupConfiguration>]
573
+ #
574
+ # @!attribute [rw] associated_license_asset_ruleset_arns
575
+ # ARNs of associated license asset rulesets.
576
+ # @return [Array<String>]
577
+ #
578
+ # @!attribute [rw] properties
579
+ # License asset group properties.
580
+ # @return [Array<Types::LicenseAssetGroupProperty>]
581
+ #
582
+ # @!attribute [rw] tags
583
+ # Tags to add to the license asset group.
584
+ # @return [Array<Types::Tag>]
585
+ #
586
+ # @!attribute [rw] client_token
587
+ # Unique, case-sensitive identifier that you provide to ensure the
588
+ # idempotency of the request.
589
+ # @return [String]
590
+ #
591
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CreateLicenseAssetGroupRequest AWS API Documentation
592
+ #
593
+ class CreateLicenseAssetGroupRequest < Struct.new(
594
+ :name,
595
+ :description,
596
+ :license_asset_group_configurations,
597
+ :associated_license_asset_ruleset_arns,
598
+ :properties,
599
+ :tags,
600
+ :client_token)
601
+ SENSITIVE = []
602
+ include Aws::Structure
603
+ end
604
+
605
+ # @!attribute [rw] license_asset_group_arn
606
+ # Amazon Resource Name (ARN) of the license asset group.
607
+ # @return [String]
608
+ #
609
+ # @!attribute [rw] status
610
+ # License asset group status.
611
+ # @return [String]
612
+ #
613
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CreateLicenseAssetGroupResponse AWS API Documentation
614
+ #
615
+ class CreateLicenseAssetGroupResponse < Struct.new(
616
+ :license_asset_group_arn,
617
+ :status)
618
+ SENSITIVE = []
619
+ include Aws::Structure
620
+ end
621
+
622
+ # @!attribute [rw] name
623
+ # License asset ruleset name.
624
+ # @return [String]
625
+ #
626
+ # @!attribute [rw] description
627
+ # License asset ruleset description.
628
+ # @return [String]
629
+ #
630
+ # @!attribute [rw] rules
631
+ # License asset rules.
632
+ # @return [Array<Types::LicenseAssetRule>]
633
+ #
634
+ # @!attribute [rw] tags
635
+ # Tags to add to the license asset ruleset.
636
+ # @return [Array<Types::Tag>]
637
+ #
638
+ # @!attribute [rw] client_token
639
+ # Unique, case-sensitive identifier that you provide to ensure the
640
+ # idempotency of the request.
641
+ # @return [String]
642
+ #
643
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CreateLicenseAssetRulesetRequest AWS API Documentation
644
+ #
645
+ class CreateLicenseAssetRulesetRequest < Struct.new(
646
+ :name,
647
+ :description,
648
+ :rules,
649
+ :tags,
650
+ :client_token)
651
+ SENSITIVE = []
652
+ include Aws::Structure
653
+ end
654
+
655
+ # @!attribute [rw] license_asset_ruleset_arn
656
+ # Amazon Resource Name (ARN) of the license asset ruleset.
657
+ # @return [String]
658
+ #
659
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CreateLicenseAssetRulesetResponse AWS API Documentation
660
+ #
661
+ class CreateLicenseAssetRulesetResponse < Struct.new(
662
+ :license_asset_ruleset_arn)
663
+ SENSITIVE = []
664
+ include Aws::Structure
665
+ end
666
+
524
667
  # @!attribute [rw] name
525
668
  # Name of the license configuration.
526
669
  # @return [String]
@@ -577,6 +720,10 @@ module Aws::LicenseManager
577
720
  # Product information.
578
721
  # @return [Array<Types::ProductInformation>]
579
722
  #
723
+ # @!attribute [rw] license_expiry
724
+ # License configuration expiry.
725
+ # @return [Integer]
726
+ #
580
727
  # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CreateLicenseConfigurationRequest AWS API Documentation
581
728
  #
582
729
  class CreateLicenseConfigurationRequest < Struct.new(
@@ -588,7 +735,8 @@ module Aws::LicenseManager
588
735
  :license_rules,
589
736
  :tags,
590
737
  :disassociate_when_not_found,
591
- :product_information_list)
738
+ :product_information_list,
739
+ :license_expiry)
592
740
  SENSITIVE = []
593
741
  include Aws::Structure
594
742
  end
@@ -965,6 +1113,34 @@ module Aws::LicenseManager
965
1113
  include Aws::Structure
966
1114
  end
967
1115
 
1116
+ # Status information for cross-account discovery service.
1117
+ #
1118
+ # @!attribute [rw] message
1119
+ # Status message for cross-account discovery service.
1120
+ # @return [String]
1121
+ #
1122
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CrossAccountDiscoveryServiceStatus AWS API Documentation
1123
+ #
1124
+ class CrossAccountDiscoveryServiceStatus < Struct.new(
1125
+ :message)
1126
+ SENSITIVE = []
1127
+ include Aws::Structure
1128
+ end
1129
+
1130
+ # Status information for cross-region discovery.
1131
+ #
1132
+ # @!attribute [rw] message
1133
+ # Map of region status messages for cross-region discovery.
1134
+ # @return [Hash<String,Types::RegionStatus>]
1135
+ #
1136
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CrossRegionDiscoveryStatus AWS API Documentation
1137
+ #
1138
+ class CrossRegionDiscoveryStatus < Struct.new(
1139
+ :message)
1140
+ SENSITIVE = []
1141
+ include Aws::Structure
1142
+ end
1143
+
968
1144
  # Describes a time range, in ISO8601-UTC format.
969
1145
  #
970
1146
  # @!attribute [rw] begin
@@ -1028,6 +1204,46 @@ module Aws::LicenseManager
1028
1204
  include Aws::Structure
1029
1205
  end
1030
1206
 
1207
+ # @!attribute [rw] license_asset_group_arn
1208
+ # Amazon Resource Name (ARN) of the license asset group.
1209
+ # @return [String]
1210
+ #
1211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/DeleteLicenseAssetGroupRequest AWS API Documentation
1212
+ #
1213
+ class DeleteLicenseAssetGroupRequest < Struct.new(
1214
+ :license_asset_group_arn)
1215
+ SENSITIVE = []
1216
+ include Aws::Structure
1217
+ end
1218
+
1219
+ # @!attribute [rw] status
1220
+ # License asset group status.
1221
+ # @return [String]
1222
+ #
1223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/DeleteLicenseAssetGroupResponse AWS API Documentation
1224
+ #
1225
+ class DeleteLicenseAssetGroupResponse < Struct.new(
1226
+ :status)
1227
+ SENSITIVE = []
1228
+ include Aws::Structure
1229
+ end
1230
+
1231
+ # @!attribute [rw] license_asset_ruleset_arn
1232
+ # Amazon Resource Name (ARN) of the license asset ruleset.
1233
+ # @return [String]
1234
+ #
1235
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/DeleteLicenseAssetRulesetRequest AWS API Documentation
1236
+ #
1237
+ class DeleteLicenseAssetRulesetRequest < Struct.new(
1238
+ :license_asset_ruleset_arn)
1239
+ SENSITIVE = []
1240
+ include Aws::Structure
1241
+ end
1242
+
1243
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/DeleteLicenseAssetRulesetResponse AWS API Documentation
1244
+ #
1245
+ class DeleteLicenseAssetRulesetResponse < Aws::EmptyStructure; end
1246
+
1031
1247
  # @!attribute [rw] license_configuration_arn
1032
1248
  # ID of the license configuration.
1033
1249
  # @return [String]
@@ -1361,6 +1577,54 @@ module Aws::LicenseManager
1361
1577
  include Aws::Structure
1362
1578
  end
1363
1579
 
1580
+ # @!attribute [rw] license_asset_group_arn
1581
+ # Amazon Resource Name (ARN) of the license asset group.
1582
+ # @return [String]
1583
+ #
1584
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/GetLicenseAssetGroupRequest AWS API Documentation
1585
+ #
1586
+ class GetLicenseAssetGroupRequest < Struct.new(
1587
+ :license_asset_group_arn)
1588
+ SENSITIVE = []
1589
+ include Aws::Structure
1590
+ end
1591
+
1592
+ # @!attribute [rw] license_asset_group
1593
+ # License asset group.
1594
+ # @return [Types::LicenseAssetGroup]
1595
+ #
1596
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/GetLicenseAssetGroupResponse AWS API Documentation
1597
+ #
1598
+ class GetLicenseAssetGroupResponse < Struct.new(
1599
+ :license_asset_group)
1600
+ SENSITIVE = []
1601
+ include Aws::Structure
1602
+ end
1603
+
1604
+ # @!attribute [rw] license_asset_ruleset_arn
1605
+ # Amazon Resource Name (ARN) of the license asset ruleset.
1606
+ # @return [String]
1607
+ #
1608
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/GetLicenseAssetRulesetRequest AWS API Documentation
1609
+ #
1610
+ class GetLicenseAssetRulesetRequest < Struct.new(
1611
+ :license_asset_ruleset_arn)
1612
+ SENSITIVE = []
1613
+ include Aws::Structure
1614
+ end
1615
+
1616
+ # @!attribute [rw] license_asset_ruleset
1617
+ # License asset ruleset.
1618
+ # @return [Types::LicenseAssetRuleset]
1619
+ #
1620
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/GetLicenseAssetRulesetResponse AWS API Documentation
1621
+ #
1622
+ class GetLicenseAssetRulesetResponse < Struct.new(
1623
+ :license_asset_ruleset)
1624
+ SENSITIVE = []
1625
+ include Aws::Structure
1626
+ end
1627
+
1364
1628
  # @!attribute [rw] license_configuration_arn
1365
1629
  # Amazon Resource Name (ARN) of the license configuration.
1366
1630
  # @return [String]
@@ -1441,6 +1705,10 @@ module Aws::LicenseManager
1441
1705
  # When true, disassociates a resource when software is uninstalled.
1442
1706
  # @return [Boolean]
1443
1707
  #
1708
+ # @!attribute [rw] license_expiry
1709
+ # License Expiry.
1710
+ # @return [Integer]
1711
+ #
1444
1712
  # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/GetLicenseConfigurationResponse AWS API Documentation
1445
1713
  #
1446
1714
  class GetLicenseConfigurationResponse < Struct.new(
@@ -1460,7 +1728,8 @@ module Aws::LicenseManager
1460
1728
  :tags,
1461
1729
  :product_information_list,
1462
1730
  :automated_discovery_information,
1463
- :disassociate_when_not_found)
1731
+ :disassociate_when_not_found,
1732
+ :license_expiry)
1464
1733
  SENSITIVE = []
1465
1734
  include Aws::Structure
1466
1735
  end
@@ -1638,6 +1907,18 @@ module Aws::LicenseManager
1638
1907
  # this share.
1639
1908
  # @return [String]
1640
1909
  #
1910
+ # @!attribute [rw] cross_region_discovery_home_region
1911
+ # Cross region discovery home region.
1912
+ # @return [String]
1913
+ #
1914
+ # @!attribute [rw] cross_region_discovery_source_regions
1915
+ # Cross region discovery source regions.
1916
+ # @return [Array<String>]
1917
+ #
1918
+ # @!attribute [rw] service_status
1919
+ # Service status.
1920
+ # @return [Types::ServiceStatus]
1921
+ #
1641
1922
  # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/GetServiceSettingsResponse AWS API Documentation
1642
1923
  #
1643
1924
  class GetServiceSettingsResponse < Struct.new(
@@ -1645,7 +1926,10 @@ module Aws::LicenseManager
1645
1926
  :sns_topic_arn,
1646
1927
  :organization_configuration,
1647
1928
  :enable_cross_accounts_discovery,
1648
- :license_manager_resource_share_arn)
1929
+ :license_manager_resource_share_arn,
1930
+ :cross_region_discovery_home_region,
1931
+ :cross_region_discovery_source_regions,
1932
+ :service_status)
1649
1933
  SENSITIVE = []
1650
1934
  include Aws::Structure
1651
1935
  end
@@ -1799,6 +2083,35 @@ module Aws::LicenseManager
1799
2083
  include Aws::Structure
1800
2084
  end
1801
2085
 
2086
+ # Instance rule statement.
2087
+ #
2088
+ # @!attribute [rw] and_rule_statement
2089
+ # AND rule statement.
2090
+ # @return [Types::AndRuleStatement]
2091
+ #
2092
+ # @!attribute [rw] or_rule_statement
2093
+ # OR rule statement.
2094
+ # @return [Types::OrRuleStatement]
2095
+ #
2096
+ # @!attribute [rw] matching_rule_statement
2097
+ # Matching rule statement.
2098
+ # @return [Types::MatchingRuleStatement]
2099
+ #
2100
+ # @!attribute [rw] script_rule_statement
2101
+ # Script rule statement.
2102
+ # @return [Types::ScriptRuleStatement]
2103
+ #
2104
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/InstanceRuleStatement AWS API Documentation
2105
+ #
2106
+ class InstanceRuleStatement < Struct.new(
2107
+ :and_rule_statement,
2108
+ :or_rule_statement,
2109
+ :matching_rule_statement,
2110
+ :script_rule_statement)
2111
+ SENSITIVE = []
2112
+ include Aws::Structure
2113
+ end
2114
+
1802
2115
  # One or more parameter values are not valid.
1803
2116
  #
1804
2117
  # @!attribute [rw] message
@@ -1980,6 +2293,141 @@ module Aws::LicenseManager
1980
2293
  include Aws::Structure
1981
2294
  end
1982
2295
 
2296
+ # License asset group.
2297
+ #
2298
+ # @!attribute [rw] name
2299
+ # License asset group name.
2300
+ # @return [String]
2301
+ #
2302
+ # @!attribute [rw] description
2303
+ # License asset group description.
2304
+ # @return [String]
2305
+ #
2306
+ # @!attribute [rw] license_asset_group_configurations
2307
+ # License asset group configurations.
2308
+ # @return [Array<Types::LicenseAssetGroupConfiguration>]
2309
+ #
2310
+ # @!attribute [rw] associated_license_asset_ruleset_arns
2311
+ # ARNs of associated license asset rulesets.
2312
+ # @return [Array<String>]
2313
+ #
2314
+ # @!attribute [rw] properties
2315
+ # License asset group properties.
2316
+ # @return [Array<Types::LicenseAssetGroupProperty>]
2317
+ #
2318
+ # @!attribute [rw] license_asset_group_arn
2319
+ # Amazon Resource Name (ARN) of the license asset group.
2320
+ # @return [String]
2321
+ #
2322
+ # @!attribute [rw] status
2323
+ # License asset group status.
2324
+ # @return [String]
2325
+ #
2326
+ # @!attribute [rw] status_message
2327
+ # License asset group status message.
2328
+ # @return [String]
2329
+ #
2330
+ # @!attribute [rw] latest_usage_analysis_time
2331
+ # Latest usage analysis time.
2332
+ # @return [Time]
2333
+ #
2334
+ # @!attribute [rw] latest_resource_discovery_time
2335
+ # Latest resource discovery time.
2336
+ # @return [Time]
2337
+ #
2338
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/LicenseAssetGroup AWS API Documentation
2339
+ #
2340
+ class LicenseAssetGroup < Struct.new(
2341
+ :name,
2342
+ :description,
2343
+ :license_asset_group_configurations,
2344
+ :associated_license_asset_ruleset_arns,
2345
+ :properties,
2346
+ :license_asset_group_arn,
2347
+ :status,
2348
+ :status_message,
2349
+ :latest_usage_analysis_time,
2350
+ :latest_resource_discovery_time)
2351
+ SENSITIVE = []
2352
+ include Aws::Structure
2353
+ end
2354
+
2355
+ # License asset group configuration.
2356
+ #
2357
+ # @!attribute [rw] usage_dimension
2358
+ # License Asset Group Configuration Usage dimension.
2359
+ # @return [String]
2360
+ #
2361
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/LicenseAssetGroupConfiguration AWS API Documentation
2362
+ #
2363
+ class LicenseAssetGroupConfiguration < Struct.new(
2364
+ :usage_dimension)
2365
+ SENSITIVE = []
2366
+ include Aws::Structure
2367
+ end
2368
+
2369
+ # License asset group property.
2370
+ #
2371
+ # @!attribute [rw] key
2372
+ # Property key.
2373
+ # @return [String]
2374
+ #
2375
+ # @!attribute [rw] value
2376
+ # Property value.
2377
+ # @return [String]
2378
+ #
2379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/LicenseAssetGroupProperty AWS API Documentation
2380
+ #
2381
+ class LicenseAssetGroupProperty < Struct.new(
2382
+ :key,
2383
+ :value)
2384
+ SENSITIVE = []
2385
+ include Aws::Structure
2386
+ end
2387
+
2388
+ # License asset rule.
2389
+ #
2390
+ # @!attribute [rw] rule_statement
2391
+ # Rule statement.
2392
+ # @return [Types::RuleStatement]
2393
+ #
2394
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/LicenseAssetRule AWS API Documentation
2395
+ #
2396
+ class LicenseAssetRule < Struct.new(
2397
+ :rule_statement)
2398
+ SENSITIVE = []
2399
+ include Aws::Structure
2400
+ end
2401
+
2402
+ # License asset ruleset.
2403
+ #
2404
+ # @!attribute [rw] name
2405
+ # License asset ruleset name.
2406
+ # @return [String]
2407
+ #
2408
+ # @!attribute [rw] description
2409
+ # License asset ruleset description.
2410
+ # @return [String]
2411
+ #
2412
+ # @!attribute [rw] rules
2413
+ # License asset rules.
2414
+ # @return [Array<Types::LicenseAssetRule>]
2415
+ #
2416
+ # @!attribute [rw] license_asset_ruleset_arn
2417
+ # Amazon Resource Name (ARN) of the license asset ruleset.
2418
+ # @return [String]
2419
+ #
2420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/LicenseAssetRuleset AWS API Documentation
2421
+ #
2422
+ class LicenseAssetRuleset < Struct.new(
2423
+ :name,
2424
+ :description,
2425
+ :rules,
2426
+ :license_asset_ruleset_arn)
2427
+ SENSITIVE = []
2428
+ include Aws::Structure
2429
+ end
2430
+
1983
2431
  # A license configuration is an abstraction of a customer license
1984
2432
  # agreement that can be consumed and enforced by License Manager.
1985
2433
  # Components include specifications for the license type (licensing by
@@ -2052,6 +2500,10 @@ module Aws::LicenseManager
2052
2500
  # Automated discovery information.
2053
2501
  # @return [Types::AutomatedDiscoveryInformation]
2054
2502
  #
2503
+ # @!attribute [rw] license_expiry
2504
+ # License configuration expiry time in Unix timestamp format.
2505
+ # @return [Integer]
2506
+ #
2055
2507
  # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/LicenseConfiguration AWS API Documentation
2056
2508
  #
2057
2509
  class LicenseConfiguration < Struct.new(
@@ -2070,7 +2522,8 @@ module Aws::LicenseManager
2070
2522
  :consumed_license_summary_list,
2071
2523
  :managed_resource_summary_list,
2072
2524
  :product_information_list,
2073
- :automated_discovery_information)
2525
+ :automated_discovery_information,
2526
+ :license_expiry)
2074
2527
  SENSITIVE = []
2075
2528
  include Aws::Structure
2076
2529
  end
@@ -2111,6 +2564,30 @@ module Aws::LicenseManager
2111
2564
  include Aws::Structure
2112
2565
  end
2113
2566
 
2567
+ # License configuration rule statement.
2568
+ #
2569
+ # @!attribute [rw] and_rule_statement
2570
+ # AND rule statement.
2571
+ # @return [Types::AndRuleStatement]
2572
+ #
2573
+ # @!attribute [rw] or_rule_statement
2574
+ # OR rule statement.
2575
+ # @return [Types::OrRuleStatement]
2576
+ #
2577
+ # @!attribute [rw] matching_rule_statement
2578
+ # Matching rule statement.
2579
+ # @return [Types::MatchingRuleStatement]
2580
+ #
2581
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/LicenseConfigurationRuleStatement AWS API Documentation
2582
+ #
2583
+ class LicenseConfigurationRuleStatement < Struct.new(
2584
+ :and_rule_statement,
2585
+ :or_rule_statement,
2586
+ :matching_rule_statement)
2587
+ SENSITIVE = []
2588
+ include Aws::Structure
2589
+ end
2590
+
2114
2591
  # Details about the usage of a resource associated with a license
2115
2592
  # configuration.
2116
2593
  #
@@ -2284,6 +2761,30 @@ module Aws::LicenseManager
2284
2761
  include Aws::Structure
2285
2762
  end
2286
2763
 
2764
+ # License rule statement.
2765
+ #
2766
+ # @!attribute [rw] and_rule_statement
2767
+ # AND rule statement.
2768
+ # @return [Types::AndRuleStatement]
2769
+ #
2770
+ # @!attribute [rw] or_rule_statement
2771
+ # OR rule statement.
2772
+ # @return [Types::OrRuleStatement]
2773
+ #
2774
+ # @!attribute [rw] matching_rule_statement
2775
+ # Matching rule statement.
2776
+ # @return [Types::MatchingRuleStatement]
2777
+ #
2778
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/LicenseRuleStatement AWS API Documentation
2779
+ #
2780
+ class LicenseRuleStatement < Struct.new(
2781
+ :and_rule_statement,
2782
+ :or_rule_statement,
2783
+ :matching_rule_statement)
2784
+ SENSITIVE = []
2785
+ include Aws::Structure
2786
+ end
2787
+
2287
2788
  # Details for associating a license configuration with a resource.
2288
2789
  #
2289
2790
  # @!attribute [rw] license_configuration_arn
@@ -2331,6 +2832,51 @@ module Aws::LicenseManager
2331
2832
  include Aws::Structure
2332
2833
  end
2333
2834
 
2835
+ # @!attribute [rw] license_asset_group_arn
2836
+ # Amazon Resource Name (ARN) of the license asset group.
2837
+ # @return [String]
2838
+ #
2839
+ # @!attribute [rw] asset_type
2840
+ # Asset type. The possible values are `Instance` \| `License` \|
2841
+ # `LicenseConfiguration`.
2842
+ # @return [String]
2843
+ #
2844
+ # @!attribute [rw] max_results
2845
+ # Maximum number of results to return in a single call.
2846
+ # @return [Integer]
2847
+ #
2848
+ # @!attribute [rw] next_token
2849
+ # Token for the next set of results.
2850
+ # @return [String]
2851
+ #
2852
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListAssetsForLicenseAssetGroupRequest AWS API Documentation
2853
+ #
2854
+ class ListAssetsForLicenseAssetGroupRequest < Struct.new(
2855
+ :license_asset_group_arn,
2856
+ :asset_type,
2857
+ :max_results,
2858
+ :next_token)
2859
+ SENSITIVE = []
2860
+ include Aws::Structure
2861
+ end
2862
+
2863
+ # @!attribute [rw] assets
2864
+ # Assets.
2865
+ # @return [Array<Types::Asset>]
2866
+ #
2867
+ # @!attribute [rw] next_token
2868
+ # Token for the next set of results.
2869
+ # @return [String]
2870
+ #
2871
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListAssetsForLicenseAssetGroupResponse AWS API Documentation
2872
+ #
2873
+ class ListAssetsForLicenseAssetGroupResponse < Struct.new(
2874
+ :assets,
2875
+ :next_token)
2876
+ SENSITIVE = []
2877
+ include Aws::Structure
2878
+ end
2879
+
2334
2880
  # @!attribute [rw] license_configuration_arn
2335
2881
  # Amazon Resource Name (ARN) of a license configuration.
2336
2882
  # @return [String]
@@ -2463,6 +3009,142 @@ module Aws::LicenseManager
2463
3009
  include Aws::Structure
2464
3010
  end
2465
3011
 
3012
+ # @!attribute [rw] filters
3013
+ # Filters to scope the results. Following filters are supported
3014
+ #
3015
+ # * `LicenseAssetRulesetArn`
3016
+ #
3017
+ # ^
3018
+ # @return [Array<Types::Filter>]
3019
+ #
3020
+ # @!attribute [rw] max_results
3021
+ # Maximum number of results to return in a single call.
3022
+ # @return [Integer]
3023
+ #
3024
+ # @!attribute [rw] next_token
3025
+ # Token for the next set of results.
3026
+ # @return [String]
3027
+ #
3028
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseAssetGroupsRequest AWS API Documentation
3029
+ #
3030
+ class ListLicenseAssetGroupsRequest < Struct.new(
3031
+ :filters,
3032
+ :max_results,
3033
+ :next_token)
3034
+ SENSITIVE = []
3035
+ include Aws::Structure
3036
+ end
3037
+
3038
+ # @!attribute [rw] license_asset_groups
3039
+ # License asset groups.
3040
+ # @return [Array<Types::LicenseAssetGroup>]
3041
+ #
3042
+ # @!attribute [rw] next_token
3043
+ # Token for the next set of results.
3044
+ # @return [String]
3045
+ #
3046
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseAssetGroupsResponse AWS API Documentation
3047
+ #
3048
+ class ListLicenseAssetGroupsResponse < Struct.new(
3049
+ :license_asset_groups,
3050
+ :next_token)
3051
+ SENSITIVE = []
3052
+ include Aws::Structure
3053
+ end
3054
+
3055
+ # @!attribute [rw] filters
3056
+ # Filters to scope the results. Following filters are supported
3057
+ #
3058
+ # * `Name`
3059
+ #
3060
+ # ^
3061
+ # @return [Array<Types::Filter>]
3062
+ #
3063
+ # @!attribute [rw] show_aws_managed_license_asset_rulesets
3064
+ # Specifies whether to show License Manager managed license asset
3065
+ # rulesets.
3066
+ # @return [Boolean]
3067
+ #
3068
+ # @!attribute [rw] max_results
3069
+ # Maximum number of results to return in a single call.
3070
+ # @return [Integer]
3071
+ #
3072
+ # @!attribute [rw] next_token
3073
+ # Token for the next set of results.
3074
+ # @return [String]
3075
+ #
3076
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseAssetRulesetsRequest AWS API Documentation
3077
+ #
3078
+ class ListLicenseAssetRulesetsRequest < Struct.new(
3079
+ :filters,
3080
+ :show_aws_managed_license_asset_rulesets,
3081
+ :max_results,
3082
+ :next_token)
3083
+ SENSITIVE = []
3084
+ include Aws::Structure
3085
+ end
3086
+
3087
+ # @!attribute [rw] license_asset_rulesets
3088
+ # License asset rulesets.
3089
+ # @return [Array<Types::LicenseAssetRuleset>]
3090
+ #
3091
+ # @!attribute [rw] next_token
3092
+ # Token for the next set of results.
3093
+ # @return [String]
3094
+ #
3095
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseAssetRulesetsResponse AWS API Documentation
3096
+ #
3097
+ class ListLicenseAssetRulesetsResponse < Struct.new(
3098
+ :license_asset_rulesets,
3099
+ :next_token)
3100
+ SENSITIVE = []
3101
+ include Aws::Structure
3102
+ end
3103
+
3104
+ # @!attribute [rw] license_configuration_arns
3105
+ # License configuration ARNs.
3106
+ # @return [Array<String>]
3107
+ #
3108
+ # @!attribute [rw] max_results
3109
+ # Maximum number of results to return in a single call.
3110
+ # @return [Integer]
3111
+ #
3112
+ # @!attribute [rw] next_token
3113
+ # Token for the next set of results.
3114
+ # @return [String]
3115
+ #
3116
+ # @!attribute [rw] filters
3117
+ # Filters to scope the results.
3118
+ # @return [Array<Types::Filter>]
3119
+ #
3120
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseConfigurationsForOrganizationRequest AWS API Documentation
3121
+ #
3122
+ class ListLicenseConfigurationsForOrganizationRequest < Struct.new(
3123
+ :license_configuration_arns,
3124
+ :max_results,
3125
+ :next_token,
3126
+ :filters)
3127
+ SENSITIVE = []
3128
+ include Aws::Structure
3129
+ end
3130
+
3131
+ # @!attribute [rw] license_configurations
3132
+ # License configurations.
3133
+ # @return [Array<Types::LicenseConfiguration>]
3134
+ #
3135
+ # @!attribute [rw] next_token
3136
+ # Token for the next set of results.
3137
+ # @return [String]
3138
+ #
3139
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseConfigurationsForOrganizationResponse AWS API Documentation
3140
+ #
3141
+ class ListLicenseConfigurationsForOrganizationResponse < Struct.new(
3142
+ :license_configurations,
3143
+ :next_token)
3144
+ SENSITIVE = []
3145
+ include Aws::Structure
3146
+ end
3147
+
2466
3148
  # @!attribute [rw] license_configuration_arns
2467
3149
  # Amazon Resource Names (ARN) of the license configurations.
2468
3150
  # @return [Array<String>]
@@ -3136,6 +3818,90 @@ module Aws::LicenseManager
3136
3818
  include Aws::Structure
3137
3819
  end
3138
3820
 
3821
+ # Matching rule statement.
3822
+ #
3823
+ # @!attribute [rw] key_to_match
3824
+ # Key to match.
3825
+ #
3826
+ # The following keys and are supported when the RuleStatement type is
3827
+ # `Instance`:
3828
+ #
3829
+ # * `Platform` - The name of the platform. Logical operators are
3830
+ # `EQUALS` and `NOT_EQUALS`.
3831
+ #
3832
+ # * `EC2BillingProduct` - The billing product code. Logical operators
3833
+ # are `EQUALS` and `NOT_EQUALS`. Possible values are:
3834
+ # `windows-server-enterprise` \| `windows-byol` \| `rhel` \|
3835
+ # `rhel-byol` \| `rhel-high-availability` \| `ubuntu-pro` \|
3836
+ # `suse-linux` \| `sql-server-standard` \| `sql-server-enterprise`.
3837
+ #
3838
+ # * `MarketPlaceProductCode` - The Marketplace product code. Logical
3839
+ # operators are `EQUALS` and `NOT_EQUALS`.
3840
+ #
3841
+ # * `AMIId` - The ID of the AMI. Logical operators are `EQUALS` and
3842
+ # `NOT_EQUALS`.
3843
+ #
3844
+ # * `InstanceType` - The instance type. Logical operators are `EQUALS`
3845
+ # and `NOT_EQUALS`.
3846
+ #
3847
+ # * `InstanceId` - The ID of the instance. Logical operators are
3848
+ # `EQUALS` and `NOT_EQUALS`.
3849
+ #
3850
+ # * `HostId` - The ID of the host. Logical operators are `EQUALS` and
3851
+ # `NOT_EQUALS`.
3852
+ #
3853
+ # * `AccountId` - The ID of the account. Logical operators are
3854
+ # `EQUALS` and `NOT_EQUALS`.
3855
+ #
3856
+ # The following keys and are supported when the RuleStatement type is
3857
+ # `License`:
3858
+ #
3859
+ # * `LicenseArn` - The ARN of a Managed Entitlement License. Logical
3860
+ # operators are `EQUALS` and `NOT_EQUALS`.
3861
+ #
3862
+ # * `ProductSKU` - The productSKU of the license. Logical operators
3863
+ # are `EQUALS` and `NOT_EQUALS`.
3864
+ #
3865
+ # * `Issuer` - The issuer of the license. Logical operators are
3866
+ # `EQUALS` and `NOT_EQUALS`.
3867
+ #
3868
+ # * `Beneficiary` - The beneficiary of the license. Logical operators
3869
+ # are `EQUALS` and `NOT_EQUALS`.
3870
+ #
3871
+ # * `LicenseStatus` - The status of the license. Logical operators are
3872
+ # `EQUALS` and `NOT_EQUALS`.
3873
+ #
3874
+ # * `HomeRegion` - The home region of the license. Logical operators
3875
+ # are `EQUALS` and `NOT_EQUALS`.
3876
+ #
3877
+ # The following keys and are supported when the RuleStatement type is
3878
+ # `License Configuration`:
3879
+ #
3880
+ # * `LicenseConfigurationArn` - The ARN of a self-managed license
3881
+ # configuration. Logical operators are `EQUALS` and `NOT_EQUALS`.
3882
+ #
3883
+ # * `AccountId` - The account of the license configuration. Logical
3884
+ # operators are `EQUALS` and `NOT_EQUALS`.
3885
+ # @return [String]
3886
+ #
3887
+ # @!attribute [rw] constraint
3888
+ # Constraint.
3889
+ # @return [String]
3890
+ #
3891
+ # @!attribute [rw] value_to_match
3892
+ # Value to match.
3893
+ # @return [Array<String>]
3894
+ #
3895
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/MatchingRuleStatement AWS API Documentation
3896
+ #
3897
+ class MatchingRuleStatement < Struct.new(
3898
+ :key_to_match,
3899
+ :constraint,
3900
+ :value_to_match)
3901
+ SENSITIVE = []
3902
+ include Aws::Structure
3903
+ end
3904
+
3139
3905
  # Describes key/value pairs.
3140
3906
  #
3141
3907
  # @!attribute [rw] name
@@ -3217,6 +3983,25 @@ module Aws::LicenseManager
3217
3983
  include Aws::Structure
3218
3984
  end
3219
3985
 
3986
+ # OR rule statement.
3987
+ #
3988
+ # @!attribute [rw] matching_rule_statements
3989
+ # Matching rule statements.
3990
+ # @return [Array<Types::MatchingRuleStatement>]
3991
+ #
3992
+ # @!attribute [rw] script_rule_statements
3993
+ # Script rule statements.
3994
+ # @return [Array<Types::ScriptRuleStatement>]
3995
+ #
3996
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/OrRuleStatement AWS API Documentation
3997
+ #
3998
+ class OrRuleStatement < Struct.new(
3999
+ :matching_rule_statements,
4000
+ :script_rule_statements)
4001
+ SENSITIVE = []
4002
+ include Aws::Structure
4003
+ end
4004
+
3220
4005
  # Configuration information for Organizations.
3221
4006
  #
3222
4007
  # @!attribute [rw] enable_integration
@@ -3414,6 +4199,20 @@ module Aws::LicenseManager
3414
4199
  include Aws::Structure
3415
4200
  end
3416
4201
 
4202
+ # Status information for a specific region.
4203
+ #
4204
+ # @!attribute [rw] status
4205
+ # Status value for the region.
4206
+ # @return [String]
4207
+ #
4208
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/RegionStatus AWS API Documentation
4209
+ #
4210
+ class RegionStatus < Struct.new(
4211
+ :status)
4212
+ SENSITIVE = []
4213
+ include Aws::Structure
4214
+ end
4215
+
3417
4216
  # @!attribute [rw] grant_arn
3418
4217
  # Amazon Resource Name (ARN) of the grant.
3419
4218
  # @return [String]
@@ -3455,10 +4254,26 @@ module Aws::LicenseManager
3455
4254
  # generator reports on.
3456
4255
  # @return [Array<String>]
3457
4256
  #
4257
+ # @!attribute [rw] license_asset_group_arns
4258
+ # Amazon Resource Names (ARNs) of the license asset groups to include
4259
+ # in the report.
4260
+ # @return [Array<String>]
4261
+ #
4262
+ # @!attribute [rw] report_start_date
4263
+ # Start date for the report data collection period.
4264
+ # @return [Time]
4265
+ #
4266
+ # @!attribute [rw] report_end_date
4267
+ # End date for the report data collection period.
4268
+ # @return [Time]
4269
+ #
3458
4270
  # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ReportContext AWS API Documentation
3459
4271
  #
3460
4272
  class ReportContext < Struct.new(
3461
- :license_configuration_arns)
4273
+ :license_configuration_arns,
4274
+ :license_asset_group_arns,
4275
+ :report_start_date,
4276
+ :report_end_date)
3462
4277
  SENSITIVE = []
3463
4278
  include Aws::Structure
3464
4279
  end
@@ -3586,6 +4401,31 @@ module Aws::LicenseManager
3586
4401
  # ID of the account that owns the resource.
3587
4402
  # @return [String]
3588
4403
  #
4404
+ # @!attribute [rw] marketplace_product_codes
4405
+ # List of Marketplace product codes associated with the resource.
4406
+ # @return [Array<String>]
4407
+ #
4408
+ # @!attribute [rw] usage_operation
4409
+ # Usage operation value that corresponds to the license type for
4410
+ # billing purposes.
4411
+ # @return [String]
4412
+ #
4413
+ # @!attribute [rw] ami_id
4414
+ # Amazon Machine Image (AMI) ID associated with the resource.
4415
+ # @return [String]
4416
+ #
4417
+ # @!attribute [rw] host_id
4418
+ # Dedicated Host ID where the resource is running.
4419
+ # @return [String]
4420
+ #
4421
+ # @!attribute [rw] region
4422
+ # Region where the resource is located.
4423
+ # @return [String]
4424
+ #
4425
+ # @!attribute [rw] instance_type
4426
+ # EC2 instance type of the resource.
4427
+ # @return [String]
4428
+ #
3589
4429
  # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ResourceInventory AWS API Documentation
3590
4430
  #
3591
4431
  class ResourceInventory < Struct.new(
@@ -3594,7 +4434,13 @@ module Aws::LicenseManager
3594
4434
  :resource_arn,
3595
4435
  :platform,
3596
4436
  :platform_version,
3597
- :resource_owning_account_id)
4437
+ :resource_owning_account_id,
4438
+ :marketplace_product_codes,
4439
+ :usage_operation,
4440
+ :ami_id,
4441
+ :host_id,
4442
+ :region,
4443
+ :instance_type)
3598
4444
  SENSITIVE = []
3599
4445
  include Aws::Structure
3600
4446
  end
@@ -3625,6 +4471,30 @@ module Aws::LicenseManager
3625
4471
  include Aws::Structure
3626
4472
  end
3627
4473
 
4474
+ # Rule statement.
4475
+ #
4476
+ # @!attribute [rw] license_configuration_rule_statement
4477
+ # License configuration rule statement.
4478
+ # @return [Types::LicenseConfigurationRuleStatement]
4479
+ #
4480
+ # @!attribute [rw] license_rule_statement
4481
+ # License rule statement.
4482
+ # @return [Types::LicenseRuleStatement]
4483
+ #
4484
+ # @!attribute [rw] instance_rule_statement
4485
+ # Instance rule statement.
4486
+ # @return [Types::InstanceRuleStatement]
4487
+ #
4488
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/RuleStatement AWS API Documentation
4489
+ #
4490
+ class RuleStatement < Struct.new(
4491
+ :license_configuration_rule_statement,
4492
+ :license_rule_statement,
4493
+ :instance_rule_statement)
4494
+ SENSITIVE = []
4495
+ include Aws::Structure
4496
+ end
4497
+
3628
4498
  # Details of the S3 bucket that report generator reports are published
3629
4499
  # to.
3630
4500
  #
@@ -3645,6 +4515,26 @@ module Aws::LicenseManager
3645
4515
  include Aws::Structure
3646
4516
  end
3647
4517
 
4518
+ # Rule statement that uses a script to evaluate license asset
4519
+ # conditions.
4520
+ #
4521
+ # @!attribute [rw] key_to_match
4522
+ # Key name to match against in the script rule evaluation.
4523
+ # @return [String]
4524
+ #
4525
+ # @!attribute [rw] script
4526
+ # Script code used to evaluate the rule condition.
4527
+ # @return [String]
4528
+ #
4529
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ScriptRuleStatement AWS API Documentation
4530
+ #
4531
+ class ScriptRuleStatement < Struct.new(
4532
+ :key_to_match,
4533
+ :script)
4534
+ SENSITIVE = []
4535
+ include Aws::Structure
4536
+ end
4537
+
3648
4538
  # The server experienced an internal error. Try again.
3649
4539
  #
3650
4540
  # @!attribute [rw] message
@@ -3658,6 +4548,25 @@ module Aws::LicenseManager
3658
4548
  include Aws::Structure
3659
4549
  end
3660
4550
 
4551
+ # Overall service status information for License Manager.
4552
+ #
4553
+ # @!attribute [rw] cross_account_discovery
4554
+ # Status of cross-account discovery service.
4555
+ # @return [Types::CrossAccountDiscoveryServiceStatus]
4556
+ #
4557
+ # @!attribute [rw] cross_region_discovery
4558
+ # Status of cross-region discovery service.
4559
+ # @return [Types::CrossRegionDiscoveryStatus]
4560
+ #
4561
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ServiceStatus AWS API Documentation
4562
+ #
4563
+ class ServiceStatus < Struct.new(
4564
+ :cross_account_discovery,
4565
+ :cross_region_discovery)
4566
+ SENSITIVE = []
4567
+ include Aws::Structure
4568
+ end
4569
+
3661
4570
  # Details about the tags for a resource. For more information about
3662
4571
  # tagging support in License Manager, see the [TagResource][1]
3663
4572
  # operation.
@@ -3796,6 +4705,117 @@ module Aws::LicenseManager
3796
4705
  #
3797
4706
  class UntagResourceResponse < Aws::EmptyStructure; end
3798
4707
 
4708
+ # @!attribute [rw] name
4709
+ # License asset group name.
4710
+ # @return [String]
4711
+ #
4712
+ # @!attribute [rw] description
4713
+ # License asset group description.
4714
+ # @return [String]
4715
+ #
4716
+ # @!attribute [rw] license_asset_group_configurations
4717
+ # License asset group configurations.
4718
+ # @return [Array<Types::LicenseAssetGroupConfiguration>]
4719
+ #
4720
+ # @!attribute [rw] associated_license_asset_ruleset_arns
4721
+ # ARNs of associated license asset rulesets.
4722
+ # @return [Array<String>]
4723
+ #
4724
+ # @!attribute [rw] properties
4725
+ # License asset group properties.
4726
+ # @return [Array<Types::LicenseAssetGroupProperty>]
4727
+ #
4728
+ # @!attribute [rw] license_asset_group_arn
4729
+ # Amazon Resource Name (ARN) of the license asset group.
4730
+ # @return [String]
4731
+ #
4732
+ # @!attribute [rw] status
4733
+ # License asset group status. The possible values are `ACTIVE` \|
4734
+ # `DISABLED`.
4735
+ # @return [String]
4736
+ #
4737
+ # @!attribute [rw] client_token
4738
+ # Unique, case-sensitive identifier that you provide to ensure the
4739
+ # idempotency of the request.
4740
+ # @return [String]
4741
+ #
4742
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/UpdateLicenseAssetGroupRequest AWS API Documentation
4743
+ #
4744
+ class UpdateLicenseAssetGroupRequest < Struct.new(
4745
+ :name,
4746
+ :description,
4747
+ :license_asset_group_configurations,
4748
+ :associated_license_asset_ruleset_arns,
4749
+ :properties,
4750
+ :license_asset_group_arn,
4751
+ :status,
4752
+ :client_token)
4753
+ SENSITIVE = []
4754
+ include Aws::Structure
4755
+ end
4756
+
4757
+ # @!attribute [rw] license_asset_group_arn
4758
+ # Amazon Resource Name (ARN) of the license asset group.
4759
+ # @return [String]
4760
+ #
4761
+ # @!attribute [rw] status
4762
+ # License asset group status.
4763
+ # @return [String]
4764
+ #
4765
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/UpdateLicenseAssetGroupResponse AWS API Documentation
4766
+ #
4767
+ class UpdateLicenseAssetGroupResponse < Struct.new(
4768
+ :license_asset_group_arn,
4769
+ :status)
4770
+ SENSITIVE = []
4771
+ include Aws::Structure
4772
+ end
4773
+
4774
+ # @!attribute [rw] name
4775
+ # License asset ruleset name.
4776
+ # @return [String]
4777
+ #
4778
+ # @!attribute [rw] description
4779
+ # License asset ruleset description.
4780
+ # @return [String]
4781
+ #
4782
+ # @!attribute [rw] rules
4783
+ # License asset rules.
4784
+ # @return [Array<Types::LicenseAssetRule>]
4785
+ #
4786
+ # @!attribute [rw] license_asset_ruleset_arn
4787
+ # Amazon Resource Name (ARN) of the license asset ruleset.
4788
+ # @return [String]
4789
+ #
4790
+ # @!attribute [rw] client_token
4791
+ # Unique, case-sensitive identifier that you provide to ensure the
4792
+ # idempotency of the request.
4793
+ # @return [String]
4794
+ #
4795
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/UpdateLicenseAssetRulesetRequest AWS API Documentation
4796
+ #
4797
+ class UpdateLicenseAssetRulesetRequest < Struct.new(
4798
+ :name,
4799
+ :description,
4800
+ :rules,
4801
+ :license_asset_ruleset_arn,
4802
+ :client_token)
4803
+ SENSITIVE = []
4804
+ include Aws::Structure
4805
+ end
4806
+
4807
+ # @!attribute [rw] license_asset_ruleset_arn
4808
+ # Amazon Resource Name (ARN) of the license asset ruleset.
4809
+ # @return [String]
4810
+ #
4811
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/UpdateLicenseAssetRulesetResponse AWS API Documentation
4812
+ #
4813
+ class UpdateLicenseAssetRulesetResponse < Struct.new(
4814
+ :license_asset_ruleset_arn)
4815
+ SENSITIVE = []
4816
+ include Aws::Structure
4817
+ end
4818
+
3799
4819
  # @!attribute [rw] license_configuration_arn
3800
4820
  # Amazon Resource Name (ARN) of the license configuration.
3801
4821
  # @return [String]
@@ -3833,6 +4853,10 @@ module Aws::LicenseManager
3833
4853
  # When true, disassociates a resource when software is uninstalled.
3834
4854
  # @return [Boolean]
3835
4855
  #
4856
+ # @!attribute [rw] license_expiry
4857
+ # License configuration expiry time.
4858
+ # @return [Integer]
4859
+ #
3836
4860
  # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/UpdateLicenseConfigurationRequest AWS API Documentation
3837
4861
  #
3838
4862
  class UpdateLicenseConfigurationRequest < Struct.new(
@@ -3844,7 +4868,8 @@ module Aws::LicenseManager
3844
4868
  :name,
3845
4869
  :description,
3846
4870
  :product_information_list,
3847
- :disassociate_when_not_found)
4871
+ :disassociate_when_not_found,
4872
+ :license_expiry)
3848
4873
  SENSITIVE = []
3849
4874
  include Aws::Structure
3850
4875
  end
@@ -3951,13 +4976,18 @@ module Aws::LicenseManager
3951
4976
  # Activates cross-account discovery.
3952
4977
  # @return [Boolean]
3953
4978
  #
4979
+ # @!attribute [rw] enabled_discovery_source_regions
4980
+ # Cross region discovery enabled source regions.
4981
+ # @return [Array<String>]
4982
+ #
3954
4983
  # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/UpdateServiceSettingsRequest AWS API Documentation
3955
4984
  #
3956
4985
  class UpdateServiceSettingsRequest < Struct.new(
3957
4986
  :s3_bucket_arn,
3958
4987
  :sns_topic_arn,
3959
4988
  :organization_configuration,
3960
- :enable_cross_accounts_discovery)
4989
+ :enable_cross_accounts_discovery,
4990
+ :enabled_discovery_source_regions)
3961
4991
  SENSITIVE = []
3962
4992
  include Aws::Structure
3963
4993
  end