aws-sdk-cloudwatchevents 1.33.0 → 1.64.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 +395 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-cloudwatchevents/client.rb +1631 -246
- data/lib/aws-sdk-cloudwatchevents/client_api.rb +824 -17
- data/lib/aws-sdk-cloudwatchevents/customizations.rb +1 -1
- data/lib/aws-sdk-cloudwatchevents/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-cloudwatchevents/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-cloudwatchevents/endpoints.rb +730 -0
- data/lib/aws-sdk-cloudwatchevents/errors.rb +12 -1
- data/lib/aws-sdk-cloudwatchevents/plugins/endpoints.rb +170 -0
- data/lib/aws-sdk-cloudwatchevents/resource.rb +1 -1
- data/lib/aws-sdk-cloudwatchevents/types.rb +2481 -822
- data/lib/aws-sdk-cloudwatchevents.rb +8 -3
- metadata +16 -10
@@ -3,18 +3,23 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
13
14
|
require_relative 'aws-sdk-cloudwatchevents/types'
|
14
15
|
require_relative 'aws-sdk-cloudwatchevents/client_api'
|
16
|
+
require_relative 'aws-sdk-cloudwatchevents/plugins/endpoints.rb'
|
15
17
|
require_relative 'aws-sdk-cloudwatchevents/client'
|
16
18
|
require_relative 'aws-sdk-cloudwatchevents/errors'
|
17
19
|
require_relative 'aws-sdk-cloudwatchevents/resource'
|
20
|
+
require_relative 'aws-sdk-cloudwatchevents/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-cloudwatchevents/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-cloudwatchevents/endpoints'
|
18
23
|
require_relative 'aws-sdk-cloudwatchevents/customizations'
|
19
24
|
|
20
25
|
# This module provides support for Amazon CloudWatch Events. This module is available in the
|
@@ -44,9 +49,9 @@ require_relative 'aws-sdk-cloudwatchevents/customizations'
|
|
44
49
|
#
|
45
50
|
# See {Errors} for more information.
|
46
51
|
#
|
47
|
-
#
|
52
|
+
# @!group service
|
48
53
|
module Aws::CloudWatchEvents
|
49
54
|
|
50
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.64.0'
|
51
56
|
|
52
57
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudwatchevents
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.64.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:
|
11
|
+
date: 2023-07-11 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.177.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.177.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -47,24 +47,31 @@ dependencies:
|
|
47
47
|
description: Official AWS Ruby gem for Amazon CloudWatch Events. This gem is part
|
48
48
|
of the AWS SDK for Ruby.
|
49
49
|
email:
|
50
|
-
-
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
51
|
executables: []
|
52
52
|
extensions: []
|
53
53
|
extra_rdoc_files: []
|
54
54
|
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
55
58
|
- lib/aws-sdk-cloudwatchevents.rb
|
56
59
|
- lib/aws-sdk-cloudwatchevents/client.rb
|
57
60
|
- lib/aws-sdk-cloudwatchevents/client_api.rb
|
58
61
|
- lib/aws-sdk-cloudwatchevents/customizations.rb
|
62
|
+
- lib/aws-sdk-cloudwatchevents/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-cloudwatchevents/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-cloudwatchevents/endpoints.rb
|
59
65
|
- lib/aws-sdk-cloudwatchevents/errors.rb
|
66
|
+
- lib/aws-sdk-cloudwatchevents/plugins/endpoints.rb
|
60
67
|
- lib/aws-sdk-cloudwatchevents/resource.rb
|
61
68
|
- lib/aws-sdk-cloudwatchevents/types.rb
|
62
69
|
homepage: https://github.com/aws/aws-sdk-ruby
|
63
70
|
licenses:
|
64
71
|
- Apache-2.0
|
65
72
|
metadata:
|
66
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
67
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
73
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatchevents
|
74
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatchevents/CHANGELOG.md
|
68
75
|
post_install_message:
|
69
76
|
rdoc_options: []
|
70
77
|
require_paths:
|
@@ -73,15 +80,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
73
80
|
requirements:
|
74
81
|
- - ">="
|
75
82
|
- !ruby/object:Gem::Version
|
76
|
-
version: '
|
83
|
+
version: '2.3'
|
77
84
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
85
|
requirements:
|
79
86
|
- - ">="
|
80
87
|
- !ruby/object:Gem::Version
|
81
88
|
version: '0'
|
82
89
|
requirements: []
|
83
|
-
|
84
|
-
rubygems_version: 2.7.6.2
|
90
|
+
rubygems_version: 3.1.6
|
85
91
|
signing_key:
|
86
92
|
specification_version: 4
|
87
93
|
summary: AWS SDK for Ruby - Amazon CloudWatch Events
|