aws-sdk-apprunner 1.3.0 → 1.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 914e606348eeb055d3054c40fd42bb37fee12afc88d98d932678842fe6e36622
4
- data.tar.gz: 5b48c514e47130400e76ec3b7efd1c27552cfdec26eabf308f214f95d4ee1761
3
+ metadata.gz: 467c7f92f16c4b84bdb19fa4b765625556ca1d1aefb8630e6180078f65321259
4
+ data.tar.gz: 0cfd49dcd576d67010a87a456caf62ba22e7e5f9699d40af492c34d3e7008d19
5
5
  SHA512:
6
- metadata.gz: 64fe33ecb076095577281f72c4e59ac128de0b1772cf12d6595551bcd70836d6a98a063bca5446daaa8a465f225b472807380327e9cfa3dc9f7acb3d5af5e25c
7
- data.tar.gz: 35cc8dad0945dce757cdfa9a5987e7e1b6c41c3518f0b32dcb11cb0806cd601e3173991d905ae5538d261f53a74912a92c6b0bcc68c161800fa7da1c5bbb80c1
6
+ metadata.gz: 5569ea6c08c05ad9b9280e36b7edd477db76e310558eb16e9d38140029881f08a804b353f858fa49591ea9e150ec8c8ef8edca16431ef0cb2689c4516cddd405
7
+ data.tar.gz: c15fb3af747fb264b5eb893064057b7d71419987019b16dc7c648505066552a7d12f19dedc7b41a973d418fee1947c344f6d978da70f5654914d23e885f41b9f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.4.0 (2021-10-01)
5
+ ------------------
6
+
7
+ * Feature - This release contains several minor bug fixes.
8
+
4
9
  1.3.0 (2021-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0
1
+ 1.4.0
@@ -337,8 +337,8 @@ module Aws::AppRunner
337
337
 
338
338
  # @!group API Operations
339
339
 
340
- # Associate your own domain name with the AWS App Runner subdomain URL
341
- # of your App Runner service.
340
+ # Associate your own domain name with the App Runner subdomain URL of
341
+ # your App Runner service.
342
342
  #
343
343
  # After you call `AssociateCustomDomain` and receive a successful
344
344
  # response, use the information in the CustomDomain record that's
@@ -405,7 +405,7 @@ module Aws::AppRunner
405
405
  req.send_request(options)
406
406
  end
407
407
 
408
- # Create an AWS App Runner automatic scaling configuration resource. App
408
+ # Create an App Runner automatic scaling configuration resource. App
409
409
  # Runner requires this resource when you create App Runner services that
410
410
  # require non-default auto scaling settings. You can share an auto
411
411
  # scaling configuration across multiple services.
@@ -417,17 +417,18 @@ module Aws::AppRunner
417
417
  # configuration or a specific revision.
418
418
  #
419
419
  # Configure a higher `MinSize` to increase the spread of your App Runner
420
- # service over more Availability Zones in the AWS Region. The tradeoff
421
- # is a higher minimal cost.
420
+ # service over more Availability Zones in the Amazon Web Services
421
+ # Region. The tradeoff is a higher minimal cost.
422
422
  #
423
423
  # Configure a lower `MaxSize` to control your cost. The tradeoff is
424
424
  # lower responsiveness during peak demand.
425
425
  #
426
426
  # @option params [required, String] :auto_scaling_configuration_name
427
427
  # A name for the auto scaling configuration. When you use it for the
428
- # first time in an AWS Region, App Runner creates revision number `1` of
429
- # this name. When you use the same name in subsequent calls, App Runner
430
- # creates incremental revisions of the configuration.
428
+ # first time in an Amazon Web Services Region, App Runner creates
429
+ # revision number `1` of this name. When you use the same name in
430
+ # subsequent calls, App Runner creates incremental revisions of the
431
+ # configuration.
431
432
  #
432
433
  # @option params [Integer] :max_concurrency
433
434
  # The maximum number of concurrent requests that you want an instance to
@@ -502,7 +503,7 @@ module Aws::AppRunner
502
503
  req.send_request(options)
503
504
  end
504
505
 
505
- # Create an AWS App Runner connection resource. App Runner requires a
506
+ # Create an App Runner connection resource. App Runner requires a
506
507
  # connection resource when you create App Runner services that access
507
508
  # private repositories from certain third-party providers. You can share
508
509
  # a connection across multiple services.
@@ -513,7 +514,8 @@ module Aws::AppRunner
513
514
  #
514
515
  # @option params [required, String] :connection_name
515
516
  # A name for the new connection. It must be unique across all App Runner
516
- # connections for the AWS account in the AWS Region.
517
+ # connections for the Amazon Web Services account in the Amazon Web
518
+ # Services Region.
517
519
  #
518
520
  # @option params [required, String] :provider_type
519
521
  # The source repository provider.
@@ -556,8 +558,8 @@ module Aws::AppRunner
556
558
  req.send_request(options)
557
559
  end
558
560
 
559
- # Create an AWS App Runner service. After the service is created, the
560
- # action also automatically starts a deployment.
561
+ # Create an App Runner service. After the service is created, the action
562
+ # also automatically starts a deployment.
561
563
  #
562
564
  # This is an asynchronous operation. On a successful call, you can use
563
565
  # the returned `OperationId` and the [ListOperations][1] call to track
@@ -569,7 +571,8 @@ module Aws::AppRunner
569
571
  #
570
572
  # @option params [required, String] :service_name
571
573
  # A name for the new service. It must be unique across all the running
572
- # App Runner services in your AWS account in the AWS Region.
574
+ # App Runner services in your Amazon Web Services account in the Amazon
575
+ # Web Services Region.
573
576
  #
574
577
  # @option params [required, Types::SourceConfiguration] :source_configuration
575
578
  # The source to deploy to the App Runner service. It can be a code or an
@@ -586,11 +589,11 @@ module Aws::AppRunner
586
589
  # @option params [Types::EncryptionConfiguration] :encryption_configuration
587
590
  # An optional custom encryption key that App Runner uses to encrypt the
588
591
  # copy of your source repository that it maintains and your service
589
- # logs. By default, App Runner uses an AWS managed CMK.
592
+ # logs. By default, App Runner uses an Amazon Web Services managed CMK.
590
593
  #
591
594
  # @option params [Types::HealthCheckConfiguration] :health_check_configuration
592
- # The settings for the health check that AWS App Runner performs to
593
- # monitor the health of your service.
595
+ # The settings for the health check that App Runner performs to monitor
596
+ # the health of your service.
594
597
  #
595
598
  # @option params [String] :auto_scaling_configuration_arn
596
599
  # The Amazon Resource Name (ARN) of an App Runner automatic scaling
@@ -660,7 +663,7 @@ module Aws::AppRunner
660
663
  # },
661
664
  # health_check_configuration: {
662
665
  # protocol: "TCP", # accepts TCP, HTTP
663
- # path: "String",
666
+ # path: "HealthCheckPath",
664
667
  # interval: 1,
665
668
  # timeout: 1,
666
669
  # healthy_threshold: 1,
@@ -722,9 +725,9 @@ module Aws::AppRunner
722
725
  req.send_request(options)
723
726
  end
724
727
 
725
- # Delete an AWS App Runner automatic scaling configuration resource. You
726
- # can delete a specific revision or the latest active revision. You
727
- # can't delete a configuration that's used by one or more App Runner
728
+ # Delete an App Runner automatic scaling configuration resource. You can
729
+ # delete a specific revision or the latest active revision. You can't
730
+ # delete a configuration that's used by one or more App Runner
728
731
  # services.
729
732
  #
730
733
  # @option params [required, String] :auto_scaling_configuration_arn
@@ -767,9 +770,9 @@ module Aws::AppRunner
767
770
  req.send_request(options)
768
771
  end
769
772
 
770
- # Delete an AWS App Runner connection. You must first ensure that there
771
- # are no running App Runner services that use this connection. If there
772
- # are any, the `DeleteConnection` action fails.
773
+ # Delete an App Runner connection. You must first ensure that there are
774
+ # no running App Runner services that use this connection. If there are
775
+ # any, the `DeleteConnection` action fails.
773
776
  #
774
777
  # @option params [required, String] :connection_arn
775
778
  # The Amazon Resource Name (ARN) of the App Runner connection that you
@@ -802,7 +805,7 @@ module Aws::AppRunner
802
805
  req.send_request(options)
803
806
  end
804
807
 
805
- # Delete an AWS App Runner service.
808
+ # Delete an App Runner service.
806
809
  #
807
810
  # This is an asynchronous operation. On a successful call, you can use
808
811
  # the returned `OperationId` and the ListOperations call to track the
@@ -876,7 +879,7 @@ module Aws::AppRunner
876
879
  req.send_request(options)
877
880
  end
878
881
 
879
- # Return a full description of an AWS App Runner automatic scaling
882
+ # Return a full description of an App Runner automatic scaling
880
883
  # configuration resource.
881
884
  #
882
885
  # @option params [required, String] :auto_scaling_configuration_arn
@@ -920,7 +923,7 @@ module Aws::AppRunner
920
923
  end
921
924
 
922
925
  # Return a description of custom domain names that are associated with
923
- # an AWS App Runner service.
926
+ # an App Runner service.
924
927
  #
925
928
  # @option params [required, String] :service_arn
926
929
  # The Amazon Resource Name (ARN) of the App Runner service that you want
@@ -983,7 +986,7 @@ module Aws::AppRunner
983
986
  req.send_request(options)
984
987
  end
985
988
 
986
- # Return a full description of an AWS App Runner service.
989
+ # Return a full description of an App Runner service.
987
990
  #
988
991
  # @option params [required, String] :service_arn
989
992
  # The Amazon Resource Name (ARN) of the App Runner service that you want
@@ -1051,7 +1054,7 @@ module Aws::AppRunner
1051
1054
  req.send_request(options)
1052
1055
  end
1053
1056
 
1054
- # Disassociate a custom domain name from an AWS App Runner service.
1057
+ # Disassociate a custom domain name from an App Runner service.
1055
1058
  #
1056
1059
  # Certificates tracking domain validity are associated with a custom
1057
1060
  # domain and are stored in [AWS Certificate Manager (ACM)][1]. These
@@ -1106,11 +1109,11 @@ module Aws::AppRunner
1106
1109
  req.send_request(options)
1107
1110
  end
1108
1111
 
1109
- # Returns a list of AWS App Runner automatic scaling configurations in
1110
- # your AWS account. You can query the revisions for a specific
1111
- # configuration name or the revisions for all configurations in your
1112
- # account. You can optionally query only the latest revision of each
1113
- # requested name.
1112
+ # Returns a list of App Runner automatic scaling configurations in your
1113
+ # Amazon Web Services account. You can query the revisions for a
1114
+ # specific configuration name or the revisions for all configurations in
1115
+ # your account. You can optionally query only the latest revision of
1116
+ # each requested name.
1114
1117
  #
1115
1118
  # @option params [String] :auto_scaling_configuration_name
1116
1119
  # The name of the App Runner auto scaling configuration that you want to
@@ -1175,8 +1178,8 @@ module Aws::AppRunner
1175
1178
  req.send_request(options)
1176
1179
  end
1177
1180
 
1178
- # Returns a list of AWS App Runner connections that are associated with
1179
- # your AWS account.
1181
+ # Returns a list of App Runner connections that are associated with your
1182
+ # Amazon Web Services account.
1180
1183
  #
1181
1184
  # @option params [String] :connection_name
1182
1185
  # If specified, only this connection is returned. If not specified, the
@@ -1231,8 +1234,7 @@ module Aws::AppRunner
1231
1234
  req.send_request(options)
1232
1235
  end
1233
1236
 
1234
- # Return a list of operations that occurred on an AWS App Runner
1235
- # service.
1237
+ # Return a list of operations that occurred on an App Runner service.
1236
1238
  #
1237
1239
  # The resulting list of OperationSummary objects is sorted in reverse
1238
1240
  # chronological order. The first object on the list represents the last
@@ -1294,7 +1296,8 @@ module Aws::AppRunner
1294
1296
  req.send_request(options)
1295
1297
  end
1296
1298
 
1297
- # Returns a list of running AWS App Runner services in your AWS account.
1299
+ # Returns a list of running App Runner services in your Amazon Web
1300
+ # Services account.
1298
1301
  #
1299
1302
  # @option params [String] :next_token
1300
1303
  # A token from a previous result page. Used for a paginated request. The
@@ -1346,7 +1349,7 @@ module Aws::AppRunner
1346
1349
  req.send_request(options)
1347
1350
  end
1348
1351
 
1349
- # List tags that are associated with for an AWS App Runner resource. The
1352
+ # List tags that are associated with for an App Runner resource. The
1350
1353
  # response contains a list of tag key-value pairs.
1351
1354
  #
1352
1355
  # @option params [required, String] :resource_arn
@@ -1380,7 +1383,7 @@ module Aws::AppRunner
1380
1383
  req.send_request(options)
1381
1384
  end
1382
1385
 
1383
- # Pause an active AWS App Runner service. App Runner reduces compute
1386
+ # Pause an active App Runner service. App Runner reduces compute
1384
1387
  # capacity for the service to zero and loses state (for example,
1385
1388
  # ephemeral storage is removed).
1386
1389
  #
@@ -1456,7 +1459,7 @@ module Aws::AppRunner
1456
1459
  req.send_request(options)
1457
1460
  end
1458
1461
 
1459
- # Resume an active AWS App Runner service. App Runner provisions compute
1462
+ # Resume an active App Runner service. App Runner provisions compute
1460
1463
  # capacity for the service.
1461
1464
  #
1462
1465
  # This is an asynchronous operation. On a successful call, you can use
@@ -1532,8 +1535,8 @@ module Aws::AppRunner
1532
1535
  end
1533
1536
 
1534
1537
  # 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 AWS
1536
- # App Runner service.
1538
+ # repository or the latest image in a source image repository to an App
1539
+ # Runner service.
1537
1540
  #
1538
1541
  # For a source code repository, App Runner retrieves the commit and
1539
1542
  # builds a Docker image. For a source image repository, App Runner
@@ -1638,12 +1641,12 @@ module Aws::AppRunner
1638
1641
  req.send_request(options)
1639
1642
  end
1640
1643
 
1641
- # Update an AWS App Runner service. You can update the source
1642
- # configuration and instance configuration of the service. You can also
1643
- # update the ARN of the auto scaling configuration resource that's
1644
- # associated with the service. However, you can't change the name or
1645
- # the encryption configuration of the service. These can be set only
1646
- # when you create the service.
1644
+ # Update an App Runner service. You can update the source configuration
1645
+ # and instance configuration of the service. You can also update the ARN
1646
+ # of the auto scaling configuration resource that's associated with the
1647
+ # service. However, you can't change the name or the encryption
1648
+ # configuration of the service. These can be set only when you create
1649
+ # the service.
1647
1650
  #
1648
1651
  # To update the tags applied to your service, use the separate actions
1649
1652
  # TagResource and UntagResource.
@@ -1677,8 +1680,8 @@ module Aws::AppRunner
1677
1680
  # configuration resource that you want to associate with your service.
1678
1681
  #
1679
1682
  # @option params [Types::HealthCheckConfiguration] :health_check_configuration
1680
- # The settings for the health check that AWS App Runner performs to
1681
- # monitor the health of your service.
1683
+ # The settings for the health check that App Runner performs to monitor
1684
+ # the health of your service.
1682
1685
  #
1683
1686
  # @return [Types::UpdateServiceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1684
1687
  #
@@ -1734,7 +1737,7 @@ module Aws::AppRunner
1734
1737
  # auto_scaling_configuration_arn: "AppRunnerResourceArn",
1735
1738
  # health_check_configuration: {
1736
1739
  # protocol: "TCP", # accepts TCP, HTTP
1737
- # path: "String",
1740
+ # path: "HealthCheckPath",
1738
1741
  # interval: 1,
1739
1742
  # timeout: 1,
1740
1743
  # healthy_threshold: 1,
@@ -1808,7 +1811,7 @@ module Aws::AppRunner
1808
1811
  params: params,
1809
1812
  config: config)
1810
1813
  context[:gem_name] = 'aws-sdk-apprunner'
1811
- context[:gem_version] = '1.3.0'
1814
+ context[:gem_version] = '1.4.0'
1812
1815
  Seahorse::Client::Request.new(handlers, context)
1813
1816
  end
1814
1817
 
@@ -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: String, location_name: "Path"))
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 AWS App Runner automatic scaling configuration resource.
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 AWS Region. The tradeoff is a
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 AWS App Runner automatic scaling
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 AWS App Runner uses to build and run
273
- # an App Runner service from a source code repository.
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
- # AWS App Runner service. This type doesn't support the full set of
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 AWS App Runner connection resource.
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 AWS App Runner connection
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 AWS Region, App Runner creates revision number `1`
517
- # of this name. When you use the same name in subsequent calls, App
518
- # Runner creates incremental revisions of the configuration.
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 AWS account in the AWS Region.
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: "String",
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 AWS account in the AWS Region.
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 AWS managed CMK.
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 AWS App Runner performs to
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 AWS App Runner
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 AWS App Runner uses to encrypt
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 AWS App Runner
1139
- # performs to monitor the health of a service.
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: "String",
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: `3`
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: `3`
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 AWS App Runner uses to run an App
1212
- # Runner service using an image pulled from a source image repository.
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 AWS App Runner service
1302
- # instance (scaling unit).
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 AWS APIs.
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 AWS
1675
- # App Runner service.
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 AWS account.
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 AWS App Runner service. It can describe a service in any
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 AWS Region.
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 AWS managed CMK.
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 [AWS App Runner endpoints and
1937
- # quotas][1] in the *AWS General Reference*.
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 AWS App Runner service.
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 AWS Region.
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 AWS App Runner refers to within a
2030
- # source code repository.
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 AWS App Runner service. It can be
2063
- # a code or an image repository.
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 (source
2123
- # code commit or new image version) starts a deployment.
2124
- #
2125
- # Default: `true`
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 AWS App Runner resource. A tag
2179
- # is a metadata item consisting of a key-value pair.
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: "String",
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 AWS App Runner performs to
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
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-apprunner/customizations'
48
48
  # @!group service
49
49
  module Aws::AppRunner
50
50
 
51
- GEM_VERSION = '1.3.0'
51
+ GEM_VERSION = '1.4.0'
52
52
 
53
53
  end
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.3.0
4
+ version: 1.4.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-09-01 00:00:00.000000000 Z
11
+ date: 2021-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core