aws-sdk-chimesdkvoice 1.26.0 → 1.32.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -15,11 +15,11 @@ module Aws::ChimeSDKVoice
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::ChimeSDKVoice::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::ChimeSDKVoice::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::ChimeSDKVoice::EndpointParameters`.
22
+ DOCS
23
23
  Aws::ChimeSDKVoice::EndpointProvider.new
24
24
  end
25
25
 
@@ -40,11 +40,23 @@ module Aws::ChimeSDKVoice
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
@@ -1492,7 +1492,7 @@ module Aws::ChimeSDKVoice
1492
1492
  # @return [String]
1493
1493
  #
1494
1494
  # @!attribute [rw] voice_tone_analysis_task_id
1495
- # The ID of the voice tone anlysis task.
1495
+ # The ID of the voice tone analysis task.
1496
1496
  # @return [String]
1497
1497
  #
1498
1498
  # @!attribute [rw] is_caller
@@ -1985,7 +1985,7 @@ module Aws::ChimeSDKVoice
1985
1985
  # The configuration for a call analytics task.
1986
1986
  #
1987
1987
  # @!attribute [rw] disabled
1988
- # Denotes the configration as enabled or disabled.
1988
+ # Denotes the configuration as enabled or disabled.
1989
1989
  # @return [Boolean]
1990
1990
  #
1991
1991
  # @!attribute [rw] configuration_arn
@@ -3846,7 +3846,13 @@ module Aws::ChimeSDKVoice
3846
3846
  # @return [String]
3847
3847
  #
3848
3848
  # @!attribute [rw] country
3849
- # The country in the address being validated.
3849
+ # The country in the address being validated as two-letter country
3850
+ # code in ISO 3166-1 alpha-2 format, such as `US`. For more
3851
+ # information, see [ISO 3166-1 alpha-2][1] in Wikipedia.
3852
+ #
3853
+ #
3854
+ #
3855
+ # [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
3850
3856
  # @return [String]
3851
3857
  #
3852
3858
  # @!attribute [rw] postal_code
@@ -3868,10 +3874,18 @@ module Aws::ChimeSDKVoice
3868
3874
  end
3869
3875
 
3870
3876
  # @!attribute [rw] validation_result
3871
- # Number indicating the result of address validation. `0` means the
3872
- # address was perfect as-is and successfully validated. `1` means the
3873
- # address was corrected. `2` means the address sent was not close
3874
- # enough and was not validated.
3877
+ # Number indicating the result of address validation.
3878
+ #
3879
+ # Each possible result is defined as follows:
3880
+ #
3881
+ # * `0` - Address validation succeeded.
3882
+ #
3883
+ # * `1` - Address validation succeeded. The address was a close enough
3884
+ # match and has been corrected as part of the address object.
3885
+ #
3886
+ # * `2` - Address validation failed. You should re-submit the
3887
+ # validation request with candidates from the `CandidateAddressList`
3888
+ # result, if it's a close match.
3875
3889
  # @return [Integer]
3876
3890
  #
3877
3891
  # @!attribute [rw] address_external_id
@@ -4246,3 +4260,4 @@ module Aws::ChimeSDKVoice
4246
4260
 
4247
4261
  end
4248
4262
  end
4263
+
@@ -11,16 +11,7 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
- require_relative 'aws-sdk-chimesdkvoice/types'
15
- require_relative 'aws-sdk-chimesdkvoice/client_api'
16
- require_relative 'aws-sdk-chimesdkvoice/plugins/endpoints.rb'
17
- require_relative 'aws-sdk-chimesdkvoice/client'
18
- require_relative 'aws-sdk-chimesdkvoice/errors'
19
- require_relative 'aws-sdk-chimesdkvoice/resource'
20
- require_relative 'aws-sdk-chimesdkvoice/endpoint_parameters'
21
- require_relative 'aws-sdk-chimesdkvoice/endpoint_provider'
22
- require_relative 'aws-sdk-chimesdkvoice/endpoints'
23
- require_relative 'aws-sdk-chimesdkvoice/customizations'
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:chimesdkvoice)
24
15
 
25
16
  # This module provides support for Amazon Chime SDK Voice. This module is available in the
26
17
  # `aws-sdk-chimesdkvoice` gem.
@@ -51,7 +42,20 @@ require_relative 'aws-sdk-chimesdkvoice/customizations'
51
42
  #
52
43
  # @!group service
53
44
  module Aws::ChimeSDKVoice
45
+ autoload :Types, 'aws-sdk-chimesdkvoice/types'
46
+ autoload :ClientApi, 'aws-sdk-chimesdkvoice/client_api'
47
+ module Plugins
48
+ autoload :Endpoints, 'aws-sdk-chimesdkvoice/plugins/endpoints.rb'
49
+ end
50
+ autoload :Client, 'aws-sdk-chimesdkvoice/client'
51
+ autoload :Errors, 'aws-sdk-chimesdkvoice/errors'
52
+ autoload :Resource, 'aws-sdk-chimesdkvoice/resource'
53
+ autoload :EndpointParameters, 'aws-sdk-chimesdkvoice/endpoint_parameters'
54
+ autoload :EndpointProvider, 'aws-sdk-chimesdkvoice/endpoint_provider'
55
+ autoload :Endpoints, 'aws-sdk-chimesdkvoice/endpoints'
54
56
 
55
- GEM_VERSION = '1.26.0'
57
+ GEM_VERSION = '1.32.0'
56
58
 
57
59
  end
60
+
61
+ require_relative 'aws-sdk-chimesdkvoice/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-chimesdkvoice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.32.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-18 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