aws-sdk-apigatewayv2 1.85.0 → 1.86.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-apigatewayv2/client.rb +1373 -166
- data/lib/aws-sdk-apigatewayv2/client_api.rb +1103 -17
- data/lib/aws-sdk-apigatewayv2/types.rb +3087 -437
- data/lib/aws-sdk-apigatewayv2.rb +1 -1
- data/sig/client.rbs +480 -14
- data/sig/types.rbs +806 -0
- metadata +1 -1
data/lib/aws-sdk-apigatewayv2.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -314,6 +314,133 @@ module Aws
|
|
|
314
314
|
) -> _CreateModelResponseSuccess
|
|
315
315
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateModelResponseSuccess
|
|
316
316
|
|
|
317
|
+
interface _CreatePortalResponseSuccess
|
|
318
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePortalResponse]
|
|
319
|
+
def authorization: () -> Types::Authorization
|
|
320
|
+
def endpoint_configuration: () -> Types::EndpointConfigurationResponse
|
|
321
|
+
def included_portal_product_arns: () -> ::Array[::String]
|
|
322
|
+
def last_modified: () -> ::Time
|
|
323
|
+
def last_published: () -> ::Time
|
|
324
|
+
def last_published_description: () -> ::String
|
|
325
|
+
def portal_arn: () -> ::String
|
|
326
|
+
def portal_content: () -> Types::PortalContent
|
|
327
|
+
def portal_id: () -> ::String
|
|
328
|
+
def publish_status: () -> ("PUBLISHED" | "PUBLISH_IN_PROGRESS" | "PUBLISH_FAILED" | "DISABLED")
|
|
329
|
+
def rum_app_monitor_name: () -> ::String
|
|
330
|
+
def status_exception: () -> Types::StatusException
|
|
331
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
332
|
+
end
|
|
333
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#create_portal-instance_method
|
|
334
|
+
def create_portal: (
|
|
335
|
+
authorization: {
|
|
336
|
+
cognito_config: {
|
|
337
|
+
app_client_id: ::String,
|
|
338
|
+
user_pool_arn: ::String,
|
|
339
|
+
user_pool_domain: ::String
|
|
340
|
+
}?,
|
|
341
|
+
none: {
|
|
342
|
+
}?
|
|
343
|
+
},
|
|
344
|
+
endpoint_configuration: {
|
|
345
|
+
acm_managed: {
|
|
346
|
+
certificate_arn: ::String,
|
|
347
|
+
domain_name: ::String
|
|
348
|
+
}?,
|
|
349
|
+
none: {
|
|
350
|
+
}?
|
|
351
|
+
},
|
|
352
|
+
?included_portal_product_arns: Array[::String],
|
|
353
|
+
?logo_uri: ::String,
|
|
354
|
+
portal_content: {
|
|
355
|
+
description: ::String?,
|
|
356
|
+
display_name: ::String,
|
|
357
|
+
theme: {
|
|
358
|
+
custom_colors: {
|
|
359
|
+
accent_color: ::String,
|
|
360
|
+
background_color: ::String,
|
|
361
|
+
error_validation_color: ::String,
|
|
362
|
+
header_color: ::String,
|
|
363
|
+
navigation_color: ::String,
|
|
364
|
+
text_color: ::String
|
|
365
|
+
},
|
|
366
|
+
logo_last_uploaded: ::Time?
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
?rum_app_monitor_name: ::String,
|
|
370
|
+
?tags: Hash[::String, ::String]
|
|
371
|
+
) -> _CreatePortalResponseSuccess
|
|
372
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePortalResponseSuccess
|
|
373
|
+
|
|
374
|
+
interface _CreatePortalProductResponseSuccess
|
|
375
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePortalProductResponse]
|
|
376
|
+
def description: () -> ::String
|
|
377
|
+
def display_name: () -> ::String
|
|
378
|
+
def display_order: () -> Types::DisplayOrder
|
|
379
|
+
def last_modified: () -> ::Time
|
|
380
|
+
def portal_product_arn: () -> ::String
|
|
381
|
+
def portal_product_id: () -> ::String
|
|
382
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
383
|
+
end
|
|
384
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#create_portal_product-instance_method
|
|
385
|
+
def create_portal_product: (
|
|
386
|
+
?description: ::String,
|
|
387
|
+
display_name: ::String,
|
|
388
|
+
?tags: Hash[::String, ::String]
|
|
389
|
+
) -> _CreatePortalProductResponseSuccess
|
|
390
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePortalProductResponseSuccess
|
|
391
|
+
|
|
392
|
+
interface _CreateProductPageResponseSuccess
|
|
393
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProductPageResponse]
|
|
394
|
+
def display_content: () -> Types::DisplayContent
|
|
395
|
+
def last_modified: () -> ::Time
|
|
396
|
+
def product_page_arn: () -> ::String
|
|
397
|
+
def product_page_id: () -> ::String
|
|
398
|
+
end
|
|
399
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#create_product_page-instance_method
|
|
400
|
+
def create_product_page: (
|
|
401
|
+
display_content: {
|
|
402
|
+
body: ::String,
|
|
403
|
+
title: ::String
|
|
404
|
+
},
|
|
405
|
+
portal_product_id: ::String
|
|
406
|
+
) -> _CreateProductPageResponseSuccess
|
|
407
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProductPageResponseSuccess
|
|
408
|
+
|
|
409
|
+
interface _CreateProductRestEndpointPageResponseSuccess
|
|
410
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProductRestEndpointPageResponse]
|
|
411
|
+
def display_content: () -> Types::EndpointDisplayContentResponse
|
|
412
|
+
def last_modified: () -> ::Time
|
|
413
|
+
def product_rest_endpoint_page_arn: () -> ::String
|
|
414
|
+
def product_rest_endpoint_page_id: () -> ::String
|
|
415
|
+
def rest_endpoint_identifier: () -> Types::RestEndpointIdentifier
|
|
416
|
+
def status: () -> ("AVAILABLE" | "IN_PROGRESS" | "FAILED")
|
|
417
|
+
def status_exception: () -> Types::StatusException
|
|
418
|
+
def try_it_state: () -> ("ENABLED" | "DISABLED")
|
|
419
|
+
end
|
|
420
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#create_product_rest_endpoint_page-instance_method
|
|
421
|
+
def create_product_rest_endpoint_page: (
|
|
422
|
+
?display_content: {
|
|
423
|
+
none: {
|
|
424
|
+
}?,
|
|
425
|
+
overrides: {
|
|
426
|
+
body: ::String?,
|
|
427
|
+
endpoint: ::String?,
|
|
428
|
+
operation_name: ::String?
|
|
429
|
+
}?
|
|
430
|
+
},
|
|
431
|
+
portal_product_id: ::String,
|
|
432
|
+
rest_endpoint_identifier: {
|
|
433
|
+
identifier_parts: {
|
|
434
|
+
method: ::String,
|
|
435
|
+
path: ::String,
|
|
436
|
+
rest_api_id: ::String,
|
|
437
|
+
stage: ::String
|
|
438
|
+
}?
|
|
439
|
+
},
|
|
440
|
+
?try_it_state: ("ENABLED" | "DISABLED")
|
|
441
|
+
) -> _CreateProductRestEndpointPageResponseSuccess
|
|
442
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProductRestEndpointPageResponseSuccess
|
|
443
|
+
|
|
317
444
|
interface _CreateRouteResponseSuccess
|
|
318
445
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRouteResult]
|
|
319
446
|
def api_gateway_managed: () -> bool
|
|
@@ -547,6 +674,38 @@ module Aws
|
|
|
547
674
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
548
675
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
549
676
|
|
|
677
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#delete_portal-instance_method
|
|
678
|
+
def delete_portal: (
|
|
679
|
+
portal_id: ::String
|
|
680
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
681
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
682
|
+
|
|
683
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#delete_portal_product-instance_method
|
|
684
|
+
def delete_portal_product: (
|
|
685
|
+
portal_product_id: ::String
|
|
686
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
687
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
688
|
+
|
|
689
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#delete_portal_product_sharing_policy-instance_method
|
|
690
|
+
def delete_portal_product_sharing_policy: (
|
|
691
|
+
portal_product_id: ::String
|
|
692
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
693
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
694
|
+
|
|
695
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#delete_product_page-instance_method
|
|
696
|
+
def delete_product_page: (
|
|
697
|
+
portal_product_id: ::String,
|
|
698
|
+
product_page_id: ::String
|
|
699
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
700
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
701
|
+
|
|
702
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#delete_product_rest_endpoint_page-instance_method
|
|
703
|
+
def delete_product_rest_endpoint_page: (
|
|
704
|
+
portal_product_id: ::String,
|
|
705
|
+
product_rest_endpoint_page_id: ::String
|
|
706
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
707
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
708
|
+
|
|
550
709
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#delete_route-instance_method
|
|
551
710
|
def delete_route: (
|
|
552
711
|
api_id: ::String,
|
|
@@ -617,6 +776,12 @@ module Aws
|
|
|
617
776
|
) -> _ExportApiResponseSuccess
|
|
618
777
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportApiResponseSuccess
|
|
619
778
|
|
|
779
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#disable_portal-instance_method
|
|
780
|
+
def disable_portal: (
|
|
781
|
+
portal_id: ::String
|
|
782
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
783
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
784
|
+
|
|
620
785
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#reset_authorizers_cache-instance_method
|
|
621
786
|
def reset_authorizers_cache: (
|
|
622
787
|
api_id: ::String,
|
|
@@ -893,6 +1058,93 @@ module Aws
|
|
|
893
1058
|
) -> _GetModelsResponseSuccess
|
|
894
1059
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetModelsResponseSuccess
|
|
895
1060
|
|
|
1061
|
+
interface _GetPortalResponseSuccess
|
|
1062
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPortalResponse]
|
|
1063
|
+
def authorization: () -> Types::Authorization
|
|
1064
|
+
def endpoint_configuration: () -> Types::EndpointConfigurationResponse
|
|
1065
|
+
def included_portal_product_arns: () -> ::Array[::String]
|
|
1066
|
+
def last_modified: () -> ::Time
|
|
1067
|
+
def last_published: () -> ::Time
|
|
1068
|
+
def last_published_description: () -> ::String
|
|
1069
|
+
def portal_arn: () -> ::String
|
|
1070
|
+
def portal_content: () -> Types::PortalContent
|
|
1071
|
+
def portal_id: () -> ::String
|
|
1072
|
+
def preview: () -> Types::Preview
|
|
1073
|
+
def publish_status: () -> ("PUBLISHED" | "PUBLISH_IN_PROGRESS" | "PUBLISH_FAILED" | "DISABLED")
|
|
1074
|
+
def rum_app_monitor_name: () -> ::String
|
|
1075
|
+
def status_exception: () -> Types::StatusException
|
|
1076
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
1077
|
+
end
|
|
1078
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#get_portal-instance_method
|
|
1079
|
+
def get_portal: (
|
|
1080
|
+
portal_id: ::String
|
|
1081
|
+
) -> _GetPortalResponseSuccess
|
|
1082
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPortalResponseSuccess
|
|
1083
|
+
|
|
1084
|
+
interface _GetPortalProductResponseSuccess
|
|
1085
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPortalProductResponse]
|
|
1086
|
+
def description: () -> ::String
|
|
1087
|
+
def display_name: () -> ::String
|
|
1088
|
+
def display_order: () -> Types::DisplayOrder
|
|
1089
|
+
def last_modified: () -> ::Time
|
|
1090
|
+
def portal_product_arn: () -> ::String
|
|
1091
|
+
def portal_product_id: () -> ::String
|
|
1092
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
1093
|
+
end
|
|
1094
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#get_portal_product-instance_method
|
|
1095
|
+
def get_portal_product: (
|
|
1096
|
+
portal_product_id: ::String,
|
|
1097
|
+
?resource_owner_account_id: ::String
|
|
1098
|
+
) -> _GetPortalProductResponseSuccess
|
|
1099
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPortalProductResponseSuccess
|
|
1100
|
+
|
|
1101
|
+
interface _GetPortalProductSharingPolicyResponseSuccess
|
|
1102
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPortalProductSharingPolicyResponse]
|
|
1103
|
+
def policy_document: () -> ::String
|
|
1104
|
+
def portal_product_id: () -> ::String
|
|
1105
|
+
end
|
|
1106
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#get_portal_product_sharing_policy-instance_method
|
|
1107
|
+
def get_portal_product_sharing_policy: (
|
|
1108
|
+
portal_product_id: ::String
|
|
1109
|
+
) -> _GetPortalProductSharingPolicyResponseSuccess
|
|
1110
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPortalProductSharingPolicyResponseSuccess
|
|
1111
|
+
|
|
1112
|
+
interface _GetProductPageResponseSuccess
|
|
1113
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetProductPageResponse]
|
|
1114
|
+
def display_content: () -> Types::DisplayContent
|
|
1115
|
+
def last_modified: () -> ::Time
|
|
1116
|
+
def product_page_arn: () -> ::String
|
|
1117
|
+
def product_page_id: () -> ::String
|
|
1118
|
+
end
|
|
1119
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#get_product_page-instance_method
|
|
1120
|
+
def get_product_page: (
|
|
1121
|
+
portal_product_id: ::String,
|
|
1122
|
+
product_page_id: ::String,
|
|
1123
|
+
?resource_owner_account_id: ::String
|
|
1124
|
+
) -> _GetProductPageResponseSuccess
|
|
1125
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProductPageResponseSuccess
|
|
1126
|
+
|
|
1127
|
+
interface _GetProductRestEndpointPageResponseSuccess
|
|
1128
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetProductRestEndpointPageResponse]
|
|
1129
|
+
def display_content: () -> Types::EndpointDisplayContentResponse
|
|
1130
|
+
def last_modified: () -> ::Time
|
|
1131
|
+
def product_rest_endpoint_page_arn: () -> ::String
|
|
1132
|
+
def product_rest_endpoint_page_id: () -> ::String
|
|
1133
|
+
def raw_display_content: () -> ::String
|
|
1134
|
+
def rest_endpoint_identifier: () -> Types::RestEndpointIdentifier
|
|
1135
|
+
def status: () -> ("AVAILABLE" | "IN_PROGRESS" | "FAILED")
|
|
1136
|
+
def status_exception: () -> Types::StatusException
|
|
1137
|
+
def try_it_state: () -> ("ENABLED" | "DISABLED")
|
|
1138
|
+
end
|
|
1139
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#get_product_rest_endpoint_page-instance_method
|
|
1140
|
+
def get_product_rest_endpoint_page: (
|
|
1141
|
+
?include_raw_display_content: ::String,
|
|
1142
|
+
portal_product_id: ::String,
|
|
1143
|
+
product_rest_endpoint_page_id: ::String,
|
|
1144
|
+
?resource_owner_account_id: ::String
|
|
1145
|
+
) -> _GetProductRestEndpointPageResponseSuccess
|
|
1146
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProductRestEndpointPageResponseSuccess
|
|
1147
|
+
|
|
896
1148
|
interface _GetRouteResponseSuccess
|
|
897
1149
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRouteResult]
|
|
898
1150
|
def api_gateway_managed: () -> bool
|
|
@@ -975,20 +1227,6 @@ module Aws
|
|
|
975
1227
|
) -> _GetRoutingRuleResponseSuccess
|
|
976
1228
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRoutingRuleResponseSuccess
|
|
977
1229
|
|
|
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
|
-
|
|
992
1230
|
interface _GetStageResponseSuccess
|
|
993
1231
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetStageResponse]
|
|
994
1232
|
def access_log_settings: () -> Types::AccessLogSettings
|
|
@@ -1094,6 +1332,102 @@ module Aws
|
|
|
1094
1332
|
) -> _ImportApiResponseSuccess
|
|
1095
1333
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportApiResponseSuccess
|
|
1096
1334
|
|
|
1335
|
+
interface _ListPortalProductsResponseSuccess
|
|
1336
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPortalProductsResponse]
|
|
1337
|
+
def items: () -> ::Array[Types::PortalProductSummary]
|
|
1338
|
+
def next_token: () -> ::String
|
|
1339
|
+
end
|
|
1340
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#list_portal_products-instance_method
|
|
1341
|
+
def list_portal_products: (
|
|
1342
|
+
?max_results: ::String,
|
|
1343
|
+
?next_token: ::String,
|
|
1344
|
+
?resource_owner: ::String
|
|
1345
|
+
) -> _ListPortalProductsResponseSuccess
|
|
1346
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPortalProductsResponseSuccess
|
|
1347
|
+
|
|
1348
|
+
interface _ListPortalsResponseSuccess
|
|
1349
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPortalsResponse]
|
|
1350
|
+
def items: () -> ::Array[Types::PortalSummary]
|
|
1351
|
+
def next_token: () -> ::String
|
|
1352
|
+
end
|
|
1353
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#list_portals-instance_method
|
|
1354
|
+
def list_portals: (
|
|
1355
|
+
?max_results: ::String,
|
|
1356
|
+
?next_token: ::String
|
|
1357
|
+
) -> _ListPortalsResponseSuccess
|
|
1358
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPortalsResponseSuccess
|
|
1359
|
+
|
|
1360
|
+
interface _ListProductPagesResponseSuccess
|
|
1361
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProductPagesResponse]
|
|
1362
|
+
def items: () -> ::Array[Types::ProductPageSummaryNoBody]
|
|
1363
|
+
def next_token: () -> ::String
|
|
1364
|
+
end
|
|
1365
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#list_product_pages-instance_method
|
|
1366
|
+
def list_product_pages: (
|
|
1367
|
+
?max_results: ::String,
|
|
1368
|
+
?next_token: ::String,
|
|
1369
|
+
portal_product_id: ::String,
|
|
1370
|
+
?resource_owner_account_id: ::String
|
|
1371
|
+
) -> _ListProductPagesResponseSuccess
|
|
1372
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProductPagesResponseSuccess
|
|
1373
|
+
|
|
1374
|
+
interface _ListProductRestEndpointPagesResponseSuccess
|
|
1375
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProductRestEndpointPagesResponse]
|
|
1376
|
+
def items: () -> ::Array[Types::ProductRestEndpointPageSummaryNoBody]
|
|
1377
|
+
def next_token: () -> ::String
|
|
1378
|
+
end
|
|
1379
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#list_product_rest_endpoint_pages-instance_method
|
|
1380
|
+
def list_product_rest_endpoint_pages: (
|
|
1381
|
+
?max_results: ::String,
|
|
1382
|
+
?next_token: ::String,
|
|
1383
|
+
portal_product_id: ::String,
|
|
1384
|
+
?resource_owner_account_id: ::String
|
|
1385
|
+
) -> _ListProductRestEndpointPagesResponseSuccess
|
|
1386
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProductRestEndpointPagesResponseSuccess
|
|
1387
|
+
|
|
1388
|
+
interface _ListRoutingRulesResponseSuccess
|
|
1389
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRoutingRulesResponse]
|
|
1390
|
+
def next_token: () -> ::String
|
|
1391
|
+
def routing_rules: () -> ::Array[Types::RoutingRule]
|
|
1392
|
+
end
|
|
1393
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#list_routing_rules-instance_method
|
|
1394
|
+
def list_routing_rules: (
|
|
1395
|
+
domain_name: ::String,
|
|
1396
|
+
?domain_name_id: ::String,
|
|
1397
|
+
?max_results: ::Integer,
|
|
1398
|
+
?next_token: ::String
|
|
1399
|
+
) -> _ListRoutingRulesResponseSuccess
|
|
1400
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRoutingRulesResponseSuccess
|
|
1401
|
+
|
|
1402
|
+
interface _PreviewPortalResponseSuccess
|
|
1403
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PreviewPortalResponse]
|
|
1404
|
+
end
|
|
1405
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#preview_portal-instance_method
|
|
1406
|
+
def preview_portal: (
|
|
1407
|
+
portal_id: ::String
|
|
1408
|
+
) -> _PreviewPortalResponseSuccess
|
|
1409
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PreviewPortalResponseSuccess
|
|
1410
|
+
|
|
1411
|
+
interface _PublishPortalResponseSuccess
|
|
1412
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PublishPortalResponse]
|
|
1413
|
+
end
|
|
1414
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#publish_portal-instance_method
|
|
1415
|
+
def publish_portal: (
|
|
1416
|
+
?description: ::String,
|
|
1417
|
+
portal_id: ::String
|
|
1418
|
+
) -> _PublishPortalResponseSuccess
|
|
1419
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PublishPortalResponseSuccess
|
|
1420
|
+
|
|
1421
|
+
interface _PutPortalProductSharingPolicyResponseSuccess
|
|
1422
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutPortalProductSharingPolicyResponse]
|
|
1423
|
+
end
|
|
1424
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#put_portal_product_sharing_policy-instance_method
|
|
1425
|
+
def put_portal_product_sharing_policy: (
|
|
1426
|
+
policy_document: ::String,
|
|
1427
|
+
portal_product_id: ::String
|
|
1428
|
+
) -> _PutPortalProductSharingPolicyResponseSuccess
|
|
1429
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutPortalProductSharingPolicyResponseSuccess
|
|
1430
|
+
|
|
1097
1431
|
interface _PutRoutingRuleResponseSuccess
|
|
1098
1432
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutRoutingRuleResponse]
|
|
1099
1433
|
def actions: () -> ::Array[Types::RoutingRuleAction]
|
|
@@ -1420,6 +1754,138 @@ module Aws
|
|
|
1420
1754
|
) -> _UpdateModelResponseSuccess
|
|
1421
1755
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateModelResponseSuccess
|
|
1422
1756
|
|
|
1757
|
+
interface _UpdatePortalResponseSuccess
|
|
1758
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePortalResponse]
|
|
1759
|
+
def authorization: () -> Types::Authorization
|
|
1760
|
+
def endpoint_configuration: () -> Types::EndpointConfigurationResponse
|
|
1761
|
+
def included_portal_product_arns: () -> ::Array[::String]
|
|
1762
|
+
def last_modified: () -> ::Time
|
|
1763
|
+
def last_published: () -> ::Time
|
|
1764
|
+
def last_published_description: () -> ::String
|
|
1765
|
+
def portal_arn: () -> ::String
|
|
1766
|
+
def portal_content: () -> Types::PortalContent
|
|
1767
|
+
def portal_id: () -> ::String
|
|
1768
|
+
def preview: () -> Types::Preview
|
|
1769
|
+
def publish_status: () -> ("PUBLISHED" | "PUBLISH_IN_PROGRESS" | "PUBLISH_FAILED" | "DISABLED")
|
|
1770
|
+
def rum_app_monitor_name: () -> ::String
|
|
1771
|
+
def status_exception: () -> Types::StatusException
|
|
1772
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
1773
|
+
end
|
|
1774
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#update_portal-instance_method
|
|
1775
|
+
def update_portal: (
|
|
1776
|
+
?authorization: {
|
|
1777
|
+
cognito_config: {
|
|
1778
|
+
app_client_id: ::String,
|
|
1779
|
+
user_pool_arn: ::String,
|
|
1780
|
+
user_pool_domain: ::String
|
|
1781
|
+
}?,
|
|
1782
|
+
none: {
|
|
1783
|
+
}?
|
|
1784
|
+
},
|
|
1785
|
+
?endpoint_configuration: {
|
|
1786
|
+
acm_managed: {
|
|
1787
|
+
certificate_arn: ::String,
|
|
1788
|
+
domain_name: ::String
|
|
1789
|
+
}?,
|
|
1790
|
+
none: {
|
|
1791
|
+
}?
|
|
1792
|
+
},
|
|
1793
|
+
?included_portal_product_arns: Array[::String],
|
|
1794
|
+
?logo_uri: ::String,
|
|
1795
|
+
?portal_content: {
|
|
1796
|
+
description: ::String?,
|
|
1797
|
+
display_name: ::String,
|
|
1798
|
+
theme: {
|
|
1799
|
+
custom_colors: {
|
|
1800
|
+
accent_color: ::String,
|
|
1801
|
+
background_color: ::String,
|
|
1802
|
+
error_validation_color: ::String,
|
|
1803
|
+
header_color: ::String,
|
|
1804
|
+
navigation_color: ::String,
|
|
1805
|
+
text_color: ::String
|
|
1806
|
+
},
|
|
1807
|
+
logo_last_uploaded: ::Time?
|
|
1808
|
+
}
|
|
1809
|
+
},
|
|
1810
|
+
portal_id: ::String,
|
|
1811
|
+
?rum_app_monitor_name: ::String
|
|
1812
|
+
) -> _UpdatePortalResponseSuccess
|
|
1813
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePortalResponseSuccess
|
|
1814
|
+
|
|
1815
|
+
interface _UpdatePortalProductResponseSuccess
|
|
1816
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePortalProductResponse]
|
|
1817
|
+
def description: () -> ::String
|
|
1818
|
+
def display_name: () -> ::String
|
|
1819
|
+
def display_order: () -> Types::DisplayOrder
|
|
1820
|
+
def last_modified: () -> ::Time
|
|
1821
|
+
def portal_product_arn: () -> ::String
|
|
1822
|
+
def portal_product_id: () -> ::String
|
|
1823
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
1824
|
+
end
|
|
1825
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#update_portal_product-instance_method
|
|
1826
|
+
def update_portal_product: (
|
|
1827
|
+
?description: ::String,
|
|
1828
|
+
?display_name: ::String,
|
|
1829
|
+
?display_order: {
|
|
1830
|
+
contents: Array[
|
|
1831
|
+
{
|
|
1832
|
+
product_rest_endpoint_page_arns: Array[::String],
|
|
1833
|
+
section_name: ::String
|
|
1834
|
+
},
|
|
1835
|
+
]?,
|
|
1836
|
+
overview_page_arn: ::String?,
|
|
1837
|
+
product_page_arns: Array[::String]?
|
|
1838
|
+
},
|
|
1839
|
+
portal_product_id: ::String
|
|
1840
|
+
) -> _UpdatePortalProductResponseSuccess
|
|
1841
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePortalProductResponseSuccess
|
|
1842
|
+
|
|
1843
|
+
interface _UpdateProductPageResponseSuccess
|
|
1844
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProductPageResponse]
|
|
1845
|
+
def display_content: () -> Types::DisplayContent
|
|
1846
|
+
def last_modified: () -> ::Time
|
|
1847
|
+
def product_page_arn: () -> ::String
|
|
1848
|
+
def product_page_id: () -> ::String
|
|
1849
|
+
end
|
|
1850
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#update_product_page-instance_method
|
|
1851
|
+
def update_product_page: (
|
|
1852
|
+
?display_content: {
|
|
1853
|
+
body: ::String,
|
|
1854
|
+
title: ::String
|
|
1855
|
+
},
|
|
1856
|
+
portal_product_id: ::String,
|
|
1857
|
+
product_page_id: ::String
|
|
1858
|
+
) -> _UpdateProductPageResponseSuccess
|
|
1859
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProductPageResponseSuccess
|
|
1860
|
+
|
|
1861
|
+
interface _UpdateProductRestEndpointPageResponseSuccess
|
|
1862
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProductRestEndpointPageResponse]
|
|
1863
|
+
def display_content: () -> Types::EndpointDisplayContentResponse
|
|
1864
|
+
def last_modified: () -> ::Time
|
|
1865
|
+
def product_rest_endpoint_page_arn: () -> ::String
|
|
1866
|
+
def product_rest_endpoint_page_id: () -> ::String
|
|
1867
|
+
def rest_endpoint_identifier: () -> Types::RestEndpointIdentifier
|
|
1868
|
+
def status: () -> ("AVAILABLE" | "IN_PROGRESS" | "FAILED")
|
|
1869
|
+
def status_exception: () -> Types::StatusException
|
|
1870
|
+
def try_it_state: () -> ("ENABLED" | "DISABLED")
|
|
1871
|
+
end
|
|
1872
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#update_product_rest_endpoint_page-instance_method
|
|
1873
|
+
def update_product_rest_endpoint_page: (
|
|
1874
|
+
?display_content: {
|
|
1875
|
+
none: {
|
|
1876
|
+
}?,
|
|
1877
|
+
overrides: {
|
|
1878
|
+
body: ::String?,
|
|
1879
|
+
endpoint: ::String?,
|
|
1880
|
+
operation_name: ::String?
|
|
1881
|
+
}?
|
|
1882
|
+
},
|
|
1883
|
+
portal_product_id: ::String,
|
|
1884
|
+
product_rest_endpoint_page_id: ::String,
|
|
1885
|
+
?try_it_state: ("ENABLED" | "DISABLED")
|
|
1886
|
+
) -> _UpdateProductRestEndpointPageResponseSuccess
|
|
1887
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProductRestEndpointPageResponseSuccess
|
|
1888
|
+
|
|
1423
1889
|
interface _UpdateRouteResponseSuccess
|
|
1424
1890
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRouteResult]
|
|
1425
1891
|
def api_gateway_managed: () -> bool
|