aws-sdk-cloud9 1.7.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9808868569f198ba9c30a0b75ecdce2c1ae66368
4
- data.tar.gz: 67c0fae93c7d85a4aecbc7403e1a02bf7c69d89d
3
+ metadata.gz: d74576fe9f8c887f85c531c0bd789f744ff05fb2
4
+ data.tar.gz: 1005cd4b4f83f8f135dc7d7651605de72a5558d9
5
5
  SHA512:
6
- metadata.gz: 0f8c4b3dd933248522c49e5d487a0525662696b7481d9fd6baa77e159842bd5bb2c8addc963e9516d765aa6b82bc5b3c54c42cfa284768e46b1ec1dce5462aa9
7
- data.tar.gz: '097d5210e72b07c33f0af2f405ae80822f70746e6bafb619a12ea54e2c7ef42a4953808945dfe48e459be4e9efb308860523660db589abb85895dbd36836408c'
6
+ metadata.gz: ec0517247b381fe8a6655f1cfae962fd76cf3613548415da1bcdbaae7259d97202de142d016eae66594356a1721775600c40774c5fefd3ae1563ecf70b4e3700
7
+ data.tar.gz: 1f841d9c31263821de0e754608ee0f3c324aa5cdac310003f7fe0627192cc4a3c56208e43dbf3e18dab01a8414de7c16423d2e93df402481d7d478cec31d5a58
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-cloud9/customizations'
42
42
  # @service
43
43
  module Aws::Cloud9
44
44
 
45
- GEM_VERSION = '1.7.0'
45
+ GEM_VERSION = '1.8.0'
46
46
 
47
47
  end
@@ -689,6 +689,9 @@ module Aws::Cloud9
689
689
  # resp.environments[0].type #=> String, one of "ssh", "ec2"
690
690
  # resp.environments[0].arn #=> String
691
691
  # resp.environments[0].owner_arn #=> String
692
+ # resp.environments[0].lifecycle.status #=> String, one of "CREATED", "DELETING", "DELETE_FAILED"
693
+ # resp.environments[0].lifecycle.reason #=> String
694
+ # resp.environments[0].lifecycle.failure_resource #=> String
692
695
  #
693
696
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/DescribeEnvironments AWS API Documentation
694
697
  #
@@ -878,7 +881,7 @@ module Aws::Cloud9
878
881
  params: params,
879
882
  config: config)
880
883
  context[:gem_name] = 'aws-sdk-cloud9'
881
- context[:gem_version] = '1.7.0'
884
+ context[:gem_version] = '1.8.0'
882
885
  Seahorse::Client::Request.new(handlers, context)
883
886
  end
884
887
 
@@ -34,6 +34,8 @@ module Aws::Cloud9
34
34
  EnvironmentDescription = Shapes::StringShape.new(name: 'EnvironmentDescription')
35
35
  EnvironmentId = Shapes::StringShape.new(name: 'EnvironmentId')
36
36
  EnvironmentIdList = Shapes::ListShape.new(name: 'EnvironmentIdList')
37
+ EnvironmentLifecycle = Shapes::StructureShape.new(name: 'EnvironmentLifecycle')
38
+ EnvironmentLifecycleStatus = Shapes::StringShape.new(name: 'EnvironmentLifecycleStatus')
37
39
  EnvironmentList = Shapes::ListShape.new(name: 'EnvironmentList')
38
40
  EnvironmentMember = Shapes::StructureShape.new(name: 'EnvironmentMember')
39
41
  EnvironmentMembersList = Shapes::ListShape.new(name: 'EnvironmentMembersList')
@@ -124,10 +126,16 @@ module Aws::Cloud9
124
126
  Environment.add_member(:type, Shapes::ShapeRef.new(shape: EnvironmentType, location_name: "type"))
125
127
  Environment.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
126
128
  Environment.add_member(:owner_arn, Shapes::ShapeRef.new(shape: String, location_name: "ownerArn"))
129
+ Environment.add_member(:lifecycle, Shapes::ShapeRef.new(shape: EnvironmentLifecycle, location_name: "lifecycle"))
127
130
  Environment.struct_class = Types::Environment
128
131
 
129
132
  EnvironmentIdList.member = Shapes::ShapeRef.new(shape: EnvironmentId)
130
133
 
134
+ EnvironmentLifecycle.add_member(:status, Shapes::ShapeRef.new(shape: EnvironmentLifecycleStatus, location_name: "status"))
135
+ EnvironmentLifecycle.add_member(:reason, Shapes::ShapeRef.new(shape: String, location_name: "reason"))
136
+ EnvironmentLifecycle.add_member(:failure_resource, Shapes::ShapeRef.new(shape: String, location_name: "failureResource"))
137
+ EnvironmentLifecycle.struct_class = Types::EnvironmentLifecycle
138
+
131
139
  EnvironmentList.member = Shapes::ShapeRef.new(shape: Environment)
132
140
 
133
141
  EnvironmentMember.add_member(:permissions, Shapes::ShapeRef.new(shape: Permissions, location_name: "permissions"))
@@ -176,6 +184,7 @@ module Aws::Cloud9
176
184
  "jsonVersion" => "1.1",
177
185
  "protocol" => "json",
178
186
  "serviceFullName" => "AWS Cloud9",
187
+ "serviceId" => "Cloud9",
179
188
  "signatureVersion" => "v4",
180
189
  "targetPrefix" => "AWSCloud9WorkspaceManagementService",
181
190
  "uid" => "cloud9-2017-09-23",
@@ -375,6 +375,10 @@ module Aws::Cloud9
375
375
  # The Amazon Resource Name (ARN) of the environment owner.
376
376
  # @return [String]
377
377
  #
378
+ # @!attribute [rw] lifecycle
379
+ # The state of the environment in its creation or deletion lifecycle.
380
+ # @return [Types::EnvironmentLifecycle]
381
+ #
378
382
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/Environment AWS API Documentation
379
383
  #
380
384
  class Environment < Struct.new(
@@ -383,7 +387,40 @@ module Aws::Cloud9
383
387
  :description,
384
388
  :type,
385
389
  :arn,
386
- :owner_arn)
390
+ :owner_arn,
391
+ :lifecycle)
392
+ include Aws::Structure
393
+ end
394
+
395
+ # Information about the current creation or deletion lifecycle state of
396
+ # an AWS Cloud9 development environment.
397
+ #
398
+ # @!attribute [rw] status
399
+ # The current creation or deletion lifecycle state of the environment.
400
+ #
401
+ # * `CREATED`\: The environment was successfully created.
402
+ #
403
+ # * `DELETE_FAILED`\: The environment failed to delete.
404
+ #
405
+ # * `DELETING`\: The environment is in the process of being deleted.
406
+ # @return [String]
407
+ #
408
+ # @!attribute [rw] reason
409
+ # Any informational message about the lifecycle state of the
410
+ # environment.
411
+ # @return [String]
412
+ #
413
+ # @!attribute [rw] failure_resource
414
+ # If the environment failed to delete, the Amazon Resource Name (ARN)
415
+ # of the related AWS resource.
416
+ # @return [String]
417
+ #
418
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/EnvironmentLifecycle AWS API Documentation
419
+ #
420
+ class EnvironmentLifecycle < Struct.new(
421
+ :status,
422
+ :reason,
423
+ :failure_resource)
387
424
  include Aws::Structure
388
425
  end
389
426
 
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.7.0
4
+ version: 1.8.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: 2018-11-20 00:00:00.000000000 Z
11
+ date: 2019-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core