aws-sdk-ram 1.17.0 → 1.22.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/lib/aws-sdk-ram.rb +5 -2
- data/lib/aws-sdk-ram/client.rb +28 -9
- data/lib/aws-sdk-ram/client_api.rb +2 -0
- data/lib/aws-sdk-ram/errors.rb +2 -0
- data/lib/aws-sdk-ram/resource.rb +2 -0
- data/lib/aws-sdk-ram/types.rb +78 -0
- metadata +4 -4
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 5c83bbc3dfc893c46561e9faa592295af9e7c62e3237e4b25fbd842d8950a615
         | 
| 4 | 
            +
              data.tar.gz: 6173c08c1c1b2cd02597e93763f004b164fb3efe40d0a28579a2bf4abaecf6f3
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 6d446d2cc8d8118ff1cf0ccc9edd31f448423b08cbbe3a7595a489bbcee1a851dcd1678354ca6eba98ed2a85ad2b80a15fadaf7bcff5be598f5edaeb82a5ffbf
         | 
| 7 | 
            +
              data.tar.gz: 48149da4a6b75cd266a0392eadbb02d792e9c1bc85ce1f82dab7b78911910fbf4f9a9534647a9e6a2361056cab79b6ee02bf33664066f46acd9b923a2ea6709e
         | 
    
        data/lib/aws-sdk-ram.rb
    CHANGED
    
    | @@ -1,3 +1,5 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 2 4 | 
             
            #
         | 
| 3 5 | 
             
            # This file is generated. See the contributing guide for more information:
         | 
| @@ -5,6 +7,7 @@ | |
| 5 7 | 
             
            #
         | 
| 6 8 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 7 9 |  | 
| 10 | 
            +
             | 
| 8 11 | 
             
            require 'aws-sdk-core'
         | 
| 9 12 | 
             
            require 'aws-sigv4'
         | 
| 10 13 |  | 
| @@ -42,9 +45,9 @@ require_relative 'aws-sdk-ram/customizations' | |
| 42 45 | 
             
            #
         | 
| 43 46 | 
             
            # See {Errors} for more information.
         | 
| 44 47 | 
             
            #
         | 
| 45 | 
            -
            #  | 
| 48 | 
            +
            # @!group service
         | 
| 46 49 | 
             
            module Aws::RAM
         | 
| 47 50 |  | 
| 48 | 
            -
              GEM_VERSION = '1. | 
| 51 | 
            +
              GEM_VERSION = '1.22.0'
         | 
| 49 52 |  | 
| 50 53 | 
             
            end
         | 
    
        data/lib/aws-sdk-ram/client.rb
    CHANGED
    
    | @@ -1,3 +1,5 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 2 4 | 
             
            #
         | 
| 3 5 | 
             
            # This file is generated. See the contributing guide for more information:
         | 
| @@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb' | |
| 24 26 | 
             
            require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
         | 
| 25 27 | 
             
            require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
         | 
| 26 28 | 
             
            require 'aws-sdk-core/plugins/transfer_encoding.rb'
         | 
| 29 | 
            +
            require 'aws-sdk-core/plugins/http_checksum.rb'
         | 
| 27 30 | 
             
            require 'aws-sdk-core/plugins/signature_v4.rb'
         | 
| 28 31 | 
             
            require 'aws-sdk-core/plugins/protocols/rest_json.rb'
         | 
| 29 32 |  | 
| @@ -69,6 +72,7 @@ module Aws::RAM | |
| 69 72 | 
             
                add_plugin(Aws::Plugins::ClientMetricsPlugin)
         | 
| 70 73 | 
             
                add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
         | 
| 71 74 | 
             
                add_plugin(Aws::Plugins::TransferEncoding)
         | 
| 75 | 
            +
                add_plugin(Aws::Plugins::HttpChecksum)
         | 
| 72 76 | 
             
                add_plugin(Aws::Plugins::SignatureV4)
         | 
| 73 77 | 
             
                add_plugin(Aws::Plugins::Protocols::RestJson)
         | 
| 74 78 |  | 
| @@ -81,13 +85,28 @@ module Aws::RAM | |
| 81 85 | 
             
                #     * `Aws::Credentials` - Used for configuring static, non-refreshing
         | 
| 82 86 | 
             
                #       credentials.
         | 
| 83 87 | 
             
                #
         | 
| 88 | 
            +
                #     * `Aws::SharedCredentials` - Used for loading static credentials from a
         | 
| 89 | 
            +
                #       shared file, such as `~/.aws/config`.
         | 
| 90 | 
            +
                #
         | 
| 91 | 
            +
                #     * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
         | 
| 92 | 
            +
                #
         | 
| 93 | 
            +
                #     * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
         | 
| 94 | 
            +
                #       assume a role after providing credentials via the web.
         | 
| 95 | 
            +
                #
         | 
| 96 | 
            +
                #     * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
         | 
| 97 | 
            +
                #       access token generated from `aws login`.
         | 
| 98 | 
            +
                #
         | 
| 99 | 
            +
                #     * `Aws::ProcessCredentials` - Used for loading credentials from a
         | 
| 100 | 
            +
                #       process that outputs to stdout.
         | 
| 101 | 
            +
                #
         | 
| 84 102 | 
             
                #     * `Aws::InstanceProfileCredentials` - Used for loading credentials
         | 
| 85 103 | 
             
                #       from an EC2 IMDS on an EC2 instance.
         | 
| 86 104 | 
             
                #
         | 
| 87 | 
            -
                #     * `Aws:: | 
| 88 | 
            -
                #        | 
| 105 | 
            +
                #     * `Aws::ECSCredentials` - Used for loading credentials from
         | 
| 106 | 
            +
                #       instances running in ECS.
         | 
| 89 107 | 
             
                #
         | 
| 90 | 
            -
                #     * `Aws:: | 
| 108 | 
            +
                #     * `Aws::CognitoIdentityCredentials` - Used for loading credentials
         | 
| 109 | 
            +
                #       from the Cognito Identity service.
         | 
| 91 110 | 
             
                #
         | 
| 92 111 | 
             
                #     When `:credentials` are not configured directly, the following
         | 
| 93 112 | 
             
                #     locations will be searched for credentials:
         | 
| @@ -97,10 +116,10 @@ module Aws::RAM | |
| 97 116 | 
             
                #     * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
         | 
| 98 117 | 
             
                #     * `~/.aws/credentials`
         | 
| 99 118 | 
             
                #     * `~/.aws/config`
         | 
| 100 | 
            -
                #     * EC2 IMDS instance profile - When used by default, the timeouts | 
| 101 | 
            -
                #       very aggressive. Construct and pass an instance of
         | 
| 102 | 
            -
                #       `Aws::InstanceProfileCredentails`  | 
| 103 | 
            -
                #       timeouts.
         | 
| 119 | 
            +
                #     * EC2/ECS IMDS instance profile - When used by default, the timeouts
         | 
| 120 | 
            +
                #       are very aggressive. Construct and pass an instance of
         | 
| 121 | 
            +
                #       `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
         | 
| 122 | 
            +
                #       enable retries and extended timeouts.
         | 
| 104 123 | 
             
                #
         | 
| 105 124 | 
             
                #   @option options [required, String] :region
         | 
| 106 125 | 
             
                #     The AWS region to connect to.  The configured `:region` is
         | 
| @@ -161,7 +180,7 @@ module Aws::RAM | |
| 161 180 | 
             
                #   @option options [String] :endpoint
         | 
| 162 181 | 
             
                #     The client endpoint is normally constructed from the `:region`
         | 
| 163 182 | 
             
                #     option. You should only configure an `:endpoint` when connecting
         | 
| 164 | 
            -
                #     to test endpoints. This should be a valid HTTP(S) URI.
         | 
| 183 | 
            +
                #     to test or custom endpoints. This should be a valid HTTP(S) URI.
         | 
| 165 184 | 
             
                #
         | 
| 166 185 | 
             
                #   @option options [Integer] :endpoint_cache_max_entries (1000)
         | 
| 167 186 | 
             
                #     Used for the maximum size limit of the LRU cache storing endpoints data
         | 
| @@ -1531,7 +1550,7 @@ module Aws::RAM | |
| 1531 1550 | 
             
                    params: params,
         | 
| 1532 1551 | 
             
                    config: config)
         | 
| 1533 1552 | 
             
                  context[:gem_name] = 'aws-sdk-ram'
         | 
| 1534 | 
            -
                  context[:gem_version] = '1. | 
| 1553 | 
            +
                  context[:gem_version] = '1.22.0'
         | 
| 1535 1554 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 1536 1555 | 
             
                end
         | 
| 1537 1556 |  | 
    
        data/lib/aws-sdk-ram/errors.rb
    CHANGED
    
    
    
        data/lib/aws-sdk-ram/resource.rb
    CHANGED
    
    
    
        data/lib/aws-sdk-ram/types.rb
    CHANGED
    
    | @@ -1,3 +1,5 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            # WARNING ABOUT GENERATED CODE
         | 
| 2 4 | 
             
            #
         | 
| 3 5 | 
             
            # This file is generated. See the contributing guide for more information:
         | 
| @@ -30,6 +32,7 @@ module Aws::RAM | |
| 30 32 | 
             
                class AcceptResourceShareInvitationRequest < Struct.new(
         | 
| 31 33 | 
             
                  :resource_share_invitation_arn,
         | 
| 32 34 | 
             
                  :client_token)
         | 
| 35 | 
            +
                  SENSITIVE = []
         | 
| 33 36 | 
             
                  include Aws::Structure
         | 
| 34 37 | 
             
                end
         | 
| 35 38 |  | 
| @@ -47,6 +50,7 @@ module Aws::RAM | |
| 47 50 | 
             
                class AcceptResourceShareInvitationResponse < Struct.new(
         | 
| 48 51 | 
             
                  :resource_share_invitation,
         | 
| 49 52 | 
             
                  :client_token)
         | 
| 53 | 
            +
                  SENSITIVE = []
         | 
| 50 54 | 
             
                  include Aws::Structure
         | 
| 51 55 | 
             
                end
         | 
| 52 56 |  | 
| @@ -88,6 +92,7 @@ module Aws::RAM | |
| 88 92 | 
             
                  :permission_arn,
         | 
| 89 93 | 
             
                  :replace,
         | 
| 90 94 | 
             
                  :client_token)
         | 
| 95 | 
            +
                  SENSITIVE = []
         | 
| 91 96 | 
             
                  include Aws::Structure
         | 
| 92 97 | 
             
                end
         | 
| 93 98 |  | 
| @@ -105,6 +110,7 @@ module Aws::RAM | |
| 105 110 | 
             
                class AssociateResourceSharePermissionResponse < Struct.new(
         | 
| 106 111 | 
             
                  :return_value,
         | 
| 107 112 | 
             
                  :client_token)
         | 
| 113 | 
            +
                  SENSITIVE = []
         | 
| 108 114 | 
             
                  include Aws::Structure
         | 
| 109 115 | 
             
                end
         | 
| 110 116 |  | 
| @@ -142,6 +148,7 @@ module Aws::RAM | |
| 142 148 | 
             
                  :resource_arns,
         | 
| 143 149 | 
             
                  :principals,
         | 
| 144 150 | 
             
                  :client_token)
         | 
| 151 | 
            +
                  SENSITIVE = []
         | 
| 145 152 | 
             
                  include Aws::Structure
         | 
| 146 153 | 
             
                end
         | 
| 147 154 |  | 
| @@ -159,6 +166,7 @@ module Aws::RAM | |
| 159 166 | 
             
                class AssociateResourceShareResponse < Struct.new(
         | 
| 160 167 | 
             
                  :resource_share_associations,
         | 
| 161 168 | 
             
                  :client_token)
         | 
| 169 | 
            +
                  SENSITIVE = []
         | 
| 162 170 | 
             
                  include Aws::Structure
         | 
| 163 171 | 
             
                end
         | 
| 164 172 |  | 
| @@ -226,6 +234,7 @@ module Aws::RAM | |
| 226 234 | 
             
                  :allow_external_principals,
         | 
| 227 235 | 
             
                  :client_token,
         | 
| 228 236 | 
             
                  :permission_arns)
         | 
| 237 | 
            +
                  SENSITIVE = []
         | 
| 229 238 | 
             
                  include Aws::Structure
         | 
| 230 239 | 
             
                end
         | 
| 231 240 |  | 
| @@ -243,6 +252,7 @@ module Aws::RAM | |
| 243 252 | 
             
                class CreateResourceShareResponse < Struct.new(
         | 
| 244 253 | 
             
                  :resource_share,
         | 
| 245 254 | 
             
                  :client_token)
         | 
| 255 | 
            +
                  SENSITIVE = []
         | 
| 246 256 | 
             
                  include Aws::Structure
         | 
| 247 257 | 
             
                end
         | 
| 248 258 |  | 
| @@ -268,6 +278,7 @@ module Aws::RAM | |
| 268 278 | 
             
                class DeleteResourceShareRequest < Struct.new(
         | 
| 269 279 | 
             
                  :resource_share_arn,
         | 
| 270 280 | 
             
                  :client_token)
         | 
| 281 | 
            +
                  SENSITIVE = []
         | 
| 271 282 | 
             
                  include Aws::Structure
         | 
| 272 283 | 
             
                end
         | 
| 273 284 |  | 
| @@ -285,6 +296,7 @@ module Aws::RAM | |
| 285 296 | 
             
                class DeleteResourceShareResponse < Struct.new(
         | 
| 286 297 | 
             
                  :return_value,
         | 
| 287 298 | 
             
                  :client_token)
         | 
| 299 | 
            +
                  SENSITIVE = []
         | 
| 288 300 | 
             
                  include Aws::Structure
         | 
| 289 301 | 
             
                end
         | 
| 290 302 |  | 
| @@ -316,6 +328,7 @@ module Aws::RAM | |
| 316 328 | 
             
                  :resource_share_arn,
         | 
| 317 329 | 
             
                  :permission_arn,
         | 
| 318 330 | 
             
                  :client_token)
         | 
| 331 | 
            +
                  SENSITIVE = []
         | 
| 319 332 | 
             
                  include Aws::Structure
         | 
| 320 333 | 
             
                end
         | 
| 321 334 |  | 
| @@ -333,6 +346,7 @@ module Aws::RAM | |
| 333 346 | 
             
                class DisassociateResourceSharePermissionResponse < Struct.new(
         | 
| 334 347 | 
             
                  :return_value,
         | 
| 335 348 | 
             
                  :client_token)
         | 
| 349 | 
            +
                  SENSITIVE = []
         | 
| 336 350 | 
             
                  include Aws::Structure
         | 
| 337 351 | 
             
                end
         | 
| 338 352 |  | 
| @@ -370,6 +384,7 @@ module Aws::RAM | |
| 370 384 | 
             
                  :resource_arns,
         | 
| 371 385 | 
             
                  :principals,
         | 
| 372 386 | 
             
                  :client_token)
         | 
| 387 | 
            +
                  SENSITIVE = []
         | 
| 373 388 | 
             
                  include Aws::Structure
         | 
| 374 389 | 
             
                end
         | 
| 375 390 |  | 
| @@ -387,6 +402,7 @@ module Aws::RAM | |
| 387 402 | 
             
                class DisassociateResourceShareResponse < Struct.new(
         | 
| 388 403 | 
             
                  :resource_share_associations,
         | 
| 389 404 | 
             
                  :client_token)
         | 
| 405 | 
            +
                  SENSITIVE = []
         | 
| 390 406 | 
             
                  include Aws::Structure
         | 
| 391 407 | 
             
                end
         | 
| 392 408 |  | 
| @@ -404,6 +420,7 @@ module Aws::RAM | |
| 404 420 | 
             
                #
         | 
| 405 421 | 
             
                class EnableSharingWithAwsOrganizationResponse < Struct.new(
         | 
| 406 422 | 
             
                  :return_value)
         | 
| 423 | 
            +
                  SENSITIVE = []
         | 
| 407 424 | 
             
                  include Aws::Structure
         | 
| 408 425 | 
             
                end
         | 
| 409 426 |  | 
| @@ -428,6 +445,7 @@ module Aws::RAM | |
| 428 445 | 
             
                class GetPermissionRequest < Struct.new(
         | 
| 429 446 | 
             
                  :permission_arn,
         | 
| 430 447 | 
             
                  :permission_version)
         | 
| 448 | 
            +
                  SENSITIVE = []
         | 
| 431 449 | 
             
                  include Aws::Structure
         | 
| 432 450 | 
             
                end
         | 
| 433 451 |  | 
| @@ -439,6 +457,7 @@ module Aws::RAM | |
| 439 457 | 
             
                #
         | 
| 440 458 | 
             
                class GetPermissionResponse < Struct.new(
         | 
| 441 459 | 
             
                  :permission)
         | 
| 460 | 
            +
                  SENSITIVE = []
         | 
| 442 461 | 
             
                  include Aws::Structure
         | 
| 443 462 | 
             
                end
         | 
| 444 463 |  | 
| @@ -477,6 +496,7 @@ module Aws::RAM | |
| 477 496 | 
             
                  :principal,
         | 
| 478 497 | 
             
                  :next_token,
         | 
| 479 498 | 
             
                  :max_results)
         | 
| 499 | 
            +
                  SENSITIVE = []
         | 
| 480 500 | 
             
                  include Aws::Structure
         | 
| 481 501 | 
             
                end
         | 
| 482 502 |  | 
| @@ -494,6 +514,7 @@ module Aws::RAM | |
| 494 514 | 
             
                class GetResourcePoliciesResponse < Struct.new(
         | 
| 495 515 | 
             
                  :policies,
         | 
| 496 516 | 
             
                  :next_token)
         | 
| 517 | 
            +
                  SENSITIVE = []
         | 
| 497 518 | 
             
                  include Aws::Structure
         | 
| 498 519 | 
             
                end
         | 
| 499 520 |  | 
| @@ -555,6 +576,7 @@ module Aws::RAM | |
| 555 576 | 
             
                  :association_status,
         | 
| 556 577 | 
             
                  :next_token,
         | 
| 557 578 | 
             
                  :max_results)
         | 
| 579 | 
            +
                  SENSITIVE = []
         | 
| 558 580 | 
             
                  include Aws::Structure
         | 
| 559 581 | 
             
                end
         | 
| 560 582 |  | 
| @@ -572,6 +594,7 @@ module Aws::RAM | |
| 572 594 | 
             
                class GetResourceShareAssociationsResponse < Struct.new(
         | 
| 573 595 | 
             
                  :resource_share_associations,
         | 
| 574 596 | 
             
                  :next_token)
         | 
| 597 | 
            +
                  SENSITIVE = []
         | 
| 575 598 | 
             
                  include Aws::Structure
         | 
| 576 599 | 
             
                end
         | 
| 577 600 |  | 
| @@ -610,6 +633,7 @@ module Aws::RAM | |
| 610 633 | 
             
                  :resource_share_arns,
         | 
| 611 634 | 
             
                  :next_token,
         | 
| 612 635 | 
             
                  :max_results)
         | 
| 636 | 
            +
                  SENSITIVE = []
         | 
| 613 637 | 
             
                  include Aws::Structure
         | 
| 614 638 | 
             
                end
         | 
| 615 639 |  | 
| @@ -627,6 +651,7 @@ module Aws::RAM | |
| 627 651 | 
             
                class GetResourceShareInvitationsResponse < Struct.new(
         | 
| 628 652 | 
             
                  :resource_share_invitations,
         | 
| 629 653 | 
             
                  :next_token)
         | 
| 654 | 
            +
                  SENSITIVE = []
         | 
| 630 655 | 
             
                  include Aws::Structure
         | 
| 631 656 | 
             
                end
         | 
| 632 657 |  | 
| @@ -688,6 +713,7 @@ module Aws::RAM | |
| 688 713 | 
             
                  :tag_filters,
         | 
| 689 714 | 
             
                  :next_token,
         | 
| 690 715 | 
             
                  :max_results)
         | 
| 716 | 
            +
                  SENSITIVE = []
         | 
| 691 717 | 
             
                  include Aws::Structure
         | 
| 692 718 | 
             
                end
         | 
| 693 719 |  | 
| @@ -705,6 +731,7 @@ module Aws::RAM | |
| 705 731 | 
             
                class GetResourceSharesResponse < Struct.new(
         | 
| 706 732 | 
             
                  :resource_shares,
         | 
| 707 733 | 
             
                  :next_token)
         | 
| 734 | 
            +
                  SENSITIVE = []
         | 
| 708 735 | 
             
                  include Aws::Structure
         | 
| 709 736 | 
             
                end
         | 
| 710 737 |  | 
| @@ -719,6 +746,7 @@ module Aws::RAM | |
| 719 746 | 
             
                #
         | 
| 720 747 | 
             
                class IdempotentParameterMismatchException < Struct.new(
         | 
| 721 748 | 
             
                  :message)
         | 
| 749 | 
            +
                  SENSITIVE = []
         | 
| 722 750 | 
             
                  include Aws::Structure
         | 
| 723 751 | 
             
                end
         | 
| 724 752 |  | 
| @@ -731,6 +759,7 @@ module Aws::RAM | |
| 731 759 | 
             
                #
         | 
| 732 760 | 
             
                class InvalidClientTokenException < Struct.new(
         | 
| 733 761 | 
             
                  :message)
         | 
| 762 | 
            +
                  SENSITIVE = []
         | 
| 734 763 | 
             
                  include Aws::Structure
         | 
| 735 764 | 
             
                end
         | 
| 736 765 |  | 
| @@ -743,6 +772,7 @@ module Aws::RAM | |
| 743 772 | 
             
                #
         | 
| 744 773 | 
             
                class InvalidMaxResultsException < Struct.new(
         | 
| 745 774 | 
             
                  :message)
         | 
| 775 | 
            +
                  SENSITIVE = []
         | 
| 746 776 | 
             
                  include Aws::Structure
         | 
| 747 777 | 
             
                end
         | 
| 748 778 |  | 
| @@ -755,6 +785,7 @@ module Aws::RAM | |
| 755 785 | 
             
                #
         | 
| 756 786 | 
             
                class InvalidNextTokenException < Struct.new(
         | 
| 757 787 | 
             
                  :message)
         | 
| 788 | 
            +
                  SENSITIVE = []
         | 
| 758 789 | 
             
                  include Aws::Structure
         | 
| 759 790 | 
             
                end
         | 
| 760 791 |  | 
| @@ -767,6 +798,7 @@ module Aws::RAM | |
| 767 798 | 
             
                #
         | 
| 768 799 | 
             
                class InvalidParameterException < Struct.new(
         | 
| 769 800 | 
             
                  :message)
         | 
| 801 | 
            +
                  SENSITIVE = []
         | 
| 770 802 | 
             
                  include Aws::Structure
         | 
| 771 803 | 
             
                end
         | 
| 772 804 |  | 
| @@ -779,6 +811,7 @@ module Aws::RAM | |
| 779 811 | 
             
                #
         | 
| 780 812 | 
             
                class InvalidResourceTypeException < Struct.new(
         | 
| 781 813 | 
             
                  :message)
         | 
| 814 | 
            +
                  SENSITIVE = []
         | 
| 782 815 | 
             
                  include Aws::Structure
         | 
| 783 816 | 
             
                end
         | 
| 784 817 |  | 
| @@ -791,6 +824,7 @@ module Aws::RAM | |
| 791 824 | 
             
                #
         | 
| 792 825 | 
             
                class InvalidStateTransitionException < Struct.new(
         | 
| 793 826 | 
             
                  :message)
         | 
| 827 | 
            +
                  SENSITIVE = []
         | 
| 794 828 | 
             
                  include Aws::Structure
         | 
| 795 829 | 
             
                end
         | 
| 796 830 |  | 
| @@ -823,6 +857,7 @@ module Aws::RAM | |
| 823 857 | 
             
                  :resource_share_invitation_arn,
         | 
| 824 858 | 
             
                  :next_token,
         | 
| 825 859 | 
             
                  :max_results)
         | 
| 860 | 
            +
                  SENSITIVE = []
         | 
| 826 861 | 
             
                  include Aws::Structure
         | 
| 827 862 | 
             
                end
         | 
| 828 863 |  | 
| @@ -840,6 +875,7 @@ module Aws::RAM | |
| 840 875 | 
             
                class ListPendingInvitationResourcesResponse < Struct.new(
         | 
| 841 876 | 
             
                  :resources,
         | 
| 842 877 | 
             
                  :next_token)
         | 
| 878 | 
            +
                  SENSITIVE = []
         | 
| 843 879 | 
             
                  include Aws::Structure
         | 
| 844 880 | 
             
                end
         | 
| 845 881 |  | 
| @@ -874,6 +910,7 @@ module Aws::RAM | |
| 874 910 | 
             
                  :resource_type,
         | 
| 875 911 | 
             
                  :next_token,
         | 
| 876 912 | 
             
                  :max_results)
         | 
| 913 | 
            +
                  SENSITIVE = []
         | 
| 877 914 | 
             
                  include Aws::Structure
         | 
| 878 915 | 
             
                end
         | 
| 879 916 |  | 
| @@ -891,6 +928,7 @@ module Aws::RAM | |
| 891 928 | 
             
                class ListPermissionsResponse < Struct.new(
         | 
| 892 929 | 
             
                  :permissions,
         | 
| 893 930 | 
             
                  :next_token)
         | 
| 931 | 
            +
                  SENSITIVE = []
         | 
| 894 932 | 
             
                  include Aws::Structure
         | 
| 895 933 | 
             
                end
         | 
| 896 934 |  | 
| @@ -955,6 +993,7 @@ module Aws::RAM | |
| 955 993 | 
             
                  :resource_share_arns,
         | 
| 956 994 | 
             
                  :next_token,
         | 
| 957 995 | 
             
                  :max_results)
         | 
| 996 | 
            +
                  SENSITIVE = []
         | 
| 958 997 | 
             
                  include Aws::Structure
         | 
| 959 998 | 
             
                end
         | 
| 960 999 |  | 
| @@ -972,6 +1011,7 @@ module Aws::RAM | |
| 972 1011 | 
             
                class ListPrincipalsResponse < Struct.new(
         | 
| 973 1012 | 
             
                  :principals,
         | 
| 974 1013 | 
             
                  :next_token)
         | 
| 1014 | 
            +
                  SENSITIVE = []
         | 
| 975 1015 | 
             
                  include Aws::Structure
         | 
| 976 1016 | 
             
                end
         | 
| 977 1017 |  | 
| @@ -1004,6 +1044,7 @@ module Aws::RAM | |
| 1004 1044 | 
             
                  :resource_share_arn,
         | 
| 1005 1045 | 
             
                  :next_token,
         | 
| 1006 1046 | 
             
                  :max_results)
         | 
| 1047 | 
            +
                  SENSITIVE = []
         | 
| 1007 1048 | 
             
                  include Aws::Structure
         | 
| 1008 1049 | 
             
                end
         | 
| 1009 1050 |  | 
| @@ -1021,6 +1062,7 @@ module Aws::RAM | |
| 1021 1062 | 
             
                class ListResourceSharePermissionsResponse < Struct.new(
         | 
| 1022 1063 | 
             
                  :permissions,
         | 
| 1023 1064 | 
             
                  :next_token)
         | 
| 1065 | 
            +
                  SENSITIVE = []
         | 
| 1024 1066 | 
             
                  include Aws::Structure
         | 
| 1025 1067 | 
             
                end
         | 
| 1026 1068 |  | 
| @@ -1047,6 +1089,7 @@ module Aws::RAM | |
| 1047 1089 | 
             
                class ListResourceTypesRequest < Struct.new(
         | 
| 1048 1090 | 
             
                  :next_token,
         | 
| 1049 1091 | 
             
                  :max_results)
         | 
| 1092 | 
            +
                  SENSITIVE = []
         | 
| 1050 1093 | 
             
                  include Aws::Structure
         | 
| 1051 1094 | 
             
                end
         | 
| 1052 1095 |  | 
| @@ -1064,6 +1107,7 @@ module Aws::RAM | |
| 1064 1107 | 
             
                class ListResourceTypesResponse < Struct.new(
         | 
| 1065 1108 | 
             
                  :resource_types,
         | 
| 1066 1109 | 
             
                  :next_token)
         | 
| 1110 | 
            +
                  SENSITIVE = []
         | 
| 1067 1111 | 
             
                  include Aws::Structure
         | 
| 1068 1112 | 
             
                end
         | 
| 1069 1113 |  | 
| @@ -1128,6 +1172,7 @@ module Aws::RAM | |
| 1128 1172 | 
             
                  :resource_share_arns,
         | 
| 1129 1173 | 
             
                  :next_token,
         | 
| 1130 1174 | 
             
                  :max_results)
         | 
| 1175 | 
            +
                  SENSITIVE = []
         | 
| 1131 1176 | 
             
                  include Aws::Structure
         | 
| 1132 1177 | 
             
                end
         | 
| 1133 1178 |  | 
| @@ -1145,6 +1190,7 @@ module Aws::RAM | |
| 1145 1190 | 
             
                class ListResourcesResponse < Struct.new(
         | 
| 1146 1191 | 
             
                  :resources,
         | 
| 1147 1192 | 
             
                  :next_token)
         | 
| 1193 | 
            +
                  SENSITIVE = []
         | 
| 1148 1194 | 
             
                  include Aws::Structure
         | 
| 1149 1195 | 
             
                end
         | 
| 1150 1196 |  | 
| @@ -1157,6 +1203,7 @@ module Aws::RAM | |
| 1157 1203 | 
             
                #
         | 
| 1158 1204 | 
             
                class MalformedArnException < Struct.new(
         | 
| 1159 1205 | 
             
                  :message)
         | 
| 1206 | 
            +
                  SENSITIVE = []
         | 
| 1160 1207 | 
             
                  include Aws::Structure
         | 
| 1161 1208 | 
             
                end
         | 
| 1162 1209 |  | 
| @@ -1169,6 +1216,7 @@ module Aws::RAM | |
| 1169 1216 | 
             
                #
         | 
| 1170 1217 | 
             
                class MissingRequiredParameterException < Struct.new(
         | 
| 1171 1218 | 
             
                  :message)
         | 
| 1219 | 
            +
                  SENSITIVE = []
         | 
| 1172 1220 | 
             
                  include Aws::Structure
         | 
| 1173 1221 | 
             
                end
         | 
| 1174 1222 |  | 
| @@ -1181,6 +1229,7 @@ module Aws::RAM | |
| 1181 1229 | 
             
                #
         | 
| 1182 1230 | 
             
                class OperationNotPermittedException < Struct.new(
         | 
| 1183 1231 | 
             
                  :message)
         | 
| 1232 | 
            +
                  SENSITIVE = []
         | 
| 1184 1233 | 
             
                  include Aws::Structure
         | 
| 1185 1234 | 
             
                end
         | 
| 1186 1235 |  | 
| @@ -1215,6 +1264,7 @@ module Aws::RAM | |
| 1215 1264 | 
             
                  :creation_time,
         | 
| 1216 1265 | 
             
                  :last_updated_time,
         | 
| 1217 1266 | 
             
                  :external)
         | 
| 1267 | 
            +
                  SENSITIVE = []
         | 
| 1218 1268 | 
             
                  include Aws::Structure
         | 
| 1219 1269 | 
             
                end
         | 
| 1220 1270 |  | 
| @@ -1233,6 +1283,7 @@ module Aws::RAM | |
| 1233 1283 | 
             
                #
         | 
| 1234 1284 | 
             
                class PromoteResourceShareCreatedFromPolicyRequest < Struct.new(
         | 
| 1235 1285 | 
             
                  :resource_share_arn)
         | 
| 1286 | 
            +
                  SENSITIVE = []
         | 
| 1236 1287 | 
             
                  include Aws::Structure
         | 
| 1237 1288 | 
             
                end
         | 
| 1238 1289 |  | 
| @@ -1244,6 +1295,7 @@ module Aws::RAM | |
| 1244 1295 | 
             
                #
         | 
| 1245 1296 | 
             
                class PromoteResourceShareCreatedFromPolicyResponse < Struct.new(
         | 
| 1246 1297 | 
             
                  :return_value)
         | 
| 1298 | 
            +
                  SENSITIVE = []
         | 
| 1247 1299 | 
             
                  include Aws::Structure
         | 
| 1248 1300 | 
             
                end
         | 
| 1249 1301 |  | 
| @@ -1269,6 +1321,7 @@ module Aws::RAM | |
| 1269 1321 | 
             
                class RejectResourceShareInvitationRequest < Struct.new(
         | 
| 1270 1322 | 
             
                  :resource_share_invitation_arn,
         | 
| 1271 1323 | 
             
                  :client_token)
         | 
| 1324 | 
            +
                  SENSITIVE = []
         | 
| 1272 1325 | 
             
                  include Aws::Structure
         | 
| 1273 1326 | 
             
                end
         | 
| 1274 1327 |  | 
| @@ -1286,6 +1339,7 @@ module Aws::RAM | |
| 1286 1339 | 
             
                class RejectResourceShareInvitationResponse < Struct.new(
         | 
| 1287 1340 | 
             
                  :resource_share_invitation,
         | 
| 1288 1341 | 
             
                  :client_token)
         | 
| 1342 | 
            +
                  SENSITIVE = []
         | 
| 1289 1343 | 
             
                  include Aws::Structure
         | 
| 1290 1344 | 
             
                end
         | 
| 1291 1345 |  | 
| @@ -1335,6 +1389,7 @@ module Aws::RAM | |
| 1335 1389 | 
             
                  :status_message,
         | 
| 1336 1390 | 
             
                  :creation_time,
         | 
| 1337 1391 | 
             
                  :last_updated_time)
         | 
| 1392 | 
            +
                  SENSITIVE = []
         | 
| 1338 1393 | 
             
                  include Aws::Structure
         | 
| 1339 1394 | 
             
                end
         | 
| 1340 1395 |  | 
| @@ -1347,6 +1402,7 @@ module Aws::RAM | |
| 1347 1402 | 
             
                #
         | 
| 1348 1403 | 
             
                class ResourceArnNotFoundException < Struct.new(
         | 
| 1349 1404 | 
             
                  :message)
         | 
| 1405 | 
            +
                  SENSITIVE = []
         | 
| 1350 1406 | 
             
                  include Aws::Structure
         | 
| 1351 1407 | 
             
                end
         | 
| 1352 1408 |  | 
| @@ -1421,6 +1477,7 @@ module Aws::RAM | |
| 1421 1477 | 
             
                  :creation_time,
         | 
| 1422 1478 | 
             
                  :last_updated_time,
         | 
| 1423 1479 | 
             
                  :feature_set)
         | 
| 1480 | 
            +
                  SENSITIVE = []
         | 
| 1424 1481 | 
             
                  include Aws::Structure
         | 
| 1425 1482 | 
             
                end
         | 
| 1426 1483 |  | 
| @@ -1477,6 +1534,7 @@ module Aws::RAM | |
| 1477 1534 | 
             
                  :creation_time,
         | 
| 1478 1535 | 
             
                  :last_updated_time,
         | 
| 1479 1536 | 
             
                  :external)
         | 
| 1537 | 
            +
                  SENSITIVE = []
         | 
| 1480 1538 | 
             
                  include Aws::Structure
         | 
| 1481 1539 | 
             
                end
         | 
| 1482 1540 |  | 
| @@ -1530,6 +1588,7 @@ module Aws::RAM | |
| 1530 1588 | 
             
                  :invitation_timestamp,
         | 
| 1531 1589 | 
             
                  :status,
         | 
| 1532 1590 | 
             
                  :resource_share_associations)
         | 
| 1591 | 
            +
                  SENSITIVE = []
         | 
| 1533 1592 | 
             
                  include Aws::Structure
         | 
| 1534 1593 | 
             
                end
         | 
| 1535 1594 |  | 
| @@ -1542,6 +1601,7 @@ module Aws::RAM | |
| 1542 1601 | 
             
                #
         | 
| 1543 1602 | 
             
                class ResourceShareInvitationAlreadyAcceptedException < Struct.new(
         | 
| 1544 1603 | 
             
                  :message)
         | 
| 1604 | 
            +
                  SENSITIVE = []
         | 
| 1545 1605 | 
             
                  include Aws::Structure
         | 
| 1546 1606 | 
             
                end
         | 
| 1547 1607 |  | 
| @@ -1554,6 +1614,7 @@ module Aws::RAM | |
| 1554 1614 | 
             
                #
         | 
| 1555 1615 | 
             
                class ResourceShareInvitationAlreadyRejectedException < Struct.new(
         | 
| 1556 1616 | 
             
                  :message)
         | 
| 1617 | 
            +
                  SENSITIVE = []
         | 
| 1557 1618 | 
             
                  include Aws::Structure
         | 
| 1558 1619 | 
             
                end
         | 
| 1559 1620 |  | 
| @@ -1566,6 +1627,7 @@ module Aws::RAM | |
| 1566 1627 | 
             
                #
         | 
| 1567 1628 | 
             
                class ResourceShareInvitationArnNotFoundException < Struct.new(
         | 
| 1568 1629 | 
             
                  :message)
         | 
| 1630 | 
            +
                  SENSITIVE = []
         | 
| 1569 1631 | 
             
                  include Aws::Structure
         | 
| 1570 1632 | 
             
                end
         | 
| 1571 1633 |  | 
| @@ -1578,6 +1640,7 @@ module Aws::RAM | |
| 1578 1640 | 
             
                #
         | 
| 1579 1641 | 
             
                class ResourceShareInvitationExpiredException < Struct.new(
         | 
| 1580 1642 | 
             
                  :message)
         | 
| 1643 | 
            +
                  SENSITIVE = []
         | 
| 1581 1644 | 
             
                  include Aws::Structure
         | 
| 1582 1645 | 
             
                end
         | 
| 1583 1646 |  | 
| @@ -1590,6 +1653,7 @@ module Aws::RAM | |
| 1590 1653 | 
             
                #
         | 
| 1591 1654 | 
             
                class ResourceShareLimitExceededException < Struct.new(
         | 
| 1592 1655 | 
             
                  :message)
         | 
| 1656 | 
            +
                  SENSITIVE = []
         | 
| 1593 1657 | 
             
                  include Aws::Structure
         | 
| 1594 1658 | 
             
                end
         | 
| 1595 1659 |  | 
| @@ -1642,6 +1706,7 @@ module Aws::RAM | |
| 1642 1706 | 
             
                  :permission,
         | 
| 1643 1707 | 
             
                  :creation_time,
         | 
| 1644 1708 | 
             
                  :last_updated_time)
         | 
| 1709 | 
            +
                  SENSITIVE = []
         | 
| 1645 1710 | 
             
                  include Aws::Structure
         | 
| 1646 1711 | 
             
                end
         | 
| 1647 1712 |  | 
| @@ -1692,6 +1757,7 @@ module Aws::RAM | |
| 1692 1757 | 
             
                  :status,
         | 
| 1693 1758 | 
             
                  :creation_time,
         | 
| 1694 1759 | 
             
                  :last_updated_time)
         | 
| 1760 | 
            +
                  SENSITIVE = []
         | 
| 1695 1761 | 
             
                  include Aws::Structure
         | 
| 1696 1762 | 
             
                end
         | 
| 1697 1763 |  | 
| @@ -1705,6 +1771,7 @@ module Aws::RAM | |
| 1705 1771 | 
             
                #
         | 
| 1706 1772 | 
             
                class ServerInternalException < Struct.new(
         | 
| 1707 1773 | 
             
                  :message)
         | 
| 1774 | 
            +
                  SENSITIVE = []
         | 
| 1708 1775 | 
             
                  include Aws::Structure
         | 
| 1709 1776 | 
             
                end
         | 
| 1710 1777 |  | 
| @@ -1724,6 +1791,7 @@ module Aws::RAM | |
| 1724 1791 | 
             
                class ServiceNameAndResourceType < Struct.new(
         | 
| 1725 1792 | 
             
                  :resource_type,
         | 
| 1726 1793 | 
             
                  :service_name)
         | 
| 1794 | 
            +
                  SENSITIVE = []
         | 
| 1727 1795 | 
             
                  include Aws::Structure
         | 
| 1728 1796 | 
             
                end
         | 
| 1729 1797 |  | 
| @@ -1736,6 +1804,7 @@ module Aws::RAM | |
| 1736 1804 | 
             
                #
         | 
| 1737 1805 | 
             
                class ServiceUnavailableException < Struct.new(
         | 
| 1738 1806 | 
             
                  :message)
         | 
| 1807 | 
            +
                  SENSITIVE = []
         | 
| 1739 1808 | 
             
                  include Aws::Structure
         | 
| 1740 1809 | 
             
                end
         | 
| 1741 1810 |  | 
| @@ -1762,6 +1831,7 @@ module Aws::RAM | |
| 1762 1831 | 
             
                class Tag < Struct.new(
         | 
| 1763 1832 | 
             
                  :key,
         | 
| 1764 1833 | 
             
                  :value)
         | 
| 1834 | 
            +
                  SENSITIVE = []
         | 
| 1765 1835 | 
             
                  include Aws::Structure
         | 
| 1766 1836 | 
             
                end
         | 
| 1767 1837 |  | 
| @@ -1788,6 +1858,7 @@ module Aws::RAM | |
| 1788 1858 | 
             
                class TagFilter < Struct.new(
         | 
| 1789 1859 | 
             
                  :tag_key,
         | 
| 1790 1860 | 
             
                  :tag_values)
         | 
| 1861 | 
            +
                  SENSITIVE = []
         | 
| 1791 1862 | 
             
                  include Aws::Structure
         | 
| 1792 1863 | 
             
                end
         | 
| 1793 1864 |  | 
| @@ -1800,6 +1871,7 @@ module Aws::RAM | |
| 1800 1871 | 
             
                #
         | 
| 1801 1872 | 
             
                class TagLimitExceededException < Struct.new(
         | 
| 1802 1873 | 
             
                  :message)
         | 
| 1874 | 
            +
                  SENSITIVE = []
         | 
| 1803 1875 | 
             
                  include Aws::Structure
         | 
| 1804 1876 | 
             
                end
         | 
| 1805 1877 |  | 
| @@ -1812,6 +1884,7 @@ module Aws::RAM | |
| 1812 1884 | 
             
                #
         | 
| 1813 1885 | 
             
                class TagPolicyViolationException < Struct.new(
         | 
| 1814 1886 | 
             
                  :message)
         | 
| 1887 | 
            +
                  SENSITIVE = []
         | 
| 1815 1888 | 
             
                  include Aws::Structure
         | 
| 1816 1889 | 
             
                end
         | 
| 1817 1890 |  | 
| @@ -1841,6 +1914,7 @@ module Aws::RAM | |
| 1841 1914 | 
             
                class TagResourceRequest < Struct.new(
         | 
| 1842 1915 | 
             
                  :resource_share_arn,
         | 
| 1843 1916 | 
             
                  :tags)
         | 
| 1917 | 
            +
                  SENSITIVE = []
         | 
| 1844 1918 | 
             
                  include Aws::Structure
         | 
| 1845 1919 | 
             
                end
         | 
| 1846 1920 |  | 
| @@ -1857,6 +1931,7 @@ module Aws::RAM | |
| 1857 1931 | 
             
                #
         | 
| 1858 1932 | 
             
                class UnknownResourceException < Struct.new(
         | 
| 1859 1933 | 
             
                  :message)
         | 
| 1934 | 
            +
                  SENSITIVE = []
         | 
| 1860 1935 | 
             
                  include Aws::Structure
         | 
| 1861 1936 | 
             
                end
         | 
| 1862 1937 |  | 
| @@ -1881,6 +1956,7 @@ module Aws::RAM | |
| 1881 1956 | 
             
                class UntagResourceRequest < Struct.new(
         | 
| 1882 1957 | 
             
                  :resource_share_arn,
         | 
| 1883 1958 | 
             
                  :tag_keys)
         | 
| 1959 | 
            +
                  SENSITIVE = []
         | 
| 1884 1960 | 
             
                  include Aws::Structure
         | 
| 1885 1961 | 
             
                end
         | 
| 1886 1962 |  | 
| @@ -1923,6 +1999,7 @@ module Aws::RAM | |
| 1923 1999 | 
             
                  :name,
         | 
| 1924 2000 | 
             
                  :allow_external_principals,
         | 
| 1925 2001 | 
             
                  :client_token)
         | 
| 2002 | 
            +
                  SENSITIVE = []
         | 
| 1926 2003 | 
             
                  include Aws::Structure
         | 
| 1927 2004 | 
             
                end
         | 
| 1928 2005 |  | 
| @@ -1940,6 +2017,7 @@ module Aws::RAM | |
| 1940 2017 | 
             
                class UpdateResourceShareResponse < Struct.new(
         | 
| 1941 2018 | 
             
                  :resource_share,
         | 
| 1942 2019 | 
             
                  :client_token)
         | 
| 2020 | 
            +
                  SENSITIVE = []
         | 
| 1943 2021 | 
             
                  include Aws::Structure
         | 
| 1944 2022 | 
             
                end
         | 
| 1945 2023 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk-ram
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.22.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: 2020- | 
| 11 | 
            +
            date: 2020-09-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. | 
| 22 | 
            +
                    version: 3.109.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. | 
| 32 | 
            +
                    version: 3.109.0
         | 
| 33 33 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 34 34 | 
             
              name: aws-sigv4
         | 
| 35 35 | 
             
              requirement: !ruby/object:Gem::Requirement
         |