aws-sdk-chime 1.56.0 → 1.57.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c5365c4960d4ba53ff8450d51570659a52cf0ab0838c20801ccf969950e889e
4
- data.tar.gz: a3db6139dc709b4f488363e9fc19bc3b67c355dd8345c6ce0e1fa2ad785e4901
3
+ metadata.gz: dbd8abb062c33c23c84a25b6e550fb9b547c1cc97765c82943d9c3adfb2930b1
4
+ data.tar.gz: adbd2a31f83b1c3c8da84871a3bfd2358fbd5322c8d399a558b58e4c4b60e89c
5
5
  SHA512:
6
- metadata.gz: 29cf1d93ef34fffcb770aec7f86b110ac6d8bdcb20973520be0bd9098e8449849e01db3473928fffb0f88e5d0b456fa7f40c1677422978be7582b47c2aa1ee49
7
- data.tar.gz: 7cf976c38fd7c19fd13411bb6fd501a1bfe1348e88ff7ac0ef0482b0a719eaee0fcee87d31136287302c877edaef7f90d1b009837a12bdf82f1dafb0cd665880
6
+ metadata.gz: 8a029aa41ea57b6d6b09779c98d4e034785dc17786f116f69c18a137da0721ebdc12b1191a84d86b66d0459e1c3d59858d515f2f3f3fe9dc2cf032d0a9bc7583
7
+ data.tar.gz: c53cac717ddc250d19e3612754ec9c2799d0c7beb6678f5c3cba66233bfc7d1da2a615a453a5b06c43a6d3e08d4fe6a11239bc4e4402d88a57ad726af83f7326
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.57.0 (2021-09-14)
5
+ ------------------
6
+
7
+ * Feature - Adds support for SipHeaders parameter for CreateSipMediaApplicationCall.
8
+
4
9
  1.56.0 (2021-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.57.0
@@ -1995,6 +1995,9 @@ module Aws::Chime
1995
1995
  # @option params [required, String] :sip_media_application_id
1996
1996
  # The ID of the SIP media application.
1997
1997
  #
1998
+ # @option params [Hash<String,String>] :sip_headers
1999
+ # The SIP headers added to an outbound call leg.
2000
+ #
1998
2001
  # @return [Types::CreateSipMediaApplicationCallResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1999
2002
  #
2000
2003
  # * {Types::CreateSipMediaApplicationCallResponse#sip_media_application_call #sip_media_application_call} => Types::SipMediaApplicationCall
@@ -2005,6 +2008,9 @@ module Aws::Chime
2005
2008
  # from_phone_number: "E164PhoneNumber", # required
2006
2009
  # to_phone_number: "E164PhoneNumber", # required
2007
2010
  # sip_media_application_id: "NonEmptyString", # required
2011
+ # sip_headers: {
2012
+ # "SensitiveString" => "SensitiveString",
2013
+ # },
2008
2014
  # })
2009
2015
  #
2010
2016
  # @example Response structure
@@ -7193,7 +7199,7 @@ module Aws::Chime
7193
7199
  req.send_request(options)
7194
7200
  end
7195
7201
 
7196
- # Start transcription for the specified `meetingId`.
7202
+ # Starts transcription for the specified `meetingId`.
7197
7203
  #
7198
7204
  # @option params [required, String] :meeting_id
7199
7205
  # The unique ID of the meeting being transcribed.
@@ -8405,7 +8411,7 @@ module Aws::Chime
8405
8411
  params: params,
8406
8412
  config: config)
8407
8413
  context[:gem_name] = 'aws-sdk-chime'
8408
- context[:gem_version] = '1.56.0'
8414
+ context[:gem_version] = '1.57.0'
8409
8415
  Seahorse::Client::Request.new(handlers, context)
8410
8416
  end
8411
8417
 
@@ -511,6 +511,7 @@ module Aws::Chime
511
511
  SigninDelegateGroup = Shapes::StructureShape.new(name: 'SigninDelegateGroup')
512
512
  SigninDelegateGroupList = Shapes::ListShape.new(name: 'SigninDelegateGroupList')
513
513
  SipApplicationPriority = Shapes::IntegerShape.new(name: 'SipApplicationPriority')
514
+ SipHeadersMap = Shapes::MapShape.new(name: 'SipHeadersMap')
514
515
  SipMediaApplication = Shapes::StructureShape.new(name: 'SipMediaApplication')
515
516
  SipMediaApplicationCall = Shapes::StructureShape.new(name: 'SipMediaApplicationCall')
516
517
  SipMediaApplicationEndpoint = Shapes::StructureShape.new(name: 'SipMediaApplicationEndpoint')
@@ -1136,6 +1137,7 @@ module Aws::Chime
1136
1137
  CreateSipMediaApplicationCallRequest.add_member(:from_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "FromPhoneNumber"))
1137
1138
  CreateSipMediaApplicationCallRequest.add_member(:to_phone_number, Shapes::ShapeRef.new(shape: E164PhoneNumber, required: true, location_name: "ToPhoneNumber"))
1138
1139
  CreateSipMediaApplicationCallRequest.add_member(:sip_media_application_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "sipMediaApplicationId"))
1140
+ CreateSipMediaApplicationCallRequest.add_member(:sip_headers, Shapes::ShapeRef.new(shape: SipHeadersMap, location_name: "SipHeaders"))
1139
1141
  CreateSipMediaApplicationCallRequest.struct_class = Types::CreateSipMediaApplicationCallRequest
1140
1142
 
1141
1143
  CreateSipMediaApplicationCallResponse.add_member(:sip_media_application_call, Shapes::ShapeRef.new(shape: SipMediaApplicationCall, location_name: "SipMediaApplicationCall"))
@@ -2312,6 +2314,9 @@ module Aws::Chime
2312
2314
 
2313
2315
  SigninDelegateGroupList.member = Shapes::ShapeRef.new(shape: SigninDelegateGroup)
2314
2316
 
2317
+ SipHeadersMap.key = Shapes::ShapeRef.new(shape: SensitiveString)
2318
+ SipHeadersMap.value = Shapes::ShapeRef.new(shape: SensitiveString)
2319
+
2315
2320
  SipMediaApplication.add_member(:sip_media_application_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "SipMediaApplicationId"))
2316
2321
  SipMediaApplication.add_member(:aws_region, Shapes::ShapeRef.new(shape: String, location_name: "AwsRegion"))
2317
2322
  SipMediaApplication.add_member(:name, Shapes::ShapeRef.new(shape: SipMediaApplicationName, location_name: "Name"))
@@ -3213,6 +3218,7 @@ module Aws::Chime
3213
3218
  o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
3214
3219
  o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
3215
3220
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
3221
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
3216
3222
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
3217
3223
  o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
3218
3224
  end)
@@ -2655,6 +2655,9 @@ module Aws::Chime
2655
2655
  # from_phone_number: "E164PhoneNumber", # required
2656
2656
  # to_phone_number: "E164PhoneNumber", # required
2657
2657
  # sip_media_application_id: "NonEmptyString", # required
2658
+ # sip_headers: {
2659
+ # "SensitiveString" => "SensitiveString",
2660
+ # },
2658
2661
  # }
2659
2662
  #
2660
2663
  # @!attribute [rw] from_phone_number
@@ -2670,12 +2673,17 @@ module Aws::Chime
2670
2673
  # The ID of the SIP media application.
2671
2674
  # @return [String]
2672
2675
  #
2676
+ # @!attribute [rw] sip_headers
2677
+ # The SIP headers added to an outbound call leg.
2678
+ # @return [Hash<String,String>]
2679
+ #
2673
2680
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateSipMediaApplicationCallRequest AWS API Documentation
2674
2681
  #
2675
2682
  class CreateSipMediaApplicationCallRequest < Struct.new(
2676
2683
  :from_phone_number,
2677
2684
  :to_phone_number,
2678
- :sip_media_application_id)
2685
+ :sip_media_application_id,
2686
+ :sip_headers)
2679
2687
  SENSITIVE = [:from_phone_number, :to_phone_number]
2680
2688
  include Aws::Structure
2681
2689
  end
@@ -7313,6 +7321,11 @@ module Aws::Chime
7313
7321
  # Origination settings enable your SIP hosts to receive inbound calls
7314
7322
  # using your Amazon Chime Voice Connector.
7315
7323
  #
7324
+ # <note markdown="1"> The parameters listed below are not required, but you must use at
7325
+ # least one.
7326
+ #
7327
+ # </note>
7328
+ #
7316
7329
  # @note When making an API call, you may pass Origination
7317
7330
  # data as a hash:
7318
7331
  #
@@ -7331,12 +7344,14 @@ module Aws::Chime
7331
7344
  #
7332
7345
  # @!attribute [rw] routes
7333
7346
  # The call distribution properties defined for your SIP hosts. Valid
7334
- # range: Minimum value of 1. Maximum value of 20.
7347
+ # range: Minimum value of 1. Maximum value of 20. This parameter is
7348
+ # not required, but you must specify this parameter or `Disabled`.
7335
7349
  # @return [Array<Types::OriginationRoute>]
7336
7350
  #
7337
7351
  # @!attribute [rw] disabled
7338
7352
  # When origination settings are disabled, inbound calls are not
7339
- # enabled for your Amazon Chime Voice Connector.
7353
+ # enabled for your Amazon Chime Voice Connector. This parameter is not
7354
+ # required, but you must specify this parameter or `Routes`.
7340
7355
  # @return [Boolean]
7341
7356
  #
7342
7357
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/Origination AWS API Documentation
@@ -7353,6 +7368,11 @@ module Aws::Chime
7353
7368
  # Connector. Limit: Ten origination routes for each Amazon Chime Voice
7354
7369
  # Connector.
7355
7370
  #
7371
+ # <note markdown="1"> The parameters listed below are not required, but you must use at
7372
+ # least one.
7373
+ #
7374
+ # </note>
7375
+ #
7356
7376
  # @note When making an API call, you may pass OriginationRoute
7357
7377
  # data as a hash:
7358
7378
  #
@@ -9474,8 +9494,8 @@ module Aws::Chime
9474
9494
  # @return [Types::EngineTranscribeSettings]
9475
9495
  #
9476
9496
  # @!attribute [rw] engine_transcribe_medical_settings
9477
- # The transcription configuration settings passed to Amazon
9478
- # Transcribe.
9497
+ # The transcription configuration settings passed to Amazon Transcribe
9498
+ # Medical.
9479
9499
  # @return [Types::EngineTranscribeMedicalSettings]
9480
9500
  #
9481
9501
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/TranscriptionConfiguration AWS API Documentation
data/lib/aws-sdk-chime.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-chime/customizations'
48
48
  # @!group service
49
49
  module Aws::Chime
50
50
 
51
- GEM_VERSION = '1.56.0'
51
+ GEM_VERSION = '1.57.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.56.0
4
+ version: 1.57.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: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core