aws-sdk-cloud9 1.55.0 → 1.57.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 +6 -1
- data/lib/aws-sdk-cloud9/types.rb +5 -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: ae7d2f1f69043f0c77d772ad466ab497131ece5356b52192a5d29cd1bde68e48
|
|
4
|
+
data.tar.gz: ed9d7fa5a96de96bd9f698a5edb216f7749229c5bd1c93fac9fa223e7c2a4a62
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77f918ea64930a31455b20c64bcc6c08782708991695281124c5fe5fe69d28b7c8bf153b62bfba95a93b1a806b2f2b45455cc241c9b048b9847910df25276bad
|
|
7
|
+
data.tar.gz: 4c9ceac500ec890133a3fc8cff0a9a3f7a54d28758a24d37a2d0e994d41be1ec4ad224fb83163ad6fbd29ca9a497b7c9d0867f9d1994e413d229276c262d1a89
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.57.0 (2023-09-05)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for Ubuntu 22.04 that was not picked up in a previous Trebuchet request. Doc-only update.
|
|
8
|
+
|
|
9
|
+
1.56.0 (2023-08-21)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Doc only update to add Ubuntu 22.04 as an Image ID option for Cloud9
|
|
13
|
+
|
|
4
14
|
1.55.0 (2023-08-03)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.57.0
|
|
@@ -454,6 +454,8 @@ module Aws::Cloud9
|
|
|
454
454
|
#
|
|
455
455
|
# * Ubuntu 18.04: `ubuntu-18.04-x86_64`
|
|
456
456
|
#
|
|
457
|
+
# * Ubuntu 22.04: `ubuntu-22.04-x86_64`
|
|
458
|
+
#
|
|
457
459
|
# **SSM paths**
|
|
458
460
|
#
|
|
459
461
|
# * <b>Amazon Linux (default):
|
|
@@ -466,6 +468,9 @@ module Aws::Cloud9
|
|
|
466
468
|
# * Ubuntu 18.04:
|
|
467
469
|
# `resolve:ssm:/aws/service/cloud9/amis/ubuntu-18.04-x86_64`
|
|
468
470
|
#
|
|
471
|
+
# * Ubuntu 22.04:
|
|
472
|
+
# `resolve:ssm:/aws/service/cloud9/amis/ubuntu-22.04-x86_64`
|
|
473
|
+
#
|
|
469
474
|
# @option params [Integer] :automatic_stop_time_minutes
|
|
470
475
|
# The number of minutes until the running instance is shut down after
|
|
471
476
|
# the environment has last been used.
|
|
@@ -1253,7 +1258,7 @@ module Aws::Cloud9
|
|
|
1253
1258
|
params: params,
|
|
1254
1259
|
config: config)
|
|
1255
1260
|
context[:gem_name] = 'aws-sdk-cloud9'
|
|
1256
|
-
context[:gem_version] = '1.
|
|
1261
|
+
context[:gem_version] = '1.57.0'
|
|
1257
1262
|
Seahorse::Client::Request.new(handlers, context)
|
|
1258
1263
|
end
|
|
1259
1264
|
|
data/lib/aws-sdk-cloud9/types.rb
CHANGED
|
@@ -86,6 +86,8 @@ module Aws::Cloud9
|
|
|
86
86
|
#
|
|
87
87
|
# * Ubuntu 18.04: `ubuntu-18.04-x86_64`
|
|
88
88
|
#
|
|
89
|
+
# * Ubuntu 22.04: `ubuntu-22.04-x86_64`
|
|
90
|
+
#
|
|
89
91
|
# **SSM paths**
|
|
90
92
|
#
|
|
91
93
|
# * <b>Amazon Linux (default):
|
|
@@ -97,6 +99,9 @@ module Aws::Cloud9
|
|
|
97
99
|
#
|
|
98
100
|
# * Ubuntu 18.04:
|
|
99
101
|
# `resolve:ssm:/aws/service/cloud9/amis/ubuntu-18.04-x86_64`
|
|
102
|
+
#
|
|
103
|
+
# * Ubuntu 22.04:
|
|
104
|
+
# `resolve:ssm:/aws/service/cloud9/amis/ubuntu-22.04-x86_64`
|
|
100
105
|
# @return [String]
|
|
101
106
|
#
|
|
102
107
|
# @!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.57.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-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|