aws-sdk-cloudwatch 1.125.0 → 1.126.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: 9c431dcb5000cb1a75f33ca9c2e8d7dbd81730cb8e5b0b72098303865d015c7e
4
- data.tar.gz: 9c74050724e49649de16e3951eff634a0e4f448de3e211b0c400d7b5ebd28546
3
+ metadata.gz: f5c489fa912c73c99aa12532a721763205034f8cb6847c54e446cbe87967c28f
4
+ data.tar.gz: 76cb17b338e436236320854ff8d550b04531359e10b312dce8553e2e3085812c
5
5
  SHA512:
6
- metadata.gz: 162d41c1a76bcd69d72c80a97c506c610fa27ac1bdab81a1ffcb2d2cec1f69db52f5520437feecb54b84c360b3f30298af0dd860f1d1b791ce230e8589e3665c
7
- data.tar.gz: fd96324b7f345fdf6ae1d2869d917f472d688c130413d0bee581c596d2cd69adb35207dbe1108a46b54a89d98b0da689b285aa76512d6b78ebb80de143594655
6
+ metadata.gz: 94fb24b6e7e57c893f37ec254cb596184996984e22cddc3e09114a38cee2f3d46834e71a4be816694ddd73520a76117298407355e71a71d25a2d2131440158a9
7
+ data.tar.gz: a48274328bf10a4f58bdda12b1cba7998410423064aaeb3b5916d37133495491c15a72f41cefa351ca0e43dae4f61788762622a3c10ca29c406779b126859fb0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.126.0 (2025-12-10)
5
+ ------------------
6
+
7
+ * Feature - This release introduces two additional protocols AWS JSON 1.1 and Smithy RPC v2 CBOR, replacing the currently utilized one, AWSQuery. AWS SDKs will prioritize the protocol that is the most performant for each language.
8
+
4
9
  1.125.0 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.125.0
1
+ 1.126.0
@@ -34,7 +34,7 @@ require 'aws-sdk-core/plugins/defaults_mode'
34
34
  require 'aws-sdk-core/plugins/recursion_detection'
35
35
  require 'aws-sdk-core/plugins/telemetry'
36
36
  require 'aws-sdk-core/plugins/sign'
37
- require 'aws-sdk-core/plugins/protocols/query'
37
+ require 'aws-sdk-core/plugins/protocols/json_rpc'
38
38
 
39
39
  module Aws::CloudWatch
40
40
  # An API client for CloudWatch. To construct a client, you need to configure a `:region` and `:credentials`.
@@ -84,7 +84,7 @@ module Aws::CloudWatch
84
84
  add_plugin(Aws::Plugins::RecursionDetection)
85
85
  add_plugin(Aws::Plugins::Telemetry)
86
86
  add_plugin(Aws::Plugins::Sign)
87
- add_plugin(Aws::Plugins::Protocols::Query)
87
+ add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
88
  add_plugin(Aws::CloudWatch::Plugins::Endpoints)
89
89
 
90
90
  # @overload initialize(options)
@@ -354,6 +354,13 @@ module Aws::CloudWatch
354
354
  # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
355
355
  # * `~/.aws/config`
356
356
  #
357
+ # @option options [Boolean] :simple_json (false)
358
+ # Disables request parameter conversion, validation, and formatting.
359
+ # Also disables response data type conversions. The request parameters
360
+ # hash must be formatted exactly as the API expects.This option is useful
361
+ # when you want to ensure the highest level of performance by avoiding
362
+ # overhead of walking request parameters and response data structures.
363
+ #
357
364
  # @option options [Boolean] :stub_responses (false)
358
365
  # Causes the client to return stubbed responses. By default
359
366
  # fake responses are generated and returned. You can specify
@@ -4395,7 +4402,7 @@ module Aws::CloudWatch
4395
4402
  tracer: tracer
4396
4403
  )
4397
4404
  context[:gem_name] = 'aws-sdk-cloudwatch'
4398
- context[:gem_version] = '1.125.0'
4405
+ context[:gem_version] = '1.126.0'
4399
4406
  Seahorse::Client::Request.new(handlers, context)
4400
4407
  end
4401
4408
 
@@ -49,7 +49,7 @@ module Aws::CloudWatch
49
49
  CompositeAlarm = Shapes::StructureShape.new(name: 'CompositeAlarm')
50
50
  CompositeAlarms = Shapes::ListShape.new(name: 'CompositeAlarms')
51
51
  ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException', error: {"code" => "ConcurrentModificationException", "httpStatusCode" => 429, "senderFault" => true})
52
- ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
52
+ ConflictException = Shapes::StructureShape.new(name: 'ConflictException', error: {"httpStatusCode" => 409})
53
53
  ContributorAttributes = Shapes::MapShape.new(name: 'ContributorAttributes')
54
54
  ContributorId = Shapes::StringShape.new(name: 'ContributorId')
55
55
  Counts = Shapes::ListShape.new(name: 'Counts')
@@ -1084,13 +1084,16 @@ module Aws::CloudWatch
1084
1084
  api.metadata = {
1085
1085
  "apiVersion" => "2010-08-01",
1086
1086
  "auth" => ["aws.auth#sigv4"],
1087
+ "awsQueryCompatible" => {},
1087
1088
  "endpointPrefix" => "monitoring",
1088
- "protocol" => "query",
1089
- "protocols" => ["query"],
1089
+ "jsonVersion" => "1.0",
1090
+ "protocol" => "smithy-rpc-v2-cbor",
1091
+ "protocols" => ["smithy-rpc-v2-cbor", "json", "query"],
1090
1092
  "serviceAbbreviation" => "CloudWatch",
1091
1093
  "serviceFullName" => "Amazon CloudWatch",
1092
1094
  "serviceId" => "CloudWatch",
1093
1095
  "signatureVersion" => "v4",
1096
+ "targetPrefix" => "GraniteServiceVersion20100801",
1094
1097
  "uid" => "monitoring-2010-08-01",
1095
1098
  "xmlNamespace" => "http://monitoring.amazonaws.com/doc/2010-08-01/",
1096
1099
  }
@@ -58,7 +58,7 @@ module Aws::CloudWatch
58
58
  autoload :CompositeAlarm, 'aws-sdk-cloudwatch/composite_alarm'
59
59
  autoload :Metric, 'aws-sdk-cloudwatch/metric'
60
60
 
61
- GEM_VERSION = '1.125.0'
61
+ GEM_VERSION = '1.126.0'
62
62
 
63
63
  end
64
64
 
data/sig/client.rbs CHANGED
@@ -53,6 +53,7 @@ module Aws
53
53
  ?secret_access_key: String,
54
54
  ?session_token: String,
55
55
  ?sigv4a_signing_region_set: Array[String],
56
+ ?simple_json: bool,
56
57
  ?stub_responses: untyped,
57
58
  ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
58
59
  ?token_provider: untyped,
data/sig/resource.rbs CHANGED
@@ -53,6 +53,7 @@ module Aws
53
53
  ?secret_access_key: String,
54
54
  ?session_token: String,
55
55
  ?sigv4a_signing_region_set: Array[String],
56
+ ?simple_json: bool,
56
57
  ?stub_responses: untyped,
57
58
  ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
58
59
  ?token_provider: untyped,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.125.0
4
+ version: 1.126.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services