aws-sdk-apigatewayv2 1.75.0 → 1.80.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigatewayv2/client.rb +313 -9
- data/lib/aws-sdk-apigatewayv2/client_api.rb +205 -0
- data/lib/aws-sdk-apigatewayv2/types.rb +444 -2
- data/lib/aws-sdk-apigatewayv2.rb +1 -1
- data/sig/client.rbs +129 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +142 -0
- metadata +4 -4
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -193,8 +194,10 @@ module Aws
|
|
193
194
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainNameResponse]
|
194
195
|
def api_mapping_selection_expression: () -> ::String
|
195
196
|
def domain_name: () -> ::String
|
197
|
+
def domain_name_arn: () -> ::String
|
196
198
|
def domain_name_configurations: () -> ::Array[Types::DomainNameConfiguration]
|
197
199
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
200
|
+
def routing_mode: () -> ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
198
201
|
def tags: () -> ::Hash[::String, ::String]
|
199
202
|
end
|
200
203
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#create_domain_name-instance_method
|
@@ -219,6 +222,7 @@ module Aws
|
|
219
222
|
truststore_uri: ::String?,
|
220
223
|
truststore_version: ::String?
|
221
224
|
},
|
225
|
+
?routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING"),
|
222
226
|
?tags: Hash[::String, ::String]
|
223
227
|
) -> _CreateDomainNameResponseSuccess
|
224
228
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameResponseSuccess
|
@@ -366,6 +370,46 @@ module Aws
|
|
366
370
|
) -> _CreateRouteResponseResponseSuccess
|
367
371
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRouteResponseResponseSuccess
|
368
372
|
|
373
|
+
interface _CreateRoutingRuleResponseSuccess
|
374
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRoutingRuleResponse]
|
375
|
+
def actions: () -> ::Array[Types::RoutingRuleAction]
|
376
|
+
def conditions: () -> ::Array[Types::RoutingRuleCondition]
|
377
|
+
def priority: () -> ::Integer
|
378
|
+
def routing_rule_arn: () -> ::String
|
379
|
+
def routing_rule_id: () -> ::String
|
380
|
+
end
|
381
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#create_routing_rule-instance_method
|
382
|
+
def create_routing_rule: (
|
383
|
+
actions: Array[
|
384
|
+
{
|
385
|
+
invoke_api: {
|
386
|
+
api_id: ::String,
|
387
|
+
stage: ::String,
|
388
|
+
strip_base_path: bool?
|
389
|
+
}
|
390
|
+
},
|
391
|
+
],
|
392
|
+
conditions: Array[
|
393
|
+
{
|
394
|
+
match_base_paths: {
|
395
|
+
any_of: Array[::String]
|
396
|
+
}?,
|
397
|
+
match_headers: {
|
398
|
+
any_of: Array[
|
399
|
+
{
|
400
|
+
header: ::String,
|
401
|
+
value_glob: ::String
|
402
|
+
},
|
403
|
+
]
|
404
|
+
}?
|
405
|
+
},
|
406
|
+
],
|
407
|
+
domain_name: ::String,
|
408
|
+
?domain_name_id: ::String,
|
409
|
+
priority: ::Integer
|
410
|
+
) -> _CreateRoutingRuleResponseSuccess
|
411
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRoutingRuleResponseSuccess
|
412
|
+
|
369
413
|
interface _CreateStageResponseSuccess
|
370
414
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateStageResponse]
|
371
415
|
def access_log_settings: () -> Types::AccessLogSettings
|
@@ -534,6 +578,14 @@ module Aws
|
|
534
578
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
535
579
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
536
580
|
|
581
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#delete_routing_rule-instance_method
|
582
|
+
def delete_routing_rule: (
|
583
|
+
domain_name: ::String,
|
584
|
+
?domain_name_id: ::String,
|
585
|
+
routing_rule_id: ::String
|
586
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
587
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
588
|
+
|
537
589
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#delete_stage-instance_method
|
538
590
|
def delete_stage: (
|
539
591
|
api_id: ::String,
|
@@ -704,8 +756,10 @@ module Aws
|
|
704
756
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainNameResponse]
|
705
757
|
def api_mapping_selection_expression: () -> ::String
|
706
758
|
def domain_name: () -> ::String
|
759
|
+
def domain_name_arn: () -> ::String
|
707
760
|
def domain_name_configurations: () -> ::Array[Types::DomainNameConfiguration]
|
708
761
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
762
|
+
def routing_mode: () -> ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
709
763
|
def tags: () -> ::Hash[::String, ::String]
|
710
764
|
end
|
711
765
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#get_domain_name-instance_method
|
@@ -905,6 +959,36 @@ module Aws
|
|
905
959
|
) -> _GetRoutesResponseSuccess
|
906
960
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRoutesResponseSuccess
|
907
961
|
|
962
|
+
interface _GetRoutingRuleResponseSuccess
|
963
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetRoutingRuleResponse]
|
964
|
+
def actions: () -> ::Array[Types::RoutingRuleAction]
|
965
|
+
def conditions: () -> ::Array[Types::RoutingRuleCondition]
|
966
|
+
def priority: () -> ::Integer
|
967
|
+
def routing_rule_arn: () -> ::String
|
968
|
+
def routing_rule_id: () -> ::String
|
969
|
+
end
|
970
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#get_routing_rule-instance_method
|
971
|
+
def get_routing_rule: (
|
972
|
+
domain_name: ::String,
|
973
|
+
?domain_name_id: ::String,
|
974
|
+
routing_rule_id: ::String
|
975
|
+
) -> _GetRoutingRuleResponseSuccess
|
976
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRoutingRuleResponseSuccess
|
977
|
+
|
978
|
+
interface _ListRoutingRulesResponseSuccess
|
979
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRoutingRulesResponse]
|
980
|
+
def next_token: () -> ::String
|
981
|
+
def routing_rules: () -> ::Array[Types::RoutingRule]
|
982
|
+
end
|
983
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#list_routing_rules-instance_method
|
984
|
+
def list_routing_rules: (
|
985
|
+
domain_name: ::String,
|
986
|
+
?domain_name_id: ::String,
|
987
|
+
?max_results: ::Integer,
|
988
|
+
?next_token: ::String
|
989
|
+
) -> _ListRoutingRulesResponseSuccess
|
990
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRoutingRulesResponseSuccess
|
991
|
+
|
908
992
|
interface _GetStageResponseSuccess
|
909
993
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetStageResponse]
|
910
994
|
def access_log_settings: () -> Types::AccessLogSettings
|
@@ -1010,6 +1094,47 @@ module Aws
|
|
1010
1094
|
) -> _ImportApiResponseSuccess
|
1011
1095
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportApiResponseSuccess
|
1012
1096
|
|
1097
|
+
interface _PutRoutingRuleResponseSuccess
|
1098
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutRoutingRuleResponse]
|
1099
|
+
def actions: () -> ::Array[Types::RoutingRuleAction]
|
1100
|
+
def conditions: () -> ::Array[Types::RoutingRuleCondition]
|
1101
|
+
def priority: () -> ::Integer
|
1102
|
+
def routing_rule_arn: () -> ::String
|
1103
|
+
def routing_rule_id: () -> ::String
|
1104
|
+
end
|
1105
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#put_routing_rule-instance_method
|
1106
|
+
def put_routing_rule: (
|
1107
|
+
actions: Array[
|
1108
|
+
{
|
1109
|
+
invoke_api: {
|
1110
|
+
api_id: ::String,
|
1111
|
+
stage: ::String,
|
1112
|
+
strip_base_path: bool?
|
1113
|
+
}
|
1114
|
+
},
|
1115
|
+
],
|
1116
|
+
conditions: Array[
|
1117
|
+
{
|
1118
|
+
match_base_paths: {
|
1119
|
+
any_of: Array[::String]
|
1120
|
+
}?,
|
1121
|
+
match_headers: {
|
1122
|
+
any_of: Array[
|
1123
|
+
{
|
1124
|
+
header: ::String,
|
1125
|
+
value_glob: ::String
|
1126
|
+
},
|
1127
|
+
]
|
1128
|
+
}?
|
1129
|
+
},
|
1130
|
+
],
|
1131
|
+
domain_name: ::String,
|
1132
|
+
?domain_name_id: ::String,
|
1133
|
+
priority: ::Integer,
|
1134
|
+
routing_rule_id: ::String
|
1135
|
+
) -> _PutRoutingRuleResponseSuccess
|
1136
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRoutingRuleResponseSuccess
|
1137
|
+
|
1013
1138
|
interface _ReimportApiResponseSuccess
|
1014
1139
|
include ::Seahorse::Client::_ResponseSuccess[Types::ReimportApiResponse]
|
1015
1140
|
def api_endpoint: () -> ::String
|
@@ -1173,8 +1298,10 @@ module Aws
|
|
1173
1298
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainNameResponse]
|
1174
1299
|
def api_mapping_selection_expression: () -> ::String
|
1175
1300
|
def domain_name: () -> ::String
|
1301
|
+
def domain_name_arn: () -> ::String
|
1176
1302
|
def domain_name_configurations: () -> ::Array[Types::DomainNameConfiguration]
|
1177
1303
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
1304
|
+
def routing_mode: () -> ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
1178
1305
|
def tags: () -> ::Hash[::String, ::String]
|
1179
1306
|
end
|
1180
1307
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#update_domain_name-instance_method
|
@@ -1198,7 +1325,8 @@ module Aws
|
|
1198
1325
|
?mutual_tls_authentication: {
|
1199
1326
|
truststore_uri: ::String?,
|
1200
1327
|
truststore_version: ::String?
|
1201
|
-
}
|
1328
|
+
},
|
1329
|
+
?routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
1202
1330
|
) -> _UpdateDomainNameResponseSuccess
|
1203
1331
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainNameResponseSuccess
|
1204
1332
|
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -251,6 +251,7 @@ module Aws::ApiGatewayV2
|
|
251
251
|
attr_accessor domain_name: ::String
|
252
252
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
253
253
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
254
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
254
255
|
attr_accessor tags: ::Hash[::String, ::String]
|
255
256
|
SENSITIVE: []
|
256
257
|
end
|
@@ -259,6 +260,7 @@ module Aws::ApiGatewayV2
|
|
259
260
|
attr_accessor domain_name: ::String
|
260
261
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
261
262
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
263
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
262
264
|
attr_accessor tags: ::Hash[::String, ::String]
|
263
265
|
SENSITIVE: []
|
264
266
|
end
|
@@ -266,8 +268,10 @@ module Aws::ApiGatewayV2
|
|
266
268
|
class CreateDomainNameResponse
|
267
269
|
attr_accessor api_mapping_selection_expression: ::String
|
268
270
|
attr_accessor domain_name: ::String
|
271
|
+
attr_accessor domain_name_arn: ::String
|
269
272
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
270
273
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
274
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
271
275
|
attr_accessor tags: ::Hash[::String, ::String]
|
272
276
|
SENSITIVE: []
|
273
277
|
end
|
@@ -470,6 +474,24 @@ module Aws::ApiGatewayV2
|
|
470
474
|
SENSITIVE: []
|
471
475
|
end
|
472
476
|
|
477
|
+
class CreateRoutingRuleRequest
|
478
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
479
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
480
|
+
attr_accessor domain_name: ::String
|
481
|
+
attr_accessor domain_name_id: ::String
|
482
|
+
attr_accessor priority: ::Integer
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class CreateRoutingRuleResponse
|
487
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
488
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
489
|
+
attr_accessor priority: ::Integer
|
490
|
+
attr_accessor routing_rule_arn: ::String
|
491
|
+
attr_accessor routing_rule_id: ::String
|
492
|
+
SENSITIVE: []
|
493
|
+
end
|
494
|
+
|
473
495
|
class CreateStageInput
|
474
496
|
attr_accessor access_log_settings: Types::AccessLogSettings
|
475
497
|
attr_accessor auto_deploy: bool
|
@@ -631,6 +653,13 @@ module Aws::ApiGatewayV2
|
|
631
653
|
SENSITIVE: []
|
632
654
|
end
|
633
655
|
|
656
|
+
class DeleteRoutingRuleRequest
|
657
|
+
attr_accessor domain_name: ::String
|
658
|
+
attr_accessor domain_name_id: ::String
|
659
|
+
attr_accessor routing_rule_id: ::String
|
660
|
+
SENSITIVE: []
|
661
|
+
end
|
662
|
+
|
634
663
|
class DeleteStageRequest
|
635
664
|
attr_accessor api_id: ::String
|
636
665
|
attr_accessor stage_name: ::String
|
@@ -664,8 +693,10 @@ module Aws::ApiGatewayV2
|
|
664
693
|
class DomainName
|
665
694
|
attr_accessor api_mapping_selection_expression: ::String
|
666
695
|
attr_accessor domain_name: ::String
|
696
|
+
attr_accessor domain_name_arn: ::String
|
667
697
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
668
698
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
699
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
669
700
|
attr_accessor tags: ::Hash[::String, ::String]
|
670
701
|
SENSITIVE: []
|
671
702
|
end
|
@@ -848,8 +879,10 @@ module Aws::ApiGatewayV2
|
|
848
879
|
class GetDomainNameResponse
|
849
880
|
attr_accessor api_mapping_selection_expression: ::String
|
850
881
|
attr_accessor domain_name: ::String
|
882
|
+
attr_accessor domain_name_arn: ::String
|
851
883
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
852
884
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
885
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
853
886
|
attr_accessor tags: ::Hash[::String, ::String]
|
854
887
|
SENSITIVE: []
|
855
888
|
end
|
@@ -1051,6 +1084,36 @@ module Aws::ApiGatewayV2
|
|
1051
1084
|
SENSITIVE: []
|
1052
1085
|
end
|
1053
1086
|
|
1087
|
+
class GetRoutingRuleRequest
|
1088
|
+
attr_accessor domain_name: ::String
|
1089
|
+
attr_accessor domain_name_id: ::String
|
1090
|
+
attr_accessor routing_rule_id: ::String
|
1091
|
+
SENSITIVE: []
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class GetRoutingRuleResponse
|
1095
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
1096
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
1097
|
+
attr_accessor priority: ::Integer
|
1098
|
+
attr_accessor routing_rule_arn: ::String
|
1099
|
+
attr_accessor routing_rule_id: ::String
|
1100
|
+
SENSITIVE: []
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
class ListRoutingRulesRequest
|
1104
|
+
attr_accessor domain_name: ::String
|
1105
|
+
attr_accessor domain_name_id: ::String
|
1106
|
+
attr_accessor max_results: ::Integer
|
1107
|
+
attr_accessor next_token: ::String
|
1108
|
+
SENSITIVE: []
|
1109
|
+
end
|
1110
|
+
|
1111
|
+
class ListRoutingRulesResponse
|
1112
|
+
attr_accessor next_token: ::String
|
1113
|
+
attr_accessor routing_rules: ::Array[Types::RoutingRule]
|
1114
|
+
SENSITIVE: []
|
1115
|
+
end
|
1116
|
+
|
1054
1117
|
class GetStageResponse
|
1055
1118
|
attr_accessor access_log_settings: Types::AccessLogSettings
|
1056
1119
|
attr_accessor api_gateway_managed: bool
|
@@ -1252,6 +1315,25 @@ module Aws::ApiGatewayV2
|
|
1252
1315
|
SENSITIVE: []
|
1253
1316
|
end
|
1254
1317
|
|
1318
|
+
class PutRoutingRuleRequest
|
1319
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
1320
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
1321
|
+
attr_accessor domain_name: ::String
|
1322
|
+
attr_accessor domain_name_id: ::String
|
1323
|
+
attr_accessor priority: ::Integer
|
1324
|
+
attr_accessor routing_rule_id: ::String
|
1325
|
+
SENSITIVE: []
|
1326
|
+
end
|
1327
|
+
|
1328
|
+
class PutRoutingRuleResponse
|
1329
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
1330
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
1331
|
+
attr_accessor priority: ::Integer
|
1332
|
+
attr_accessor routing_rule_arn: ::String
|
1333
|
+
attr_accessor routing_rule_id: ::String
|
1334
|
+
SENSITIVE: []
|
1335
|
+
end
|
1336
|
+
|
1255
1337
|
class ReimportApiInput
|
1256
1338
|
attr_accessor body: ::String
|
1257
1339
|
SENSITIVE: []
|
@@ -1333,6 +1415,62 @@ module Aws::ApiGatewayV2
|
|
1333
1415
|
SENSITIVE: []
|
1334
1416
|
end
|
1335
1417
|
|
1418
|
+
class RoutingRule
|
1419
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
1420
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
1421
|
+
attr_accessor priority: ::Integer
|
1422
|
+
attr_accessor routing_rule_arn: ::String
|
1423
|
+
attr_accessor routing_rule_id: ::String
|
1424
|
+
SENSITIVE: []
|
1425
|
+
end
|
1426
|
+
|
1427
|
+
class RoutingRuleAction
|
1428
|
+
attr_accessor invoke_api: Types::RoutingRuleActionInvokeApi
|
1429
|
+
SENSITIVE: []
|
1430
|
+
end
|
1431
|
+
|
1432
|
+
class RoutingRuleActionInvokeApi
|
1433
|
+
attr_accessor api_id: ::String
|
1434
|
+
attr_accessor stage: ::String
|
1435
|
+
attr_accessor strip_base_path: bool
|
1436
|
+
SENSITIVE: []
|
1437
|
+
end
|
1438
|
+
|
1439
|
+
class RoutingRuleCondition
|
1440
|
+
attr_accessor match_base_paths: Types::RoutingRuleMatchBasePaths
|
1441
|
+
attr_accessor match_headers: Types::RoutingRuleMatchHeaders
|
1442
|
+
SENSITIVE: []
|
1443
|
+
end
|
1444
|
+
|
1445
|
+
class RoutingRuleInput
|
1446
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
1447
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
1448
|
+
attr_accessor priority: ::Integer
|
1449
|
+
SENSITIVE: []
|
1450
|
+
end
|
1451
|
+
|
1452
|
+
class RoutingRuleMatchBasePaths
|
1453
|
+
attr_accessor any_of: ::Array[::String]
|
1454
|
+
SENSITIVE: []
|
1455
|
+
end
|
1456
|
+
|
1457
|
+
class RoutingRuleMatchHeaderValue
|
1458
|
+
attr_accessor header: ::String
|
1459
|
+
attr_accessor value_glob: ::String
|
1460
|
+
SENSITIVE: []
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
class RoutingRuleMatchHeaders
|
1464
|
+
attr_accessor any_of: ::Array[Types::RoutingRuleMatchHeaderValue]
|
1465
|
+
SENSITIVE: []
|
1466
|
+
end
|
1467
|
+
|
1468
|
+
class RoutingRules
|
1469
|
+
attr_accessor next_token: ::String
|
1470
|
+
attr_accessor routing_rules: ::Array[Types::RoutingRule]
|
1471
|
+
SENSITIVE: []
|
1472
|
+
end
|
1473
|
+
|
1336
1474
|
class Stage
|
1337
1475
|
attr_accessor access_log_settings: Types::AccessLogSettings
|
1338
1476
|
attr_accessor api_gateway_managed: bool
|
@@ -1546,6 +1684,7 @@ module Aws::ApiGatewayV2
|
|
1546
1684
|
class UpdateDomainNameInput
|
1547
1685
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
1548
1686
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
1687
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
1549
1688
|
SENSITIVE: []
|
1550
1689
|
end
|
1551
1690
|
|
@@ -1553,14 +1692,17 @@ module Aws::ApiGatewayV2
|
|
1553
1692
|
attr_accessor domain_name: ::String
|
1554
1693
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
1555
1694
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
1695
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
1556
1696
|
SENSITIVE: []
|
1557
1697
|
end
|
1558
1698
|
|
1559
1699
|
class UpdateDomainNameResponse
|
1560
1700
|
attr_accessor api_mapping_selection_expression: ::String
|
1561
1701
|
attr_accessor domain_name: ::String
|
1702
|
+
attr_accessor domain_name_arn: ::String
|
1562
1703
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
1563
1704
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
1705
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
1564
1706
|
attr_accessor tags: ::Hash[::String, ::String]
|
1565
1707
|
SENSITIVE: []
|
1566
1708
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-apigatewayv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.80.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.228.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,7 +83,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
84
84
|
- - ">="
|
85
85
|
- !ruby/object:Gem::Version
|
86
|
-
version: '2.
|
86
|
+
version: '2.7'
|
87
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
89
|
- - ">="
|