aws-sdk-apigatewayv2 1.11.0 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d155db2555290cfaffbfd43442e37614ab844a2
4
- data.tar.gz: 02a177344efa02061b8441442a8a40be2467a5df
3
+ metadata.gz: eafebd374fc62249305b9eb1756f8036aa887e0a
4
+ data.tar.gz: b050aa416960cc7020d1e3234ba92477a9eedf58
5
5
  SHA512:
6
- metadata.gz: 8dbe372eab25c7d6c0c519efbd3e5492edf504de3f8d61cc4c3e04ce3129d2d2a3f0074e5bf753e948d5cae539b2c75f4bbe748e00cdb94c99cf3110d9a0a2b7
7
- data.tar.gz: 4eadce8c73b9ed6637110c02db5b39283d49ece581ea493da4f24f1e7054f3ee45086f93b2a0b3642c897dedf92ea174e7c5a275fd602912333f869ddaef4aad
6
+ metadata.gz: f762f1e7a98b742d0ec69e9eaccceffc9a46239261c0e52f7b7864c0765b2b2cae3097ff78353ae059bb81d77956cd097f872fd52edcd64132c60a31e681168f
7
+ data.tar.gz: c66fd6fa5cbb4dca1c30220a42b08ea906770e09c68e858fd83669bfb03408e22a70ca770ebad2a9ff0c0bf0604b9a21a164cb76d022bca5ddd4ea39ecd79d1d
@@ -2524,6 +2524,7 @@ module Aws::ApiGatewayV2
2524
2524
  # * {Types::UpdateApiResponse#route_selection_expression #route_selection_expression} => String
2525
2525
  # * {Types::UpdateApiResponse#version #version} => String
2526
2526
  # * {Types::UpdateApiResponse#warnings #warnings} => Array<String>
2527
+ # * {Types::UpdateApiResponse#tags #tags} => Hash<String,String>
2527
2528
  #
2528
2529
  # @example Request syntax with placeholder values
2529
2530
  #
@@ -2551,6 +2552,8 @@ module Aws::ApiGatewayV2
2551
2552
  # resp.version #=> String
2552
2553
  # resp.warnings #=> Array
2553
2554
  # resp.warnings[0] #=> String
2555
+ # resp.tags #=> Hash
2556
+ # resp.tags["__string"] #=> String
2554
2557
  #
2555
2558
  # @overload update_api(params = {})
2556
2559
  # @param [Hash] params ({})
@@ -2757,6 +2760,7 @@ module Aws::ApiGatewayV2
2757
2760
  # * {Types::UpdateDomainNameResponse#api_mapping_selection_expression #api_mapping_selection_expression} => String
2758
2761
  # * {Types::UpdateDomainNameResponse#domain_name #domain_name} => String
2759
2762
  # * {Types::UpdateDomainNameResponse#domain_name_configurations #domain_name_configurations} => Array<Types::DomainNameConfiguration>
2763
+ # * {Types::UpdateDomainNameResponse#tags #tags} => Hash<String,String>
2760
2764
  #
2761
2765
  # @example Request syntax with placeholder values
2762
2766
  #
@@ -2791,6 +2795,8 @@ module Aws::ApiGatewayV2
2791
2795
  # resp.domain_name_configurations[0].security_policy #=> String, one of "TLS_1_0", "TLS_1_2"
2792
2796
  # resp.domain_name_configurations[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING"
2793
2797
  # resp.domain_name_configurations[0].domain_name_status_message #=> String
2798
+ # resp.tags #=> Hash
2799
+ # resp.tags["__string"] #=> String
2794
2800
  #
2795
2801
  # @overload update_domain_name(params = {})
2796
2802
  # @param [Hash] params ({})
@@ -3316,6 +3322,7 @@ module Aws::ApiGatewayV2
3316
3322
  # * {Types::UpdateStageResponse#route_settings #route_settings} => Hash<String,Types::RouteSettings>
3317
3323
  # * {Types::UpdateStageResponse#stage_name #stage_name} => String
3318
3324
  # * {Types::UpdateStageResponse#stage_variables #stage_variables} => Hash<String,String>
3325
+ # * {Types::UpdateStageResponse#tags #tags} => Hash<String,String>
3319
3326
  #
3320
3327
  # @example Request syntax with placeholder values
3321
3328
  #
@@ -3373,6 +3380,8 @@ module Aws::ApiGatewayV2
3373
3380
  # resp.stage_name #=> String
3374
3381
  # resp.stage_variables #=> Hash
3375
3382
  # resp.stage_variables["__string"] #=> String
3383
+ # resp.tags #=> Hash
3384
+ # resp.tags["__string"] #=> String
3376
3385
  #
3377
3386
  # @overload update_stage(params = {})
3378
3387
  # @param [Hash] params ({})
@@ -3394,7 +3403,7 @@ module Aws::ApiGatewayV2
3394
3403
  params: params,
3395
3404
  config: config)
3396
3405
  context[:gem_name] = 'aws-sdk-apigatewayv2'
3397
- context[:gem_version] = '1.11.0'
3406
+ context[:gem_version] = '1.12.0'
3398
3407
  Seahorse::Client::Request.new(handlers, context)
3399
3408
  end
3400
3409
 
@@ -1134,6 +1134,7 @@ module Aws::ApiGatewayV2
1134
1134
  UpdateApiResponse.add_member(:route_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "routeSelectionExpression"))
1135
1135
  UpdateApiResponse.add_member(:version, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And64, location_name: "version"))
1136
1136
  UpdateApiResponse.add_member(:warnings, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "warnings"))
1137
+ UpdateApiResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1137
1138
  UpdateApiResponse.struct_class = Types::UpdateApiResponse
1138
1139
 
1139
1140
  UpdateAuthorizerInput.add_member(:authorizer_credentials_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "authorizerCredentialsArn"))
@@ -1194,6 +1195,7 @@ module Aws::ApiGatewayV2
1194
1195
  UpdateDomainNameResponse.add_member(:api_mapping_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "apiMappingSelectionExpression"))
1195
1196
  UpdateDomainNameResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And512, location_name: "domainName"))
1196
1197
  UpdateDomainNameResponse.add_member(:domain_name_configurations, Shapes::ShapeRef.new(shape: DomainNameConfigurations, location_name: "domainNameConfigurations"))
1198
+ UpdateDomainNameResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1197
1199
  UpdateDomainNameResponse.struct_class = Types::UpdateDomainNameResponse
1198
1200
 
1199
1201
  UpdateIntegrationInput.add_member(:connection_id, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And1024, location_name: "connectionId"))
@@ -1385,6 +1387,7 @@ module Aws::ApiGatewayV2
1385
1387
  UpdateStageResponse.add_member(:route_settings, Shapes::ShapeRef.new(shape: RouteSettingsMap, location_name: "routeSettings"))
1386
1388
  UpdateStageResponse.add_member(:stage_name, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "stageName"))
1387
1389
  UpdateStageResponse.add_member(:stage_variables, Shapes::ShapeRef.new(shape: StageVariablesMap, location_name: "stageVariables"))
1390
+ UpdateStageResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1388
1391
  UpdateStageResponse.struct_class = Types::UpdateStageResponse
1389
1392
 
1390
1393
  __listOfApi.member = Shapes::ShapeRef.new(shape: Api)
@@ -4858,6 +4858,11 @@ module Aws::ApiGatewayV2
4858
4858
  # @!attribute [rw] warnings
4859
4859
  # @return [Array<String>]
4860
4860
  #
4861
+ # @!attribute [rw] tags
4862
+ # A key value pair of string with key length between\[1-128\] and
4863
+ # value length between\[1-256\]
4864
+ # @return [Hash<String,String>]
4865
+ #
4861
4866
  class UpdateApiResponse < Struct.new(
4862
4867
  :api_endpoint,
4863
4868
  :api_id,
@@ -4869,7 +4874,8 @@ module Aws::ApiGatewayV2
4869
4874
  :protocol_type,
4870
4875
  :route_selection_expression,
4871
4876
  :version,
4872
- :warnings)
4877
+ :warnings,
4878
+ :tags)
4873
4879
  include Aws::Structure
4874
4880
  end
4875
4881
 
@@ -5227,10 +5233,16 @@ module Aws::ApiGatewayV2
5227
5233
  # The domain name configurations.
5228
5234
  # @return [Array<Types::DomainNameConfiguration>]
5229
5235
  #
5236
+ # @!attribute [rw] tags
5237
+ # A key value pair of string with key length between\[1-128\] and
5238
+ # value length between\[1-256\]
5239
+ # @return [Hash<String,String>]
5240
+ #
5230
5241
  class UpdateDomainNameResponse < Struct.new(
5231
5242
  :api_mapping_selection_expression,
5232
5243
  :domain_name,
5233
- :domain_name_configurations)
5244
+ :domain_name_configurations,
5245
+ :tags)
5234
5246
  include Aws::Structure
5235
5247
  end
5236
5248
 
@@ -6468,6 +6480,11 @@ module Aws::ApiGatewayV2
6468
6480
  # The stage variable map.
6469
6481
  # @return [Hash<String,String>]
6470
6482
  #
6483
+ # @!attribute [rw] tags
6484
+ # A key value pair of string with key length between\[1-128\] and
6485
+ # value length between\[1-256\]
6486
+ # @return [Hash<String,String>]
6487
+ #
6471
6488
  class UpdateStageResponse < Struct.new(
6472
6489
  :access_log_settings,
6473
6490
  :client_certificate_id,
@@ -6478,7 +6495,8 @@ module Aws::ApiGatewayV2
6478
6495
  :last_updated_date,
6479
6496
  :route_settings,
6480
6497
  :stage_name,
6481
- :stage_variables)
6498
+ :stage_variables,
6499
+ :tags)
6482
6500
  include Aws::Structure
6483
6501
  end
6484
6502
 
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-apigatewayv2/customizations'
42
42
  # @service
43
43
  module Aws::ApiGatewayV2
44
44
 
45
- GEM_VERSION = '1.11.0'
45
+ GEM_VERSION = '1.12.0'
46
46
 
47
47
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-apigatewayv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.12.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: 2019-07-01 00:00:00.000000000 Z
11
+ date: 2019-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core