aws-sdk-cloud9 1.59.0 → 1.60.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: 462fc4c62bd97efb78b84555483f12538bcf1db484a841c9db5e82c22e93fee8
4
- data.tar.gz: 6889a3a7c7c91bd0a6d45c5c666cf76a3d325070df23282a1910e0a484bcb4db
3
+ metadata.gz: 144e8dca4f5d21770ba879b448f50f2befaeb1098fae57f404b5c8008ec9a20f
4
+ data.tar.gz: 4ab148a15fb9f085437eefb057cded065d49a3a18fea5469974461d260a02a3a
5
5
  SHA512:
6
- metadata.gz: b03a7cc077b1b7ae6fa6c41bb4c8bc1c0e1b162df2f787d7b2743f659f9ff302d7f24fb8017473cd13389f89ac2bad4ea9ca71c5bd3ec590ee02232bf395f574
7
- data.tar.gz: ef3f03b4c075066ac3e3897889d273be4ac06304724041b96a94e5a90ec88cac3ab3f54ac248801146325d7e7f708511d13c3c2a9ee696b7a1f584b7cdcb95a2
6
+ metadata.gz: 995b4408fb28f3fc6927afdd345cbecc2fa84c29903fa1b1c50c049aade9123d4eb534c59c19bcb5a2d057e37bb0eb8f411ecfe6ff58760a842ad9eb6023da9f
7
+ data.tar.gz: e9b5bdd41116214f255f8211ea2be2105af1251915022d8799151e6e4dbb7ab6b5cf6bbdbc40847977dd5ca7e72dc2347a4e870137dbea76d7d3e2b1fb6a74e5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2023-10-18)
5
+ ------------------
6
+
7
+ * Feature - Update to imageId parameter behavior and dates updated.
8
+
4
9
  1.59.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.60.0
@@ -436,15 +436,20 @@ module Aws::Cloud9
436
436
  # specify a valid AMI alias or a valid Amazon EC2 Systems Manager (SSM)
437
437
  # path.
438
438
  #
439
- # The default Amazon Linux AMI is currently used if the parameter isn't
440
- # explicitly assigned a value in the request. Because Amazon Linux AMI
441
- # has ended standard support as of December 31, 2020, we recommend you
442
- # choose Amazon Linux 2, which includes long term support through 2023.
443
- #
444
- # From December 31, 2023, the parameter for Amazon Linux will no longer
445
- # be available when you specify an AMI for your instance. Amazon Linux 2
446
- # will then become the default AMI, which is used to launch your
447
- # instance if no parameter is explicitly defined.
439
+ # From November 20, 2023, you will be required to include the `imageId`
440
+ # parameter for the `CreateEnvironmentEC2` action. This change will be
441
+ # reflected across all direct methods of communicating with the API,
442
+ # such as Amazon Web Services SDK, Amazon Web Services CLI and Amazon
443
+ # Web Services CloudFormation. This change will only affect direct API
444
+ # consumers, and not Cloud9 console users.
445
+ #
446
+ # From January 22, 2024, Amazon Linux (AL1) will be removed from the
447
+ # list of available image IDs for Cloud9. This is necessary as AL1 will
448
+ # reach the end of maintenance support in December 2023, and as a result
449
+ # will no longer receive security updates. We recommend using Amazon
450
+ # Linux 2 as the AMI to create your environment as it is fully
451
+ # supported. This change will only affect direct API consumers, and not
452
+ # Cloud9 console users.
448
453
  #
449
454
  # Since Ubuntu 18.04 has ended standard support as of May 31, 2023, we
450
455
  # recommend you choose Ubuntu 22.04.
@@ -1261,7 +1266,7 @@ module Aws::Cloud9
1261
1266
  params: params,
1262
1267
  config: config)
1263
1268
  context[:gem_name] = 'aws-sdk-cloud9'
1264
- context[:gem_version] = '1.59.0'
1269
+ context[:gem_version] = '1.60.0'
1265
1270
  Seahorse::Client::Request.new(handlers, context)
1266
1271
  end
1267
1272
 
@@ -32,7 +32,7 @@ module Aws::Cloud9
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://cloud9-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -67,16 +67,20 @@ module Aws::Cloud9
67
67
  # specify a valid AMI alias or a valid Amazon EC2 Systems Manager
68
68
  # (SSM) path.
69
69
  #
70
- # The default Amazon Linux AMI is currently used if the parameter
71
- # isn't explicitly assigned a value in the request. Because Amazon
72
- # Linux AMI has ended standard support as of December 31, 2020, we
73
- # recommend you choose Amazon Linux 2, which includes long term
74
- # support through 2023.
75
- #
76
- # From December 31, 2023, the parameter for Amazon Linux will no
77
- # longer be available when you specify an AMI for your instance.
78
- # Amazon Linux 2 will then become the default AMI, which is used to
79
- # launch your instance if no parameter is explicitly defined.
70
+ # From November 20, 2023, you will be required to include the
71
+ # `imageId` parameter for the `CreateEnvironmentEC2` action. This
72
+ # change will be reflected across all direct methods of communicating
73
+ # with the API, such as Amazon Web Services SDK, Amazon Web Services
74
+ # CLI and Amazon Web Services CloudFormation. This change will only
75
+ # affect direct API consumers, and not Cloud9 console users.
76
+ #
77
+ # From January 22, 2024, Amazon Linux (AL1) will be removed from the
78
+ # list of available image IDs for Cloud9. This is necessary as AL1
79
+ # will reach the end of maintenance support in December 2023, and as a
80
+ # result will no longer receive security updates. We recommend using
81
+ # Amazon Linux 2 as the AMI to create your environment as it is fully
82
+ # supported. This change will only affect direct API consumers, and
83
+ # not Cloud9 console users.
80
84
  #
81
85
  # Since Ubuntu 18.04 has ended standard support as of May 31, 2023, we
82
86
  # recommend you choose Ubuntu 22.04.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloud9/customizations'
52
52
  # @!group service
53
53
  module Aws::Cloud9
54
54
 
55
- GEM_VERSION = '1.59.0'
55
+ GEM_VERSION = '1.60.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloud9
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.59.0
4
+ version: 1.60.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-09-27 00:00:00.000000000 Z
11
+ date: 2023-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core