aws-sdk-cloud9 1.18.0 → 1.19.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/lib/aws-sdk-cloud9.rb +1 -1
- data/lib/aws-sdk-cloud9/client.rb +9 -2
- data/lib/aws-sdk-cloud9/types.rb +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff3d58e35d7c9cc43c0922dc13272a53a7e88669
|
|
4
|
+
data.tar.gz: 2020b6fcfba7f800028fca4adb08c5e661ea8740
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02d5312a6a50bd0638491e8fd119ce4f46559cb38e91fbce2c39454040a9fe1f2bbd73dc16109d06632457f416f53ab668fea274bf2d8a5c62d6dc448b677a23
|
|
7
|
+
data.tar.gz: fae17931b59e04860c24a778ac5d0d8cc2ca7842ca5d274485064bdfb48ff403c83f25e2807a653b665947b581839a9c438442ea0614c37c2a7ae27ac17d3bbc
|
data/lib/aws-sdk-cloud9.rb
CHANGED
|
@@ -711,13 +711,20 @@ module Aws::Cloud9
|
|
|
711
711
|
# arn: "arn:aws:cloud9:us-east-2:123456789012:environment:8d9967e2f0624182b74e7690ad69ebEX",
|
|
712
712
|
# description: "This is my demonstration environment.",
|
|
713
713
|
# id: "8d9967e2f0624182b74e7690ad69ebEX",
|
|
714
|
+
# lifecycle: {
|
|
715
|
+
# status: "CREATED",
|
|
716
|
+
# },
|
|
714
717
|
# owner_arn: "arn:aws:iam::123456789012:user/MyDemoUser",
|
|
715
718
|
# },
|
|
716
719
|
# {
|
|
717
720
|
# name: "another-demo-environment",
|
|
718
721
|
# type: "ssh",
|
|
719
722
|
# arn: "arn:aws:cloud9:us-east-2:123456789012:environment:349c86d4579e4e7298d500ff57a6b2EX",
|
|
723
|
+
# description: "",
|
|
720
724
|
# id: "349c86d4579e4e7298d500ff57a6b2EX",
|
|
725
|
+
# lifecycle: {
|
|
726
|
+
# status: "CREATED",
|
|
727
|
+
# },
|
|
721
728
|
# owner_arn: "arn:aws:sts::123456789012:assumed-role/AnotherDemoUser/AnotherDemoUser",
|
|
722
729
|
# },
|
|
723
730
|
# ],
|
|
@@ -738,7 +745,7 @@ module Aws::Cloud9
|
|
|
738
745
|
# resp.environments[0].type #=> String, one of "ssh", "ec2"
|
|
739
746
|
# resp.environments[0].arn #=> String
|
|
740
747
|
# resp.environments[0].owner_arn #=> String
|
|
741
|
-
# resp.environments[0].lifecycle.status #=> String, one of "CREATED", "DELETING", "DELETE_FAILED"
|
|
748
|
+
# resp.environments[0].lifecycle.status #=> String, one of "CREATING", "CREATED", "CREATE_FAILED", "DELETING", "DELETE_FAILED"
|
|
742
749
|
# resp.environments[0].lifecycle.reason #=> String
|
|
743
750
|
# resp.environments[0].lifecycle.failure_resource #=> String
|
|
744
751
|
#
|
|
@@ -930,7 +937,7 @@ module Aws::Cloud9
|
|
|
930
937
|
params: params,
|
|
931
938
|
config: config)
|
|
932
939
|
context[:gem_name] = 'aws-sdk-cloud9'
|
|
933
|
-
context[:gem_version] = '1.
|
|
940
|
+
context[:gem_version] = '1.19.0'
|
|
934
941
|
Seahorse::Client::Request.new(handlers, context)
|
|
935
942
|
end
|
|
936
943
|
|
data/lib/aws-sdk-cloud9/types.rb
CHANGED
|
@@ -398,11 +398,15 @@ module Aws::Cloud9
|
|
|
398
398
|
# @!attribute [rw] status
|
|
399
399
|
# The current creation or deletion lifecycle state of the environment.
|
|
400
400
|
#
|
|
401
|
+
# * `CREATING`\: The environment is in the process of being created.
|
|
402
|
+
#
|
|
401
403
|
# * `CREATED`\: The environment was successfully created.
|
|
402
404
|
#
|
|
403
|
-
# * `
|
|
405
|
+
# * `CREATE_FAILED`\: The environment failed to be created.
|
|
404
406
|
#
|
|
405
407
|
# * `DELETING`\: The environment is in the process of being deleted.
|
|
408
|
+
#
|
|
409
|
+
# * `DELETE_FAILED`\: The environment failed to delete.
|
|
406
410
|
# @return [String]
|
|
407
411
|
#
|
|
408
412
|
# @!attribute [rw] reason
|
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.19.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: 2019-10-
|
|
11
|
+
date: 2019-10-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|