aws-sdk-chimesdkmessaging 1.54.0 → 1.55.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: 6f7ad2b4c4aa22dfe34fb3e7f7d0ee813dedffe79e64b9db85a97225e576e683
4
- data.tar.gz: c37e7dd44a8c038a2e294316fe96ebe678db4bf65f0788155535cc969cfef4c2
3
+ metadata.gz: 210d756cc069bf1b2fe9cf33e0b7a0a92f146842e8e70756766be3bf20e0e725
4
+ data.tar.gz: 61bb693c9219e18d106338e5727c2afc4025347500aa1de8facfe0285cacc584
5
5
  SHA512:
6
- metadata.gz: 2ebe92ae835ce625a82abdd429ca6e1a188ed6599894383a067d2f4bc05058573555b1b7c14d16eeaacf4b96208c1275f2bdbb145009ec6cf76c7930600ef924
7
- data.tar.gz: c61586b0c1b24b5e642a23ef057cbaa0ee98f50eed49d7009156d590c20c1735183c635cb9699d5c3b89b5831ca49aadd1861fe9c77b5cdc75d95e4f0c21dbe1
6
+ metadata.gz: a49e133c0d13d40c5ac662bbd2f4156ebfb7e9bdc1f77562ebd2b978c1358095b0ef026c79527a3d979af5e2437b194d8fb29354b654d54ae65f578d0bab1387
7
+ data.tar.gz: 3cb48aa0c8ee20639deecb7792b849ab2b7452c594fab3e57279a77948fbf27b823f128509f33f7128b62c24db7b108fac1554f3216b12e72af0ab64a1f1caa0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2025-09-18)
5
+ ------------------
6
+
7
+ * Feature - Amazon Chime SDK Messaging GetMessagingSessionEndpoint API now returns dual-stack WebSocket endpoints supporting IPv4/IPv6.
8
+
4
9
  1.54.0 (2025-08-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.55.0
@@ -700,7 +700,8 @@ module Aws::ChimeSDKMessaging
700
700
  # API call.
701
701
  #
702
702
  # @option params [String] :channel_id
703
- # The ID of the channel in the request.
703
+ # An ID for the channel being created. If you do not specify an ID, a
704
+ # UUID will be created for the channel.
704
705
  #
705
706
  # @option params [Array<String>] :member_arns
706
707
  # The ARNs of the channel members in the request.
@@ -838,7 +839,7 @@ module Aws::ChimeSDKMessaging
838
839
  #
839
840
  #
840
841
  #
841
- # [1]: https://docs.aws.amazon.com/chime/latest/dg/using-the-messaging-sdk.html#msg-types
842
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/dg/using-the-messaging-sdk.html#msg-types
842
843
  #
843
844
  # @option params [required, String] :app_instance_arn
844
845
  # The ARN of the channel flow request.
@@ -1902,10 +1903,20 @@ module Aws::ChimeSDKMessaging
1902
1903
 
1903
1904
  # The details of the endpoint for the messaging session.
1904
1905
  #
1906
+ # @option params [String] :network_type
1907
+ # The type of network for the messaging session endpoint. Either IPv4
1908
+ # only or dual-stack (IPv4 and IPv6).
1909
+ #
1905
1910
  # @return [Types::GetMessagingSessionEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1906
1911
  #
1907
1912
  # * {Types::GetMessagingSessionEndpointResponse#endpoint #endpoint} => Types::MessagingSessionEndpoint
1908
1913
  #
1914
+ # @example Request syntax with placeholder values
1915
+ #
1916
+ # resp = client.get_messaging_session_endpoint({
1917
+ # network_type: "IPV4_ONLY", # accepts IPV4_ONLY, DUAL_STACK
1918
+ # })
1919
+ #
1909
1920
  # @example Response structure
1910
1921
  #
1911
1922
  # resp.endpoint.url #=> String
@@ -2074,7 +2085,7 @@ module Aws::ChimeSDKMessaging
2074
2085
  #
2075
2086
  #
2076
2087
  #
2077
- # [1]: https://docs.aws.amazon.com/chime/latest/APIReference/API_messaging-chime_ListChannelMembershipsForAppInstanceUser.html
2088
+ # [1]: https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_messaging-chime_ListChannelMembershipsForAppInstanceUser.html
2078
2089
  #
2079
2090
  # @option params [required, String] :channel_arn
2080
2091
  # The maximum number of channel memberships that you want returned.
@@ -2786,8 +2797,8 @@ module Aws::ChimeSDKMessaging
2786
2797
  req.send_request(options)
2787
2798
  end
2788
2799
 
2789
- # Redacts message content, but not metadata. The message exists in the
2790
- # back end, but the action returns null content, and the state shows as
2800
+ # Redacts message content and metadata. The message exists in the back
2801
+ # end, but the action returns null content, and the state shows as
2791
2802
  # redacted.
2792
2803
  #
2793
2804
  # <note markdown="1"> The `x-amz-chime-bearer` request header is mandatory. Use the ARN of
@@ -2848,6 +2859,11 @@ module Aws::ChimeSDKMessaging
2848
2859
  # the `AppInstanceUser` or `AppInstanceBot` that makes the API call as
2849
2860
  # the value in the header.
2850
2861
  #
2862
+ # <note markdown="1"> This operation isn't supported for `AppInstanceUsers` with a large
2863
+ # number of memberships.
2864
+ #
2865
+ # </note>
2866
+ #
2851
2867
  # @option params [String] :chime_bearer
2852
2868
  # The `AppInstanceUserArn` of the user making the API call.
2853
2869
  #
@@ -3312,7 +3328,7 @@ module Aws::ChimeSDKMessaging
3312
3328
  tracer: tracer
3313
3329
  )
3314
3330
  context[:gem_name] = 'aws-sdk-chimesdkmessaging'
3315
- context[:gem_version] = '1.54.0'
3331
+ context[:gem_version] = '1.55.0'
3316
3332
  Seahorse::Client::Request.new(handlers, context)
3317
3333
  end
3318
3334
 
@@ -159,6 +159,7 @@ module Aws::ChimeSDKMessaging
159
159
  MessagingSessionEndpoint = Shapes::StructureShape.new(name: 'MessagingSessionEndpoint')
160
160
  Metadata = Shapes::StringShape.new(name: 'Metadata')
161
161
  MinimumMembershipPercentage = Shapes::IntegerShape.new(name: 'MinimumMembershipPercentage')
162
+ NetworkType = Shapes::StringShape.new(name: 'NetworkType')
162
163
  NextToken = Shapes::StringShape.new(name: 'NextToken')
163
164
  NonEmptyContent = Shapes::StringShape.new(name: 'NonEmptyContent')
164
165
  NonEmptyResourceName = Shapes::StringShape.new(name: 'NonEmptyResourceName')
@@ -617,6 +618,7 @@ module Aws::ChimeSDKMessaging
617
618
  GetChannelMessageStatusResponse.add_member(:status, Shapes::ShapeRef.new(shape: ChannelMessageStatusStructure, location_name: "Status"))
618
619
  GetChannelMessageStatusResponse.struct_class = Types::GetChannelMessageStatusResponse
619
620
 
621
+ GetMessagingSessionEndpointRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location: "querystring", location_name: "network-type"))
620
622
  GetMessagingSessionEndpointRequest.struct_class = Types::GetMessagingSessionEndpointRequest
621
623
 
622
624
  GetMessagingSessionEndpointResponse.add_member(:endpoint, Shapes::ShapeRef.new(shape: MessagingSessionEndpoint, location_name: "Endpoint"))
@@ -1202,7 +1202,8 @@ module Aws::ChimeSDKMessaging
1202
1202
  # @return [String]
1203
1203
  #
1204
1204
  # @!attribute [rw] channel_id
1205
- # The ID of the channel in the request.
1205
+ # An ID for the channel being created. If you do not specify an ID, a
1206
+ # UUID will be created for the channel.
1206
1207
  # @return [String]
1207
1208
  #
1208
1209
  # @!attribute [rw] member_arns
@@ -1870,11 +1871,18 @@ module Aws::ChimeSDKMessaging
1870
1871
  include Aws::Structure
1871
1872
  end
1872
1873
 
1873
- # @api private
1874
+ # @!attribute [rw] network_type
1875
+ # The type of network for the messaging session endpoint. Either IPv4
1876
+ # only or dual-stack (IPv4 and IPv6).
1877
+ # @return [String]
1874
1878
  #
1875
1879
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-messaging-2021-05-15/GetMessagingSessionEndpointRequest AWS API Documentation
1876
1880
  #
1877
- class GetMessagingSessionEndpointRequest < Aws::EmptyStructure; end
1881
+ class GetMessagingSessionEndpointRequest < Struct.new(
1882
+ :network_type)
1883
+ SENSITIVE = []
1884
+ include Aws::Structure
1885
+ end
1878
1886
 
1879
1887
  # @!attribute [rw] endpoint
1880
1888
  # The endpoint returned in the response.
@@ -2901,6 +2909,11 @@ module Aws::ChimeSDKMessaging
2901
2909
 
2902
2910
  # A `Field` of the channel that you want to search.
2903
2911
  #
2912
+ # <note markdown="1"> This operation isn't supported for `AppInstanceUsers` with a large
2913
+ # number of memberships.
2914
+ #
2915
+ # </note>
2916
+ #
2904
2917
  # @!attribute [rw] key
2905
2918
  # An `enum` value that indicates the key to search the channel on.
2906
2919
  # `MEMBERS` allows you to search channels based on memberships. You
@@ -2914,7 +2927,7 @@ module Aws::ChimeSDKMessaging
2914
2927
  # The values that you want to search for, a list of strings. The
2915
2928
  # values must be `AppInstanceUserArns` specified as a list of strings.
2916
2929
  #
2917
- # <note markdown="1"> This operation isn't supported for `AppInstanceUsers` with large
2930
+ # <note markdown="1"> This operation isn't supported for `AppInstanceUsers` with a large
2918
2931
  # number of memberships.
2919
2932
  #
2920
2933
  # </note>
@@ -54,7 +54,7 @@ module Aws::ChimeSDKMessaging
54
54
  autoload :EndpointProvider, 'aws-sdk-chimesdkmessaging/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-chimesdkmessaging/endpoints'
56
56
 
57
- GEM_VERSION = '1.54.0'
57
+ GEM_VERSION = '1.55.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -425,6 +425,7 @@ module Aws
425
425
  end
426
426
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKMessaging/Client.html#get_messaging_session_endpoint-instance_method
427
427
  def get_messaging_session_endpoint: (
428
+ ?network_type: ("IPV4_ONLY" | "DUAL_STACK")
428
429
  ) -> _GetMessagingSessionEndpointResponseSuccess
429
430
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMessagingSessionEndpointResponseSuccess
430
431
 
data/sig/types.rbs CHANGED
@@ -514,7 +514,9 @@ module Aws::ChimeSDKMessaging
514
514
  SENSITIVE: []
515
515
  end
516
516
 
517
- class GetMessagingSessionEndpointRequest < Aws::EmptyStructure
517
+ class GetMessagingSessionEndpointRequest
518
+ attr_accessor network_type: ("IPV4_ONLY" | "DUAL_STACK")
519
+ SENSITIVE: []
518
520
  end
519
521
 
520
522
  class GetMessagingSessionEndpointResponse
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkmessaging
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.54.0
4
+ version: 1.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services