aws-sdk-apprunner 1.2.0 → 1.6.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apprunner/client.rb +65 -53
- data/lib/aws-sdk-apprunner/client_api.rb +2 -1
- data/lib/aws-sdk-apprunner/types.rb +61 -52
- data/lib/aws-sdk-apprunner.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ac7cd6a51ddc9d3ac66586e385df87402055c17b76df066dab1e89e040ccdfe
|
4
|
+
data.tar.gz: a5f78e9bd76ad21a6cb035cb6eae0b8737de3bff94535834e3191e18f31213dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f90eb733cccf8fe48be2a1bba8eecae05dae7106bd6c82d6f173d07a05a0e2c9f2e75a34c03b9981ba706cbeb9c45064069966f8495cca0777c4f9bc72d66b50
|
7
|
+
data.tar.gz: d2fd4b0080bdccbf5e1910ec7f609622d21d8ce93176e60668297cc35933eceab228452f4d79fa12dbf13c5d346005599a5137578e7d9b7c47e00d3fcc49593a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.6.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.5.0 (2021-10-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.4.0 (2021-10-01)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release contains several minor bug fixes.
|
18
|
+
|
19
|
+
1.3.0 (2021-09-01)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.2.0 (2021-07-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.6.0
|
@@ -285,6 +285,15 @@ module Aws::AppRunner
|
|
285
285
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
286
286
|
# requests are made, and retries are disabled.
|
287
287
|
#
|
288
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
289
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
290
|
+
# will be used if available.
|
291
|
+
#
|
292
|
+
# @option options [Boolean] :use_fips_endpoint
|
293
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
294
|
+
# When a `fips` region is used, the region is normalized and this config
|
295
|
+
# is set to `true`.
|
296
|
+
#
|
288
297
|
# @option options [Boolean] :validate_params (true)
|
289
298
|
# When `true`, request parameters are validated before
|
290
299
|
# sending the request.
|
@@ -337,8 +346,8 @@ module Aws::AppRunner
|
|
337
346
|
|
338
347
|
# @!group API Operations
|
339
348
|
|
340
|
-
# Associate your own domain name with the
|
341
|
-
#
|
349
|
+
# Associate your own domain name with the App Runner subdomain URL of
|
350
|
+
# your App Runner service.
|
342
351
|
#
|
343
352
|
# After you call `AssociateCustomDomain` and receive a successful
|
344
353
|
# response, use the information in the CustomDomain record that's
|
@@ -405,7 +414,7 @@ module Aws::AppRunner
|
|
405
414
|
req.send_request(options)
|
406
415
|
end
|
407
416
|
|
408
|
-
# Create an
|
417
|
+
# Create an App Runner automatic scaling configuration resource. App
|
409
418
|
# Runner requires this resource when you create App Runner services that
|
410
419
|
# require non-default auto scaling settings. You can share an auto
|
411
420
|
# scaling configuration across multiple services.
|
@@ -417,17 +426,18 @@ module Aws::AppRunner
|
|
417
426
|
# configuration or a specific revision.
|
418
427
|
#
|
419
428
|
# Configure a higher `MinSize` to increase the spread of your App Runner
|
420
|
-
# service over more Availability Zones in the
|
421
|
-
# is a higher minimal cost.
|
429
|
+
# service over more Availability Zones in the Amazon Web Services
|
430
|
+
# Region. The tradeoff is a higher minimal cost.
|
422
431
|
#
|
423
432
|
# Configure a lower `MaxSize` to control your cost. The tradeoff is
|
424
433
|
# lower responsiveness during peak demand.
|
425
434
|
#
|
426
435
|
# @option params [required, String] :auto_scaling_configuration_name
|
427
436
|
# A name for the auto scaling configuration. When you use it for the
|
428
|
-
# first time in an
|
429
|
-
# this name. When you use the same name in
|
430
|
-
# creates incremental revisions of the
|
437
|
+
# first time in an Amazon Web Services Region, App Runner creates
|
438
|
+
# revision number `1` of this name. When you use the same name in
|
439
|
+
# subsequent calls, App Runner creates incremental revisions of the
|
440
|
+
# configuration.
|
431
441
|
#
|
432
442
|
# @option params [Integer] :max_concurrency
|
433
443
|
# The maximum number of concurrent requests that you want an instance to
|
@@ -502,7 +512,7 @@ module Aws::AppRunner
|
|
502
512
|
req.send_request(options)
|
503
513
|
end
|
504
514
|
|
505
|
-
# Create an
|
515
|
+
# Create an App Runner connection resource. App Runner requires a
|
506
516
|
# connection resource when you create App Runner services that access
|
507
517
|
# private repositories from certain third-party providers. You can share
|
508
518
|
# a connection across multiple services.
|
@@ -513,7 +523,8 @@ module Aws::AppRunner
|
|
513
523
|
#
|
514
524
|
# @option params [required, String] :connection_name
|
515
525
|
# A name for the new connection. It must be unique across all App Runner
|
516
|
-
# connections for the
|
526
|
+
# connections for the Amazon Web Services account in the Amazon Web
|
527
|
+
# Services Region.
|
517
528
|
#
|
518
529
|
# @option params [required, String] :provider_type
|
519
530
|
# The source repository provider.
|
@@ -556,8 +567,8 @@ module Aws::AppRunner
|
|
556
567
|
req.send_request(options)
|
557
568
|
end
|
558
569
|
|
559
|
-
# Create an
|
560
|
-
#
|
570
|
+
# Create an App Runner service. After the service is created, the action
|
571
|
+
# also automatically starts a deployment.
|
561
572
|
#
|
562
573
|
# This is an asynchronous operation. On a successful call, you can use
|
563
574
|
# the returned `OperationId` and the [ListOperations][1] call to track
|
@@ -569,7 +580,8 @@ module Aws::AppRunner
|
|
569
580
|
#
|
570
581
|
# @option params [required, String] :service_name
|
571
582
|
# A name for the new service. It must be unique across all the running
|
572
|
-
# App Runner services in your
|
583
|
+
# App Runner services in your Amazon Web Services account in the Amazon
|
584
|
+
# Web Services Region.
|
573
585
|
#
|
574
586
|
# @option params [required, Types::SourceConfiguration] :source_configuration
|
575
587
|
# The source to deploy to the App Runner service. It can be a code or an
|
@@ -586,11 +598,11 @@ module Aws::AppRunner
|
|
586
598
|
# @option params [Types::EncryptionConfiguration] :encryption_configuration
|
587
599
|
# An optional custom encryption key that App Runner uses to encrypt the
|
588
600
|
# copy of your source repository that it maintains and your service
|
589
|
-
# logs. By default, App Runner uses an
|
601
|
+
# logs. By default, App Runner uses an Amazon Web Services managed CMK.
|
590
602
|
#
|
591
603
|
# @option params [Types::HealthCheckConfiguration] :health_check_configuration
|
592
|
-
# The settings for the health check that
|
593
|
-
#
|
604
|
+
# The settings for the health check that App Runner performs to monitor
|
605
|
+
# the health of your service.
|
594
606
|
#
|
595
607
|
# @option params [String] :auto_scaling_configuration_arn
|
596
608
|
# The Amazon Resource Name (ARN) of an App Runner automatic scaling
|
@@ -660,7 +672,7 @@ module Aws::AppRunner
|
|
660
672
|
# },
|
661
673
|
# health_check_configuration: {
|
662
674
|
# protocol: "TCP", # accepts TCP, HTTP
|
663
|
-
# path: "
|
675
|
+
# path: "HealthCheckPath",
|
664
676
|
# interval: 1,
|
665
677
|
# timeout: 1,
|
666
678
|
# healthy_threshold: 1,
|
@@ -722,9 +734,9 @@ module Aws::AppRunner
|
|
722
734
|
req.send_request(options)
|
723
735
|
end
|
724
736
|
|
725
|
-
# Delete an
|
726
|
-
#
|
727
|
-
#
|
737
|
+
# Delete an App Runner automatic scaling configuration resource. You can
|
738
|
+
# delete a specific revision or the latest active revision. You can't
|
739
|
+
# delete a configuration that's used by one or more App Runner
|
728
740
|
# services.
|
729
741
|
#
|
730
742
|
# @option params [required, String] :auto_scaling_configuration_arn
|
@@ -767,9 +779,9 @@ module Aws::AppRunner
|
|
767
779
|
req.send_request(options)
|
768
780
|
end
|
769
781
|
|
770
|
-
# Delete an
|
771
|
-
#
|
772
|
-
#
|
782
|
+
# Delete an App Runner connection. You must first ensure that there are
|
783
|
+
# no running App Runner services that use this connection. If there are
|
784
|
+
# any, the `DeleteConnection` action fails.
|
773
785
|
#
|
774
786
|
# @option params [required, String] :connection_arn
|
775
787
|
# The Amazon Resource Name (ARN) of the App Runner connection that you
|
@@ -802,7 +814,7 @@ module Aws::AppRunner
|
|
802
814
|
req.send_request(options)
|
803
815
|
end
|
804
816
|
|
805
|
-
# Delete an
|
817
|
+
# Delete an App Runner service.
|
806
818
|
#
|
807
819
|
# This is an asynchronous operation. On a successful call, you can use
|
808
820
|
# the returned `OperationId` and the ListOperations call to track the
|
@@ -876,7 +888,7 @@ module Aws::AppRunner
|
|
876
888
|
req.send_request(options)
|
877
889
|
end
|
878
890
|
|
879
|
-
# Return a full description of an
|
891
|
+
# Return a full description of an App Runner automatic scaling
|
880
892
|
# configuration resource.
|
881
893
|
#
|
882
894
|
# @option params [required, String] :auto_scaling_configuration_arn
|
@@ -920,7 +932,7 @@ module Aws::AppRunner
|
|
920
932
|
end
|
921
933
|
|
922
934
|
# Return a description of custom domain names that are associated with
|
923
|
-
# an
|
935
|
+
# an App Runner service.
|
924
936
|
#
|
925
937
|
# @option params [required, String] :service_arn
|
926
938
|
# The Amazon Resource Name (ARN) of the App Runner service that you want
|
@@ -983,7 +995,7 @@ module Aws::AppRunner
|
|
983
995
|
req.send_request(options)
|
984
996
|
end
|
985
997
|
|
986
|
-
# Return a full description of an
|
998
|
+
# Return a full description of an App Runner service.
|
987
999
|
#
|
988
1000
|
# @option params [required, String] :service_arn
|
989
1001
|
# The Amazon Resource Name (ARN) of the App Runner service that you want
|
@@ -1051,7 +1063,7 @@ module Aws::AppRunner
|
|
1051
1063
|
req.send_request(options)
|
1052
1064
|
end
|
1053
1065
|
|
1054
|
-
# Disassociate a custom domain name from an
|
1066
|
+
# Disassociate a custom domain name from an App Runner service.
|
1055
1067
|
#
|
1056
1068
|
# Certificates tracking domain validity are associated with a custom
|
1057
1069
|
# domain and are stored in [AWS Certificate Manager (ACM)][1]. These
|
@@ -1106,11 +1118,11 @@ module Aws::AppRunner
|
|
1106
1118
|
req.send_request(options)
|
1107
1119
|
end
|
1108
1120
|
|
1109
|
-
# Returns a list of
|
1110
|
-
#
|
1111
|
-
# configuration name or the revisions for all configurations in
|
1112
|
-
# account. You can optionally query only the latest revision of
|
1113
|
-
# requested name.
|
1121
|
+
# Returns a list of App Runner automatic scaling configurations in your
|
1122
|
+
# Amazon Web Services account. You can query the revisions for a
|
1123
|
+
# specific configuration name or the revisions for all configurations in
|
1124
|
+
# your account. You can optionally query only the latest revision of
|
1125
|
+
# each requested name.
|
1114
1126
|
#
|
1115
1127
|
# @option params [String] :auto_scaling_configuration_name
|
1116
1128
|
# The name of the App Runner auto scaling configuration that you want to
|
@@ -1175,8 +1187,8 @@ module Aws::AppRunner
|
|
1175
1187
|
req.send_request(options)
|
1176
1188
|
end
|
1177
1189
|
|
1178
|
-
# Returns a list of
|
1179
|
-
#
|
1190
|
+
# Returns a list of App Runner connections that are associated with your
|
1191
|
+
# Amazon Web Services account.
|
1180
1192
|
#
|
1181
1193
|
# @option params [String] :connection_name
|
1182
1194
|
# If specified, only this connection is returned. If not specified, the
|
@@ -1231,8 +1243,7 @@ module Aws::AppRunner
|
|
1231
1243
|
req.send_request(options)
|
1232
1244
|
end
|
1233
1245
|
|
1234
|
-
# Return a list of operations that occurred on an
|
1235
|
-
# service.
|
1246
|
+
# Return a list of operations that occurred on an App Runner service.
|
1236
1247
|
#
|
1237
1248
|
# The resulting list of OperationSummary objects is sorted in reverse
|
1238
1249
|
# chronological order. The first object on the list represents the last
|
@@ -1294,7 +1305,8 @@ module Aws::AppRunner
|
|
1294
1305
|
req.send_request(options)
|
1295
1306
|
end
|
1296
1307
|
|
1297
|
-
# Returns a list of running
|
1308
|
+
# Returns a list of running App Runner services in your Amazon Web
|
1309
|
+
# Services account.
|
1298
1310
|
#
|
1299
1311
|
# @option params [String] :next_token
|
1300
1312
|
# A token from a previous result page. Used for a paginated request. The
|
@@ -1346,7 +1358,7 @@ module Aws::AppRunner
|
|
1346
1358
|
req.send_request(options)
|
1347
1359
|
end
|
1348
1360
|
|
1349
|
-
# List tags that are associated with for an
|
1361
|
+
# List tags that are associated with for an App Runner resource. The
|
1350
1362
|
# response contains a list of tag key-value pairs.
|
1351
1363
|
#
|
1352
1364
|
# @option params [required, String] :resource_arn
|
@@ -1380,7 +1392,7 @@ module Aws::AppRunner
|
|
1380
1392
|
req.send_request(options)
|
1381
1393
|
end
|
1382
1394
|
|
1383
|
-
# Pause an active
|
1395
|
+
# Pause an active App Runner service. App Runner reduces compute
|
1384
1396
|
# capacity for the service to zero and loses state (for example,
|
1385
1397
|
# ephemeral storage is removed).
|
1386
1398
|
#
|
@@ -1456,7 +1468,7 @@ module Aws::AppRunner
|
|
1456
1468
|
req.send_request(options)
|
1457
1469
|
end
|
1458
1470
|
|
1459
|
-
# Resume an active
|
1471
|
+
# Resume an active App Runner service. App Runner provisions compute
|
1460
1472
|
# capacity for the service.
|
1461
1473
|
#
|
1462
1474
|
# This is an asynchronous operation. On a successful call, you can use
|
@@ -1532,8 +1544,8 @@ module Aws::AppRunner
|
|
1532
1544
|
end
|
1533
1545
|
|
1534
1546
|
# Initiate a manual deployment of the latest commit in a source code
|
1535
|
-
# repository or the latest image in a source image repository to an
|
1536
|
-
#
|
1547
|
+
# repository or the latest image in a source image repository to an App
|
1548
|
+
# Runner service.
|
1537
1549
|
#
|
1538
1550
|
# For a source code repository, App Runner retrieves the commit and
|
1539
1551
|
# builds a Docker image. For a source image repository, App Runner
|
@@ -1638,12 +1650,12 @@ module Aws::AppRunner
|
|
1638
1650
|
req.send_request(options)
|
1639
1651
|
end
|
1640
1652
|
|
1641
|
-
# Update an
|
1642
|
-
#
|
1643
|
-
#
|
1644
|
-
#
|
1645
|
-
#
|
1646
|
-
#
|
1653
|
+
# Update an App Runner service. You can update the source configuration
|
1654
|
+
# and instance configuration of the service. You can also update the ARN
|
1655
|
+
# of the auto scaling configuration resource that's associated with the
|
1656
|
+
# service. However, you can't change the name or the encryption
|
1657
|
+
# configuration of the service. These can be set only when you create
|
1658
|
+
# the service.
|
1647
1659
|
#
|
1648
1660
|
# To update the tags applied to your service, use the separate actions
|
1649
1661
|
# TagResource and UntagResource.
|
@@ -1677,8 +1689,8 @@ module Aws::AppRunner
|
|
1677
1689
|
# configuration resource that you want to associate with your service.
|
1678
1690
|
#
|
1679
1691
|
# @option params [Types::HealthCheckConfiguration] :health_check_configuration
|
1680
|
-
# The settings for the health check that
|
1681
|
-
#
|
1692
|
+
# The settings for the health check that App Runner performs to monitor
|
1693
|
+
# the health of your service.
|
1682
1694
|
#
|
1683
1695
|
# @return [Types::UpdateServiceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1684
1696
|
#
|
@@ -1734,7 +1746,7 @@ module Aws::AppRunner
|
|
1734
1746
|
# auto_scaling_configuration_arn: "AppRunnerResourceArn",
|
1735
1747
|
# health_check_configuration: {
|
1736
1748
|
# protocol: "TCP", # accepts TCP, HTTP
|
1737
|
-
# path: "
|
1749
|
+
# path: "HealthCheckPath",
|
1738
1750
|
# interval: 1,
|
1739
1751
|
# timeout: 1,
|
1740
1752
|
# healthy_threshold: 1,
|
@@ -1808,7 +1820,7 @@ module Aws::AppRunner
|
|
1808
1820
|
params: params,
|
1809
1821
|
config: config)
|
1810
1822
|
context[:gem_name] = 'aws-sdk-apprunner'
|
1811
|
-
context[:gem_version] = '1.
|
1823
|
+
context[:gem_version] = '1.6.0'
|
1812
1824
|
Seahorse::Client::Request.new(handlers, context)
|
1813
1825
|
end
|
1814
1826
|
|
@@ -70,6 +70,7 @@ module Aws::AppRunner
|
|
70
70
|
HealthCheckConfiguration = Shapes::StructureShape.new(name: 'HealthCheckConfiguration')
|
71
71
|
HealthCheckHealthyThreshold = Shapes::IntegerShape.new(name: 'HealthCheckHealthyThreshold')
|
72
72
|
HealthCheckInterval = Shapes::IntegerShape.new(name: 'HealthCheckInterval')
|
73
|
+
HealthCheckPath = Shapes::StringShape.new(name: 'HealthCheckPath')
|
73
74
|
HealthCheckProtocol = Shapes::StringShape.new(name: 'HealthCheckProtocol')
|
74
75
|
HealthCheckTimeout = Shapes::IntegerShape.new(name: 'HealthCheckTimeout')
|
75
76
|
HealthCheckUnhealthyThreshold = Shapes::IntegerShape.new(name: 'HealthCheckUnhealthyThreshold')
|
@@ -309,7 +310,7 @@ module Aws::AppRunner
|
|
309
310
|
EncryptionConfiguration.struct_class = Types::EncryptionConfiguration
|
310
311
|
|
311
312
|
HealthCheckConfiguration.add_member(:protocol, Shapes::ShapeRef.new(shape: HealthCheckProtocol, location_name: "Protocol"))
|
312
|
-
HealthCheckConfiguration.add_member(:path, Shapes::ShapeRef.new(shape:
|
313
|
+
HealthCheckConfiguration.add_member(:path, Shapes::ShapeRef.new(shape: HealthCheckPath, location_name: "Path"))
|
313
314
|
HealthCheckConfiguration.add_member(:interval, Shapes::ShapeRef.new(shape: HealthCheckInterval, location_name: "Interval"))
|
314
315
|
HealthCheckConfiguration.add_member(:timeout, Shapes::ShapeRef.new(shape: HealthCheckTimeout, location_name: "Timeout"))
|
315
316
|
HealthCheckConfiguration.add_member(:healthy_threshold, Shapes::ShapeRef.new(shape: HealthCheckHealthyThreshold, location_name: "HealthyThreshold"))
|
@@ -105,14 +105,14 @@ module Aws::AppRunner
|
|
105
105
|
include Aws::Structure
|
106
106
|
end
|
107
107
|
|
108
|
-
# Describes an
|
108
|
+
# Describes an App Runner automatic scaling configuration resource.
|
109
109
|
# Multiple revisions of a configuration have the same
|
110
110
|
# `AutoScalingConfigurationName` and different
|
111
111
|
# `AutoScalingConfigurationRevision` values.
|
112
112
|
#
|
113
113
|
# A higher `MinSize` increases the spread of your App Runner service
|
114
|
-
# over more Availability Zones in the
|
115
|
-
# higher minimal cost.
|
114
|
+
# over more Availability Zones in the Amazon Web Services Region. The
|
115
|
+
# tradeoff is a higher minimal cost.
|
116
116
|
#
|
117
117
|
# A lower `MaxSize` controls your cost. The tradeoff is lower
|
118
118
|
# responsiveness during peak demand.
|
@@ -197,7 +197,7 @@ module Aws::AppRunner
|
|
197
197
|
include Aws::Structure
|
198
198
|
end
|
199
199
|
|
200
|
-
# Provides summary information about an
|
200
|
+
# Provides summary information about an App Runner automatic scaling
|
201
201
|
# configuration resource.
|
202
202
|
#
|
203
203
|
# This type contains limited information about an auto scaling
|
@@ -269,8 +269,8 @@ module Aws::AppRunner
|
|
269
269
|
include Aws::Structure
|
270
270
|
end
|
271
271
|
|
272
|
-
# Describes the configuration that
|
273
|
-
#
|
272
|
+
# Describes the configuration that App Runner uses to build and run an
|
273
|
+
# App Runner service from a source code repository.
|
274
274
|
#
|
275
275
|
# @note When making an API call, you may pass CodeConfiguration
|
276
276
|
# data as a hash:
|
@@ -318,7 +318,7 @@ module Aws::AppRunner
|
|
318
318
|
end
|
319
319
|
|
320
320
|
# Describes the basic configuration needed for building and running an
|
321
|
-
#
|
321
|
+
# App Runner service. This type doesn't support the full set of
|
322
322
|
# possible configuration options. Fur full configuration capabilities,
|
323
323
|
# use a `apprunner.yaml` file in the source code repository.
|
324
324
|
#
|
@@ -420,7 +420,7 @@ module Aws::AppRunner
|
|
420
420
|
include Aws::Structure
|
421
421
|
end
|
422
422
|
|
423
|
-
# Describes an
|
423
|
+
# Describes an App Runner connection resource.
|
424
424
|
#
|
425
425
|
# @!attribute [rw] connection_name
|
426
426
|
# The customer-provided connection name.
|
@@ -457,8 +457,7 @@ module Aws::AppRunner
|
|
457
457
|
include Aws::Structure
|
458
458
|
end
|
459
459
|
|
460
|
-
# Provides summary information about an
|
461
|
-
# resource.
|
460
|
+
# Provides summary information about an App Runner connection resource.
|
462
461
|
#
|
463
462
|
# @!attribute [rw] connection_name
|
464
463
|
# The customer-provided connection name.
|
@@ -513,9 +512,10 @@ module Aws::AppRunner
|
|
513
512
|
#
|
514
513
|
# @!attribute [rw] auto_scaling_configuration_name
|
515
514
|
# A name for the auto scaling configuration. When you use it for the
|
516
|
-
# first time in an
|
517
|
-
# of this name. When you use the same name in
|
518
|
-
# Runner creates incremental revisions of the
|
515
|
+
# first time in an Amazon Web Services Region, App Runner creates
|
516
|
+
# revision number `1` of this name. When you use the same name in
|
517
|
+
# subsequent calls, App Runner creates incremental revisions of the
|
518
|
+
# configuration.
|
519
519
|
# @return [String]
|
520
520
|
#
|
521
521
|
# @!attribute [rw] max_concurrency
|
@@ -595,7 +595,8 @@ module Aws::AppRunner
|
|
595
595
|
#
|
596
596
|
# @!attribute [rw] connection_name
|
597
597
|
# A name for the new connection. It must be unique across all App
|
598
|
-
# Runner connections for the
|
598
|
+
# Runner connections for the Amazon Web Services account in the Amazon
|
599
|
+
# Web Services Region.
|
599
600
|
# @return [String]
|
600
601
|
#
|
601
602
|
# @!attribute [rw] provider_type
|
@@ -688,7 +689,7 @@ module Aws::AppRunner
|
|
688
689
|
# },
|
689
690
|
# health_check_configuration: {
|
690
691
|
# protocol: "TCP", # accepts TCP, HTTP
|
691
|
-
# path: "
|
692
|
+
# path: "HealthCheckPath",
|
692
693
|
# interval: 1,
|
693
694
|
# timeout: 1,
|
694
695
|
# healthy_threshold: 1,
|
@@ -699,7 +700,8 @@ module Aws::AppRunner
|
|
699
700
|
#
|
700
701
|
# @!attribute [rw] service_name
|
701
702
|
# A name for the new service. It must be unique across all the running
|
702
|
-
# App Runner services in your
|
703
|
+
# App Runner services in your Amazon Web Services account in the
|
704
|
+
# Amazon Web Services Region.
|
703
705
|
# @return [String]
|
704
706
|
#
|
705
707
|
# @!attribute [rw] source_configuration
|
@@ -720,11 +722,12 @@ module Aws::AppRunner
|
|
720
722
|
# @!attribute [rw] encryption_configuration
|
721
723
|
# An optional custom encryption key that App Runner uses to encrypt
|
722
724
|
# the copy of your source repository that it maintains and your
|
723
|
-
# service logs. By default, App Runner uses an
|
725
|
+
# service logs. By default, App Runner uses an Amazon Web Services
|
726
|
+
# managed CMK.
|
724
727
|
# @return [Types::EncryptionConfiguration]
|
725
728
|
#
|
726
729
|
# @!attribute [rw] health_check_configuration
|
727
|
-
# The settings for the health check that
|
730
|
+
# The settings for the health check that App Runner performs to
|
728
731
|
# monitor the health of your service.
|
729
732
|
# @return [Types::HealthCheckConfiguration]
|
730
733
|
#
|
@@ -773,7 +776,7 @@ module Aws::AppRunner
|
|
773
776
|
include Aws::Structure
|
774
777
|
end
|
775
778
|
|
776
|
-
# Describes a custom domain that's associated with an
|
779
|
+
# Describes a custom domain that's associated with an App Runner
|
777
780
|
# service.
|
778
781
|
#
|
779
782
|
# @!attribute [rw] domain_name
|
@@ -1113,7 +1116,7 @@ module Aws::AppRunner
|
|
1113
1116
|
include Aws::Structure
|
1114
1117
|
end
|
1115
1118
|
|
1116
|
-
# Describes a custom encryption key that
|
1119
|
+
# Describes a custom encryption key that App Runner uses to encrypt
|
1117
1120
|
# copies of the source repository and service logs.
|
1118
1121
|
#
|
1119
1122
|
# @note When making an API call, you may pass EncryptionConfiguration
|
@@ -1135,15 +1138,15 @@ module Aws::AppRunner
|
|
1135
1138
|
include Aws::Structure
|
1136
1139
|
end
|
1137
1140
|
|
1138
|
-
# Describes the settings for the health check that
|
1139
|
-
#
|
1141
|
+
# Describes the settings for the health check that App Runner performs
|
1142
|
+
# to monitor the health of a service.
|
1140
1143
|
#
|
1141
1144
|
# @note When making an API call, you may pass HealthCheckConfiguration
|
1142
1145
|
# data as a hash:
|
1143
1146
|
#
|
1144
1147
|
# {
|
1145
1148
|
# protocol: "TCP", # accepts TCP, HTTP
|
1146
|
-
# path: "
|
1149
|
+
# path: "HealthCheckPath",
|
1147
1150
|
# interval: 1,
|
1148
1151
|
# timeout: 1,
|
1149
1152
|
# healthy_threshold: 1,
|
@@ -1185,14 +1188,14 @@ module Aws::AppRunner
|
|
1185
1188
|
# The number of consecutive checks that must succeed before App Runner
|
1186
1189
|
# decides that the service is healthy.
|
1187
1190
|
#
|
1188
|
-
# Default: `
|
1191
|
+
# Default: `1`
|
1189
1192
|
# @return [Integer]
|
1190
1193
|
#
|
1191
1194
|
# @!attribute [rw] unhealthy_threshold
|
1192
1195
|
# The number of consecutive checks that must fail before App Runner
|
1193
1196
|
# decides that the service is unhealthy.
|
1194
1197
|
#
|
1195
|
-
# Default: `
|
1198
|
+
# Default: `5`
|
1196
1199
|
# @return [Integer]
|
1197
1200
|
#
|
1198
1201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/HealthCheckConfiguration AWS API Documentation
|
@@ -1208,8 +1211,8 @@ module Aws::AppRunner
|
|
1208
1211
|
include Aws::Structure
|
1209
1212
|
end
|
1210
1213
|
|
1211
|
-
# Describes the configuration that
|
1212
|
-
#
|
1214
|
+
# Describes the configuration that App Runner uses to run an App Runner
|
1215
|
+
# service using an image pulled from a source image repository.
|
1213
1216
|
#
|
1214
1217
|
# @note When making an API call, you may pass ImageConfiguration
|
1215
1218
|
# data as a hash:
|
@@ -1298,8 +1301,8 @@ module Aws::AppRunner
|
|
1298
1301
|
include Aws::Structure
|
1299
1302
|
end
|
1300
1303
|
|
1301
|
-
# Describes the runtime configuration of an
|
1302
|
-
#
|
1304
|
+
# Describes the runtime configuration of an App Runner service instance
|
1305
|
+
# (scaling unit).
|
1303
1306
|
#
|
1304
1307
|
# @note When making an API call, you may pass InstanceConfiguration
|
1305
1308
|
# data as a hash:
|
@@ -1327,7 +1330,7 @@ module Aws::AppRunner
|
|
1327
1330
|
# @!attribute [rw] instance_role_arn
|
1328
1331
|
# The Amazon Resource Name (ARN) of an IAM role that provides
|
1329
1332
|
# permissions to your App Runner service. These are permissions that
|
1330
|
-
# your code needs when it calls any
|
1333
|
+
# your code needs when it calls any Amazon Web Services APIs.
|
1331
1334
|
# @return [String]
|
1332
1335
|
#
|
1333
1336
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/InstanceConfiguration AWS API Documentation
|
@@ -1671,8 +1674,8 @@ module Aws::AppRunner
|
|
1671
1674
|
include Aws::Structure
|
1672
1675
|
end
|
1673
1676
|
|
1674
|
-
# Provides summary information for an operation that occurred on an
|
1675
|
-
#
|
1677
|
+
# Provides summary information for an operation that occurred on an App
|
1678
|
+
# Runner service.
|
1676
1679
|
#
|
1677
1680
|
# @!attribute [rw] id
|
1678
1681
|
# A unique ID of this operation. It's unique in the scope of the App
|
@@ -1762,7 +1765,7 @@ module Aws::AppRunner
|
|
1762
1765
|
end
|
1763
1766
|
|
1764
1767
|
# A resource doesn't exist for the specified Amazon Resource Name (ARN)
|
1765
|
-
# in your
|
1768
|
+
# in your Amazon Web Services account.
|
1766
1769
|
#
|
1767
1770
|
# @!attribute [rw] message
|
1768
1771
|
# @return [String]
|
@@ -1815,7 +1818,7 @@ module Aws::AppRunner
|
|
1815
1818
|
include Aws::Structure
|
1816
1819
|
end
|
1817
1820
|
|
1818
|
-
# Describes an
|
1821
|
+
# Describes an App Runner service. It can describe a service in any
|
1819
1822
|
# state, including deleted services.
|
1820
1823
|
#
|
1821
1824
|
# This type contains the full information about a service, including
|
@@ -1838,7 +1841,7 @@ module Aws::AppRunner
|
|
1838
1841
|
#
|
1839
1842
|
# @!attribute [rw] service_id
|
1840
1843
|
# An ID that App Runner generated for this service. It's unique
|
1841
|
-
# within the
|
1844
|
+
# within the Amazon Web Services Region.
|
1842
1845
|
# @return [String]
|
1843
1846
|
#
|
1844
1847
|
# @!attribute [rw] service_arn
|
@@ -1897,7 +1900,7 @@ module Aws::AppRunner
|
|
1897
1900
|
# The encryption key that App Runner uses to encrypt the service logs
|
1898
1901
|
# and the copy of the source repository that App Runner maintains for
|
1899
1902
|
# the service. It can be either a customer-provided encryption key or
|
1900
|
-
# an
|
1903
|
+
# an Amazon Web Services managed CMK.
|
1901
1904
|
# @return [Types::EncryptionConfiguration]
|
1902
1905
|
#
|
1903
1906
|
# @!attribute [rw] health_check_configuration
|
@@ -1933,8 +1936,8 @@ module Aws::AppRunner
|
|
1933
1936
|
# App Runner can't create this resource. You've reached your account
|
1934
1937
|
# quota for this resource type.
|
1935
1938
|
#
|
1936
|
-
# For App Runner per-resource quotas, see [
|
1937
|
-
# quotas][1] in the *
|
1939
|
+
# For App Runner per-resource quotas, see [App Runner endpoints and
|
1940
|
+
# quotas][1] in the *Amazon Web Services General Reference*.
|
1938
1941
|
#
|
1939
1942
|
#
|
1940
1943
|
#
|
@@ -1951,7 +1954,7 @@ module Aws::AppRunner
|
|
1951
1954
|
include Aws::Structure
|
1952
1955
|
end
|
1953
1956
|
|
1954
|
-
# Provides summary information for an
|
1957
|
+
# Provides summary information for an App Runner service.
|
1955
1958
|
#
|
1956
1959
|
# This type contains limited information about a service. It doesn't
|
1957
1960
|
# include configuration details. It's returned by the [ListServices][1]
|
@@ -1973,7 +1976,7 @@ module Aws::AppRunner
|
|
1973
1976
|
#
|
1974
1977
|
# @!attribute [rw] service_id
|
1975
1978
|
# An ID that App Runner generated for this service. It's unique
|
1976
|
-
# within the
|
1979
|
+
# within the Amazon Web Services Region.
|
1977
1980
|
# @return [String]
|
1978
1981
|
#
|
1979
1982
|
# @!attribute [rw] service_arn
|
@@ -2026,8 +2029,8 @@ module Aws::AppRunner
|
|
2026
2029
|
include Aws::Structure
|
2027
2030
|
end
|
2028
2031
|
|
2029
|
-
# Identifies a version of code that
|
2030
|
-
#
|
2032
|
+
# Identifies a version of code that App Runner refers to within a source
|
2033
|
+
# code repository.
|
2031
2034
|
#
|
2032
2035
|
# @note When making an API call, you may pass SourceCodeVersion
|
2033
2036
|
# data as a hash:
|
@@ -2059,8 +2062,8 @@ module Aws::AppRunner
|
|
2059
2062
|
include Aws::Structure
|
2060
2063
|
end
|
2061
2064
|
|
2062
|
-
# Describes the source deployed to an
|
2063
|
-
#
|
2065
|
+
# Describes the source deployed to an App Runner service. It can be a
|
2066
|
+
# code or an image repository.
|
2064
2067
|
#
|
2065
2068
|
# @note When making an API call, you may pass SourceConfiguration
|
2066
2069
|
# data as a hash:
|
@@ -2119,10 +2122,16 @@ module Aws::AppRunner
|
|
2119
2122
|
#
|
2120
2123
|
# @!attribute [rw] auto_deployments_enabled
|
2121
2124
|
# If `true`, continuous integration from the source repository is
|
2122
|
-
# enabled for the App Runner service. Each repository change
|
2123
|
-
# code commit or new image version) starts a
|
2124
|
-
#
|
2125
|
-
#
|
2125
|
+
# enabled for the App Runner service. Each repository change
|
2126
|
+
# (including any source code commit or new image version) starts a
|
2127
|
+
# deployment.
|
2128
|
+
#
|
2129
|
+
# Default: App Runner sets to `false` for a source image that uses an
|
2130
|
+
# ECR Public repository or an ECR repository that's in an Amazon Web
|
2131
|
+
# Services account other than the one that the service is in. App
|
2132
|
+
# Runner sets to `true` in all other cases (which currently include a
|
2133
|
+
# source code repository or a source image using a same-account ECR
|
2134
|
+
# repository).
|
2126
2135
|
# @return [Boolean]
|
2127
2136
|
#
|
2128
2137
|
# @!attribute [rw] authentication_configuration
|
@@ -2175,8 +2184,8 @@ module Aws::AppRunner
|
|
2175
2184
|
include Aws::Structure
|
2176
2185
|
end
|
2177
2186
|
|
2178
|
-
# Describes a tag that is applied to an
|
2179
|
-
#
|
2187
|
+
# Describes a tag that is applied to an App Runner resource. A tag is a
|
2188
|
+
# metadata item consisting of a key-value pair.
|
2180
2189
|
#
|
2181
2190
|
# @note When making an API call, you may pass Tag
|
2182
2191
|
# data as a hash:
|
@@ -2325,7 +2334,7 @@ module Aws::AppRunner
|
|
2325
2334
|
# auto_scaling_configuration_arn: "AppRunnerResourceArn",
|
2326
2335
|
# health_check_configuration: {
|
2327
2336
|
# protocol: "TCP", # accepts TCP, HTTP
|
2328
|
-
# path: "
|
2337
|
+
# path: "HealthCheckPath",
|
2329
2338
|
# interval: 1,
|
2330
2339
|
# timeout: 1,
|
2331
2340
|
# healthy_threshold: 1,
|
@@ -2362,7 +2371,7 @@ module Aws::AppRunner
|
|
2362
2371
|
# @return [String]
|
2363
2372
|
#
|
2364
2373
|
# @!attribute [rw] health_check_configuration
|
2365
|
-
# The settings for the health check that
|
2374
|
+
# The settings for the health check that App Runner performs to
|
2366
2375
|
# monitor the health of your service.
|
2367
2376
|
# @return [Types::HealthCheckConfiguration]
|
2368
2377
|
#
|
data/lib/aws-sdk-apprunner.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-apprunner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.122.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|