aws-sdk-directoryservice 1.62.0 → 1.63.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-directoryservice/client.rb +1 -1
- data/lib/aws-sdk-directoryservice/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-directoryservice.rb +1 -1
- data/sig/client.rbs +930 -0
- data/sig/errors.rbs +164 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1318 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,930 @@
|
|
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 DirectoryService
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/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 _AcceptSharedDirectoryResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptSharedDirectoryResult]
|
78
|
+
def shared_directory: () -> Types::SharedDirectory
|
79
|
+
end
|
80
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#accept_shared_directory-instance_method
|
81
|
+
def accept_shared_directory: (
|
82
|
+
shared_directory_id: ::String
|
83
|
+
) -> _AcceptSharedDirectoryResponseSuccess
|
84
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptSharedDirectoryResponseSuccess
|
85
|
+
|
86
|
+
interface _AddIpRoutesResponseSuccess
|
87
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddIpRoutesResult]
|
88
|
+
end
|
89
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#add_ip_routes-instance_method
|
90
|
+
def add_ip_routes: (
|
91
|
+
directory_id: ::String,
|
92
|
+
ip_routes: Array[
|
93
|
+
{
|
94
|
+
cidr_ip: ::String?,
|
95
|
+
description: ::String?
|
96
|
+
},
|
97
|
+
],
|
98
|
+
?update_security_group_for_directory_controllers: bool
|
99
|
+
) -> _AddIpRoutesResponseSuccess
|
100
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddIpRoutesResponseSuccess
|
101
|
+
|
102
|
+
interface _AddRegionResponseSuccess
|
103
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddRegionResult]
|
104
|
+
end
|
105
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#add_region-instance_method
|
106
|
+
def add_region: (
|
107
|
+
directory_id: ::String,
|
108
|
+
region_name: ::String,
|
109
|
+
vpc_settings: {
|
110
|
+
vpc_id: ::String,
|
111
|
+
subnet_ids: Array[::String]
|
112
|
+
}
|
113
|
+
) -> _AddRegionResponseSuccess
|
114
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddRegionResponseSuccess
|
115
|
+
|
116
|
+
interface _AddTagsToResourceResponseSuccess
|
117
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddTagsToResourceResult]
|
118
|
+
end
|
119
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#add_tags_to_resource-instance_method
|
120
|
+
def add_tags_to_resource: (
|
121
|
+
resource_id: ::String,
|
122
|
+
tags: Array[
|
123
|
+
{
|
124
|
+
key: ::String,
|
125
|
+
value: ::String
|
126
|
+
},
|
127
|
+
]
|
128
|
+
) -> _AddTagsToResourceResponseSuccess
|
129
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddTagsToResourceResponseSuccess
|
130
|
+
|
131
|
+
interface _CancelSchemaExtensionResponseSuccess
|
132
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelSchemaExtensionResult]
|
133
|
+
end
|
134
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#cancel_schema_extension-instance_method
|
135
|
+
def cancel_schema_extension: (
|
136
|
+
directory_id: ::String,
|
137
|
+
schema_extension_id: ::String
|
138
|
+
) -> _CancelSchemaExtensionResponseSuccess
|
139
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelSchemaExtensionResponseSuccess
|
140
|
+
|
141
|
+
interface _ConnectDirectoryResponseSuccess
|
142
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ConnectDirectoryResult]
|
143
|
+
def directory_id: () -> ::String
|
144
|
+
end
|
145
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#connect_directory-instance_method
|
146
|
+
def connect_directory: (
|
147
|
+
name: ::String,
|
148
|
+
?short_name: ::String,
|
149
|
+
password: ::String,
|
150
|
+
?description: ::String,
|
151
|
+
size: ("Small" | "Large"),
|
152
|
+
connect_settings: {
|
153
|
+
vpc_id: ::String,
|
154
|
+
subnet_ids: Array[::String],
|
155
|
+
customer_dns_ips: Array[::String],
|
156
|
+
customer_user_name: ::String
|
157
|
+
},
|
158
|
+
?tags: Array[
|
159
|
+
{
|
160
|
+
key: ::String,
|
161
|
+
value: ::String
|
162
|
+
},
|
163
|
+
]
|
164
|
+
) -> _ConnectDirectoryResponseSuccess
|
165
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ConnectDirectoryResponseSuccess
|
166
|
+
|
167
|
+
interface _CreateAliasResponseSuccess
|
168
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAliasResult]
|
169
|
+
def directory_id: () -> ::String
|
170
|
+
def alias: () -> ::String
|
171
|
+
end
|
172
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#create_alias-instance_method
|
173
|
+
def create_alias: (
|
174
|
+
directory_id: ::String,
|
175
|
+
alias: ::String
|
176
|
+
) -> _CreateAliasResponseSuccess
|
177
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAliasResponseSuccess
|
178
|
+
|
179
|
+
interface _CreateComputerResponseSuccess
|
180
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateComputerResult]
|
181
|
+
def computer: () -> Types::Computer
|
182
|
+
end
|
183
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#create_computer-instance_method
|
184
|
+
def create_computer: (
|
185
|
+
directory_id: ::String,
|
186
|
+
computer_name: ::String,
|
187
|
+
password: ::String,
|
188
|
+
?organizational_unit_distinguished_name: ::String,
|
189
|
+
?computer_attributes: Array[
|
190
|
+
{
|
191
|
+
name: ::String?,
|
192
|
+
value: ::String?
|
193
|
+
},
|
194
|
+
]
|
195
|
+
) -> _CreateComputerResponseSuccess
|
196
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateComputerResponseSuccess
|
197
|
+
|
198
|
+
interface _CreateConditionalForwarderResponseSuccess
|
199
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConditionalForwarderResult]
|
200
|
+
end
|
201
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#create_conditional_forwarder-instance_method
|
202
|
+
def create_conditional_forwarder: (
|
203
|
+
directory_id: ::String,
|
204
|
+
remote_domain_name: ::String,
|
205
|
+
dns_ip_addrs: Array[::String]
|
206
|
+
) -> _CreateConditionalForwarderResponseSuccess
|
207
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConditionalForwarderResponseSuccess
|
208
|
+
|
209
|
+
interface _CreateDirectoryResponseSuccess
|
210
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDirectoryResult]
|
211
|
+
def directory_id: () -> ::String
|
212
|
+
end
|
213
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#create_directory-instance_method
|
214
|
+
def create_directory: (
|
215
|
+
name: ::String,
|
216
|
+
?short_name: ::String,
|
217
|
+
password: ::String,
|
218
|
+
?description: ::String,
|
219
|
+
size: ("Small" | "Large"),
|
220
|
+
?vpc_settings: {
|
221
|
+
vpc_id: ::String,
|
222
|
+
subnet_ids: Array[::String]
|
223
|
+
},
|
224
|
+
?tags: Array[
|
225
|
+
{
|
226
|
+
key: ::String,
|
227
|
+
value: ::String
|
228
|
+
},
|
229
|
+
]
|
230
|
+
) -> _CreateDirectoryResponseSuccess
|
231
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDirectoryResponseSuccess
|
232
|
+
|
233
|
+
interface _CreateLogSubscriptionResponseSuccess
|
234
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLogSubscriptionResult]
|
235
|
+
end
|
236
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#create_log_subscription-instance_method
|
237
|
+
def create_log_subscription: (
|
238
|
+
directory_id: ::String,
|
239
|
+
log_group_name: ::String
|
240
|
+
) -> _CreateLogSubscriptionResponseSuccess
|
241
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLogSubscriptionResponseSuccess
|
242
|
+
|
243
|
+
interface _CreateMicrosoftADResponseSuccess
|
244
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateMicrosoftADResult]
|
245
|
+
def directory_id: () -> ::String
|
246
|
+
end
|
247
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#create_microsoft_ad-instance_method
|
248
|
+
def create_microsoft_ad: (
|
249
|
+
name: ::String,
|
250
|
+
?short_name: ::String,
|
251
|
+
password: ::String,
|
252
|
+
?description: ::String,
|
253
|
+
vpc_settings: {
|
254
|
+
vpc_id: ::String,
|
255
|
+
subnet_ids: Array[::String]
|
256
|
+
},
|
257
|
+
?edition: ("Enterprise" | "Standard"),
|
258
|
+
?tags: Array[
|
259
|
+
{
|
260
|
+
key: ::String,
|
261
|
+
value: ::String
|
262
|
+
},
|
263
|
+
]
|
264
|
+
) -> _CreateMicrosoftADResponseSuccess
|
265
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMicrosoftADResponseSuccess
|
266
|
+
|
267
|
+
interface _CreateSnapshotResponseSuccess
|
268
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSnapshotResult]
|
269
|
+
def snapshot_id: () -> ::String
|
270
|
+
end
|
271
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#create_snapshot-instance_method
|
272
|
+
def create_snapshot: (
|
273
|
+
directory_id: ::String,
|
274
|
+
?name: ::String
|
275
|
+
) -> _CreateSnapshotResponseSuccess
|
276
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSnapshotResponseSuccess
|
277
|
+
|
278
|
+
interface _CreateTrustResponseSuccess
|
279
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrustResult]
|
280
|
+
def trust_id: () -> ::String
|
281
|
+
end
|
282
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#create_trust-instance_method
|
283
|
+
def create_trust: (
|
284
|
+
directory_id: ::String,
|
285
|
+
remote_domain_name: ::String,
|
286
|
+
trust_password: ::String,
|
287
|
+
trust_direction: ("One-Way: Outgoing" | "One-Way: Incoming" | "Two-Way"),
|
288
|
+
?trust_type: ("Forest" | "External"),
|
289
|
+
?conditional_forwarder_ip_addrs: Array[::String],
|
290
|
+
?selective_auth: ("Enabled" | "Disabled")
|
291
|
+
) -> _CreateTrustResponseSuccess
|
292
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTrustResponseSuccess
|
293
|
+
|
294
|
+
interface _DeleteConditionalForwarderResponseSuccess
|
295
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConditionalForwarderResult]
|
296
|
+
end
|
297
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#delete_conditional_forwarder-instance_method
|
298
|
+
def delete_conditional_forwarder: (
|
299
|
+
directory_id: ::String,
|
300
|
+
remote_domain_name: ::String
|
301
|
+
) -> _DeleteConditionalForwarderResponseSuccess
|
302
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConditionalForwarderResponseSuccess
|
303
|
+
|
304
|
+
interface _DeleteDirectoryResponseSuccess
|
305
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDirectoryResult]
|
306
|
+
def directory_id: () -> ::String
|
307
|
+
end
|
308
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#delete_directory-instance_method
|
309
|
+
def delete_directory: (
|
310
|
+
directory_id: ::String
|
311
|
+
) -> _DeleteDirectoryResponseSuccess
|
312
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDirectoryResponseSuccess
|
313
|
+
|
314
|
+
interface _DeleteLogSubscriptionResponseSuccess
|
315
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLogSubscriptionResult]
|
316
|
+
end
|
317
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#delete_log_subscription-instance_method
|
318
|
+
def delete_log_subscription: (
|
319
|
+
directory_id: ::String
|
320
|
+
) -> _DeleteLogSubscriptionResponseSuccess
|
321
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLogSubscriptionResponseSuccess
|
322
|
+
|
323
|
+
interface _DeleteSnapshotResponseSuccess
|
324
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSnapshotResult]
|
325
|
+
def snapshot_id: () -> ::String
|
326
|
+
end
|
327
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#delete_snapshot-instance_method
|
328
|
+
def delete_snapshot: (
|
329
|
+
snapshot_id: ::String
|
330
|
+
) -> _DeleteSnapshotResponseSuccess
|
331
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSnapshotResponseSuccess
|
332
|
+
|
333
|
+
interface _DeleteTrustResponseSuccess
|
334
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTrustResult]
|
335
|
+
def trust_id: () -> ::String
|
336
|
+
end
|
337
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#delete_trust-instance_method
|
338
|
+
def delete_trust: (
|
339
|
+
trust_id: ::String,
|
340
|
+
?delete_associated_conditional_forwarder: bool
|
341
|
+
) -> _DeleteTrustResponseSuccess
|
342
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTrustResponseSuccess
|
343
|
+
|
344
|
+
interface _DeregisterCertificateResponseSuccess
|
345
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterCertificateResult]
|
346
|
+
end
|
347
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#deregister_certificate-instance_method
|
348
|
+
def deregister_certificate: (
|
349
|
+
directory_id: ::String,
|
350
|
+
certificate_id: ::String
|
351
|
+
) -> _DeregisterCertificateResponseSuccess
|
352
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterCertificateResponseSuccess
|
353
|
+
|
354
|
+
interface _DeregisterEventTopicResponseSuccess
|
355
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterEventTopicResult]
|
356
|
+
end
|
357
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#deregister_event_topic-instance_method
|
358
|
+
def deregister_event_topic: (
|
359
|
+
directory_id: ::String,
|
360
|
+
topic_name: ::String
|
361
|
+
) -> _DeregisterEventTopicResponseSuccess
|
362
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterEventTopicResponseSuccess
|
363
|
+
|
364
|
+
interface _DescribeCertificateResponseSuccess
|
365
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCertificateResult]
|
366
|
+
def certificate: () -> Types::Certificate
|
367
|
+
end
|
368
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_certificate-instance_method
|
369
|
+
def describe_certificate: (
|
370
|
+
directory_id: ::String,
|
371
|
+
certificate_id: ::String
|
372
|
+
) -> _DescribeCertificateResponseSuccess
|
373
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCertificateResponseSuccess
|
374
|
+
|
375
|
+
interface _DescribeClientAuthenticationSettingsResponseSuccess
|
376
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClientAuthenticationSettingsResult]
|
377
|
+
def client_authentication_settings_info: () -> ::Array[Types::ClientAuthenticationSettingInfo]
|
378
|
+
def next_token: () -> ::String
|
379
|
+
end
|
380
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_client_authentication_settings-instance_method
|
381
|
+
def describe_client_authentication_settings: (
|
382
|
+
directory_id: ::String,
|
383
|
+
?type: ("SmartCard" | "SmartCardOrPassword"),
|
384
|
+
?next_token: ::String,
|
385
|
+
?limit: ::Integer
|
386
|
+
) -> _DescribeClientAuthenticationSettingsResponseSuccess
|
387
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClientAuthenticationSettingsResponseSuccess
|
388
|
+
|
389
|
+
interface _DescribeConditionalForwardersResponseSuccess
|
390
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConditionalForwardersResult]
|
391
|
+
def conditional_forwarders: () -> ::Array[Types::ConditionalForwarder]
|
392
|
+
end
|
393
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_conditional_forwarders-instance_method
|
394
|
+
def describe_conditional_forwarders: (
|
395
|
+
directory_id: ::String,
|
396
|
+
?remote_domain_names: Array[::String]
|
397
|
+
) -> _DescribeConditionalForwardersResponseSuccess
|
398
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConditionalForwardersResponseSuccess
|
399
|
+
|
400
|
+
interface _DescribeDirectoriesResponseSuccess
|
401
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDirectoriesResult]
|
402
|
+
def directory_descriptions: () -> ::Array[Types::DirectoryDescription]
|
403
|
+
def next_token: () -> ::String
|
404
|
+
end
|
405
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_directories-instance_method
|
406
|
+
def describe_directories: (
|
407
|
+
?directory_ids: Array[::String],
|
408
|
+
?next_token: ::String,
|
409
|
+
?limit: ::Integer
|
410
|
+
) -> _DescribeDirectoriesResponseSuccess
|
411
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDirectoriesResponseSuccess
|
412
|
+
|
413
|
+
interface _DescribeDomainControllersResponseSuccess
|
414
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDomainControllersResult]
|
415
|
+
def domain_controllers: () -> ::Array[Types::DomainController]
|
416
|
+
def next_token: () -> ::String
|
417
|
+
end
|
418
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_domain_controllers-instance_method
|
419
|
+
def describe_domain_controllers: (
|
420
|
+
directory_id: ::String,
|
421
|
+
?domain_controller_ids: Array[::String],
|
422
|
+
?next_token: ::String,
|
423
|
+
?limit: ::Integer
|
424
|
+
) -> _DescribeDomainControllersResponseSuccess
|
425
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDomainControllersResponseSuccess
|
426
|
+
|
427
|
+
interface _DescribeEventTopicsResponseSuccess
|
428
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEventTopicsResult]
|
429
|
+
def event_topics: () -> ::Array[Types::EventTopic]
|
430
|
+
end
|
431
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_event_topics-instance_method
|
432
|
+
def describe_event_topics: (
|
433
|
+
?directory_id: ::String,
|
434
|
+
?topic_names: Array[::String]
|
435
|
+
) -> _DescribeEventTopicsResponseSuccess
|
436
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEventTopicsResponseSuccess
|
437
|
+
|
438
|
+
interface _DescribeLDAPSSettingsResponseSuccess
|
439
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLDAPSSettingsResult]
|
440
|
+
def ldaps_settings_info: () -> ::Array[Types::LDAPSSettingInfo]
|
441
|
+
def next_token: () -> ::String
|
442
|
+
end
|
443
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_ldaps_settings-instance_method
|
444
|
+
def describe_ldaps_settings: (
|
445
|
+
directory_id: ::String,
|
446
|
+
?type: ("Client"),
|
447
|
+
?next_token: ::String,
|
448
|
+
?limit: ::Integer
|
449
|
+
) -> _DescribeLDAPSSettingsResponseSuccess
|
450
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLDAPSSettingsResponseSuccess
|
451
|
+
|
452
|
+
interface _DescribeRegionsResponseSuccess
|
453
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRegionsResult]
|
454
|
+
def regions_description: () -> ::Array[Types::RegionDescription]
|
455
|
+
def next_token: () -> ::String
|
456
|
+
end
|
457
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_regions-instance_method
|
458
|
+
def describe_regions: (
|
459
|
+
directory_id: ::String,
|
460
|
+
?region_name: ::String,
|
461
|
+
?next_token: ::String
|
462
|
+
) -> _DescribeRegionsResponseSuccess
|
463
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRegionsResponseSuccess
|
464
|
+
|
465
|
+
interface _DescribeSettingsResponseSuccess
|
466
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSettingsResult]
|
467
|
+
def directory_id: () -> ::String
|
468
|
+
def setting_entries: () -> ::Array[Types::SettingEntry]
|
469
|
+
def next_token: () -> ::String
|
470
|
+
end
|
471
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_settings-instance_method
|
472
|
+
def describe_settings: (
|
473
|
+
directory_id: ::String,
|
474
|
+
?status: ("Requested" | "Updating" | "Updated" | "Failed" | "Default"),
|
475
|
+
?next_token: ::String
|
476
|
+
) -> _DescribeSettingsResponseSuccess
|
477
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSettingsResponseSuccess
|
478
|
+
|
479
|
+
interface _DescribeSharedDirectoriesResponseSuccess
|
480
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSharedDirectoriesResult]
|
481
|
+
def shared_directories: () -> ::Array[Types::SharedDirectory]
|
482
|
+
def next_token: () -> ::String
|
483
|
+
end
|
484
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_shared_directories-instance_method
|
485
|
+
def describe_shared_directories: (
|
486
|
+
owner_directory_id: ::String,
|
487
|
+
?shared_directory_ids: Array[::String],
|
488
|
+
?next_token: ::String,
|
489
|
+
?limit: ::Integer
|
490
|
+
) -> _DescribeSharedDirectoriesResponseSuccess
|
491
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSharedDirectoriesResponseSuccess
|
492
|
+
|
493
|
+
interface _DescribeSnapshotsResponseSuccess
|
494
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSnapshotsResult]
|
495
|
+
def snapshots: () -> ::Array[Types::Snapshot]
|
496
|
+
def next_token: () -> ::String
|
497
|
+
end
|
498
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_snapshots-instance_method
|
499
|
+
def describe_snapshots: (
|
500
|
+
?directory_id: ::String,
|
501
|
+
?snapshot_ids: Array[::String],
|
502
|
+
?next_token: ::String,
|
503
|
+
?limit: ::Integer
|
504
|
+
) -> _DescribeSnapshotsResponseSuccess
|
505
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSnapshotsResponseSuccess
|
506
|
+
|
507
|
+
interface _DescribeTrustsResponseSuccess
|
508
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTrustsResult]
|
509
|
+
def trusts: () -> ::Array[Types::Trust]
|
510
|
+
def next_token: () -> ::String
|
511
|
+
end
|
512
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_trusts-instance_method
|
513
|
+
def describe_trusts: (
|
514
|
+
?directory_id: ::String,
|
515
|
+
?trust_ids: Array[::String],
|
516
|
+
?next_token: ::String,
|
517
|
+
?limit: ::Integer
|
518
|
+
) -> _DescribeTrustsResponseSuccess
|
519
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTrustsResponseSuccess
|
520
|
+
|
521
|
+
interface _DescribeUpdateDirectoryResponseSuccess
|
522
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeUpdateDirectoryResult]
|
523
|
+
def update_activities: () -> ::Array[Types::UpdateInfoEntry]
|
524
|
+
def next_token: () -> ::String
|
525
|
+
end
|
526
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#describe_update_directory-instance_method
|
527
|
+
def describe_update_directory: (
|
528
|
+
directory_id: ::String,
|
529
|
+
update_type: ("OS"),
|
530
|
+
?region_name: ::String,
|
531
|
+
?next_token: ::String
|
532
|
+
) -> _DescribeUpdateDirectoryResponseSuccess
|
533
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeUpdateDirectoryResponseSuccess
|
534
|
+
|
535
|
+
interface _DisableClientAuthenticationResponseSuccess
|
536
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisableClientAuthenticationResult]
|
537
|
+
end
|
538
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#disable_client_authentication-instance_method
|
539
|
+
def disable_client_authentication: (
|
540
|
+
directory_id: ::String,
|
541
|
+
type: ("SmartCard" | "SmartCardOrPassword")
|
542
|
+
) -> _DisableClientAuthenticationResponseSuccess
|
543
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableClientAuthenticationResponseSuccess
|
544
|
+
|
545
|
+
interface _DisableLDAPSResponseSuccess
|
546
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisableLDAPSResult]
|
547
|
+
end
|
548
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#disable_ldaps-instance_method
|
549
|
+
def disable_ldaps: (
|
550
|
+
directory_id: ::String,
|
551
|
+
type: ("Client")
|
552
|
+
) -> _DisableLDAPSResponseSuccess
|
553
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableLDAPSResponseSuccess
|
554
|
+
|
555
|
+
interface _DisableRadiusResponseSuccess
|
556
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisableRadiusResult]
|
557
|
+
end
|
558
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#disable_radius-instance_method
|
559
|
+
def disable_radius: (
|
560
|
+
directory_id: ::String
|
561
|
+
) -> _DisableRadiusResponseSuccess
|
562
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableRadiusResponseSuccess
|
563
|
+
|
564
|
+
interface _DisableSsoResponseSuccess
|
565
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisableSsoResult]
|
566
|
+
end
|
567
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#disable_sso-instance_method
|
568
|
+
def disable_sso: (
|
569
|
+
directory_id: ::String,
|
570
|
+
?user_name: ::String,
|
571
|
+
?password: ::String
|
572
|
+
) -> _DisableSsoResponseSuccess
|
573
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisableSsoResponseSuccess
|
574
|
+
|
575
|
+
interface _EnableClientAuthenticationResponseSuccess
|
576
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::EnableClientAuthenticationResult]
|
577
|
+
end
|
578
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#enable_client_authentication-instance_method
|
579
|
+
def enable_client_authentication: (
|
580
|
+
directory_id: ::String,
|
581
|
+
type: ("SmartCard" | "SmartCardOrPassword")
|
582
|
+
) -> _EnableClientAuthenticationResponseSuccess
|
583
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableClientAuthenticationResponseSuccess
|
584
|
+
|
585
|
+
interface _EnableLDAPSResponseSuccess
|
586
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::EnableLDAPSResult]
|
587
|
+
end
|
588
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#enable_ldaps-instance_method
|
589
|
+
def enable_ldaps: (
|
590
|
+
directory_id: ::String,
|
591
|
+
type: ("Client")
|
592
|
+
) -> _EnableLDAPSResponseSuccess
|
593
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableLDAPSResponseSuccess
|
594
|
+
|
595
|
+
interface _EnableRadiusResponseSuccess
|
596
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::EnableRadiusResult]
|
597
|
+
end
|
598
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#enable_radius-instance_method
|
599
|
+
def enable_radius: (
|
600
|
+
directory_id: ::String,
|
601
|
+
radius_settings: {
|
602
|
+
radius_servers: Array[::String]?,
|
603
|
+
radius_port: ::Integer?,
|
604
|
+
radius_timeout: ::Integer?,
|
605
|
+
radius_retries: ::Integer?,
|
606
|
+
shared_secret: ::String?,
|
607
|
+
authentication_protocol: ("PAP" | "CHAP" | "MS-CHAPv1" | "MS-CHAPv2")?,
|
608
|
+
display_label: ::String?,
|
609
|
+
use_same_username: bool?
|
610
|
+
}
|
611
|
+
) -> _EnableRadiusResponseSuccess
|
612
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableRadiusResponseSuccess
|
613
|
+
|
614
|
+
interface _EnableSsoResponseSuccess
|
615
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::EnableSsoResult]
|
616
|
+
end
|
617
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#enable_sso-instance_method
|
618
|
+
def enable_sso: (
|
619
|
+
directory_id: ::String,
|
620
|
+
?user_name: ::String,
|
621
|
+
?password: ::String
|
622
|
+
) -> _EnableSsoResponseSuccess
|
623
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EnableSsoResponseSuccess
|
624
|
+
|
625
|
+
interface _GetDirectoryLimitsResponseSuccess
|
626
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDirectoryLimitsResult]
|
627
|
+
def directory_limits: () -> Types::DirectoryLimits
|
628
|
+
end
|
629
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#get_directory_limits-instance_method
|
630
|
+
def get_directory_limits: (
|
631
|
+
) -> _GetDirectoryLimitsResponseSuccess
|
632
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDirectoryLimitsResponseSuccess
|
633
|
+
|
634
|
+
interface _GetSnapshotLimitsResponseSuccess
|
635
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSnapshotLimitsResult]
|
636
|
+
def snapshot_limits: () -> Types::SnapshotLimits
|
637
|
+
end
|
638
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#get_snapshot_limits-instance_method
|
639
|
+
def get_snapshot_limits: (
|
640
|
+
directory_id: ::String
|
641
|
+
) -> _GetSnapshotLimitsResponseSuccess
|
642
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSnapshotLimitsResponseSuccess
|
643
|
+
|
644
|
+
interface _ListCertificatesResponseSuccess
|
645
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCertificatesResult]
|
646
|
+
def next_token: () -> ::String
|
647
|
+
def certificates_info: () -> ::Array[Types::CertificateInfo]
|
648
|
+
end
|
649
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#list_certificates-instance_method
|
650
|
+
def list_certificates: (
|
651
|
+
directory_id: ::String,
|
652
|
+
?next_token: ::String,
|
653
|
+
?limit: ::Integer
|
654
|
+
) -> _ListCertificatesResponseSuccess
|
655
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCertificatesResponseSuccess
|
656
|
+
|
657
|
+
interface _ListIpRoutesResponseSuccess
|
658
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIpRoutesResult]
|
659
|
+
def ip_routes_info: () -> ::Array[Types::IpRouteInfo]
|
660
|
+
def next_token: () -> ::String
|
661
|
+
end
|
662
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#list_ip_routes-instance_method
|
663
|
+
def list_ip_routes: (
|
664
|
+
directory_id: ::String,
|
665
|
+
?next_token: ::String,
|
666
|
+
?limit: ::Integer
|
667
|
+
) -> _ListIpRoutesResponseSuccess
|
668
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIpRoutesResponseSuccess
|
669
|
+
|
670
|
+
interface _ListLogSubscriptionsResponseSuccess
|
671
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLogSubscriptionsResult]
|
672
|
+
def log_subscriptions: () -> ::Array[Types::LogSubscription]
|
673
|
+
def next_token: () -> ::String
|
674
|
+
end
|
675
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#list_log_subscriptions-instance_method
|
676
|
+
def list_log_subscriptions: (
|
677
|
+
?directory_id: ::String,
|
678
|
+
?next_token: ::String,
|
679
|
+
?limit: ::Integer
|
680
|
+
) -> _ListLogSubscriptionsResponseSuccess
|
681
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLogSubscriptionsResponseSuccess
|
682
|
+
|
683
|
+
interface _ListSchemaExtensionsResponseSuccess
|
684
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSchemaExtensionsResult]
|
685
|
+
def schema_extensions_info: () -> ::Array[Types::SchemaExtensionInfo]
|
686
|
+
def next_token: () -> ::String
|
687
|
+
end
|
688
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#list_schema_extensions-instance_method
|
689
|
+
def list_schema_extensions: (
|
690
|
+
directory_id: ::String,
|
691
|
+
?next_token: ::String,
|
692
|
+
?limit: ::Integer
|
693
|
+
) -> _ListSchemaExtensionsResponseSuccess
|
694
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSchemaExtensionsResponseSuccess
|
695
|
+
|
696
|
+
interface _ListTagsForResourceResponseSuccess
|
697
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResult]
|
698
|
+
def tags: () -> ::Array[Types::Tag]
|
699
|
+
def next_token: () -> ::String
|
700
|
+
end
|
701
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#list_tags_for_resource-instance_method
|
702
|
+
def list_tags_for_resource: (
|
703
|
+
resource_id: ::String,
|
704
|
+
?next_token: ::String,
|
705
|
+
?limit: ::Integer
|
706
|
+
) -> _ListTagsForResourceResponseSuccess
|
707
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
708
|
+
|
709
|
+
interface _RegisterCertificateResponseSuccess
|
710
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterCertificateResult]
|
711
|
+
def certificate_id: () -> ::String
|
712
|
+
end
|
713
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#register_certificate-instance_method
|
714
|
+
def register_certificate: (
|
715
|
+
directory_id: ::String,
|
716
|
+
certificate_data: ::String,
|
717
|
+
?type: ("ClientCertAuth" | "ClientLDAPS"),
|
718
|
+
?client_cert_auth_settings: {
|
719
|
+
ocsp_url: ::String?
|
720
|
+
}
|
721
|
+
) -> _RegisterCertificateResponseSuccess
|
722
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterCertificateResponseSuccess
|
723
|
+
|
724
|
+
interface _RegisterEventTopicResponseSuccess
|
725
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterEventTopicResult]
|
726
|
+
end
|
727
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#register_event_topic-instance_method
|
728
|
+
def register_event_topic: (
|
729
|
+
directory_id: ::String,
|
730
|
+
topic_name: ::String
|
731
|
+
) -> _RegisterEventTopicResponseSuccess
|
732
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterEventTopicResponseSuccess
|
733
|
+
|
734
|
+
interface _RejectSharedDirectoryResponseSuccess
|
735
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RejectSharedDirectoryResult]
|
736
|
+
def shared_directory_id: () -> ::String
|
737
|
+
end
|
738
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#reject_shared_directory-instance_method
|
739
|
+
def reject_shared_directory: (
|
740
|
+
shared_directory_id: ::String
|
741
|
+
) -> _RejectSharedDirectoryResponseSuccess
|
742
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectSharedDirectoryResponseSuccess
|
743
|
+
|
744
|
+
interface _RemoveIpRoutesResponseSuccess
|
745
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RemoveIpRoutesResult]
|
746
|
+
end
|
747
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#remove_ip_routes-instance_method
|
748
|
+
def remove_ip_routes: (
|
749
|
+
directory_id: ::String,
|
750
|
+
cidr_ips: Array[::String]
|
751
|
+
) -> _RemoveIpRoutesResponseSuccess
|
752
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveIpRoutesResponseSuccess
|
753
|
+
|
754
|
+
interface _RemoveRegionResponseSuccess
|
755
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RemoveRegionResult]
|
756
|
+
end
|
757
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#remove_region-instance_method
|
758
|
+
def remove_region: (
|
759
|
+
directory_id: ::String
|
760
|
+
) -> _RemoveRegionResponseSuccess
|
761
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveRegionResponseSuccess
|
762
|
+
|
763
|
+
interface _RemoveTagsFromResourceResponseSuccess
|
764
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RemoveTagsFromResourceResult]
|
765
|
+
end
|
766
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#remove_tags_from_resource-instance_method
|
767
|
+
def remove_tags_from_resource: (
|
768
|
+
resource_id: ::String,
|
769
|
+
tag_keys: Array[::String]
|
770
|
+
) -> _RemoveTagsFromResourceResponseSuccess
|
771
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveTagsFromResourceResponseSuccess
|
772
|
+
|
773
|
+
interface _ResetUserPasswordResponseSuccess
|
774
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ResetUserPasswordResult]
|
775
|
+
end
|
776
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#reset_user_password-instance_method
|
777
|
+
def reset_user_password: (
|
778
|
+
directory_id: ::String,
|
779
|
+
user_name: ::String,
|
780
|
+
new_password: ::String
|
781
|
+
) -> _ResetUserPasswordResponseSuccess
|
782
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResetUserPasswordResponseSuccess
|
783
|
+
|
784
|
+
interface _RestoreFromSnapshotResponseSuccess
|
785
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RestoreFromSnapshotResult]
|
786
|
+
end
|
787
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#restore_from_snapshot-instance_method
|
788
|
+
def restore_from_snapshot: (
|
789
|
+
snapshot_id: ::String
|
790
|
+
) -> _RestoreFromSnapshotResponseSuccess
|
791
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreFromSnapshotResponseSuccess
|
792
|
+
|
793
|
+
interface _ShareDirectoryResponseSuccess
|
794
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ShareDirectoryResult]
|
795
|
+
def shared_directory_id: () -> ::String
|
796
|
+
end
|
797
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#share_directory-instance_method
|
798
|
+
def share_directory: (
|
799
|
+
directory_id: ::String,
|
800
|
+
?share_notes: ::String,
|
801
|
+
share_target: {
|
802
|
+
id: ::String,
|
803
|
+
type: ("ACCOUNT")
|
804
|
+
},
|
805
|
+
share_method: ("ORGANIZATIONS" | "HANDSHAKE")
|
806
|
+
) -> _ShareDirectoryResponseSuccess
|
807
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ShareDirectoryResponseSuccess
|
808
|
+
|
809
|
+
interface _StartSchemaExtensionResponseSuccess
|
810
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartSchemaExtensionResult]
|
811
|
+
def schema_extension_id: () -> ::String
|
812
|
+
end
|
813
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#start_schema_extension-instance_method
|
814
|
+
def start_schema_extension: (
|
815
|
+
directory_id: ::String,
|
816
|
+
create_snapshot_before_schema_extension: bool,
|
817
|
+
ldif_content: ::String,
|
818
|
+
description: ::String
|
819
|
+
) -> _StartSchemaExtensionResponseSuccess
|
820
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSchemaExtensionResponseSuccess
|
821
|
+
|
822
|
+
interface _UnshareDirectoryResponseSuccess
|
823
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UnshareDirectoryResult]
|
824
|
+
def shared_directory_id: () -> ::String
|
825
|
+
end
|
826
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#unshare_directory-instance_method
|
827
|
+
def unshare_directory: (
|
828
|
+
directory_id: ::String,
|
829
|
+
unshare_target: {
|
830
|
+
id: ::String,
|
831
|
+
type: ("ACCOUNT")
|
832
|
+
}
|
833
|
+
) -> _UnshareDirectoryResponseSuccess
|
834
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UnshareDirectoryResponseSuccess
|
835
|
+
|
836
|
+
interface _UpdateConditionalForwarderResponseSuccess
|
837
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConditionalForwarderResult]
|
838
|
+
end
|
839
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#update_conditional_forwarder-instance_method
|
840
|
+
def update_conditional_forwarder: (
|
841
|
+
directory_id: ::String,
|
842
|
+
remote_domain_name: ::String,
|
843
|
+
dns_ip_addrs: Array[::String]
|
844
|
+
) -> _UpdateConditionalForwarderResponseSuccess
|
845
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConditionalForwarderResponseSuccess
|
846
|
+
|
847
|
+
interface _UpdateDirectorySetupResponseSuccess
|
848
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDirectorySetupResult]
|
849
|
+
end
|
850
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#update_directory_setup-instance_method
|
851
|
+
def update_directory_setup: (
|
852
|
+
directory_id: ::String,
|
853
|
+
update_type: ("OS"),
|
854
|
+
?os_update_settings: {
|
855
|
+
os_version: ("SERVER_2012" | "SERVER_2019")?
|
856
|
+
},
|
857
|
+
?create_snapshot_before_update: bool
|
858
|
+
) -> _UpdateDirectorySetupResponseSuccess
|
859
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDirectorySetupResponseSuccess
|
860
|
+
|
861
|
+
interface _UpdateNumberOfDomainControllersResponseSuccess
|
862
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNumberOfDomainControllersResult]
|
863
|
+
end
|
864
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#update_number_of_domain_controllers-instance_method
|
865
|
+
def update_number_of_domain_controllers: (
|
866
|
+
directory_id: ::String,
|
867
|
+
desired_number: ::Integer
|
868
|
+
) -> _UpdateNumberOfDomainControllersResponseSuccess
|
869
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNumberOfDomainControllersResponseSuccess
|
870
|
+
|
871
|
+
interface _UpdateRadiusResponseSuccess
|
872
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRadiusResult]
|
873
|
+
end
|
874
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#update_radius-instance_method
|
875
|
+
def update_radius: (
|
876
|
+
directory_id: ::String,
|
877
|
+
radius_settings: {
|
878
|
+
radius_servers: Array[::String]?,
|
879
|
+
radius_port: ::Integer?,
|
880
|
+
radius_timeout: ::Integer?,
|
881
|
+
radius_retries: ::Integer?,
|
882
|
+
shared_secret: ::String?,
|
883
|
+
authentication_protocol: ("PAP" | "CHAP" | "MS-CHAPv1" | "MS-CHAPv2")?,
|
884
|
+
display_label: ::String?,
|
885
|
+
use_same_username: bool?
|
886
|
+
}
|
887
|
+
) -> _UpdateRadiusResponseSuccess
|
888
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRadiusResponseSuccess
|
889
|
+
|
890
|
+
interface _UpdateSettingsResponseSuccess
|
891
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSettingsResult]
|
892
|
+
def directory_id: () -> ::String
|
893
|
+
end
|
894
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#update_settings-instance_method
|
895
|
+
def update_settings: (
|
896
|
+
directory_id: ::String,
|
897
|
+
settings: Array[
|
898
|
+
{
|
899
|
+
name: ::String,
|
900
|
+
value: ::String
|
901
|
+
},
|
902
|
+
]
|
903
|
+
) -> _UpdateSettingsResponseSuccess
|
904
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSettingsResponseSuccess
|
905
|
+
|
906
|
+
interface _UpdateTrustResponseSuccess
|
907
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTrustResult]
|
908
|
+
def request_id: () -> ::String
|
909
|
+
def trust_id: () -> ::String
|
910
|
+
end
|
911
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#update_trust-instance_method
|
912
|
+
def update_trust: (
|
913
|
+
trust_id: ::String,
|
914
|
+
?selective_auth: ("Enabled" | "Disabled")
|
915
|
+
) -> _UpdateTrustResponseSuccess
|
916
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTrustResponseSuccess
|
917
|
+
|
918
|
+
interface _VerifyTrustResponseSuccess
|
919
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::VerifyTrustResult]
|
920
|
+
def trust_id: () -> ::String
|
921
|
+
end
|
922
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DirectoryService/Client.html#verify_trust-instance_method
|
923
|
+
def verify_trust: (
|
924
|
+
trust_id: ::String
|
925
|
+
) -> _VerifyTrustResponseSuccess
|
926
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _VerifyTrustResponseSuccess
|
927
|
+
end
|
928
|
+
end
|
929
|
+
end
|
930
|
+
|