aws-sdk-finspace 1.5.0 → 1.6.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-finspace/client.rb +21 -1
 - data/lib/aws-sdk-finspace/client_api.rb +14 -0
 - data/lib/aws-sdk-finspace/types.rb +59 -1
 - data/lib/aws-sdk-finspace.rb +1 -1
 - 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: c4485b1135f5baf3b0de958eb20a1ab0e1aaf627a531a288089465c15063b1fd
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 5b84b56f2477ce12ef4a66489378ccaf564074b158f173272c9c7f44a946bee1
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 84c3ea19a87d6016a4289734ddc17c350b9037cd7553dff6b88bb265ba84aac6aba4ade440fb8261ac4fc36dfab5cb54c8e88c7d859568d98ec4037ede5f2217
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 9fefe357c3dd5798c950120d74f179fe39677b8a3813beae453d2d2b21ef006513ff7c8d757dffcd975401e8ff0f972ea57ef913fdf67533a10087a61e995192
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
    
        data/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            1. 
     | 
| 
      
 1 
     | 
    
         
            +
            1.6.0
         
     | 
| 
         @@ -355,6 +355,20 @@ module Aws::Finspace 
     | 
|
| 
       355 
355 
     | 
    
         
             
                # @option params [Types::FederationParameters] :federation_parameters
         
     | 
| 
       356 
356 
     | 
    
         
             
                #   Configuration information when authentication mode is FEDERATED.
         
     | 
| 
       357 
357 
     | 
    
         
             
                #
         
     | 
| 
      
 358 
     | 
    
         
            +
                # @option params [Types::SuperuserParameters] :superuser_parameters
         
     | 
| 
      
 359 
     | 
    
         
            +
                #   Configuration information for the superuser.
         
     | 
| 
      
 360 
     | 
    
         
            +
                #
         
     | 
| 
      
 361 
     | 
    
         
            +
                # @option params [Array<String>] :data_bundles
         
     | 
| 
      
 362 
     | 
    
         
            +
                #   The list of Amazon Resource Names (ARN) of the data bundles to
         
     | 
| 
      
 363 
     | 
    
         
            +
                #   install. Currently supported data bundle ARNs:
         
     | 
| 
      
 364 
     | 
    
         
            +
                #
         
     | 
| 
      
 365 
     | 
    
         
            +
                #   * `arn:aws:finspace:$\{Region\}::data-bundle/capital-markets-sample` -
         
     | 
| 
      
 366 
     | 
    
         
            +
                #     Contains sample Capital Markets datasets, categories and controlled
         
     | 
| 
      
 367 
     | 
    
         
            +
                #     vocabularies.
         
     | 
| 
      
 368 
     | 
    
         
            +
                #
         
     | 
| 
      
 369 
     | 
    
         
            +
                #   * `arn:aws:finspace:$\{Region\}::data-bundle/taq` (default) - Contains
         
     | 
| 
      
 370 
     | 
    
         
            +
                #     trades and quotes data in addition to sample Capital Markets data.
         
     | 
| 
      
 371 
     | 
    
         
            +
                #
         
     | 
| 
       358 
372 
     | 
    
         
             
                # @return [Types::CreateEnvironmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         
     | 
| 
       359 
373 
     | 
    
         
             
                #
         
     | 
| 
       360 
374 
     | 
    
         
             
                #   * {Types::CreateEnvironmentResponse#environment_id #environment_id} => String
         
     | 
| 
         @@ -381,6 +395,12 @@ module Aws::Finspace 
     | 
|
| 
       381 
395 
     | 
    
         
             
                #         "FederationAttributeKey" => "url",
         
     | 
| 
       382 
396 
     | 
    
         
             
                #       },
         
     | 
| 
       383 
397 
     | 
    
         
             
                #     },
         
     | 
| 
      
 398 
     | 
    
         
            +
                #     superuser_parameters: {
         
     | 
| 
      
 399 
     | 
    
         
            +
                #       email_address: "EmailId", # required
         
     | 
| 
      
 400 
     | 
    
         
            +
                #       first_name: "NameString", # required
         
     | 
| 
      
 401 
     | 
    
         
            +
                #       last_name: "NameString", # required
         
     | 
| 
      
 402 
     | 
    
         
            +
                #     },
         
     | 
| 
      
 403 
     | 
    
         
            +
                #     data_bundles: ["DataBundleArn"],
         
     | 
| 
       384 
404 
     | 
    
         
             
                #   })
         
     | 
| 
       385 
405 
     | 
    
         
             
                #
         
     | 
| 
       386 
406 
     | 
    
         
             
                # @example Response structure
         
     | 
| 
         @@ -693,7 +713,7 @@ module Aws::Finspace 
     | 
|
| 
       693 
713 
     | 
    
         
             
                    params: params,
         
     | 
| 
       694 
714 
     | 
    
         
             
                    config: config)
         
     | 
| 
       695 
715 
     | 
    
         
             
                  context[:gem_name] = 'aws-sdk-finspace'
         
     | 
| 
       696 
     | 
    
         
            -
                  context[:gem_version] = '1. 
     | 
| 
      
 716 
     | 
    
         
            +
                  context[:gem_version] = '1.6.0'
         
     | 
| 
       697 
717 
     | 
    
         
             
                  Seahorse::Client::Request.new(handlers, context)
         
     | 
| 
       698 
718 
     | 
    
         
             
                end
         
     | 
| 
       699 
719 
     | 
    
         | 
| 
         @@ -17,9 +17,12 @@ module Aws::Finspace 
     | 
|
| 
       17 
17 
     | 
    
         
             
                AttributeMap = Shapes::MapShape.new(name: 'AttributeMap')
         
     | 
| 
       18 
18 
     | 
    
         
             
                CreateEnvironmentRequest = Shapes::StructureShape.new(name: 'CreateEnvironmentRequest')
         
     | 
| 
       19 
19 
     | 
    
         
             
                CreateEnvironmentResponse = Shapes::StructureShape.new(name: 'CreateEnvironmentResponse')
         
     | 
| 
      
 20 
     | 
    
         
            +
                DataBundleArn = Shapes::StringShape.new(name: 'DataBundleArn')
         
     | 
| 
      
 21 
     | 
    
         
            +
                DataBundleArns = Shapes::ListShape.new(name: 'DataBundleArns')
         
     | 
| 
       20 
22 
     | 
    
         
             
                DeleteEnvironmentRequest = Shapes::StructureShape.new(name: 'DeleteEnvironmentRequest')
         
     | 
| 
       21 
23 
     | 
    
         
             
                DeleteEnvironmentResponse = Shapes::StructureShape.new(name: 'DeleteEnvironmentResponse')
         
     | 
| 
       22 
24 
     | 
    
         
             
                Description = Shapes::StringShape.new(name: 'Description')
         
     | 
| 
      
 25 
     | 
    
         
            +
                EmailId = Shapes::StringShape.new(name: 'EmailId')
         
     | 
| 
       23 
26 
     | 
    
         
             
                Environment = Shapes::StructureShape.new(name: 'Environment')
         
     | 
| 
       24 
27 
     | 
    
         
             
                EnvironmentArn = Shapes::StringShape.new(name: 'EnvironmentArn')
         
     | 
| 
       25 
28 
     | 
    
         
             
                EnvironmentList = Shapes::ListShape.new(name: 'EnvironmentList')
         
     | 
| 
         @@ -40,12 +43,14 @@ module Aws::Finspace 
     | 
|
| 
       40 
43 
     | 
    
         
             
                ListEnvironmentsResponse = Shapes::StructureShape.new(name: 'ListEnvironmentsResponse')
         
     | 
| 
       41 
44 
     | 
    
         
             
                ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
         
     | 
| 
       42 
45 
     | 
    
         
             
                ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
         
     | 
| 
      
 46 
     | 
    
         
            +
                NameString = Shapes::StringShape.new(name: 'NameString')
         
     | 
| 
       43 
47 
     | 
    
         
             
                PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
         
     | 
| 
       44 
48 
     | 
    
         
             
                ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
         
     | 
| 
       45 
49 
     | 
    
         
             
                ResultLimit = Shapes::IntegerShape.new(name: 'ResultLimit')
         
     | 
| 
       46 
50 
     | 
    
         
             
                SamlMetadataDocument = Shapes::StringShape.new(name: 'SamlMetadataDocument')
         
     | 
| 
       47 
51 
     | 
    
         
             
                ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
         
     | 
| 
       48 
52 
     | 
    
         
             
                SmsDomainUrl = Shapes::StringShape.new(name: 'SmsDomainUrl')
         
     | 
| 
      
 53 
     | 
    
         
            +
                SuperuserParameters = Shapes::StructureShape.new(name: 'SuperuserParameters')
         
     | 
| 
       49 
54 
     | 
    
         
             
                TagKey = Shapes::StringShape.new(name: 'TagKey')
         
     | 
| 
       50 
55 
     | 
    
         
             
                TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
         
     | 
| 
       51 
56 
     | 
    
         
             
                TagMap = Shapes::MapShape.new(name: 'TagMap')
         
     | 
| 
         @@ -73,6 +78,8 @@ module Aws::Finspace 
     | 
|
| 
       73 
78 
     | 
    
         
             
                CreateEnvironmentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
         
     | 
| 
       74 
79 
     | 
    
         
             
                CreateEnvironmentRequest.add_member(:federation_mode, Shapes::ShapeRef.new(shape: FederationMode, location_name: "federationMode"))
         
     | 
| 
       75 
80 
     | 
    
         
             
                CreateEnvironmentRequest.add_member(:federation_parameters, Shapes::ShapeRef.new(shape: FederationParameters, location_name: "federationParameters"))
         
     | 
| 
      
 81 
     | 
    
         
            +
                CreateEnvironmentRequest.add_member(:superuser_parameters, Shapes::ShapeRef.new(shape: SuperuserParameters, location_name: "superuserParameters"))
         
     | 
| 
      
 82 
     | 
    
         
            +
                CreateEnvironmentRequest.add_member(:data_bundles, Shapes::ShapeRef.new(shape: DataBundleArns, location_name: "dataBundles"))
         
     | 
| 
       76 
83 
     | 
    
         
             
                CreateEnvironmentRequest.struct_class = Types::CreateEnvironmentRequest
         
     | 
| 
       77 
84 
     | 
    
         | 
| 
       78 
85 
     | 
    
         
             
                CreateEnvironmentResponse.add_member(:environment_id, Shapes::ShapeRef.new(shape: IdType, location_name: "environmentId"))
         
     | 
| 
         @@ -80,6 +87,8 @@ module Aws::Finspace 
     | 
|
| 
       80 
87 
     | 
    
         
             
                CreateEnvironmentResponse.add_member(:environment_url, Shapes::ShapeRef.new(shape: url, location_name: "environmentUrl"))
         
     | 
| 
       81 
88 
     | 
    
         
             
                CreateEnvironmentResponse.struct_class = Types::CreateEnvironmentResponse
         
     | 
| 
       82 
89 
     | 
    
         | 
| 
      
 90 
     | 
    
         
            +
                DataBundleArns.member = Shapes::ShapeRef.new(shape: DataBundleArn)
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
       83 
92 
     | 
    
         
             
                DeleteEnvironmentRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: IdType, required: true, location: "uri", location_name: "environmentId"))
         
     | 
| 
       84 
93 
     | 
    
         
             
                DeleteEnvironmentRequest.struct_class = Types::DeleteEnvironmentRequest
         
     | 
| 
       85 
94 
     | 
    
         | 
| 
         @@ -144,6 +153,11 @@ module Aws::Finspace 
     | 
|
| 
       144 
153 
     | 
    
         
             
                ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
         
     | 
| 
       145 
154 
     | 
    
         
             
                ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
         
     | 
| 
       146 
155 
     | 
    
         | 
| 
      
 156 
     | 
    
         
            +
                SuperuserParameters.add_member(:email_address, Shapes::ShapeRef.new(shape: EmailId, required: true, location_name: "emailAddress"))
         
     | 
| 
      
 157 
     | 
    
         
            +
                SuperuserParameters.add_member(:first_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "firstName"))
         
     | 
| 
      
 158 
     | 
    
         
            +
                SuperuserParameters.add_member(:last_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "lastName"))
         
     | 
| 
      
 159 
     | 
    
         
            +
                SuperuserParameters.struct_class = Types::SuperuserParameters
         
     | 
| 
      
 160 
     | 
    
         
            +
             
     | 
| 
       147 
161 
     | 
    
         
             
                TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
         
     | 
| 
       148 
162 
     | 
    
         | 
| 
       149 
163 
     | 
    
         
             
                TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
         
     | 
| 
         @@ -37,6 +37,12 @@ module Aws::Finspace 
     | 
|
| 
       37 
37 
     | 
    
         
             
                #             "FederationAttributeKey" => "url",
         
     | 
| 
       38 
38 
     | 
    
         
             
                #           },
         
     | 
| 
       39 
39 
     | 
    
         
             
                #         },
         
     | 
| 
      
 40 
     | 
    
         
            +
                #         superuser_parameters: {
         
     | 
| 
      
 41 
     | 
    
         
            +
                #           email_address: "EmailId", # required
         
     | 
| 
      
 42 
     | 
    
         
            +
                #           first_name: "NameString", # required
         
     | 
| 
      
 43 
     | 
    
         
            +
                #           last_name: "NameString", # required
         
     | 
| 
      
 44 
     | 
    
         
            +
                #         },
         
     | 
| 
      
 45 
     | 
    
         
            +
                #         data_bundles: ["DataBundleArn"],
         
     | 
| 
       40 
46 
     | 
    
         
             
                #       }
         
     | 
| 
       41 
47 
     | 
    
         
             
                #
         
     | 
| 
       42 
48 
     | 
    
         
             
                # @!attribute [rw] name
         
     | 
| 
         @@ -69,6 +75,23 @@ module Aws::Finspace 
     | 
|
| 
       69 
75 
     | 
    
         
             
                #   Configuration information when authentication mode is FEDERATED.
         
     | 
| 
       70 
76 
     | 
    
         
             
                #   @return [Types::FederationParameters]
         
     | 
| 
       71 
77 
     | 
    
         
             
                #
         
     | 
| 
      
 78 
     | 
    
         
            +
                # @!attribute [rw] superuser_parameters
         
     | 
| 
      
 79 
     | 
    
         
            +
                #   Configuration information for the superuser.
         
     | 
| 
      
 80 
     | 
    
         
            +
                #   @return [Types::SuperuserParameters]
         
     | 
| 
      
 81 
     | 
    
         
            +
                #
         
     | 
| 
      
 82 
     | 
    
         
            +
                # @!attribute [rw] data_bundles
         
     | 
| 
      
 83 
     | 
    
         
            +
                #   The list of Amazon Resource Names (ARN) of the data bundles to
         
     | 
| 
      
 84 
     | 
    
         
            +
                #   install. Currently supported data bundle ARNs:
         
     | 
| 
      
 85 
     | 
    
         
            +
                #
         
     | 
| 
      
 86 
     | 
    
         
            +
                #   * `arn:aws:finspace:$\{Region\}::data-bundle/capital-markets-sample`
         
     | 
| 
      
 87 
     | 
    
         
            +
                #     - Contains sample Capital Markets datasets, categories and
         
     | 
| 
      
 88 
     | 
    
         
            +
                #     controlled vocabularies.
         
     | 
| 
      
 89 
     | 
    
         
            +
                #
         
     | 
| 
      
 90 
     | 
    
         
            +
                #   * `arn:aws:finspace:$\{Region\}::data-bundle/taq` (default) -
         
     | 
| 
      
 91 
     | 
    
         
            +
                #     Contains trades and quotes data in addition to sample Capital
         
     | 
| 
      
 92 
     | 
    
         
            +
                #     Markets data.
         
     | 
| 
      
 93 
     | 
    
         
            +
                #   @return [Array<String>]
         
     | 
| 
      
 94 
     | 
    
         
            +
                #
         
     | 
| 
       72 
95 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/CreateEnvironmentRequest AWS API Documentation
         
     | 
| 
       73 
96 
     | 
    
         
             
                #
         
     | 
| 
       74 
97 
     | 
    
         
             
                class CreateEnvironmentRequest < Struct.new(
         
     | 
| 
         @@ -77,7 +100,9 @@ module Aws::Finspace 
     | 
|
| 
       77 
100 
     | 
    
         
             
                  :kms_key_id,
         
     | 
| 
       78 
101 
     | 
    
         
             
                  :tags,
         
     | 
| 
       79 
102 
     | 
    
         
             
                  :federation_mode,
         
     | 
| 
       80 
     | 
    
         
            -
                  :federation_parameters 
     | 
| 
      
 103 
     | 
    
         
            +
                  :federation_parameters,
         
     | 
| 
      
 104 
     | 
    
         
            +
                  :superuser_parameters,
         
     | 
| 
      
 105 
     | 
    
         
            +
                  :data_bundles)
         
     | 
| 
       81 
106 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       82 
107 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       83 
108 
     | 
    
         
             
                end
         
     | 
| 
         @@ -440,6 +465,39 @@ module Aws::Finspace 
     | 
|
| 
       440 
465 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       441 
466 
     | 
    
         
             
                end
         
     | 
| 
       442 
467 
     | 
    
         | 
| 
      
 468 
     | 
    
         
            +
                # Configuration information for the superuser.
         
     | 
| 
      
 469 
     | 
    
         
            +
                #
         
     | 
| 
      
 470 
     | 
    
         
            +
                # @note When making an API call, you may pass SuperuserParameters
         
     | 
| 
      
 471 
     | 
    
         
            +
                #   data as a hash:
         
     | 
| 
      
 472 
     | 
    
         
            +
                #
         
     | 
| 
      
 473 
     | 
    
         
            +
                #       {
         
     | 
| 
      
 474 
     | 
    
         
            +
                #         email_address: "EmailId", # required
         
     | 
| 
      
 475 
     | 
    
         
            +
                #         first_name: "NameString", # required
         
     | 
| 
      
 476 
     | 
    
         
            +
                #         last_name: "NameString", # required
         
     | 
| 
      
 477 
     | 
    
         
            +
                #       }
         
     | 
| 
      
 478 
     | 
    
         
            +
                #
         
     | 
| 
      
 479 
     | 
    
         
            +
                # @!attribute [rw] email_address
         
     | 
| 
      
 480 
     | 
    
         
            +
                #   The email address of the superuser.
         
     | 
| 
      
 481 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 482 
     | 
    
         
            +
                #
         
     | 
| 
      
 483 
     | 
    
         
            +
                # @!attribute [rw] first_name
         
     | 
| 
      
 484 
     | 
    
         
            +
                #   The first name of the superuser.
         
     | 
| 
      
 485 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 486 
     | 
    
         
            +
                #
         
     | 
| 
      
 487 
     | 
    
         
            +
                # @!attribute [rw] last_name
         
     | 
| 
      
 488 
     | 
    
         
            +
                #   The last name of the superuser.
         
     | 
| 
      
 489 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 490 
     | 
    
         
            +
                #
         
     | 
| 
      
 491 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2021-03-12/SuperuserParameters AWS API Documentation
         
     | 
| 
      
 492 
     | 
    
         
            +
                #
         
     | 
| 
      
 493 
     | 
    
         
            +
                class SuperuserParameters < Struct.new(
         
     | 
| 
      
 494 
     | 
    
         
            +
                  :email_address,
         
     | 
| 
      
 495 
     | 
    
         
            +
                  :first_name,
         
     | 
| 
      
 496 
     | 
    
         
            +
                  :last_name)
         
     | 
| 
      
 497 
     | 
    
         
            +
                  SENSITIVE = [:email_address]
         
     | 
| 
      
 498 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 499 
     | 
    
         
            +
                end
         
     | 
| 
      
 500 
     | 
    
         
            +
             
     | 
| 
       443 
501 
     | 
    
         
             
                # @note When making an API call, you may pass TagResourceRequest
         
     | 
| 
       444 
502 
     | 
    
         
             
                #   data as a hash:
         
     | 
| 
       445 
503 
     | 
    
         
             
                #
         
     | 
    
        data/lib/aws-sdk-finspace.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: aws-sdk-finspace
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.6.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Amazon Web Services
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2021- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2021-11-03 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.121.2
         
     | 
| 
       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.121.2
         
     | 
| 
       33 
33 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       34 
34 
     | 
    
         
             
              name: aws-sigv4
         
     | 
| 
       35 
35 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     |