aws-sdk-repostspace 1.1.0 → 1.2.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-repostspace/client.rb +1 -1
- data/lib/aws-sdk-repostspace/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-repostspace.rb +1 -1
- data/sig/client.rbs +202 -0
- data/sig/errors.rbs +51 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +204 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36b311ea502da5cac82fa1e101e76801f5260e335fa7fa1139d6bf8752844adb
|
|
4
|
+
data.tar.gz: 4cd78a34bd6ff45115a5fd7084eaf7a7fe14def53c7a96ddb9539f05475f14bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f171838df5aa52c848c28fcd3f65b1b076820fc0683a96fb2e9c73829e43cf29b043f1463ce0f5282e01b83291b8b54f04883eca350e8bc63668f76269b5d601
|
|
7
|
+
data.tar.gz: e5fae0a6bc7e1abb5a0be4d72ccaa3737b7b1d6381e847c4b70b1569b0e96be525e9d5b55efac57f3a040fa9d477c80ec96eb33781404e3c4264f4848af6765f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.2.0
|
|
@@ -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 '\
|
data/lib/aws-sdk-repostspace.rb
CHANGED
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.
|
|
4
|
+
version: 1.2.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:
|
|
11
|
+
date: 2024-01-26 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.191.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.191.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.
|
|
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: []
|