aws-sdk-chimesdkmessaging 1.54.0 → 1.56.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmessaging/client.rb +22 -6
- data/lib/aws-sdk-chimesdkmessaging/client_api.rb +2 -0
- data/lib/aws-sdk-chimesdkmessaging/types.rb +17 -4
- data/lib/aws-sdk-chimesdkmessaging.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/types.rbs +3 -1
- metadata +3 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: d928219197426186c67b07e7be2f5c992af5d9ad29e601998ae009bb800ff0dc
         | 
| 4 | 
            +
              data.tar.gz: 477a70745dfcb4ed42e3110aaa867685d63ab2644a5e67c8cd9e6fb60e1a5545
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: c86c66fe340b98db7b905993693c530654281c00be768777f7714c41fc3cf65720caf23a88fc81904b3686c4f4060375ba7928f46e2882f5bda9ff9933931065
         | 
| 7 | 
            +
              data.tar.gz: aed9a7d47cd5fc44a74b08af0957cdbe79ee84ef016deeccfb17270f75697e9ad380bb95903b3d3ab8fefb11d824c77113bbb2e80d6aed6e4496552ae1df0e61
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,16 @@ | |
| 1 1 | 
             
            Unreleased Changes
         | 
| 2 2 | 
             
            ------------------
         | 
| 3 3 |  | 
| 4 | 
            +
            1.56.0 (2025-10-21)
         | 
| 5 | 
            +
            ------------------
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            1.55.0 (2025-09-18)
         | 
| 10 | 
            +
            ------------------
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            * Feature - Amazon Chime SDK Messaging GetMessagingSessionEndpoint API now returns dual-stack WebSocket endpoints supporting IPv4/IPv6.
         | 
| 13 | 
            +
             | 
| 4 14 | 
             
            1.54.0 (2025-08-26)
         | 
| 5 15 | 
             
            ------------------
         | 
| 6 16 |  | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1. | 
| 1 | 
            +
            1.56.0
         | 
| @@ -700,7 +700,8 @@ module Aws::ChimeSDKMessaging | |
| 700 700 | 
             
                #   API call.
         | 
| 701 701 | 
             
                #
         | 
| 702 702 | 
             
                # @option params [String] :channel_id
         | 
| 703 | 
            -
                #    | 
| 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 | 
| 2790 | 
            -
                #  | 
| 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. | 
| 3331 | 
            +
                  context[:gem_version] = '1.56.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 | 
            -
                #    | 
| 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 | 
            -
                #  | 
| 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 <  | 
| 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>
         | 
    
        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 | 
| 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. | 
| 4 | 
            +
              version: 1.56.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Amazon Web Services
         | 
| @@ -18,7 +18,7 @@ dependencies: | |
| 18 18 | 
             
                    version: '3'
         | 
| 19 19 | 
             
                - - ">="
         | 
| 20 20 | 
             
                  - !ruby/object:Gem::Version
         | 
| 21 | 
            -
                    version: 3. | 
| 21 | 
            +
                    version: 3.234.0
         | 
| 22 22 | 
             
              type: :runtime
         | 
| 23 23 | 
             
              prerelease: false
         | 
| 24 24 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| @@ -28,7 +28,7 @@ dependencies: | |
| 28 28 | 
             
                    version: '3'
         | 
| 29 29 | 
             
                - - ">="
         | 
| 30 30 | 
             
                  - !ruby/object:Gem::Version
         | 
| 31 | 
            -
                    version: 3. | 
| 31 | 
            +
                    version: 3.234.0
         | 
| 32 32 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 33 33 | 
             
              name: aws-sigv4
         | 
| 34 34 | 
             
              requirement: !ruby/object:Gem::Requirement
         |