aws-sdk-cloud9 1.59.0 → 1.61.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloud9/client.rb +19 -14
- data/lib/aws-sdk-cloud9/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-cloud9/types.rb +17 -14
- data/lib/aws-sdk-cloud9.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c23e557ed813f4b6c1999691d81667ff139b6d57401573a62250a6f922c16ec1
|
4
|
+
data.tar.gz: 690d42c1022242e8cd1fac50acd0320ad48b85b1c25fb10fadd289eb5ade4711
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67fb039096dd4e982889612608eeb697cbc9051824ed3137b30e5a3ec008ec305965649d9972fe319286eda445f499fc37fe6a42bb0bfa7fb2203a2adea3269e
|
7
|
+
data.tar.gz: eb938f4e966edb62dc595026fc5de8726d8e28594b41622be162d577da441b480604ad44f552a278a35f4c9aefd5519a0088195bf331872c40eb7c87b65fbba1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.61.0 (2023-11-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - A minor doc only update related to changing the date of an API change.
|
8
|
+
|
9
|
+
1.60.0 (2023-10-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Update to imageId parameter behavior and dates updated.
|
13
|
+
|
4
14
|
1.59.0 (2023-09-27)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.61.0
|
@@ -436,22 +436,27 @@ module Aws::Cloud9
|
|
436
436
|
# specify a valid AMI alias or a valid Amazon EC2 Systems Manager (SSM)
|
437
437
|
# path.
|
438
438
|
#
|
439
|
-
#
|
440
|
-
#
|
441
|
-
#
|
442
|
-
#
|
443
|
-
#
|
444
|
-
#
|
445
|
-
#
|
446
|
-
#
|
447
|
-
#
|
439
|
+
# From December 04, 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.
|
451
456
|
#
|
452
457
|
# <b>AMI aliases </b>
|
453
458
|
#
|
454
|
-
# *
|
459
|
+
# * Amazon Linux (default): `amazonlinux-1-x86_64`
|
455
460
|
#
|
456
461
|
# * Amazon Linux 2: `amazonlinux-2-x86_64`
|
457
462
|
#
|
@@ -461,9 +466,8 @@ module Aws::Cloud9
|
|
461
466
|
#
|
462
467
|
# **SSM paths**
|
463
468
|
#
|
464
|
-
# *
|
465
|
-
#
|
466
|
-
# </b>
|
469
|
+
# * Amazon Linux (default):
|
470
|
+
# `resolve:ssm:/aws/service/cloud9/amis/amazonlinux-1-x86_64`
|
467
471
|
#
|
468
472
|
# * Amazon Linux 2:
|
469
473
|
# `resolve:ssm:/aws/service/cloud9/amis/amazonlinux-2-x86_64`
|
@@ -516,6 +520,7 @@ module Aws::Cloud9
|
|
516
520
|
# name: "my-demo-environment",
|
517
521
|
# automatic_stop_time_minutes: 60,
|
518
522
|
# description: "This is my demonstration environment.",
|
523
|
+
# image_id: "amazonlinux-2-x86_64",
|
519
524
|
# instance_type: "t2.micro",
|
520
525
|
# owner_arn: "arn:aws:iam::123456789012:user/MyDemoUser",
|
521
526
|
# subnet_id: "subnet-6300cd1b",
|
@@ -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.
|
1269
|
+
context[:gem_version] = '1.61.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?(
|
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"
|
data/lib/aws-sdk-cloud9/types.rb
CHANGED
@@ -67,23 +67,27 @@ module Aws::Cloud9
|
|
67
67
|
# specify a valid AMI alias or a valid Amazon EC2 Systems Manager
|
68
68
|
# (SSM) path.
|
69
69
|
#
|
70
|
-
#
|
71
|
-
#
|
72
|
-
#
|
73
|
-
#
|
74
|
-
#
|
75
|
-
#
|
76
|
-
#
|
77
|
-
#
|
78
|
-
#
|
79
|
-
#
|
70
|
+
# From December 04, 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.
|
83
87
|
#
|
84
88
|
# <b>AMI aliases </b>
|
85
89
|
#
|
86
|
-
# *
|
90
|
+
# * Amazon Linux (default): `amazonlinux-1-x86_64`
|
87
91
|
#
|
88
92
|
# * Amazon Linux 2: `amazonlinux-2-x86_64`
|
89
93
|
#
|
@@ -93,9 +97,8 @@ module Aws::Cloud9
|
|
93
97
|
#
|
94
98
|
# **SSM paths**
|
95
99
|
#
|
96
|
-
# *
|
97
|
-
#
|
98
|
-
# </b>
|
100
|
+
# * Amazon Linux (default):
|
101
|
+
# `resolve:ssm:/aws/service/cloud9/amis/amazonlinux-1-x86_64`
|
99
102
|
#
|
100
103
|
# * Amazon Linux 2:
|
101
104
|
# `resolve:ssm:/aws/service/cloud9/amis/amazonlinux-2-x86_64`
|
data/lib/aws-sdk-cloud9.rb
CHANGED
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.
|
4
|
+
version: 1.61.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-
|
11
|
+
date: 2023-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|