aws-sdk-autoscaling 1.114.0 → 1.121.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.
@@ -15,11 +15,11 @@ module Aws::AutoScaling
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::AutoScaling::EndpointProvider',
17
17
  rbs_type: 'untyped',
18
- docstring: 'The endpoint provider used to resolve endpoints. Any '\
19
- 'object that responds to `#resolve_endpoint(parameters)` '\
20
- 'where `parameters` is a Struct similar to '\
21
- '`Aws::AutoScaling::EndpointParameters`'
22
- ) do |cfg|
18
+ docstring: <<~DOCS) do |_cfg|
19
+ The endpoint provider used to resolve endpoints. Any object that responds to
20
+ `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
21
+ `Aws::AutoScaling::EndpointParameters`.
22
+ DOCS
23
23
  Aws::AutoScaling::EndpointProvider.new
24
24
  end
25
25
 
@@ -40,11 +40,23 @@ module Aws::AutoScaling
40
40
  context[:auth_scheme] =
41
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
42
42
 
43
- @handler.call(context)
43
+ with_metrics(context) { @handler.call(context) }
44
44
  end
45
45
 
46
46
  private
47
47
 
48
+ def with_metrics(context, &block)
49
+ metrics = []
50
+ metrics << 'ENDPOINT_OVERRIDE' unless context.config.regional_endpoint
51
+ if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
52
+ metrics << 'SIGV4A_SIGNING'
53
+ end
54
+ if context.config.credentials&.credentials&.account_id
55
+ metrics << 'RESOLVED_ACCOUNT_ID'
56
+ end
57
+ Aws::Plugins::UserAgent.metric(*metrics, &block)
58
+ end
59
+
48
60
  def apply_endpoint_headers(context, headers)
49
61
  headers.each do |key, values|
50
62
  value = values
@@ -293,9 +293,9 @@ module Aws::AutoScaling
293
293
  # @option options [String] :health_check_type
294
294
  # A comma-separated value string of one or more health check types.
295
295
  #
296
- # The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
297
- # default health check and cannot be disabled. For more information, see
298
- # [Health checks for instances in an Auto Scaling group][1] in the
296
+ # The valid values are `EC2`, `EBS`, `ELB`, and `VPC_LATTICE`. `EC2` is
297
+ # the default health check and cannot be disabled. For more information,
298
+ # see [Health checks for instances in an Auto Scaling group][1] in the
299
299
  # *Amazon EC2 Auto Scaling User Guide*.
300
300
  #
301
301
  # Only specify `EC2` if you must clear a value that was previously set.
@@ -1037,10 +1037,10 @@ module Aws::AutoScaling
1037
1037
  # @!attribute [rw] health_check_type
1038
1038
  # A comma-separated value string of one or more health check types.
1039
1039
  #
1040
- # The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
1041
- # default health check and cannot be disabled. For more information,
1042
- # see [Health checks for instances in an Auto Scaling group][1] in the
1043
- # *Amazon EC2 Auto Scaling User Guide*.
1040
+ # The valid values are `EC2`, `EBS`, `ELB`, and `VPC_LATTICE`. `EC2`
1041
+ # is the default health check and cannot be disabled. For more
1042
+ # information, see [Health checks for instances in an Auto Scaling
1043
+ # group][1] in the *Amazon EC2 Auto Scaling User Guide*.
1044
1044
  #
1045
1045
  # Only specify `EC2` if you must clear a value that was previously
1046
1046
  # set.
@@ -7667,10 +7667,10 @@ module Aws::AutoScaling
7667
7667
  # @!attribute [rw] health_check_type
7668
7668
  # A comma-separated value string of one or more health check types.
7669
7669
  #
7670
- # The valid values are `EC2`, `ELB`, and `VPC_LATTICE`. `EC2` is the
7671
- # default health check and cannot be disabled. For more information,
7672
- # see [Health checks for instances in an Auto Scaling group][1] in the
7673
- # *Amazon EC2 Auto Scaling User Guide*.
7670
+ # The valid values are `EC2`, `EBS`, `ELB`, and `VPC_LATTICE`. `EC2`
7671
+ # is the default health check and cannot be disabled. For more
7672
+ # information, see [Health checks for instances in an Auto Scaling
7673
+ # group][1] in the *Amazon EC2 Auto Scaling User Guide*.
7674
7674
  #
7675
7675
  # Only specify `EC2` if you must clear a value that was previously
7676
7676
  # set.
@@ -7924,3 +7924,4 @@ module Aws::AutoScaling
7924
7924
 
7925
7925
  end
7926
7926
  end
7927
+
@@ -11,27 +11,7 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
- require_relative 'aws-sdk-autoscaling/types'
15
- require_relative 'aws-sdk-autoscaling/client_api'
16
- require_relative 'aws-sdk-autoscaling/plugins/endpoints.rb'
17
- require_relative 'aws-sdk-autoscaling/client'
18
- require_relative 'aws-sdk-autoscaling/errors'
19
- require_relative 'aws-sdk-autoscaling/waiters'
20
- require_relative 'aws-sdk-autoscaling/resource'
21
- require_relative 'aws-sdk-autoscaling/endpoint_parameters'
22
- require_relative 'aws-sdk-autoscaling/endpoint_provider'
23
- require_relative 'aws-sdk-autoscaling/endpoints'
24
- require_relative 'aws-sdk-autoscaling/activity'
25
- require_relative 'aws-sdk-autoscaling/auto_scaling_group'
26
- require_relative 'aws-sdk-autoscaling/instance'
27
- require_relative 'aws-sdk-autoscaling/launch_configuration'
28
- require_relative 'aws-sdk-autoscaling/lifecycle_hook'
29
- require_relative 'aws-sdk-autoscaling/load_balancer'
30
- require_relative 'aws-sdk-autoscaling/notification_configuration'
31
- require_relative 'aws-sdk-autoscaling/scaling_policy'
32
- require_relative 'aws-sdk-autoscaling/scheduled_action'
33
- require_relative 'aws-sdk-autoscaling/tag'
34
- require_relative 'aws-sdk-autoscaling/customizations'
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:autoscaling)
35
15
 
36
16
  # This module provides support for Auto Scaling. This module is available in the
37
17
  # `aws-sdk-autoscaling` gem.
@@ -62,7 +42,31 @@ require_relative 'aws-sdk-autoscaling/customizations'
62
42
  #
63
43
  # @!group service
64
44
  module Aws::AutoScaling
45
+ autoload :Types, 'aws-sdk-autoscaling/types'
46
+ autoload :ClientApi, 'aws-sdk-autoscaling/client_api'
47
+ module Plugins
48
+ autoload :Endpoints, 'aws-sdk-autoscaling/plugins/endpoints.rb'
49
+ end
50
+ autoload :Client, 'aws-sdk-autoscaling/client'
51
+ autoload :Errors, 'aws-sdk-autoscaling/errors'
52
+ autoload :Waiters, 'aws-sdk-autoscaling/waiters'
53
+ autoload :Resource, 'aws-sdk-autoscaling/resource'
54
+ autoload :EndpointParameters, 'aws-sdk-autoscaling/endpoint_parameters'
55
+ autoload :EndpointProvider, 'aws-sdk-autoscaling/endpoint_provider'
56
+ autoload :Endpoints, 'aws-sdk-autoscaling/endpoints'
57
+ autoload :Activity, 'aws-sdk-autoscaling/activity'
58
+ autoload :AutoScalingGroup, 'aws-sdk-autoscaling/auto_scaling_group'
59
+ autoload :Instance, 'aws-sdk-autoscaling/instance'
60
+ autoload :LaunchConfiguration, 'aws-sdk-autoscaling/launch_configuration'
61
+ autoload :LifecycleHook, 'aws-sdk-autoscaling/lifecycle_hook'
62
+ autoload :LoadBalancer, 'aws-sdk-autoscaling/load_balancer'
63
+ autoload :NotificationConfiguration, 'aws-sdk-autoscaling/notification_configuration'
64
+ autoload :ScalingPolicy, 'aws-sdk-autoscaling/scaling_policy'
65
+ autoload :ScheduledAction, 'aws-sdk-autoscaling/scheduled_action'
66
+ autoload :Tag, 'aws-sdk-autoscaling/tag'
65
67
 
66
- GEM_VERSION = '1.114.0'
68
+ GEM_VERSION = '1.121.0'
67
69
 
68
70
  end
71
+
72
+ require_relative 'aws-sdk-autoscaling/customizations'
data/sig/client.rbs CHANGED
@@ -15,6 +15,7 @@ module Aws
15
15
  ?credentials: untyped,
16
16
  ?region: String,
17
17
  ?access_key_id: String,
18
+ ?account_id: String,
18
19
  ?active_endpoint_cache: bool,
19
20
  ?adaptive_retry_wait_to_fill: bool,
20
21
  ?client_side_monitoring: bool,
@@ -50,6 +51,7 @@ module Aws
50
51
  ?session_token: String,
51
52
  ?sigv4a_signing_region_set: Array[String],
52
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
55
  ?token_provider: untyped,
54
56
  ?use_dualstack_endpoint: bool,
55
57
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -15,6 +15,7 @@ module Aws
15
15
  ?credentials: untyped,
16
16
  ?region: String,
17
17
  ?access_key_id: String,
18
+ ?account_id: String,
18
19
  ?active_endpoint_cache: bool,
19
20
  ?adaptive_retry_wait_to_fill: bool,
20
21
  ?client_side_monitoring: bool,
@@ -50,6 +51,7 @@ module Aws
50
51
  ?session_token: String,
51
52
  ?sigv4a_signing_region_set: Array[String],
52
53
  ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
55
  ?token_provider: untyped,
54
56
  ?use_dualstack_endpoint: bool,
55
57
  ?use_fips_endpoint: bool,
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.114.0
4
+ version: 1.121.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: 2024-07-30 00:00:00.000000000 Z
11
+ date: 2024-09-24 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.201.0
22
+ version: 3.207.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.201.0
32
+ version: 3.207.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement