aws-sdk-cloud9 1.56.0 → 1.58.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloud9/client.rb +9 -1
- data/lib/aws-sdk-cloud9/types.rb +8 -0
- 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: fe4b129809853b14fa14e7ccca45f303eccf91600efeb27704fa863c85b01b75
|
|
4
|
+
data.tar.gz: 0a96db9c93cdd196a8d64d679c517308d75efa9b10bb5b8a592855cbf02113ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7eed06e588497e5d78aed29637350c240ef4f2b043c0da5e439b0afeee70d65d40b90a04018d0687bca970354050c9e02d5f2d9b0918ffeb432a06759c75c8ff
|
|
7
|
+
data.tar.gz: fab78c6f9c040db5e89b526481fe0aa190995c1489a5bc65b4fbbae3f41ba3bbfbe5eec97322ca7e94028de2555045d56b73b638b459aacec989675700d80780
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.58.0 (2023-09-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Update to include information on Ubuntu 18 deprecation.
|
|
8
|
+
|
|
9
|
+
1.57.0 (2023-09-05)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Added support for Ubuntu 22.04 that was not picked up in a previous Trebuchet request. Doc-only update.
|
|
13
|
+
|
|
4
14
|
1.56.0 (2023-08-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.58.0
|
|
@@ -446,6 +446,9 @@ module Aws::Cloud9
|
|
|
446
446
|
# will then become the default AMI, which is used to launch your
|
|
447
447
|
# instance if no parameter is explicitly defined.
|
|
448
448
|
#
|
|
449
|
+
# Since Ubuntu 18.04 has ended standard support as of May 31, 2023, we
|
|
450
|
+
# recommend you choose Ubuntu 22.04.
|
|
451
|
+
#
|
|
449
452
|
# <b>AMI aliases </b>
|
|
450
453
|
#
|
|
451
454
|
# * <b>Amazon Linux (default): <code>amazonlinux-1-x86_64</code> </b>
|
|
@@ -454,6 +457,8 @@ module Aws::Cloud9
|
|
|
454
457
|
#
|
|
455
458
|
# * Ubuntu 18.04: `ubuntu-18.04-x86_64`
|
|
456
459
|
#
|
|
460
|
+
# * Ubuntu 22.04: `ubuntu-22.04-x86_64`
|
|
461
|
+
#
|
|
457
462
|
# **SSM paths**
|
|
458
463
|
#
|
|
459
464
|
# * <b>Amazon Linux (default):
|
|
@@ -466,6 +471,9 @@ module Aws::Cloud9
|
|
|
466
471
|
# * Ubuntu 18.04:
|
|
467
472
|
# `resolve:ssm:/aws/service/cloud9/amis/ubuntu-18.04-x86_64`
|
|
468
473
|
#
|
|
474
|
+
# * Ubuntu 22.04:
|
|
475
|
+
# `resolve:ssm:/aws/service/cloud9/amis/ubuntu-22.04-x86_64`
|
|
476
|
+
#
|
|
469
477
|
# @option params [Integer] :automatic_stop_time_minutes
|
|
470
478
|
# The number of minutes until the running instance is shut down after
|
|
471
479
|
# the environment has last been used.
|
|
@@ -1253,7 +1261,7 @@ module Aws::Cloud9
|
|
|
1253
1261
|
params: params,
|
|
1254
1262
|
config: config)
|
|
1255
1263
|
context[:gem_name] = 'aws-sdk-cloud9'
|
|
1256
|
-
context[:gem_version] = '1.
|
|
1264
|
+
context[:gem_version] = '1.58.0'
|
|
1257
1265
|
Seahorse::Client::Request.new(handlers, context)
|
|
1258
1266
|
end
|
|
1259
1267
|
|
data/lib/aws-sdk-cloud9/types.rb
CHANGED
|
@@ -78,6 +78,9 @@ module Aws::Cloud9
|
|
|
78
78
|
# Amazon Linux 2 will then become the default AMI, which is used to
|
|
79
79
|
# launch your instance if no parameter is explicitly defined.
|
|
80
80
|
#
|
|
81
|
+
# Since Ubuntu 18.04 has ended standard support as of May 31, 2023, we
|
|
82
|
+
# recommend you choose Ubuntu 22.04.
|
|
83
|
+
#
|
|
81
84
|
# <b>AMI aliases </b>
|
|
82
85
|
#
|
|
83
86
|
# * <b>Amazon Linux (default): <code>amazonlinux-1-x86_64</code> </b>
|
|
@@ -86,6 +89,8 @@ module Aws::Cloud9
|
|
|
86
89
|
#
|
|
87
90
|
# * Ubuntu 18.04: `ubuntu-18.04-x86_64`
|
|
88
91
|
#
|
|
92
|
+
# * Ubuntu 22.04: `ubuntu-22.04-x86_64`
|
|
93
|
+
#
|
|
89
94
|
# **SSM paths**
|
|
90
95
|
#
|
|
91
96
|
# * <b>Amazon Linux (default):
|
|
@@ -97,6 +102,9 @@ module Aws::Cloud9
|
|
|
97
102
|
#
|
|
98
103
|
# * Ubuntu 18.04:
|
|
99
104
|
# `resolve:ssm:/aws/service/cloud9/amis/ubuntu-18.04-x86_64`
|
|
105
|
+
#
|
|
106
|
+
# * Ubuntu 22.04:
|
|
107
|
+
# `resolve:ssm:/aws/service/cloud9/amis/ubuntu-22.04-x86_64`
|
|
100
108
|
# @return [String]
|
|
101
109
|
#
|
|
102
110
|
# @!attribute [rw] automatic_stop_time_minutes
|
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.58.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-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|