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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8aec58f99bca738b51969e0c109b484f94e60c40e2b10bede3b4da607d76bdf
|
4
|
+
data.tar.gz: e205bac1211591650af208a9779bc06b915f03f9d8adc0489d0342129d90b183
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c63148b27797833c16928573c50205e4077b1b55617dcab79b0f186bed07cf3adedd5ba92fda7f4a20890b1ae083a2123dc7259ec295df88d379c780b1bd8692
|
7
|
+
data.tar.gz: eb21508d17ef9f306dfe8c8e91d650cec42e4c79ef550c390c438e406e07818e0b14f2dd91e913d7bae2a7c9121f8e458c0382843373c66f9016f20113efbb8c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.103.0 (2024-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.102.0 (2023-11-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.101.0 (2023-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.103.0
|
@@ -7164,7 +7164,7 @@ module Aws::AutoScaling
|
|
7164
7164
|
params: params,
|
7165
7165
|
config: config)
|
7166
7166
|
context[:gem_name] = 'aws-sdk-autoscaling'
|
7167
|
-
context[:gem_version] = '1.
|
7167
|
+
context[:gem_version] = '1.103.0'
|
7168
7168
|
Seahorse::Client::Request.new(handlers, context)
|
7169
7169
|
end
|
7170
7170
|
|
@@ -14,6 +14,7 @@ module Aws::AutoScaling
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::AutoScaling::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -25,16 +26,17 @@ module Aws::AutoScaling
|
|
25
26
|
# @api private
|
26
27
|
class Handler < Seahorse::Client::Handler
|
27
28
|
def call(context)
|
28
|
-
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
29
|
unless context[:discovered_endpoint]
|
30
30
|
params = parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
34
34
|
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
|
36
|
+
context[:endpoint_params] = params
|
37
|
+
context[:endpoint_properties] = endpoint.properties
|
35
38
|
end
|
36
39
|
|
37
|
-
context[:endpoint_params] = params
|
38
40
|
context[:auth_scheme] =
|
39
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
42
|
|
data/lib/aws-sdk-autoscaling.rb
CHANGED
data/sig/activity.rbs
ADDED
@@ -0,0 +1,74 @@
|
|
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
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html
|
11
|
+
class Activity
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#initialize-instance_method
|
13
|
+
def initialize: (String id, Hash[Symbol, untyped] options) -> void
|
14
|
+
| (id: String, ?client: Client) -> void
|
15
|
+
| (Hash[Symbol, untyped] args) -> void
|
16
|
+
|
17
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#id-instance_method
|
18
|
+
def id: () -> String
|
19
|
+
alias activity_id id
|
20
|
+
|
21
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#auto_scaling_group_name-instance_method
|
22
|
+
def auto_scaling_group_name: () -> ::String
|
23
|
+
|
24
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#description-instance_method
|
25
|
+
def description: () -> ::String
|
26
|
+
|
27
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#cause-instance_method
|
28
|
+
def cause: () -> ::String
|
29
|
+
|
30
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#start_time-instance_method
|
31
|
+
def start_time: () -> ::Time
|
32
|
+
|
33
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#end_time-instance_method
|
34
|
+
def end_time: () -> ::Time
|
35
|
+
|
36
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#status_code-instance_method
|
37
|
+
def status_code: () -> ("PendingSpotBidPlacement" | "WaitingForSpotInstanceRequestId" | "WaitingForSpotInstanceId" | "WaitingForInstanceId" | "PreInService" | "InProgress" | "WaitingForELBConnectionDraining" | "MidLifecycleAction" | "WaitingForInstanceWarmup" | "Successful" | "Failed" | "Cancelled" | "WaitingForConnectionDraining")
|
38
|
+
|
39
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#status_message-instance_method
|
40
|
+
def status_message: () -> ::String
|
41
|
+
|
42
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#progress-instance_method
|
43
|
+
def progress: () -> ::Integer
|
44
|
+
|
45
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#details-instance_method
|
46
|
+
def details: () -> ::String
|
47
|
+
|
48
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#auto_scaling_group_state-instance_method
|
49
|
+
def auto_scaling_group_state: () -> ::String
|
50
|
+
|
51
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#auto_scaling_group_arn-instance_method
|
52
|
+
def auto_scaling_group_arn: () -> ::String
|
53
|
+
|
54
|
+
def client: () -> Client
|
55
|
+
|
56
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#load-instance_method
|
57
|
+
def load: () -> self
|
58
|
+
alias reload load
|
59
|
+
|
60
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#data-instance_method
|
61
|
+
def data: () -> Types::Activity
|
62
|
+
|
63
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#data_loaded?-instance_method
|
64
|
+
def data_loaded?: () -> bool
|
65
|
+
|
66
|
+
|
67
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AutoScaling/Activity.html#group-instance_method
|
68
|
+
def group: () -> AutoScalingGroup?
|
69
|
+
|
70
|
+
class Collection < ::Aws::Resources::Collection[Activity]
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|