aws-sdk-eventbridge 1.72.0 → 1.73.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 762173f33b1d4d981aab5aac482f007296ae02a7f050f9c000cb1163dfd7bce3
4
- data.tar.gz: 17426b60206d28f75a240d4c9557daaff4e95393a5df9b580d445ebae5cdc6f5
3
+ metadata.gz: bee29a2d54938366e2e4bf5eb24d12173815ddb315741d40fd28eeec33105964
4
+ data.tar.gz: e21e2d11dfb8e4a11244127fce67e78b1df40a8bac3546a7ac16745215e78282
5
5
  SHA512:
6
- metadata.gz: d698f7f91c6be910aa9a980f1872bbf1cca1244c122c6eeec67a741e0a5119dbfdd8a03329bd1993f566f29bc548cb126a4ebb8de64a15102cfe9967ebe8365c
7
- data.tar.gz: d444c3aad15d287319b51a65a00b5342e73dac044498798992d0f472e965daddbf93bd54186d8ad814afed8b5e7e7a0f4c2426f6ad39799815653fe985a21b38
6
+ metadata.gz: 5b0a6e89edab7eb425ed0f87796390523aa3d758ffc0721f8ea60fa379bfac478b2f0f8175b7d3bfb782329ab975b5f056cb6694078fdc9dca874b77726ae710
7
+ data.tar.gz: 6602913447af063d9f67c578c079efdc6dccc4b4323a88bb096ba78edb7ec5b07b8c345d4ec1782dc10a37ef9e963ef221877d55f3f71d969b14de515af61acc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.73.0 (2024-11-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.72.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.73.0
@@ -4057,7 +4057,7 @@ module Aws::EventBridge
4057
4057
  tracer: tracer
4058
4058
  )
4059
4059
  context[:gem_name] = 'aws-sdk-eventbridge'
4060
- context[:gem_version] = '1.72.0'
4060
+ context[:gem_version] = '1.73.0'
4061
4061
  Seahorse::Client::Request.new(handlers, context)
4062
4062
  end
4063
4063
 
@@ -341,8 +341,8 @@ module Aws::EventBridge
341
341
  # `Value` fields. The `Value` field specifies the ID of the Amazon Web
342
342
  # Services organization. Following is an example value for `Condition`:
343
343
  #
344
- # `'\{"Type" : "StringEquals", "Key": "aws:PrincipalOrgID", "Value":
345
- # "o-1234567890"\}'`
344
+ # `'{"Type" : "StringEquals", "Key": "aws:PrincipalOrgID", "Value":
345
+ # "o-1234567890"}'`
346
346
  #
347
347
  # @!attribute [rw] type
348
348
  # Specifies the type of condition. Currently the only supported value
@@ -2535,14 +2535,14 @@ module Aws::EventBridge
2535
2535
  #
2536
2536
  # ` "InputTransformer":`
2537
2537
  #
2538
- # `\{`
2538
+ # `{`
2539
2539
  #
2540
- # `"InputPathsMap": \{"instance": "$.detail.instance","status":
2541
- # "$.detail.status"\},`
2540
+ # `"InputPathsMap": {"instance": "$.detail.instance","status":
2541
+ # "$.detail.status"},`
2542
2542
  #
2543
2543
  # `"InputTemplate": "<instance> is in state <status>"`
2544
2544
  #
2545
- # `\}`
2545
+ # `}`
2546
2546
  #
2547
2547
  # To have the `InputTemplate` include quote marks within a JSON
2548
2548
  # string, escape each quote marks with a slash, as in the following
@@ -2550,29 +2550,29 @@ module Aws::EventBridge
2550
2550
  #
2551
2551
  # ` "InputTransformer":`
2552
2552
  #
2553
- # `\{`
2553
+ # `{`
2554
2554
  #
2555
- # `"InputPathsMap": \{"instance": "$.detail.instance","status":
2556
- # "$.detail.status"\},`
2555
+ # `"InputPathsMap": {"instance": "$.detail.instance","status":
2556
+ # "$.detail.status"},`
2557
2557
  #
2558
2558
  # `"InputTemplate": "<instance> is in state "<status>""`
2559
2559
  #
2560
- # `\}`
2560
+ # `}`
2561
2561
  #
2562
2562
  # The `InputTemplate` can also be valid JSON with varibles in quotes
2563
2563
  # or out, as in the following example:
2564
2564
  #
2565
2565
  # ` "InputTransformer":`
2566
2566
  #
2567
- # `\{`
2567
+ # `{`
2568
2568
  #
2569
- # `"InputPathsMap": \{"instance": "$.detail.instance","status":
2570
- # "$.detail.status"\},`
2569
+ # `"InputPathsMap": {"instance": "$.detail.instance","status":
2570
+ # "$.detail.status"},`
2571
2571
  #
2572
- # `"InputTemplate": '\{"myInstance": <instance>,"myStatus":
2573
- # "<instance> is in state "<status>""\}'`
2572
+ # `"InputTemplate": '{"myInstance": <instance>,"myStatus": "<instance>
2573
+ # is in state "<status>""}'`
2574
2574
  #
2575
- # `\}`
2575
+ # `}`
2576
2576
  # @return [String]
2577
2577
  #
2578
2578
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/InputTransformer AWS API Documentation
@@ -54,7 +54,7 @@ module Aws::EventBridge
54
54
  autoload :EndpointProvider, 'aws-sdk-eventbridge/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-eventbridge/endpoints'
56
56
 
57
- GEM_VERSION = '1.72.0'
57
+ GEM_VERSION = '1.73.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-eventbridge
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.72.0
4
+ version: 1.73.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core