aws-sdk-chimesdkvoice 1.17.0 → 1.19.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: 116c2a51ee498027a7680126d38a87d9f8ee8c98752f7ef9b2ba2d8597151eee
4
- data.tar.gz: 0ef69fdbfc6c00c7496a44380b5303f5384e121da5b0e3cb7cc4679c962a612a
3
+ metadata.gz: 29ebb3fa944feb7e616603d5b88b748f0e2425f218d62544a52c78fd910ff0cd
4
+ data.tar.gz: 568d5937693f864f240b0266fbdd0fd9d199238b6dc4f23125dc6ded98ec89b1
5
5
  SHA512:
6
- metadata.gz: c60d2675f1d6696b16250a163f7f61a3e696ee892081175d1f8fde981e80c29ddec6e1fef4d067b0e4eeb32cdbb7a007609604806f1d67ef02e727b964f18f97
7
- data.tar.gz: e4178625999e29528ad6efb1489d7917f140e4f3aa8393f4ddfeacf64753e2cbe0911df0b8d7e852b457526e81b9764565969ac79cd102b0bf9bfda7c63f2d91
6
+ metadata.gz: 7bf7765b84a70358a1b89c7f0406336f0af5e9cd2a07a5c71d542ca9b14974515ab53de48ce9c36988d00b2b7ff8db66e0ffd6ff9f0204fb71ac662b7fea894a
7
+ data.tar.gz: fec2ae555c1aab33291c0b571bfce64d3ca01e98d1ed7f0f80b50b96c90d1fc18555e383239630010690b0fa214e8d68604b154bc9f4702f84413da2398a2b53
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2024-04-30)
5
+ ------------------
6
+
7
+ * Feature - Due to changes made by the Amazon Alexa service, GetSipMediaApplicationAlexaSkillConfiguration and PutSipMediaApplicationAlexaSkillConfiguration APIs are no longer available for use. For more information, refer to the Alexa Smart Properties page.
8
+
9
+ 1.18.0 (2024-04-25)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.17.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.19.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::ChimeSDKVoice
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::ChimeSDKVoice
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::ChimeSDKVoice
337
346
  # @option options [Aws::ChimeSDKVoice::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ChimeSDKVoice::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -510,7 +534,14 @@ module Aws::ChimeSDKVoice
510
534
  req.send_request(options)
511
535
  end
512
536
 
513
- # Updates one or more phone numbers.
537
+ # Updates phone number product types, calling names, or phone number
538
+ # names. You can update one attribute at a time for each
539
+ # `UpdatePhoneNumberRequestItem`. For example, you can update the
540
+ # product type, the calling name, or phone name.
541
+ #
542
+ # <note markdown="1"> You cannot have a duplicate `phoneNumberId` in a request.
543
+ #
544
+ # </note>
514
545
  #
515
546
  # @option params [required, Array<Types::UpdatePhoneNumberRequestItem>] :update_phone_number_request_items
516
547
  # Lists the phone numbers in the update request.
@@ -1729,6 +1760,14 @@ module Aws::ChimeSDKVoice
1729
1760
 
1730
1761
  # Gets the Alexa Skill configuration for the SIP media application.
1731
1762
  #
1763
+ # Due to changes made by the Amazon Alexa service, this API is no longer
1764
+ # available for use. For more information, refer to the [Alexa Smart
1765
+ # Properties][1] page.
1766
+ #
1767
+ #
1768
+ #
1769
+ # [1]: https://developer.amazon.com/en-US/alexa/alexasmartproperties
1770
+ #
1732
1771
  # @option params [required, String] :sip_media_application_id
1733
1772
  # The SIP media application ID.
1734
1773
  #
@@ -2861,6 +2900,14 @@ module Aws::ChimeSDKVoice
2861
2900
 
2862
2901
  # Updates the Alexa Skill configuration for the SIP media application.
2863
2902
  #
2903
+ # Due to changes made by the Amazon Alexa service, this API is no longer
2904
+ # available for use. For more information, refer to the [Alexa Smart
2905
+ # Properties][1] page.
2906
+ #
2907
+ #
2908
+ #
2909
+ # [1]: https://developer.amazon.com/en-US/alexa/alexasmartproperties
2910
+ #
2864
2911
  # @option params [required, String] :sip_media_application_id
2865
2912
  # The SIP media application ID.
2866
2913
  #
@@ -3611,10 +3658,10 @@ module Aws::ChimeSDKVoice
3611
3658
  req.send_request(options)
3612
3659
  end
3613
3660
 
3614
- # Updates phone number details, such as product type or calling name,
3615
- # for the specified phone number ID. You can update one phone number
3616
- # detail at a time. For example, you can update either the product type
3617
- # or the calling name in one action.
3661
+ # Updates phone number details, such as product type, calling name, or
3662
+ # phone number name for the specified phone number ID. You can update
3663
+ # one phone number detail at a time. For example, you can update either
3664
+ # the product type, calling name, or phone number name in one action.
3618
3665
  #
3619
3666
  # For numbers outside the U.S., you must use the Amazon Chime SDK SIP
3620
3667
  # Media Application Dial-In product type.
@@ -3633,7 +3680,7 @@ module Aws::ChimeSDKVoice
3633
3680
  # The outbound calling name associated with the phone number.
3634
3681
  #
3635
3682
  # @option params [String] :name
3636
- # Specifies the name assigned to one or more phone numbers.
3683
+ # Specifies the updated name assigned to one or more phone numbers.
3637
3684
  #
3638
3685
  # @return [Types::UpdatePhoneNumberResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3639
3686
  #
@@ -4186,7 +4233,7 @@ module Aws::ChimeSDKVoice
4186
4233
  params: params,
4187
4234
  config: config)
4188
4235
  context[:gem_name] = 'aws-sdk-chimesdkvoice'
4189
- context[:gem_version] = '1.17.0'
4236
+ context[:gem_version] = '1.19.0'
4190
4237
  Seahorse::Client::Request.new(handlers, context)
4191
4238
  end
4192
4239
 
@@ -1922,6 +1922,7 @@ module Aws::ChimeSDKVoice
1922
1922
  o.name = "GetSipMediaApplicationAlexaSkillConfiguration"
1923
1923
  o.http_method = "GET"
1924
1924
  o.http_request_uri = "/sip-media-applications/{sipMediaApplicationId}/alexa-skill-configuration"
1925
+ o.deprecated = true
1925
1926
  o.input = Shapes::ShapeRef.new(shape: GetSipMediaApplicationAlexaSkillConfigurationRequest)
1926
1927
  o.output = Shapes::ShapeRef.new(shape: GetSipMediaApplicationAlexaSkillConfigurationResponse)
1927
1928
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
@@ -2410,6 +2411,7 @@ module Aws::ChimeSDKVoice
2410
2411
  o.name = "PutSipMediaApplicationAlexaSkillConfiguration"
2411
2412
  o.http_method = "PUT"
2412
2413
  o.http_request_uri = "/sip-media-applications/{sipMediaApplicationId}/alexa-skill-configuration"
2414
+ o.deprecated = true
2413
2415
  o.input = Shapes::ShapeRef.new(shape: PutSipMediaApplicationAlexaSkillConfigurationRequest)
2414
2416
  o.output = Shapes::ShapeRef.new(shape: PutSipMediaApplicationAlexaSkillConfigurationResponse)
2415
2417
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
@@ -32,7 +32,7 @@ module Aws::ChimeSDKVoice
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://voice-chime-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -2918,6 +2918,14 @@ module Aws::ChimeSDKVoice
2918
2918
 
2919
2919
  # The Alexa Skill configuration of a SIP media application.
2920
2920
  #
2921
+ # Due to changes made by the Amazon Alexa service, this data type is no
2922
+ # longer available for use. For more information, refer to the [Alexa
2923
+ # Smart Properties][1] page.
2924
+ #
2925
+ #
2926
+ #
2927
+ # [1]: https://developer.amazon.com/en-US/alexa/alexasmartproperties
2928
+ #
2921
2929
  # @!attribute [rw] alexa_skill_status
2922
2930
  # The status of the Alexa Skill configuration.
2923
2931
  # @return [String]
@@ -3470,7 +3478,7 @@ module Aws::ChimeSDKVoice
3470
3478
  # @return [String]
3471
3479
  #
3472
3480
  # @!attribute [rw] name
3473
- # Specifies the name assigned to one or more phone numbers.
3481
+ # Specifies the updated name assigned to one or more phone numbers.
3474
3482
  # @return [String]
3475
3483
  #
3476
3484
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdatePhoneNumberRequest AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkvoice/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKVoice
54
54
 
55
- GEM_VERSION = '1.17.0'
55
+ GEM_VERSION = '1.19.0'
56
56
 
57
57
  end
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.17.0
4
+ version: 1.19.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-30 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement