aws-sdk-cloud9 1.66.0 → 1.68.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 010f7d9aea8c9e0b3708befb36c527d414762c3b104c3b9c968f21dddb613678
4
- data.tar.gz: cc07c9619830640fef83ec0d69dc2158b2348322fc2285ad41180f80750a1c83
3
+ metadata.gz: ecbf89fcac905f9204edb897009c6eecbc4ec800cd506a466f81b9768ff71a40
4
+ data.tar.gz: 8d5cbabc38787c68094489c397d90b62379abe1db7dd26b859787f0d83f19ebb
5
5
  SHA512:
6
- metadata.gz: 4f54cbd7973637c7d97f59981dd71d466c66c01586c1494c2039d776526d2554765a78166619c3e5a7925411f650bc47f2b8e6448e72736724a8a81569c6f98e
7
- data.tar.gz: a099c8dd755b69c5b7c5b9d7cbac0babd3b0e3c9c540afc1793e297890aae6a377757915655d3d2685ca78c59ae35da2536be6ade87c1ba1a13876fbcae17cdc
6
+ metadata.gz: 8f98b368eb7c989630fab9ce75cb945f91383e91352f7c9c630dc7528e355cf1caba1cd63b3d6e9db35eb1cc7182c16226d43d83477e809543f9aab1e035e224
7
+ data.tar.gz: 644fdd76a4bb76933c4c8633b985f331d6f93e4f9fbab571cd92d3f788895f709bd6f94f39db0811e3345eb0808c5faa84e7bb6704d7111a520b5441cf22839e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.67.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.66.0 (2024-01-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::Cloud9
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::Cloud9
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::Cloud9
347
356
  # @option options [Aws::Cloud9::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Cloud9::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -1261,7 +1285,7 @@ module Aws::Cloud9
1261
1285
  params: params,
1262
1286
  config: config)
1263
1287
  context[:gem_name] = 'aws-sdk-cloud9'
1264
- context[:gem_version] = '1.66.0'
1288
+ context[:gem_version] = '1.68.0'
1265
1289
  Seahorse::Client::Request.new(handlers, context)
1266
1290
  end
1267
1291
 
@@ -14,6 +14,7 @@ module Aws::Cloud9
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Cloud9::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -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.66.0'
55
+ GEM_VERSION = '1.68.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,241 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Cloud9
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ interface _CreateEnvironmentEC2ResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentEC2Result]
78
+ def environment_id: () -> ::String
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#create_environment_ec2-instance_method
81
+ def create_environment_ec2: (
82
+ name: ::String,
83
+ ?description: ::String,
84
+ ?client_request_token: ::String,
85
+ instance_type: ::String,
86
+ ?subnet_id: ::String,
87
+ image_id: ::String,
88
+ ?automatic_stop_time_minutes: ::Integer,
89
+ ?owner_arn: ::String,
90
+ ?tags: Array[
91
+ {
92
+ key: ::String,
93
+ value: ::String
94
+ },
95
+ ],
96
+ ?connection_type: ("CONNECT_SSH" | "CONNECT_SSM"),
97
+ ?dry_run: bool
98
+ ) -> _CreateEnvironmentEC2ResponseSuccess
99
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentEC2ResponseSuccess
100
+
101
+ interface _CreateEnvironmentMembershipResponseSuccess
102
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEnvironmentMembershipResult]
103
+ def membership: () -> Types::EnvironmentMember
104
+ end
105
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#create_environment_membership-instance_method
106
+ def create_environment_membership: (
107
+ environment_id: ::String,
108
+ user_arn: ::String,
109
+ permissions: ("read-write" | "read-only")
110
+ ) -> _CreateEnvironmentMembershipResponseSuccess
111
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentMembershipResponseSuccess
112
+
113
+ interface _DeleteEnvironmentResponseSuccess
114
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEnvironmentResult]
115
+ end
116
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#delete_environment-instance_method
117
+ def delete_environment: (
118
+ environment_id: ::String
119
+ ) -> _DeleteEnvironmentResponseSuccess
120
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEnvironmentResponseSuccess
121
+
122
+ interface _DeleteEnvironmentMembershipResponseSuccess
123
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEnvironmentMembershipResult]
124
+ end
125
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#delete_environment_membership-instance_method
126
+ def delete_environment_membership: (
127
+ environment_id: ::String,
128
+ user_arn: ::String
129
+ ) -> _DeleteEnvironmentMembershipResponseSuccess
130
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEnvironmentMembershipResponseSuccess
131
+
132
+ interface _DescribeEnvironmentMembershipsResponseSuccess
133
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEnvironmentMembershipsResult]
134
+ def memberships: () -> ::Array[Types::EnvironmentMember]
135
+ def next_token: () -> ::String
136
+ end
137
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#describe_environment_memberships-instance_method
138
+ def describe_environment_memberships: (
139
+ ?user_arn: ::String,
140
+ ?environment_id: ::String,
141
+ ?permissions: Array[("owner" | "read-write" | "read-only")],
142
+ ?next_token: ::String,
143
+ ?max_results: ::Integer
144
+ ) -> _DescribeEnvironmentMembershipsResponseSuccess
145
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEnvironmentMembershipsResponseSuccess
146
+
147
+ interface _DescribeEnvironmentStatusResponseSuccess
148
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEnvironmentStatusResult]
149
+ def status: () -> ("error" | "creating" | "connecting" | "ready" | "stopping" | "stopped" | "deleting")
150
+ def message: () -> ::String
151
+ end
152
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#describe_environment_status-instance_method
153
+ def describe_environment_status: (
154
+ environment_id: ::String
155
+ ) -> _DescribeEnvironmentStatusResponseSuccess
156
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEnvironmentStatusResponseSuccess
157
+
158
+ interface _DescribeEnvironmentsResponseSuccess
159
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEnvironmentsResult]
160
+ def environments: () -> ::Array[Types::Environment]
161
+ end
162
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#describe_environments-instance_method
163
+ def describe_environments: (
164
+ environment_ids: Array[::String]
165
+ ) -> _DescribeEnvironmentsResponseSuccess
166
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEnvironmentsResponseSuccess
167
+
168
+ interface _ListEnvironmentsResponseSuccess
169
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEnvironmentsResult]
170
+ def next_token: () -> ::String
171
+ def environment_ids: () -> ::Array[::String]
172
+ end
173
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#list_environments-instance_method
174
+ def list_environments: (
175
+ ?next_token: ::String,
176
+ ?max_results: ::Integer
177
+ ) -> _ListEnvironmentsResponseSuccess
178
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEnvironmentsResponseSuccess
179
+
180
+ interface _ListTagsForResourceResponseSuccess
181
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
182
+ def tags: () -> ::Array[Types::Tag]
183
+ end
184
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#list_tags_for_resource-instance_method
185
+ def list_tags_for_resource: (
186
+ resource_arn: ::String
187
+ ) -> _ListTagsForResourceResponseSuccess
188
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
189
+
190
+ interface _TagResourceResponseSuccess
191
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
192
+ end
193
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#tag_resource-instance_method
194
+ def tag_resource: (
195
+ resource_arn: ::String,
196
+ tags: Array[
197
+ {
198
+ key: ::String,
199
+ value: ::String
200
+ },
201
+ ]
202
+ ) -> _TagResourceResponseSuccess
203
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
204
+
205
+ interface _UntagResourceResponseSuccess
206
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
207
+ end
208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#untag_resource-instance_method
209
+ def untag_resource: (
210
+ resource_arn: ::String,
211
+ tag_keys: Array[::String]
212
+ ) -> _UntagResourceResponseSuccess
213
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
214
+
215
+ interface _UpdateEnvironmentResponseSuccess
216
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentResult]
217
+ end
218
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#update_environment-instance_method
219
+ def update_environment: (
220
+ environment_id: ::String,
221
+ ?name: ::String,
222
+ ?description: ::String,
223
+ ?managed_credentials_action: ("ENABLE" | "DISABLE")
224
+ ) -> _UpdateEnvironmentResponseSuccess
225
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
226
+
227
+ interface _UpdateEnvironmentMembershipResponseSuccess
228
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEnvironmentMembershipResult]
229
+ def membership: () -> Types::EnvironmentMember
230
+ end
231
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Client.html#update_environment_membership-instance_method
232
+ def update_environment_membership: (
233
+ environment_id: ::String,
234
+ user_arn: ::String,
235
+ permissions: ("read-write" | "read-only")
236
+ ) -> _UpdateEnvironmentMembershipResponseSuccess
237
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentMembershipResponseSuccess
238
+ end
239
+ end
240
+ end
241
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,32 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Cloud9
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class BadRequestException < ::Aws::Errors::ServiceError
15
+ end
16
+ class ConcurrentAccessException < ::Aws::Errors::ServiceError
17
+ end
18
+ class ConflictException < ::Aws::Errors::ServiceError
19
+ end
20
+ class ForbiddenException < ::Aws::Errors::ServiceError
21
+ end
22
+ class InternalServerErrorException < ::Aws::Errors::ServiceError
23
+ end
24
+ class LimitExceededException < ::Aws::Errors::ServiceError
25
+ end
26
+ class NotFoundException < ::Aws::Errors::ServiceError
27
+ end
28
+ class TooManyRequestsException < ::Aws::Errors::ServiceError
29
+ end
30
+ end
31
+ end
32
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,80 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Cloud9
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Cloud9/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> void
73
+ | (?Hash[Symbol, untyped]) -> void
74
+
75
+ def client: () -> Client
76
+
77
+
78
+ end
79
+ end
80
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,218 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::Cloud9
9
+ module Types
10
+
11
+ class BadRequestException < Aws::EmptyStructure
12
+ end
13
+
14
+ class ConcurrentAccessException < Aws::EmptyStructure
15
+ end
16
+
17
+ class ConflictException < Aws::EmptyStructure
18
+ end
19
+
20
+ class CreateEnvironmentEC2Request
21
+ attr_accessor name: ::String
22
+ attr_accessor description: ::String
23
+ attr_accessor client_request_token: ::String
24
+ attr_accessor instance_type: ::String
25
+ attr_accessor subnet_id: ::String
26
+ attr_accessor image_id: ::String
27
+ attr_accessor automatic_stop_time_minutes: ::Integer
28
+ attr_accessor owner_arn: ::String
29
+ attr_accessor tags: ::Array[Types::Tag]
30
+ attr_accessor connection_type: ("CONNECT_SSH" | "CONNECT_SSM")
31
+ attr_accessor dry_run: bool
32
+ SENSITIVE: [:description, :tags]
33
+ end
34
+
35
+ class CreateEnvironmentEC2Result
36
+ attr_accessor environment_id: ::String
37
+ SENSITIVE: []
38
+ end
39
+
40
+ class CreateEnvironmentMembershipRequest
41
+ attr_accessor environment_id: ::String
42
+ attr_accessor user_arn: ::String
43
+ attr_accessor permissions: ("read-write" | "read-only")
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class CreateEnvironmentMembershipResult
48
+ attr_accessor membership: Types::EnvironmentMember
49
+ SENSITIVE: []
50
+ end
51
+
52
+ class DeleteEnvironmentMembershipRequest
53
+ attr_accessor environment_id: ::String
54
+ attr_accessor user_arn: ::String
55
+ SENSITIVE: []
56
+ end
57
+
58
+ class DeleteEnvironmentMembershipResult < Aws::EmptyStructure
59
+ end
60
+
61
+ class DeleteEnvironmentRequest
62
+ attr_accessor environment_id: ::String
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class DeleteEnvironmentResult < Aws::EmptyStructure
67
+ end
68
+
69
+ class DescribeEnvironmentMembershipsRequest
70
+ attr_accessor user_arn: ::String
71
+ attr_accessor environment_id: ::String
72
+ attr_accessor permissions: ::Array[("owner" | "read-write" | "read-only")]
73
+ attr_accessor next_token: ::String
74
+ attr_accessor max_results: ::Integer
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class DescribeEnvironmentMembershipsResult
79
+ attr_accessor memberships: ::Array[Types::EnvironmentMember]
80
+ attr_accessor next_token: ::String
81
+ SENSITIVE: []
82
+ end
83
+
84
+ class DescribeEnvironmentStatusRequest
85
+ attr_accessor environment_id: ::String
86
+ SENSITIVE: []
87
+ end
88
+
89
+ class DescribeEnvironmentStatusResult
90
+ attr_accessor status: ("error" | "creating" | "connecting" | "ready" | "stopping" | "stopped" | "deleting")
91
+ attr_accessor message: ::String
92
+ SENSITIVE: []
93
+ end
94
+
95
+ class DescribeEnvironmentsRequest
96
+ attr_accessor environment_ids: ::Array[::String]
97
+ SENSITIVE: []
98
+ end
99
+
100
+ class DescribeEnvironmentsResult
101
+ attr_accessor environments: ::Array[Types::Environment]
102
+ SENSITIVE: []
103
+ end
104
+
105
+ class Environment
106
+ attr_accessor id: ::String
107
+ attr_accessor name: ::String
108
+ attr_accessor description: ::String
109
+ attr_accessor type: ("ssh" | "ec2")
110
+ attr_accessor connection_type: ("CONNECT_SSH" | "CONNECT_SSM")
111
+ attr_accessor arn: ::String
112
+ attr_accessor owner_arn: ::String
113
+ attr_accessor lifecycle: Types::EnvironmentLifecycle
114
+ attr_accessor managed_credentials_status: ("ENABLED_ON_CREATE" | "ENABLED_BY_OWNER" | "DISABLED_BY_DEFAULT" | "DISABLED_BY_OWNER" | "DISABLED_BY_COLLABORATOR" | "PENDING_REMOVAL_BY_COLLABORATOR" | "PENDING_START_REMOVAL_BY_COLLABORATOR" | "PENDING_REMOVAL_BY_OWNER" | "PENDING_START_REMOVAL_BY_OWNER" | "FAILED_REMOVAL_BY_COLLABORATOR" | "FAILED_REMOVAL_BY_OWNER")
115
+ SENSITIVE: [:description]
116
+ end
117
+
118
+ class EnvironmentLifecycle
119
+ attr_accessor status: ("CREATING" | "CREATED" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED")
120
+ attr_accessor reason: ::String
121
+ attr_accessor failure_resource: ::String
122
+ SENSITIVE: []
123
+ end
124
+
125
+ class EnvironmentMember
126
+ attr_accessor permissions: ("owner" | "read-write" | "read-only")
127
+ attr_accessor user_id: ::String
128
+ attr_accessor user_arn: ::String
129
+ attr_accessor environment_id: ::String
130
+ attr_accessor last_access: ::Time
131
+ SENSITIVE: []
132
+ end
133
+
134
+ class ForbiddenException < Aws::EmptyStructure
135
+ end
136
+
137
+ class InternalServerErrorException < Aws::EmptyStructure
138
+ end
139
+
140
+ class LimitExceededException < Aws::EmptyStructure
141
+ end
142
+
143
+ class ListEnvironmentsRequest
144
+ attr_accessor next_token: ::String
145
+ attr_accessor max_results: ::Integer
146
+ SENSITIVE: []
147
+ end
148
+
149
+ class ListEnvironmentsResult
150
+ attr_accessor next_token: ::String
151
+ attr_accessor environment_ids: ::Array[::String]
152
+ SENSITIVE: []
153
+ end
154
+
155
+ class ListTagsForResourceRequest
156
+ attr_accessor resource_arn: ::String
157
+ SENSITIVE: []
158
+ end
159
+
160
+ class ListTagsForResourceResponse
161
+ attr_accessor tags: ::Array[Types::Tag]
162
+ SENSITIVE: [:tags]
163
+ end
164
+
165
+ class NotFoundException < Aws::EmptyStructure
166
+ end
167
+
168
+ class Tag
169
+ attr_accessor key: ::String
170
+ attr_accessor value: ::String
171
+ SENSITIVE: [:key, :value]
172
+ end
173
+
174
+ class TagResourceRequest
175
+ attr_accessor resource_arn: ::String
176
+ attr_accessor tags: ::Array[Types::Tag]
177
+ SENSITIVE: [:tags]
178
+ end
179
+
180
+ class TagResourceResponse < Aws::EmptyStructure
181
+ end
182
+
183
+ class TooManyRequestsException < Aws::EmptyStructure
184
+ end
185
+
186
+ class UntagResourceRequest
187
+ attr_accessor resource_arn: ::String
188
+ attr_accessor tag_keys: ::Array[::String]
189
+ SENSITIVE: [:tag_keys]
190
+ end
191
+
192
+ class UntagResourceResponse < Aws::EmptyStructure
193
+ end
194
+
195
+ class UpdateEnvironmentMembershipRequest
196
+ attr_accessor environment_id: ::String
197
+ attr_accessor user_arn: ::String
198
+ attr_accessor permissions: ("read-write" | "read-only")
199
+ SENSITIVE: []
200
+ end
201
+
202
+ class UpdateEnvironmentMembershipResult
203
+ attr_accessor membership: Types::EnvironmentMember
204
+ SENSITIVE: []
205
+ end
206
+
207
+ class UpdateEnvironmentRequest
208
+ attr_accessor environment_id: ::String
209
+ attr_accessor name: ::String
210
+ attr_accessor description: ::String
211
+ attr_accessor managed_credentials_action: ("ENABLE" | "DISABLE")
212
+ SENSITIVE: [:description]
213
+ end
214
+
215
+ class UpdateEnvironmentResult < Aws::EmptyStructure
216
+ end
217
+ end
218
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Cloud9
10
+ module Waiters
11
+ end
12
+ end
13
+ 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.66.0
4
+ version: 1.68.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: 2024-01-22 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.188.0
22
+ version: 3.193.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.188.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,6 +66,11 @@ files:
66
66
  - lib/aws-sdk-cloud9/plugins/endpoints.rb
67
67
  - lib/aws-sdk-cloud9/resource.rb
68
68
  - lib/aws-sdk-cloud9/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0