aws-sdk-licensemanager 1.26.0 → 1.27.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a66b72915ee294bc8928b635ae40f76a764bc1ae1fb4645abcdb26b574a1c96
4
- data.tar.gz: b7deca2d69a90680ad8a04e6d64775f0e34e21e3ee5fefbec7d06afbd45246e5
3
+ metadata.gz: ff0f0e545b9aca1f1f42c6c4520846fdaed8f8f43c35b0c84ed4ed80a60b154b
4
+ data.tar.gz: d366f85ecef898bfd0fdffa7937d2af09d6f85fa6199a6e0b406340a3efd3458
5
5
  SHA512:
6
- metadata.gz: c3ff4221b51ca280e1bc3773383c9df5ab7cc09548de5cdda58daa01101e46495844f59fec984788c10177c366c10e5d95838867475611dfee2cdecd71500d82
7
- data.tar.gz: e85abf6cc2c996fcb4e86dff4537ef44f2f62b212cc56ff9c90d69bef87099ce0b9df9014fe5f83666516bd396badf8941bcc38fd2963d946e5bf8f86896da05
6
+ metadata.gz: 1736e60e768f9b933d1075277703b018453b4be0d1719aef95c6757ac76b490f8e0955f51e79187c3db465d0d0f41a6c99c350e6ad12b00235cb858f3809adeb
7
+ data.tar.gz: 50e3f4d2b91ec620235dc8c04074e137cef8e32e4931454739f494f3d1a0e19600a522235efa49f3fbd1a78eb54b65672a4e59d6e0ccfc10c28ef475869fb5e3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2021-05-18)
5
+ ------------------
6
+
7
+ * Feature - AWS License Manager now supports periodic report generation.
8
+
4
9
  1.26.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.27.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-licensemanager/customizations'
48
48
  # @!group service
49
49
  module Aws::LicenseManager
50
50
 
51
- GEM_VERSION = '1.26.0'
51
+ GEM_VERSION = '1.27.0'
52
52
 
53
53
  end
@@ -873,6 +873,77 @@ module Aws::LicenseManager
873
873
  req.send_request(options)
874
874
  end
875
875
 
876
+ # Creates a new report generator.
877
+ #
878
+ # @option params [required, String] :report_generator_name
879
+ # Name of the report generator.
880
+ #
881
+ # @option params [required, Array<String>] :type
882
+ # Type of reports to generate. The following report types an be
883
+ # generated:
884
+ #
885
+ # * License configuration report - Reports on the number and details of
886
+ # consumed licenses for a license configuration.
887
+ #
888
+ # * Resource report - Reports on the tracked licenses and resource
889
+ # consumption for a license configuration.
890
+ #
891
+ # @option params [required, Types::ReportContext] :report_context
892
+ # Defines the type of license configuration the report generator tracks.
893
+ #
894
+ # @option params [required, Types::ReportFrequency] :report_frequency
895
+ # Frequency by which reports are generated. Reports can be generated
896
+ # daily, monthly, or weekly.
897
+ #
898
+ # @option params [required, String] :client_token
899
+ # Unique, case-sensitive identifier that you provide to ensure the
900
+ # idempotency of the request.
901
+ #
902
+ # @option params [String] :description
903
+ # Description of the report generator.
904
+ #
905
+ # @option params [Array<Types::Tag>] :tags
906
+ # Tags to add to the report generator.
907
+ #
908
+ # @return [Types::CreateLicenseManagerReportGeneratorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
909
+ #
910
+ # * {Types::CreateLicenseManagerReportGeneratorResponse#license_manager_report_generator_arn #license_manager_report_generator_arn} => String
911
+ #
912
+ # @example Request syntax with placeholder values
913
+ #
914
+ # resp = client.create_license_manager_report_generator({
915
+ # report_generator_name: "ReportGeneratorName", # required
916
+ # type: ["LicenseConfigurationSummaryReport"], # required, accepts LicenseConfigurationSummaryReport, LicenseConfigurationUsageReport
917
+ # report_context: { # required
918
+ # license_configuration_arns: ["Arn"], # required
919
+ # },
920
+ # report_frequency: { # required
921
+ # value: 1,
922
+ # period: "DAY", # accepts DAY, WEEK, MONTH
923
+ # },
924
+ # client_token: "ClientRequestToken", # required
925
+ # description: "String",
926
+ # tags: [
927
+ # {
928
+ # key: "String",
929
+ # value: "String",
930
+ # },
931
+ # ],
932
+ # })
933
+ #
934
+ # @example Response structure
935
+ #
936
+ # resp.license_manager_report_generator_arn #=> String
937
+ #
938
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/CreateLicenseManagerReportGenerator AWS API Documentation
939
+ #
940
+ # @overload create_license_manager_report_generator(params = {})
941
+ # @param [Hash] params ({})
942
+ def create_license_manager_report_generator(params = {}, options = {})
943
+ req = build_request(:create_license_manager_report_generator, params)
944
+ req.send_request(options)
945
+ end
946
+
876
947
  # Creates a new version of the specified license.
877
948
  #
878
949
  # @option params [required, String] :license_arn
@@ -1133,6 +1204,33 @@ module Aws::LicenseManager
1133
1204
  req.send_request(options)
1134
1205
  end
1135
1206
 
1207
+ # Delete an existing report generator.
1208
+ #
1209
+ # This action deletes the report generator, which stops it from
1210
+ # generating future reports and cannot be reversed. However, the
1211
+ # previous reports from this generator will remain in your S3 bucket.
1212
+ #
1213
+ # @option params [required, String] :license_manager_report_generator_arn
1214
+ # Amazon Resource Number (ARN) of the report generator that will be
1215
+ # deleted.
1216
+ #
1217
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1218
+ #
1219
+ # @example Request syntax with placeholder values
1220
+ #
1221
+ # resp = client.delete_license_manager_report_generator({
1222
+ # license_manager_report_generator_arn: "String", # required
1223
+ # })
1224
+ #
1225
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/DeleteLicenseManagerReportGenerator AWS API Documentation
1226
+ #
1227
+ # @overload delete_license_manager_report_generator(params = {})
1228
+ # @param [Hash] params ({})
1229
+ def delete_license_manager_report_generator(params = {}, options = {})
1230
+ req = build_request(:delete_license_manager_report_generator, params)
1231
+ req.send_request(options)
1232
+ end
1233
+
1136
1234
  # Deletes the specified token. Must be called in the license home
1137
1235
  # Region.
1138
1236
  #
@@ -1399,6 +1497,53 @@ module Aws::LicenseManager
1399
1497
  req.send_request(options)
1400
1498
  end
1401
1499
 
1500
+ # Gets information on the specified report generator.
1501
+ #
1502
+ # @option params [required, String] :license_manager_report_generator_arn
1503
+ # mazon Resource Number (ARN) of the report generator to retrieve
1504
+ # information on.
1505
+ #
1506
+ # @return [Types::GetLicenseManagerReportGeneratorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1507
+ #
1508
+ # * {Types::GetLicenseManagerReportGeneratorResponse#report_generator #report_generator} => Types::ReportGenerator
1509
+ #
1510
+ # @example Request syntax with placeholder values
1511
+ #
1512
+ # resp = client.get_license_manager_report_generator({
1513
+ # license_manager_report_generator_arn: "String", # required
1514
+ # })
1515
+ #
1516
+ # @example Response structure
1517
+ #
1518
+ # resp.report_generator.report_generator_name #=> String
1519
+ # resp.report_generator.report_type #=> Array
1520
+ # resp.report_generator.report_type[0] #=> String, one of "LicenseConfigurationSummaryReport", "LicenseConfigurationUsageReport"
1521
+ # resp.report_generator.report_context.license_configuration_arns #=> Array
1522
+ # resp.report_generator.report_context.license_configuration_arns[0] #=> String
1523
+ # resp.report_generator.report_frequency.value #=> Integer
1524
+ # resp.report_generator.report_frequency.period #=> String, one of "DAY", "WEEK", "MONTH"
1525
+ # resp.report_generator.license_manager_report_generator_arn #=> String
1526
+ # resp.report_generator.last_run_status #=> String
1527
+ # resp.report_generator.last_run_failure_reason #=> String
1528
+ # resp.report_generator.last_report_generation_time #=> String
1529
+ # resp.report_generator.report_creator_account #=> String
1530
+ # resp.report_generator.description #=> String
1531
+ # resp.report_generator.s3_location.bucket #=> String
1532
+ # resp.report_generator.s3_location.key_prefix #=> String
1533
+ # resp.report_generator.create_time #=> String
1534
+ # resp.report_generator.tags #=> Array
1535
+ # resp.report_generator.tags[0].key #=> String
1536
+ # resp.report_generator.tags[0].value #=> String
1537
+ #
1538
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/GetLicenseManagerReportGenerator AWS API Documentation
1539
+ #
1540
+ # @overload get_license_manager_report_generator(params = {})
1541
+ # @param [Hash] params ({})
1542
+ def get_license_manager_report_generator(params = {}, options = {})
1543
+ req = build_request(:get_license_manager_report_generator, params)
1544
+ req.send_request(options)
1545
+ end
1546
+
1402
1547
  # Gets detailed information about the usage of the specified license.
1403
1548
  #
1404
1549
  # @option params [required, String] :license_arn
@@ -1514,13 +1659,15 @@ module Aws::LicenseManager
1514
1659
  # @option params [Array<Types::Filter>] :filters
1515
1660
  # Filters to scope the results. The following filters are supported:
1516
1661
  #
1517
- # * `LicenseARN`
1662
+ # * `LicenseArn`
1518
1663
  #
1519
- # * `Status`
1664
+ # * `GrantStatus`
1520
1665
  #
1521
- # * `PrincipalARN`
1666
+ # * `GranteePrincipalARN`
1522
1667
  #
1523
- # * `ParentARN`
1668
+ # * `ProductSKU`
1669
+ #
1670
+ # * `LicenseIssuerName`
1524
1671
  #
1525
1672
  # @option params [String] :next_token
1526
1673
  # Token for the next set of results.
@@ -1707,6 +1854,72 @@ module Aws::LicenseManager
1707
1854
  req.send_request(options)
1708
1855
  end
1709
1856
 
1857
+ # Lists the report generators for your account.
1858
+ #
1859
+ # @option params [Array<Types::Filter>] :filters
1860
+ # Filters to scope the results. The following filters are supported:
1861
+ #
1862
+ # * `LicenseConfigurationArn`
1863
+ #
1864
+ # ^
1865
+ #
1866
+ # @option params [String] :next_token
1867
+ # Token for the next set of results.
1868
+ #
1869
+ # @option params [Integer] :max_results
1870
+ # Maximum number of results to return in a single call.
1871
+ #
1872
+ # @return [Types::ListLicenseManagerReportGeneratorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1873
+ #
1874
+ # * {Types::ListLicenseManagerReportGeneratorsResponse#report_generators #report_generators} => Array&lt;Types::ReportGenerator&gt;
1875
+ # * {Types::ListLicenseManagerReportGeneratorsResponse#next_token #next_token} => String
1876
+ #
1877
+ # @example Request syntax with placeholder values
1878
+ #
1879
+ # resp = client.list_license_manager_report_generators({
1880
+ # filters: [
1881
+ # {
1882
+ # name: "FilterName",
1883
+ # values: ["FilterValue"],
1884
+ # },
1885
+ # ],
1886
+ # next_token: "String",
1887
+ # max_results: 1,
1888
+ # })
1889
+ #
1890
+ # @example Response structure
1891
+ #
1892
+ # resp.report_generators #=> Array
1893
+ # resp.report_generators[0].report_generator_name #=> String
1894
+ # resp.report_generators[0].report_type #=> Array
1895
+ # resp.report_generators[0].report_type[0] #=> String, one of "LicenseConfigurationSummaryReport", "LicenseConfigurationUsageReport"
1896
+ # resp.report_generators[0].report_context.license_configuration_arns #=> Array
1897
+ # resp.report_generators[0].report_context.license_configuration_arns[0] #=> String
1898
+ # resp.report_generators[0].report_frequency.value #=> Integer
1899
+ # resp.report_generators[0].report_frequency.period #=> String, one of "DAY", "WEEK", "MONTH"
1900
+ # resp.report_generators[0].license_manager_report_generator_arn #=> String
1901
+ # resp.report_generators[0].last_run_status #=> String
1902
+ # resp.report_generators[0].last_run_failure_reason #=> String
1903
+ # resp.report_generators[0].last_report_generation_time #=> String
1904
+ # resp.report_generators[0].report_creator_account #=> String
1905
+ # resp.report_generators[0].description #=> String
1906
+ # resp.report_generators[0].s3_location.bucket #=> String
1907
+ # resp.report_generators[0].s3_location.key_prefix #=> String
1908
+ # resp.report_generators[0].create_time #=> String
1909
+ # resp.report_generators[0].tags #=> Array
1910
+ # resp.report_generators[0].tags[0].key #=> String
1911
+ # resp.report_generators[0].tags[0].value #=> String
1912
+ # resp.next_token #=> String
1913
+ #
1914
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseManagerReportGenerators AWS API Documentation
1915
+ #
1916
+ # @overload list_license_manager_report_generators(params = {})
1917
+ # @param [Hash] params ({})
1918
+ def list_license_manager_report_generators(params = {}, options = {})
1919
+ req = build_request(:list_license_manager_report_generators, params)
1920
+ req.send_request(options)
1921
+ end
1922
+
1710
1923
  # Describes the license configurations for the specified resource.
1711
1924
  #
1712
1925
  # @option params [required, String] :resource_arn
@@ -1826,7 +2039,7 @@ module Aws::LicenseManager
1826
2039
  #
1827
2040
  # * `ProductSKU`
1828
2041
  #
1829
- # * `KeyFingerprint`
2042
+ # * `Fingerprint`
1830
2043
  #
1831
2044
  # * `Status`
1832
2045
  #
@@ -1905,9 +2118,15 @@ module Aws::LicenseManager
1905
2118
  # @option params [Array<Types::Filter>] :filters
1906
2119
  # Filters to scope the results. The following filters are supported:
1907
2120
  #
1908
- # * `LicenseARN`
2121
+ # * `ProductSKU`
1909
2122
  #
1910
- # * `Status`
2123
+ # * `LicenseIssuerName`
2124
+ #
2125
+ # * `LicenseArn`
2126
+ #
2127
+ # * `GrantStatus`
2128
+ #
2129
+ # * `GranterAccountId`
1911
2130
  #
1912
2131
  # @option params [String] :next_token
1913
2132
  # Token for the next set of results.
@@ -1971,9 +2190,11 @@ module Aws::LicenseManager
1971
2190
  #
1972
2191
  # * `Status`
1973
2192
  #
1974
- # * `KeyFingerprint`
2193
+ # * `Fingerprint`
1975
2194
  #
1976
- # * `Issuer`
2195
+ # * `IssuerName`
2196
+ #
2197
+ # * `Beneficiary`
1977
2198
  #
1978
2199
  # @option params [String] :next_token
1979
2200
  # Token for the next set of results.
@@ -2155,7 +2376,7 @@ module Aws::LicenseManager
2155
2376
  # @option params [Array<Types::Filter>] :filters
2156
2377
  # Filters to scope the results. The following filter is supported:
2157
2378
  #
2158
- # * `licenseArns`
2379
+ # * `LicenseArns`
2159
2380
  #
2160
2381
  # ^
2161
2382
  #
@@ -2429,6 +2650,71 @@ module Aws::LicenseManager
2429
2650
  req.send_request(options)
2430
2651
  end
2431
2652
 
2653
+ # Updates a report generator.
2654
+ #
2655
+ # After you make changes to a report generator, it will start generating
2656
+ # new reports within 60 minutes of being updated.
2657
+ #
2658
+ # @option params [required, String] :license_manager_report_generator_arn
2659
+ # Amazon Resource Number (ARN) of the report generator to update.
2660
+ #
2661
+ # @option params [required, String] :report_generator_name
2662
+ # Name of the report generator.
2663
+ #
2664
+ # @option params [required, Array<String>] :type
2665
+ # Type of reports to generate. The following report types an be
2666
+ # generated:
2667
+ #
2668
+ # * License configuration report - Reports on the number and details of
2669
+ # consumed licenses for a license configuration.
2670
+ #
2671
+ # * Resource report - Reports on the tracked licenses and resource
2672
+ # consumption for a license configuration.
2673
+ #
2674
+ # @option params [required, Types::ReportContext] :report_context
2675
+ # ?
2676
+ #
2677
+ # @option params [required, Types::ReportFrequency] :report_frequency
2678
+ # Frequency by which reports are generated. The following options are
2679
+ # avaiable:
2680
+ #
2681
+ # ??? What are the APi value options?
2682
+ #
2683
+ # @option params [required, String] :client_token
2684
+ # Unique, case-sensitive identifier that you provide to ensure the
2685
+ # idempotency of the request.
2686
+ #
2687
+ # @option params [String] :description
2688
+ # Description of the report generator.
2689
+ #
2690
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2691
+ #
2692
+ # @example Request syntax with placeholder values
2693
+ #
2694
+ # resp = client.update_license_manager_report_generator({
2695
+ # license_manager_report_generator_arn: "String", # required
2696
+ # report_generator_name: "ReportGeneratorName", # required
2697
+ # type: ["LicenseConfigurationSummaryReport"], # required, accepts LicenseConfigurationSummaryReport, LicenseConfigurationUsageReport
2698
+ # report_context: { # required
2699
+ # license_configuration_arns: ["Arn"], # required
2700
+ # },
2701
+ # report_frequency: { # required
2702
+ # value: 1,
2703
+ # period: "DAY", # accepts DAY, WEEK, MONTH
2704
+ # },
2705
+ # client_token: "ClientRequestToken", # required
2706
+ # description: "String",
2707
+ # })
2708
+ #
2709
+ # @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/UpdateLicenseManagerReportGenerator AWS API Documentation
2710
+ #
2711
+ # @overload update_license_manager_report_generator(params = {})
2712
+ # @param [Hash] params ({})
2713
+ def update_license_manager_report_generator(params = {}, options = {})
2714
+ req = build_request(:update_license_manager_report_generator, params)
2715
+ req.send_request(options)
2716
+ end
2717
+
2432
2718
  # Adds or removes the specified license configurations for the specified
2433
2719
  # AWS resource.
2434
2720
  #
@@ -2527,7 +2813,7 @@ module Aws::LicenseManager
2527
2813
  params: params,
2528
2814
  config: config)
2529
2815
  context[:gem_name] = 'aws-sdk-licensemanager'
2530
- context[:gem_version] = '1.26.0'
2816
+ context[:gem_version] = '1.27.0'
2531
2817
  Seahorse::Client::Request.new(handlers, context)
2532
2818
  end
2533
2819
 
@@ -34,6 +34,7 @@ module Aws::LicenseManager
34
34
  CheckoutLicenseRequest = Shapes::StructureShape.new(name: 'CheckoutLicenseRequest')
35
35
  CheckoutLicenseResponse = Shapes::StructureShape.new(name: 'CheckoutLicenseResponse')
36
36
  CheckoutType = Shapes::StringShape.new(name: 'CheckoutType')
37
+ ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
37
38
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
38
39
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
39
40
  ConsumedLicenseSummary = Shapes::StructureShape.new(name: 'ConsumedLicenseSummary')
@@ -45,6 +46,8 @@ module Aws::LicenseManager
45
46
  CreateGrantVersionResponse = Shapes::StructureShape.new(name: 'CreateGrantVersionResponse')
46
47
  CreateLicenseConfigurationRequest = Shapes::StructureShape.new(name: 'CreateLicenseConfigurationRequest')
47
48
  CreateLicenseConfigurationResponse = Shapes::StructureShape.new(name: 'CreateLicenseConfigurationResponse')
49
+ CreateLicenseManagerReportGeneratorRequest = Shapes::StructureShape.new(name: 'CreateLicenseManagerReportGeneratorRequest')
50
+ CreateLicenseManagerReportGeneratorResponse = Shapes::StructureShape.new(name: 'CreateLicenseManagerReportGeneratorResponse')
48
51
  CreateLicenseRequest = Shapes::StructureShape.new(name: 'CreateLicenseRequest')
49
52
  CreateLicenseResponse = Shapes::StructureShape.new(name: 'CreateLicenseResponse')
50
53
  CreateLicenseVersionRequest = Shapes::StructureShape.new(name: 'CreateLicenseVersionRequest')
@@ -57,6 +60,8 @@ module Aws::LicenseManager
57
60
  DeleteGrantResponse = Shapes::StructureShape.new(name: 'DeleteGrantResponse')
58
61
  DeleteLicenseConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteLicenseConfigurationRequest')
59
62
  DeleteLicenseConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteLicenseConfigurationResponse')
63
+ DeleteLicenseManagerReportGeneratorRequest = Shapes::StructureShape.new(name: 'DeleteLicenseManagerReportGeneratorRequest')
64
+ DeleteLicenseManagerReportGeneratorResponse = Shapes::StructureShape.new(name: 'DeleteLicenseManagerReportGeneratorResponse')
60
65
  DeleteLicenseRequest = Shapes::StructureShape.new(name: 'DeleteLicenseRequest')
61
66
  DeleteLicenseResponse = Shapes::StructureShape.new(name: 'DeleteLicenseResponse')
62
67
  DeleteTokenRequest = Shapes::StructureShape.new(name: 'DeleteTokenRequest')
@@ -87,6 +92,8 @@ module Aws::LicenseManager
87
92
  GetGrantResponse = Shapes::StructureShape.new(name: 'GetGrantResponse')
88
93
  GetLicenseConfigurationRequest = Shapes::StructureShape.new(name: 'GetLicenseConfigurationRequest')
89
94
  GetLicenseConfigurationResponse = Shapes::StructureShape.new(name: 'GetLicenseConfigurationResponse')
95
+ GetLicenseManagerReportGeneratorRequest = Shapes::StructureShape.new(name: 'GetLicenseManagerReportGeneratorRequest')
96
+ GetLicenseManagerReportGeneratorResponse = Shapes::StructureShape.new(name: 'GetLicenseManagerReportGeneratorResponse')
90
97
  GetLicenseRequest = Shapes::StructureShape.new(name: 'GetLicenseRequest')
91
98
  GetLicenseResponse = Shapes::StructureShape.new(name: 'GetLicenseResponse')
92
99
  GetLicenseUsageRequest = Shapes::StructureShape.new(name: 'GetLicenseUsageRequest')
@@ -134,6 +141,8 @@ module Aws::LicenseManager
134
141
  ListFailuresForLicenseConfigurationOperationsResponse = Shapes::StructureShape.new(name: 'ListFailuresForLicenseConfigurationOperationsResponse')
135
142
  ListLicenseConfigurationsRequest = Shapes::StructureShape.new(name: 'ListLicenseConfigurationsRequest')
136
143
  ListLicenseConfigurationsResponse = Shapes::StructureShape.new(name: 'ListLicenseConfigurationsResponse')
144
+ ListLicenseManagerReportGeneratorsRequest = Shapes::StructureShape.new(name: 'ListLicenseManagerReportGeneratorsRequest')
145
+ ListLicenseManagerReportGeneratorsResponse = Shapes::StructureShape.new(name: 'ListLicenseManagerReportGeneratorsResponse')
137
146
  ListLicenseSpecificationsForResourceRequest = Shapes::StructureShape.new(name: 'ListLicenseSpecificationsForResourceRequest')
138
147
  ListLicenseSpecificationsForResourceResponse = Shapes::StructureShape.new(name: 'ListLicenseSpecificationsForResourceResponse')
139
148
  ListLicenseVersionsRequest = Shapes::StructureShape.new(name: 'ListLicenseVersionsRequest')
@@ -176,11 +185,20 @@ module Aws::LicenseManager
176
185
  RejectGrantRequest = Shapes::StructureShape.new(name: 'RejectGrantRequest')
177
186
  RejectGrantResponse = Shapes::StructureShape.new(name: 'RejectGrantResponse')
178
187
  RenewType = Shapes::StringShape.new(name: 'RenewType')
188
+ ReportContext = Shapes::StructureShape.new(name: 'ReportContext')
189
+ ReportFrequency = Shapes::StructureShape.new(name: 'ReportFrequency')
190
+ ReportFrequencyType = Shapes::StringShape.new(name: 'ReportFrequencyType')
191
+ ReportGenerator = Shapes::StructureShape.new(name: 'ReportGenerator')
192
+ ReportGeneratorList = Shapes::ListShape.new(name: 'ReportGeneratorList')
193
+ ReportGeneratorName = Shapes::StringShape.new(name: 'ReportGeneratorName')
194
+ ReportType = Shapes::StringShape.new(name: 'ReportType')
195
+ ReportTypeList = Shapes::ListShape.new(name: 'ReportTypeList')
179
196
  ResourceInventory = Shapes::StructureShape.new(name: 'ResourceInventory')
180
197
  ResourceInventoryList = Shapes::ListShape.new(name: 'ResourceInventoryList')
181
198
  ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
182
199
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
183
200
  ResourceType = Shapes::StringShape.new(name: 'ResourceType')
201
+ S3Location = Shapes::StructureShape.new(name: 'S3Location')
184
202
  ServerInternalException = Shapes::StructureShape.new(name: 'ServerInternalException')
185
203
  SignedToken = Shapes::StringShape.new(name: 'SignedToken')
186
204
  String = Shapes::StringShape.new(name: 'String')
@@ -199,6 +217,8 @@ module Aws::LicenseManager
199
217
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
200
218
  UpdateLicenseConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateLicenseConfigurationRequest')
201
219
  UpdateLicenseConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateLicenseConfigurationResponse')
220
+ UpdateLicenseManagerReportGeneratorRequest = Shapes::StructureShape.new(name: 'UpdateLicenseManagerReportGeneratorRequest')
221
+ UpdateLicenseManagerReportGeneratorResponse = Shapes::StructureShape.new(name: 'UpdateLicenseManagerReportGeneratorResponse')
202
222
  UpdateLicenseSpecificationsForResourceRequest = Shapes::StructureShape.new(name: 'UpdateLicenseSpecificationsForResourceRequest')
203
223
  UpdateLicenseSpecificationsForResourceResponse = Shapes::StructureShape.new(name: 'UpdateLicenseSpecificationsForResourceResponse')
204
224
  UpdateServiceSettingsRequest = Shapes::StructureShape.new(name: 'UpdateServiceSettingsRequest')
@@ -326,6 +346,18 @@ module Aws::LicenseManager
326
346
  CreateLicenseConfigurationResponse.add_member(:license_configuration_arn, Shapes::ShapeRef.new(shape: String, location_name: "LicenseConfigurationArn"))
327
347
  CreateLicenseConfigurationResponse.struct_class = Types::CreateLicenseConfigurationResponse
328
348
 
349
+ CreateLicenseManagerReportGeneratorRequest.add_member(:report_generator_name, Shapes::ShapeRef.new(shape: ReportGeneratorName, required: true, location_name: "ReportGeneratorName"))
350
+ CreateLicenseManagerReportGeneratorRequest.add_member(:type, Shapes::ShapeRef.new(shape: ReportTypeList, required: true, location_name: "Type"))
351
+ CreateLicenseManagerReportGeneratorRequest.add_member(:report_context, Shapes::ShapeRef.new(shape: ReportContext, required: true, location_name: "ReportContext"))
352
+ CreateLicenseManagerReportGeneratorRequest.add_member(:report_frequency, Shapes::ShapeRef.new(shape: ReportFrequency, required: true, location_name: "ReportFrequency"))
353
+ CreateLicenseManagerReportGeneratorRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientToken"))
354
+ CreateLicenseManagerReportGeneratorRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
355
+ CreateLicenseManagerReportGeneratorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
356
+ CreateLicenseManagerReportGeneratorRequest.struct_class = Types::CreateLicenseManagerReportGeneratorRequest
357
+
358
+ CreateLicenseManagerReportGeneratorResponse.add_member(:license_manager_report_generator_arn, Shapes::ShapeRef.new(shape: String, location_name: "LicenseManagerReportGeneratorArn"))
359
+ CreateLicenseManagerReportGeneratorResponse.struct_class = Types::CreateLicenseManagerReportGeneratorResponse
360
+
329
361
  CreateLicenseRequest.add_member(:license_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "LicenseName"))
330
362
  CreateLicenseRequest.add_member(:product_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ProductName"))
331
363
  CreateLicenseRequest.add_member(:product_sku, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ProductSKU"))
@@ -393,6 +425,11 @@ module Aws::LicenseManager
393
425
 
394
426
  DeleteLicenseConfigurationResponse.struct_class = Types::DeleteLicenseConfigurationResponse
395
427
 
428
+ DeleteLicenseManagerReportGeneratorRequest.add_member(:license_manager_report_generator_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "LicenseManagerReportGeneratorArn"))
429
+ DeleteLicenseManagerReportGeneratorRequest.struct_class = Types::DeleteLicenseManagerReportGeneratorRequest
430
+
431
+ DeleteLicenseManagerReportGeneratorResponse.struct_class = Types::DeleteLicenseManagerReportGeneratorResponse
432
+
396
433
  DeleteLicenseRequest.add_member(:license_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "LicenseArn"))
397
434
  DeleteLicenseRequest.add_member(:source_version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceVersion"))
398
435
  DeleteLicenseRequest.struct_class = Types::DeleteLicenseRequest
@@ -495,6 +532,12 @@ module Aws::LicenseManager
495
532
  GetLicenseConfigurationResponse.add_member(:disassociate_when_not_found, Shapes::ShapeRef.new(shape: BoxBoolean, location_name: "DisassociateWhenNotFound"))
496
533
  GetLicenseConfigurationResponse.struct_class = Types::GetLicenseConfigurationResponse
497
534
 
535
+ GetLicenseManagerReportGeneratorRequest.add_member(:license_manager_report_generator_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "LicenseManagerReportGeneratorArn"))
536
+ GetLicenseManagerReportGeneratorRequest.struct_class = Types::GetLicenseManagerReportGeneratorRequest
537
+
538
+ GetLicenseManagerReportGeneratorResponse.add_member(:report_generator, Shapes::ShapeRef.new(shape: ReportGenerator, location_name: "ReportGenerator"))
539
+ GetLicenseManagerReportGeneratorResponse.struct_class = Types::GetLicenseManagerReportGeneratorResponse
540
+
498
541
  GetLicenseRequest.add_member(:license_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "LicenseArn"))
499
542
  GetLicenseRequest.add_member(:version, Shapes::ShapeRef.new(shape: String, location_name: "Version"))
500
543
  GetLicenseRequest.struct_class = Types::GetLicenseRequest
@@ -691,6 +734,15 @@ module Aws::LicenseManager
691
734
  ListLicenseConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
692
735
  ListLicenseConfigurationsResponse.struct_class = Types::ListLicenseConfigurationsResponse
693
736
 
737
+ ListLicenseManagerReportGeneratorsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
738
+ ListLicenseManagerReportGeneratorsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
739
+ ListLicenseManagerReportGeneratorsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxSize100, location_name: "MaxResults"))
740
+ ListLicenseManagerReportGeneratorsRequest.struct_class = Types::ListLicenseManagerReportGeneratorsRequest
741
+
742
+ ListLicenseManagerReportGeneratorsResponse.add_member(:report_generators, Shapes::ShapeRef.new(shape: ReportGeneratorList, location_name: "ReportGenerators"))
743
+ ListLicenseManagerReportGeneratorsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
744
+ ListLicenseManagerReportGeneratorsResponse.struct_class = Types::ListLicenseManagerReportGeneratorsResponse
745
+
694
746
  ListLicenseSpecificationsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceArn"))
695
747
  ListLicenseSpecificationsForResourceRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: BoxInteger, location_name: "MaxResults"))
696
748
  ListLicenseSpecificationsForResourceRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
@@ -831,6 +883,32 @@ module Aws::LicenseManager
831
883
  RejectGrantResponse.add_member(:version, Shapes::ShapeRef.new(shape: String, location_name: "Version"))
832
884
  RejectGrantResponse.struct_class = Types::RejectGrantResponse
833
885
 
886
+ ReportContext.add_member(:license_configuration_arns, Shapes::ShapeRef.new(shape: ArnList, required: true, location_name: "licenseConfigurationArns"))
887
+ ReportContext.struct_class = Types::ReportContext
888
+
889
+ ReportFrequency.add_member(:value, Shapes::ShapeRef.new(shape: Integer, location_name: "value"))
890
+ ReportFrequency.add_member(:period, Shapes::ShapeRef.new(shape: ReportFrequencyType, location_name: "period"))
891
+ ReportFrequency.struct_class = Types::ReportFrequency
892
+
893
+ ReportGenerator.add_member(:report_generator_name, Shapes::ShapeRef.new(shape: String, location_name: "ReportGeneratorName"))
894
+ ReportGenerator.add_member(:report_type, Shapes::ShapeRef.new(shape: ReportTypeList, location_name: "ReportType"))
895
+ ReportGenerator.add_member(:report_context, Shapes::ShapeRef.new(shape: ReportContext, location_name: "ReportContext"))
896
+ ReportGenerator.add_member(:report_frequency, Shapes::ShapeRef.new(shape: ReportFrequency, location_name: "ReportFrequency"))
897
+ ReportGenerator.add_member(:license_manager_report_generator_arn, Shapes::ShapeRef.new(shape: String, location_name: "LicenseManagerReportGeneratorArn"))
898
+ ReportGenerator.add_member(:last_run_status, Shapes::ShapeRef.new(shape: String, location_name: "LastRunStatus"))
899
+ ReportGenerator.add_member(:last_run_failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "LastRunFailureReason"))
900
+ ReportGenerator.add_member(:last_report_generation_time, Shapes::ShapeRef.new(shape: String, location_name: "LastReportGenerationTime"))
901
+ ReportGenerator.add_member(:report_creator_account, Shapes::ShapeRef.new(shape: String, location_name: "ReportCreatorAccount"))
902
+ ReportGenerator.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
903
+ ReportGenerator.add_member(:s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "S3Location"))
904
+ ReportGenerator.add_member(:create_time, Shapes::ShapeRef.new(shape: String, location_name: "CreateTime"))
905
+ ReportGenerator.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
906
+ ReportGenerator.struct_class = Types::ReportGenerator
907
+
908
+ ReportGeneratorList.member = Shapes::ShapeRef.new(shape: ReportGenerator)
909
+
910
+ ReportTypeList.member = Shapes::ShapeRef.new(shape: ReportType)
911
+
834
912
  ResourceInventory.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceId"))
835
913
  ResourceInventory.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
836
914
  ResourceInventory.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, location_name: "ResourceArn"))
@@ -847,6 +925,10 @@ module Aws::LicenseManager
847
925
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
848
926
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
849
927
 
928
+ S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: String, location_name: "bucket"))
929
+ S3Location.add_member(:key_prefix, Shapes::ShapeRef.new(shape: String, location_name: "keyPrefix"))
930
+ S3Location.struct_class = Types::S3Location
931
+
850
932
  ServerInternalException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
851
933
  ServerInternalException.struct_class = Types::ServerInternalException
852
934
 
@@ -899,6 +981,17 @@ module Aws::LicenseManager
899
981
 
900
982
  UpdateLicenseConfigurationResponse.struct_class = Types::UpdateLicenseConfigurationResponse
901
983
 
984
+ UpdateLicenseManagerReportGeneratorRequest.add_member(:license_manager_report_generator_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "LicenseManagerReportGeneratorArn"))
985
+ UpdateLicenseManagerReportGeneratorRequest.add_member(:report_generator_name, Shapes::ShapeRef.new(shape: ReportGeneratorName, required: true, location_name: "ReportGeneratorName"))
986
+ UpdateLicenseManagerReportGeneratorRequest.add_member(:type, Shapes::ShapeRef.new(shape: ReportTypeList, required: true, location_name: "Type"))
987
+ UpdateLicenseManagerReportGeneratorRequest.add_member(:report_context, Shapes::ShapeRef.new(shape: ReportContext, required: true, location_name: "ReportContext"))
988
+ UpdateLicenseManagerReportGeneratorRequest.add_member(:report_frequency, Shapes::ShapeRef.new(shape: ReportFrequency, required: true, location_name: "ReportFrequency"))
989
+ UpdateLicenseManagerReportGeneratorRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientToken"))
990
+ UpdateLicenseManagerReportGeneratorRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
991
+ UpdateLicenseManagerReportGeneratorRequest.struct_class = Types::UpdateLicenseManagerReportGeneratorRequest
992
+
993
+ UpdateLicenseManagerReportGeneratorResponse.struct_class = Types::UpdateLicenseManagerReportGeneratorResponse
994
+
902
995
  UpdateLicenseSpecificationsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceArn"))
903
996
  UpdateLicenseSpecificationsForResourceRequest.add_member(:add_license_specifications, Shapes::ShapeRef.new(shape: LicenseSpecifications, location_name: "AddLicenseSpecifications"))
904
997
  UpdateLicenseSpecificationsForResourceRequest.add_member(:remove_license_specifications, Shapes::ShapeRef.new(shape: LicenseSpecifications, location_name: "RemoveLicenseSpecifications"))
@@ -1059,6 +1152,22 @@ module Aws::LicenseManager
1059
1152
  o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
1060
1153
  end)
1061
1154
 
1155
+ api.add_operation(:create_license_manager_report_generator, Seahorse::Model::Operation.new.tap do |o|
1156
+ o.name = "CreateLicenseManagerReportGenerator"
1157
+ o.http_method = "POST"
1158
+ o.http_request_uri = "/"
1159
+ o.input = Shapes::ShapeRef.new(shape: CreateLicenseManagerReportGeneratorRequest)
1160
+ o.output = Shapes::ShapeRef.new(shape: CreateLicenseManagerReportGeneratorResponse)
1161
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1162
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1163
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
1164
+ o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
1165
+ o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
1166
+ o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
1167
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1168
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1169
+ end)
1170
+
1062
1171
  api.add_operation(:create_license_version, Seahorse::Model::Operation.new.tap do |o|
1063
1172
  o.name = "CreateLicenseVersion"
1064
1173
  o.http_method = "POST"
@@ -1135,6 +1244,22 @@ module Aws::LicenseManager
1135
1244
  o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
1136
1245
  end)
1137
1246
 
1247
+ api.add_operation(:delete_license_manager_report_generator, Seahorse::Model::Operation.new.tap do |o|
1248
+ o.name = "DeleteLicenseManagerReportGenerator"
1249
+ o.http_method = "POST"
1250
+ o.http_request_uri = "/"
1251
+ o.input = Shapes::ShapeRef.new(shape: DeleteLicenseManagerReportGeneratorRequest)
1252
+ o.output = Shapes::ShapeRef.new(shape: DeleteLicenseManagerReportGeneratorResponse)
1253
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1254
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1255
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
1256
+ o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
1257
+ o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
1258
+ o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
1259
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1260
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1261
+ end)
1262
+
1138
1263
  api.add_operation(:delete_token, Seahorse::Model::Operation.new.tap do |o|
1139
1264
  o.name = "DeleteToken"
1140
1265
  o.http_method = "POST"
@@ -1220,6 +1345,22 @@ module Aws::LicenseManager
1220
1345
  o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
1221
1346
  end)
1222
1347
 
1348
+ api.add_operation(:get_license_manager_report_generator, Seahorse::Model::Operation.new.tap do |o|
1349
+ o.name = "GetLicenseManagerReportGenerator"
1350
+ o.http_method = "POST"
1351
+ o.http_request_uri = "/"
1352
+ o.input = Shapes::ShapeRef.new(shape: GetLicenseManagerReportGeneratorRequest)
1353
+ o.output = Shapes::ShapeRef.new(shape: GetLicenseManagerReportGeneratorResponse)
1354
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1355
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1356
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
1357
+ o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
1358
+ o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
1359
+ o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
1360
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1361
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1362
+ end)
1363
+
1223
1364
  api.add_operation(:get_license_usage, Seahorse::Model::Operation.new.tap do |o|
1224
1365
  o.name = "GetLicenseUsage"
1225
1366
  o.http_method = "POST"
@@ -1302,6 +1443,22 @@ module Aws::LicenseManager
1302
1443
  o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
1303
1444
  end)
1304
1445
 
1446
+ api.add_operation(:list_license_manager_report_generators, Seahorse::Model::Operation.new.tap do |o|
1447
+ o.name = "ListLicenseManagerReportGenerators"
1448
+ o.http_method = "POST"
1449
+ o.http_request_uri = "/"
1450
+ o.input = Shapes::ShapeRef.new(shape: ListLicenseManagerReportGeneratorsRequest)
1451
+ o.output = Shapes::ShapeRef.new(shape: ListLicenseManagerReportGeneratorsResponse)
1452
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1453
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1454
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
1455
+ o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
1456
+ o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
1457
+ o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
1458
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1459
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1460
+ end)
1461
+
1305
1462
  api.add_operation(:list_license_specifications_for_resource, Seahorse::Model::Operation.new.tap do |o|
1306
1463
  o.name = "ListLicenseSpecificationsForResource"
1307
1464
  o.http_method = "POST"
@@ -1482,6 +1639,22 @@ module Aws::LicenseManager
1482
1639
  o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
1483
1640
  end)
1484
1641
 
1642
+ api.add_operation(:update_license_manager_report_generator, Seahorse::Model::Operation.new.tap do |o|
1643
+ o.name = "UpdateLicenseManagerReportGenerator"
1644
+ o.http_method = "POST"
1645
+ o.http_request_uri = "/"
1646
+ o.input = Shapes::ShapeRef.new(shape: UpdateLicenseManagerReportGeneratorRequest)
1647
+ o.output = Shapes::ShapeRef.new(shape: UpdateLicenseManagerReportGeneratorResponse)
1648
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1649
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1650
+ o.errors << Shapes::ShapeRef.new(shape: RateLimitExceededException)
1651
+ o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
1652
+ o.errors << Shapes::ShapeRef.new(shape: AuthorizationException)
1653
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1654
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1655
+ o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
1656
+ end)
1657
+
1485
1658
  api.add_operation(:update_license_specifications_for_resource, Seahorse::Model::Operation.new.tap do |o|
1486
1659
  o.name = "UpdateLicenseSpecificationsForResource"
1487
1660
  o.http_method = "POST"