aws-sdk-cloudwatch 1.83.0 → 1.85.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatch/client.rb +19 -16
- data/lib/aws-sdk-cloudwatch/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-cloudwatch/metric.rb +7 -4
- data/lib/aws-sdk-cloudwatch/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-cloudwatch/types.rb +24 -20
- data/lib/aws-sdk-cloudwatch.rb +1 -1
- data/sig/alarm.rbs +179 -0
- data/sig/client.rbs +838 -0
- data/sig/composite_alarm.rbs +146 -0
- data/sig/errors.rbs +55 -0
- data/sig/metric.rbs +163 -0
- data/sig/resource.rbs +128 -0
- data/sig/types.rbs +856 -0
- data/sig/waiters.rbs +49 -0
- metadata +16 -8
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module CloudWatch
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class AlarmExists
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
15
|
+
|
16
|
+
def wait: (
|
17
|
+
?alarm_names: Array[::String],
|
18
|
+
?alarm_name_prefix: ::String,
|
19
|
+
?alarm_types: Array[("CompositeAlarm" | "MetricAlarm")],
|
20
|
+
?children_of_alarm_name: ::String,
|
21
|
+
?parents_of_alarm_name: ::String,
|
22
|
+
?state_value: ("OK" | "ALARM" | "INSUFFICIENT_DATA"),
|
23
|
+
?action_prefix: ::String,
|
24
|
+
?max_records: ::Integer,
|
25
|
+
?next_token: ::String
|
26
|
+
) -> Client::_DescribeAlarmsResponseSuccess
|
27
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeAlarmsResponseSuccess
|
28
|
+
end
|
29
|
+
|
30
|
+
class CompositeAlarmExists
|
31
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
32
|
+
| (?Hash[Symbol, untyped]) -> void
|
33
|
+
|
34
|
+
def wait: (
|
35
|
+
?alarm_names: Array[::String],
|
36
|
+
?alarm_name_prefix: ::String,
|
37
|
+
?alarm_types: Array[("CompositeAlarm" | "MetricAlarm")],
|
38
|
+
?children_of_alarm_name: ::String,
|
39
|
+
?parents_of_alarm_name: ::String,
|
40
|
+
?state_value: ("OK" | "ALARM" | "INSUFFICIENT_DATA"),
|
41
|
+
?action_prefix: ::String,
|
42
|
+
?max_records: ::Integer,
|
43
|
+
?next_token: ::String
|
44
|
+
) -> Client::_DescribeAlarmsResponseSuccess
|
45
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeAlarmsResponseSuccess
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudwatch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.85.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 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.191.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.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -70,13 +70,21 @@ files:
|
|
70
70
|
- lib/aws-sdk-cloudwatch/resource.rb
|
71
71
|
- lib/aws-sdk-cloudwatch/types.rb
|
72
72
|
- lib/aws-sdk-cloudwatch/waiters.rb
|
73
|
+
- sig/alarm.rbs
|
74
|
+
- sig/client.rbs
|
75
|
+
- sig/composite_alarm.rbs
|
76
|
+
- sig/errors.rbs
|
77
|
+
- sig/metric.rbs
|
78
|
+
- sig/resource.rbs
|
79
|
+
- sig/types.rbs
|
80
|
+
- sig/waiters.rbs
|
73
81
|
homepage: https://github.com/aws/aws-sdk-ruby
|
74
82
|
licenses:
|
75
83
|
- Apache-2.0
|
76
84
|
metadata:
|
77
85
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatch
|
78
86
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatch/CHANGELOG.md
|
79
|
-
post_install_message:
|
87
|
+
post_install_message:
|
80
88
|
rdoc_options: []
|
81
89
|
require_paths:
|
82
90
|
- lib
|
@@ -91,8 +99,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
99
|
- !ruby/object:Gem::Version
|
92
100
|
version: '0'
|
93
101
|
requirements: []
|
94
|
-
rubygems_version: 3.
|
95
|
-
signing_key:
|
102
|
+
rubygems_version: 3.4.10
|
103
|
+
signing_key:
|
96
104
|
specification_version: 4
|
97
105
|
summary: AWS SDK for Ruby - CloudWatch
|
98
106
|
test_files: []
|