aws-sdk-apprunner 1.17.0 → 1.18.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-apprunner/client.rb +297 -1
- data/lib/aws-sdk-apprunner/client_api.rb +161 -1
- data/lib/aws-sdk-apprunner/endpoints.rb +70 -0
- data/lib/aws-sdk-apprunner/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-apprunner/types.rb +477 -3
- data/lib/aws-sdk-apprunner.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ac672ea3b4ea4ed2862c43543041249bc0ddaa85e4c5ef510ce8689b23ed2e0
|
4
|
+
data.tar.gz: 01bbd007e56cbc7c911c931509237939dcc45571b054966e9eaa0e0a18c4ae77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e62e7c3079d19d5559e8b09fbd53e1ae3d6ef79cb1a939f0fa24a9ac5894a454add459cb7b238d7b90d7b7249d2a45881a863c56399c8b65d5be56bd1c517175
|
7
|
+
data.tar.gz: 84f231c4019d0d80a110855f9fc3a7de0e5539cbc834027950aee297806ac8c5d4c058a5687340dbb72a7eab0c71020fb0ad3241ad2001e08d173f2f8edf340c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.18.0 (2022-10-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for private App Runner services. Services may now be configured to be made private and only accessible from a VPC. The changes include a new VpcIngressConnection resource and several new and modified APIs.
|
8
|
+
|
4
9
|
1.17.0 (2022-10-28)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.18.0
|
@@ -415,6 +415,7 @@ module Aws::AppRunner
|
|
415
415
|
# * {Types::AssociateCustomDomainResponse#dns_target #dns_target} => String
|
416
416
|
# * {Types::AssociateCustomDomainResponse#service_arn #service_arn} => String
|
417
417
|
# * {Types::AssociateCustomDomainResponse#custom_domain #custom_domain} => Types::CustomDomain
|
418
|
+
# * {Types::AssociateCustomDomainResponse#vpc_dns_targets #vpc_dns_targets} => Array<Types::VpcDNSTarget>
|
418
419
|
#
|
419
420
|
# @example Request syntax with placeholder values
|
420
421
|
#
|
@@ -436,6 +437,10 @@ module Aws::AppRunner
|
|
436
437
|
# resp.custom_domain.certificate_validation_records[0].value #=> String
|
437
438
|
# resp.custom_domain.certificate_validation_records[0].status #=> String, one of "PENDING_VALIDATION", "SUCCESS", "FAILED"
|
438
439
|
# resp.custom_domain.status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "DELETING", "DELETE_FAILED", "PENDING_CERTIFICATE_DNS_VALIDATION", "BINDING_CERTIFICATE"
|
440
|
+
# resp.vpc_dns_targets #=> Array
|
441
|
+
# resp.vpc_dns_targets[0].vpc_ingress_connection_arn #=> String
|
442
|
+
# resp.vpc_dns_targets[0].vpc_id #=> String
|
443
|
+
# resp.vpc_dns_targets[0].domain_name #=> String
|
439
444
|
#
|
440
445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/AssociateCustomDomain AWS API Documentation
|
441
446
|
#
|
@@ -827,6 +832,9 @@ module Aws::AppRunner
|
|
827
832
|
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
828
833
|
# vpc_connector_arn: "AppRunnerResourceArn",
|
829
834
|
# },
|
835
|
+
# ingress_configuration: {
|
836
|
+
# is_publicly_accessible: false,
|
837
|
+
# },
|
830
838
|
# },
|
831
839
|
# observability_configuration: {
|
832
840
|
# observability_enabled: false, # required
|
@@ -878,6 +886,7 @@ module Aws::AppRunner
|
|
878
886
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
879
887
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
880
888
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
889
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
881
890
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
882
891
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
883
892
|
# resp.operation_id #=> String
|
@@ -958,6 +967,71 @@ module Aws::AppRunner
|
|
958
967
|
req.send_request(options)
|
959
968
|
end
|
960
969
|
|
970
|
+
# Create an App Runner VPC Ingress Connection resource. App Runner
|
971
|
+
# requires this resource when you want to associate your App Runner
|
972
|
+
# service with an Amazon VPC endpoint.
|
973
|
+
#
|
974
|
+
# @option params [required, String] :service_arn
|
975
|
+
# The Amazon Resource Name (ARN) for this App Runner service that is
|
976
|
+
# used to create the VPC Ingress Connection resource.
|
977
|
+
#
|
978
|
+
# @option params [required, String] :vpc_ingress_connection_name
|
979
|
+
# A name for the VPC Ingress Connection resource. It must be unique
|
980
|
+
# across all the active VPC Ingress Connections in your Amazon Web
|
981
|
+
# Services account in the Amazon Web Services Region.
|
982
|
+
#
|
983
|
+
# @option params [required, Types::IngressVpcConfiguration] :ingress_vpc_configuration
|
984
|
+
# Specifications for the customer’s Amazon VPC and the related Amazon
|
985
|
+
# Web Services PrivateLink VPC endpoint that are used to create the VPC
|
986
|
+
# Ingress Connection resource.
|
987
|
+
#
|
988
|
+
# @option params [Array<Types::Tag>] :tags
|
989
|
+
# An optional list of metadata items that you can associate with the VPC
|
990
|
+
# Ingress Connection resource. A tag is a key-value pair.
|
991
|
+
#
|
992
|
+
# @return [Types::CreateVpcIngressConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
993
|
+
#
|
994
|
+
# * {Types::CreateVpcIngressConnectionResponse#vpc_ingress_connection #vpc_ingress_connection} => Types::VpcIngressConnection
|
995
|
+
#
|
996
|
+
# @example Request syntax with placeholder values
|
997
|
+
#
|
998
|
+
# resp = client.create_vpc_ingress_connection({
|
999
|
+
# service_arn: "AppRunnerResourceArn", # required
|
1000
|
+
# vpc_ingress_connection_name: "VpcIngressConnectionName", # required
|
1001
|
+
# ingress_vpc_configuration: { # required
|
1002
|
+
# vpc_id: "String",
|
1003
|
+
# vpc_endpoint_id: "String",
|
1004
|
+
# },
|
1005
|
+
# tags: [
|
1006
|
+
# {
|
1007
|
+
# key: "TagKey",
|
1008
|
+
# value: "TagValue",
|
1009
|
+
# },
|
1010
|
+
# ],
|
1011
|
+
# })
|
1012
|
+
#
|
1013
|
+
# @example Response structure
|
1014
|
+
#
|
1015
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_arn #=> String
|
1016
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_name #=> String
|
1017
|
+
# resp.vpc_ingress_connection.service_arn #=> String
|
1018
|
+
# resp.vpc_ingress_connection.status #=> String, one of "AVAILABLE", "PENDING_CREATION", "PENDING_UPDATE", "PENDING_DELETION", "FAILED_CREATION", "FAILED_UPDATE", "FAILED_DELETION", "DELETED"
|
1019
|
+
# resp.vpc_ingress_connection.account_id #=> String
|
1020
|
+
# resp.vpc_ingress_connection.domain_name #=> String
|
1021
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_id #=> String
|
1022
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_endpoint_id #=> String
|
1023
|
+
# resp.vpc_ingress_connection.created_at #=> Time
|
1024
|
+
# resp.vpc_ingress_connection.deleted_at #=> Time
|
1025
|
+
#
|
1026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcIngressConnection AWS API Documentation
|
1027
|
+
#
|
1028
|
+
# @overload create_vpc_ingress_connection(params = {})
|
1029
|
+
# @param [Hash] params ({})
|
1030
|
+
def create_vpc_ingress_connection(params = {}, options = {})
|
1031
|
+
req = build_request(:create_vpc_ingress_connection, params)
|
1032
|
+
req.send_request(options)
|
1033
|
+
end
|
1034
|
+
|
961
1035
|
# Delete an App Runner automatic scaling configuration resource. You can
|
962
1036
|
# delete a specific revision or the latest active revision. You can't
|
963
1037
|
# delete a configuration that's used by one or more App Runner
|
@@ -1087,6 +1161,11 @@ module Aws::AppRunner
|
|
1087
1161
|
# the returned `OperationId` and the ListOperations call to track the
|
1088
1162
|
# operation's progress.
|
1089
1163
|
#
|
1164
|
+
# <note markdown="1"> Make sure that you don't have any active VPCIngressConnections
|
1165
|
+
# associated with the service you want to delete.
|
1166
|
+
#
|
1167
|
+
# </note>
|
1168
|
+
#
|
1090
1169
|
# @option params [required, String] :service_arn
|
1091
1170
|
# The Amazon Resource Name (ARN) of the App Runner service that you want
|
1092
1171
|
# to delete.
|
@@ -1146,6 +1225,7 @@ module Aws::AppRunner
|
|
1146
1225
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
1147
1226
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
1148
1227
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
1228
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
1149
1229
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
1150
1230
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
1151
1231
|
# resp.operation_id #=> String
|
@@ -1200,6 +1280,54 @@ module Aws::AppRunner
|
|
1200
1280
|
req.send_request(options)
|
1201
1281
|
end
|
1202
1282
|
|
1283
|
+
# Delete an App Runner VPC Ingress Connection resource that's
|
1284
|
+
# associated with an App Runner service. The VPC Ingress Connection must
|
1285
|
+
# be in one of the following states to be deleted:
|
1286
|
+
#
|
1287
|
+
# * `AVAILABLE`
|
1288
|
+
#
|
1289
|
+
# * `FAILED_CREATION`
|
1290
|
+
#
|
1291
|
+
# * `FAILED_UPDATE`
|
1292
|
+
#
|
1293
|
+
# * `FAILED_DELETION`
|
1294
|
+
#
|
1295
|
+
# @option params [required, String] :vpc_ingress_connection_arn
|
1296
|
+
# The Amazon Resource Name (ARN) of the App Runner VPC Ingress
|
1297
|
+
# Connection that you want to delete.
|
1298
|
+
#
|
1299
|
+
# @return [Types::DeleteVpcIngressConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1300
|
+
#
|
1301
|
+
# * {Types::DeleteVpcIngressConnectionResponse#vpc_ingress_connection #vpc_ingress_connection} => Types::VpcIngressConnection
|
1302
|
+
#
|
1303
|
+
# @example Request syntax with placeholder values
|
1304
|
+
#
|
1305
|
+
# resp = client.delete_vpc_ingress_connection({
|
1306
|
+
# vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
|
1307
|
+
# })
|
1308
|
+
#
|
1309
|
+
# @example Response structure
|
1310
|
+
#
|
1311
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_arn #=> String
|
1312
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_name #=> String
|
1313
|
+
# resp.vpc_ingress_connection.service_arn #=> String
|
1314
|
+
# resp.vpc_ingress_connection.status #=> String, one of "AVAILABLE", "PENDING_CREATION", "PENDING_UPDATE", "PENDING_DELETION", "FAILED_CREATION", "FAILED_UPDATE", "FAILED_DELETION", "DELETED"
|
1315
|
+
# resp.vpc_ingress_connection.account_id #=> String
|
1316
|
+
# resp.vpc_ingress_connection.domain_name #=> String
|
1317
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_id #=> String
|
1318
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_endpoint_id #=> String
|
1319
|
+
# resp.vpc_ingress_connection.created_at #=> Time
|
1320
|
+
# resp.vpc_ingress_connection.deleted_at #=> Time
|
1321
|
+
#
|
1322
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcIngressConnection AWS API Documentation
|
1323
|
+
#
|
1324
|
+
# @overload delete_vpc_ingress_connection(params = {})
|
1325
|
+
# @param [Hash] params ({})
|
1326
|
+
def delete_vpc_ingress_connection(params = {}, options = {})
|
1327
|
+
req = build_request(:delete_vpc_ingress_connection, params)
|
1328
|
+
req.send_request(options)
|
1329
|
+
end
|
1330
|
+
|
1203
1331
|
# Return a full description of an App Runner automatic scaling
|
1204
1332
|
# configuration resource.
|
1205
1333
|
#
|
@@ -1271,6 +1399,7 @@ module Aws::AppRunner
|
|
1271
1399
|
# * {Types::DescribeCustomDomainsResponse#dns_target #dns_target} => String
|
1272
1400
|
# * {Types::DescribeCustomDomainsResponse#service_arn #service_arn} => String
|
1273
1401
|
# * {Types::DescribeCustomDomainsResponse#custom_domains #custom_domains} => Array<Types::CustomDomain>
|
1402
|
+
# * {Types::DescribeCustomDomainsResponse#vpc_dns_targets #vpc_dns_targets} => Array<Types::VpcDNSTarget>
|
1274
1403
|
# * {Types::DescribeCustomDomainsResponse#next_token #next_token} => String
|
1275
1404
|
#
|
1276
1405
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
@@ -1296,6 +1425,10 @@ module Aws::AppRunner
|
|
1296
1425
|
# resp.custom_domains[0].certificate_validation_records[0].value #=> String
|
1297
1426
|
# resp.custom_domains[0].certificate_validation_records[0].status #=> String, one of "PENDING_VALIDATION", "SUCCESS", "FAILED"
|
1298
1427
|
# resp.custom_domains[0].status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "DELETING", "DELETE_FAILED", "PENDING_CERTIFICATE_DNS_VALIDATION", "BINDING_CERTIFICATE"
|
1428
|
+
# resp.vpc_dns_targets #=> Array
|
1429
|
+
# resp.vpc_dns_targets[0].vpc_ingress_connection_arn #=> String
|
1430
|
+
# resp.vpc_dns_targets[0].vpc_id #=> String
|
1431
|
+
# resp.vpc_dns_targets[0].domain_name #=> String
|
1299
1432
|
# resp.next_token #=> String
|
1300
1433
|
#
|
1301
1434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeCustomDomains AWS API Documentation
|
@@ -1408,6 +1541,7 @@ module Aws::AppRunner
|
|
1408
1541
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
1409
1542
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
1410
1543
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
1544
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
1411
1545
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
1412
1546
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
1413
1547
|
#
|
@@ -1460,6 +1594,45 @@ module Aws::AppRunner
|
|
1460
1594
|
req.send_request(options)
|
1461
1595
|
end
|
1462
1596
|
|
1597
|
+
# Return a full description of an App Runner VPC Ingress Connection
|
1598
|
+
# resource.
|
1599
|
+
#
|
1600
|
+
# @option params [required, String] :vpc_ingress_connection_arn
|
1601
|
+
# The Amazon Resource Name (ARN) of the App Runner VPC Ingress
|
1602
|
+
# Connection that you want a description for.
|
1603
|
+
#
|
1604
|
+
# @return [Types::DescribeVpcIngressConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1605
|
+
#
|
1606
|
+
# * {Types::DescribeVpcIngressConnectionResponse#vpc_ingress_connection #vpc_ingress_connection} => Types::VpcIngressConnection
|
1607
|
+
#
|
1608
|
+
# @example Request syntax with placeholder values
|
1609
|
+
#
|
1610
|
+
# resp = client.describe_vpc_ingress_connection({
|
1611
|
+
# vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
|
1612
|
+
# })
|
1613
|
+
#
|
1614
|
+
# @example Response structure
|
1615
|
+
#
|
1616
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_arn #=> String
|
1617
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_name #=> String
|
1618
|
+
# resp.vpc_ingress_connection.service_arn #=> String
|
1619
|
+
# resp.vpc_ingress_connection.status #=> String, one of "AVAILABLE", "PENDING_CREATION", "PENDING_UPDATE", "PENDING_DELETION", "FAILED_CREATION", "FAILED_UPDATE", "FAILED_DELETION", "DELETED"
|
1620
|
+
# resp.vpc_ingress_connection.account_id #=> String
|
1621
|
+
# resp.vpc_ingress_connection.domain_name #=> String
|
1622
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_id #=> String
|
1623
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_endpoint_id #=> String
|
1624
|
+
# resp.vpc_ingress_connection.created_at #=> Time
|
1625
|
+
# resp.vpc_ingress_connection.deleted_at #=> Time
|
1626
|
+
#
|
1627
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcIngressConnection AWS API Documentation
|
1628
|
+
#
|
1629
|
+
# @overload describe_vpc_ingress_connection(params = {})
|
1630
|
+
# @param [Hash] params ({})
|
1631
|
+
def describe_vpc_ingress_connection(params = {}, options = {})
|
1632
|
+
req = build_request(:describe_vpc_ingress_connection, params)
|
1633
|
+
req.send_request(options)
|
1634
|
+
end
|
1635
|
+
|
1463
1636
|
# Disassociate a custom domain name from an App Runner service.
|
1464
1637
|
#
|
1465
1638
|
# Certificates tracking domain validity are associated with a custom
|
@@ -1485,6 +1658,7 @@ module Aws::AppRunner
|
|
1485
1658
|
# * {Types::DisassociateCustomDomainResponse#dns_target #dns_target} => String
|
1486
1659
|
# * {Types::DisassociateCustomDomainResponse#service_arn #service_arn} => String
|
1487
1660
|
# * {Types::DisassociateCustomDomainResponse#custom_domain #custom_domain} => Types::CustomDomain
|
1661
|
+
# * {Types::DisassociateCustomDomainResponse#vpc_dns_targets #vpc_dns_targets} => Array<Types::VpcDNSTarget>
|
1488
1662
|
#
|
1489
1663
|
# @example Request syntax with placeholder values
|
1490
1664
|
#
|
@@ -1505,6 +1679,10 @@ module Aws::AppRunner
|
|
1505
1679
|
# resp.custom_domain.certificate_validation_records[0].value #=> String
|
1506
1680
|
# resp.custom_domain.certificate_validation_records[0].status #=> String, one of "PENDING_VALIDATION", "SUCCESS", "FAILED"
|
1507
1681
|
# resp.custom_domain.status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "DELETING", "DELETE_FAILED", "PENDING_CERTIFICATE_DNS_VALIDATION", "BINDING_CERTIFICATE"
|
1682
|
+
# resp.vpc_dns_targets #=> Array
|
1683
|
+
# resp.vpc_dns_targets[0].vpc_ingress_connection_arn #=> String
|
1684
|
+
# resp.vpc_dns_targets[0].vpc_id #=> String
|
1685
|
+
# resp.vpc_dns_targets[0].domain_name #=> String
|
1508
1686
|
#
|
1509
1687
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DisassociateCustomDomain AWS API Documentation
|
1510
1688
|
#
|
@@ -1925,6 +2103,63 @@ module Aws::AppRunner
|
|
1925
2103
|
req.send_request(options)
|
1926
2104
|
end
|
1927
2105
|
|
2106
|
+
# Return a list of App Runner VPC Ingress Connections in your Amazon Web
|
2107
|
+
# Services account.
|
2108
|
+
#
|
2109
|
+
# @option params [Types::ListVpcIngressConnectionsFilter] :filter
|
2110
|
+
# The VPC Ingress Connections to be listed based on either the Service
|
2111
|
+
# Arn or Vpc Endpoint Id, or both.
|
2112
|
+
#
|
2113
|
+
# @option params [Integer] :max_results
|
2114
|
+
# The maximum number of results to include in each response (result
|
2115
|
+
# page). It's used for a paginated request.
|
2116
|
+
#
|
2117
|
+
# If you don't specify `MaxResults`, the request retrieves all
|
2118
|
+
# available results in a single response.
|
2119
|
+
#
|
2120
|
+
# @option params [String] :next_token
|
2121
|
+
# A token from a previous result page. It's used for a paginated
|
2122
|
+
# request. The request retrieves the next result page. All other
|
2123
|
+
# parameter values must be identical to the ones that are specified in
|
2124
|
+
# the initial request.
|
2125
|
+
#
|
2126
|
+
# If you don't specify `NextToken`, the request retrieves the first
|
2127
|
+
# result page.
|
2128
|
+
#
|
2129
|
+
# @return [Types::ListVpcIngressConnectionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2130
|
+
#
|
2131
|
+
# * {Types::ListVpcIngressConnectionsResponse#vpc_ingress_connection_summary_list #vpc_ingress_connection_summary_list} => Array<Types::VpcIngressConnectionSummary>
|
2132
|
+
# * {Types::ListVpcIngressConnectionsResponse#next_token #next_token} => String
|
2133
|
+
#
|
2134
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2135
|
+
#
|
2136
|
+
# @example Request syntax with placeholder values
|
2137
|
+
#
|
2138
|
+
# resp = client.list_vpc_ingress_connections({
|
2139
|
+
# filter: {
|
2140
|
+
# service_arn: "AppRunnerResourceArn",
|
2141
|
+
# vpc_endpoint_id: "String",
|
2142
|
+
# },
|
2143
|
+
# max_results: 1,
|
2144
|
+
# next_token: "NextToken",
|
2145
|
+
# })
|
2146
|
+
#
|
2147
|
+
# @example Response structure
|
2148
|
+
#
|
2149
|
+
# resp.vpc_ingress_connection_summary_list #=> Array
|
2150
|
+
# resp.vpc_ingress_connection_summary_list[0].vpc_ingress_connection_arn #=> String
|
2151
|
+
# resp.vpc_ingress_connection_summary_list[0].service_arn #=> String
|
2152
|
+
# resp.next_token #=> String
|
2153
|
+
#
|
2154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnections AWS API Documentation
|
2155
|
+
#
|
2156
|
+
# @overload list_vpc_ingress_connections(params = {})
|
2157
|
+
# @param [Hash] params ({})
|
2158
|
+
def list_vpc_ingress_connections(params = {}, options = {})
|
2159
|
+
req = build_request(:list_vpc_ingress_connections, params)
|
2160
|
+
req.send_request(options)
|
2161
|
+
end
|
2162
|
+
|
1928
2163
|
# Pause an active App Runner service. App Runner reduces compute
|
1929
2164
|
# capacity for the service to zero and loses state (for example,
|
1930
2165
|
# ephemeral storage is removed).
|
@@ -1992,6 +2227,7 @@ module Aws::AppRunner
|
|
1992
2227
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
1993
2228
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
1994
2229
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
2230
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
1995
2231
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
1996
2232
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
1997
2233
|
# resp.operation_id #=> String
|
@@ -2071,6 +2307,7 @@ module Aws::AppRunner
|
|
2071
2307
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
2072
2308
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
2073
2309
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
2310
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
2074
2311
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
2075
2312
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
2076
2313
|
# resp.operation_id #=> String
|
@@ -2306,6 +2543,9 @@ module Aws::AppRunner
|
|
2306
2543
|
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
2307
2544
|
# vpc_connector_arn: "AppRunnerResourceArn",
|
2308
2545
|
# },
|
2546
|
+
# ingress_configuration: {
|
2547
|
+
# is_publicly_accessible: false,
|
2548
|
+
# },
|
2309
2549
|
# },
|
2310
2550
|
# observability_configuration: {
|
2311
2551
|
# observability_enabled: false, # required
|
@@ -2357,6 +2597,7 @@ module Aws::AppRunner
|
|
2357
2597
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
2358
2598
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
2359
2599
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
2600
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
2360
2601
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
2361
2602
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
2362
2603
|
# resp.operation_id #=> String
|
@@ -2370,6 +2611,61 @@ module Aws::AppRunner
|
|
2370
2611
|
req.send_request(options)
|
2371
2612
|
end
|
2372
2613
|
|
2614
|
+
# Update an existing App Runner VPC Ingress Connection resource. The VPC
|
2615
|
+
# Ingress Connection must be in one of the following states to be
|
2616
|
+
# updated:
|
2617
|
+
#
|
2618
|
+
# * AVAILABLE
|
2619
|
+
#
|
2620
|
+
# * FAILED\_CREATION
|
2621
|
+
#
|
2622
|
+
# * FAILED\_UPDATE
|
2623
|
+
#
|
2624
|
+
# @option params [required, String] :vpc_ingress_connection_arn
|
2625
|
+
# The Amazon Resource Name (Arn) for the App Runner VPC Ingress
|
2626
|
+
# Connection resource that you want to update.
|
2627
|
+
#
|
2628
|
+
# @option params [required, Types::IngressVpcConfiguration] :ingress_vpc_configuration
|
2629
|
+
# Specifications for the customer’s Amazon VPC and the related Amazon
|
2630
|
+
# Web Services PrivateLink VPC endpoint that are used to update the VPC
|
2631
|
+
# Ingress Connection resource.
|
2632
|
+
#
|
2633
|
+
# @return [Types::UpdateVpcIngressConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2634
|
+
#
|
2635
|
+
# * {Types::UpdateVpcIngressConnectionResponse#vpc_ingress_connection #vpc_ingress_connection} => Types::VpcIngressConnection
|
2636
|
+
#
|
2637
|
+
# @example Request syntax with placeholder values
|
2638
|
+
#
|
2639
|
+
# resp = client.update_vpc_ingress_connection({
|
2640
|
+
# vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
|
2641
|
+
# ingress_vpc_configuration: { # required
|
2642
|
+
# vpc_id: "String",
|
2643
|
+
# vpc_endpoint_id: "String",
|
2644
|
+
# },
|
2645
|
+
# })
|
2646
|
+
#
|
2647
|
+
# @example Response structure
|
2648
|
+
#
|
2649
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_arn #=> String
|
2650
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_name #=> String
|
2651
|
+
# resp.vpc_ingress_connection.service_arn #=> String
|
2652
|
+
# resp.vpc_ingress_connection.status #=> String, one of "AVAILABLE", "PENDING_CREATION", "PENDING_UPDATE", "PENDING_DELETION", "FAILED_CREATION", "FAILED_UPDATE", "FAILED_DELETION", "DELETED"
|
2653
|
+
# resp.vpc_ingress_connection.account_id #=> String
|
2654
|
+
# resp.vpc_ingress_connection.domain_name #=> String
|
2655
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_id #=> String
|
2656
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_endpoint_id #=> String
|
2657
|
+
# resp.vpc_ingress_connection.created_at #=> Time
|
2658
|
+
# resp.vpc_ingress_connection.deleted_at #=> Time
|
2659
|
+
#
|
2660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateVpcIngressConnection AWS API Documentation
|
2661
|
+
#
|
2662
|
+
# @overload update_vpc_ingress_connection(params = {})
|
2663
|
+
# @param [Hash] params ({})
|
2664
|
+
def update_vpc_ingress_connection(params = {}, options = {})
|
2665
|
+
req = build_request(:update_vpc_ingress_connection, params)
|
2666
|
+
req.send_request(options)
|
2667
|
+
end
|
2668
|
+
|
2373
2669
|
# @!endgroup
|
2374
2670
|
|
2375
2671
|
# @param params ({})
|
@@ -2383,7 +2679,7 @@ module Aws::AppRunner
|
|
2383
2679
|
params: params,
|
2384
2680
|
config: config)
|
2385
2681
|
context[:gem_name] = 'aws-sdk-apprunner'
|
2386
|
-
context[:gem_version] = '1.
|
2682
|
+
context[:gem_version] = '1.18.0'
|
2387
2683
|
Seahorse::Client::Request.new(handlers, context)
|
2388
2684
|
end
|
2389
2685
|
|