aws-sdk-cloud9 1.21.0 → 1.26.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 +5 -5
- data/lib/aws-sdk-cloud9.rb +3 -1
- data/lib/aws-sdk-cloud9/client.rb +37 -21
- data/lib/aws-sdk-cloud9/client_api.rb +10 -0
- data/lib/aws-sdk-cloud9/errors.rb +13 -0
- data/lib/aws-sdk-cloud9/resource.rb +3 -7
- data/lib/aws-sdk-cloud9/types.rb +47 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e164f2487dd3e36b5e6bbcc27825463d456f8c0d2a73b1cfa08e095e634273d9
|
4
|
+
data.tar.gz: 497fd85f97f236e4f9d11f3ba559840ba2f1c1e64f84cf618407c23d9781e2fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2eec9ff14662b0e3075e7579ab6577b7acdda3eff87c01eae7b5d2e7a63f4abbafc660faa1c5ba1645f86bcf384f598adaa37ac144aa2f8bf1f4bdee52e29c1b
|
7
|
+
data.tar.gz: d9e8a84b656fbb9a0a8899cb3548cc9f324629205bad2c0025258b97a35de21ef909eb99b93e529724334eab38aa74d303f459ce0294a45ea4c670dd5060b3c0
|
data/lib/aws-sdk-cloud9.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-cloud9/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::Cloud9
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.26.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:cloud9)
|
|
32
35
|
module Aws::Cloud9
|
33
36
|
# An API client for Cloud9. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::Cloud9::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::Cloud9
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::Cloud9
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::Cloud9
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::Cloud9
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::Cloud9
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -275,8 +283,7 @@ module Aws::Cloud9
|
|
275
283
|
#
|
276
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
285
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
280
287
|
#
|
281
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +295,7 @@ module Aws::Cloud9
|
|
288
295
|
# request body. This option has no effect unless the request has
|
289
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
297
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
298
|
+
# request on the session.
|
292
299
|
#
|
293
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -359,6 +366,9 @@ module Aws::Cloud9
|
|
359
366
|
# An array of key-value pairs that will be associated with the new AWS
|
360
367
|
# Cloud9 development environment.
|
361
368
|
#
|
369
|
+
# @option params [String] :connection_type
|
370
|
+
# The connection type used for connecting to an Amazon EC2 environment.
|
371
|
+
#
|
362
372
|
# @return [Types::CreateEnvironmentEC2Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
363
373
|
#
|
364
374
|
# * {Types::CreateEnvironmentEC2Result#environment_id #environment_id} => String
|
@@ -396,6 +406,7 @@ module Aws::Cloud9
|
|
396
406
|
# value: "TagValue", # required
|
397
407
|
# },
|
398
408
|
# ],
|
409
|
+
# connection_type: "CONNECT_SSH", # accepts CONNECT_SSH, CONNECT_SSM
|
399
410
|
# })
|
400
411
|
#
|
401
412
|
# @example Response structure
|
@@ -593,6 +604,8 @@ module Aws::Cloud9
|
|
593
604
|
# * {Types::DescribeEnvironmentMembershipsResult#memberships #memberships} => Array<Types::EnvironmentMember>
|
594
605
|
# * {Types::DescribeEnvironmentMembershipsResult#next_token #next_token} => String
|
595
606
|
#
|
607
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
608
|
+
#
|
596
609
|
#
|
597
610
|
# @example Example: DescribeEnvironmentMemberships1
|
598
611
|
#
|
@@ -804,6 +817,7 @@ module Aws::Cloud9
|
|
804
817
|
# resp.environments[0].name #=> String
|
805
818
|
# resp.environments[0].description #=> String
|
806
819
|
# resp.environments[0].type #=> String, one of "ssh", "ec2"
|
820
|
+
# resp.environments[0].connection_type #=> String, one of "CONNECT_SSH", "CONNECT_SSM"
|
807
821
|
# resp.environments[0].arn #=> String
|
808
822
|
# resp.environments[0].owner_arn #=> String
|
809
823
|
# resp.environments[0].lifecycle.status #=> String, one of "CREATING", "CREATED", "CREATE_FAILED", "DELETING", "DELETE_FAILED"
|
@@ -838,6 +852,8 @@ module Aws::Cloud9
|
|
838
852
|
# * {Types::ListEnvironmentsResult#next_token #next_token} => String
|
839
853
|
# * {Types::ListEnvironmentsResult#environment_ids #environment_ids} => Array<String>
|
840
854
|
#
|
855
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
856
|
+
#
|
841
857
|
#
|
842
858
|
# @example Example: ListEnvironments
|
843
859
|
#
|
@@ -1094,7 +1110,7 @@ module Aws::Cloud9
|
|
1094
1110
|
params: params,
|
1095
1111
|
config: config)
|
1096
1112
|
context[:gem_name] = 'aws-sdk-cloud9'
|
1097
|
-
context[:gem_version] = '1.
|
1113
|
+
context[:gem_version] = '1.26.0'
|
1098
1114
|
Seahorse::Client::Request.new(handlers, context)
|
1099
1115
|
end
|
1100
1116
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -15,7 +17,9 @@ module Aws::Cloud9
|
|
15
17
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
16
18
|
BoundedEnvironmentIdList = Shapes::ListShape.new(name: 'BoundedEnvironmentIdList')
|
17
19
|
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
20
|
+
ConcurrentAccessException = Shapes::StructureShape.new(name: 'ConcurrentAccessException')
|
18
21
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
22
|
+
ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
|
19
23
|
CreateEnvironmentEC2Request = Shapes::StructureShape.new(name: 'CreateEnvironmentEC2Request')
|
20
24
|
CreateEnvironmentEC2Result = Shapes::StructureShape.new(name: 'CreateEnvironmentEC2Result')
|
21
25
|
CreateEnvironmentMembershipRequest = Shapes::StructureShape.new(name: 'CreateEnvironmentMembershipRequest')
|
@@ -79,6 +83,8 @@ module Aws::Cloud9
|
|
79
83
|
|
80
84
|
BoundedEnvironmentIdList.member = Shapes::ShapeRef.new(shape: EnvironmentId)
|
81
85
|
|
86
|
+
ConcurrentAccessException.struct_class = Types::ConcurrentAccessException
|
87
|
+
|
82
88
|
ConflictException.struct_class = Types::ConflictException
|
83
89
|
|
84
90
|
CreateEnvironmentEC2Request.add_member(:name, Shapes::ShapeRef.new(shape: EnvironmentName, required: true, location_name: "name"))
|
@@ -89,6 +95,7 @@ module Aws::Cloud9
|
|
89
95
|
CreateEnvironmentEC2Request.add_member(:automatic_stop_time_minutes, Shapes::ShapeRef.new(shape: AutomaticStopTimeMinutes, location_name: "automaticStopTimeMinutes"))
|
90
96
|
CreateEnvironmentEC2Request.add_member(:owner_arn, Shapes::ShapeRef.new(shape: UserArn, location_name: "ownerArn"))
|
91
97
|
CreateEnvironmentEC2Request.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
98
|
+
CreateEnvironmentEC2Request.add_member(:connection_type, Shapes::ShapeRef.new(shape: ConnectionType, location_name: "connectionType"))
|
92
99
|
CreateEnvironmentEC2Request.struct_class = Types::CreateEnvironmentEC2Request
|
93
100
|
|
94
101
|
CreateEnvironmentEC2Result.add_member(:environment_id, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentId"))
|
@@ -141,6 +148,7 @@ module Aws::Cloud9
|
|
141
148
|
Environment.add_member(:name, Shapes::ShapeRef.new(shape: EnvironmentName, location_name: "name"))
|
142
149
|
Environment.add_member(:description, Shapes::ShapeRef.new(shape: EnvironmentDescription, location_name: "description"))
|
143
150
|
Environment.add_member(:type, Shapes::ShapeRef.new(shape: EnvironmentType, location_name: "type"))
|
151
|
+
Environment.add_member(:connection_type, Shapes::ShapeRef.new(shape: ConnectionType, location_name: "connectionType"))
|
144
152
|
Environment.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
|
145
153
|
Environment.add_member(:owner_arn, Shapes::ShapeRef.new(shape: String, location_name: "ownerArn"))
|
146
154
|
Environment.add_member(:lifecycle, Shapes::ShapeRef.new(shape: EnvironmentLifecycle, location_name: "lifecycle"))
|
@@ -395,6 +403,7 @@ module Aws::Cloud9
|
|
395
403
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
396
404
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
397
405
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
406
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentAccessException)
|
398
407
|
end)
|
399
408
|
|
400
409
|
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
@@ -406,6 +415,7 @@ module Aws::Cloud9
|
|
406
415
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
407
416
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
408
417
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
418
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentAccessException)
|
409
419
|
end)
|
410
420
|
|
411
421
|
api.add_operation(:update_environment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -26,6 +28,7 @@ module Aws::Cloud9
|
|
26
28
|
#
|
27
29
|
# ## Error Classes
|
28
30
|
# * {BadRequestException}
|
31
|
+
# * {ConcurrentAccessException}
|
29
32
|
# * {ConflictException}
|
30
33
|
# * {ForbiddenException}
|
31
34
|
# * {InternalServerErrorException}
|
@@ -49,6 +52,16 @@ module Aws::Cloud9
|
|
49
52
|
end
|
50
53
|
end
|
51
54
|
|
55
|
+
class ConcurrentAccessException < ServiceError
|
56
|
+
|
57
|
+
# @param [Seahorse::Client::RequestContext] context
|
58
|
+
# @param [String] message
|
59
|
+
# @param [Aws::Cloud9::Types::ConcurrentAccessException] data
|
60
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
61
|
+
super(context, message, data)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
52
65
|
class ConflictException < ServiceError
|
53
66
|
|
54
67
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Cloud9
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::Cloud9::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::Cloud9::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::Cloud9::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
data/lib/aws-sdk-cloud9/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -14,6 +16,12 @@ module Aws::Cloud9
|
|
14
16
|
#
|
15
17
|
class BadRequestException < Aws::EmptyStructure; end
|
16
18
|
|
19
|
+
# A concurrent access issue occurred.
|
20
|
+
#
|
21
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/ConcurrentAccessException AWS API Documentation
|
22
|
+
#
|
23
|
+
class ConcurrentAccessException < Aws::EmptyStructure; end
|
24
|
+
|
17
25
|
# A conflict occurred.
|
18
26
|
#
|
19
27
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/ConflictException AWS API Documentation
|
@@ -37,6 +45,7 @@ module Aws::Cloud9
|
|
37
45
|
# value: "TagValue", # required
|
38
46
|
# },
|
39
47
|
# ],
|
48
|
+
# connection_type: "CONNECT_SSH", # accepts CONNECT_SSH, CONNECT_SSM
|
40
49
|
# }
|
41
50
|
#
|
42
51
|
# @!attribute [rw] name
|
@@ -87,6 +96,11 @@ module Aws::Cloud9
|
|
87
96
|
# Cloud9 development environment.
|
88
97
|
# @return [Array<Types::Tag>]
|
89
98
|
#
|
99
|
+
# @!attribute [rw] connection_type
|
100
|
+
# The connection type used for connecting to an Amazon EC2
|
101
|
+
# environment.
|
102
|
+
# @return [String]
|
103
|
+
#
|
90
104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23/CreateEnvironmentEC2Request AWS API Documentation
|
91
105
|
#
|
92
106
|
class CreateEnvironmentEC2Request < Struct.new(
|
@@ -97,7 +111,9 @@ module Aws::Cloud9
|
|
97
111
|
:subnet_id,
|
98
112
|
:automatic_stop_time_minutes,
|
99
113
|
:owner_arn,
|
100
|
-
:tags
|
114
|
+
:tags,
|
115
|
+
:connection_type)
|
116
|
+
SENSITIVE = [:description]
|
101
117
|
include Aws::Structure
|
102
118
|
end
|
103
119
|
|
@@ -109,6 +125,7 @@ module Aws::Cloud9
|
|
109
125
|
#
|
110
126
|
class CreateEnvironmentEC2Result < Struct.new(
|
111
127
|
:environment_id)
|
128
|
+
SENSITIVE = []
|
112
129
|
include Aws::Structure
|
113
130
|
end
|
114
131
|
|
@@ -146,6 +163,7 @@ module Aws::Cloud9
|
|
146
163
|
:environment_id,
|
147
164
|
:user_arn,
|
148
165
|
:permissions)
|
166
|
+
SENSITIVE = []
|
149
167
|
include Aws::Structure
|
150
168
|
end
|
151
169
|
|
@@ -157,6 +175,7 @@ module Aws::Cloud9
|
|
157
175
|
#
|
158
176
|
class CreateEnvironmentMembershipResult < Struct.new(
|
159
177
|
:membership)
|
178
|
+
SENSITIVE = []
|
160
179
|
include Aws::Structure
|
161
180
|
end
|
162
181
|
|
@@ -182,6 +201,7 @@ module Aws::Cloud9
|
|
182
201
|
class DeleteEnvironmentMembershipRequest < Struct.new(
|
183
202
|
:environment_id,
|
184
203
|
:user_arn)
|
204
|
+
SENSITIVE = []
|
185
205
|
include Aws::Structure
|
186
206
|
end
|
187
207
|
|
@@ -204,6 +224,7 @@ module Aws::Cloud9
|
|
204
224
|
#
|
205
225
|
class DeleteEnvironmentRequest < Struct.new(
|
206
226
|
:environment_id)
|
227
|
+
SENSITIVE = []
|
207
228
|
include Aws::Structure
|
208
229
|
end
|
209
230
|
|
@@ -269,6 +290,7 @@ module Aws::Cloud9
|
|
269
290
|
:permissions,
|
270
291
|
:next_token,
|
271
292
|
:max_results)
|
293
|
+
SENSITIVE = []
|
272
294
|
include Aws::Structure
|
273
295
|
end
|
274
296
|
|
@@ -288,6 +310,7 @@ module Aws::Cloud9
|
|
288
310
|
class DescribeEnvironmentMembershipsResult < Struct.new(
|
289
311
|
:memberships,
|
290
312
|
:next_token)
|
313
|
+
SENSITIVE = []
|
291
314
|
include Aws::Structure
|
292
315
|
end
|
293
316
|
|
@@ -306,6 +329,7 @@ module Aws::Cloud9
|
|
306
329
|
#
|
307
330
|
class DescribeEnvironmentStatusRequest < Struct.new(
|
308
331
|
:environment_id)
|
332
|
+
SENSITIVE = []
|
309
333
|
include Aws::Structure
|
310
334
|
end
|
311
335
|
|
@@ -336,6 +360,7 @@ module Aws::Cloud9
|
|
336
360
|
class DescribeEnvironmentStatusResult < Struct.new(
|
337
361
|
:status,
|
338
362
|
:message)
|
363
|
+
SENSITIVE = []
|
339
364
|
include Aws::Structure
|
340
365
|
end
|
341
366
|
|
@@ -354,6 +379,7 @@ module Aws::Cloud9
|
|
354
379
|
#
|
355
380
|
class DescribeEnvironmentsRequest < Struct.new(
|
356
381
|
:environment_ids)
|
382
|
+
SENSITIVE = []
|
357
383
|
include Aws::Structure
|
358
384
|
end
|
359
385
|
|
@@ -365,6 +391,7 @@ module Aws::Cloud9
|
|
365
391
|
#
|
366
392
|
class DescribeEnvironmentsResult < Struct.new(
|
367
393
|
:environments)
|
394
|
+
SENSITIVE = []
|
368
395
|
include Aws::Structure
|
369
396
|
end
|
370
397
|
|
@@ -391,6 +418,11 @@ module Aws::Cloud9
|
|
391
418
|
# * `ssh`\: Your own server connects to the environment.
|
392
419
|
# @return [String]
|
393
420
|
#
|
421
|
+
# @!attribute [rw] connection_type
|
422
|
+
# The connection type used for connecting to an Amazon EC2
|
423
|
+
# environment.
|
424
|
+
# @return [String]
|
425
|
+
#
|
394
426
|
# @!attribute [rw] arn
|
395
427
|
# The Amazon Resource Name (ARN) of the environment.
|
396
428
|
# @return [String]
|
@@ -410,9 +442,11 @@ module Aws::Cloud9
|
|
410
442
|
:name,
|
411
443
|
:description,
|
412
444
|
:type,
|
445
|
+
:connection_type,
|
413
446
|
:arn,
|
414
447
|
:owner_arn,
|
415
448
|
:lifecycle)
|
449
|
+
SENSITIVE = [:description]
|
416
450
|
include Aws::Structure
|
417
451
|
end
|
418
452
|
|
@@ -449,6 +483,7 @@ module Aws::Cloud9
|
|
449
483
|
:status,
|
450
484
|
:reason,
|
451
485
|
:failure_resource)
|
486
|
+
SENSITIVE = []
|
452
487
|
include Aws::Structure
|
453
488
|
end
|
454
489
|
|
@@ -492,6 +527,7 @@ module Aws::Cloud9
|
|
492
527
|
:user_arn,
|
493
528
|
:environment_id,
|
494
529
|
:last_access)
|
530
|
+
SENSITIVE = []
|
495
531
|
include Aws::Structure
|
496
532
|
end
|
497
533
|
|
@@ -540,6 +576,7 @@ module Aws::Cloud9
|
|
540
576
|
class ListEnvironmentsRequest < Struct.new(
|
541
577
|
:next_token,
|
542
578
|
:max_results)
|
579
|
+
SENSITIVE = []
|
543
580
|
include Aws::Structure
|
544
581
|
end
|
545
582
|
|
@@ -559,6 +596,7 @@ module Aws::Cloud9
|
|
559
596
|
class ListEnvironmentsResult < Struct.new(
|
560
597
|
:next_token,
|
561
598
|
:environment_ids)
|
599
|
+
SENSITIVE = []
|
562
600
|
include Aws::Structure
|
563
601
|
end
|
564
602
|
|
@@ -578,6 +616,7 @@ module Aws::Cloud9
|
|
578
616
|
#
|
579
617
|
class ListTagsForResourceRequest < Struct.new(
|
580
618
|
:resource_arn)
|
619
|
+
SENSITIVE = []
|
581
620
|
include Aws::Structure
|
582
621
|
end
|
583
622
|
|
@@ -590,6 +629,7 @@ module Aws::Cloud9
|
|
590
629
|
#
|
591
630
|
class ListTagsForResourceResponse < Struct.new(
|
592
631
|
:tags)
|
632
|
+
SENSITIVE = []
|
593
633
|
include Aws::Structure
|
594
634
|
end
|
595
635
|
|
@@ -627,6 +667,7 @@ module Aws::Cloud9
|
|
627
667
|
class Tag < Struct.new(
|
628
668
|
:key,
|
629
669
|
:value)
|
670
|
+
SENSITIVE = []
|
630
671
|
include Aws::Structure
|
631
672
|
end
|
632
673
|
|
@@ -658,6 +699,7 @@ module Aws::Cloud9
|
|
658
699
|
class TagResourceRequest < Struct.new(
|
659
700
|
:resource_arn,
|
660
701
|
:tags)
|
702
|
+
SENSITIVE = []
|
661
703
|
include Aws::Structure
|
662
704
|
end
|
663
705
|
|
@@ -694,6 +736,7 @@ module Aws::Cloud9
|
|
694
736
|
class UntagResourceRequest < Struct.new(
|
695
737
|
:resource_arn,
|
696
738
|
:tag_keys)
|
739
|
+
SENSITIVE = []
|
697
740
|
include Aws::Structure
|
698
741
|
end
|
699
742
|
|
@@ -735,6 +778,7 @@ module Aws::Cloud9
|
|
735
778
|
:environment_id,
|
736
779
|
:user_arn,
|
737
780
|
:permissions)
|
781
|
+
SENSITIVE = []
|
738
782
|
include Aws::Structure
|
739
783
|
end
|
740
784
|
|
@@ -747,6 +791,7 @@ module Aws::Cloud9
|
|
747
791
|
#
|
748
792
|
class UpdateEnvironmentMembershipResult < Struct.new(
|
749
793
|
:membership)
|
794
|
+
SENSITIVE = []
|
750
795
|
include Aws::Structure
|
751
796
|
end
|
752
797
|
|
@@ -777,6 +822,7 @@ module Aws::Cloud9
|
|
777
822
|
:environment_id,
|
778
823
|
:name,
|
779
824
|
:description)
|
825
|
+
SENSITIVE = [:description]
|
780
826
|
include Aws::Structure
|
781
827
|
end
|
782
828
|
|
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.26.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: 2020-
|
11
|
+
date: 2020-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWS Cloud9
|