aws-sdk-pricing 1.73.0 → 1.75.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: b80f90b6d91cd1e5c5d1b0b33c7f93c630a853bb3d317d3d2f084ddc20dfbf2f
4
- data.tar.gz: 452317f0b89a54fb0a01a1039844a3c4c4fdf984f81edbee4fcb4278f1644b4c
3
+ metadata.gz: a74b554325b5d7cd0c0b0f6bacc32ce1271cce730857c2fbdcbbc8ede914b4c2
4
+ data.tar.gz: e6f2a840f167ea8aeaa482a2fc997ce0f0ca63687d0201ccd513eff41ff178bc
5
5
  SHA512:
6
- metadata.gz: b68606e2921a179ec8bb144f3c9babb742274a84fd7ba7bfad450bacf2675e7be31c87cf76b58f9a2832319fe716c573ed95bb2871be5eefe1de04add8ba0373
7
- data.tar.gz: 340b52c9605f2ce7cc765c0938a3e54b06522714bcfd78a1dbae8ecfd2d3d8af2d00a917d9b78a4142dd0eb8351e40b6e0145ae823fcccdb513f322fbd3ee211
6
+ metadata.gz: e274de4613afa70c108122d38b90e942837bd5aaf5ee5e63260703032cffed5858ee9df2f218d69a51ab5ca93dfa00da5757abf45493d27098b91e027c155d1a
7
+ data.tar.gz: ea21b6442d05c9cc57219940f6a93305c9c30138067d59d67f4278a43abe1218c6c4ba6d1b5a88dda86a2c492062c94c07f15a5bc0e2fa23d904055e298fa918
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.75.0 (2025-05-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.74.0 (2025-02-28)
10
+ ------------------
11
+
12
+ * Feature - Update GetProducts and DescribeServices API request input validations.
13
+
4
14
  1.73.0 (2025-02-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.73.0
1
+ 1.75.0
@@ -544,7 +544,7 @@ module Aws::Pricing
544
544
  #
545
545
  # resp = client.describe_services({
546
546
  # service_code: "String",
547
- # format_version: "String",
547
+ # format_version: "FormatVersion",
548
548
  # next_token: "String",
549
549
  # max_results: 1,
550
550
  # })
@@ -739,11 +739,11 @@ module Aws::Pricing
739
739
  # filters: [
740
740
  # {
741
741
  # type: "TERM_MATCH", # required, accepts TERM_MATCH
742
- # field: "String", # required
743
- # value: "String", # required
742
+ # field: "Field", # required
743
+ # value: "Value", # required
744
744
  # },
745
745
  # ],
746
- # format_version: "String",
746
+ # format_version: "FormatVersion",
747
747
  # next_token: "String",
748
748
  # max_results: 1,
749
749
  # })
@@ -880,7 +880,7 @@ module Aws::Pricing
880
880
  tracer: tracer
881
881
  )
882
882
  context[:gem_name] = 'aws-sdk-pricing'
883
- context[:gem_version] = '1.73.0'
883
+ context[:gem_version] = '1.75.0'
884
884
  Seahorse::Client::Request.new(handlers, context)
885
885
  end
886
886
 
@@ -24,11 +24,13 @@ module Aws::Pricing
24
24
  DescribeServicesResponse = Shapes::StructureShape.new(name: 'DescribeServicesResponse')
25
25
  EffectiveDate = Shapes::TimestampShape.new(name: 'EffectiveDate')
26
26
  ExpiredNextTokenException = Shapes::StructureShape.new(name: 'ExpiredNextTokenException')
27
+ Field = Shapes::StringShape.new(name: 'Field')
27
28
  FileFormat = Shapes::StringShape.new(name: 'FileFormat')
28
29
  FileFormats = Shapes::ListShape.new(name: 'FileFormats')
29
30
  Filter = Shapes::StructureShape.new(name: 'Filter')
30
31
  FilterType = Shapes::StringShape.new(name: 'FilterType')
31
32
  Filters = Shapes::ListShape.new(name: 'Filters')
33
+ FormatVersion = Shapes::StringShape.new(name: 'FormatVersion')
32
34
  GetAttributeValuesRequest = Shapes::StructureShape.new(name: 'GetAttributeValuesRequest')
33
35
  GetAttributeValuesResponse = Shapes::StructureShape.new(name: 'GetAttributeValuesResponse')
34
36
  GetPriceListFileUrlRequest = Shapes::StructureShape.new(name: 'GetPriceListFileUrlRequest')
@@ -54,6 +56,7 @@ module Aws::Pricing
54
56
  String = Shapes::StringShape.new(name: 'String')
55
57
  SynthesizedJsonPriceListJsonItem = Shapes::StringShape.new(name: 'SynthesizedJsonPriceListJsonItem')
56
58
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
59
+ Value = Shapes::StringShape.new(name: 'Value')
57
60
  errorMessage = Shapes::StringShape.new(name: 'errorMessage')
58
61
 
59
62
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "Message"))
@@ -67,13 +70,13 @@ module Aws::Pricing
67
70
  AttributeValueList.member = Shapes::ShapeRef.new(shape: AttributeValue)
68
71
 
69
72
  DescribeServicesRequest.add_member(:service_code, Shapes::ShapeRef.new(shape: String, location_name: "ServiceCode"))
70
- DescribeServicesRequest.add_member(:format_version, Shapes::ShapeRef.new(shape: String, location_name: "FormatVersion"))
73
+ DescribeServicesRequest.add_member(:format_version, Shapes::ShapeRef.new(shape: FormatVersion, location_name: "FormatVersion"))
71
74
  DescribeServicesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
72
75
  DescribeServicesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "MaxResults"))
73
76
  DescribeServicesRequest.struct_class = Types::DescribeServicesRequest
74
77
 
75
78
  DescribeServicesResponse.add_member(:services, Shapes::ShapeRef.new(shape: ServiceList, location_name: "Services"))
76
- DescribeServicesResponse.add_member(:format_version, Shapes::ShapeRef.new(shape: String, location_name: "FormatVersion"))
79
+ DescribeServicesResponse.add_member(:format_version, Shapes::ShapeRef.new(shape: FormatVersion, location_name: "FormatVersion"))
77
80
  DescribeServicesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
78
81
  DescribeServicesResponse.struct_class = Types::DescribeServicesResponse
79
82
 
@@ -83,8 +86,8 @@ module Aws::Pricing
83
86
  FileFormats.member = Shapes::ShapeRef.new(shape: FileFormat)
84
87
 
85
88
  Filter.add_member(:type, Shapes::ShapeRef.new(shape: FilterType, required: true, location_name: "Type"))
86
- Filter.add_member(:field, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Field"))
87
- Filter.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Value"))
89
+ Filter.add_member(:field, Shapes::ShapeRef.new(shape: Field, required: true, location_name: "Field"))
90
+ Filter.add_member(:value, Shapes::ShapeRef.new(shape: Value, required: true, location_name: "Value"))
88
91
  Filter.struct_class = Types::Filter
89
92
 
90
93
  Filters.member = Shapes::ShapeRef.new(shape: Filter)
@@ -108,12 +111,12 @@ module Aws::Pricing
108
111
 
109
112
  GetProductsRequest.add_member(:service_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServiceCode"))
110
113
  GetProductsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: Filters, location_name: "Filters"))
111
- GetProductsRequest.add_member(:format_version, Shapes::ShapeRef.new(shape: String, location_name: "FormatVersion"))
114
+ GetProductsRequest.add_member(:format_version, Shapes::ShapeRef.new(shape: FormatVersion, location_name: "FormatVersion"))
112
115
  GetProductsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
113
116
  GetProductsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: BoxedInteger, location_name: "MaxResults"))
114
117
  GetProductsRequest.struct_class = Types::GetProductsRequest
115
118
 
116
- GetProductsResponse.add_member(:format_version, Shapes::ShapeRef.new(shape: String, location_name: "FormatVersion"))
119
+ GetProductsResponse.add_member(:format_version, Shapes::ShapeRef.new(shape: FormatVersion, location_name: "FormatVersion"))
117
120
  GetProductsResponse.add_member(:price_list, Shapes::ShapeRef.new(shape: PriceListJsonItems, location_name: "PriceList"))
118
121
  GetProductsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
119
122
  GetProductsResponse.struct_class = Types::GetProductsResponse
@@ -148,7 +151,7 @@ module Aws::Pricing
148
151
  PriceList.add_member(:file_formats, Shapes::ShapeRef.new(shape: FileFormats, location_name: "FileFormats"))
149
152
  PriceList.struct_class = Types::PriceList
150
153
 
151
- PriceListJsonItems.member = Shapes::ShapeRef.new(shape: SynthesizedJsonPriceListJsonItem, metadata: {"jsonvalue"=>true})
154
+ PriceListJsonItems.member = Shapes::ShapeRef.new(shape: SynthesizedJsonPriceListJsonItem, metadata: {"jsonvalue" => true})
152
155
 
153
156
  PriceLists.member = Shapes::ShapeRef.new(shape: PriceList)
154
157
 
@@ -55,7 +55,7 @@ module Aws::Pricing
55
55
  autoload :EndpointProvider, 'aws-sdk-pricing/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-pricing/endpoints'
57
57
 
58
- GEM_VERSION = '1.73.0'
58
+ GEM_VERSION = '1.75.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pricing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.73.0
4
+ version: 1.75.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: aws-sdk-core
@@ -78,7 +77,6 @@ licenses:
78
77
  metadata:
79
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-pricing
80
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-pricing/CHANGELOG.md
81
- post_install_message:
82
80
  rdoc_options: []
83
81
  require_paths:
84
82
  - lib
@@ -93,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
91
  - !ruby/object:Gem::Version
94
92
  version: '0'
95
93
  requirements: []
96
- rubygems_version: 3.4.10
97
- signing_key:
94
+ rubygems_version: 3.6.7
98
95
  specification_version: 4
99
96
  summary: AWS SDK for Ruby - AWS Pricing
100
97
  test_files: []