aws-sdk-apprunner 1.18.0 → 1.19.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 +37 -1
- data/lib/aws-sdk-apprunner/client_api.rb +8 -0
- 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/types.rb +44 -695
- data/lib/aws-sdk-apprunner.rb +1 -1
- metadata +2 -2
@@ -10,15 +10,6 @@
|
|
10
10
|
module Aws::AppRunner
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# @note When making an API call, you may pass AssociateCustomDomainRequest
|
14
|
-
# data as a hash:
|
15
|
-
#
|
16
|
-
# {
|
17
|
-
# service_arn: "AppRunnerResourceArn", # required
|
18
|
-
# domain_name: "DomainName", # required
|
19
|
-
# enable_www_subdomain: false,
|
20
|
-
# }
|
21
|
-
#
|
22
13
|
# @!attribute [rw] service_arn
|
23
14
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
24
15
|
# want to associate a custom domain name with.
|
@@ -81,14 +72,6 @@ module Aws::AppRunner
|
|
81
72
|
# repositories. The specific resource depends on the repository
|
82
73
|
# provider.
|
83
74
|
#
|
84
|
-
# @note When making an API call, you may pass AuthenticationConfiguration
|
85
|
-
# data as a hash:
|
86
|
-
#
|
87
|
-
# {
|
88
|
-
# connection_arn: "AppRunnerResourceArn",
|
89
|
-
# access_role_arn: "RoleArn",
|
90
|
-
# }
|
91
|
-
#
|
92
75
|
# @!attribute [rw] connection_arn
|
93
76
|
# The Amazon Resource Name (ARN) of the App Runner connection that
|
94
77
|
# enables the App Runner service to connect to a source repository.
|
@@ -278,22 +261,6 @@ module Aws::AppRunner
|
|
278
261
|
# Describes the configuration that App Runner uses to build and run an
|
279
262
|
# App Runner service from a source code repository.
|
280
263
|
#
|
281
|
-
# @note When making an API call, you may pass CodeConfiguration
|
282
|
-
# data as a hash:
|
283
|
-
#
|
284
|
-
# {
|
285
|
-
# configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
|
286
|
-
# code_configuration_values: {
|
287
|
-
# runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
|
288
|
-
# build_command: "BuildCommand",
|
289
|
-
# start_command: "StartCommand",
|
290
|
-
# port: "String",
|
291
|
-
# runtime_environment_variables: {
|
292
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
293
|
-
# },
|
294
|
-
# },
|
295
|
-
# }
|
296
|
-
#
|
297
264
|
# @!attribute [rw] configuration_source
|
298
265
|
# The source of the App Runner configuration. Values are interpreted
|
299
266
|
# as follows:
|
@@ -328,19 +295,6 @@ module Aws::AppRunner
|
|
328
295
|
# possible configuration options. Fur full configuration capabilities,
|
329
296
|
# use a `apprunner.yaml` file in the source code repository.
|
330
297
|
#
|
331
|
-
# @note When making an API call, you may pass CodeConfigurationValues
|
332
|
-
# data as a hash:
|
333
|
-
#
|
334
|
-
# {
|
335
|
-
# runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
|
336
|
-
# build_command: "BuildCommand",
|
337
|
-
# start_command: "StartCommand",
|
338
|
-
# port: "String",
|
339
|
-
# runtime_environment_variables: {
|
340
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
341
|
-
# },
|
342
|
-
# }
|
343
|
-
#
|
344
298
|
# @!attribute [rw] runtime
|
345
299
|
# A runtime environment type for building and running an App Runner
|
346
300
|
# service. It represents a programming language runtime.
|
@@ -362,8 +316,26 @@ module Aws::AppRunner
|
|
362
316
|
#
|
363
317
|
# @!attribute [rw] runtime_environment_variables
|
364
318
|
# The environment variables that are available to your running App
|
365
|
-
# Runner service. An array of key-value pairs.
|
366
|
-
#
|
319
|
+
# Runner service. An array of key-value pairs.
|
320
|
+
# @return [Hash<String,String>]
|
321
|
+
#
|
322
|
+
# @!attribute [rw] runtime_environment_secrets
|
323
|
+
# An array of key-value pairs representing the secrets and parameters
|
324
|
+
# that get referenced to your service as an environment variable. The
|
325
|
+
# supported values are either the full Amazon Resource Name (ARN) of
|
326
|
+
# the Secrets Manager secret or the full ARN of the parameter in the
|
327
|
+
# Amazon Web Services Systems Manager Parameter Store.
|
328
|
+
#
|
329
|
+
# <note markdown="1"> * If the Amazon Web Services Systems Manager Parameter Store
|
330
|
+
# parameter exists in the same Amazon Web Services Region as the
|
331
|
+
# service that you're launching, you can use either the full ARN or
|
332
|
+
# name of the secret. If the parameter exists in a different Region,
|
333
|
+
# then the full ARN must be specified.
|
334
|
+
#
|
335
|
+
# * Currently, cross account referencing of Amazon Web Services
|
336
|
+
# Systems Manager Parameter Store parameter is not supported.
|
337
|
+
#
|
338
|
+
# </note>
|
367
339
|
# @return [Hash<String,String>]
|
368
340
|
#
|
369
341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/CodeConfigurationValues AWS API Documentation
|
@@ -373,36 +345,14 @@ module Aws::AppRunner
|
|
373
345
|
:build_command,
|
374
346
|
:start_command,
|
375
347
|
:port,
|
376
|
-
:runtime_environment_variables
|
348
|
+
:runtime_environment_variables,
|
349
|
+
:runtime_environment_secrets)
|
377
350
|
SENSITIVE = [:build_command, :start_command]
|
378
351
|
include Aws::Structure
|
379
352
|
end
|
380
353
|
|
381
354
|
# Describes a source code repository.
|
382
355
|
#
|
383
|
-
# @note When making an API call, you may pass CodeRepository
|
384
|
-
# data as a hash:
|
385
|
-
#
|
386
|
-
# {
|
387
|
-
# repository_url: "String", # required
|
388
|
-
# source_code_version: { # required
|
389
|
-
# type: "BRANCH", # required, accepts BRANCH
|
390
|
-
# value: "String", # required
|
391
|
-
# },
|
392
|
-
# code_configuration: {
|
393
|
-
# configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
|
394
|
-
# code_configuration_values: {
|
395
|
-
# runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
|
396
|
-
# build_command: "BuildCommand",
|
397
|
-
# start_command: "StartCommand",
|
398
|
-
# port: "String",
|
399
|
-
# runtime_environment_variables: {
|
400
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
401
|
-
# },
|
402
|
-
# },
|
403
|
-
# },
|
404
|
-
# }
|
405
|
-
#
|
406
356
|
# @!attribute [rw] repository_url
|
407
357
|
# The location of the repository that contains the source code.
|
408
358
|
# @return [String]
|
@@ -504,22 +454,6 @@ module Aws::AppRunner
|
|
504
454
|
include Aws::Structure
|
505
455
|
end
|
506
456
|
|
507
|
-
# @note When making an API call, you may pass CreateAutoScalingConfigurationRequest
|
508
|
-
# data as a hash:
|
509
|
-
#
|
510
|
-
# {
|
511
|
-
# auto_scaling_configuration_name: "AutoScalingConfigurationName", # required
|
512
|
-
# max_concurrency: 1,
|
513
|
-
# min_size: 1,
|
514
|
-
# max_size: 1,
|
515
|
-
# tags: [
|
516
|
-
# {
|
517
|
-
# key: "TagKey",
|
518
|
-
# value: "TagValue",
|
519
|
-
# },
|
520
|
-
# ],
|
521
|
-
# }
|
522
|
-
#
|
523
457
|
# @!attribute [rw] auto_scaling_configuration_name
|
524
458
|
# A name for the auto scaling configuration. When you use it for the
|
525
459
|
# first time in an Amazon Web Services Region, App Runner creates
|
@@ -600,20 +534,6 @@ module Aws::AppRunner
|
|
600
534
|
include Aws::Structure
|
601
535
|
end
|
602
536
|
|
603
|
-
# @note When making an API call, you may pass CreateConnectionRequest
|
604
|
-
# data as a hash:
|
605
|
-
#
|
606
|
-
# {
|
607
|
-
# connection_name: "ConnectionName", # required
|
608
|
-
# provider_type: "GITHUB", # required, accepts GITHUB
|
609
|
-
# tags: [
|
610
|
-
# {
|
611
|
-
# key: "TagKey",
|
612
|
-
# value: "TagValue",
|
613
|
-
# },
|
614
|
-
# ],
|
615
|
-
# }
|
616
|
-
#
|
617
537
|
# @!attribute [rw] connection_name
|
618
538
|
# A name for the new connection. It must be unique across all App
|
619
539
|
# Runner connections for the Amazon Web Services account in the Amazon
|
@@ -652,22 +572,6 @@ module Aws::AppRunner
|
|
652
572
|
include Aws::Structure
|
653
573
|
end
|
654
574
|
|
655
|
-
# @note When making an API call, you may pass CreateObservabilityConfigurationRequest
|
656
|
-
# data as a hash:
|
657
|
-
#
|
658
|
-
# {
|
659
|
-
# observability_configuration_name: "ObservabilityConfigurationName", # required
|
660
|
-
# trace_configuration: {
|
661
|
-
# vendor: "AWSXRAY", # required, accepts AWSXRAY
|
662
|
-
# },
|
663
|
-
# tags: [
|
664
|
-
# {
|
665
|
-
# key: "TagKey",
|
666
|
-
# value: "TagValue",
|
667
|
-
# },
|
668
|
-
# ],
|
669
|
-
# }
|
670
|
-
#
|
671
575
|
# @!attribute [rw] observability_configuration_name
|
672
576
|
# A name for the observability configuration. When you use it for the
|
673
577
|
# first time in an Amazon Web Services Region, App Runner creates
|
@@ -720,86 +624,6 @@ module Aws::AppRunner
|
|
720
624
|
include Aws::Structure
|
721
625
|
end
|
722
626
|
|
723
|
-
# @note When making an API call, you may pass CreateServiceRequest
|
724
|
-
# data as a hash:
|
725
|
-
#
|
726
|
-
# {
|
727
|
-
# service_name: "ServiceName", # required
|
728
|
-
# source_configuration: { # required
|
729
|
-
# code_repository: {
|
730
|
-
# repository_url: "String", # required
|
731
|
-
# source_code_version: { # required
|
732
|
-
# type: "BRANCH", # required, accepts BRANCH
|
733
|
-
# value: "String", # required
|
734
|
-
# },
|
735
|
-
# code_configuration: {
|
736
|
-
# configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
|
737
|
-
# code_configuration_values: {
|
738
|
-
# runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
|
739
|
-
# build_command: "BuildCommand",
|
740
|
-
# start_command: "StartCommand",
|
741
|
-
# port: "String",
|
742
|
-
# runtime_environment_variables: {
|
743
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
744
|
-
# },
|
745
|
-
# },
|
746
|
-
# },
|
747
|
-
# },
|
748
|
-
# image_repository: {
|
749
|
-
# image_identifier: "ImageIdentifier", # required
|
750
|
-
# image_configuration: {
|
751
|
-
# runtime_environment_variables: {
|
752
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
753
|
-
# },
|
754
|
-
# start_command: "StartCommand",
|
755
|
-
# port: "String",
|
756
|
-
# },
|
757
|
-
# image_repository_type: "ECR", # required, accepts ECR, ECR_PUBLIC
|
758
|
-
# },
|
759
|
-
# auto_deployments_enabled: false,
|
760
|
-
# authentication_configuration: {
|
761
|
-
# connection_arn: "AppRunnerResourceArn",
|
762
|
-
# access_role_arn: "RoleArn",
|
763
|
-
# },
|
764
|
-
# },
|
765
|
-
# instance_configuration: {
|
766
|
-
# cpu: "Cpu",
|
767
|
-
# memory: "Memory",
|
768
|
-
# instance_role_arn: "RoleArn",
|
769
|
-
# },
|
770
|
-
# tags: [
|
771
|
-
# {
|
772
|
-
# key: "TagKey",
|
773
|
-
# value: "TagValue",
|
774
|
-
# },
|
775
|
-
# ],
|
776
|
-
# encryption_configuration: {
|
777
|
-
# kms_key: "KmsKeyArn", # required
|
778
|
-
# },
|
779
|
-
# health_check_configuration: {
|
780
|
-
# protocol: "TCP", # accepts TCP, HTTP
|
781
|
-
# path: "HealthCheckPath",
|
782
|
-
# interval: 1,
|
783
|
-
# timeout: 1,
|
784
|
-
# healthy_threshold: 1,
|
785
|
-
# unhealthy_threshold: 1,
|
786
|
-
# },
|
787
|
-
# auto_scaling_configuration_arn: "AppRunnerResourceArn",
|
788
|
-
# network_configuration: {
|
789
|
-
# egress_configuration: {
|
790
|
-
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
791
|
-
# vpc_connector_arn: "AppRunnerResourceArn",
|
792
|
-
# },
|
793
|
-
# ingress_configuration: {
|
794
|
-
# is_publicly_accessible: false,
|
795
|
-
# },
|
796
|
-
# },
|
797
|
-
# observability_configuration: {
|
798
|
-
# observability_enabled: false, # required
|
799
|
-
# observability_configuration_arn: "AppRunnerResourceArn",
|
800
|
-
# },
|
801
|
-
# }
|
802
|
-
#
|
803
627
|
# @!attribute [rw] service_name
|
804
628
|
# A name for the App Runner service. It must be unique across all the
|
805
629
|
# running App Runner services in your Amazon Web Services account in
|
@@ -896,21 +720,6 @@ module Aws::AppRunner
|
|
896
720
|
include Aws::Structure
|
897
721
|
end
|
898
722
|
|
899
|
-
# @note When making an API call, you may pass CreateVpcConnectorRequest
|
900
|
-
# data as a hash:
|
901
|
-
#
|
902
|
-
# {
|
903
|
-
# vpc_connector_name: "VpcConnectorName", # required
|
904
|
-
# subnets: ["String"], # required
|
905
|
-
# security_groups: ["String"],
|
906
|
-
# tags: [
|
907
|
-
# {
|
908
|
-
# key: "TagKey",
|
909
|
-
# value: "TagValue",
|
910
|
-
# },
|
911
|
-
# ],
|
912
|
-
# }
|
913
|
-
#
|
914
723
|
# @!attribute [rw] vpc_connector_name
|
915
724
|
# A name for the VPC connector.
|
916
725
|
# @return [String]
|
@@ -962,24 +771,6 @@ module Aws::AppRunner
|
|
962
771
|
include Aws::Structure
|
963
772
|
end
|
964
773
|
|
965
|
-
# @note When making an API call, you may pass CreateVpcIngressConnectionRequest
|
966
|
-
# data as a hash:
|
967
|
-
#
|
968
|
-
# {
|
969
|
-
# service_arn: "AppRunnerResourceArn", # required
|
970
|
-
# vpc_ingress_connection_name: "VpcIngressConnectionName", # required
|
971
|
-
# ingress_vpc_configuration: { # required
|
972
|
-
# vpc_id: "String",
|
973
|
-
# vpc_endpoint_id: "String",
|
974
|
-
# },
|
975
|
-
# tags: [
|
976
|
-
# {
|
977
|
-
# key: "TagKey",
|
978
|
-
# value: "TagValue",
|
979
|
-
# },
|
980
|
-
# ],
|
981
|
-
# }
|
982
|
-
#
|
983
774
|
# @!attribute [rw] service_arn
|
984
775
|
# The Amazon Resource Name (ARN) for this App Runner service that is
|
985
776
|
# used to create the VPC Ingress Connection resource.
|
@@ -1061,13 +852,6 @@ module Aws::AppRunner
|
|
1061
852
|
include Aws::Structure
|
1062
853
|
end
|
1063
854
|
|
1064
|
-
# @note When making an API call, you may pass DeleteAutoScalingConfigurationRequest
|
1065
|
-
# data as a hash:
|
1066
|
-
#
|
1067
|
-
# {
|
1068
|
-
# auto_scaling_configuration_arn: "AppRunnerResourceArn", # required
|
1069
|
-
# }
|
1070
|
-
#
|
1071
855
|
# @!attribute [rw] auto_scaling_configuration_arn
|
1072
856
|
# The Amazon Resource Name (ARN) of the App Runner auto scaling
|
1073
857
|
# configuration that you want to delete.
|
@@ -1098,13 +882,6 @@ module Aws::AppRunner
|
|
1098
882
|
include Aws::Structure
|
1099
883
|
end
|
1100
884
|
|
1101
|
-
# @note When making an API call, you may pass DeleteConnectionRequest
|
1102
|
-
# data as a hash:
|
1103
|
-
#
|
1104
|
-
# {
|
1105
|
-
# connection_arn: "AppRunnerResourceArn", # required
|
1106
|
-
# }
|
1107
|
-
#
|
1108
885
|
# @!attribute [rw] connection_arn
|
1109
886
|
# The Amazon Resource Name (ARN) of the App Runner connection that you
|
1110
887
|
# want to delete.
|
@@ -1131,13 +908,6 @@ module Aws::AppRunner
|
|
1131
908
|
include Aws::Structure
|
1132
909
|
end
|
1133
910
|
|
1134
|
-
# @note When making an API call, you may pass DeleteObservabilityConfigurationRequest
|
1135
|
-
# data as a hash:
|
1136
|
-
#
|
1137
|
-
# {
|
1138
|
-
# observability_configuration_arn: "AppRunnerResourceArn", # required
|
1139
|
-
# }
|
1140
|
-
#
|
1141
911
|
# @!attribute [rw] observability_configuration_arn
|
1142
912
|
# The Amazon Resource Name (ARN) of the App Runner observability
|
1143
913
|
# configuration that you want to delete.
|
@@ -1168,13 +938,6 @@ module Aws::AppRunner
|
|
1168
938
|
include Aws::Structure
|
1169
939
|
end
|
1170
940
|
|
1171
|
-
# @note When making an API call, you may pass DeleteServiceRequest
|
1172
|
-
# data as a hash:
|
1173
|
-
#
|
1174
|
-
# {
|
1175
|
-
# service_arn: "AppRunnerResourceArn", # required
|
1176
|
-
# }
|
1177
|
-
#
|
1178
941
|
# @!attribute [rw] service_arn
|
1179
942
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
1180
943
|
# want to delete.
|
@@ -1208,13 +971,6 @@ module Aws::AppRunner
|
|
1208
971
|
include Aws::Structure
|
1209
972
|
end
|
1210
973
|
|
1211
|
-
# @note When making an API call, you may pass DeleteVpcConnectorRequest
|
1212
|
-
# data as a hash:
|
1213
|
-
#
|
1214
|
-
# {
|
1215
|
-
# vpc_connector_arn: "AppRunnerResourceArn", # required
|
1216
|
-
# }
|
1217
|
-
#
|
1218
974
|
# @!attribute [rw] vpc_connector_arn
|
1219
975
|
# The Amazon Resource Name (ARN) of the App Runner VPC connector that
|
1220
976
|
# you want to delete.
|
@@ -1243,13 +999,6 @@ module Aws::AppRunner
|
|
1243
999
|
include Aws::Structure
|
1244
1000
|
end
|
1245
1001
|
|
1246
|
-
# @note When making an API call, you may pass DeleteVpcIngressConnectionRequest
|
1247
|
-
# data as a hash:
|
1248
|
-
#
|
1249
|
-
# {
|
1250
|
-
# vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
|
1251
|
-
# }
|
1252
|
-
#
|
1253
1002
|
# @!attribute [rw] vpc_ingress_connection_arn
|
1254
1003
|
# The Amazon Resource Name (ARN) of the App Runner VPC Ingress
|
1255
1004
|
# Connection that you want to delete.
|
@@ -1276,13 +1025,6 @@ module Aws::AppRunner
|
|
1276
1025
|
include Aws::Structure
|
1277
1026
|
end
|
1278
1027
|
|
1279
|
-
# @note When making an API call, you may pass DescribeAutoScalingConfigurationRequest
|
1280
|
-
# data as a hash:
|
1281
|
-
#
|
1282
|
-
# {
|
1283
|
-
# auto_scaling_configuration_arn: "AppRunnerResourceArn", # required
|
1284
|
-
# }
|
1285
|
-
#
|
1286
1028
|
# @!attribute [rw] auto_scaling_configuration_arn
|
1287
1029
|
# The Amazon Resource Name (ARN) of the App Runner auto scaling
|
1288
1030
|
# configuration that you want a description for.
|
@@ -1313,15 +1055,6 @@ module Aws::AppRunner
|
|
1313
1055
|
include Aws::Structure
|
1314
1056
|
end
|
1315
1057
|
|
1316
|
-
# @note When making an API call, you may pass DescribeCustomDomainsRequest
|
1317
|
-
# data as a hash:
|
1318
|
-
#
|
1319
|
-
# {
|
1320
|
-
# service_arn: "AppRunnerResourceArn", # required
|
1321
|
-
# next_token: "String",
|
1322
|
-
# max_results: 1,
|
1323
|
-
# }
|
1324
|
-
#
|
1325
1058
|
# @!attribute [rw] service_arn
|
1326
1059
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
1327
1060
|
# want associated custom domain names to be described for.
|
@@ -1392,13 +1125,6 @@ module Aws::AppRunner
|
|
1392
1125
|
include Aws::Structure
|
1393
1126
|
end
|
1394
1127
|
|
1395
|
-
# @note When making an API call, you may pass DescribeObservabilityConfigurationRequest
|
1396
|
-
# data as a hash:
|
1397
|
-
#
|
1398
|
-
# {
|
1399
|
-
# observability_configuration_arn: "AppRunnerResourceArn", # required
|
1400
|
-
# }
|
1401
|
-
#
|
1402
1128
|
# @!attribute [rw] observability_configuration_arn
|
1403
1129
|
# The Amazon Resource Name (ARN) of the App Runner observability
|
1404
1130
|
# configuration that you want a description for.
|
@@ -1429,13 +1155,6 @@ module Aws::AppRunner
|
|
1429
1155
|
include Aws::Structure
|
1430
1156
|
end
|
1431
1157
|
|
1432
|
-
# @note When making an API call, you may pass DescribeServiceRequest
|
1433
|
-
# data as a hash:
|
1434
|
-
#
|
1435
|
-
# {
|
1436
|
-
# service_arn: "AppRunnerResourceArn", # required
|
1437
|
-
# }
|
1438
|
-
#
|
1439
1158
|
# @!attribute [rw] service_arn
|
1440
1159
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
1441
1160
|
# want a description for.
|
@@ -1462,13 +1181,6 @@ module Aws::AppRunner
|
|
1462
1181
|
include Aws::Structure
|
1463
1182
|
end
|
1464
1183
|
|
1465
|
-
# @note When making an API call, you may pass DescribeVpcConnectorRequest
|
1466
|
-
# data as a hash:
|
1467
|
-
#
|
1468
|
-
# {
|
1469
|
-
# vpc_connector_arn: "AppRunnerResourceArn", # required
|
1470
|
-
# }
|
1471
|
-
#
|
1472
1184
|
# @!attribute [rw] vpc_connector_arn
|
1473
1185
|
# The Amazon Resource Name (ARN) of the App Runner VPC connector that
|
1474
1186
|
# you want a description for.
|
@@ -1497,13 +1209,6 @@ module Aws::AppRunner
|
|
1497
1209
|
include Aws::Structure
|
1498
1210
|
end
|
1499
1211
|
|
1500
|
-
# @note When making an API call, you may pass DescribeVpcIngressConnectionRequest
|
1501
|
-
# data as a hash:
|
1502
|
-
#
|
1503
|
-
# {
|
1504
|
-
# vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
|
1505
|
-
# }
|
1506
|
-
#
|
1507
1212
|
# @!attribute [rw] vpc_ingress_connection_arn
|
1508
1213
|
# The Amazon Resource Name (ARN) of the App Runner VPC Ingress
|
1509
1214
|
# Connection that you want a description for.
|
@@ -1530,14 +1235,6 @@ module Aws::AppRunner
|
|
1530
1235
|
include Aws::Structure
|
1531
1236
|
end
|
1532
1237
|
|
1533
|
-
# @note When making an API call, you may pass DisassociateCustomDomainRequest
|
1534
|
-
# data as a hash:
|
1535
|
-
#
|
1536
|
-
# {
|
1537
|
-
# service_arn: "AppRunnerResourceArn", # required
|
1538
|
-
# domain_name: "DomainName", # required
|
1539
|
-
# }
|
1540
|
-
#
|
1541
1238
|
# @!attribute [rw] service_arn
|
1542
1239
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
1543
1240
|
# want to disassociate a custom domain name from.
|
@@ -1589,14 +1286,6 @@ module Aws::AppRunner
|
|
1589
1286
|
# Describes configuration settings related to outbound network traffic
|
1590
1287
|
# of an App Runner service.
|
1591
1288
|
#
|
1592
|
-
# @note When making an API call, you may pass EgressConfiguration
|
1593
|
-
# data as a hash:
|
1594
|
-
#
|
1595
|
-
# {
|
1596
|
-
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
1597
|
-
# vpc_connector_arn: "AppRunnerResourceArn",
|
1598
|
-
# }
|
1599
|
-
#
|
1600
1289
|
# @!attribute [rw] egress_type
|
1601
1290
|
# The type of egress configuration.
|
1602
1291
|
#
|
@@ -1624,13 +1313,6 @@ module Aws::AppRunner
|
|
1624
1313
|
# Describes a custom encryption key that App Runner uses to encrypt
|
1625
1314
|
# copies of the source repository and service logs.
|
1626
1315
|
#
|
1627
|
-
# @note When making an API call, you may pass EncryptionConfiguration
|
1628
|
-
# data as a hash:
|
1629
|
-
#
|
1630
|
-
# {
|
1631
|
-
# kms_key: "KmsKeyArn", # required
|
1632
|
-
# }
|
1633
|
-
#
|
1634
1316
|
# @!attribute [rw] kms_key
|
1635
1317
|
# The ARN of the KMS key that's used for encryption.
|
1636
1318
|
# @return [String]
|
@@ -1646,18 +1328,6 @@ module Aws::AppRunner
|
|
1646
1328
|
# Describes the settings for the health check that App Runner performs
|
1647
1329
|
# to monitor the health of a service.
|
1648
1330
|
#
|
1649
|
-
# @note When making an API call, you may pass HealthCheckConfiguration
|
1650
|
-
# data as a hash:
|
1651
|
-
#
|
1652
|
-
# {
|
1653
|
-
# protocol: "TCP", # accepts TCP, HTTP
|
1654
|
-
# path: "HealthCheckPath",
|
1655
|
-
# interval: 1,
|
1656
|
-
# timeout: 1,
|
1657
|
-
# healthy_threshold: 1,
|
1658
|
-
# unhealthy_threshold: 1,
|
1659
|
-
# }
|
1660
|
-
#
|
1661
1331
|
# @!attribute [rw] protocol
|
1662
1332
|
# The IP protocol that App Runner uses to perform health checks for
|
1663
1333
|
# your service.
|
@@ -1719,21 +1389,9 @@ module Aws::AppRunner
|
|
1719
1389
|
# Describes the configuration that App Runner uses to run an App Runner
|
1720
1390
|
# service using an image pulled from a source image repository.
|
1721
1391
|
#
|
1722
|
-
# @note When making an API call, you may pass ImageConfiguration
|
1723
|
-
# data as a hash:
|
1724
|
-
#
|
1725
|
-
# {
|
1726
|
-
# runtime_environment_variables: {
|
1727
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
1728
|
-
# },
|
1729
|
-
# start_command: "StartCommand",
|
1730
|
-
# port: "String",
|
1731
|
-
# }
|
1732
|
-
#
|
1733
1392
|
# @!attribute [rw] runtime_environment_variables
|
1734
1393
|
# Environment variables that are available to your running App Runner
|
1735
|
-
# service. An array of key-value pairs.
|
1736
|
-
# `AWSAPPRUNNER` are reserved for system use and aren't valid.
|
1394
|
+
# service. An array of key-value pairs.
|
1737
1395
|
# @return [Hash<String,String>]
|
1738
1396
|
#
|
1739
1397
|
# @!attribute [rw] start_command
|
@@ -1748,33 +1406,38 @@ module Aws::AppRunner
|
|
1748
1406
|
# Default: `8080`
|
1749
1407
|
# @return [String]
|
1750
1408
|
#
|
1409
|
+
# @!attribute [rw] runtime_environment_secrets
|
1410
|
+
# An array of key-value pairs representing the secrets and parameters
|
1411
|
+
# that get referenced to your service as an environment variable. The
|
1412
|
+
# supported values are either the full Amazon Resource Name (ARN) of
|
1413
|
+
# the Secrets Manager secret or the full ARN of the parameter in the
|
1414
|
+
# Amazon Web Services Systems Manager Parameter Store.
|
1415
|
+
#
|
1416
|
+
# <note markdown="1"> * If the Amazon Web Services Systems Manager Parameter Store
|
1417
|
+
# parameter exists in the same Amazon Web Services Region as the
|
1418
|
+
# service that you're launching, you can use either the full ARN or
|
1419
|
+
# name of the secret. If the parameter exists in a different Region,
|
1420
|
+
# then the full ARN must be specified.
|
1421
|
+
#
|
1422
|
+
# * Currently, cross account referencing of Amazon Web Services
|
1423
|
+
# Systems Manager Parameter Store parameter is not supported.
|
1424
|
+
#
|
1425
|
+
# </note>
|
1426
|
+
# @return [Hash<String,String>]
|
1427
|
+
#
|
1751
1428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/ImageConfiguration AWS API Documentation
|
1752
1429
|
#
|
1753
1430
|
class ImageConfiguration < Struct.new(
|
1754
1431
|
:runtime_environment_variables,
|
1755
1432
|
:start_command,
|
1756
|
-
:port
|
1433
|
+
:port,
|
1434
|
+
:runtime_environment_secrets)
|
1757
1435
|
SENSITIVE = [:start_command]
|
1758
1436
|
include Aws::Structure
|
1759
1437
|
end
|
1760
1438
|
|
1761
1439
|
# Describes a source image repository.
|
1762
1440
|
#
|
1763
|
-
# @note When making an API call, you may pass ImageRepository
|
1764
|
-
# data as a hash:
|
1765
|
-
#
|
1766
|
-
# {
|
1767
|
-
# image_identifier: "ImageIdentifier", # required
|
1768
|
-
# image_configuration: {
|
1769
|
-
# runtime_environment_variables: {
|
1770
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
1771
|
-
# },
|
1772
|
-
# start_command: "StartCommand",
|
1773
|
-
# port: "String",
|
1774
|
-
# },
|
1775
|
-
# image_repository_type: "ECR", # required, accepts ECR, ECR_PUBLIC
|
1776
|
-
# }
|
1777
|
-
#
|
1778
1441
|
# @!attribute [rw] image_identifier
|
1779
1442
|
# The identifier of an image.
|
1780
1443
|
#
|
@@ -1808,13 +1471,6 @@ module Aws::AppRunner
|
|
1808
1471
|
|
1809
1472
|
# Network configuration settings for inbound network traffic.
|
1810
1473
|
#
|
1811
|
-
# @note When making an API call, you may pass IngressConfiguration
|
1812
|
-
# data as a hash:
|
1813
|
-
#
|
1814
|
-
# {
|
1815
|
-
# is_publicly_accessible: false,
|
1816
|
-
# }
|
1817
|
-
#
|
1818
1474
|
# @!attribute [rw] is_publicly_accessible
|
1819
1475
|
# Specifies whether your App Runner service is publicly accessible. To
|
1820
1476
|
# make the service publicly accessible set it to `True`. To make the
|
@@ -1834,14 +1490,6 @@ module Aws::AppRunner
|
|
1834
1490
|
# endpoint is an Amazon Web Services PrivateLink resource that allows
|
1835
1491
|
# access to your App Runner services from within an Amazon VPC.
|
1836
1492
|
#
|
1837
|
-
# @note When making an API call, you may pass IngressVpcConfiguration
|
1838
|
-
# data as a hash:
|
1839
|
-
#
|
1840
|
-
# {
|
1841
|
-
# vpc_id: "String",
|
1842
|
-
# vpc_endpoint_id: "String",
|
1843
|
-
# }
|
1844
|
-
#
|
1845
1493
|
# @!attribute [rw] vpc_id
|
1846
1494
|
# The ID of the VPC that is used for the VPC endpoint.
|
1847
1495
|
# @return [String]
|
@@ -1862,15 +1510,6 @@ module Aws::AppRunner
|
|
1862
1510
|
# Describes the runtime configuration of an App Runner service instance
|
1863
1511
|
# (scaling unit).
|
1864
1512
|
#
|
1865
|
-
# @note When making an API call, you may pass InstanceConfiguration
|
1866
|
-
# data as a hash:
|
1867
|
-
#
|
1868
|
-
# {
|
1869
|
-
# cpu: "Cpu",
|
1870
|
-
# memory: "Memory",
|
1871
|
-
# instance_role_arn: "RoleArn",
|
1872
|
-
# }
|
1873
|
-
#
|
1874
1513
|
# @!attribute [rw] cpu
|
1875
1514
|
# The number of CPU units reserved for each instance of your App
|
1876
1515
|
# Runner service.
|
@@ -1942,16 +1581,6 @@ module Aws::AppRunner
|
|
1942
1581
|
include Aws::Structure
|
1943
1582
|
end
|
1944
1583
|
|
1945
|
-
# @note When making an API call, you may pass ListAutoScalingConfigurationsRequest
|
1946
|
-
# data as a hash:
|
1947
|
-
#
|
1948
|
-
# {
|
1949
|
-
# auto_scaling_configuration_name: "AutoScalingConfigurationName",
|
1950
|
-
# latest_only: false,
|
1951
|
-
# max_results: 1,
|
1952
|
-
# next_token: "NextToken",
|
1953
|
-
# }
|
1954
|
-
#
|
1955
1584
|
# @!attribute [rw] auto_scaling_configuration_name
|
1956
1585
|
# The name of the App Runner auto scaling configuration that you want
|
1957
1586
|
# to list. If specified, App Runner lists revisions that share this
|
@@ -2018,15 +1647,6 @@ module Aws::AppRunner
|
|
2018
1647
|
include Aws::Structure
|
2019
1648
|
end
|
2020
1649
|
|
2021
|
-
# @note When making an API call, you may pass ListConnectionsRequest
|
2022
|
-
# data as a hash:
|
2023
|
-
#
|
2024
|
-
# {
|
2025
|
-
# connection_name: "ConnectionName",
|
2026
|
-
# max_results: 1,
|
2027
|
-
# next_token: "NextToken",
|
2028
|
-
# }
|
2029
|
-
#
|
2030
1650
|
# @!attribute [rw] connection_name
|
2031
1651
|
# If specified, only this connection is returned. If not specified,
|
2032
1652
|
# the result isn't filtered by name.
|
@@ -2080,16 +1700,6 @@ module Aws::AppRunner
|
|
2080
1700
|
include Aws::Structure
|
2081
1701
|
end
|
2082
1702
|
|
2083
|
-
# @note When making an API call, you may pass ListObservabilityConfigurationsRequest
|
2084
|
-
# data as a hash:
|
2085
|
-
#
|
2086
|
-
# {
|
2087
|
-
# observability_configuration_name: "ObservabilityConfigurationName",
|
2088
|
-
# latest_only: false,
|
2089
|
-
# max_results: 1,
|
2090
|
-
# next_token: "NextToken",
|
2091
|
-
# }
|
2092
|
-
#
|
2093
1703
|
# @!attribute [rw] observability_configuration_name
|
2094
1704
|
# The name of the App Runner observability configuration that you want
|
2095
1705
|
# to list. If specified, App Runner lists revisions that share this
|
@@ -2156,15 +1766,6 @@ module Aws::AppRunner
|
|
2156
1766
|
include Aws::Structure
|
2157
1767
|
end
|
2158
1768
|
|
2159
|
-
# @note When making an API call, you may pass ListOperationsRequest
|
2160
|
-
# data as a hash:
|
2161
|
-
#
|
2162
|
-
# {
|
2163
|
-
# service_arn: "AppRunnerResourceArn", # required
|
2164
|
-
# next_token: "String",
|
2165
|
-
# max_results: 1,
|
2166
|
-
# }
|
2167
|
-
#
|
2168
1769
|
# @!attribute [rw] service_arn
|
2169
1770
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
2170
1771
|
# want a list of operations for.
|
@@ -2218,14 +1819,6 @@ module Aws::AppRunner
|
|
2218
1819
|
include Aws::Structure
|
2219
1820
|
end
|
2220
1821
|
|
2221
|
-
# @note When making an API call, you may pass ListServicesRequest
|
2222
|
-
# data as a hash:
|
2223
|
-
#
|
2224
|
-
# {
|
2225
|
-
# next_token: "String",
|
2226
|
-
# max_results: 1,
|
2227
|
-
# }
|
2228
|
-
#
|
2229
1822
|
# @!attribute [rw] next_token
|
2230
1823
|
# A token from a previous result page. Used for a paginated request.
|
2231
1824
|
# The request retrieves the next result page. All other parameter
|
@@ -2273,13 +1866,6 @@ module Aws::AppRunner
|
|
2273
1866
|
include Aws::Structure
|
2274
1867
|
end
|
2275
1868
|
|
2276
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2277
|
-
# data as a hash:
|
2278
|
-
#
|
2279
|
-
# {
|
2280
|
-
# resource_arn: "AppRunnerResourceArn", # required
|
2281
|
-
# }
|
2282
|
-
#
|
2283
1869
|
# @!attribute [rw] resource_arn
|
2284
1870
|
# The Amazon Resource Name (ARN) of the resource that a tag list is
|
2285
1871
|
# requested for.
|
@@ -2308,14 +1894,6 @@ module Aws::AppRunner
|
|
2308
1894
|
include Aws::Structure
|
2309
1895
|
end
|
2310
1896
|
|
2311
|
-
# @note When making an API call, you may pass ListVpcConnectorsRequest
|
2312
|
-
# data as a hash:
|
2313
|
-
#
|
2314
|
-
# {
|
2315
|
-
# max_results: 1,
|
2316
|
-
# next_token: "NextToken",
|
2317
|
-
# }
|
2318
|
-
#
|
2319
1897
|
# @!attribute [rw] max_results
|
2320
1898
|
# The maximum number of results to include in each response (result
|
2321
1899
|
# page). It's used for a paginated request.
|
@@ -2367,14 +1945,6 @@ module Aws::AppRunner
|
|
2367
1945
|
# provided. It can return either `ServiceArn` or `VpcEndpointId`, or
|
2368
1946
|
# both.
|
2369
1947
|
#
|
2370
|
-
# @note When making an API call, you may pass ListVpcIngressConnectionsFilter
|
2371
|
-
# data as a hash:
|
2372
|
-
#
|
2373
|
-
# {
|
2374
|
-
# service_arn: "AppRunnerResourceArn",
|
2375
|
-
# vpc_endpoint_id: "String",
|
2376
|
-
# }
|
2377
|
-
#
|
2378
1948
|
# @!attribute [rw] service_arn
|
2379
1949
|
# The Amazon Resource Name (ARN) of a service to filter by.
|
2380
1950
|
# @return [String]
|
@@ -2392,18 +1962,6 @@ module Aws::AppRunner
|
|
2392
1962
|
include Aws::Structure
|
2393
1963
|
end
|
2394
1964
|
|
2395
|
-
# @note When making an API call, you may pass ListVpcIngressConnectionsRequest
|
2396
|
-
# data as a hash:
|
2397
|
-
#
|
2398
|
-
# {
|
2399
|
-
# filter: {
|
2400
|
-
# service_arn: "AppRunnerResourceArn",
|
2401
|
-
# vpc_endpoint_id: "String",
|
2402
|
-
# },
|
2403
|
-
# max_results: 1,
|
2404
|
-
# next_token: "NextToken",
|
2405
|
-
# }
|
2406
|
-
#
|
2407
1965
|
# @!attribute [rw] filter
|
2408
1966
|
# The VPC Ingress Connections to be listed based on either the Service
|
2409
1967
|
# Arn or Vpc Endpoint Id, or both.
|
@@ -2461,19 +2019,6 @@ module Aws::AppRunner
|
|
2461
2019
|
# Runner service. Consists of embedded objects for each configurable
|
2462
2020
|
# network feature.
|
2463
2021
|
#
|
2464
|
-
# @note When making an API call, you may pass NetworkConfiguration
|
2465
|
-
# data as a hash:
|
2466
|
-
#
|
2467
|
-
# {
|
2468
|
-
# egress_configuration: {
|
2469
|
-
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
2470
|
-
# vpc_connector_arn: "AppRunnerResourceArn",
|
2471
|
-
# },
|
2472
|
-
# ingress_configuration: {
|
2473
|
-
# is_publicly_accessible: false,
|
2474
|
-
# },
|
2475
|
-
# }
|
2476
|
-
#
|
2477
2022
|
# @!attribute [rw] egress_configuration
|
2478
2023
|
# Network configuration settings for outbound message traffic.
|
2479
2024
|
# @return [Types::EgressConfiguration]
|
@@ -2647,13 +2192,6 @@ module Aws::AppRunner
|
|
2647
2192
|
include Aws::Structure
|
2648
2193
|
end
|
2649
2194
|
|
2650
|
-
# @note When making an API call, you may pass PauseServiceRequest
|
2651
|
-
# data as a hash:
|
2652
|
-
#
|
2653
|
-
# {
|
2654
|
-
# service_arn: "AppRunnerResourceArn", # required
|
2655
|
-
# }
|
2656
|
-
#
|
2657
2195
|
# @!attribute [rw] service_arn
|
2658
2196
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
2659
2197
|
# want to pause.
|
@@ -2701,13 +2239,6 @@ module Aws::AppRunner
|
|
2701
2239
|
include Aws::Structure
|
2702
2240
|
end
|
2703
2241
|
|
2704
|
-
# @note When making an API call, you may pass ResumeServiceRequest
|
2705
|
-
# data as a hash:
|
2706
|
-
#
|
2707
|
-
# {
|
2708
|
-
# service_arn: "AppRunnerResourceArn", # required
|
2709
|
-
# }
|
2710
|
-
#
|
2711
2242
|
# @!attribute [rw] service_arn
|
2712
2243
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
2713
2244
|
# want to resume.
|
@@ -2872,14 +2403,6 @@ module Aws::AppRunner
|
|
2872
2403
|
# choose to enable. They're configured in a separate resource that you
|
2873
2404
|
# associate with your service.
|
2874
2405
|
#
|
2875
|
-
# @note When making an API call, you may pass ServiceObservabilityConfiguration
|
2876
|
-
# data as a hash:
|
2877
|
-
#
|
2878
|
-
# {
|
2879
|
-
# observability_enabled: false, # required
|
2880
|
-
# observability_configuration_arn: "AppRunnerResourceArn",
|
2881
|
-
# }
|
2882
|
-
#
|
2883
2406
|
# @!attribute [rw] observability_enabled
|
2884
2407
|
# When `true`, an observability configuration resource is associated
|
2885
2408
|
# with the service, and an `ObservabilityConfigurationArn` is
|
@@ -3007,14 +2530,6 @@ module Aws::AppRunner
|
|
3007
2530
|
# Identifies a version of code that App Runner refers to within a source
|
3008
2531
|
# code repository.
|
3009
2532
|
#
|
3010
|
-
# @note When making an API call, you may pass SourceCodeVersion
|
3011
|
-
# data as a hash:
|
3012
|
-
#
|
3013
|
-
# {
|
3014
|
-
# type: "BRANCH", # required, accepts BRANCH
|
3015
|
-
# value: "String", # required
|
3016
|
-
# }
|
3017
|
-
#
|
3018
2533
|
# @!attribute [rw] type
|
3019
2534
|
# The type of version identifier.
|
3020
2535
|
#
|
@@ -3040,47 +2555,6 @@ module Aws::AppRunner
|
|
3040
2555
|
# Describes the source deployed to an App Runner service. It can be a
|
3041
2556
|
# code or an image repository.
|
3042
2557
|
#
|
3043
|
-
# @note When making an API call, you may pass SourceConfiguration
|
3044
|
-
# data as a hash:
|
3045
|
-
#
|
3046
|
-
# {
|
3047
|
-
# code_repository: {
|
3048
|
-
# repository_url: "String", # required
|
3049
|
-
# source_code_version: { # required
|
3050
|
-
# type: "BRANCH", # required, accepts BRANCH
|
3051
|
-
# value: "String", # required
|
3052
|
-
# },
|
3053
|
-
# code_configuration: {
|
3054
|
-
# configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
|
3055
|
-
# code_configuration_values: {
|
3056
|
-
# runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
|
3057
|
-
# build_command: "BuildCommand",
|
3058
|
-
# start_command: "StartCommand",
|
3059
|
-
# port: "String",
|
3060
|
-
# runtime_environment_variables: {
|
3061
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
3062
|
-
# },
|
3063
|
-
# },
|
3064
|
-
# },
|
3065
|
-
# },
|
3066
|
-
# image_repository: {
|
3067
|
-
# image_identifier: "ImageIdentifier", # required
|
3068
|
-
# image_configuration: {
|
3069
|
-
# runtime_environment_variables: {
|
3070
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
3071
|
-
# },
|
3072
|
-
# start_command: "StartCommand",
|
3073
|
-
# port: "String",
|
3074
|
-
# },
|
3075
|
-
# image_repository_type: "ECR", # required, accepts ECR, ECR_PUBLIC
|
3076
|
-
# },
|
3077
|
-
# auto_deployments_enabled: false,
|
3078
|
-
# authentication_configuration: {
|
3079
|
-
# connection_arn: "AppRunnerResourceArn",
|
3080
|
-
# access_role_arn: "RoleArn",
|
3081
|
-
# },
|
3082
|
-
# }
|
3083
|
-
#
|
3084
2558
|
# @!attribute [rw] code_repository
|
3085
2559
|
# The description of a source code repository.
|
3086
2560
|
#
|
@@ -3125,13 +2599,6 @@ module Aws::AppRunner
|
|
3125
2599
|
include Aws::Structure
|
3126
2600
|
end
|
3127
2601
|
|
3128
|
-
# @note When making an API call, you may pass StartDeploymentRequest
|
3129
|
-
# data as a hash:
|
3130
|
-
#
|
3131
|
-
# {
|
3132
|
-
# service_arn: "AppRunnerResourceArn", # required
|
3133
|
-
# }
|
3134
|
-
#
|
3135
2602
|
# @!attribute [rw] service_arn
|
3136
2603
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
3137
2604
|
# want to manually deploy to.
|
@@ -3162,14 +2629,6 @@ module Aws::AppRunner
|
|
3162
2629
|
# Describes a tag that is applied to an App Runner resource. A tag is a
|
3163
2630
|
# metadata item consisting of a key-value pair.
|
3164
2631
|
#
|
3165
|
-
# @note When making an API call, you may pass Tag
|
3166
|
-
# data as a hash:
|
3167
|
-
#
|
3168
|
-
# {
|
3169
|
-
# key: "TagKey",
|
3170
|
-
# value: "TagValue",
|
3171
|
-
# }
|
3172
|
-
#
|
3173
2632
|
# @!attribute [rw] key
|
3174
2633
|
# The key of the tag.
|
3175
2634
|
# @return [String]
|
@@ -3187,19 +2646,6 @@ module Aws::AppRunner
|
|
3187
2646
|
include Aws::Structure
|
3188
2647
|
end
|
3189
2648
|
|
3190
|
-
# @note When making an API call, you may pass TagResourceRequest
|
3191
|
-
# data as a hash:
|
3192
|
-
#
|
3193
|
-
# {
|
3194
|
-
# resource_arn: "AppRunnerResourceArn", # required
|
3195
|
-
# tags: [ # required
|
3196
|
-
# {
|
3197
|
-
# key: "TagKey",
|
3198
|
-
# value: "TagValue",
|
3199
|
-
# },
|
3200
|
-
# ],
|
3201
|
-
# }
|
3202
|
-
#
|
3203
2649
|
# @!attribute [rw] resource_arn
|
3204
2650
|
# The Amazon Resource Name (ARN) of the resource that you want to
|
3205
2651
|
# update tags for.
|
@@ -3230,13 +2676,6 @@ module Aws::AppRunner
|
|
3230
2676
|
# Describes the configuration of the tracing feature within an App
|
3231
2677
|
# Runner observability configuration.
|
3232
2678
|
#
|
3233
|
-
# @note When making an API call, you may pass TraceConfiguration
|
3234
|
-
# data as a hash:
|
3235
|
-
#
|
3236
|
-
# {
|
3237
|
-
# vendor: "AWSXRAY", # required, accepts AWSXRAY
|
3238
|
-
# }
|
3239
|
-
#
|
3240
2679
|
# @!attribute [rw] vendor
|
3241
2680
|
# The implementation provider chosen for tracing App Runner services.
|
3242
2681
|
# @return [String]
|
@@ -3249,14 +2688,6 @@ module Aws::AppRunner
|
|
3249
2688
|
include Aws::Structure
|
3250
2689
|
end
|
3251
2690
|
|
3252
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
3253
|
-
# data as a hash:
|
3254
|
-
#
|
3255
|
-
# {
|
3256
|
-
# resource_arn: "AppRunnerResourceArn", # required
|
3257
|
-
# tag_keys: ["TagKey"], # required
|
3258
|
-
# }
|
3259
|
-
#
|
3260
2691
|
# @!attribute [rw] resource_arn
|
3261
2692
|
# The Amazon Resource Name (ARN) of the resource that you want to
|
3262
2693
|
# remove tags from.
|
@@ -3281,77 +2712,6 @@ module Aws::AppRunner
|
|
3281
2712
|
#
|
3282
2713
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
3283
2714
|
|
3284
|
-
# @note When making an API call, you may pass UpdateServiceRequest
|
3285
|
-
# data as a hash:
|
3286
|
-
#
|
3287
|
-
# {
|
3288
|
-
# service_arn: "AppRunnerResourceArn", # required
|
3289
|
-
# source_configuration: {
|
3290
|
-
# code_repository: {
|
3291
|
-
# repository_url: "String", # required
|
3292
|
-
# source_code_version: { # required
|
3293
|
-
# type: "BRANCH", # required, accepts BRANCH
|
3294
|
-
# value: "String", # required
|
3295
|
-
# },
|
3296
|
-
# code_configuration: {
|
3297
|
-
# configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
|
3298
|
-
# code_configuration_values: {
|
3299
|
-
# runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11, NODEJS_16, GO_1, DOTNET_6, PHP_81, RUBY_31
|
3300
|
-
# build_command: "BuildCommand",
|
3301
|
-
# start_command: "StartCommand",
|
3302
|
-
# port: "String",
|
3303
|
-
# runtime_environment_variables: {
|
3304
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
3305
|
-
# },
|
3306
|
-
# },
|
3307
|
-
# },
|
3308
|
-
# },
|
3309
|
-
# image_repository: {
|
3310
|
-
# image_identifier: "ImageIdentifier", # required
|
3311
|
-
# image_configuration: {
|
3312
|
-
# runtime_environment_variables: {
|
3313
|
-
# "RuntimeEnvironmentVariablesKey" => "RuntimeEnvironmentVariablesValue",
|
3314
|
-
# },
|
3315
|
-
# start_command: "StartCommand",
|
3316
|
-
# port: "String",
|
3317
|
-
# },
|
3318
|
-
# image_repository_type: "ECR", # required, accepts ECR, ECR_PUBLIC
|
3319
|
-
# },
|
3320
|
-
# auto_deployments_enabled: false,
|
3321
|
-
# authentication_configuration: {
|
3322
|
-
# connection_arn: "AppRunnerResourceArn",
|
3323
|
-
# access_role_arn: "RoleArn",
|
3324
|
-
# },
|
3325
|
-
# },
|
3326
|
-
# instance_configuration: {
|
3327
|
-
# cpu: "Cpu",
|
3328
|
-
# memory: "Memory",
|
3329
|
-
# instance_role_arn: "RoleArn",
|
3330
|
-
# },
|
3331
|
-
# auto_scaling_configuration_arn: "AppRunnerResourceArn",
|
3332
|
-
# health_check_configuration: {
|
3333
|
-
# protocol: "TCP", # accepts TCP, HTTP
|
3334
|
-
# path: "HealthCheckPath",
|
3335
|
-
# interval: 1,
|
3336
|
-
# timeout: 1,
|
3337
|
-
# healthy_threshold: 1,
|
3338
|
-
# unhealthy_threshold: 1,
|
3339
|
-
# },
|
3340
|
-
# network_configuration: {
|
3341
|
-
# egress_configuration: {
|
3342
|
-
# egress_type: "DEFAULT", # accepts DEFAULT, VPC
|
3343
|
-
# vpc_connector_arn: "AppRunnerResourceArn",
|
3344
|
-
# },
|
3345
|
-
# ingress_configuration: {
|
3346
|
-
# is_publicly_accessible: false,
|
3347
|
-
# },
|
3348
|
-
# },
|
3349
|
-
# observability_configuration: {
|
3350
|
-
# observability_enabled: false, # required
|
3351
|
-
# observability_configuration_arn: "AppRunnerResourceArn",
|
3352
|
-
# },
|
3353
|
-
# }
|
3354
|
-
#
|
3355
2715
|
# @!attribute [rw] service_arn
|
3356
2716
|
# The Amazon Resource Name (ARN) of the App Runner service that you
|
3357
2717
|
# want to update.
|
@@ -3430,17 +2790,6 @@ module Aws::AppRunner
|
|
3430
2790
|
include Aws::Structure
|
3431
2791
|
end
|
3432
2792
|
|
3433
|
-
# @note When making an API call, you may pass UpdateVpcIngressConnectionRequest
|
3434
|
-
# data as a hash:
|
3435
|
-
#
|
3436
|
-
# {
|
3437
|
-
# vpc_ingress_connection_arn: "AppRunnerResourceArn", # required
|
3438
|
-
# ingress_vpc_configuration: { # required
|
3439
|
-
# vpc_id: "String",
|
3440
|
-
# vpc_endpoint_id: "String",
|
3441
|
-
# },
|
3442
|
-
# }
|
3443
|
-
#
|
3444
2793
|
# @!attribute [rw] vpc_ingress_connection_arn
|
3445
2794
|
# The Amazon Resource Name (Arn) for the App Runner VPC Ingress
|
3446
2795
|
# Connection resource that you want to update.
|