aws-sdk-autoscaling 1.101.0 → 1.103.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f4354c185fd53233c1641dbe29a02d9bce1bbad55e98f1bbc4a26a9d687b0624
4
- data.tar.gz: 6c7a015a232ffa3e3b92def3838fedfc50698b66ef95f9127c9b2a6411a78d13
3
+ metadata.gz: a8aec58f99bca738b51969e0c109b484f94e60c40e2b10bede3b4da607d76bdf
4
+ data.tar.gz: e205bac1211591650af208a9779bc06b915f03f9d8adc0489d0342129d90b183
5
5
  SHA512:
6
- metadata.gz: 638153662117d526fac2e3f4d12cf43e4b4b2f0a293dd3314697f408d2c5543fdc140341b8cb3d90128912abe92304168eeb70c76e8e61cd9e0234d245029154
7
- data.tar.gz: e88b4b2620d31645e890a350434d099a4c69ece9c04d0b82eee772ab35878d094bbcde82ae534a0d0f102f682cfbd002a40d64a5c6bc5cba1aafb9e11ffdcb1e
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.101.0
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.101.0'
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
 
@@ -63,6 +63,6 @@ require_relative 'aws-sdk-autoscaling/customizations'
63
63
  # @!group service
64
64
  module Aws::AutoScaling
65
65
 
66
- GEM_VERSION = '1.101.0'
66
+ GEM_VERSION = '1.103.0'
67
67
 
68
68
  end
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