aws-sdk-apprunner 1.17.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apprunner/client.rb +333 -1
- data/lib/aws-sdk-apprunner/client_api.rb +169 -1
- data/lib/aws-sdk-apprunner/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-apprunner/endpoint_provider.rb +75 -76
- 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 +430 -607
- 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: 245feb0c7aee7a171d0e30e80d9168532ab57204b3cf605ddf5f46f2c201b7d9
|
4
|
+
data.tar.gz: 9d8217e904e4b5362178ee1f67ed5368ed3041bc1ecae45a4f36fb451c1fa208
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0e54b0296d420dd87457da81f1db25a0077a8096a86507a3d3c4f6e7eb01c3bc4c6eb98bc6db7af4a870b40e29e6672dbd1ae4c336f81d4edc5c1d698496e36
|
7
|
+
data.tar.gz: 8bf75be3bb01a15cea895dc112bcfe06378f1300be29daa7262307654b9347ff96d8b7e22cb95e95e32e3bd377b65712b07650da886bb2c41985ff25263fc47d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.19.0 (2023-01-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support of securely referencing secrets and configuration data that are stored in Secrets Manager and SSM Parameter Store by adding them as environment secrets in your App Runner service.
|
8
|
+
|
9
|
+
1.18.0 (2022-10-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
4
14
|
1.17.0 (2022-10-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.19.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
|
#
|
@@ -779,6 +784,9 @@ module Aws::AppRunner
|
|
779
784
|
# runtime_environment_variables: {
|
780
785
|
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
781
786
|
# },
|
787
|
+
# runtime_environment_secrets: {
|
788
|
+
# "RuntimeEnvironmentSecretsName" => "RuntimeEnvironmentSecretsValue",
|
789
|
+
# },
|
782
790
|
# },
|
783
791
|
# },
|
784
792
|
# },
|
@@ -790,6 +798,9 @@ module Aws::AppRunner
|
|
790
798
|
# },
|
791
799
|
# start_command: "StartCommand",
|
792
800
|
# port: "String",
|
801
|
+
# runtime_environment_secrets: {
|
802
|
+
# "RuntimeEnvironmentSecretsName" => "RuntimeEnvironmentSecretsValue",
|
803
|
+
# },
|
793
804
|
# },
|
794
805
|
# image_repository_type: "ECR", # required, accepts ECR, ECR_PUBLIC
|
795
806
|
# },
|
@@ -827,6 +838,9 @@ module Aws::AppRunner
|
|
827
838
|
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
828
839
|
# vpc_connector_arn: "AppRunnerResourceArn",
|
829
840
|
# },
|
841
|
+
# ingress_configuration: {
|
842
|
+
# is_publicly_accessible: false,
|
843
|
+
# },
|
830
844
|
# },
|
831
845
|
# observability_configuration: {
|
832
846
|
# observability_enabled: false, # required
|
@@ -854,11 +868,15 @@ module Aws::AppRunner
|
|
854
868
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
|
855
869
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables #=> Hash
|
856
870
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
871
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets #=> Hash
|
872
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
857
873
|
# resp.service.source_configuration.image_repository.image_identifier #=> String
|
858
874
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables #=> Hash
|
859
875
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
860
876
|
# resp.service.source_configuration.image_repository.image_configuration.start_command #=> String
|
861
877
|
# resp.service.source_configuration.image_repository.image_configuration.port #=> String
|
878
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets #=> Hash
|
879
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
862
880
|
# resp.service.source_configuration.image_repository.image_repository_type #=> String, one of "ECR", "ECR_PUBLIC"
|
863
881
|
# resp.service.source_configuration.auto_deployments_enabled #=> Boolean
|
864
882
|
# resp.service.source_configuration.authentication_configuration.connection_arn #=> String
|
@@ -878,6 +896,7 @@ module Aws::AppRunner
|
|
878
896
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
879
897
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
880
898
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
899
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
881
900
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
882
901
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
883
902
|
# resp.operation_id #=> String
|
@@ -958,6 +977,71 @@ module Aws::AppRunner
|
|
958
977
|
req.send_request(options)
|
959
978
|
end
|
960
979
|
|
980
|
+
# Create an App Runner VPC Ingress Connection resource. App Runner
|
981
|
+
# requires this resource when you want to associate your App Runner
|
982
|
+
# service with an Amazon VPC endpoint.
|
983
|
+
#
|
984
|
+
# @option params [required, String] :service_arn
|
985
|
+
# The Amazon Resource Name (ARN) for this App Runner service that is
|
986
|
+
# used to create the VPC Ingress Connection resource.
|
987
|
+
#
|
988
|
+
# @option params [required, String] :vpc_ingress_connection_name
|
989
|
+
# A name for the VPC Ingress Connection resource. It must be unique
|
990
|
+
# across all the active VPC Ingress Connections in your Amazon Web
|
991
|
+
# Services account in the Amazon Web Services Region.
|
992
|
+
#
|
993
|
+
# @option params [required, Types::IngressVpcConfiguration] :ingress_vpc_configuration
|
994
|
+
# Specifications for the customer’s Amazon VPC and the related Amazon
|
995
|
+
# Web Services PrivateLink VPC endpoint that are used to create the VPC
|
996
|
+
# Ingress Connection resource.
|
997
|
+
#
|
998
|
+
# @option params [Array<Types::Tag>] :tags
|
999
|
+
# An optional list of metadata items that you can associate with the VPC
|
1000
|
+
# Ingress Connection resource. A tag is a key-value pair.
|
1001
|
+
#
|
1002
|
+
# @return [Types::CreateVpcIngressConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1003
|
+
#
|
1004
|
+
# * {Types::CreateVpcIngressConnectionResponse#vpc_ingress_connection #vpc_ingress_connection} => Types::VpcIngressConnection
|
1005
|
+
#
|
1006
|
+
# @example Request syntax with placeholder values
|
1007
|
+
#
|
1008
|
+
# resp = client.create_vpc_ingress_connection({
|
1009
|
+
# service_arn: "AppRunnerResourceArn", # required
|
1010
|
+
# vpc_ingress_connection_name: "VpcIngressConnectionName", # required
|
1011
|
+
# ingress_vpc_configuration: { # required
|
1012
|
+
# vpc_id: "String",
|
1013
|
+
# vpc_endpoint_id: "String",
|
1014
|
+
# },
|
1015
|
+
# tags: [
|
1016
|
+
# {
|
1017
|
+
# key: "TagKey",
|
1018
|
+
# value: "TagValue",
|
1019
|
+
# },
|
1020
|
+
# ],
|
1021
|
+
# })
|
1022
|
+
#
|
1023
|
+
# @example Response structure
|
1024
|
+
#
|
1025
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_arn #=> String
|
1026
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_name #=> String
|
1027
|
+
# resp.vpc_ingress_connection.service_arn #=> String
|
1028
|
+
# resp.vpc_ingress_connection.status #=> String, one of "AVAILABLE", "PENDING_CREATION", "PENDING_UPDATE", "PENDING_DELETION", "FAILED_CREATION", "FAILED_UPDATE", "FAILED_DELETION", "DELETED"
|
1029
|
+
# resp.vpc_ingress_connection.account_id #=> String
|
1030
|
+
# resp.vpc_ingress_connection.domain_name #=> String
|
1031
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_id #=> String
|
1032
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_endpoint_id #=> String
|
1033
|
+
# resp.vpc_ingress_connection.created_at #=> Time
|
1034
|
+
# resp.vpc_ingress_connection.deleted_at #=> Time
|
1035
|
+
#
|
1036
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CreateVpcIngressConnection AWS API Documentation
|
1037
|
+
#
|
1038
|
+
# @overload create_vpc_ingress_connection(params = {})
|
1039
|
+
# @param [Hash] params ({})
|
1040
|
+
def create_vpc_ingress_connection(params = {}, options = {})
|
1041
|
+
req = build_request(:create_vpc_ingress_connection, params)
|
1042
|
+
req.send_request(options)
|
1043
|
+
end
|
1044
|
+
|
961
1045
|
# Delete an App Runner automatic scaling configuration resource. You can
|
962
1046
|
# delete a specific revision or the latest active revision. You can't
|
963
1047
|
# delete a configuration that's used by one or more App Runner
|
@@ -1087,6 +1171,11 @@ module Aws::AppRunner
|
|
1087
1171
|
# the returned `OperationId` and the ListOperations call to track the
|
1088
1172
|
# operation's progress.
|
1089
1173
|
#
|
1174
|
+
# <note markdown="1"> Make sure that you don't have any active VPCIngressConnections
|
1175
|
+
# associated with the service you want to delete.
|
1176
|
+
#
|
1177
|
+
# </note>
|
1178
|
+
#
|
1090
1179
|
# @option params [required, String] :service_arn
|
1091
1180
|
# The Amazon Resource Name (ARN) of the App Runner service that you want
|
1092
1181
|
# to delete.
|
@@ -1122,11 +1211,15 @@ module Aws::AppRunner
|
|
1122
1211
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
|
1123
1212
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables #=> Hash
|
1124
1213
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
1214
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets #=> Hash
|
1215
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
1125
1216
|
# resp.service.source_configuration.image_repository.image_identifier #=> String
|
1126
1217
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables #=> Hash
|
1127
1218
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
1128
1219
|
# resp.service.source_configuration.image_repository.image_configuration.start_command #=> String
|
1129
1220
|
# resp.service.source_configuration.image_repository.image_configuration.port #=> String
|
1221
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets #=> Hash
|
1222
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
1130
1223
|
# resp.service.source_configuration.image_repository.image_repository_type #=> String, one of "ECR", "ECR_PUBLIC"
|
1131
1224
|
# resp.service.source_configuration.auto_deployments_enabled #=> Boolean
|
1132
1225
|
# resp.service.source_configuration.authentication_configuration.connection_arn #=> String
|
@@ -1146,6 +1239,7 @@ module Aws::AppRunner
|
|
1146
1239
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
1147
1240
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
1148
1241
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
1242
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
1149
1243
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
1150
1244
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
1151
1245
|
# resp.operation_id #=> String
|
@@ -1200,6 +1294,54 @@ module Aws::AppRunner
|
|
1200
1294
|
req.send_request(options)
|
1201
1295
|
end
|
1202
1296
|
|
1297
|
+
# Delete an App Runner VPC Ingress Connection resource that's
|
1298
|
+
# associated with an App Runner service. The VPC Ingress Connection must
|
1299
|
+
# be in one of the following states to be deleted:
|
1300
|
+
#
|
1301
|
+
# * `AVAILABLE`
|
1302
|
+
#
|
1303
|
+
# * `FAILED_CREATION`
|
1304
|
+
#
|
1305
|
+
# * `FAILED_UPDATE`
|
1306
|
+
#
|
1307
|
+
# * `FAILED_DELETION`
|
1308
|
+
#
|
1309
|
+
# @option params [required, String] :vpc_ingress_connection_arn
|
1310
|
+
# The Amazon Resource Name (ARN) of the App Runner VPC Ingress
|
1311
|
+
# Connection that you want to delete.
|
1312
|
+
#
|
1313
|
+
# @return [Types::DeleteVpcIngressConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1314
|
+
#
|
1315
|
+
# * {Types::DeleteVpcIngressConnectionResponse#vpc_ingress_connection #vpc_ingress_connection} => Types::VpcIngressConnection
|
1316
|
+
#
|
1317
|
+
# @example Request syntax with placeholder values
|
1318
|
+
#
|
1319
|
+
# resp = client.delete_vpc_ingress_connection({
|
1320
|
+
# vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
|
1321
|
+
# })
|
1322
|
+
#
|
1323
|
+
# @example Response structure
|
1324
|
+
#
|
1325
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_arn #=> String
|
1326
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_name #=> String
|
1327
|
+
# resp.vpc_ingress_connection.service_arn #=> String
|
1328
|
+
# resp.vpc_ingress_connection.status #=> String, one of "AVAILABLE", "PENDING_CREATION", "PENDING_UPDATE", "PENDING_DELETION", "FAILED_CREATION", "FAILED_UPDATE", "FAILED_DELETION", "DELETED"
|
1329
|
+
# resp.vpc_ingress_connection.account_id #=> String
|
1330
|
+
# resp.vpc_ingress_connection.domain_name #=> String
|
1331
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_id #=> String
|
1332
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_endpoint_id #=> String
|
1333
|
+
# resp.vpc_ingress_connection.created_at #=> Time
|
1334
|
+
# resp.vpc_ingress_connection.deleted_at #=> Time
|
1335
|
+
#
|
1336
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DeleteVpcIngressConnection AWS API Documentation
|
1337
|
+
#
|
1338
|
+
# @overload delete_vpc_ingress_connection(params = {})
|
1339
|
+
# @param [Hash] params ({})
|
1340
|
+
def delete_vpc_ingress_connection(params = {}, options = {})
|
1341
|
+
req = build_request(:delete_vpc_ingress_connection, params)
|
1342
|
+
req.send_request(options)
|
1343
|
+
end
|
1344
|
+
|
1203
1345
|
# Return a full description of an App Runner automatic scaling
|
1204
1346
|
# configuration resource.
|
1205
1347
|
#
|
@@ -1271,6 +1413,7 @@ module Aws::AppRunner
|
|
1271
1413
|
# * {Types::DescribeCustomDomainsResponse#dns_target #dns_target} => String
|
1272
1414
|
# * {Types::DescribeCustomDomainsResponse#service_arn #service_arn} => String
|
1273
1415
|
# * {Types::DescribeCustomDomainsResponse#custom_domains #custom_domains} => Array<Types::CustomDomain>
|
1416
|
+
# * {Types::DescribeCustomDomainsResponse#vpc_dns_targets #vpc_dns_targets} => Array<Types::VpcDNSTarget>
|
1274
1417
|
# * {Types::DescribeCustomDomainsResponse#next_token #next_token} => String
|
1275
1418
|
#
|
1276
1419
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
@@ -1296,6 +1439,10 @@ module Aws::AppRunner
|
|
1296
1439
|
# resp.custom_domains[0].certificate_validation_records[0].value #=> String
|
1297
1440
|
# resp.custom_domains[0].certificate_validation_records[0].status #=> String, one of "PENDING_VALIDATION", "SUCCESS", "FAILED"
|
1298
1441
|
# resp.custom_domains[0].status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "DELETING", "DELETE_FAILED", "PENDING_CERTIFICATE_DNS_VALIDATION", "BINDING_CERTIFICATE"
|
1442
|
+
# resp.vpc_dns_targets #=> Array
|
1443
|
+
# resp.vpc_dns_targets[0].vpc_ingress_connection_arn #=> String
|
1444
|
+
# resp.vpc_dns_targets[0].vpc_id #=> String
|
1445
|
+
# resp.vpc_dns_targets[0].domain_name #=> String
|
1299
1446
|
# resp.next_token #=> String
|
1300
1447
|
#
|
1301
1448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeCustomDomains AWS API Documentation
|
@@ -1384,11 +1531,15 @@ module Aws::AppRunner
|
|
1384
1531
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
|
1385
1532
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables #=> Hash
|
1386
1533
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
1534
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets #=> Hash
|
1535
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
1387
1536
|
# resp.service.source_configuration.image_repository.image_identifier #=> String
|
1388
1537
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables #=> Hash
|
1389
1538
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
1390
1539
|
# resp.service.source_configuration.image_repository.image_configuration.start_command #=> String
|
1391
1540
|
# resp.service.source_configuration.image_repository.image_configuration.port #=> String
|
1541
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets #=> Hash
|
1542
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
1392
1543
|
# resp.service.source_configuration.image_repository.image_repository_type #=> String, one of "ECR", "ECR_PUBLIC"
|
1393
1544
|
# resp.service.source_configuration.auto_deployments_enabled #=> Boolean
|
1394
1545
|
# resp.service.source_configuration.authentication_configuration.connection_arn #=> String
|
@@ -1408,6 +1559,7 @@ module Aws::AppRunner
|
|
1408
1559
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
1409
1560
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
1410
1561
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
1562
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
1411
1563
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
1412
1564
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
1413
1565
|
#
|
@@ -1460,6 +1612,45 @@ module Aws::AppRunner
|
|
1460
1612
|
req.send_request(options)
|
1461
1613
|
end
|
1462
1614
|
|
1615
|
+
# Return a full description of an App Runner VPC Ingress Connection
|
1616
|
+
# resource.
|
1617
|
+
#
|
1618
|
+
# @option params [required, String] :vpc_ingress_connection_arn
|
1619
|
+
# The Amazon Resource Name (ARN) of the App Runner VPC Ingress
|
1620
|
+
# Connection that you want a description for.
|
1621
|
+
#
|
1622
|
+
# @return [Types::DescribeVpcIngressConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1623
|
+
#
|
1624
|
+
# * {Types::DescribeVpcIngressConnectionResponse#vpc_ingress_connection #vpc_ingress_connection} => Types::VpcIngressConnection
|
1625
|
+
#
|
1626
|
+
# @example Request syntax with placeholder values
|
1627
|
+
#
|
1628
|
+
# resp = client.describe_vpc_ingress_connection({
|
1629
|
+
# vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
|
1630
|
+
# })
|
1631
|
+
#
|
1632
|
+
# @example Response structure
|
1633
|
+
#
|
1634
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_arn #=> String
|
1635
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_name #=> String
|
1636
|
+
# resp.vpc_ingress_connection.service_arn #=> String
|
1637
|
+
# resp.vpc_ingress_connection.status #=> String, one of "AVAILABLE", "PENDING_CREATION", "PENDING_UPDATE", "PENDING_DELETION", "FAILED_CREATION", "FAILED_UPDATE", "FAILED_DELETION", "DELETED"
|
1638
|
+
# resp.vpc_ingress_connection.account_id #=> String
|
1639
|
+
# resp.vpc_ingress_connection.domain_name #=> String
|
1640
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_id #=> String
|
1641
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_endpoint_id #=> String
|
1642
|
+
# resp.vpc_ingress_connection.created_at #=> Time
|
1643
|
+
# resp.vpc_ingress_connection.deleted_at #=> Time
|
1644
|
+
#
|
1645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DescribeVpcIngressConnection AWS API Documentation
|
1646
|
+
#
|
1647
|
+
# @overload describe_vpc_ingress_connection(params = {})
|
1648
|
+
# @param [Hash] params ({})
|
1649
|
+
def describe_vpc_ingress_connection(params = {}, options = {})
|
1650
|
+
req = build_request(:describe_vpc_ingress_connection, params)
|
1651
|
+
req.send_request(options)
|
1652
|
+
end
|
1653
|
+
|
1463
1654
|
# Disassociate a custom domain name from an App Runner service.
|
1464
1655
|
#
|
1465
1656
|
# Certificates tracking domain validity are associated with a custom
|
@@ -1485,6 +1676,7 @@ module Aws::AppRunner
|
|
1485
1676
|
# * {Types::DisassociateCustomDomainResponse#dns_target #dns_target} => String
|
1486
1677
|
# * {Types::DisassociateCustomDomainResponse#service_arn #service_arn} => String
|
1487
1678
|
# * {Types::DisassociateCustomDomainResponse#custom_domain #custom_domain} => Types::CustomDomain
|
1679
|
+
# * {Types::DisassociateCustomDomainResponse#vpc_dns_targets #vpc_dns_targets} => Array<Types::VpcDNSTarget>
|
1488
1680
|
#
|
1489
1681
|
# @example Request syntax with placeholder values
|
1490
1682
|
#
|
@@ -1505,6 +1697,10 @@ module Aws::AppRunner
|
|
1505
1697
|
# resp.custom_domain.certificate_validation_records[0].value #=> String
|
1506
1698
|
# resp.custom_domain.certificate_validation_records[0].status #=> String, one of "PENDING_VALIDATION", "SUCCESS", "FAILED"
|
1507
1699
|
# resp.custom_domain.status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "DELETING", "DELETE_FAILED", "PENDING_CERTIFICATE_DNS_VALIDATION", "BINDING_CERTIFICATE"
|
1700
|
+
# resp.vpc_dns_targets #=> Array
|
1701
|
+
# resp.vpc_dns_targets[0].vpc_ingress_connection_arn #=> String
|
1702
|
+
# resp.vpc_dns_targets[0].vpc_id #=> String
|
1703
|
+
# resp.vpc_dns_targets[0].domain_name #=> String
|
1508
1704
|
#
|
1509
1705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/DisassociateCustomDomain AWS API Documentation
|
1510
1706
|
#
|
@@ -1925,6 +2121,63 @@ module Aws::AppRunner
|
|
1925
2121
|
req.send_request(options)
|
1926
2122
|
end
|
1927
2123
|
|
2124
|
+
# Return a list of App Runner VPC Ingress Connections in your Amazon Web
|
2125
|
+
# Services account.
|
2126
|
+
#
|
2127
|
+
# @option params [Types::ListVpcIngressConnectionsFilter] :filter
|
2128
|
+
# The VPC Ingress Connections to be listed based on either the Service
|
2129
|
+
# Arn or Vpc Endpoint Id, or both.
|
2130
|
+
#
|
2131
|
+
# @option params [Integer] :max_results
|
2132
|
+
# The maximum number of results to include in each response (result
|
2133
|
+
# page). It's used for a paginated request.
|
2134
|
+
#
|
2135
|
+
# If you don't specify `MaxResults`, the request retrieves all
|
2136
|
+
# available results in a single response.
|
2137
|
+
#
|
2138
|
+
# @option params [String] :next_token
|
2139
|
+
# A token from a previous result page. It's used for a paginated
|
2140
|
+
# request. The request retrieves the next result page. All other
|
2141
|
+
# parameter values must be identical to the ones that are specified in
|
2142
|
+
# the initial request.
|
2143
|
+
#
|
2144
|
+
# If you don't specify `NextToken`, the request retrieves the first
|
2145
|
+
# result page.
|
2146
|
+
#
|
2147
|
+
# @return [Types::ListVpcIngressConnectionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2148
|
+
#
|
2149
|
+
# * {Types::ListVpcIngressConnectionsResponse#vpc_ingress_connection_summary_list #vpc_ingress_connection_summary_list} => Array<Types::VpcIngressConnectionSummary>
|
2150
|
+
# * {Types::ListVpcIngressConnectionsResponse#next_token #next_token} => String
|
2151
|
+
#
|
2152
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2153
|
+
#
|
2154
|
+
# @example Request syntax with placeholder values
|
2155
|
+
#
|
2156
|
+
# resp = client.list_vpc_ingress_connections({
|
2157
|
+
# filter: {
|
2158
|
+
# service_arn: "AppRunnerResourceArn",
|
2159
|
+
# vpc_endpoint_id: "String",
|
2160
|
+
# },
|
2161
|
+
# max_results: 1,
|
2162
|
+
# next_token: "NextToken",
|
2163
|
+
# })
|
2164
|
+
#
|
2165
|
+
# @example Response structure
|
2166
|
+
#
|
2167
|
+
# resp.vpc_ingress_connection_summary_list #=> Array
|
2168
|
+
# resp.vpc_ingress_connection_summary_list[0].vpc_ingress_connection_arn #=> String
|
2169
|
+
# resp.vpc_ingress_connection_summary_list[0].service_arn #=> String
|
2170
|
+
# resp.next_token #=> String
|
2171
|
+
#
|
2172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ListVpcIngressConnections AWS API Documentation
|
2173
|
+
#
|
2174
|
+
# @overload list_vpc_ingress_connections(params = {})
|
2175
|
+
# @param [Hash] params ({})
|
2176
|
+
def list_vpc_ingress_connections(params = {}, options = {})
|
2177
|
+
req = build_request(:list_vpc_ingress_connections, params)
|
2178
|
+
req.send_request(options)
|
2179
|
+
end
|
2180
|
+
|
1928
2181
|
# Pause an active App Runner service. App Runner reduces compute
|
1929
2182
|
# capacity for the service to zero and loses state (for example,
|
1930
2183
|
# ephemeral storage is removed).
|
@@ -1968,11 +2221,15 @@ module Aws::AppRunner
|
|
1968
2221
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
|
1969
2222
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables #=> Hash
|
1970
2223
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
2224
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets #=> Hash
|
2225
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
1971
2226
|
# resp.service.source_configuration.image_repository.image_identifier #=> String
|
1972
2227
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables #=> Hash
|
1973
2228
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
1974
2229
|
# resp.service.source_configuration.image_repository.image_configuration.start_command #=> String
|
1975
2230
|
# resp.service.source_configuration.image_repository.image_configuration.port #=> String
|
2231
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets #=> Hash
|
2232
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
1976
2233
|
# resp.service.source_configuration.image_repository.image_repository_type #=> String, one of "ECR", "ECR_PUBLIC"
|
1977
2234
|
# resp.service.source_configuration.auto_deployments_enabled #=> Boolean
|
1978
2235
|
# resp.service.source_configuration.authentication_configuration.connection_arn #=> String
|
@@ -1992,6 +2249,7 @@ module Aws::AppRunner
|
|
1992
2249
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
1993
2250
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
1994
2251
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
2252
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
1995
2253
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
1996
2254
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
1997
2255
|
# resp.operation_id #=> String
|
@@ -2047,11 +2305,15 @@ module Aws::AppRunner
|
|
2047
2305
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
|
2048
2306
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables #=> Hash
|
2049
2307
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
2308
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets #=> Hash
|
2309
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
2050
2310
|
# resp.service.source_configuration.image_repository.image_identifier #=> String
|
2051
2311
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables #=> Hash
|
2052
2312
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
2053
2313
|
# resp.service.source_configuration.image_repository.image_configuration.start_command #=> String
|
2054
2314
|
# resp.service.source_configuration.image_repository.image_configuration.port #=> String
|
2315
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets #=> Hash
|
2316
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
2055
2317
|
# resp.service.source_configuration.image_repository.image_repository_type #=> String, one of "ECR", "ECR_PUBLIC"
|
2056
2318
|
# resp.service.source_configuration.auto_deployments_enabled #=> Boolean
|
2057
2319
|
# resp.service.source_configuration.authentication_configuration.connection_arn #=> String
|
@@ -2071,6 +2333,7 @@ module Aws::AppRunner
|
|
2071
2333
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
2072
2334
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
2073
2335
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
2336
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
2074
2337
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
2075
2338
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
2076
2339
|
# resp.operation_id #=> String
|
@@ -2267,6 +2530,9 @@ module Aws::AppRunner
|
|
2267
2530
|
# runtime_environment_variables: {
|
2268
2531
|
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
2269
2532
|
# },
|
2533
|
+
# runtime_environment_secrets: {
|
2534
|
+
# "RuntimeEnvironmentSecretsName" => "RuntimeEnvironmentSecretsValue",
|
2535
|
+
# },
|
2270
2536
|
# },
|
2271
2537
|
# },
|
2272
2538
|
# },
|
@@ -2278,6 +2544,9 @@ module Aws::AppRunner
|
|
2278
2544
|
# },
|
2279
2545
|
# start_command: "StartCommand",
|
2280
2546
|
# port: "String",
|
2547
|
+
# runtime_environment_secrets: {
|
2548
|
+
# "RuntimeEnvironmentSecretsName" => "RuntimeEnvironmentSecretsValue",
|
2549
|
+
# },
|
2281
2550
|
# },
|
2282
2551
|
# image_repository_type: "ECR", # required, accepts ECR, ECR_PUBLIC
|
2283
2552
|
# },
|
@@ -2306,6 +2575,9 @@ module Aws::AppRunner
|
|
2306
2575
|
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
2307
2576
|
# vpc_connector_arn: "AppRunnerResourceArn",
|
2308
2577
|
# },
|
2578
|
+
# ingress_configuration: {
|
2579
|
+
# is_publicly_accessible: false,
|
2580
|
+
# },
|
2309
2581
|
# },
|
2310
2582
|
# observability_configuration: {
|
2311
2583
|
# observability_enabled: false, # required
|
@@ -2333,11 +2605,15 @@ module Aws::AppRunner
|
|
2333
2605
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
|
2334
2606
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables #=> Hash
|
2335
2607
|
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
2608
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets #=> Hash
|
2609
|
+
# resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
2336
2610
|
# resp.service.source_configuration.image_repository.image_identifier #=> String
|
2337
2611
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables #=> Hash
|
2338
2612
|
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_variables["RuntimeEnvironmentVariablesKey"] #=> String
|
2339
2613
|
# resp.service.source_configuration.image_repository.image_configuration.start_command #=> String
|
2340
2614
|
# resp.service.source_configuration.image_repository.image_configuration.port #=> String
|
2615
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets #=> Hash
|
2616
|
+
# resp.service.source_configuration.image_repository.image_configuration.runtime_environment_secrets["RuntimeEnvironmentSecretsName"] #=> String
|
2341
2617
|
# resp.service.source_configuration.image_repository.image_repository_type #=> String, one of "ECR", "ECR_PUBLIC"
|
2342
2618
|
# resp.service.source_configuration.auto_deployments_enabled #=> Boolean
|
2343
2619
|
# resp.service.source_configuration.authentication_configuration.connection_arn #=> String
|
@@ -2357,6 +2633,7 @@ module Aws::AppRunner
|
|
2357
2633
|
# resp.service.auto_scaling_configuration_summary.auto_scaling_configuration_revision #=> Integer
|
2358
2634
|
# resp.service.network_configuration.egress_configuration.egress_type #=> String, one of "DEFAULT", "VPC"
|
2359
2635
|
# resp.service.network_configuration.egress_configuration.vpc_connector_arn #=> String
|
2636
|
+
# resp.service.network_configuration.ingress_configuration.is_publicly_accessible #=> Boolean
|
2360
2637
|
# resp.service.observability_configuration.observability_enabled #=> Boolean
|
2361
2638
|
# resp.service.observability_configuration.observability_configuration_arn #=> String
|
2362
2639
|
# resp.operation_id #=> String
|
@@ -2370,6 +2647,61 @@ module Aws::AppRunner
|
|
2370
2647
|
req.send_request(options)
|
2371
2648
|
end
|
2372
2649
|
|
2650
|
+
# Update an existing App Runner VPC Ingress Connection resource. The VPC
|
2651
|
+
# Ingress Connection must be in one of the following states to be
|
2652
|
+
# updated:
|
2653
|
+
#
|
2654
|
+
# * AVAILABLE
|
2655
|
+
#
|
2656
|
+
# * FAILED\_CREATION
|
2657
|
+
#
|
2658
|
+
# * FAILED\_UPDATE
|
2659
|
+
#
|
2660
|
+
# @option params [required, String] :vpc_ingress_connection_arn
|
2661
|
+
# The Amazon Resource Name (Arn) for the App Runner VPC Ingress
|
2662
|
+
# Connection resource that you want to update.
|
2663
|
+
#
|
2664
|
+
# @option params [required, Types::IngressVpcConfiguration] :ingress_vpc_configuration
|
2665
|
+
# Specifications for the customer’s Amazon VPC and the related Amazon
|
2666
|
+
# Web Services PrivateLink VPC endpoint that are used to update the VPC
|
2667
|
+
# Ingress Connection resource.
|
2668
|
+
#
|
2669
|
+
# @return [Types::UpdateVpcIngressConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2670
|
+
#
|
2671
|
+
# * {Types::UpdateVpcIngressConnectionResponse#vpc_ingress_connection #vpc_ingress_connection} => Types::VpcIngressConnection
|
2672
|
+
#
|
2673
|
+
# @example Request syntax with placeholder values
|
2674
|
+
#
|
2675
|
+
# resp = client.update_vpc_ingress_connection({
|
2676
|
+
# vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
|
2677
|
+
# ingress_vpc_configuration: { # required
|
2678
|
+
# vpc_id: "String",
|
2679
|
+
# vpc_endpoint_id: "String",
|
2680
|
+
# },
|
2681
|
+
# })
|
2682
|
+
#
|
2683
|
+
# @example Response structure
|
2684
|
+
#
|
2685
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_arn #=> String
|
2686
|
+
# resp.vpc_ingress_connection.vpc_ingress_connection_name #=> String
|
2687
|
+
# resp.vpc_ingress_connection.service_arn #=> String
|
2688
|
+
# resp.vpc_ingress_connection.status #=> String, one of "AVAILABLE", "PENDING_CREATION", "PENDING_UPDATE", "PENDING_DELETION", "FAILED_CREATION", "FAILED_UPDATE", "FAILED_DELETION", "DELETED"
|
2689
|
+
# resp.vpc_ingress_connection.account_id #=> String
|
2690
|
+
# resp.vpc_ingress_connection.domain_name #=> String
|
2691
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_id #=> String
|
2692
|
+
# resp.vpc_ingress_connection.ingress_vpc_configuration.vpc_endpoint_id #=> String
|
2693
|
+
# resp.vpc_ingress_connection.created_at #=> Time
|
2694
|
+
# resp.vpc_ingress_connection.deleted_at #=> Time
|
2695
|
+
#
|
2696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/UpdateVpcIngressConnection AWS API Documentation
|
2697
|
+
#
|
2698
|
+
# @overload update_vpc_ingress_connection(params = {})
|
2699
|
+
# @param [Hash] params ({})
|
2700
|
+
def update_vpc_ingress_connection(params = {}, options = {})
|
2701
|
+
req = build_request(:update_vpc_ingress_connection, params)
|
2702
|
+
req.send_request(options)
|
2703
|
+
end
|
2704
|
+
|
2373
2705
|
# @!endgroup
|
2374
2706
|
|
2375
2707
|
# @param params ({})
|
@@ -2383,7 +2715,7 @@ module Aws::AppRunner
|
|
2383
2715
|
params: params,
|
2384
2716
|
config: config)
|
2385
2717
|
context[:gem_name] = 'aws-sdk-apprunner'
|
2386
|
-
context[:gem_version] = '1.
|
2718
|
+
context[:gem_version] = '1.19.0'
|
2387
2719
|
Seahorse::Client::Request.new(handlers, context)
|
2388
2720
|
end
|
2389
2721
|
|