aws-sdk-autoscaling 1.101.0 → 1.103.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-autoscaling/client.rb +1 -1
- data/lib/aws-sdk-autoscaling/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-autoscaling.rb +1 -1
- data/sig/activity.rbs +74 -0
- data/sig/auto_scaling_group.rbs +541 -0
- data/sig/client.rbs +1371 -0
- data/sig/errors.rbs +46 -0
- data/sig/instance.rbs +125 -0
- data/sig/launch_configuration.rbs +100 -0
- data/sig/lifecycle_hook.rbs +97 -0
- data/sig/load_balancer.rbs +62 -0
- data/sig/notification_configuration.rbs +59 -0
- data/sig/resource.rbs +341 -0
- data/sig/scaling_policy.rbs +101 -0
- data/sig/scheduled_action.rbs +77 -0
- data/sig/tag.rbs +85 -0
- data/sig/types.rbs +1410 -0
- data/sig/waiters.rbs +67 -0
- metadata +23 -8
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,67 @@
|
|
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 AutoScaling
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class GroupExists
|
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
|
+
?auto_scaling_group_names: Array[::String],
|
18
|
+
?next_token: ::String,
|
19
|
+
?max_records: ::Integer,
|
20
|
+
?filters: Array[
|
21
|
+
{
|
22
|
+
name: ::String?,
|
23
|
+
values: Array[::String]?
|
24
|
+
},
|
25
|
+
]
|
26
|
+
) -> Client::_DescribeAutoScalingGroupsResponseSuccess
|
27
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeAutoScalingGroupsResponseSuccess
|
28
|
+
end
|
29
|
+
|
30
|
+
class GroupInService
|
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
|
+
?auto_scaling_group_names: Array[::String],
|
36
|
+
?next_token: ::String,
|
37
|
+
?max_records: ::Integer,
|
38
|
+
?filters: Array[
|
39
|
+
{
|
40
|
+
name: ::String?,
|
41
|
+
values: Array[::String]?
|
42
|
+
},
|
43
|
+
]
|
44
|
+
) -> Client::_DescribeAutoScalingGroupsResponseSuccess
|
45
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeAutoScalingGroupsResponseSuccess
|
46
|
+
end
|
47
|
+
|
48
|
+
class GroupNotExists
|
49
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
50
|
+
| (?Hash[Symbol, untyped]) -> void
|
51
|
+
|
52
|
+
def wait: (
|
53
|
+
?auto_scaling_group_names: Array[::String],
|
54
|
+
?next_token: ::String,
|
55
|
+
?max_records: ::Integer,
|
56
|
+
?filters: Array[
|
57
|
+
{
|
58
|
+
name: ::String?,
|
59
|
+
values: Array[::String]?
|
60
|
+
},
|
61
|
+
]
|
62
|
+
) -> Client::_DescribeAutoScalingGroupsResponseSuccess
|
63
|
+
| (?Hash[Symbol, untyped]) -> Client::_DescribeAutoScalingGroupsResponseSuccess
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-autoscaling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.103.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
|
@@ -77,13 +77,28 @@ files:
|
|
77
77
|
- lib/aws-sdk-autoscaling/tag.rb
|
78
78
|
- lib/aws-sdk-autoscaling/types.rb
|
79
79
|
- lib/aws-sdk-autoscaling/waiters.rb
|
80
|
+
- sig/activity.rbs
|
81
|
+
- sig/auto_scaling_group.rbs
|
82
|
+
- sig/client.rbs
|
83
|
+
- sig/errors.rbs
|
84
|
+
- sig/instance.rbs
|
85
|
+
- sig/launch_configuration.rbs
|
86
|
+
- sig/lifecycle_hook.rbs
|
87
|
+
- sig/load_balancer.rbs
|
88
|
+
- sig/notification_configuration.rbs
|
89
|
+
- sig/resource.rbs
|
90
|
+
- sig/scaling_policy.rbs
|
91
|
+
- sig/scheduled_action.rbs
|
92
|
+
- sig/tag.rbs
|
93
|
+
- sig/types.rbs
|
94
|
+
- sig/waiters.rbs
|
80
95
|
homepage: https://github.com/aws/aws-sdk-ruby
|
81
96
|
licenses:
|
82
97
|
- Apache-2.0
|
83
98
|
metadata:
|
84
99
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-autoscaling
|
85
100
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-autoscaling/CHANGELOG.md
|
86
|
-
post_install_message:
|
101
|
+
post_install_message:
|
87
102
|
rdoc_options: []
|
88
103
|
require_paths:
|
89
104
|
- lib
|
@@ -98,8 +113,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
113
|
- !ruby/object:Gem::Version
|
99
114
|
version: '0'
|
100
115
|
requirements: []
|
101
|
-
rubygems_version: 3.
|
102
|
-
signing_key:
|
116
|
+
rubygems_version: 3.4.10
|
117
|
+
signing_key:
|
103
118
|
specification_version: 4
|
104
119
|
summary: AWS SDK for Ruby - Auto Scaling
|
105
120
|
test_files: []
|