aws-sdk-chimesdkvoice 1.46.0 → 1.47.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkvoice/client.rb +10 -1
- data/lib/aws-sdk-chimesdkvoice/client_api.rb +3 -0
- data/lib/aws-sdk-chimesdkvoice/types.rb +14 -2
- data/lib/aws-sdk-chimesdkvoice.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4495fb90003e7aef451c319eb555392258a9f45708d53bbe66509779d001a83
|
4
|
+
data.tar.gz: fb14729390c68d54e22982d67524c6a8d720d16788673412eda6e89b641e3a04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 793c61e83d75427c8a860a730b58596a9135774ddacdb65c75e67ccead49abf40154c1cb5bf864d0ad9b2b5a784d602a531257c1af56b3488fd7311f7db365e6
|
7
|
+
data.tar.gz: 27ecde44bc4381c963b1dd0f755f445229bb2307f5a6fd49758759866c6dcad3409664bc854719e3d749893e69a1dacba1904794977021256ca3ff8c94564f94
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.47.0 (2025-09-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support for IPv4-only and dual-stack network configurations for VoiceConnector and CreateVoiceConnector API.
|
8
|
+
|
4
9
|
1.46.0 (2025-08-27)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.0
|
@@ -1010,6 +1010,10 @@ module Aws::ChimeSDKVoice
|
|
1010
1010
|
# contact center to Amazon Connect can start with Contact Lens
|
1011
1011
|
# analytics and performance insights ahead of agent migration.
|
1012
1012
|
#
|
1013
|
+
# @option params [String] :network_type
|
1014
|
+
# The type of network for the Voice Connector. Either IPv4 only or
|
1015
|
+
# dual-stack (IPv4 and IPv6).
|
1016
|
+
#
|
1013
1017
|
# @return [Types::CreateVoiceConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1014
1018
|
#
|
1015
1019
|
# * {Types::CreateVoiceConnectorResponse#voice_connector #voice_connector} => Types::VoiceConnector
|
@@ -1027,6 +1031,7 @@ module Aws::ChimeSDKVoice
|
|
1027
1031
|
# },
|
1028
1032
|
# ],
|
1029
1033
|
# integration_type: "CONNECT_CALL_TRANSFER_CONNECTOR", # accepts CONNECT_CALL_TRANSFER_CONNECTOR, CONNECT_ANALYTICS_CONNECTOR
|
1034
|
+
# network_type: "IPV4_ONLY", # accepts IPV4_ONLY, DUAL_STACK
|
1030
1035
|
# })
|
1031
1036
|
#
|
1032
1037
|
# @example Response structure
|
@@ -1040,6 +1045,7 @@ module Aws::ChimeSDKVoice
|
|
1040
1045
|
# resp.voice_connector.updated_timestamp #=> Time
|
1041
1046
|
# resp.voice_connector.voice_connector_arn #=> String
|
1042
1047
|
# resp.voice_connector.integration_type #=> String, one of "CONNECT_CALL_TRANSFER_CONNECTOR", "CONNECT_ANALYTICS_CONNECTOR"
|
1048
|
+
# resp.voice_connector.network_type #=> String, one of "IPV4_ONLY", "DUAL_STACK"
|
1043
1049
|
#
|
1044
1050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceConnector AWS API Documentation
|
1045
1051
|
#
|
@@ -2055,6 +2061,7 @@ module Aws::ChimeSDKVoice
|
|
2055
2061
|
# resp.voice_connector.updated_timestamp #=> Time
|
2056
2062
|
# resp.voice_connector.voice_connector_arn #=> String
|
2057
2063
|
# resp.voice_connector.integration_type #=> String, one of "CONNECT_CALL_TRANSFER_CONNECTOR", "CONNECT_ANALYTICS_CONNECTOR"
|
2064
|
+
# resp.voice_connector.network_type #=> String, one of "IPV4_ONLY", "DUAL_STACK"
|
2058
2065
|
#
|
2059
2066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnector AWS API Documentation
|
2060
2067
|
#
|
@@ -2954,6 +2961,7 @@ module Aws::ChimeSDKVoice
|
|
2954
2961
|
# resp.voice_connectors[0].updated_timestamp #=> Time
|
2955
2962
|
# resp.voice_connectors[0].voice_connector_arn #=> String
|
2956
2963
|
# resp.voice_connectors[0].integration_type #=> String, one of "CONNECT_CALL_TRANSFER_CONNECTOR", "CONNECT_ANALYTICS_CONNECTOR"
|
2964
|
+
# resp.voice_connectors[0].network_type #=> String, one of "IPV4_ONLY", "DUAL_STACK"
|
2957
2965
|
# resp.next_token #=> String
|
2958
2966
|
#
|
2959
2967
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ListVoiceConnectors AWS API Documentation
|
@@ -4187,6 +4195,7 @@ module Aws::ChimeSDKVoice
|
|
4187
4195
|
# resp.voice_connector.updated_timestamp #=> Time
|
4188
4196
|
# resp.voice_connector.voice_connector_arn #=> String
|
4189
4197
|
# resp.voice_connector.integration_type #=> String, one of "CONNECT_CALL_TRANSFER_CONNECTOR", "CONNECT_ANALYTICS_CONNECTOR"
|
4198
|
+
# resp.voice_connector.network_type #=> String, one of "IPV4_ONLY", "DUAL_STACK"
|
4190
4199
|
#
|
4191
4200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/UpdateVoiceConnector AWS API Documentation
|
4192
4201
|
#
|
@@ -4441,7 +4450,7 @@ module Aws::ChimeSDKVoice
|
|
4441
4450
|
tracer: tracer
|
4442
4451
|
)
|
4443
4452
|
context[:gem_name] = 'aws-sdk-chimesdkvoice'
|
4444
|
-
context[:gem_version] = '1.
|
4453
|
+
context[:gem_version] = '1.47.0'
|
4445
4454
|
Seahorse::Client::Request.new(handlers, context)
|
4446
4455
|
end
|
4447
4456
|
|
@@ -177,6 +177,7 @@ module Aws::ChimeSDKVoice
|
|
177
177
|
ListVoiceProfilesResponse = Shapes::StructureShape.new(name: 'ListVoiceProfilesResponse')
|
178
178
|
LoggingConfiguration = Shapes::StructureShape.new(name: 'LoggingConfiguration')
|
179
179
|
MediaInsightsConfiguration = Shapes::StructureShape.new(name: 'MediaInsightsConfiguration')
|
180
|
+
NetworkType = Shapes::StringShape.new(name: 'NetworkType')
|
180
181
|
NextTokenString = Shapes::StringShape.new(name: 'NextTokenString')
|
181
182
|
NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
|
182
183
|
NonEmptyString128 = Shapes::StringShape.new(name: 'NonEmptyString128')
|
@@ -487,6 +488,7 @@ module Aws::ChimeSDKVoice
|
|
487
488
|
CreateVoiceConnectorRequest.add_member(:require_encryption, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "RequireEncryption"))
|
488
489
|
CreateVoiceConnectorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
489
490
|
CreateVoiceConnectorRequest.add_member(:integration_type, Shapes::ShapeRef.new(shape: VoiceConnectorIntegrationType, location_name: "IntegrationType"))
|
491
|
+
CreateVoiceConnectorRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
490
492
|
CreateVoiceConnectorRequest.struct_class = Types::CreateVoiceConnectorRequest
|
491
493
|
|
492
494
|
CreateVoiceConnectorResponse.add_member(:voice_connector, Shapes::ShapeRef.new(shape: VoiceConnector, location_name: "VoiceConnector"))
|
@@ -1323,6 +1325,7 @@ module Aws::ChimeSDKVoice
|
|
1323
1325
|
VoiceConnector.add_member(:updated_timestamp, Shapes::ShapeRef.new(shape: Iso8601Timestamp, location_name: "UpdatedTimestamp"))
|
1324
1326
|
VoiceConnector.add_member(:voice_connector_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "VoiceConnectorArn"))
|
1325
1327
|
VoiceConnector.add_member(:integration_type, Shapes::ShapeRef.new(shape: VoiceConnectorIntegrationType, location_name: "IntegrationType"))
|
1328
|
+
VoiceConnector.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
1326
1329
|
VoiceConnector.struct_class = Types::VoiceConnector
|
1327
1330
|
|
1328
1331
|
VoiceConnectorAwsRegionList.member = Shapes::ShapeRef.new(shape: VoiceConnectorAwsRegion)
|
@@ -598,6 +598,11 @@ module Aws::ChimeSDKVoice
|
|
598
598
|
# of agent migration.
|
599
599
|
# @return [String]
|
600
600
|
#
|
601
|
+
# @!attribute [rw] network_type
|
602
|
+
# The type of network for the Voice Connector. Either IPv4 only or
|
603
|
+
# dual-stack (IPv4 and IPv6).
|
604
|
+
# @return [String]
|
605
|
+
#
|
601
606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceConnectorRequest AWS API Documentation
|
602
607
|
#
|
603
608
|
class CreateVoiceConnectorRequest < Struct.new(
|
@@ -605,7 +610,8 @@ module Aws::ChimeSDKVoice
|
|
605
610
|
:aws_region,
|
606
611
|
:require_encryption,
|
607
612
|
:tags,
|
608
|
-
:integration_type
|
613
|
+
:integration_type,
|
614
|
+
:network_type)
|
609
615
|
SENSITIVE = []
|
610
616
|
include Aws::Structure
|
611
617
|
end
|
@@ -4086,6 +4092,11 @@ module Aws::ChimeSDKVoice
|
|
4086
4092
|
# The connectors for use with Amazon Connect.
|
4087
4093
|
# @return [String]
|
4088
4094
|
#
|
4095
|
+
# @!attribute [rw] network_type
|
4096
|
+
# The type of network of the Voice Connector. Either IPv4 only or
|
4097
|
+
# dual-stack (IPv4 and IPv6).
|
4098
|
+
# @return [String]
|
4099
|
+
#
|
4089
4100
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceConnector AWS API Documentation
|
4090
4101
|
#
|
4091
4102
|
class VoiceConnector < Struct.new(
|
@@ -4097,7 +4108,8 @@ module Aws::ChimeSDKVoice
|
|
4097
4108
|
:created_timestamp,
|
4098
4109
|
:updated_timestamp,
|
4099
4110
|
:voice_connector_arn,
|
4100
|
-
:integration_type
|
4111
|
+
:integration_type,
|
4112
|
+
:network_type)
|
4101
4113
|
SENSITIVE = []
|
4102
4114
|
include Aws::Structure
|
4103
4115
|
end
|
data/sig/client.rbs
CHANGED
@@ -232,7 +232,8 @@ module Aws
|
|
232
232
|
value: ::String
|
233
233
|
},
|
234
234
|
],
|
235
|
-
?integration_type: ("CONNECT_CALL_TRANSFER_CONNECTOR" | "CONNECT_ANALYTICS_CONNECTOR")
|
235
|
+
?integration_type: ("CONNECT_CALL_TRANSFER_CONNECTOR" | "CONNECT_ANALYTICS_CONNECTOR"),
|
236
|
+
?network_type: ("IPV4_ONLY" | "DUAL_STACK")
|
236
237
|
) -> _CreateVoiceConnectorResponseSuccess
|
237
238
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVoiceConnectorResponseSuccess
|
238
239
|
|
data/sig/types.rbs
CHANGED
@@ -180,6 +180,7 @@ module Aws::ChimeSDKVoice
|
|
180
180
|
attr_accessor require_encryption: bool
|
181
181
|
attr_accessor tags: ::Array[Types::Tag]
|
182
182
|
attr_accessor integration_type: ("CONNECT_CALL_TRANSFER_CONNECTOR" | "CONNECT_ANALYTICS_CONNECTOR")
|
183
|
+
attr_accessor network_type: ("IPV4_ONLY" | "DUAL_STACK")
|
183
184
|
SENSITIVE: []
|
184
185
|
end
|
185
186
|
|
@@ -1328,6 +1329,7 @@ module Aws::ChimeSDKVoice
|
|
1328
1329
|
attr_accessor updated_timestamp: ::Time
|
1329
1330
|
attr_accessor voice_connector_arn: ::String
|
1330
1331
|
attr_accessor integration_type: ("CONNECT_CALL_TRANSFER_CONNECTOR" | "CONNECT_ANALYTICS_CONNECTOR")
|
1332
|
+
attr_accessor network_type: ("IPV4_ONLY" | "DUAL_STACK")
|
1331
1333
|
SENSITIVE: []
|
1332
1334
|
end
|
1333
1335
|
|