aws-sdk-apigateway 1.4.0 → 1.5.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-apigateway.rb +1 -1
- data/lib/aws-sdk-apigateway/client.rb +31 -2
- data/lib/aws-sdk-apigateway/client_api.rb +8 -0
- data/lib/aws-sdk-apigateway/types.rb +43 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e7d6736c0f8c18dd8d172920a3a2b64ddc617218
|
|
4
|
+
data.tar.gz: 9a945bb603f64c516cac7b24e017d12214fd59ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c49946be1031463707f13c454a43d549253699550d5a93f8546261697c05234356cdf7180fb2af7c38e7ec4661ad68d68140ae26b6c5a266194b56ba10bfba4e
|
|
7
|
+
data.tar.gz: aaab9c69a4ba897585b6002005fe44b537fe8bac088a37cafc34e1026291e47d4c75cba4e9d3f84fad8febb828f833625982d1527d1ac5c61684ced6e52f50ba
|
data/lib/aws-sdk-apigateway.rb
CHANGED
|
@@ -833,6 +833,7 @@ module Aws::APIGateway
|
|
|
833
833
|
# resp.resource_methods["String"].method_integration.request_templates["String"] #=> String
|
|
834
834
|
# resp.resource_methods["String"].method_integration.passthrough_behavior #=> String
|
|
835
835
|
# resp.resource_methods["String"].method_integration.content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
836
|
+
# resp.resource_methods["String"].method_integration.timeout_in_millis #=> Integer
|
|
836
837
|
# resp.resource_methods["String"].method_integration.cache_namespace #=> String
|
|
837
838
|
# resp.resource_methods["String"].method_integration.cache_key_parameters #=> Array
|
|
838
839
|
# resp.resource_methods["String"].method_integration.cache_key_parameters[0] #=> String
|
|
@@ -960,6 +961,7 @@ module Aws::APIGateway
|
|
|
960
961
|
# * {Types::Stage#method_settings #method_settings} => Hash<String,Types::MethodSetting>
|
|
961
962
|
# * {Types::Stage#variables #variables} => Hash<String,String>
|
|
962
963
|
# * {Types::Stage#documentation_version #documentation_version} => String
|
|
964
|
+
# * {Types::Stage#access_log_settings #access_log_settings} => Types::AccessLogSettings
|
|
963
965
|
# * {Types::Stage#created_date #created_date} => Time
|
|
964
966
|
# * {Types::Stage#last_updated_date #last_updated_date} => Time
|
|
965
967
|
#
|
|
@@ -1001,6 +1003,8 @@ module Aws::APIGateway
|
|
|
1001
1003
|
# resp.variables #=> Hash
|
|
1002
1004
|
# resp.variables["String"] #=> String
|
|
1003
1005
|
# resp.documentation_version #=> String
|
|
1006
|
+
# resp.access_log_settings.format #=> String
|
|
1007
|
+
# resp.access_log_settings.destination_arn #=> String
|
|
1004
1008
|
# resp.created_date #=> Time
|
|
1005
1009
|
# resp.last_updated_date #=> Time
|
|
1006
1010
|
#
|
|
@@ -2641,7 +2645,7 @@ module Aws::APIGateway
|
|
|
2641
2645
|
req.send_request(options)
|
|
2642
2646
|
end
|
|
2643
2647
|
|
|
2644
|
-
#
|
|
2648
|
+
# Get the integration settings.
|
|
2645
2649
|
#
|
|
2646
2650
|
# @option params [required, String] :rest_api_id
|
|
2647
2651
|
# The string identifier of the associated RestApi.
|
|
@@ -2662,6 +2666,7 @@ module Aws::APIGateway
|
|
|
2662
2666
|
# * {Types::Integration#request_templates #request_templates} => Hash<String,String>
|
|
2663
2667
|
# * {Types::Integration#passthrough_behavior #passthrough_behavior} => String
|
|
2664
2668
|
# * {Types::Integration#content_handling #content_handling} => String
|
|
2669
|
+
# * {Types::Integration#timeout_in_millis #timeout_in_millis} => Integer
|
|
2665
2670
|
# * {Types::Integration#cache_namespace #cache_namespace} => String
|
|
2666
2671
|
# * {Types::Integration#cache_key_parameters #cache_key_parameters} => Array<String>
|
|
2667
2672
|
# * {Types::Integration#integration_responses #integration_responses} => Hash<String,Types::IntegrationResponse>
|
|
@@ -2686,6 +2691,7 @@ module Aws::APIGateway
|
|
|
2686
2691
|
# resp.request_templates["String"] #=> String
|
|
2687
2692
|
# resp.passthrough_behavior #=> String
|
|
2688
2693
|
# resp.content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
2694
|
+
# resp.timeout_in_millis #=> Integer
|
|
2689
2695
|
# resp.cache_namespace #=> String
|
|
2690
2696
|
# resp.cache_key_parameters #=> Array
|
|
2691
2697
|
# resp.cache_key_parameters[0] #=> String
|
|
@@ -2813,6 +2819,7 @@ module Aws::APIGateway
|
|
|
2813
2819
|
# resp.method_integration.request_templates["String"] #=> String
|
|
2814
2820
|
# resp.method_integration.passthrough_behavior #=> String
|
|
2815
2821
|
# resp.method_integration.content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
2822
|
+
# resp.method_integration.timeout_in_millis #=> Integer
|
|
2816
2823
|
# resp.method_integration.cache_namespace #=> String
|
|
2817
2824
|
# resp.method_integration.cache_key_parameters #=> Array
|
|
2818
2825
|
# resp.method_integration.cache_key_parameters[0] #=> String
|
|
@@ -3135,6 +3142,7 @@ module Aws::APIGateway
|
|
|
3135
3142
|
# resp.resource_methods["String"].method_integration.request_templates["String"] #=> String
|
|
3136
3143
|
# resp.resource_methods["String"].method_integration.passthrough_behavior #=> String
|
|
3137
3144
|
# resp.resource_methods["String"].method_integration.content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
3145
|
+
# resp.resource_methods["String"].method_integration.timeout_in_millis #=> Integer
|
|
3138
3146
|
# resp.resource_methods["String"].method_integration.cache_namespace #=> String
|
|
3139
3147
|
# resp.resource_methods["String"].method_integration.cache_key_parameters #=> Array
|
|
3140
3148
|
# resp.resource_methods["String"].method_integration.cache_key_parameters[0] #=> String
|
|
@@ -3224,6 +3232,7 @@ module Aws::APIGateway
|
|
|
3224
3232
|
# resp.items[0].resource_methods["String"].method_integration.request_templates["String"] #=> String
|
|
3225
3233
|
# resp.items[0].resource_methods["String"].method_integration.passthrough_behavior #=> String
|
|
3226
3234
|
# resp.items[0].resource_methods["String"].method_integration.content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
3235
|
+
# resp.items[0].resource_methods["String"].method_integration.timeout_in_millis #=> Integer
|
|
3227
3236
|
# resp.items[0].resource_methods["String"].method_integration.cache_namespace #=> String
|
|
3228
3237
|
# resp.items[0].resource_methods["String"].method_integration.cache_key_parameters #=> Array
|
|
3229
3238
|
# resp.items[0].resource_methods["String"].method_integration.cache_key_parameters[0] #=> String
|
|
@@ -3476,6 +3485,7 @@ module Aws::APIGateway
|
|
|
3476
3485
|
# * {Types::Stage#method_settings #method_settings} => Hash<String,Types::MethodSetting>
|
|
3477
3486
|
# * {Types::Stage#variables #variables} => Hash<String,String>
|
|
3478
3487
|
# * {Types::Stage#documentation_version #documentation_version} => String
|
|
3488
|
+
# * {Types::Stage#access_log_settings #access_log_settings} => Types::AccessLogSettings
|
|
3479
3489
|
# * {Types::Stage#created_date #created_date} => Time
|
|
3480
3490
|
# * {Types::Stage#last_updated_date #last_updated_date} => Time
|
|
3481
3491
|
#
|
|
@@ -3509,6 +3519,8 @@ module Aws::APIGateway
|
|
|
3509
3519
|
# resp.variables #=> Hash
|
|
3510
3520
|
# resp.variables["String"] #=> String
|
|
3511
3521
|
# resp.documentation_version #=> String
|
|
3522
|
+
# resp.access_log_settings.format #=> String
|
|
3523
|
+
# resp.access_log_settings.destination_arn #=> String
|
|
3512
3524
|
# resp.created_date #=> Time
|
|
3513
3525
|
# resp.last_updated_date #=> Time
|
|
3514
3526
|
#
|
|
@@ -3562,6 +3574,8 @@ module Aws::APIGateway
|
|
|
3562
3574
|
# resp.item[0].variables #=> Hash
|
|
3563
3575
|
# resp.item[0].variables["String"] #=> String
|
|
3564
3576
|
# resp.item[0].documentation_version #=> String
|
|
3577
|
+
# resp.item[0].access_log_settings.format #=> String
|
|
3578
|
+
# resp.item[0].access_log_settings.destination_arn #=> String
|
|
3565
3579
|
# resp.item[0].created_date #=> Time
|
|
3566
3580
|
# resp.item[0].last_updated_date #=> Time
|
|
3567
3581
|
#
|
|
@@ -4153,6 +4167,10 @@ module Aws::APIGateway
|
|
|
4153
4167
|
# modification, provided that the `passthroughBehaviors` is configured
|
|
4154
4168
|
# to support payload pass-through.
|
|
4155
4169
|
#
|
|
4170
|
+
# @option params [Integer] :timeout_in_millis
|
|
4171
|
+
# Custom timeout between 50 and 29,000 milliseconds. The default value
|
|
4172
|
+
# is 29,000 milliseconds or 29 seconds.
|
|
4173
|
+
#
|
|
4156
4174
|
# @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4157
4175
|
#
|
|
4158
4176
|
# * {Types::Integration#type #type} => String
|
|
@@ -4163,6 +4181,7 @@ module Aws::APIGateway
|
|
|
4163
4181
|
# * {Types::Integration#request_templates #request_templates} => Hash<String,String>
|
|
4164
4182
|
# * {Types::Integration#passthrough_behavior #passthrough_behavior} => String
|
|
4165
4183
|
# * {Types::Integration#content_handling #content_handling} => String
|
|
4184
|
+
# * {Types::Integration#timeout_in_millis #timeout_in_millis} => Integer
|
|
4166
4185
|
# * {Types::Integration#cache_namespace #cache_namespace} => String
|
|
4167
4186
|
# * {Types::Integration#cache_key_parameters #cache_key_parameters} => Array<String>
|
|
4168
4187
|
# * {Types::Integration#integration_responses #integration_responses} => Hash<String,Types::IntegrationResponse>
|
|
@@ -4187,6 +4206,7 @@ module Aws::APIGateway
|
|
|
4187
4206
|
# cache_namespace: "String",
|
|
4188
4207
|
# cache_key_parameters: ["String"],
|
|
4189
4208
|
# content_handling: "CONVERT_TO_BINARY", # accepts CONVERT_TO_BINARY, CONVERT_TO_TEXT
|
|
4209
|
+
# timeout_in_millis: 1,
|
|
4190
4210
|
# })
|
|
4191
4211
|
#
|
|
4192
4212
|
# @example Response structure
|
|
@@ -4201,6 +4221,7 @@ module Aws::APIGateway
|
|
|
4201
4221
|
# resp.request_templates["String"] #=> String
|
|
4202
4222
|
# resp.passthrough_behavior #=> String
|
|
4203
4223
|
# resp.content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
4224
|
+
# resp.timeout_in_millis #=> Integer
|
|
4204
4225
|
# resp.cache_namespace #=> String
|
|
4205
4226
|
# resp.cache_key_parameters #=> Array
|
|
4206
4227
|
# resp.cache_key_parameters[0] #=> String
|
|
@@ -4425,6 +4446,7 @@ module Aws::APIGateway
|
|
|
4425
4446
|
# resp.method_integration.request_templates["String"] #=> String
|
|
4426
4447
|
# resp.method_integration.passthrough_behavior #=> String
|
|
4427
4448
|
# resp.method_integration.content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
4449
|
+
# resp.method_integration.timeout_in_millis #=> Integer
|
|
4428
4450
|
# resp.method_integration.cache_namespace #=> String
|
|
4429
4451
|
# resp.method_integration.cache_key_parameters #=> Array
|
|
4430
4452
|
# resp.method_integration.cache_key_parameters[0] #=> String
|
|
@@ -5308,6 +5330,7 @@ module Aws::APIGateway
|
|
|
5308
5330
|
# * {Types::Integration#request_templates #request_templates} => Hash<String,String>
|
|
5309
5331
|
# * {Types::Integration#passthrough_behavior #passthrough_behavior} => String
|
|
5310
5332
|
# * {Types::Integration#content_handling #content_handling} => String
|
|
5333
|
+
# * {Types::Integration#timeout_in_millis #timeout_in_millis} => Integer
|
|
5311
5334
|
# * {Types::Integration#cache_namespace #cache_namespace} => String
|
|
5312
5335
|
# * {Types::Integration#cache_key_parameters #cache_key_parameters} => Array<String>
|
|
5313
5336
|
# * {Types::Integration#integration_responses #integration_responses} => Hash<String,Types::IntegrationResponse>
|
|
@@ -5340,6 +5363,7 @@ module Aws::APIGateway
|
|
|
5340
5363
|
# resp.request_templates["String"] #=> String
|
|
5341
5364
|
# resp.passthrough_behavior #=> String
|
|
5342
5365
|
# resp.content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
5366
|
+
# resp.timeout_in_millis #=> Integer
|
|
5343
5367
|
# resp.cache_namespace #=> String
|
|
5344
5368
|
# resp.cache_key_parameters #=> Array
|
|
5345
5369
|
# resp.cache_key_parameters[0] #=> String
|
|
@@ -5492,6 +5516,7 @@ module Aws::APIGateway
|
|
|
5492
5516
|
# resp.method_integration.request_templates["String"] #=> String
|
|
5493
5517
|
# resp.method_integration.passthrough_behavior #=> String
|
|
5494
5518
|
# resp.method_integration.content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
5519
|
+
# resp.method_integration.timeout_in_millis #=> Integer
|
|
5495
5520
|
# resp.method_integration.cache_namespace #=> String
|
|
5496
5521
|
# resp.method_integration.cache_key_parameters #=> Array
|
|
5497
5522
|
# resp.method_integration.cache_key_parameters[0] #=> String
|
|
@@ -5733,6 +5758,7 @@ module Aws::APIGateway
|
|
|
5733
5758
|
# resp.resource_methods["String"].method_integration.request_templates["String"] #=> String
|
|
5734
5759
|
# resp.resource_methods["String"].method_integration.passthrough_behavior #=> String
|
|
5735
5760
|
# resp.resource_methods["String"].method_integration.content_handling #=> String, one of "CONVERT_TO_BINARY", "CONVERT_TO_TEXT"
|
|
5761
|
+
# resp.resource_methods["String"].method_integration.timeout_in_millis #=> Integer
|
|
5736
5762
|
# resp.resource_methods["String"].method_integration.cache_namespace #=> String
|
|
5737
5763
|
# resp.resource_methods["String"].method_integration.cache_key_parameters #=> Array
|
|
5738
5764
|
# resp.resource_methods["String"].method_integration.cache_key_parameters[0] #=> String
|
|
@@ -5831,6 +5857,7 @@ module Aws::APIGateway
|
|
|
5831
5857
|
# * {Types::Stage#method_settings #method_settings} => Hash<String,Types::MethodSetting>
|
|
5832
5858
|
# * {Types::Stage#variables #variables} => Hash<String,String>
|
|
5833
5859
|
# * {Types::Stage#documentation_version #documentation_version} => String
|
|
5860
|
+
# * {Types::Stage#access_log_settings #access_log_settings} => Types::AccessLogSettings
|
|
5834
5861
|
# * {Types::Stage#created_date #created_date} => Time
|
|
5835
5862
|
# * {Types::Stage#last_updated_date #last_updated_date} => Time
|
|
5836
5863
|
#
|
|
@@ -5872,6 +5899,8 @@ module Aws::APIGateway
|
|
|
5872
5899
|
# resp.variables #=> Hash
|
|
5873
5900
|
# resp.variables["String"] #=> String
|
|
5874
5901
|
# resp.documentation_version #=> String
|
|
5902
|
+
# resp.access_log_settings.format #=> String
|
|
5903
|
+
# resp.access_log_settings.destination_arn #=> String
|
|
5875
5904
|
# resp.created_date #=> Time
|
|
5876
5905
|
# resp.last_updated_date #=> Time
|
|
5877
5906
|
#
|
|
@@ -6005,7 +6034,7 @@ module Aws::APIGateway
|
|
|
6005
6034
|
params: params,
|
|
6006
6035
|
config: config)
|
|
6007
6036
|
context[:gem_name] = 'aws-sdk-apigateway'
|
|
6008
|
-
context[:gem_version] = '1.
|
|
6037
|
+
context[:gem_version] = '1.5.0'
|
|
6009
6038
|
Seahorse::Client::Request.new(handlers, context)
|
|
6010
6039
|
end
|
|
6011
6040
|
|
|
@@ -11,6 +11,7 @@ module Aws::APIGateway
|
|
|
11
11
|
|
|
12
12
|
include Seahorse::Model
|
|
13
13
|
|
|
14
|
+
AccessLogSettings = Shapes::StructureShape.new(name: 'AccessLogSettings')
|
|
14
15
|
Account = Shapes::StructureShape.new(name: 'Account')
|
|
15
16
|
ApiKey = Shapes::StructureShape.new(name: 'ApiKey')
|
|
16
17
|
ApiKeyIds = Shapes::StructureShape.new(name: 'ApiKeyIds')
|
|
@@ -251,6 +252,10 @@ module Aws::APIGateway
|
|
|
251
252
|
UsagePlanKeys = Shapes::StructureShape.new(name: 'UsagePlanKeys')
|
|
252
253
|
UsagePlans = Shapes::StructureShape.new(name: 'UsagePlans')
|
|
253
254
|
|
|
255
|
+
AccessLogSettings.add_member(:format, Shapes::ShapeRef.new(shape: String, location_name: "format"))
|
|
256
|
+
AccessLogSettings.add_member(:destination_arn, Shapes::ShapeRef.new(shape: String, location_name: "destinationArn"))
|
|
257
|
+
AccessLogSettings.struct_class = Types::AccessLogSettings
|
|
258
|
+
|
|
254
259
|
Account.add_member(:cloudwatch_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "cloudwatchRoleArn"))
|
|
255
260
|
Account.add_member(:throttle_settings, Shapes::ShapeRef.new(shape: ThrottleSettings, location_name: "throttleSettings"))
|
|
256
261
|
Account.add_member(:features, Shapes::ShapeRef.new(shape: ListOfString, location_name: "features"))
|
|
@@ -825,6 +830,7 @@ module Aws::APIGateway
|
|
|
825
830
|
Integration.add_member(:request_templates, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "requestTemplates"))
|
|
826
831
|
Integration.add_member(:passthrough_behavior, Shapes::ShapeRef.new(shape: String, location_name: "passthroughBehavior"))
|
|
827
832
|
Integration.add_member(:content_handling, Shapes::ShapeRef.new(shape: ContentHandlingStrategy, location_name: "contentHandling"))
|
|
833
|
+
Integration.add_member(:timeout_in_millis, Shapes::ShapeRef.new(shape: Integer, location_name: "timeoutInMillis"))
|
|
828
834
|
Integration.add_member(:cache_namespace, Shapes::ShapeRef.new(shape: String, location_name: "cacheNamespace"))
|
|
829
835
|
Integration.add_member(:cache_key_parameters, Shapes::ShapeRef.new(shape: ListOfString, location_name: "cacheKeyParameters"))
|
|
830
836
|
Integration.add_member(:integration_responses, Shapes::ShapeRef.new(shape: MapOfIntegrationResponse, location_name: "integrationResponses"))
|
|
@@ -992,6 +998,7 @@ module Aws::APIGateway
|
|
|
992
998
|
PutIntegrationRequest.add_member(:cache_namespace, Shapes::ShapeRef.new(shape: String, location_name: "cacheNamespace"))
|
|
993
999
|
PutIntegrationRequest.add_member(:cache_key_parameters, Shapes::ShapeRef.new(shape: ListOfString, location_name: "cacheKeyParameters"))
|
|
994
1000
|
PutIntegrationRequest.add_member(:content_handling, Shapes::ShapeRef.new(shape: ContentHandlingStrategy, location_name: "contentHandling"))
|
|
1001
|
+
PutIntegrationRequest.add_member(:timeout_in_millis, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "timeoutInMillis"))
|
|
995
1002
|
PutIntegrationRequest.struct_class = Types::PutIntegrationRequest
|
|
996
1003
|
|
|
997
1004
|
PutIntegrationResponseRequest.add_member(:rest_api_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "restapi_id"))
|
|
@@ -1107,6 +1114,7 @@ module Aws::APIGateway
|
|
|
1107
1114
|
Stage.add_member(:method_settings, Shapes::ShapeRef.new(shape: MapOfMethodSettings, location_name: "methodSettings"))
|
|
1108
1115
|
Stage.add_member(:variables, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "variables"))
|
|
1109
1116
|
Stage.add_member(:documentation_version, Shapes::ShapeRef.new(shape: String, location_name: "documentationVersion"))
|
|
1117
|
+
Stage.add_member(:access_log_settings, Shapes::ShapeRef.new(shape: AccessLogSettings, location_name: "accessLogSettings"))
|
|
1110
1118
|
Stage.add_member(:created_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdDate"))
|
|
1111
1119
|
Stage.add_member(:last_updated_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedDate"))
|
|
1112
1120
|
Stage.struct_class = Types::Stage
|
|
@@ -8,6 +8,29 @@
|
|
|
8
8
|
module Aws::APIGateway
|
|
9
9
|
module Types
|
|
10
10
|
|
|
11
|
+
# Access log settings, including the access log format and access log
|
|
12
|
+
# destination ARN.
|
|
13
|
+
#
|
|
14
|
+
# @!attribute [rw] format
|
|
15
|
+
# A single line format of the access logs of data, as specified by
|
|
16
|
+
# selected [$context variables][1]. The format must include at least
|
|
17
|
+
# `$context.requestId`.
|
|
18
|
+
#
|
|
19
|
+
#
|
|
20
|
+
#
|
|
21
|
+
# [1]: http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html#context-variable-reference
|
|
22
|
+
# @return [String]
|
|
23
|
+
#
|
|
24
|
+
# @!attribute [rw] destination_arn
|
|
25
|
+
# The ARN of the CloudWatch Logs log group to receive access logs.
|
|
26
|
+
# @return [String]
|
|
27
|
+
#
|
|
28
|
+
class AccessLogSettings < Struct.new(
|
|
29
|
+
:format,
|
|
30
|
+
:destination_arn)
|
|
31
|
+
include Aws::Structure
|
|
32
|
+
end
|
|
33
|
+
|
|
11
34
|
# Represents an AWS account that is associated with Amazon API Gateway.
|
|
12
35
|
#
|
|
13
36
|
# <div class="remarks" markdown="1">
|
|
@@ -3124,7 +3147,7 @@ module Aws::APIGateway
|
|
|
3124
3147
|
include Aws::Structure
|
|
3125
3148
|
end
|
|
3126
3149
|
|
|
3127
|
-
# Represents a get integration
|
|
3150
|
+
# Represents a request to get the integration configuration.
|
|
3128
3151
|
#
|
|
3129
3152
|
# @note When making an API call, you may pass GetIntegrationRequest
|
|
3130
3153
|
# data as a hash:
|
|
@@ -4087,6 +4110,11 @@ module Aws::APIGateway
|
|
|
4087
4110
|
# to support payload pass-through.
|
|
4088
4111
|
# @return [String]
|
|
4089
4112
|
#
|
|
4113
|
+
# @!attribute [rw] timeout_in_millis
|
|
4114
|
+
# Custom timeout between 50 and 29,000 milliseconds. The default value
|
|
4115
|
+
# is 29,000 milliseconds or 29 seconds.
|
|
4116
|
+
# @return [Integer]
|
|
4117
|
+
#
|
|
4090
4118
|
# @!attribute [rw] cache_namespace
|
|
4091
4119
|
# Specifies the integration's cache namespace.
|
|
4092
4120
|
# @return [String]
|
|
@@ -4138,6 +4166,7 @@ module Aws::APIGateway
|
|
|
4138
4166
|
:request_templates,
|
|
4139
4167
|
:passthrough_behavior,
|
|
4140
4168
|
:content_handling,
|
|
4169
|
+
:timeout_in_millis,
|
|
4141
4170
|
:cache_namespace,
|
|
4142
4171
|
:cache_key_parameters,
|
|
4143
4172
|
:integration_responses)
|
|
@@ -4828,6 +4857,7 @@ module Aws::APIGateway
|
|
|
4828
4857
|
# cache_namespace: "String",
|
|
4829
4858
|
# cache_key_parameters: ["String"],
|
|
4830
4859
|
# content_handling: "CONVERT_TO_BINARY", # accepts CONVERT_TO_BINARY, CONVERT_TO_TEXT
|
|
4860
|
+
# timeout_in_millis: 1,
|
|
4831
4861
|
# }
|
|
4832
4862
|
#
|
|
4833
4863
|
# @!attribute [rw] rest_api_id
|
|
@@ -4936,6 +4966,11 @@ module Aws::APIGateway
|
|
|
4936
4966
|
# to support payload pass-through.
|
|
4937
4967
|
# @return [String]
|
|
4938
4968
|
#
|
|
4969
|
+
# @!attribute [rw] timeout_in_millis
|
|
4970
|
+
# Custom timeout between 50 and 29,000 milliseconds. The default value
|
|
4971
|
+
# is 29,000 milliseconds or 29 seconds.
|
|
4972
|
+
# @return [Integer]
|
|
4973
|
+
#
|
|
4939
4974
|
class PutIntegrationRequest < Struct.new(
|
|
4940
4975
|
:rest_api_id,
|
|
4941
4976
|
:resource_id,
|
|
@@ -4949,7 +4984,8 @@ module Aws::APIGateway
|
|
|
4949
4984
|
:passthrough_behavior,
|
|
4950
4985
|
:cache_namespace,
|
|
4951
4986
|
:cache_key_parameters,
|
|
4952
|
-
:content_handling
|
|
4987
|
+
:content_handling,
|
|
4988
|
+
:timeout_in_millis)
|
|
4953
4989
|
include Aws::Structure
|
|
4954
4990
|
end
|
|
4955
4991
|
|
|
@@ -5697,6 +5733,10 @@ module Aws::APIGateway
|
|
|
5697
5733
|
# The version of the associated API documentation.
|
|
5698
5734
|
# @return [String]
|
|
5699
5735
|
#
|
|
5736
|
+
# @!attribute [rw] access_log_settings
|
|
5737
|
+
# The access log settings in this stage.
|
|
5738
|
+
# @return [Types::AccessLogSettings]
|
|
5739
|
+
#
|
|
5700
5740
|
# @!attribute [rw] created_date
|
|
5701
5741
|
# The timestamp when the stage was created.
|
|
5702
5742
|
# @return [Time]
|
|
@@ -5716,6 +5756,7 @@ module Aws::APIGateway
|
|
|
5716
5756
|
:method_settings,
|
|
5717
5757
|
:variables,
|
|
5718
5758
|
:documentation_version,
|
|
5759
|
+
:access_log_settings,
|
|
5719
5760
|
:created_date,
|
|
5720
5761
|
:last_updated_date)
|
|
5721
5762
|
include Aws::Structure
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-apigateway
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.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: 2017-11-
|
|
11
|
+
date: 2017-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|