aws-sdk-apprunner 1.10.0 → 1.11.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: 7544607356ba39d2934eadd30c088bb36d0de00cc03e96c3b602559b25928232
4
- data.tar.gz: 8030ee818bee71a4fedde8477a4d11fd52492d4eddbe146890a95ab22ccef612
3
+ metadata.gz: e233ea2c1fd5539a809c55104f685012779f44b7fadd487d74d8016fce4cefb1
4
+ data.tar.gz: a273d90816bee855b66e72dccdc80e24c4a7b60c6e484d76f27808e4a82cba58
5
5
  SHA512:
6
- metadata.gz: 35acd78629f357a88491ec910732728b0e1c77f3a93d649a48e4789475b043200a5d4127d4fae77af3c13f3d6f7dfde29f37f439fdcfd77caf322d741317f8de
7
- data.tar.gz: b0a99c5d7b65e464125f33773e4b9673ef5c2fb0c860bea489a4f30b44ee0e2c253a22c8d6e6aaad7b2b9533c8eaf65764511ed704436774763c6ac591b07db7
6
+ metadata.gz: b962778e31d2e607e0f4f259f3ed3964317fd41f0ed51b44db6ee8455535ce88737d29529f479431b7260158e7e2f1eb7a0db8b4f02c305fb265938fcd9182bf
7
+ data.tar.gz: a420b838a155d4ca6cb584e688f080fa91901fcd40ca166edc038a9d2fa0472f7c7e97a833045a5fab15b7de00fb5f54c1abf8d97db37c50977993105457e805
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2022-02-22)
5
+ ------------------
6
+
7
+ * Feature - AWS App Runner adds a Java platform (Corretto 8, Corretto 11 runtimes) and a Node.js 14 runtime.
8
+
4
9
  1.10.0 (2022-02-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -657,7 +657,7 @@ module Aws::AppRunner
657
657
  # code_configuration: {
658
658
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
659
659
  # code_configuration_values: {
660
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12
660
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11
661
661
  # build_command: "BuildCommand",
662
662
  # start_command: "StartCommand",
663
663
  # port: "String",
@@ -729,7 +729,7 @@ module Aws::AppRunner
729
729
  # resp.service.source_configuration.code_repository.source_code_version.type #=> String, one of "BRANCH"
730
730
  # resp.service.source_configuration.code_repository.source_code_version.value #=> String
731
731
  # resp.service.source_configuration.code_repository.code_configuration.configuration_source #=> String, one of "REPOSITORY", "API"
732
- # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12"
732
+ # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12", "NODEJS_14", "CORRETTO_8", "CORRETTO_11"
733
733
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.build_command #=> String
734
734
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.start_command #=> String
735
735
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
@@ -948,7 +948,7 @@ module Aws::AppRunner
948
948
  # resp.service.source_configuration.code_repository.source_code_version.type #=> String, one of "BRANCH"
949
949
  # resp.service.source_configuration.code_repository.source_code_version.value #=> String
950
950
  # resp.service.source_configuration.code_repository.code_configuration.configuration_source #=> String, one of "REPOSITORY", "API"
951
- # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12"
951
+ # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12", "NODEJS_14", "CORRETTO_8", "CORRETTO_11"
952
952
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.build_command #=> String
953
953
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.start_command #=> String
954
954
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
@@ -1167,7 +1167,7 @@ module Aws::AppRunner
1167
1167
  # resp.service.source_configuration.code_repository.source_code_version.type #=> String, one of "BRANCH"
1168
1168
  # resp.service.source_configuration.code_repository.source_code_version.value #=> String
1169
1169
  # resp.service.source_configuration.code_repository.code_configuration.configuration_source #=> String, one of "REPOSITORY", "API"
1170
- # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12"
1170
+ # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12", "NODEJS_14", "CORRETTO_8", "CORRETTO_11"
1171
1171
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.build_command #=> String
1172
1172
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.start_command #=> String
1173
1173
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
@@ -1670,7 +1670,7 @@ module Aws::AppRunner
1670
1670
  # resp.service.source_configuration.code_repository.source_code_version.type #=> String, one of "BRANCH"
1671
1671
  # resp.service.source_configuration.code_repository.source_code_version.value #=> String
1672
1672
  # resp.service.source_configuration.code_repository.code_configuration.configuration_source #=> String, one of "REPOSITORY", "API"
1673
- # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12"
1673
+ # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12", "NODEJS_14", "CORRETTO_8", "CORRETTO_11"
1674
1674
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.build_command #=> String
1675
1675
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.start_command #=> String
1676
1676
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
@@ -1747,7 +1747,7 @@ module Aws::AppRunner
1747
1747
  # resp.service.source_configuration.code_repository.source_code_version.type #=> String, one of "BRANCH"
1748
1748
  # resp.service.source_configuration.code_repository.source_code_version.value #=> String
1749
1749
  # resp.service.source_configuration.code_repository.code_configuration.configuration_source #=> String, one of "REPOSITORY", "API"
1750
- # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12"
1750
+ # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12", "NODEJS_14", "CORRETTO_8", "CORRETTO_11"
1751
1751
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.build_command #=> String
1752
1752
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.start_command #=> String
1753
1753
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
@@ -1961,7 +1961,7 @@ module Aws::AppRunner
1961
1961
  # code_configuration: {
1962
1962
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
1963
1963
  # code_configuration_values: {
1964
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12
1964
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11
1965
1965
  # build_command: "BuildCommand",
1966
1966
  # start_command: "StartCommand",
1967
1967
  # port: "String",
@@ -2024,7 +2024,7 @@ module Aws::AppRunner
2024
2024
  # resp.service.source_configuration.code_repository.source_code_version.type #=> String, one of "BRANCH"
2025
2025
  # resp.service.source_configuration.code_repository.source_code_version.value #=> String
2026
2026
  # resp.service.source_configuration.code_repository.code_configuration.configuration_source #=> String, one of "REPOSITORY", "API"
2027
- # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12"
2027
+ # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.runtime #=> String, one of "PYTHON_3", "NODEJS_12", "NODEJS_14", "CORRETTO_8", "CORRETTO_11"
2028
2028
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.build_command #=> String
2029
2029
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.start_command #=> String
2030
2030
  # resp.service.source_configuration.code_repository.code_configuration.code_configuration_values.port #=> String
@@ -2078,7 +2078,7 @@ module Aws::AppRunner
2078
2078
  params: params,
2079
2079
  config: config)
2080
2080
  context[:gem_name] = 'aws-sdk-apprunner'
2081
- context[:gem_version] = '1.10.0'
2081
+ context[:gem_version] = '1.11.0'
2082
2082
  Seahorse::Client::Request.new(handlers, context)
2083
2083
  end
2084
2084
 
@@ -279,7 +279,7 @@ module Aws::AppRunner
279
279
  # {
280
280
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
281
281
  # code_configuration_values: {
282
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12
282
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11
283
283
  # build_command: "BuildCommand",
284
284
  # start_command: "StartCommand",
285
285
  # port: "String",
@@ -327,7 +327,7 @@ module Aws::AppRunner
327
327
  # data as a hash:
328
328
  #
329
329
  # {
330
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12
330
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11
331
331
  # build_command: "BuildCommand",
332
332
  # start_command: "StartCommand",
333
333
  # port: "String",
@@ -387,7 +387,7 @@ module Aws::AppRunner
387
387
  # code_configuration: {
388
388
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
389
389
  # code_configuration_values: {
390
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12
390
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11
391
391
  # build_command: "BuildCommand",
392
392
  # start_command: "StartCommand",
393
393
  # port: "String",
@@ -658,7 +658,7 @@ module Aws::AppRunner
658
658
  # code_configuration: {
659
659
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
660
660
  # code_configuration_values: {
661
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12
661
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11
662
662
  # build_command: "BuildCommand",
663
663
  # start_command: "StartCommand",
664
664
  # port: "String",
@@ -2356,7 +2356,7 @@ module Aws::AppRunner
2356
2356
  # code_configuration: {
2357
2357
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
2358
2358
  # code_configuration_values: {
2359
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12
2359
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11
2360
2360
  # build_command: "BuildCommand",
2361
2361
  # start_command: "StartCommand",
2362
2362
  # port: "String",
@@ -2577,7 +2577,7 @@ module Aws::AppRunner
2577
2577
  # code_configuration: {
2578
2578
  # configuration_source: "REPOSITORY", # required, accepts REPOSITORY, API
2579
2579
  # code_configuration_values: {
2580
- # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12
2580
+ # runtime: "PYTHON_3", # required, accepts PYTHON_3, NODEJS_12, NODEJS_14, CORRETTO_8, CORRETTO_11
2581
2581
  # build_command: "BuildCommand",
2582
2582
  # start_command: "StartCommand",
2583
2583
  # port: "String",
@@ -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.10.0'
51
+ GEM_VERSION = '1.11.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.10.0
4
+ version: 1.11.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: 2022-02-08 00:00:00.000000000 Z
11
+ date: 2022-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core