aws-sdk-apprunner 1.26.0 → 1.28.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f375c1c6e5ee5d24b11242a8f8dc9014df00d3b8907e753230a9c44fb4fe01c
4
- data.tar.gz: e0f1ac01cac6ac1ad5835867e518261e075ca76bf046d5e466921aa7cb38b968
3
+ metadata.gz: 71123d355f923e6366bc040b2af8f64e61f8bc66edd6ec6dd5f2dbc0a6bd47b1
4
+ data.tar.gz: 5ad944beda88e79ea5c5c92ac6e355fa289bb498e531fbe3c5bbf139b9a1cf13
5
5
  SHA512:
6
- metadata.gz: 3fc1177fd44317974065a213b7d165b388f1356b87882a357804988f8baec76667f558c88b96323dc67aa87d5e5b4db3ebbf0be050bb89ddb76a58295d7a9d60
7
- data.tar.gz: e61cee5ccd5c13fa53ab13f7033e009c6f096a60ec6cbe47f1c710b44383c54a3a99747d76a8dfade8439df0ba49af4fbe52d4465df75ac9d04049cb635ad946
6
+ metadata.gz: fe7d548d36da516d3bfe654ab47b1d5d07d2dc30825a56b9fbc585b4634ce2ab937d8e49fd2b23beec018f90a2155fa439af0473e95ab738809bc09a7a769d29
7
+ data.tar.gz: 6847a6f3585fe6ff99a0540e4c7411648e9942e4f5f873f52f1b2f54921f4d827a653192bb90d7315a452eef3a3db34974e793691ca43c95c5ebd7c62ca5f0dc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2023-08-30)
5
+ ------------------
6
+
7
+ * Feature - App Runner adds support for Bitbucket. You can now create App Runner connection that connects to your Bitbucket repositories and deploy App Runner service with the source code stored in a Bitbucket repository.
8
+
9
+ 1.27.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.26.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.28.0
@@ -216,6 +216,10 @@ module Aws::AppRunner
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -583,9 +587,9 @@ module Aws::AppRunner
583
587
  # private repositories from certain third-party providers. You can share
584
588
  # a connection across multiple services.
585
589
  #
586
- # A connection resource is needed to access GitHub repositories. GitHub
587
- # requires a user interface approval process through the App Runner
588
- # console before you can use the connection.
590
+ # A connection resource is needed to access GitHub and Bitbucket
591
+ # repositories. Both require a user interface approval process through
592
+ # the App Runner console before you can use the connection.
589
593
  #
590
594
  # @option params [required, String] :connection_name
591
595
  # A name for the new connection. It must be unique across all App Runner
@@ -607,7 +611,7 @@ module Aws::AppRunner
607
611
  #
608
612
  # resp = client.create_connection({
609
613
  # connection_name: "ConnectionName", # required
610
- # provider_type: "GITHUB", # required, accepts GITHUB
614
+ # provider_type: "GITHUB", # required, accepts GITHUB, BITBUCKET
611
615
  # tags: [
612
616
  # {
613
617
  # key: "TagKey",
@@ -620,7 +624,7 @@ module Aws::AppRunner
620
624
  #
621
625
  # resp.connection.connection_name #=> String
622
626
  # resp.connection.connection_arn #=> String
623
- # resp.connection.provider_type #=> String, one of "GITHUB"
627
+ # resp.connection.provider_type #=> String, one of "GITHUB", "BITBUCKET"
624
628
  # resp.connection.status #=> String, one of "PENDING_HANDSHAKE", "AVAILABLE", "ERROR", "DELETED"
625
629
  # resp.connection.created_at #=> Time
626
630
  #
@@ -1125,7 +1129,7 @@ module Aws::AppRunner
1125
1129
  #
1126
1130
  # resp.connection.connection_name #=> String
1127
1131
  # resp.connection.connection_arn #=> String
1128
- # resp.connection.provider_type #=> String, one of "GITHUB"
1132
+ # resp.connection.provider_type #=> String, one of "GITHUB", "BITBUCKET"
1129
1133
  # resp.connection.status #=> String, one of "PENDING_HANDSHAKE", "AVAILABLE", "ERROR", "DELETED"
1130
1134
  # resp.connection.created_at #=> Time
1131
1135
  #
@@ -1843,7 +1847,7 @@ module Aws::AppRunner
1843
1847
  # resp.connection_summary_list #=> Array
1844
1848
  # resp.connection_summary_list[0].connection_name #=> String
1845
1849
  # resp.connection_summary_list[0].connection_arn #=> String
1846
- # resp.connection_summary_list[0].provider_type #=> String, one of "GITHUB"
1850
+ # resp.connection_summary_list[0].provider_type #=> String, one of "GITHUB", "BITBUCKET"
1847
1851
  # resp.connection_summary_list[0].status #=> String, one of "PENDING_HANDSHAKE", "AVAILABLE", "ERROR", "DELETED"
1848
1852
  # resp.connection_summary_list[0].created_at #=> Time
1849
1853
  # resp.next_token #=> String
@@ -2731,7 +2735,7 @@ module Aws::AppRunner
2731
2735
  params: params,
2732
2736
  config: config)
2733
2737
  context[:gem_name] = 'aws-sdk-apprunner'
2734
- context[:gem_version] = '1.26.0'
2738
+ context[:gem_version] = '1.28.0'
2735
2739
  Seahorse::Client::Request.new(handlers, context)
2736
2740
  end
2737
2741
 
@@ -2326,14 +2326,11 @@ module Aws::AppRunner
2326
2326
  # The current state of the App Runner service. These particular values
2327
2327
  # mean the following.
2328
2328
  #
2329
- # * `CREATE_FAILED` – The service failed to create. To troubleshoot
2330
- # this failure, read the failure events and logs, change any
2331
- # parameters that need to be fixed, and retry the call to create the
2332
- # service.
2333
- #
2334
- # The failed service isn't usable, and still counts towards your
2335
- # service quota. When you're done analyzing the failure, delete the
2336
- # service.
2329
+ # * `CREATE_FAILED` – The service failed to create. The failed service
2330
+ # isn't usable, and still counts towards your service quota. To
2331
+ # troubleshoot this failure, read the failure events and logs,
2332
+ # change any parameters that need to be fixed, and rebuild your
2333
+ # service using `UpdateService`.
2337
2334
  #
2338
2335
  # * `DELETE_FAILED` – The service failed to delete and can't be
2339
2336
  # successfully recovered. Retry the service deletion call to ensure
@@ -2500,13 +2497,11 @@ module Aws::AppRunner
2500
2497
  # The current state of the App Runner service. These particular values
2501
2498
  # mean the following.
2502
2499
  #
2503
- # * `CREATE_FAILED` – The service failed to create. Read the failure
2504
- # events and logs, change any parameters that need to be fixed, and
2505
- # retry the call to create the service.
2506
- #
2507
- # The failed service isn't usable, and still counts towards your
2508
- # service quota. When you're done analyzing the failure, delete the
2509
- # service.
2500
+ # * `CREATE_FAILED` – The service failed to create. The failed service
2501
+ # isn't usable, and still counts towards your service quota. To
2502
+ # troubleshoot this failure, read the failure events and logs,
2503
+ # change any parameters that need to be fixed, and rebuild your
2504
+ # service using `UpdateService`.
2510
2505
  #
2511
2506
  # * `DELETE_FAILED` – The service failed to delete and can't be
2512
2507
  # successfully recovered. Retry the service deletion call to ensure
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-apprunner/customizations'
52
52
  # @!group service
53
53
  module Aws::AppRunner
54
54
 
55
- GEM_VERSION = '1.26.0'
55
+ GEM_VERSION = '1.28.0'
56
56
 
57
57
  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.26.0
4
+ version: 1.28.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: 2023-07-06 00:00:00.000000000 Z
11
+ date: 2023-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core