aws-sdk-directoryservice 1.26.0 → 1.31.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/lib/aws-sdk-directoryservice.rb +3 -1
- data/lib/aws-sdk-directoryservice/client.rb +12 -7
- data/lib/aws-sdk-directoryservice/client_api.rb +2 -0
- data/lib/aws-sdk-directoryservice/customizations.rb +1 -0
- data/lib/aws-sdk-directoryservice/errors.rb +2 -0
- data/lib/aws-sdk-directoryservice/resource.rb +3 -7
- data/lib/aws-sdk-directoryservice/types.rb +150 -0
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c69849c79b2b5d4a7a5eb4b74047b10e1e056a268b431b6a071af156c05edb6
|
4
|
+
data.tar.gz: 8b95e92c0727e7b6973c82e7c760d66e9974e2db228ac54d53696c32ecf3b1ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dad98d3cfd55ce5ca841a52a936e07884030a6f668bdcfc6baca6953c7a3b5bd6ba092afac049c39a6ac9592fea0ab2ca767d24966d7f8216a76ee704bdc57fb
|
7
|
+
data.tar.gz: 2329dd626305549aee76e1f954ae6b8bbd817e469479aba0c3f256a0f3d9dadb3e7d35fb389a954f810657fb144e0437dbcac96d85f2e1369abb69e9dd82cbf4
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-directoryservice/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::DirectoryService
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.31.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::DirectoryService
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::DirectoryService
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::DirectoryService
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::DirectoryService
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -279,8 +283,7 @@ module Aws::DirectoryService
|
|
279
283
|
#
|
280
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
281
285
|
# number of seconds to wait for response data. This value can
|
282
|
-
# safely be set
|
283
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
284
287
|
#
|
285
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
286
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -292,7 +295,7 @@ module Aws::DirectoryService
|
|
292
295
|
# request body. This option has no effect unless the request has
|
293
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
294
297
|
# disables this behaviour. This value can safely be set per
|
295
|
-
# request on the session
|
298
|
+
# request on the session.
|
296
299
|
#
|
297
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
298
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1463,6 +1466,8 @@ module Aws::DirectoryService
|
|
1463
1466
|
# * {Types::DescribeDomainControllersResult#domain_controllers #domain_controllers} => Array<Types::DomainController>
|
1464
1467
|
# * {Types::DescribeDomainControllersResult#next_token #next_token} => String
|
1465
1468
|
#
|
1469
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1470
|
+
#
|
1466
1471
|
# @example Request syntax with placeholder values
|
1467
1472
|
#
|
1468
1473
|
# resp = client.describe_domain_controllers({
|
@@ -2814,7 +2819,7 @@ module Aws::DirectoryService
|
|
2814
2819
|
params: params,
|
2815
2820
|
config: config)
|
2816
2821
|
context[:gem_name] = 'aws-sdk-directoryservice'
|
2817
|
-
context[:gem_version] = '1.
|
2822
|
+
context[:gem_version] = '1.31.0'
|
2818
2823
|
Seahorse::Client::Request.new(handlers, context)
|
2819
2824
|
end
|
2820
2825
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::DirectoryService
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::DirectoryService::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::DirectoryService::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::DirectoryService::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -25,6 +27,7 @@ module Aws::DirectoryService
|
|
25
27
|
#
|
26
28
|
class AcceptSharedDirectoryRequest < Struct.new(
|
27
29
|
:shared_directory_id)
|
30
|
+
SENSITIVE = []
|
28
31
|
include Aws::Structure
|
29
32
|
end
|
30
33
|
|
@@ -36,6 +39,7 @@ module Aws::DirectoryService
|
|
36
39
|
#
|
37
40
|
class AcceptSharedDirectoryResult < Struct.new(
|
38
41
|
:shared_directory)
|
42
|
+
SENSITIVE = []
|
39
43
|
include Aws::Structure
|
40
44
|
end
|
41
45
|
|
@@ -54,6 +58,7 @@ module Aws::DirectoryService
|
|
54
58
|
class AccessDeniedException < Struct.new(
|
55
59
|
:message,
|
56
60
|
:request_id)
|
61
|
+
SENSITIVE = []
|
57
62
|
include Aws::Structure
|
58
63
|
end
|
59
64
|
|
@@ -153,6 +158,7 @@ module Aws::DirectoryService
|
|
153
158
|
:directory_id,
|
154
159
|
:ip_routes,
|
155
160
|
:update_security_group_for_directory_controllers)
|
161
|
+
SENSITIVE = []
|
156
162
|
include Aws::Structure
|
157
163
|
end
|
158
164
|
|
@@ -186,6 +192,7 @@ module Aws::DirectoryService
|
|
186
192
|
class AddTagsToResourceRequest < Struct.new(
|
187
193
|
:resource_id,
|
188
194
|
:tags)
|
195
|
+
SENSITIVE = []
|
189
196
|
include Aws::Structure
|
190
197
|
end
|
191
198
|
|
@@ -216,6 +223,7 @@ module Aws::DirectoryService
|
|
216
223
|
class Attribute < Struct.new(
|
217
224
|
:name,
|
218
225
|
:value)
|
226
|
+
SENSITIVE = []
|
219
227
|
include Aws::Structure
|
220
228
|
end
|
221
229
|
|
@@ -234,6 +242,7 @@ module Aws::DirectoryService
|
|
234
242
|
class AuthenticationFailedException < Struct.new(
|
235
243
|
:message,
|
236
244
|
:request_id)
|
245
|
+
SENSITIVE = []
|
237
246
|
include Aws::Structure
|
238
247
|
end
|
239
248
|
|
@@ -259,6 +268,7 @@ module Aws::DirectoryService
|
|
259
268
|
class CancelSchemaExtensionRequest < Struct.new(
|
260
269
|
:directory_id,
|
261
270
|
:schema_extension_id)
|
271
|
+
SENSITIVE = []
|
262
272
|
include Aws::Structure
|
263
273
|
end
|
264
274
|
|
@@ -301,6 +311,7 @@ module Aws::DirectoryService
|
|
301
311
|
:common_name,
|
302
312
|
:registered_date_time,
|
303
313
|
:expiry_date_time)
|
314
|
+
SENSITIVE = []
|
304
315
|
include Aws::Structure
|
305
316
|
end
|
306
317
|
|
@@ -319,6 +330,7 @@ module Aws::DirectoryService
|
|
319
330
|
class CertificateAlreadyExistsException < Struct.new(
|
320
331
|
:message,
|
321
332
|
:request_id)
|
333
|
+
SENSITIVE = []
|
322
334
|
include Aws::Structure
|
323
335
|
end
|
324
336
|
|
@@ -338,6 +350,7 @@ module Aws::DirectoryService
|
|
338
350
|
class CertificateDoesNotExistException < Struct.new(
|
339
351
|
:message,
|
340
352
|
:request_id)
|
353
|
+
SENSITIVE = []
|
341
354
|
include Aws::Structure
|
342
355
|
end
|
343
356
|
|
@@ -357,6 +370,7 @@ module Aws::DirectoryService
|
|
357
370
|
class CertificateInUseException < Struct.new(
|
358
371
|
:message,
|
359
372
|
:request_id)
|
373
|
+
SENSITIVE = []
|
360
374
|
include Aws::Structure
|
361
375
|
end
|
362
376
|
|
@@ -385,6 +399,7 @@ module Aws::DirectoryService
|
|
385
399
|
:common_name,
|
386
400
|
:state,
|
387
401
|
:expiry_date_time)
|
402
|
+
SENSITIVE = []
|
388
403
|
include Aws::Structure
|
389
404
|
end
|
390
405
|
|
@@ -404,6 +419,7 @@ module Aws::DirectoryService
|
|
404
419
|
class CertificateLimitExceededException < Struct.new(
|
405
420
|
:message,
|
406
421
|
:request_id)
|
422
|
+
SENSITIVE = []
|
407
423
|
include Aws::Structure
|
408
424
|
end
|
409
425
|
|
@@ -422,6 +438,7 @@ module Aws::DirectoryService
|
|
422
438
|
class ClientException < Struct.new(
|
423
439
|
:message,
|
424
440
|
:request_id)
|
441
|
+
SENSITIVE = []
|
425
442
|
include Aws::Structure
|
426
443
|
end
|
427
444
|
|
@@ -446,6 +463,7 @@ module Aws::DirectoryService
|
|
446
463
|
:computer_id,
|
447
464
|
:computer_name,
|
448
465
|
:computer_attributes)
|
466
|
+
SENSITIVE = []
|
449
467
|
include Aws::Structure
|
450
468
|
end
|
451
469
|
|
@@ -476,6 +494,7 @@ module Aws::DirectoryService
|
|
476
494
|
:remote_domain_name,
|
477
495
|
:dns_ip_addrs,
|
478
496
|
:replication_scope)
|
497
|
+
SENSITIVE = []
|
479
498
|
include Aws::Structure
|
480
499
|
end
|
481
500
|
|
@@ -544,6 +563,7 @@ module Aws::DirectoryService
|
|
544
563
|
:size,
|
545
564
|
:connect_settings,
|
546
565
|
:tags)
|
566
|
+
SENSITIVE = [:password]
|
547
567
|
include Aws::Structure
|
548
568
|
end
|
549
569
|
|
@@ -557,6 +577,7 @@ module Aws::DirectoryService
|
|
557
577
|
#
|
558
578
|
class ConnectDirectoryResult < Struct.new(
|
559
579
|
:directory_id)
|
580
|
+
SENSITIVE = []
|
560
581
|
include Aws::Structure
|
561
582
|
end
|
562
583
|
|
@@ -587,6 +608,7 @@ module Aws::DirectoryService
|
|
587
608
|
class CreateAliasRequest < Struct.new(
|
588
609
|
:directory_id,
|
589
610
|
:alias)
|
611
|
+
SENSITIVE = []
|
590
612
|
include Aws::Structure
|
591
613
|
end
|
592
614
|
|
@@ -605,6 +627,7 @@ module Aws::DirectoryService
|
|
605
627
|
class CreateAliasResult < Struct.new(
|
606
628
|
:directory_id,
|
607
629
|
:alias)
|
630
|
+
SENSITIVE = []
|
608
631
|
include Aws::Structure
|
609
632
|
end
|
610
633
|
|
@@ -659,6 +682,7 @@ module Aws::DirectoryService
|
|
659
682
|
:password,
|
660
683
|
:organizational_unit_distinguished_name,
|
661
684
|
:computer_attributes)
|
685
|
+
SENSITIVE = [:password]
|
662
686
|
include Aws::Structure
|
663
687
|
end
|
664
688
|
|
@@ -672,6 +696,7 @@ module Aws::DirectoryService
|
|
672
696
|
#
|
673
697
|
class CreateComputerResult < Struct.new(
|
674
698
|
:computer)
|
699
|
+
SENSITIVE = []
|
675
700
|
include Aws::Structure
|
676
701
|
end
|
677
702
|
|
@@ -710,6 +735,7 @@ module Aws::DirectoryService
|
|
710
735
|
:directory_id,
|
711
736
|
:remote_domain_name,
|
712
737
|
:dns_ip_addrs)
|
738
|
+
SENSITIVE = []
|
713
739
|
include Aws::Structure
|
714
740
|
end
|
715
741
|
|
@@ -787,6 +813,7 @@ module Aws::DirectoryService
|
|
787
813
|
:size,
|
788
814
|
:vpc_settings,
|
789
815
|
:tags)
|
816
|
+
SENSITIVE = [:password]
|
790
817
|
include Aws::Structure
|
791
818
|
end
|
792
819
|
|
@@ -800,6 +827,7 @@ module Aws::DirectoryService
|
|
800
827
|
#
|
801
828
|
class CreateDirectoryResult < Struct.new(
|
802
829
|
:directory_id)
|
830
|
+
SENSITIVE = []
|
803
831
|
include Aws::Structure
|
804
832
|
end
|
805
833
|
|
@@ -826,6 +854,7 @@ module Aws::DirectoryService
|
|
826
854
|
class CreateLogSubscriptionRequest < Struct.new(
|
827
855
|
:directory_id,
|
828
856
|
:log_group_name)
|
857
|
+
SENSITIVE = []
|
829
858
|
include Aws::Structure
|
830
859
|
end
|
831
860
|
|
@@ -905,6 +934,7 @@ module Aws::DirectoryService
|
|
905
934
|
:vpc_settings,
|
906
935
|
:edition,
|
907
936
|
:tags)
|
937
|
+
SENSITIVE = [:password]
|
908
938
|
include Aws::Structure
|
909
939
|
end
|
910
940
|
|
@@ -918,6 +948,7 @@ module Aws::DirectoryService
|
|
918
948
|
#
|
919
949
|
class CreateMicrosoftADResult < Struct.new(
|
920
950
|
:directory_id)
|
951
|
+
SENSITIVE = []
|
921
952
|
include Aws::Structure
|
922
953
|
end
|
923
954
|
|
@@ -944,6 +975,7 @@ module Aws::DirectoryService
|
|
944
975
|
class CreateSnapshotRequest < Struct.new(
|
945
976
|
:directory_id,
|
946
977
|
:name)
|
978
|
+
SENSITIVE = []
|
947
979
|
include Aws::Structure
|
948
980
|
end
|
949
981
|
|
@@ -957,6 +989,7 @@ module Aws::DirectoryService
|
|
957
989
|
#
|
958
990
|
class CreateSnapshotResult < Struct.new(
|
959
991
|
:snapshot_id)
|
992
|
+
SENSITIVE = []
|
960
993
|
include Aws::Structure
|
961
994
|
end
|
962
995
|
|
@@ -1026,6 +1059,7 @@ module Aws::DirectoryService
|
|
1026
1059
|
:trust_type,
|
1027
1060
|
:conditional_forwarder_ip_addrs,
|
1028
1061
|
:selective_auth)
|
1062
|
+
SENSITIVE = [:trust_password]
|
1029
1063
|
include Aws::Structure
|
1030
1064
|
end
|
1031
1065
|
|
@@ -1039,6 +1073,7 @@ module Aws::DirectoryService
|
|
1039
1073
|
#
|
1040
1074
|
class CreateTrustResult < Struct.new(
|
1041
1075
|
:trust_id)
|
1076
|
+
SENSITIVE = []
|
1042
1077
|
include Aws::Structure
|
1043
1078
|
end
|
1044
1079
|
|
@@ -1067,6 +1102,7 @@ module Aws::DirectoryService
|
|
1067
1102
|
class DeleteConditionalForwarderRequest < Struct.new(
|
1068
1103
|
:directory_id,
|
1069
1104
|
:remote_domain_name)
|
1105
|
+
SENSITIVE = []
|
1070
1106
|
include Aws::Structure
|
1071
1107
|
end
|
1072
1108
|
|
@@ -1093,6 +1129,7 @@ module Aws::DirectoryService
|
|
1093
1129
|
#
|
1094
1130
|
class DeleteDirectoryRequest < Struct.new(
|
1095
1131
|
:directory_id)
|
1132
|
+
SENSITIVE = []
|
1096
1133
|
include Aws::Structure
|
1097
1134
|
end
|
1098
1135
|
|
@@ -1106,6 +1143,7 @@ module Aws::DirectoryService
|
|
1106
1143
|
#
|
1107
1144
|
class DeleteDirectoryResult < Struct.new(
|
1108
1145
|
:directory_id)
|
1146
|
+
SENSITIVE = []
|
1109
1147
|
include Aws::Structure
|
1110
1148
|
end
|
1111
1149
|
|
@@ -1125,6 +1163,7 @@ module Aws::DirectoryService
|
|
1125
1163
|
#
|
1126
1164
|
class DeleteLogSubscriptionRequest < Struct.new(
|
1127
1165
|
:directory_id)
|
1166
|
+
SENSITIVE = []
|
1128
1167
|
include Aws::Structure
|
1129
1168
|
end
|
1130
1169
|
|
@@ -1149,6 +1188,7 @@ module Aws::DirectoryService
|
|
1149
1188
|
#
|
1150
1189
|
class DeleteSnapshotRequest < Struct.new(
|
1151
1190
|
:snapshot_id)
|
1191
|
+
SENSITIVE = []
|
1152
1192
|
include Aws::Structure
|
1153
1193
|
end
|
1154
1194
|
|
@@ -1162,6 +1202,7 @@ module Aws::DirectoryService
|
|
1162
1202
|
#
|
1163
1203
|
class DeleteSnapshotResult < Struct.new(
|
1164
1204
|
:snapshot_id)
|
1205
|
+
SENSITIVE = []
|
1165
1206
|
include Aws::Structure
|
1166
1207
|
end
|
1167
1208
|
|
@@ -1189,6 +1230,7 @@ module Aws::DirectoryService
|
|
1189
1230
|
class DeleteTrustRequest < Struct.new(
|
1190
1231
|
:trust_id,
|
1191
1232
|
:delete_associated_conditional_forwarder)
|
1233
|
+
SENSITIVE = []
|
1192
1234
|
include Aws::Structure
|
1193
1235
|
end
|
1194
1236
|
|
@@ -1202,6 +1244,7 @@ module Aws::DirectoryService
|
|
1202
1244
|
#
|
1203
1245
|
class DeleteTrustResult < Struct.new(
|
1204
1246
|
:trust_id)
|
1247
|
+
SENSITIVE = []
|
1205
1248
|
include Aws::Structure
|
1206
1249
|
end
|
1207
1250
|
|
@@ -1226,6 +1269,7 @@ module Aws::DirectoryService
|
|
1226
1269
|
class DeregisterCertificateRequest < Struct.new(
|
1227
1270
|
:directory_id,
|
1228
1271
|
:certificate_id)
|
1272
|
+
SENSITIVE = []
|
1229
1273
|
include Aws::Structure
|
1230
1274
|
end
|
1231
1275
|
|
@@ -1259,6 +1303,7 @@ module Aws::DirectoryService
|
|
1259
1303
|
class DeregisterEventTopicRequest < Struct.new(
|
1260
1304
|
:directory_id,
|
1261
1305
|
:topic_name)
|
1306
|
+
SENSITIVE = []
|
1262
1307
|
include Aws::Structure
|
1263
1308
|
end
|
1264
1309
|
|
@@ -1289,6 +1334,7 @@ module Aws::DirectoryService
|
|
1289
1334
|
class DescribeCertificateRequest < Struct.new(
|
1290
1335
|
:directory_id,
|
1291
1336
|
:certificate_id)
|
1337
|
+
SENSITIVE = []
|
1292
1338
|
include Aws::Structure
|
1293
1339
|
end
|
1294
1340
|
|
@@ -1302,6 +1348,7 @@ module Aws::DirectoryService
|
|
1302
1348
|
#
|
1303
1349
|
class DescribeCertificateResult < Struct.new(
|
1304
1350
|
:certificate)
|
1351
|
+
SENSITIVE = []
|
1305
1352
|
include Aws::Structure
|
1306
1353
|
end
|
1307
1354
|
|
@@ -1331,6 +1378,7 @@ module Aws::DirectoryService
|
|
1331
1378
|
class DescribeConditionalForwardersRequest < Struct.new(
|
1332
1379
|
:directory_id,
|
1333
1380
|
:remote_domain_names)
|
1381
|
+
SENSITIVE = []
|
1334
1382
|
include Aws::Structure
|
1335
1383
|
end
|
1336
1384
|
|
@@ -1344,6 +1392,7 @@ module Aws::DirectoryService
|
|
1344
1392
|
#
|
1345
1393
|
class DescribeConditionalForwardersResult < Struct.new(
|
1346
1394
|
:conditional_forwarders)
|
1395
|
+
SENSITIVE = []
|
1347
1396
|
include Aws::Structure
|
1348
1397
|
end
|
1349
1398
|
|
@@ -1384,6 +1433,7 @@ module Aws::DirectoryService
|
|
1384
1433
|
:directory_ids,
|
1385
1434
|
:next_token,
|
1386
1435
|
:limit)
|
1436
|
+
SENSITIVE = []
|
1387
1437
|
include Aws::Structure
|
1388
1438
|
end
|
1389
1439
|
|
@@ -1409,6 +1459,7 @@ module Aws::DirectoryService
|
|
1409
1459
|
class DescribeDirectoriesResult < Struct.new(
|
1410
1460
|
:directory_descriptions,
|
1411
1461
|
:next_token)
|
1462
|
+
SENSITIVE = []
|
1412
1463
|
include Aws::Structure
|
1413
1464
|
end
|
1414
1465
|
|
@@ -1448,6 +1499,7 @@ module Aws::DirectoryService
|
|
1448
1499
|
:domain_controller_ids,
|
1449
1500
|
:next_token,
|
1450
1501
|
:limit)
|
1502
|
+
SENSITIVE = []
|
1451
1503
|
include Aws::Structure
|
1452
1504
|
end
|
1453
1505
|
|
@@ -1466,6 +1518,7 @@ module Aws::DirectoryService
|
|
1466
1518
|
class DescribeDomainControllersResult < Struct.new(
|
1467
1519
|
:domain_controllers,
|
1468
1520
|
:next_token)
|
1521
|
+
SENSITIVE = []
|
1469
1522
|
include Aws::Structure
|
1470
1523
|
end
|
1471
1524
|
|
@@ -1499,6 +1552,7 @@ module Aws::DirectoryService
|
|
1499
1552
|
class DescribeEventTopicsRequest < Struct.new(
|
1500
1553
|
:directory_id,
|
1501
1554
|
:topic_names)
|
1555
|
+
SENSITIVE = []
|
1502
1556
|
include Aws::Structure
|
1503
1557
|
end
|
1504
1558
|
|
@@ -1513,6 +1567,7 @@ module Aws::DirectoryService
|
|
1513
1567
|
#
|
1514
1568
|
class DescribeEventTopicsResult < Struct.new(
|
1515
1569
|
:event_topics)
|
1570
|
+
SENSITIVE = []
|
1516
1571
|
include Aws::Structure
|
1517
1572
|
end
|
1518
1573
|
|
@@ -1550,6 +1605,7 @@ module Aws::DirectoryService
|
|
1550
1605
|
:type,
|
1551
1606
|
:next_token,
|
1552
1607
|
:limit)
|
1608
|
+
SENSITIVE = []
|
1553
1609
|
include Aws::Structure
|
1554
1610
|
end
|
1555
1611
|
|
@@ -1569,6 +1625,7 @@ module Aws::DirectoryService
|
|
1569
1625
|
class DescribeLDAPSSettingsResult < Struct.new(
|
1570
1626
|
:ldaps_settings_info,
|
1571
1627
|
:next_token)
|
1628
|
+
SENSITIVE = []
|
1572
1629
|
include Aws::Structure
|
1573
1630
|
end
|
1574
1631
|
|
@@ -1608,6 +1665,7 @@ module Aws::DirectoryService
|
|
1608
1665
|
:shared_directory_ids,
|
1609
1666
|
:next_token,
|
1610
1667
|
:limit)
|
1668
|
+
SENSITIVE = []
|
1611
1669
|
include Aws::Structure
|
1612
1670
|
end
|
1613
1671
|
|
@@ -1626,6 +1684,7 @@ module Aws::DirectoryService
|
|
1626
1684
|
class DescribeSharedDirectoriesResult < Struct.new(
|
1627
1685
|
:shared_directories,
|
1628
1686
|
:next_token)
|
1687
|
+
SENSITIVE = []
|
1629
1688
|
include Aws::Structure
|
1630
1689
|
end
|
1631
1690
|
|
@@ -1668,6 +1727,7 @@ module Aws::DirectoryService
|
|
1668
1727
|
:snapshot_ids,
|
1669
1728
|
:next_token,
|
1670
1729
|
:limit)
|
1730
|
+
SENSITIVE = []
|
1671
1731
|
include Aws::Structure
|
1672
1732
|
end
|
1673
1733
|
|
@@ -1692,6 +1752,7 @@ module Aws::DirectoryService
|
|
1692
1752
|
class DescribeSnapshotsResult < Struct.new(
|
1693
1753
|
:snapshots,
|
1694
1754
|
:next_token)
|
1755
|
+
SENSITIVE = []
|
1695
1756
|
include Aws::Structure
|
1696
1757
|
end
|
1697
1758
|
|
@@ -1740,6 +1801,7 @@ module Aws::DirectoryService
|
|
1740
1801
|
:trust_ids,
|
1741
1802
|
:next_token,
|
1742
1803
|
:limit)
|
1804
|
+
SENSITIVE = []
|
1743
1805
|
include Aws::Structure
|
1744
1806
|
end
|
1745
1807
|
|
@@ -1765,6 +1827,7 @@ module Aws::DirectoryService
|
|
1765
1827
|
class DescribeTrustsResult < Struct.new(
|
1766
1828
|
:trusts,
|
1767
1829
|
:next_token)
|
1830
|
+
SENSITIVE = []
|
1768
1831
|
include Aws::Structure
|
1769
1832
|
end
|
1770
1833
|
|
@@ -1783,6 +1846,7 @@ module Aws::DirectoryService
|
|
1783
1846
|
class DirectoryAlreadySharedException < Struct.new(
|
1784
1847
|
:message,
|
1785
1848
|
:request_id)
|
1849
|
+
SENSITIVE = []
|
1786
1850
|
include Aws::Structure
|
1787
1851
|
end
|
1788
1852
|
|
@@ -1832,6 +1896,7 @@ module Aws::DirectoryService
|
|
1832
1896
|
:subnet_ids,
|
1833
1897
|
:customer_dns_ips,
|
1834
1898
|
:customer_user_name)
|
1899
|
+
SENSITIVE = []
|
1835
1900
|
include Aws::Structure
|
1836
1901
|
end
|
1837
1902
|
|
@@ -1870,6 +1935,7 @@ module Aws::DirectoryService
|
|
1870
1935
|
:security_group_id,
|
1871
1936
|
:availability_zones,
|
1872
1937
|
:connect_ips)
|
1938
|
+
SENSITIVE = []
|
1873
1939
|
include Aws::Structure
|
1874
1940
|
end
|
1875
1941
|
|
@@ -2023,6 +2089,7 @@ module Aws::DirectoryService
|
|
2023
2089
|
:sso_enabled,
|
2024
2090
|
:desired_number_of_domain_controllers,
|
2025
2091
|
:owner_directory_description)
|
2092
|
+
SENSITIVE = [:share_notes]
|
2026
2093
|
include Aws::Structure
|
2027
2094
|
end
|
2028
2095
|
|
@@ -2041,6 +2108,7 @@ module Aws::DirectoryService
|
|
2041
2108
|
class DirectoryDoesNotExistException < Struct.new(
|
2042
2109
|
:message,
|
2043
2110
|
:request_id)
|
2111
|
+
SENSITIVE = []
|
2044
2112
|
include Aws::Structure
|
2045
2113
|
end
|
2046
2114
|
|
@@ -2061,6 +2129,7 @@ module Aws::DirectoryService
|
|
2061
2129
|
class DirectoryLimitExceededException < Struct.new(
|
2062
2130
|
:message,
|
2063
2131
|
:request_id)
|
2132
|
+
SENSITIVE = []
|
2064
2133
|
include Aws::Structure
|
2065
2134
|
end
|
2066
2135
|
|
@@ -2117,6 +2186,7 @@ module Aws::DirectoryService
|
|
2117
2186
|
:connected_directories_limit,
|
2118
2187
|
:connected_directories_current_count,
|
2119
2188
|
:connected_directories_limit_reached)
|
2189
|
+
SENSITIVE = []
|
2120
2190
|
include Aws::Structure
|
2121
2191
|
end
|
2122
2192
|
|
@@ -2135,6 +2205,7 @@ module Aws::DirectoryService
|
|
2135
2205
|
class DirectoryNotSharedException < Struct.new(
|
2136
2206
|
:message,
|
2137
2207
|
:request_id)
|
2208
|
+
SENSITIVE = []
|
2138
2209
|
include Aws::Structure
|
2139
2210
|
end
|
2140
2211
|
|
@@ -2153,6 +2224,7 @@ module Aws::DirectoryService
|
|
2153
2224
|
class DirectoryUnavailableException < Struct.new(
|
2154
2225
|
:message,
|
2155
2226
|
:request_id)
|
2227
|
+
SENSITIVE = []
|
2156
2228
|
include Aws::Structure
|
2157
2229
|
end
|
2158
2230
|
|
@@ -2183,6 +2255,7 @@ module Aws::DirectoryService
|
|
2183
2255
|
class DirectoryVpcSettings < Struct.new(
|
2184
2256
|
:vpc_id,
|
2185
2257
|
:subnet_ids)
|
2258
|
+
SENSITIVE = []
|
2186
2259
|
include Aws::Structure
|
2187
2260
|
end
|
2188
2261
|
|
@@ -2211,6 +2284,7 @@ module Aws::DirectoryService
|
|
2211
2284
|
:subnet_ids,
|
2212
2285
|
:security_group_id,
|
2213
2286
|
:availability_zones)
|
2287
|
+
SENSITIVE = []
|
2214
2288
|
include Aws::Structure
|
2215
2289
|
end
|
2216
2290
|
|
@@ -2236,6 +2310,7 @@ module Aws::DirectoryService
|
|
2236
2310
|
class DisableLDAPSRequest < Struct.new(
|
2237
2311
|
:directory_id,
|
2238
2312
|
:type)
|
2313
|
+
SENSITIVE = []
|
2239
2314
|
include Aws::Structure
|
2240
2315
|
end
|
2241
2316
|
|
@@ -2260,6 +2335,7 @@ module Aws::DirectoryService
|
|
2260
2335
|
#
|
2261
2336
|
class DisableRadiusRequest < Struct.new(
|
2262
2337
|
:directory_id)
|
2338
|
+
SENSITIVE = []
|
2263
2339
|
include Aws::Structure
|
2264
2340
|
end
|
2265
2341
|
|
@@ -2309,6 +2385,7 @@ module Aws::DirectoryService
|
|
2309
2385
|
:directory_id,
|
2310
2386
|
:user_name,
|
2311
2387
|
:password)
|
2388
|
+
SENSITIVE = [:password]
|
2312
2389
|
include Aws::Structure
|
2313
2390
|
end
|
2314
2391
|
|
@@ -2375,6 +2452,7 @@ module Aws::DirectoryService
|
|
2375
2452
|
:status_reason,
|
2376
2453
|
:launch_time,
|
2377
2454
|
:status_last_updated_date_time)
|
2455
|
+
SENSITIVE = []
|
2378
2456
|
include Aws::Structure
|
2379
2457
|
end
|
2380
2458
|
|
@@ -2394,6 +2472,7 @@ module Aws::DirectoryService
|
|
2394
2472
|
class DomainControllerLimitExceededException < Struct.new(
|
2395
2473
|
:message,
|
2396
2474
|
:request_id)
|
2475
|
+
SENSITIVE = []
|
2397
2476
|
include Aws::Structure
|
2398
2477
|
end
|
2399
2478
|
|
@@ -2419,6 +2498,7 @@ module Aws::DirectoryService
|
|
2419
2498
|
class EnableLDAPSRequest < Struct.new(
|
2420
2499
|
:directory_id,
|
2421
2500
|
:type)
|
2501
|
+
SENSITIVE = []
|
2422
2502
|
include Aws::Structure
|
2423
2503
|
end
|
2424
2504
|
|
@@ -2459,6 +2539,7 @@ module Aws::DirectoryService
|
|
2459
2539
|
class EnableRadiusRequest < Struct.new(
|
2460
2540
|
:directory_id,
|
2461
2541
|
:radius_settings)
|
2542
|
+
SENSITIVE = []
|
2462
2543
|
include Aws::Structure
|
2463
2544
|
end
|
2464
2545
|
|
@@ -2507,6 +2588,7 @@ module Aws::DirectoryService
|
|
2507
2588
|
:directory_id,
|
2508
2589
|
:user_name,
|
2509
2590
|
:password)
|
2591
|
+
SENSITIVE = [:password]
|
2510
2592
|
include Aws::Structure
|
2511
2593
|
end
|
2512
2594
|
|
@@ -2531,6 +2613,7 @@ module Aws::DirectoryService
|
|
2531
2613
|
class EntityAlreadyExistsException < Struct.new(
|
2532
2614
|
:message,
|
2533
2615
|
:request_id)
|
2616
|
+
SENSITIVE = []
|
2534
2617
|
include Aws::Structure
|
2535
2618
|
end
|
2536
2619
|
|
@@ -2549,6 +2632,7 @@ module Aws::DirectoryService
|
|
2549
2632
|
class EntityDoesNotExistException < Struct.new(
|
2550
2633
|
:message,
|
2551
2634
|
:request_id)
|
2635
|
+
SENSITIVE = []
|
2552
2636
|
include Aws::Structure
|
2553
2637
|
end
|
2554
2638
|
|
@@ -2586,6 +2670,7 @@ module Aws::DirectoryService
|
|
2586
2670
|
:topic_arn,
|
2587
2671
|
:created_date_time,
|
2588
2672
|
:status)
|
2673
|
+
SENSITIVE = []
|
2589
2674
|
include Aws::Structure
|
2590
2675
|
end
|
2591
2676
|
|
@@ -2608,6 +2693,7 @@ module Aws::DirectoryService
|
|
2608
2693
|
#
|
2609
2694
|
class GetDirectoryLimitsResult < Struct.new(
|
2610
2695
|
:directory_limits)
|
2696
|
+
SENSITIVE = []
|
2611
2697
|
include Aws::Structure
|
2612
2698
|
end
|
2613
2699
|
|
@@ -2628,6 +2714,7 @@ module Aws::DirectoryService
|
|
2628
2714
|
#
|
2629
2715
|
class GetSnapshotLimitsRequest < Struct.new(
|
2630
2716
|
:directory_id)
|
2717
|
+
SENSITIVE = []
|
2631
2718
|
include Aws::Structure
|
2632
2719
|
end
|
2633
2720
|
|
@@ -2642,6 +2729,7 @@ module Aws::DirectoryService
|
|
2642
2729
|
#
|
2643
2730
|
class GetSnapshotLimitsResult < Struct.new(
|
2644
2731
|
:snapshot_limits)
|
2732
|
+
SENSITIVE = []
|
2645
2733
|
include Aws::Structure
|
2646
2734
|
end
|
2647
2735
|
|
@@ -2661,6 +2749,7 @@ module Aws::DirectoryService
|
|
2661
2749
|
class InsufficientPermissionsException < Struct.new(
|
2662
2750
|
:message,
|
2663
2751
|
:request_id)
|
2752
|
+
SENSITIVE = []
|
2664
2753
|
include Aws::Structure
|
2665
2754
|
end
|
2666
2755
|
|
@@ -2679,6 +2768,7 @@ module Aws::DirectoryService
|
|
2679
2768
|
class InvalidCertificateException < Struct.new(
|
2680
2769
|
:message,
|
2681
2770
|
:request_id)
|
2771
|
+
SENSITIVE = []
|
2682
2772
|
include Aws::Structure
|
2683
2773
|
end
|
2684
2774
|
|
@@ -2698,6 +2788,7 @@ module Aws::DirectoryService
|
|
2698
2788
|
class InvalidLDAPSStatusException < Struct.new(
|
2699
2789
|
:message,
|
2700
2790
|
:request_id)
|
2791
|
+
SENSITIVE = []
|
2701
2792
|
include Aws::Structure
|
2702
2793
|
end
|
2703
2794
|
|
@@ -2716,6 +2807,7 @@ module Aws::DirectoryService
|
|
2716
2807
|
class InvalidNextTokenException < Struct.new(
|
2717
2808
|
:message,
|
2718
2809
|
:request_id)
|
2810
|
+
SENSITIVE = []
|
2719
2811
|
include Aws::Structure
|
2720
2812
|
end
|
2721
2813
|
|
@@ -2734,6 +2826,7 @@ module Aws::DirectoryService
|
|
2734
2826
|
class InvalidParameterException < Struct.new(
|
2735
2827
|
:message,
|
2736
2828
|
:request_id)
|
2829
|
+
SENSITIVE = []
|
2737
2830
|
include Aws::Structure
|
2738
2831
|
end
|
2739
2832
|
|
@@ -2753,6 +2846,7 @@ module Aws::DirectoryService
|
|
2753
2846
|
class InvalidPasswordException < Struct.new(
|
2754
2847
|
:message,
|
2755
2848
|
:request_id)
|
2849
|
+
SENSITIVE = []
|
2756
2850
|
include Aws::Structure
|
2757
2851
|
end
|
2758
2852
|
|
@@ -2771,6 +2865,7 @@ module Aws::DirectoryService
|
|
2771
2865
|
class InvalidTargetException < Struct.new(
|
2772
2866
|
:message,
|
2773
2867
|
:request_id)
|
2868
|
+
SENSITIVE = []
|
2774
2869
|
include Aws::Structure
|
2775
2870
|
end
|
2776
2871
|
|
@@ -2801,6 +2896,7 @@ module Aws::DirectoryService
|
|
2801
2896
|
class IpRoute < Struct.new(
|
2802
2897
|
:cidr_ip,
|
2803
2898
|
:description)
|
2899
|
+
SENSITIVE = []
|
2804
2900
|
include Aws::Structure
|
2805
2901
|
end
|
2806
2902
|
|
@@ -2839,6 +2935,7 @@ module Aws::DirectoryService
|
|
2839
2935
|
:added_date_time,
|
2840
2936
|
:ip_route_status_reason,
|
2841
2937
|
:description)
|
2938
|
+
SENSITIVE = []
|
2842
2939
|
include Aws::Structure
|
2843
2940
|
end
|
2844
2941
|
|
@@ -2858,6 +2955,7 @@ module Aws::DirectoryService
|
|
2858
2955
|
class IpRouteLimitExceededException < Struct.new(
|
2859
2956
|
:message,
|
2860
2957
|
:request_id)
|
2958
|
+
SENSITIVE = []
|
2861
2959
|
include Aws::Structure
|
2862
2960
|
end
|
2863
2961
|
|
@@ -2881,6 +2979,7 @@ module Aws::DirectoryService
|
|
2881
2979
|
:ldaps_status,
|
2882
2980
|
:ldaps_status_reason,
|
2883
2981
|
:last_updated_date_time)
|
2982
|
+
SENSITIVE = []
|
2884
2983
|
include Aws::Structure
|
2885
2984
|
end
|
2886
2985
|
|
@@ -2915,6 +3014,7 @@ module Aws::DirectoryService
|
|
2915
3014
|
:directory_id,
|
2916
3015
|
:next_token,
|
2917
3016
|
:limit)
|
3017
|
+
SENSITIVE = []
|
2918
3018
|
include Aws::Structure
|
2919
3019
|
end
|
2920
3020
|
|
@@ -2933,6 +3033,7 @@ module Aws::DirectoryService
|
|
2933
3033
|
class ListCertificatesResult < Struct.new(
|
2934
3034
|
:next_token,
|
2935
3035
|
:certificates_info)
|
3036
|
+
SENSITIVE = []
|
2936
3037
|
include Aws::Structure
|
2937
3038
|
end
|
2938
3039
|
|
@@ -2967,6 +3068,7 @@ module Aws::DirectoryService
|
|
2967
3068
|
:directory_id,
|
2968
3069
|
:next_token,
|
2969
3070
|
:limit)
|
3071
|
+
SENSITIVE = []
|
2970
3072
|
include Aws::Structure
|
2971
3073
|
end
|
2972
3074
|
|
@@ -2985,6 +3087,7 @@ module Aws::DirectoryService
|
|
2985
3087
|
class ListIpRoutesResult < Struct.new(
|
2986
3088
|
:ip_routes_info,
|
2987
3089
|
:next_token)
|
3090
|
+
SENSITIVE = []
|
2988
3091
|
include Aws::Structure
|
2989
3092
|
end
|
2990
3093
|
|
@@ -3019,6 +3122,7 @@ module Aws::DirectoryService
|
|
3019
3122
|
:directory_id,
|
3020
3123
|
:next_token,
|
3021
3124
|
:limit)
|
3125
|
+
SENSITIVE = []
|
3022
3126
|
include Aws::Structure
|
3023
3127
|
end
|
3024
3128
|
|
@@ -3036,6 +3140,7 @@ module Aws::DirectoryService
|
|
3036
3140
|
class ListLogSubscriptionsResult < Struct.new(
|
3037
3141
|
:log_subscriptions,
|
3038
3142
|
:next_token)
|
3143
|
+
SENSITIVE = []
|
3039
3144
|
include Aws::Structure
|
3040
3145
|
end
|
3041
3146
|
|
@@ -3068,6 +3173,7 @@ module Aws::DirectoryService
|
|
3068
3173
|
:directory_id,
|
3069
3174
|
:next_token,
|
3070
3175
|
:limit)
|
3176
|
+
SENSITIVE = []
|
3071
3177
|
include Aws::Structure
|
3072
3178
|
end
|
3073
3179
|
|
@@ -3086,6 +3192,7 @@ module Aws::DirectoryService
|
|
3086
3192
|
class ListSchemaExtensionsResult < Struct.new(
|
3087
3193
|
:schema_extensions_info,
|
3088
3194
|
:next_token)
|
3195
|
+
SENSITIVE = []
|
3089
3196
|
include Aws::Structure
|
3090
3197
|
end
|
3091
3198
|
|
@@ -3117,6 +3224,7 @@ module Aws::DirectoryService
|
|
3117
3224
|
:resource_id,
|
3118
3225
|
:next_token,
|
3119
3226
|
:limit)
|
3227
|
+
SENSITIVE = []
|
3120
3228
|
include Aws::Structure
|
3121
3229
|
end
|
3122
3230
|
|
@@ -3133,6 +3241,7 @@ module Aws::DirectoryService
|
|
3133
3241
|
class ListTagsForResourceResult < Struct.new(
|
3134
3242
|
:tags,
|
3135
3243
|
:next_token)
|
3244
|
+
SENSITIVE = []
|
3136
3245
|
include Aws::Structure
|
3137
3246
|
end
|
3138
3247
|
|
@@ -3158,6 +3267,7 @@ module Aws::DirectoryService
|
|
3158
3267
|
:directory_id,
|
3159
3268
|
:log_group_name,
|
3160
3269
|
:subscription_created_date_time)
|
3270
|
+
SENSITIVE = []
|
3161
3271
|
include Aws::Structure
|
3162
3272
|
end
|
3163
3273
|
|
@@ -3177,6 +3287,7 @@ module Aws::DirectoryService
|
|
3177
3287
|
class NoAvailableCertificateException < Struct.new(
|
3178
3288
|
:message,
|
3179
3289
|
:request_id)
|
3290
|
+
SENSITIVE = []
|
3180
3291
|
include Aws::Structure
|
3181
3292
|
end
|
3182
3293
|
|
@@ -3195,6 +3306,7 @@ module Aws::DirectoryService
|
|
3195
3306
|
class OrganizationsException < Struct.new(
|
3196
3307
|
:message,
|
3197
3308
|
:request_id)
|
3309
|
+
SENSITIVE = []
|
3198
3310
|
include Aws::Structure
|
3199
3311
|
end
|
3200
3312
|
|
@@ -3236,6 +3348,7 @@ module Aws::DirectoryService
|
|
3236
3348
|
:vpc_settings,
|
3237
3349
|
:radius_settings,
|
3238
3350
|
:radius_status)
|
3351
|
+
SENSITIVE = []
|
3239
3352
|
include Aws::Structure
|
3240
3353
|
end
|
3241
3354
|
|
@@ -3305,6 +3418,7 @@ module Aws::DirectoryService
|
|
3305
3418
|
:authentication_protocol,
|
3306
3419
|
:display_label,
|
3307
3420
|
:use_same_username)
|
3421
|
+
SENSITIVE = [:shared_secret]
|
3308
3422
|
include Aws::Structure
|
3309
3423
|
end
|
3310
3424
|
|
@@ -3329,6 +3443,7 @@ module Aws::DirectoryService
|
|
3329
3443
|
class RegisterCertificateRequest < Struct.new(
|
3330
3444
|
:directory_id,
|
3331
3445
|
:certificate_data)
|
3446
|
+
SENSITIVE = []
|
3332
3447
|
include Aws::Structure
|
3333
3448
|
end
|
3334
3449
|
|
@@ -3340,6 +3455,7 @@ module Aws::DirectoryService
|
|
3340
3455
|
#
|
3341
3456
|
class RegisterCertificateResult < Struct.new(
|
3342
3457
|
:certificate_id)
|
3458
|
+
SENSITIVE = []
|
3343
3459
|
include Aws::Structure
|
3344
3460
|
end
|
3345
3461
|
|
@@ -3368,6 +3484,7 @@ module Aws::DirectoryService
|
|
3368
3484
|
class RegisterEventTopicRequest < Struct.new(
|
3369
3485
|
:directory_id,
|
3370
3486
|
:topic_name)
|
3487
|
+
SENSITIVE = []
|
3371
3488
|
include Aws::Structure
|
3372
3489
|
end
|
3373
3490
|
|
@@ -3394,6 +3511,7 @@ module Aws::DirectoryService
|
|
3394
3511
|
#
|
3395
3512
|
class RejectSharedDirectoryRequest < Struct.new(
|
3396
3513
|
:shared_directory_id)
|
3514
|
+
SENSITIVE = []
|
3397
3515
|
include Aws::Structure
|
3398
3516
|
end
|
3399
3517
|
|
@@ -3406,6 +3524,7 @@ module Aws::DirectoryService
|
|
3406
3524
|
#
|
3407
3525
|
class RejectSharedDirectoryResult < Struct.new(
|
3408
3526
|
:shared_directory_id)
|
3527
|
+
SENSITIVE = []
|
3409
3528
|
include Aws::Structure
|
3410
3529
|
end
|
3411
3530
|
|
@@ -3431,6 +3550,7 @@ module Aws::DirectoryService
|
|
3431
3550
|
class RemoveIpRoutesRequest < Struct.new(
|
3432
3551
|
:directory_id,
|
3433
3552
|
:cidr_ips)
|
3553
|
+
SENSITIVE = []
|
3434
3554
|
include Aws::Structure
|
3435
3555
|
end
|
3436
3556
|
|
@@ -3459,6 +3579,7 @@ module Aws::DirectoryService
|
|
3459
3579
|
class RemoveTagsFromResourceRequest < Struct.new(
|
3460
3580
|
:resource_id,
|
3461
3581
|
:tag_keys)
|
3582
|
+
SENSITIVE = []
|
3462
3583
|
include Aws::Structure
|
3463
3584
|
end
|
3464
3585
|
|
@@ -3494,6 +3615,7 @@ module Aws::DirectoryService
|
|
3494
3615
|
:directory_id,
|
3495
3616
|
:user_name,
|
3496
3617
|
:new_password)
|
3618
|
+
SENSITIVE = [:new_password]
|
3497
3619
|
include Aws::Structure
|
3498
3620
|
end
|
3499
3621
|
|
@@ -3519,6 +3641,7 @@ module Aws::DirectoryService
|
|
3519
3641
|
#
|
3520
3642
|
class RestoreFromSnapshotRequest < Struct.new(
|
3521
3643
|
:snapshot_id)
|
3644
|
+
SENSITIVE = []
|
3522
3645
|
include Aws::Structure
|
3523
3646
|
end
|
3524
3647
|
|
@@ -3570,6 +3693,7 @@ module Aws::DirectoryService
|
|
3570
3693
|
:schema_extension_status_reason,
|
3571
3694
|
:start_date_time,
|
3572
3695
|
:end_date_time)
|
3696
|
+
SENSITIVE = []
|
3573
3697
|
include Aws::Structure
|
3574
3698
|
end
|
3575
3699
|
|
@@ -3588,6 +3712,7 @@ module Aws::DirectoryService
|
|
3588
3712
|
class ServiceException < Struct.new(
|
3589
3713
|
:message,
|
3590
3714
|
:request_id)
|
3715
|
+
SENSITIVE = []
|
3591
3716
|
include Aws::Structure
|
3592
3717
|
end
|
3593
3718
|
|
@@ -3635,6 +3760,7 @@ module Aws::DirectoryService
|
|
3635
3760
|
:share_notes,
|
3636
3761
|
:share_target,
|
3637
3762
|
:share_method)
|
3763
|
+
SENSITIVE = [:share_notes]
|
3638
3764
|
include Aws::Structure
|
3639
3765
|
end
|
3640
3766
|
|
@@ -3647,6 +3773,7 @@ module Aws::DirectoryService
|
|
3647
3773
|
#
|
3648
3774
|
class ShareDirectoryResult < Struct.new(
|
3649
3775
|
:shared_directory_id)
|
3776
|
+
SENSITIVE = []
|
3650
3777
|
include Aws::Structure
|
3651
3778
|
end
|
3652
3779
|
|
@@ -3666,6 +3793,7 @@ module Aws::DirectoryService
|
|
3666
3793
|
class ShareLimitExceededException < Struct.new(
|
3667
3794
|
:message,
|
3668
3795
|
:request_id)
|
3796
|
+
SENSITIVE = []
|
3669
3797
|
include Aws::Structure
|
3670
3798
|
end
|
3671
3799
|
|
@@ -3692,6 +3820,7 @@ module Aws::DirectoryService
|
|
3692
3820
|
class ShareTarget < Struct.new(
|
3693
3821
|
:id,
|
3694
3822
|
:type)
|
3823
|
+
SENSITIVE = []
|
3695
3824
|
include Aws::Structure
|
3696
3825
|
end
|
3697
3826
|
|
@@ -3759,6 +3888,7 @@ module Aws::DirectoryService
|
|
3759
3888
|
:share_notes,
|
3760
3889
|
:created_date_time,
|
3761
3890
|
:last_updated_date_time)
|
3891
|
+
SENSITIVE = [:share_notes]
|
3762
3892
|
include Aws::Structure
|
3763
3893
|
end
|
3764
3894
|
|
@@ -3797,6 +3927,7 @@ module Aws::DirectoryService
|
|
3797
3927
|
:name,
|
3798
3928
|
:status,
|
3799
3929
|
:start_time)
|
3930
|
+
SENSITIVE = []
|
3800
3931
|
include Aws::Structure
|
3801
3932
|
end
|
3802
3933
|
|
@@ -3817,6 +3948,7 @@ module Aws::DirectoryService
|
|
3817
3948
|
class SnapshotLimitExceededException < Struct.new(
|
3818
3949
|
:message,
|
3819
3950
|
:request_id)
|
3951
|
+
SENSITIVE = []
|
3820
3952
|
include Aws::Structure
|
3821
3953
|
end
|
3822
3954
|
|
@@ -3840,6 +3972,7 @@ module Aws::DirectoryService
|
|
3840
3972
|
:manual_snapshots_limit,
|
3841
3973
|
:manual_snapshots_current_count,
|
3842
3974
|
:manual_snapshots_limit_reached)
|
3975
|
+
SENSITIVE = []
|
3843
3976
|
include Aws::Structure
|
3844
3977
|
end
|
3845
3978
|
|
@@ -3881,6 +4014,7 @@ module Aws::DirectoryService
|
|
3881
4014
|
:create_snapshot_before_schema_extension,
|
3882
4015
|
:ldif_content,
|
3883
4016
|
:description)
|
4017
|
+
SENSITIVE = []
|
3884
4018
|
include Aws::Structure
|
3885
4019
|
end
|
3886
4020
|
|
@@ -3892,6 +4026,7 @@ module Aws::DirectoryService
|
|
3892
4026
|
#
|
3893
4027
|
class StartSchemaExtensionResult < Struct.new(
|
3894
4028
|
:schema_extension_id)
|
4029
|
+
SENSITIVE = []
|
3895
4030
|
include Aws::Structure
|
3896
4031
|
end
|
3897
4032
|
|
@@ -3926,6 +4061,7 @@ module Aws::DirectoryService
|
|
3926
4061
|
class Tag < Struct.new(
|
3927
4062
|
:key,
|
3928
4063
|
:value)
|
4064
|
+
SENSITIVE = []
|
3929
4065
|
include Aws::Structure
|
3930
4066
|
end
|
3931
4067
|
|
@@ -3944,6 +4080,7 @@ module Aws::DirectoryService
|
|
3944
4080
|
class TagLimitExceededException < Struct.new(
|
3945
4081
|
:message,
|
3946
4082
|
:request_id)
|
4083
|
+
SENSITIVE = []
|
3947
4084
|
include Aws::Structure
|
3948
4085
|
end
|
3949
4086
|
|
@@ -4010,6 +4147,7 @@ module Aws::DirectoryService
|
|
4010
4147
|
:state_last_updated_date_time,
|
4011
4148
|
:trust_state_reason,
|
4012
4149
|
:selective_auth)
|
4150
|
+
SENSITIVE = []
|
4013
4151
|
include Aws::Structure
|
4014
4152
|
end
|
4015
4153
|
|
@@ -4039,6 +4177,7 @@ module Aws::DirectoryService
|
|
4039
4177
|
class UnshareDirectoryRequest < Struct.new(
|
4040
4178
|
:directory_id,
|
4041
4179
|
:unshare_target)
|
4180
|
+
SENSITIVE = []
|
4042
4181
|
include Aws::Structure
|
4043
4182
|
end
|
4044
4183
|
|
@@ -4051,6 +4190,7 @@ module Aws::DirectoryService
|
|
4051
4190
|
#
|
4052
4191
|
class UnshareDirectoryResult < Struct.new(
|
4053
4192
|
:shared_directory_id)
|
4193
|
+
SENSITIVE = []
|
4054
4194
|
include Aws::Structure
|
4055
4195
|
end
|
4056
4196
|
|
@@ -4078,6 +4218,7 @@ module Aws::DirectoryService
|
|
4078
4218
|
class UnshareTarget < Struct.new(
|
4079
4219
|
:id,
|
4080
4220
|
:type)
|
4221
|
+
SENSITIVE = []
|
4081
4222
|
include Aws::Structure
|
4082
4223
|
end
|
4083
4224
|
|
@@ -4096,6 +4237,7 @@ module Aws::DirectoryService
|
|
4096
4237
|
class UnsupportedOperationException < Struct.new(
|
4097
4238
|
:message,
|
4098
4239
|
:request_id)
|
4240
|
+
SENSITIVE = []
|
4099
4241
|
include Aws::Structure
|
4100
4242
|
end
|
4101
4243
|
|
@@ -4131,6 +4273,7 @@ module Aws::DirectoryService
|
|
4131
4273
|
:directory_id,
|
4132
4274
|
:remote_domain_name,
|
4133
4275
|
:dns_ip_addrs)
|
4276
|
+
SENSITIVE = []
|
4134
4277
|
include Aws::Structure
|
4135
4278
|
end
|
4136
4279
|
|
@@ -4162,6 +4305,7 @@ module Aws::DirectoryService
|
|
4162
4305
|
class UpdateNumberOfDomainControllersRequest < Struct.new(
|
4163
4306
|
:directory_id,
|
4164
4307
|
:desired_number)
|
4308
|
+
SENSITIVE = []
|
4165
4309
|
include Aws::Structure
|
4166
4310
|
end
|
4167
4311
|
|
@@ -4203,6 +4347,7 @@ module Aws::DirectoryService
|
|
4203
4347
|
class UpdateRadiusRequest < Struct.new(
|
4204
4348
|
:directory_id,
|
4205
4349
|
:radius_settings)
|
4350
|
+
SENSITIVE = []
|
4206
4351
|
include Aws::Structure
|
4207
4352
|
end
|
4208
4353
|
|
@@ -4233,6 +4378,7 @@ module Aws::DirectoryService
|
|
4233
4378
|
class UpdateTrustRequest < Struct.new(
|
4234
4379
|
:trust_id,
|
4235
4380
|
:selective_auth)
|
4381
|
+
SENSITIVE = []
|
4236
4382
|
include Aws::Structure
|
4237
4383
|
end
|
4238
4384
|
|
@@ -4249,6 +4395,7 @@ module Aws::DirectoryService
|
|
4249
4395
|
class UpdateTrustResult < Struct.new(
|
4250
4396
|
:request_id,
|
4251
4397
|
:trust_id)
|
4398
|
+
SENSITIVE = []
|
4252
4399
|
include Aws::Structure
|
4253
4400
|
end
|
4254
4401
|
|
@@ -4267,6 +4414,7 @@ module Aws::DirectoryService
|
|
4267
4414
|
class UserDoesNotExistException < Struct.new(
|
4268
4415
|
:message,
|
4269
4416
|
:request_id)
|
4417
|
+
SENSITIVE = []
|
4270
4418
|
include Aws::Structure
|
4271
4419
|
end
|
4272
4420
|
|
@@ -4288,6 +4436,7 @@ module Aws::DirectoryService
|
|
4288
4436
|
#
|
4289
4437
|
class VerifyTrustRequest < Struct.new(
|
4290
4438
|
:trust_id)
|
4439
|
+
SENSITIVE = []
|
4291
4440
|
include Aws::Structure
|
4292
4441
|
end
|
4293
4442
|
|
@@ -4301,6 +4450,7 @@ module Aws::DirectoryService
|
|
4301
4450
|
#
|
4302
4451
|
class VerifyTrustResult < Struct.new(
|
4303
4452
|
:trust_id)
|
4453
|
+
SENSITIVE = []
|
4304
4454
|
include Aws::Structure
|
4305
4455
|
end
|
4306
4456
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-directoryservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.31.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-02 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,7 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
- !ruby/object:Gem::Version
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
|
-
|
83
|
+
rubyforge_project:
|
84
|
+
rubygems_version: 2.7.6.2
|
84
85
|
signing_key:
|
85
86
|
specification_version: 4
|
86
87
|
summary: AWS SDK for Ruby - Directory Service
|