aws-sdk-eventbridge 1.28.0 → 1.32.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eventbridge/client.rb +12 -5
- data/lib/aws-sdk-eventbridge/types.rb +3 -3
- data/lib/aws-sdk-eventbridge.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bb03f1e8b19001c02e4e9976c264ec9401d1c2b56ce77ddf36f961203153094
|
4
|
+
data.tar.gz: 93c44670d953671fd3931c9fa7c847c8cc0f8581e730d6f58df88f9dd99afa3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c68a28a8fc0b76bab93059ba7c41fd7493c76aef236c2d55fe9a857e43a8b4e238f3733b03c16adf9c9b523ddededd17b9524b146796e129cda35e0b60132ee7
|
7
|
+
data.tar.gz: a17bd28e58cc508badf0a22e48ba65e26935a49ab06a643be9dfffce9b250b7cd6aafa1fdfb35f51cc0682bf3467dc81c3b818630b62acf10e62ab206a691d6a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.32.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.31.0 (2021-10-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.30.0 (2021-09-01)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.29.0 (2021-08-25)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - AWS EventBridge adds an enum of EXTERNAL for EcsParameters LaunchType for PutTargets API
|
23
|
+
|
4
24
|
1.28.0 (2021-08-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.32.0
|
@@ -285,6 +285,15 @@ module Aws::EventBridge
|
|
285
285
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
286
286
|
# requests are made, and retries are disabled.
|
287
287
|
#
|
288
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
289
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
290
|
+
# will be used if available.
|
291
|
+
#
|
292
|
+
# @option options [Boolean] :use_fips_endpoint
|
293
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
294
|
+
# When a `fips` region is used, the region is normalized and this config
|
295
|
+
# is set to `true`.
|
296
|
+
#
|
288
297
|
# @option options [Boolean] :validate_params (true)
|
289
298
|
# When `true`, request parameters are validated before
|
290
299
|
# sending the request.
|
@@ -2084,7 +2093,7 @@ module Aws::EventBridge
|
|
2084
2093
|
# resp.targets[0].run_command_parameters.run_command_targets[0].values[0] #=> String
|
2085
2094
|
# resp.targets[0].ecs_parameters.task_definition_arn #=> String
|
2086
2095
|
# resp.targets[0].ecs_parameters.task_count #=> Integer
|
2087
|
-
# resp.targets[0].ecs_parameters.launch_type #=> String, one of "EC2", "FARGATE"
|
2096
|
+
# resp.targets[0].ecs_parameters.launch_type #=> String, one of "EC2", "FARGATE", "EXTERNAL"
|
2088
2097
|
# resp.targets[0].ecs_parameters.network_configuration.awsvpc_configuration.subnets #=> Array
|
2089
2098
|
# resp.targets[0].ecs_parameters.network_configuration.awsvpc_configuration.subnets[0] #=> String
|
2090
2099
|
# resp.targets[0].ecs_parameters.network_configuration.awsvpc_configuration.security_groups #=> Array
|
@@ -2505,8 +2514,6 @@ module Aws::EventBridge
|
|
2505
2514
|
#
|
2506
2515
|
# * Amazon EC2 `CreateSnapshot` API call
|
2507
2516
|
#
|
2508
|
-
# * EC2 Image Builder
|
2509
|
-
#
|
2510
2517
|
# * Amazon EC2 `RebootInstances` API call
|
2511
2518
|
#
|
2512
2519
|
# * Amazon EC2 `StopInstances` API call
|
@@ -2678,7 +2685,7 @@ module Aws::EventBridge
|
|
2678
2685
|
# ecs_parameters: {
|
2679
2686
|
# task_definition_arn: "Arn", # required
|
2680
2687
|
# task_count: 1,
|
2681
|
-
# launch_type: "EC2", # accepts EC2, FARGATE
|
2688
|
+
# launch_type: "EC2", # accepts EC2, FARGATE, EXTERNAL
|
2682
2689
|
# network_configuration: {
|
2683
2690
|
# awsvpc_configuration: {
|
2684
2691
|
# subnets: ["String"], # required
|
@@ -3315,7 +3322,7 @@ module Aws::EventBridge
|
|
3315
3322
|
params: params,
|
3316
3323
|
config: config)
|
3317
3324
|
context[:gem_name] = 'aws-sdk-eventbridge'
|
3318
|
-
context[:gem_version] = '1.
|
3325
|
+
context[:gem_version] = '1.32.0'
|
3319
3326
|
Seahorse::Client::Request.new(handlers, context)
|
3320
3327
|
end
|
3321
3328
|
|
@@ -2247,7 +2247,7 @@ module Aws::EventBridge
|
|
2247
2247
|
# {
|
2248
2248
|
# task_definition_arn: "Arn", # required
|
2249
2249
|
# task_count: 1,
|
2250
|
-
# launch_type: "EC2", # accepts EC2, FARGATE
|
2250
|
+
# launch_type: "EC2", # accepts EC2, FARGATE, EXTERNAL
|
2251
2251
|
# network_configuration: {
|
2252
2252
|
# awsvpc_configuration: {
|
2253
2253
|
# subnets: ["String"], # required
|
@@ -4066,7 +4066,7 @@ module Aws::EventBridge
|
|
4066
4066
|
# ecs_parameters: {
|
4067
4067
|
# task_definition_arn: "Arn", # required
|
4068
4068
|
# task_count: 1,
|
4069
|
-
# launch_type: "EC2", # accepts EC2, FARGATE
|
4069
|
+
# launch_type: "EC2", # accepts EC2, FARGATE, EXTERNAL
|
4070
4070
|
# network_configuration: {
|
4071
4071
|
# awsvpc_configuration: {
|
4072
4072
|
# subnets: ["String"], # required
|
@@ -4937,7 +4937,7 @@ module Aws::EventBridge
|
|
4937
4937
|
# ecs_parameters: {
|
4938
4938
|
# task_definition_arn: "Arn", # required
|
4939
4939
|
# task_count: 1,
|
4940
|
-
# launch_type: "EC2", # accepts EC2, FARGATE
|
4940
|
+
# launch_type: "EC2", # accepts EC2, FARGATE, EXTERNAL
|
4941
4941
|
# network_configuration: {
|
4942
4942
|
# awsvpc_configuration: {
|
4943
4943
|
# subnets: ["String"], # required
|
data/lib/aws-sdk-eventbridge.rb
CHANGED
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.
|
4
|
+
version: 1.32.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: 2021-
|
11
|
+
date: 2021-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.122.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|