aws-sdk-cloud9 1.47.0 → 1.49.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
  SHA256:
3
- metadata.gz: f9e12695549da34bd350bfdf17b3dca9fd6e766ce0edf4552445a9992e3481c6
4
- data.tar.gz: 4312b3d22bc531eff829bd335b1ae34f0dd0799de8b1f2263d93997af6816113
3
+ metadata.gz: 2f9a604f5d70d799999450004a729dc896e2b556097a4cf5e61d7ab1991dc693
4
+ data.tar.gz: dad82fa8399129c55a4d6b812f347649503aedcfb4803513b46fde27ce1d9429
5
5
  SHA512:
6
- metadata.gz: 6e441143a264f857503f7c45ac819b03944764953dfb75f6d0a18a8ae4850a86039bcabb9196d9498f7bc86ee886ee27d767181a0a14e3384f5343ce9948e0c5
7
- data.tar.gz: 99ee63c56826468beff1d41a6ee40e0e882d504ad906e2b2c10eef49cd5e081996c3ccc99e2b0f5d2e83fd80b93dcfdff9d6a0e38fbc43569f08c6f3ee998c5d
6
+ metadata.gz: 7076de66da2d92bcd0136d646cc55ae5f36efe9f16d78a24b509938c8c6f84b874a9def93873cb69a8c51835915c3910a736cc949d22ca2272b8ef43fbdbdbc8
7
+ data.tar.gz: e4e9e64e1ce19473dc6e9d0e5a1d01a3e10d411c58cd44a5886fcc8e9bbba7b9d11a2ee6aa7dcfe89b0cbb1a610e3fc1b6cfdd1cbd42bd15892f611c49f937ca
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.49.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
11
+ 1.48.0 (2023-01-17)
12
+ ------------------
13
+
14
+ * Feature - Added minimum value to AutomaticStopTimeMinutes parameter.
15
+
4
16
  1.47.0 (2022-10-28)
5
17
  ------------------
6
18
 
@@ -245,4 +257,4 @@ Unreleased Changes
245
257
  1.0.0 (2017-11-30)
246
258
  ------------------
247
259
 
248
- * Feature - Initial release of `aws-sdk-cloud9`.
260
+ * Feature - Initial release of `aws-sdk-cloud9`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.49.0
@@ -1231,7 +1231,7 @@ module Aws::Cloud9
1231
1231
  params: params,
1232
1232
  config: config)
1233
1233
  context[:gem_name] = 'aws-sdk-cloud9'
1234
- context[:gem_version] = '1.47.0'
1234
+ context[:gem_version] = '1.49.0'
1235
1235
  Seahorse::Client::Request.new(handlers, context)
1236
1236
  end
1237
1237
 
@@ -50,6 +50,9 @@ module Aws::Cloud9
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
+ if self[:region].nil?
54
+ raise ArgumentError, "Missing required EndpointParameter: :region"
55
+ end
53
56
  self[:use_dual_stack] = options[:use_dual_stack]
54
57
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
58
  if self[:use_dual_stack].nil?
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::Cloud9
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint)
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://cloud9-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://cloud9-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://cloud9.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://cloud9.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2Nsb3VkOS1maXBzLntSZWdpb259LntQYXJ0
77
- aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMi
78
- Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25k
79
- aXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVu
80
- YWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9u
81
- ZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7
82
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMi
83
- fSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
84
- IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoi
85
- Z2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJz
86
- dXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
87
- bmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
88
- b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9jbG91ZDktZmlw
89
- cy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9w
90
- ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
91
- XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQg
92
- YnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5
93
- cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5F
94
- cXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1d
95
- LCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6
96
- ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIs
97
- ImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1
98
- YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
99
- aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vY2xvdWQ5LntS
100
- ZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIs
101
- InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
102
- dCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMg
103
- ZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBE
104
- dWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10s
105
- ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vY2xvdWQ5LntSZWdpb259LntQ
106
- YXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
107
- ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -28,28 +28,6 @@ module Aws::Cloud9
28
28
  #
29
29
  class ConflictException < Aws::EmptyStructure; end
30
30
 
31
- # @note When making an API call, you may pass CreateEnvironmentEC2Request
32
- # data as a hash:
33
- #
34
- # {
35
- # name: "EnvironmentName", # required
36
- # description: "EnvironmentDescription",
37
- # client_request_token: "ClientRequestToken",
38
- # instance_type: "InstanceType", # required
39
- # subnet_id: "SubnetId",
40
- # image_id: "ImageId",
41
- # automatic_stop_time_minutes: 1,
42
- # owner_arn: "UserArn",
43
- # tags: [
44
- # {
45
- # key: "TagKey", # required
46
- # value: "TagValue", # required
47
- # },
48
- # ],
49
- # connection_type: "CONNECT_SSH", # accepts CONNECT_SSH, CONNECT_SSM
50
- # dry_run: false,
51
- # }
52
- #
53
31
  # @!attribute [rw] name
54
32
  # The name of the environment to create.
55
33
  #
@@ -184,15 +162,6 @@ module Aws::Cloud9
184
162
  include Aws::Structure
185
163
  end
186
164
 
187
- # @note When making an API call, you may pass CreateEnvironmentMembershipRequest
188
- # data as a hash:
189
- #
190
- # {
191
- # environment_id: "EnvironmentId", # required
192
- # user_arn: "UserArn", # required
193
- # permissions: "read-write", # required, accepts read-write, read-only
194
- # }
195
- #
196
165
  # @!attribute [rw] environment_id
197
166
  # The ID of the environment that contains the environment member you
198
167
  # want to add.
@@ -234,14 +203,6 @@ module Aws::Cloud9
234
203
  include Aws::Structure
235
204
  end
236
205
 
237
- # @note When making an API call, you may pass DeleteEnvironmentMembershipRequest
238
- # data as a hash:
239
- #
240
- # {
241
- # environment_id: "EnvironmentId", # required
242
- # user_arn: "UserArn", # required
243
- # }
244
- #
245
206
  # @!attribute [rw] environment_id
246
207
  # The ID of the environment to delete the environment member from.
247
208
  # @return [String]
@@ -264,13 +225,6 @@ module Aws::Cloud9
264
225
  #
265
226
  class DeleteEnvironmentMembershipResult < Aws::EmptyStructure; end
266
227
 
267
- # @note When making an API call, you may pass DeleteEnvironmentRequest
268
- # data as a hash:
269
- #
270
- # {
271
- # environment_id: "EnvironmentId", # required
272
- # }
273
- #
274
228
  # @!attribute [rw] environment_id
275
229
  # The ID of the environment to delete.
276
230
  # @return [String]
@@ -287,17 +241,6 @@ module Aws::Cloud9
287
241
  #
288
242
  class DeleteEnvironmentResult < Aws::EmptyStructure; end
289
243
 
290
- # @note When making an API call, you may pass DescribeEnvironmentMembershipsRequest
291
- # data as a hash:
292
- #
293
- # {
294
- # user_arn: "UserArn",
295
- # environment_id: "EnvironmentId",
296
- # permissions: ["owner"], # accepts owner, read-write, read-only
297
- # next_token: "String",
298
- # max_results: 1,
299
- # }
300
- #
301
244
  # @!attribute [rw] user_arn
302
245
  # The Amazon Resource Name (ARN) of an individual environment member
303
246
  # to get information about. If no value is specified, information
@@ -369,13 +312,6 @@ module Aws::Cloud9
369
312
  include Aws::Structure
370
313
  end
371
314
 
372
- # @note When making an API call, you may pass DescribeEnvironmentStatusRequest
373
- # data as a hash:
374
- #
375
- # {
376
- # environment_id: "EnvironmentId", # required
377
- # }
378
- #
379
315
  # @!attribute [rw] environment_id
380
316
  # The ID of the environment to get status information about.
381
317
  # @return [String]
@@ -419,13 +355,6 @@ module Aws::Cloud9
419
355
  include Aws::Structure
420
356
  end
421
357
 
422
- # @note When making an API call, you may pass DescribeEnvironmentsRequest
423
- # data as a hash:
424
- #
425
- # {
426
- # environment_ids: ["EnvironmentId"], # required
427
- # }
428
- #
429
358
  # @!attribute [rw] environment_ids
430
359
  # The IDs of individual environments to get information about.
431
360
  # @return [Array<String>]
@@ -630,14 +559,6 @@ module Aws::Cloud9
630
559
  #
631
560
  class LimitExceededException < Aws::EmptyStructure; end
632
561
 
633
- # @note When making an API call, you may pass ListEnvironmentsRequest
634
- # data as a hash:
635
- #
636
- # {
637
- # next_token: "String",
638
- # max_results: 1,
639
- # }
640
- #
641
562
  # @!attribute [rw] next_token
642
563
  # During a previous call, if there are more than 25 items in the list,
643
564
  # only the first 25 items are returned, along with a unique string
@@ -681,13 +602,6 @@ module Aws::Cloud9
681
602
  include Aws::Structure
682
603
  end
683
604
 
684
- # @note When making an API call, you may pass ListTagsForResourceRequest
685
- # data as a hash:
686
- #
687
- # {
688
- # resource_arn: "EnvironmentArn", # required
689
- # }
690
- #
691
605
  # @!attribute [rw] resource_arn
692
606
  # The Amazon Resource Name (ARN) of the Cloud9 development environment
693
607
  # to get the tags for.
@@ -726,14 +640,6 @@ module Aws::Cloud9
726
640
  # automatically created by Amazon Web Services services. A system tag is
727
641
  # prefixed with `"aws:"` and cannot be modified by the user.
728
642
  #
729
- # @note When making an API call, you may pass Tag
730
- # data as a hash:
731
- #
732
- # {
733
- # key: "TagKey", # required
734
- # value: "TagValue", # required
735
- # }
736
- #
737
643
  # @!attribute [rw] key
738
644
  # The **name** part of a tag.
739
645
  # @return [String]
@@ -751,19 +657,6 @@ module Aws::Cloud9
751
657
  include Aws::Structure
752
658
  end
753
659
 
754
- # @note When making an API call, you may pass TagResourceRequest
755
- # data as a hash:
756
- #
757
- # {
758
- # resource_arn: "EnvironmentArn", # required
759
- # tags: [ # required
760
- # {
761
- # key: "TagKey", # required
762
- # value: "TagValue", # required
763
- # },
764
- # ],
765
- # }
766
- #
767
660
  # @!attribute [rw] resource_arn
768
661
  # The Amazon Resource Name (ARN) of the Cloud9 development environment
769
662
  # to add tags to.
@@ -792,14 +685,6 @@ module Aws::Cloud9
792
685
  #
793
686
  class TooManyRequestsException < Aws::EmptyStructure; end
794
687
 
795
- # @note When making an API call, you may pass UntagResourceRequest
796
- # data as a hash:
797
- #
798
- # {
799
- # resource_arn: "EnvironmentArn", # required
800
- # tag_keys: ["TagKey"], # required
801
- # }
802
- #
803
688
  # @!attribute [rw] resource_arn
804
689
  # The Amazon Resource Name (ARN) of the Cloud9 development environment
805
690
  # to remove tags from.
@@ -823,15 +708,6 @@ module Aws::Cloud9
823
708
  #
824
709
  class UntagResourceResponse < Aws::EmptyStructure; end
825
710
 
826
- # @note When making an API call, you may pass UpdateEnvironmentMembershipRequest
827
- # data as a hash:
828
- #
829
- # {
830
- # environment_id: "EnvironmentId", # required
831
- # user_arn: "UserArn", # required
832
- # permissions: "read-write", # required, accepts read-write, read-only
833
- # }
834
- #
835
711
  # @!attribute [rw] environment_id
836
712
  # The ID of the environment for the environment member whose settings
837
713
  # you want to change.
@@ -874,16 +750,6 @@ module Aws::Cloud9
874
750
  include Aws::Structure
875
751
  end
876
752
 
877
- # @note When making an API call, you may pass UpdateEnvironmentRequest
878
- # data as a hash:
879
- #
880
- # {
881
- # environment_id: "EnvironmentId", # required
882
- # name: "EnvironmentName",
883
- # description: "EnvironmentDescription",
884
- # managed_credentials_action: "ENABLE", # accepts ENABLE, DISABLE
885
- # }
886
- #
887
753
  # @!attribute [rw] environment_id
888
754
  # The ID of the environment to change settings.
889
755
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloud9/customizations'
52
52
  # @!group service
53
53
  module Aws::Cloud9
54
54
 
55
- GEM_VERSION = '1.47.0'
55
+ GEM_VERSION = '1.49.0'
56
56
 
57
57
  end
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.47.0
4
+ version: 1.49.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: 2022-10-28 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core