aws-sdk-repostspace 1.1.0 → 1.3.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: bed397c11d3e87fdb1e9cd313c8a2e89bddf125bb1acbab3d636ed6375403084
4
- data.tar.gz: 2c7d4de22e591a7f7ffee0fbfbfdec85d2ec0d2f867239109152abaab42dee54
3
+ metadata.gz: 01a79cb871a3854e4e8efd50f7a2100c44a32037cded9733f0ac388320cc4a53
4
+ data.tar.gz: 74aa29e5dfed9664c8492631e959ccffb824b3e77d1ae3d2599abcbee2b8f934
5
5
  SHA512:
6
- metadata.gz: 8185e8d3d25f26c0d65a21d3647dd33663887df19080fde047fef5088c9a1fa5680d698fcf0c7610034cbcc433fe502dbf13902068dd2068fd168db30e012789
7
- data.tar.gz: ee07ce7aea43b93876ab6c198b469270139995073196189e4654c70685c56fc36c2ff90df9cf39104cd9933384367b77ec0a77c42785eb70d249f1711d9508f8
6
+ metadata.gz: 4eda5d14f4b0562f470660c1a9eb9805e07de53c58d1cfb52d4b2548d779cddf12cd43649571b33e55af58ca0c969826149853b067e0e058d5f59b8572de579c
7
+ data.tar.gz: f8f1506573a6a29c60e4960c0b0fbb26a79b36bcaf1ed5417fd3ca6e1b02c801a8ab34ab0442b9dbc719d98f2e7b2b128c66f8f94f88778b5983ca89cf8fc99b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.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.2.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.1.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.3.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::Repostspace
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::Repostspace
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
@@ -337,50 +346,65 @@ module Aws::Repostspace
337
346
  # @option options [Aws::Repostspace::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Repostspace::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -823,7 +847,7 @@ module Aws::Repostspace
823
847
  params: params,
824
848
  config: config)
825
849
  context[:gem_name] = 'aws-sdk-repostspace'
826
- context[:gem_version] = '1.1.0'
850
+ context[:gem_version] = '1.3.0'
827
851
  Seahorse::Client::Request.new(handlers, context)
828
852
  end
829
853
 
@@ -14,6 +14,7 @@ module Aws::Repostspace
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Repostspace::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-repostspace/customizations'
52
52
  # @!group service
53
53
  module Aws::Repostspace
54
54
 
55
- GEM_VERSION = '1.1.0'
55
+ GEM_VERSION = '1.3.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,202 @@
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 Repostspace
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/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
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CreateSpaceResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSpaceOutput]
77
+ def space_id: () -> ::String
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#create_space-instance_method
80
+ def create_space: (
81
+ ?description: ::String,
82
+ name: ::String,
83
+ ?role_arn: ::String,
84
+ subdomain: ::String,
85
+ ?tags: Hash[::String, ::String],
86
+ tier: ("BASIC" | "STANDARD"),
87
+ ?user_kms_key: ::String
88
+ ) -> _CreateSpaceResponseSuccess
89
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSpaceResponseSuccess
90
+
91
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#delete_space-instance_method
92
+ def delete_space: (
93
+ space_id: ::String
94
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
95
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
96
+
97
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#deregister_admin-instance_method
98
+ def deregister_admin: (
99
+ admin_id: ::String,
100
+ space_id: ::String
101
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
102
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
103
+
104
+ interface _GetSpaceResponseSuccess
105
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSpaceOutput]
106
+ def arn: () -> ::String
107
+ def client_id: () -> ::String
108
+ def configuration_status: () -> ("CONFIGURED" | "UNCONFIGURED")
109
+ def content_size: () -> ::Integer
110
+ def create_date_time: () -> ::Time
111
+ def customer_role_arn: () -> ::String
112
+ def delete_date_time: () -> ::Time
113
+ def description: () -> ::String
114
+ def group_admins: () -> ::Array[::String]
115
+ def name: () -> ::String
116
+ def random_domain: () -> ::String
117
+ def space_id: () -> ::String
118
+ def status: () -> ::String
119
+ def storage_limit: () -> ::Integer
120
+ def tier: () -> ("BASIC" | "STANDARD")
121
+ def user_admins: () -> ::Array[::String]
122
+ def user_count: () -> ::Integer
123
+ def user_kms_key: () -> ::String
124
+ def vanity_domain: () -> ::String
125
+ def vanity_domain_status: () -> ("PENDING" | "APPROVED" | "UNAPPROVED")
126
+ end
127
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#get_space-instance_method
128
+ def get_space: (
129
+ space_id: ::String
130
+ ) -> _GetSpaceResponseSuccess
131
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSpaceResponseSuccess
132
+
133
+ interface _ListSpacesResponseSuccess
134
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSpacesOutput]
135
+ def next_token: () -> ::String
136
+ def spaces: () -> ::Array[Types::SpaceData]
137
+ end
138
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#list_spaces-instance_method
139
+ def list_spaces: (
140
+ ?max_results: ::Integer,
141
+ ?next_token: ::String
142
+ ) -> _ListSpacesResponseSuccess
143
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSpacesResponseSuccess
144
+
145
+ interface _ListTagsForResourceResponseSuccess
146
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
147
+ def tags: () -> ::Hash[::String, ::String]
148
+ end
149
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#list_tags_for_resource-instance_method
150
+ def list_tags_for_resource: (
151
+ resource_arn: ::String
152
+ ) -> _ListTagsForResourceResponseSuccess
153
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
154
+
155
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#register_admin-instance_method
156
+ def register_admin: (
157
+ admin_id: ::String,
158
+ space_id: ::String
159
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
160
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
161
+
162
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#send_invites-instance_method
163
+ def send_invites: (
164
+ accessor_ids: Array[::String],
165
+ body: ::String,
166
+ space_id: ::String,
167
+ title: ::String
168
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
169
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
170
+
171
+ interface _TagResourceResponseSuccess
172
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
173
+ end
174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#tag_resource-instance_method
175
+ def tag_resource: (
176
+ resource_arn: ::String,
177
+ tags: Hash[::String, ::String]
178
+ ) -> _TagResourceResponseSuccess
179
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
180
+
181
+ interface _UntagResourceResponseSuccess
182
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
183
+ end
184
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#untag_resource-instance_method
185
+ def untag_resource: (
186
+ resource_arn: ::String,
187
+ tag_keys: Array[::String]
188
+ ) -> _UntagResourceResponseSuccess
189
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
190
+
191
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Client.html#update_space-instance_method
192
+ def update_space: (
193
+ ?description: ::String,
194
+ ?role_arn: ::String,
195
+ space_id: ::String,
196
+ ?tier: ("BASIC" | "STANDARD")
197
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
198
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
199
+ end
200
+ end
201
+ end
202
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,51 @@
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 Repostspace
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ConflictException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ def resource_id: () -> ::String
20
+ def resource_type: () -> ::String
21
+ end
22
+ class InternalServerException < ::Aws::Errors::ServiceError
23
+ def message: () -> ::String
24
+ def retry_after_seconds: () -> ::String
25
+ end
26
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ def resource_id: () -> ::String
29
+ def resource_type: () -> ::String
30
+ end
31
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
32
+ def message: () -> ::String
33
+ def quota_code: () -> ::String
34
+ def resource_id: () -> ::String
35
+ def resource_type: () -> ::String
36
+ def service_code: () -> ::String
37
+ end
38
+ class ThrottlingException < ::Aws::Errors::ServiceError
39
+ def message: () -> ::String
40
+ def quota_code: () -> ::String
41
+ def retry_after_seconds: () -> ::String
42
+ def service_code: () -> ::String
43
+ end
44
+ class ValidationException < ::Aws::Errors::ServiceError
45
+ def field_list: () -> ::String
46
+ def message: () -> ::String
47
+ def reason: () -> ::String
48
+ end
49
+ end
50
+ end
51
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,79 @@
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 Repostspace
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Repostspace/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
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> void
72
+ | (?Hash[Symbol, untyped]) -> void
73
+
74
+ def client: () -> Client
75
+
76
+
77
+ end
78
+ end
79
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,204 @@
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::Repostspace
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ConflictException
17
+ attr_accessor message: ::String
18
+ attr_accessor resource_id: ::String
19
+ attr_accessor resource_type: ::String
20
+ SENSITIVE: []
21
+ end
22
+
23
+ class CreateSpaceInput
24
+ attr_accessor description: ::String
25
+ attr_accessor name: ::String
26
+ attr_accessor role_arn: ::String
27
+ attr_accessor subdomain: ::String
28
+ attr_accessor tags: ::Hash[::String, ::String]
29
+ attr_accessor tier: ("BASIC" | "STANDARD")
30
+ attr_accessor user_kms_key: ::String
31
+ SENSITIVE: [:description, :name, :tags]
32
+ end
33
+
34
+ class CreateSpaceOutput
35
+ attr_accessor space_id: ::String
36
+ SENSITIVE: []
37
+ end
38
+
39
+ class DeleteSpaceInput
40
+ attr_accessor space_id: ::String
41
+ SENSITIVE: []
42
+ end
43
+
44
+ class DeregisterAdminInput
45
+ attr_accessor admin_id: ::String
46
+ attr_accessor space_id: ::String
47
+ SENSITIVE: []
48
+ end
49
+
50
+ class GetSpaceInput
51
+ attr_accessor space_id: ::String
52
+ SENSITIVE: []
53
+ end
54
+
55
+ class GetSpaceOutput
56
+ attr_accessor arn: ::String
57
+ attr_accessor client_id: ::String
58
+ attr_accessor configuration_status: ("CONFIGURED" | "UNCONFIGURED")
59
+ attr_accessor content_size: ::Integer
60
+ attr_accessor create_date_time: ::Time
61
+ attr_accessor customer_role_arn: ::String
62
+ attr_accessor delete_date_time: ::Time
63
+ attr_accessor description: ::String
64
+ attr_accessor group_admins: ::Array[::String]
65
+ attr_accessor name: ::String
66
+ attr_accessor random_domain: ::String
67
+ attr_accessor space_id: ::String
68
+ attr_accessor status: ::String
69
+ attr_accessor storage_limit: ::Integer
70
+ attr_accessor tier: ("BASIC" | "STANDARD")
71
+ attr_accessor user_admins: ::Array[::String]
72
+ attr_accessor user_count: ::Integer
73
+ attr_accessor user_kms_key: ::String
74
+ attr_accessor vanity_domain: ::String
75
+ attr_accessor vanity_domain_status: ("PENDING" | "APPROVED" | "UNAPPROVED")
76
+ SENSITIVE: [:description, :name]
77
+ end
78
+
79
+ class InternalServerException
80
+ attr_accessor message: ::String
81
+ attr_accessor retry_after_seconds: ::Integer
82
+ SENSITIVE: []
83
+ end
84
+
85
+ class ListSpacesInput
86
+ attr_accessor max_results: ::Integer
87
+ attr_accessor next_token: ::String
88
+ SENSITIVE: []
89
+ end
90
+
91
+ class ListSpacesOutput
92
+ attr_accessor next_token: ::String
93
+ attr_accessor spaces: ::Array[Types::SpaceData]
94
+ SENSITIVE: []
95
+ end
96
+
97
+ class ListTagsForResourceRequest
98
+ attr_accessor resource_arn: ::String
99
+ SENSITIVE: []
100
+ end
101
+
102
+ class ListTagsForResourceResponse
103
+ attr_accessor tags: ::Hash[::String, ::String]
104
+ SENSITIVE: [:tags]
105
+ end
106
+
107
+ class RegisterAdminInput
108
+ attr_accessor admin_id: ::String
109
+ attr_accessor space_id: ::String
110
+ SENSITIVE: []
111
+ end
112
+
113
+ class ResourceNotFoundException
114
+ attr_accessor message: ::String
115
+ attr_accessor resource_id: ::String
116
+ attr_accessor resource_type: ::String
117
+ SENSITIVE: []
118
+ end
119
+
120
+ class SendInvitesInput
121
+ attr_accessor accessor_ids: ::Array[::String]
122
+ attr_accessor body: ::String
123
+ attr_accessor space_id: ::String
124
+ attr_accessor title: ::String
125
+ SENSITIVE: [:body, :title]
126
+ end
127
+
128
+ class ServiceQuotaExceededException
129
+ attr_accessor message: ::String
130
+ attr_accessor quota_code: ::String
131
+ attr_accessor resource_id: ::String
132
+ attr_accessor resource_type: ::String
133
+ attr_accessor service_code: ::String
134
+ SENSITIVE: []
135
+ end
136
+
137
+ class SpaceData
138
+ attr_accessor arn: ::String
139
+ attr_accessor configuration_status: ("CONFIGURED" | "UNCONFIGURED")
140
+ attr_accessor content_size: ::Integer
141
+ attr_accessor create_date_time: ::Time
142
+ attr_accessor delete_date_time: ::Time
143
+ attr_accessor description: ::String
144
+ attr_accessor name: ::String
145
+ attr_accessor random_domain: ::String
146
+ attr_accessor space_id: ::String
147
+ attr_accessor status: ::String
148
+ attr_accessor storage_limit: ::Integer
149
+ attr_accessor tier: ("BASIC" | "STANDARD")
150
+ attr_accessor user_count: ::Integer
151
+ attr_accessor user_kms_key: ::String
152
+ attr_accessor vanity_domain: ::String
153
+ attr_accessor vanity_domain_status: ("PENDING" | "APPROVED" | "UNAPPROVED")
154
+ SENSITIVE: [:description, :name]
155
+ end
156
+
157
+ class TagResourceRequest
158
+ attr_accessor resource_arn: ::String
159
+ attr_accessor tags: ::Hash[::String, ::String]
160
+ SENSITIVE: [:tags]
161
+ end
162
+
163
+ class TagResourceResponse < Aws::EmptyStructure
164
+ end
165
+
166
+ class ThrottlingException
167
+ attr_accessor message: ::String
168
+ attr_accessor quota_code: ::String
169
+ attr_accessor retry_after_seconds: ::Integer
170
+ attr_accessor service_code: ::String
171
+ SENSITIVE: []
172
+ end
173
+
174
+ class UntagResourceRequest
175
+ attr_accessor resource_arn: ::String
176
+ attr_accessor tag_keys: ::Array[::String]
177
+ SENSITIVE: []
178
+ end
179
+
180
+ class UntagResourceResponse < Aws::EmptyStructure
181
+ end
182
+
183
+ class UpdateSpaceInput
184
+ attr_accessor description: ::String
185
+ attr_accessor role_arn: ::String
186
+ attr_accessor space_id: ::String
187
+ attr_accessor tier: ("BASIC" | "STANDARD")
188
+ SENSITIVE: [:description]
189
+ end
190
+
191
+ class ValidationException
192
+ attr_accessor field_list: ::Array[Types::ValidationExceptionField]
193
+ attr_accessor message: ::String
194
+ attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
195
+ SENSITIVE: []
196
+ end
197
+
198
+ class ValidationExceptionField
199
+ attr_accessor message: ::String
200
+ attr_accessor name: ::String
201
+ SENSITIVE: []
202
+ end
203
+ end
204
+ 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 Repostspace
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-repostspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 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,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-repostspace/plugins/endpoints.rb
67
67
  - lib/aws-sdk-repostspace/resource.rb
68
68
  - lib/aws-sdk-repostspace/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
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-repostspace
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-repostspace/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - AWS re:Post Private
94
99
  test_files: []