aws-sdk-organizations 1.42.1 → 1.43.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-organizations.rb +3 -1
- data/lib/aws-sdk-organizations/client.rb +3 -1
- data/lib/aws-sdk-organizations/client_api.rb +5 -0
- data/lib/aws-sdk-organizations/errors.rb +2 -0
- data/lib/aws-sdk-organizations/resource.rb +2 -0
- data/lib/aws-sdk-organizations/types.rb +193 -11
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d55de0dc62249c471875ee0a37ac282aecc80f727cf0083d7ad05bd09b2a5c3d
|
|
4
|
+
data.tar.gz: 3978d2ce14f7bb273a802a52076c4f82b1c6214376955957bdf2fcd60126d280
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67c8f52615b63f8ffd7c5f1f63d3498c791980522f6988ef0d4490709aefb9470a60009e457b98a18ed5ce3f3c685733fd1af7ba995888e493c20cfa7b466fcb
|
|
7
|
+
data.tar.gz: b1bf914b8cafae4db07b0a4c6b9d39a5dbf37dc4f451e1e2b45e2ec8d1d83f43c5972725e2e6895b8213a9df3e453eed5a5f76533da9f97ee013f6317a664c3f
|
|
@@ -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-organizations/customizations'
|
|
|
45
47
|
# @service
|
|
46
48
|
module Aws::Organizations
|
|
47
49
|
|
|
48
|
-
GEM_VERSION = '1.
|
|
50
|
+
GEM_VERSION = '1.43.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:
|
|
@@ -5072,7 +5074,7 @@ module Aws::Organizations
|
|
|
5072
5074
|
params: params,
|
|
5073
5075
|
config: config)
|
|
5074
5076
|
context[:gem_name] = 'aws-sdk-organizations'
|
|
5075
|
-
context[:gem_version] = '1.
|
|
5077
|
+
context[:gem_version] = '1.43.0'
|
|
5076
5078
|
Seahorse::Client::Request.new(handlers, context)
|
|
5077
5079
|
end
|
|
5078
5080
|
|
|
@@ -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:
|
|
@@ -1235,6 +1237,7 @@ module Aws::Organizations
|
|
|
1235
1237
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1236
1238
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1237
1239
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
1240
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedAPIEndpointException)
|
|
1238
1241
|
end)
|
|
1239
1242
|
|
|
1240
1243
|
api.add_operation(:disable_policy_type, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1269,6 +1272,7 @@ module Aws::Organizations
|
|
|
1269
1272
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1270
1273
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1271
1274
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
1275
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedAPIEndpointException)
|
|
1272
1276
|
end)
|
|
1273
1277
|
|
|
1274
1278
|
api.add_operation(:enable_all_features, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1353,6 +1357,7 @@ module Aws::Organizations
|
|
|
1353
1357
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
1354
1358
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
1355
1359
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
1360
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedAPIEndpointException)
|
|
1356
1361
|
o[:pager] = Aws::Pager.new(
|
|
1357
1362
|
limit_key: "max_results",
|
|
1358
1363
|
tokens: {
|
|
@@ -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:
|
|
@@ -19,6 +21,7 @@ module Aws::Organizations
|
|
|
19
21
|
#
|
|
20
22
|
class AWSOrganizationsNotInUseException < Struct.new(
|
|
21
23
|
:message)
|
|
24
|
+
SENSITIVE = []
|
|
22
25
|
include Aws::Structure
|
|
23
26
|
end
|
|
24
27
|
|
|
@@ -44,6 +47,7 @@ module Aws::Organizations
|
|
|
44
47
|
#
|
|
45
48
|
class AcceptHandshakeRequest < Struct.new(
|
|
46
49
|
:handshake_id)
|
|
50
|
+
SENSITIVE = []
|
|
47
51
|
include Aws::Structure
|
|
48
52
|
end
|
|
49
53
|
|
|
@@ -55,6 +59,7 @@ module Aws::Organizations
|
|
|
55
59
|
#
|
|
56
60
|
class AcceptHandshakeResponse < Struct.new(
|
|
57
61
|
:handshake)
|
|
62
|
+
SENSITIVE = []
|
|
58
63
|
include Aws::Structure
|
|
59
64
|
end
|
|
60
65
|
|
|
@@ -74,6 +79,7 @@ module Aws::Organizations
|
|
|
74
79
|
#
|
|
75
80
|
class AccessDeniedException < Struct.new(
|
|
76
81
|
:message)
|
|
82
|
+
SENSITIVE = []
|
|
77
83
|
include Aws::Structure
|
|
78
84
|
end
|
|
79
85
|
|
|
@@ -93,6 +99,7 @@ module Aws::Organizations
|
|
|
93
99
|
class AccessDeniedForDependencyException < Struct.new(
|
|
94
100
|
:message,
|
|
95
101
|
:reason)
|
|
102
|
+
SENSITIVE = []
|
|
96
103
|
include Aws::Structure
|
|
97
104
|
end
|
|
98
105
|
|
|
@@ -166,6 +173,7 @@ module Aws::Organizations
|
|
|
166
173
|
:status,
|
|
167
174
|
:joined_method,
|
|
168
175
|
:joined_timestamp)
|
|
176
|
+
SENSITIVE = [:email, :name]
|
|
169
177
|
include Aws::Structure
|
|
170
178
|
end
|
|
171
179
|
|
|
@@ -179,6 +187,7 @@ module Aws::Organizations
|
|
|
179
187
|
#
|
|
180
188
|
class AccountAlreadyRegisteredException < Struct.new(
|
|
181
189
|
:message)
|
|
190
|
+
SENSITIVE = []
|
|
182
191
|
include Aws::Structure
|
|
183
192
|
end
|
|
184
193
|
|
|
@@ -193,6 +202,7 @@ module Aws::Organizations
|
|
|
193
202
|
#
|
|
194
203
|
class AccountNotFoundException < Struct.new(
|
|
195
204
|
:message)
|
|
205
|
+
SENSITIVE = []
|
|
196
206
|
include Aws::Structure
|
|
197
207
|
end
|
|
198
208
|
|
|
@@ -206,6 +216,7 @@ module Aws::Organizations
|
|
|
206
216
|
#
|
|
207
217
|
class AccountNotRegisteredException < Struct.new(
|
|
208
218
|
:message)
|
|
219
|
+
SENSITIVE = []
|
|
209
220
|
include Aws::Structure
|
|
210
221
|
end
|
|
211
222
|
|
|
@@ -225,6 +236,7 @@ module Aws::Organizations
|
|
|
225
236
|
#
|
|
226
237
|
class AccountOwnerNotVerifiedException < Struct.new(
|
|
227
238
|
:message)
|
|
239
|
+
SENSITIVE = []
|
|
228
240
|
include Aws::Structure
|
|
229
241
|
end
|
|
230
242
|
|
|
@@ -238,6 +250,7 @@ module Aws::Organizations
|
|
|
238
250
|
#
|
|
239
251
|
class AlreadyInOrganizationException < Struct.new(
|
|
240
252
|
:message)
|
|
253
|
+
SENSITIVE = []
|
|
241
254
|
include Aws::Structure
|
|
242
255
|
end
|
|
243
256
|
|
|
@@ -293,6 +306,7 @@ module Aws::Organizations
|
|
|
293
306
|
class AttachPolicyRequest < Struct.new(
|
|
294
307
|
:policy_id,
|
|
295
308
|
:target_id)
|
|
309
|
+
SENSITIVE = []
|
|
296
310
|
include Aws::Structure
|
|
297
311
|
end
|
|
298
312
|
|
|
@@ -319,6 +333,7 @@ module Aws::Organizations
|
|
|
319
333
|
#
|
|
320
334
|
class CancelHandshakeRequest < Struct.new(
|
|
321
335
|
:handshake_id)
|
|
336
|
+
SENSITIVE = []
|
|
322
337
|
include Aws::Structure
|
|
323
338
|
end
|
|
324
339
|
|
|
@@ -331,6 +346,7 @@ module Aws::Organizations
|
|
|
331
346
|
#
|
|
332
347
|
class CancelHandshakeResponse < Struct.new(
|
|
333
348
|
:handshake)
|
|
349
|
+
SENSITIVE = []
|
|
334
350
|
include Aws::Structure
|
|
335
351
|
end
|
|
336
352
|
|
|
@@ -364,6 +380,7 @@ module Aws::Organizations
|
|
|
364
380
|
class Child < Struct.new(
|
|
365
381
|
:id,
|
|
366
382
|
:type)
|
|
383
|
+
SENSITIVE = []
|
|
367
384
|
include Aws::Structure
|
|
368
385
|
end
|
|
369
386
|
|
|
@@ -377,6 +394,7 @@ module Aws::Organizations
|
|
|
377
394
|
#
|
|
378
395
|
class ChildNotFoundException < Struct.new(
|
|
379
396
|
:message)
|
|
397
|
+
SENSITIVE = []
|
|
380
398
|
include Aws::Structure
|
|
381
399
|
end
|
|
382
400
|
|
|
@@ -390,6 +408,7 @@ module Aws::Organizations
|
|
|
390
408
|
#
|
|
391
409
|
class ConcurrentModificationException < Struct.new(
|
|
392
410
|
:message)
|
|
411
|
+
SENSITIVE = []
|
|
393
412
|
include Aws::Structure
|
|
394
413
|
end
|
|
395
414
|
|
|
@@ -403,6 +422,11 @@ module Aws::Organizations
|
|
|
403
422
|
# Some of the reasons in the following list might not be applicable to
|
|
404
423
|
# this specific API or operation:
|
|
405
424
|
#
|
|
425
|
+
# * ACCOUNT\_CANNOT\_LEAVE\_ORGANIZAION: You attempted to remove the
|
|
426
|
+
# master account from the organization. You can't remove the master
|
|
427
|
+
# account. Instead, after you remove all member accounts, delete the
|
|
428
|
+
# organization itself.
|
|
429
|
+
#
|
|
406
430
|
# * ACCOUNT\_CANNOT\_LEAVE\_WITHOUT\_EULA: You attempted to remove an
|
|
407
431
|
# account from the organization that doesn't yet have enough
|
|
408
432
|
# information to exist as a standalone account. This account requires
|
|
@@ -439,17 +463,32 @@ module Aws::Organizations
|
|
|
439
463
|
# after an hour it continues to fail with this error, contact [AWS
|
|
440
464
|
# Support][2].
|
|
441
465
|
#
|
|
442
|
-
# * CANNOT\_REGISTER\_MASTER\_AS\_DELEGATED\_ADMINISTRATOR: You
|
|
443
|
-
#
|
|
444
|
-
#
|
|
445
|
-
#
|
|
446
|
-
# this operation, you must first deregister this account as a
|
|
466
|
+
# * CANNOT\_REGISTER\_MASTER\_AS\_DELEGATED\_ADMINISTRATOR: You
|
|
467
|
+
# attempted to register the master account of the organization as a
|
|
468
|
+
# delegated administrator for an AWS service integrated with
|
|
469
|
+
# Organizations. You can designate only a member account as a
|
|
447
470
|
# delegated administrator.
|
|
448
471
|
#
|
|
449
|
-
# *
|
|
450
|
-
#
|
|
472
|
+
# * CANNOT\_REMOVE\_DELEGATED\_ADMINISTRATOR\_FROM\_ORG: You attempted
|
|
473
|
+
# to remove an account that is registered as a delegated administrator
|
|
474
|
+
# for a service integrated with your organization. To complete this
|
|
475
|
+
# operation, you must first deregister this account as a delegated
|
|
476
|
+
# administrator.
|
|
477
|
+
#
|
|
478
|
+
# * CREATE\_ORGANIZATION\_IN\_BILLING\_MODE\_UNSUPPORTED\_REGION: To
|
|
479
|
+
# create an organization in the specified region, you must enable all
|
|
480
|
+
# features mode.
|
|
481
|
+
#
|
|
482
|
+
# * DELEGATED\_ADMINISTRATOR\_EXISTS\_FOR\_THIS\_SERVICE: You attempted
|
|
483
|
+
# to register an AWS account as a delegated administrator for an AWS
|
|
484
|
+
# service that already has a delegated administrator. To complete this
|
|
485
|
+
# operation, you must first deregister any existing delegated
|
|
451
486
|
# administrators for this service.
|
|
452
487
|
#
|
|
488
|
+
# * EMAIL\_VERIFICATION\_CODE\_EXPIRED: The email verification code is
|
|
489
|
+
# only valid for a limited period of time. You must resubmit the
|
|
490
|
+
# request and generate a new verfication code.
|
|
491
|
+
#
|
|
453
492
|
# * HANDSHAKE\_RATE\_LIMIT\_EXCEEDED: You attempted to exceed the number
|
|
454
493
|
# of handshakes that you can send in one day.
|
|
455
494
|
#
|
|
@@ -461,6 +500,11 @@ module Aws::Organizations
|
|
|
461
500
|
# accounts in an organization must be associated with the same
|
|
462
501
|
# marketplace.
|
|
463
502
|
#
|
|
503
|
+
# * MASTER\_ACCOUNT\_MISSING\_BUSINESS\_LICENSE: Applies only to the AWS
|
|
504
|
+
# Regions in China. To create an organization, the master must have an
|
|
505
|
+
# valid business license. For more information, contact customer
|
|
506
|
+
# support.
|
|
507
|
+
#
|
|
464
508
|
# * MASTER\_ACCOUNT\_MISSING\_CONTACT\_INFO: To complete this operation,
|
|
465
509
|
# you must first provide contact a valid address and phone number for
|
|
466
510
|
# the master account. Then try the operation again.
|
|
@@ -500,20 +544,27 @@ module Aws::Organizations
|
|
|
500
544
|
# fewer than the minimum number of policies of a certain type
|
|
501
545
|
# required.
|
|
502
546
|
#
|
|
503
|
-
# * OU\_DEPTH\_LIMIT\_EXCEEDED: You attempted to create an OU tree that
|
|
504
|
-
# is too many levels deep.
|
|
505
|
-
#
|
|
506
547
|
# * ORGANIZATION\_NOT\_IN\_ALL\_FEATURES\_MODE: You attempted to perform
|
|
507
548
|
# an operation that requires the organization to be configured to
|
|
508
549
|
# support all features. An organization that supports only
|
|
509
550
|
# consolidated billing features can't perform this operation.
|
|
510
551
|
#
|
|
552
|
+
# * OU\_DEPTH\_LIMIT\_EXCEEDED: You attempted to create an OU tree that
|
|
553
|
+
# is too many levels deep.
|
|
554
|
+
#
|
|
511
555
|
# * OU\_NUMBER\_LIMIT\_EXCEEDED: You attempted to exceed the number of
|
|
512
556
|
# OUs that you can have in an organization.
|
|
513
557
|
#
|
|
514
|
-
# * POLICY\
|
|
558
|
+
# * POLICY\_CONTENT\_LIMIT\_EXCEEDED: You attempted to create a policy
|
|
559
|
+
# that is larger than the maximum size.
|
|
560
|
+
#
|
|
561
|
+
# * POLICY\_NUMBER\_LIMIT\_EXCEEDED: You attempted to exceed the number
|
|
515
562
|
# of policies that you can have in an organization.
|
|
516
563
|
#
|
|
564
|
+
# * TAG\_POLICY\_VIOLATION: You attempted to create or update a resource
|
|
565
|
+
# with tags that are not compliant with the tag policy requirements
|
|
566
|
+
# for this account.
|
|
567
|
+
#
|
|
517
568
|
#
|
|
518
569
|
#
|
|
519
570
|
# [1]: http://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_remove.html#leave-without-all-info
|
|
@@ -531,6 +582,7 @@ module Aws::Organizations
|
|
|
531
582
|
class ConstraintViolationException < Struct.new(
|
|
532
583
|
:message,
|
|
533
584
|
:reason)
|
|
585
|
+
SENSITIVE = []
|
|
534
586
|
include Aws::Structure
|
|
535
587
|
end
|
|
536
588
|
|
|
@@ -612,6 +664,7 @@ module Aws::Organizations
|
|
|
612
664
|
:account_name,
|
|
613
665
|
:role_name,
|
|
614
666
|
:iam_user_access_to_billing)
|
|
667
|
+
SENSITIVE = [:email, :account_name]
|
|
615
668
|
include Aws::Structure
|
|
616
669
|
end
|
|
617
670
|
|
|
@@ -635,6 +688,7 @@ module Aws::Organizations
|
|
|
635
688
|
#
|
|
636
689
|
class CreateAccountResponse < Struct.new(
|
|
637
690
|
:create_account_status)
|
|
691
|
+
SENSITIVE = []
|
|
638
692
|
include Aws::Structure
|
|
639
693
|
end
|
|
640
694
|
|
|
@@ -727,6 +781,7 @@ module Aws::Organizations
|
|
|
727
781
|
:account_id,
|
|
728
782
|
:gov_cloud_account_id,
|
|
729
783
|
:failure_reason)
|
|
784
|
+
SENSITIVE = [:account_name]
|
|
730
785
|
include Aws::Structure
|
|
731
786
|
end
|
|
732
787
|
|
|
@@ -740,6 +795,7 @@ module Aws::Organizations
|
|
|
740
795
|
#
|
|
741
796
|
class CreateAccountStatusNotFoundException < Struct.new(
|
|
742
797
|
:message)
|
|
798
|
+
SENSITIVE = []
|
|
743
799
|
include Aws::Structure
|
|
744
800
|
end
|
|
745
801
|
|
|
@@ -824,6 +880,7 @@ module Aws::Organizations
|
|
|
824
880
|
:account_name,
|
|
825
881
|
:role_name,
|
|
826
882
|
:iam_user_access_to_billing)
|
|
883
|
+
SENSITIVE = [:email, :account_name]
|
|
827
884
|
include Aws::Structure
|
|
828
885
|
end
|
|
829
886
|
|
|
@@ -837,6 +894,7 @@ module Aws::Organizations
|
|
|
837
894
|
#
|
|
838
895
|
class CreateGovCloudAccountResponse < Struct.new(
|
|
839
896
|
:create_account_status)
|
|
897
|
+
SENSITIVE = []
|
|
840
898
|
include Aws::Structure
|
|
841
899
|
end
|
|
842
900
|
|
|
@@ -875,6 +933,7 @@ module Aws::Organizations
|
|
|
875
933
|
#
|
|
876
934
|
class CreateOrganizationRequest < Struct.new(
|
|
877
935
|
:feature_set)
|
|
936
|
+
SENSITIVE = []
|
|
878
937
|
include Aws::Structure
|
|
879
938
|
end
|
|
880
939
|
|
|
@@ -887,6 +946,7 @@ module Aws::Organizations
|
|
|
887
946
|
#
|
|
888
947
|
class CreateOrganizationResponse < Struct.new(
|
|
889
948
|
:organization)
|
|
949
|
+
SENSITIVE = []
|
|
890
950
|
include Aws::Structure
|
|
891
951
|
end
|
|
892
952
|
|
|
@@ -928,6 +988,7 @@ module Aws::Organizations
|
|
|
928
988
|
class CreateOrganizationalUnitRequest < Struct.new(
|
|
929
989
|
:parent_id,
|
|
930
990
|
:name)
|
|
991
|
+
SENSITIVE = []
|
|
931
992
|
include Aws::Structure
|
|
932
993
|
end
|
|
933
994
|
|
|
@@ -939,6 +1000,7 @@ module Aws::Organizations
|
|
|
939
1000
|
#
|
|
940
1001
|
class CreateOrganizationalUnitResponse < Struct.new(
|
|
941
1002
|
:organizational_unit)
|
|
1003
|
+
SENSITIVE = []
|
|
942
1004
|
include Aws::Structure
|
|
943
1005
|
end
|
|
944
1006
|
|
|
@@ -997,6 +1059,7 @@ module Aws::Organizations
|
|
|
997
1059
|
:description,
|
|
998
1060
|
:name,
|
|
999
1061
|
:type)
|
|
1062
|
+
SENSITIVE = []
|
|
1000
1063
|
include Aws::Structure
|
|
1001
1064
|
end
|
|
1002
1065
|
|
|
@@ -1008,6 +1071,7 @@ module Aws::Organizations
|
|
|
1008
1071
|
#
|
|
1009
1072
|
class CreatePolicyResponse < Struct.new(
|
|
1010
1073
|
:policy)
|
|
1074
|
+
SENSITIVE = []
|
|
1011
1075
|
include Aws::Structure
|
|
1012
1076
|
end
|
|
1013
1077
|
|
|
@@ -1035,6 +1099,7 @@ module Aws::Organizations
|
|
|
1035
1099
|
#
|
|
1036
1100
|
class DeclineHandshakeRequest < Struct.new(
|
|
1037
1101
|
:handshake_id)
|
|
1102
|
+
SENSITIVE = []
|
|
1038
1103
|
include Aws::Structure
|
|
1039
1104
|
end
|
|
1040
1105
|
|
|
@@ -1047,6 +1112,7 @@ module Aws::Organizations
|
|
|
1047
1112
|
#
|
|
1048
1113
|
class DeclineHandshakeResponse < Struct.new(
|
|
1049
1114
|
:handshake)
|
|
1115
|
+
SENSITIVE = []
|
|
1050
1116
|
include Aws::Structure
|
|
1051
1117
|
end
|
|
1052
1118
|
|
|
@@ -1101,6 +1167,7 @@ module Aws::Organizations
|
|
|
1101
1167
|
:joined_method,
|
|
1102
1168
|
:joined_timestamp,
|
|
1103
1169
|
:delegation_enabled_date)
|
|
1170
|
+
SENSITIVE = [:email, :name]
|
|
1104
1171
|
include Aws::Structure
|
|
1105
1172
|
end
|
|
1106
1173
|
|
|
@@ -1123,6 +1190,7 @@ module Aws::Organizations
|
|
|
1123
1190
|
class DelegatedService < Struct.new(
|
|
1124
1191
|
:service_principal,
|
|
1125
1192
|
:delegation_enabled_date)
|
|
1193
|
+
SENSITIVE = []
|
|
1126
1194
|
include Aws::Structure
|
|
1127
1195
|
end
|
|
1128
1196
|
|
|
@@ -1153,6 +1221,7 @@ module Aws::Organizations
|
|
|
1153
1221
|
#
|
|
1154
1222
|
class DeleteOrganizationalUnitRequest < Struct.new(
|
|
1155
1223
|
:organizational_unit_id)
|
|
1224
|
+
SENSITIVE = []
|
|
1156
1225
|
include Aws::Structure
|
|
1157
1226
|
end
|
|
1158
1227
|
|
|
@@ -1181,6 +1250,7 @@ module Aws::Organizations
|
|
|
1181
1250
|
#
|
|
1182
1251
|
class DeletePolicyRequest < Struct.new(
|
|
1183
1252
|
:policy_id)
|
|
1253
|
+
SENSITIVE = []
|
|
1184
1254
|
include Aws::Structure
|
|
1185
1255
|
end
|
|
1186
1256
|
|
|
@@ -1213,6 +1283,7 @@ module Aws::Organizations
|
|
|
1213
1283
|
class DeregisterDelegatedAdministratorRequest < Struct.new(
|
|
1214
1284
|
:account_id,
|
|
1215
1285
|
:service_principal)
|
|
1286
|
+
SENSITIVE = []
|
|
1216
1287
|
include Aws::Structure
|
|
1217
1288
|
end
|
|
1218
1289
|
|
|
@@ -1240,6 +1311,7 @@ module Aws::Organizations
|
|
|
1240
1311
|
#
|
|
1241
1312
|
class DescribeAccountRequest < Struct.new(
|
|
1242
1313
|
:account_id)
|
|
1314
|
+
SENSITIVE = []
|
|
1243
1315
|
include Aws::Structure
|
|
1244
1316
|
end
|
|
1245
1317
|
|
|
@@ -1251,6 +1323,7 @@ module Aws::Organizations
|
|
|
1251
1323
|
#
|
|
1252
1324
|
class DescribeAccountResponse < Struct.new(
|
|
1253
1325
|
:account)
|
|
1326
|
+
SENSITIVE = []
|
|
1254
1327
|
include Aws::Structure
|
|
1255
1328
|
end
|
|
1256
1329
|
|
|
@@ -1279,6 +1352,7 @@ module Aws::Organizations
|
|
|
1279
1352
|
#
|
|
1280
1353
|
class DescribeCreateAccountStatusRequest < Struct.new(
|
|
1281
1354
|
:create_account_request_id)
|
|
1355
|
+
SENSITIVE = []
|
|
1282
1356
|
include Aws::Structure
|
|
1283
1357
|
end
|
|
1284
1358
|
|
|
@@ -1291,6 +1365,7 @@ module Aws::Organizations
|
|
|
1291
1365
|
#
|
|
1292
1366
|
class DescribeCreateAccountStatusResponse < Struct.new(
|
|
1293
1367
|
:create_account_status)
|
|
1368
|
+
SENSITIVE = []
|
|
1294
1369
|
include Aws::Structure
|
|
1295
1370
|
end
|
|
1296
1371
|
|
|
@@ -1317,6 +1392,7 @@ module Aws::Organizations
|
|
|
1317
1392
|
class DescribeEffectivePolicyRequest < Struct.new(
|
|
1318
1393
|
:policy_type,
|
|
1319
1394
|
:target_id)
|
|
1395
|
+
SENSITIVE = []
|
|
1320
1396
|
include Aws::Structure
|
|
1321
1397
|
end
|
|
1322
1398
|
|
|
@@ -1328,6 +1404,7 @@ module Aws::Organizations
|
|
|
1328
1404
|
#
|
|
1329
1405
|
class DescribeEffectivePolicyResponse < Struct.new(
|
|
1330
1406
|
:effective_policy)
|
|
1407
|
+
SENSITIVE = []
|
|
1331
1408
|
include Aws::Structure
|
|
1332
1409
|
end
|
|
1333
1410
|
|
|
@@ -1356,6 +1433,7 @@ module Aws::Organizations
|
|
|
1356
1433
|
#
|
|
1357
1434
|
class DescribeHandshakeRequest < Struct.new(
|
|
1358
1435
|
:handshake_id)
|
|
1436
|
+
SENSITIVE = []
|
|
1359
1437
|
include Aws::Structure
|
|
1360
1438
|
end
|
|
1361
1439
|
|
|
@@ -1367,6 +1445,7 @@ module Aws::Organizations
|
|
|
1367
1445
|
#
|
|
1368
1446
|
class DescribeHandshakeResponse < Struct.new(
|
|
1369
1447
|
:handshake)
|
|
1448
|
+
SENSITIVE = []
|
|
1370
1449
|
include Aws::Structure
|
|
1371
1450
|
end
|
|
1372
1451
|
|
|
@@ -1378,6 +1457,7 @@ module Aws::Organizations
|
|
|
1378
1457
|
#
|
|
1379
1458
|
class DescribeOrganizationResponse < Struct.new(
|
|
1380
1459
|
:organization)
|
|
1460
|
+
SENSITIVE = []
|
|
1381
1461
|
include Aws::Structure
|
|
1382
1462
|
end
|
|
1383
1463
|
|
|
@@ -1408,6 +1488,7 @@ module Aws::Organizations
|
|
|
1408
1488
|
#
|
|
1409
1489
|
class DescribeOrganizationalUnitRequest < Struct.new(
|
|
1410
1490
|
:organizational_unit_id)
|
|
1491
|
+
SENSITIVE = []
|
|
1411
1492
|
include Aws::Structure
|
|
1412
1493
|
end
|
|
1413
1494
|
|
|
@@ -1419,6 +1500,7 @@ module Aws::Organizations
|
|
|
1419
1500
|
#
|
|
1420
1501
|
class DescribeOrganizationalUnitResponse < Struct.new(
|
|
1421
1502
|
:organizational_unit)
|
|
1503
|
+
SENSITIVE = []
|
|
1422
1504
|
include Aws::Structure
|
|
1423
1505
|
end
|
|
1424
1506
|
|
|
@@ -1447,6 +1529,7 @@ module Aws::Organizations
|
|
|
1447
1529
|
#
|
|
1448
1530
|
class DescribePolicyRequest < Struct.new(
|
|
1449
1531
|
:policy_id)
|
|
1532
|
+
SENSITIVE = []
|
|
1450
1533
|
include Aws::Structure
|
|
1451
1534
|
end
|
|
1452
1535
|
|
|
@@ -1458,6 +1541,7 @@ module Aws::Organizations
|
|
|
1458
1541
|
#
|
|
1459
1542
|
class DescribePolicyResponse < Struct.new(
|
|
1460
1543
|
:policy)
|
|
1544
|
+
SENSITIVE = []
|
|
1461
1545
|
include Aws::Structure
|
|
1462
1546
|
end
|
|
1463
1547
|
|
|
@@ -1471,6 +1555,7 @@ module Aws::Organizations
|
|
|
1471
1555
|
#
|
|
1472
1556
|
class DestinationParentNotFoundException < Struct.new(
|
|
1473
1557
|
:message)
|
|
1558
|
+
SENSITIVE = []
|
|
1474
1559
|
include Aws::Structure
|
|
1475
1560
|
end
|
|
1476
1561
|
|
|
@@ -1525,6 +1610,7 @@ module Aws::Organizations
|
|
|
1525
1610
|
class DetachPolicyRequest < Struct.new(
|
|
1526
1611
|
:policy_id,
|
|
1527
1612
|
:target_id)
|
|
1613
|
+
SENSITIVE = []
|
|
1528
1614
|
include Aws::Structure
|
|
1529
1615
|
end
|
|
1530
1616
|
|
|
@@ -1545,6 +1631,7 @@ module Aws::Organizations
|
|
|
1545
1631
|
#
|
|
1546
1632
|
class DisableAWSServiceAccessRequest < Struct.new(
|
|
1547
1633
|
:service_principal)
|
|
1634
|
+
SENSITIVE = []
|
|
1548
1635
|
include Aws::Structure
|
|
1549
1636
|
end
|
|
1550
1637
|
|
|
@@ -1577,6 +1664,7 @@ module Aws::Organizations
|
|
|
1577
1664
|
class DisablePolicyTypeRequest < Struct.new(
|
|
1578
1665
|
:root_id,
|
|
1579
1666
|
:policy_type)
|
|
1667
|
+
SENSITIVE = []
|
|
1580
1668
|
include Aws::Structure
|
|
1581
1669
|
end
|
|
1582
1670
|
|
|
@@ -1589,6 +1677,7 @@ module Aws::Organizations
|
|
|
1589
1677
|
#
|
|
1590
1678
|
class DisablePolicyTypeResponse < Struct.new(
|
|
1591
1679
|
:root)
|
|
1680
|
+
SENSITIVE = []
|
|
1592
1681
|
include Aws::Structure
|
|
1593
1682
|
end
|
|
1594
1683
|
|
|
@@ -1601,6 +1690,7 @@ module Aws::Organizations
|
|
|
1601
1690
|
#
|
|
1602
1691
|
class DuplicateAccountException < Struct.new(
|
|
1603
1692
|
:message)
|
|
1693
|
+
SENSITIVE = []
|
|
1604
1694
|
include Aws::Structure
|
|
1605
1695
|
end
|
|
1606
1696
|
|
|
@@ -1618,6 +1708,7 @@ module Aws::Organizations
|
|
|
1618
1708
|
#
|
|
1619
1709
|
class DuplicateHandshakeException < Struct.new(
|
|
1620
1710
|
:message)
|
|
1711
|
+
SENSITIVE = []
|
|
1621
1712
|
include Aws::Structure
|
|
1622
1713
|
end
|
|
1623
1714
|
|
|
@@ -1630,6 +1721,7 @@ module Aws::Organizations
|
|
|
1630
1721
|
#
|
|
1631
1722
|
class DuplicateOrganizationalUnitException < Struct.new(
|
|
1632
1723
|
:message)
|
|
1724
|
+
SENSITIVE = []
|
|
1633
1725
|
include Aws::Structure
|
|
1634
1726
|
end
|
|
1635
1727
|
|
|
@@ -1642,6 +1734,7 @@ module Aws::Organizations
|
|
|
1642
1734
|
#
|
|
1643
1735
|
class DuplicatePolicyAttachmentException < Struct.new(
|
|
1644
1736
|
:message)
|
|
1737
|
+
SENSITIVE = []
|
|
1645
1738
|
include Aws::Structure
|
|
1646
1739
|
end
|
|
1647
1740
|
|
|
@@ -1654,6 +1747,7 @@ module Aws::Organizations
|
|
|
1654
1747
|
#
|
|
1655
1748
|
class DuplicatePolicyException < Struct.new(
|
|
1656
1749
|
:message)
|
|
1750
|
+
SENSITIVE = []
|
|
1657
1751
|
include Aws::Structure
|
|
1658
1752
|
end
|
|
1659
1753
|
|
|
@@ -1684,6 +1778,7 @@ module Aws::Organizations
|
|
|
1684
1778
|
:last_updated_timestamp,
|
|
1685
1779
|
:target_id,
|
|
1686
1780
|
:policy_type)
|
|
1781
|
+
SENSITIVE = []
|
|
1687
1782
|
include Aws::Structure
|
|
1688
1783
|
end
|
|
1689
1784
|
|
|
@@ -1700,6 +1795,7 @@ module Aws::Organizations
|
|
|
1700
1795
|
#
|
|
1701
1796
|
class EffectivePolicyNotFoundException < Struct.new(
|
|
1702
1797
|
:message)
|
|
1798
|
+
SENSITIVE = []
|
|
1703
1799
|
include Aws::Structure
|
|
1704
1800
|
end
|
|
1705
1801
|
|
|
@@ -1720,6 +1816,7 @@ module Aws::Organizations
|
|
|
1720
1816
|
#
|
|
1721
1817
|
class EnableAWSServiceAccessRequest < Struct.new(
|
|
1722
1818
|
:service_principal)
|
|
1819
|
+
SENSITIVE = []
|
|
1723
1820
|
include Aws::Structure
|
|
1724
1821
|
end
|
|
1725
1822
|
|
|
@@ -1738,6 +1835,7 @@ module Aws::Organizations
|
|
|
1738
1835
|
#
|
|
1739
1836
|
class EnableAllFeaturesResponse < Struct.new(
|
|
1740
1837
|
:handshake)
|
|
1838
|
+
SENSITIVE = []
|
|
1741
1839
|
include Aws::Structure
|
|
1742
1840
|
end
|
|
1743
1841
|
|
|
@@ -1770,6 +1868,7 @@ module Aws::Organizations
|
|
|
1770
1868
|
class EnablePolicyTypeRequest < Struct.new(
|
|
1771
1869
|
:root_id,
|
|
1772
1870
|
:policy_type)
|
|
1871
|
+
SENSITIVE = []
|
|
1773
1872
|
include Aws::Structure
|
|
1774
1873
|
end
|
|
1775
1874
|
|
|
@@ -1782,6 +1881,7 @@ module Aws::Organizations
|
|
|
1782
1881
|
#
|
|
1783
1882
|
class EnablePolicyTypeResponse < Struct.new(
|
|
1784
1883
|
:root)
|
|
1884
|
+
SENSITIVE = []
|
|
1785
1885
|
include Aws::Structure
|
|
1786
1886
|
end
|
|
1787
1887
|
|
|
@@ -1804,6 +1904,7 @@ module Aws::Organizations
|
|
|
1804
1904
|
class EnabledServicePrincipal < Struct.new(
|
|
1805
1905
|
:service_principal,
|
|
1806
1906
|
:date_enabled)
|
|
1907
|
+
SENSITIVE = []
|
|
1807
1908
|
include Aws::Structure
|
|
1808
1909
|
end
|
|
1809
1910
|
|
|
@@ -1823,6 +1924,7 @@ module Aws::Organizations
|
|
|
1823
1924
|
#
|
|
1824
1925
|
class FinalizingOrganizationException < Struct.new(
|
|
1825
1926
|
:message)
|
|
1927
|
+
SENSITIVE = []
|
|
1826
1928
|
include Aws::Structure
|
|
1827
1929
|
end
|
|
1828
1930
|
|
|
@@ -1942,6 +2044,7 @@ module Aws::Organizations
|
|
|
1942
2044
|
:expiration_timestamp,
|
|
1943
2045
|
:action,
|
|
1944
2046
|
:resources)
|
|
2047
|
+
SENSITIVE = []
|
|
1945
2048
|
include Aws::Structure
|
|
1946
2049
|
end
|
|
1947
2050
|
|
|
@@ -1955,6 +2058,7 @@ module Aws::Organizations
|
|
|
1955
2058
|
#
|
|
1956
2059
|
class HandshakeAlreadyInStateException < Struct.new(
|
|
1957
2060
|
:message)
|
|
2061
|
+
SENSITIVE = []
|
|
1958
2062
|
include Aws::Structure
|
|
1959
2063
|
end
|
|
1960
2064
|
|
|
@@ -2017,6 +2121,7 @@ module Aws::Organizations
|
|
|
2017
2121
|
class HandshakeConstraintViolationException < Struct.new(
|
|
2018
2122
|
:message,
|
|
2019
2123
|
:reason)
|
|
2124
|
+
SENSITIVE = []
|
|
2020
2125
|
include Aws::Structure
|
|
2021
2126
|
end
|
|
2022
2127
|
|
|
@@ -2058,6 +2163,7 @@ module Aws::Organizations
|
|
|
2058
2163
|
class HandshakeFilter < Struct.new(
|
|
2059
2164
|
:action_type,
|
|
2060
2165
|
:parent_handshake_id)
|
|
2166
|
+
SENSITIVE = []
|
|
2061
2167
|
include Aws::Structure
|
|
2062
2168
|
end
|
|
2063
2169
|
|
|
@@ -2070,6 +2176,7 @@ module Aws::Organizations
|
|
|
2070
2176
|
#
|
|
2071
2177
|
class HandshakeNotFoundException < Struct.new(
|
|
2072
2178
|
:message)
|
|
2179
|
+
SENSITIVE = []
|
|
2073
2180
|
include Aws::Structure
|
|
2074
2181
|
end
|
|
2075
2182
|
|
|
@@ -2103,6 +2210,7 @@ module Aws::Organizations
|
|
|
2103
2210
|
class HandshakeParty < Struct.new(
|
|
2104
2211
|
:id,
|
|
2105
2212
|
:type)
|
|
2213
|
+
SENSITIVE = [:id]
|
|
2106
2214
|
include Aws::Structure
|
|
2107
2215
|
end
|
|
2108
2216
|
|
|
@@ -2146,6 +2254,7 @@ module Aws::Organizations
|
|
|
2146
2254
|
:value,
|
|
2147
2255
|
:type,
|
|
2148
2256
|
:resources)
|
|
2257
|
+
SENSITIVE = [:value]
|
|
2149
2258
|
include Aws::Structure
|
|
2150
2259
|
end
|
|
2151
2260
|
|
|
@@ -2160,6 +2269,7 @@ module Aws::Organizations
|
|
|
2160
2269
|
#
|
|
2161
2270
|
class InvalidHandshakeTransitionException < Struct.new(
|
|
2162
2271
|
:message)
|
|
2272
|
+
SENSITIVE = []
|
|
2163
2273
|
include Aws::Structure
|
|
2164
2274
|
end
|
|
2165
2275
|
|
|
@@ -2240,6 +2350,7 @@ module Aws::Organizations
|
|
|
2240
2350
|
class InvalidInputException < Struct.new(
|
|
2241
2351
|
:message,
|
|
2242
2352
|
:reason)
|
|
2353
|
+
SENSITIVE = []
|
|
2243
2354
|
include Aws::Structure
|
|
2244
2355
|
end
|
|
2245
2356
|
|
|
@@ -2283,6 +2394,7 @@ module Aws::Organizations
|
|
|
2283
2394
|
class InviteAccountToOrganizationRequest < Struct.new(
|
|
2284
2395
|
:target,
|
|
2285
2396
|
:notes)
|
|
2397
|
+
SENSITIVE = [:notes]
|
|
2286
2398
|
include Aws::Structure
|
|
2287
2399
|
end
|
|
2288
2400
|
|
|
@@ -2295,6 +2407,7 @@ module Aws::Organizations
|
|
|
2295
2407
|
#
|
|
2296
2408
|
class InviteAccountToOrganizationResponse < Struct.new(
|
|
2297
2409
|
:handshake)
|
|
2410
|
+
SENSITIVE = []
|
|
2298
2411
|
include Aws::Structure
|
|
2299
2412
|
end
|
|
2300
2413
|
|
|
@@ -2332,6 +2445,7 @@ module Aws::Organizations
|
|
|
2332
2445
|
class ListAWSServiceAccessForOrganizationRequest < Struct.new(
|
|
2333
2446
|
:next_token,
|
|
2334
2447
|
:max_results)
|
|
2448
|
+
SENSITIVE = []
|
|
2335
2449
|
include Aws::Structure
|
|
2336
2450
|
end
|
|
2337
2451
|
|
|
@@ -2355,6 +2469,7 @@ module Aws::Organizations
|
|
|
2355
2469
|
class ListAWSServiceAccessForOrganizationResponse < Struct.new(
|
|
2356
2470
|
:enabled_service_principals,
|
|
2357
2471
|
:next_token)
|
|
2472
|
+
SENSITIVE = []
|
|
2358
2473
|
include Aws::Structure
|
|
2359
2474
|
end
|
|
2360
2475
|
|
|
@@ -2399,6 +2514,7 @@ module Aws::Organizations
|
|
|
2399
2514
|
:parent_id,
|
|
2400
2515
|
:next_token,
|
|
2401
2516
|
:max_results)
|
|
2517
|
+
SENSITIVE = []
|
|
2402
2518
|
include Aws::Structure
|
|
2403
2519
|
end
|
|
2404
2520
|
|
|
@@ -2419,6 +2535,7 @@ module Aws::Organizations
|
|
|
2419
2535
|
class ListAccountsForParentResponse < Struct.new(
|
|
2420
2536
|
:accounts,
|
|
2421
2537
|
:next_token)
|
|
2538
|
+
SENSITIVE = []
|
|
2422
2539
|
include Aws::Structure
|
|
2423
2540
|
end
|
|
2424
2541
|
|
|
@@ -2456,6 +2573,7 @@ module Aws::Organizations
|
|
|
2456
2573
|
class ListAccountsRequest < Struct.new(
|
|
2457
2574
|
:next_token,
|
|
2458
2575
|
:max_results)
|
|
2576
|
+
SENSITIVE = []
|
|
2459
2577
|
include Aws::Structure
|
|
2460
2578
|
end
|
|
2461
2579
|
|
|
@@ -2476,6 +2594,7 @@ module Aws::Organizations
|
|
|
2476
2594
|
class ListAccountsResponse < Struct.new(
|
|
2477
2595
|
:accounts,
|
|
2478
2596
|
:next_token)
|
|
2597
|
+
SENSITIVE = []
|
|
2479
2598
|
include Aws::Structure
|
|
2480
2599
|
end
|
|
2481
2600
|
|
|
@@ -2542,6 +2661,7 @@ module Aws::Organizations
|
|
|
2542
2661
|
:child_type,
|
|
2543
2662
|
:next_token,
|
|
2544
2663
|
:max_results)
|
|
2664
|
+
SENSITIVE = []
|
|
2545
2665
|
include Aws::Structure
|
|
2546
2666
|
end
|
|
2547
2667
|
|
|
@@ -2562,6 +2682,7 @@ module Aws::Organizations
|
|
|
2562
2682
|
class ListChildrenResponse < Struct.new(
|
|
2563
2683
|
:children,
|
|
2564
2684
|
:next_token)
|
|
2685
|
+
SENSITIVE = []
|
|
2565
2686
|
include Aws::Structure
|
|
2566
2687
|
end
|
|
2567
2688
|
|
|
@@ -2607,6 +2728,7 @@ module Aws::Organizations
|
|
|
2607
2728
|
:states,
|
|
2608
2729
|
:next_token,
|
|
2609
2730
|
:max_results)
|
|
2731
|
+
SENSITIVE = []
|
|
2610
2732
|
include Aws::Structure
|
|
2611
2733
|
end
|
|
2612
2734
|
|
|
@@ -2629,6 +2751,7 @@ module Aws::Organizations
|
|
|
2629
2751
|
class ListCreateAccountStatusResponse < Struct.new(
|
|
2630
2752
|
:create_account_statuses,
|
|
2631
2753
|
:next_token)
|
|
2754
|
+
SENSITIVE = []
|
|
2632
2755
|
include Aws::Structure
|
|
2633
2756
|
end
|
|
2634
2757
|
|
|
@@ -2676,6 +2799,7 @@ module Aws::Organizations
|
|
|
2676
2799
|
:service_principal,
|
|
2677
2800
|
:next_token,
|
|
2678
2801
|
:max_results)
|
|
2802
|
+
SENSITIVE = []
|
|
2679
2803
|
include Aws::Structure
|
|
2680
2804
|
end
|
|
2681
2805
|
|
|
@@ -2696,6 +2820,7 @@ module Aws::Organizations
|
|
|
2696
2820
|
class ListDelegatedAdministratorsResponse < Struct.new(
|
|
2697
2821
|
:delegated_administrators,
|
|
2698
2822
|
:next_token)
|
|
2823
|
+
SENSITIVE = []
|
|
2699
2824
|
include Aws::Structure
|
|
2700
2825
|
end
|
|
2701
2826
|
|
|
@@ -2740,6 +2865,7 @@ module Aws::Organizations
|
|
|
2740
2865
|
:account_id,
|
|
2741
2866
|
:next_token,
|
|
2742
2867
|
:max_results)
|
|
2868
|
+
SENSITIVE = []
|
|
2743
2869
|
include Aws::Structure
|
|
2744
2870
|
end
|
|
2745
2871
|
|
|
@@ -2760,6 +2886,7 @@ module Aws::Organizations
|
|
|
2760
2886
|
class ListDelegatedServicesForAccountResponse < Struct.new(
|
|
2761
2887
|
:delegated_services,
|
|
2762
2888
|
:next_token)
|
|
2889
|
+
SENSITIVE = []
|
|
2763
2890
|
include Aws::Structure
|
|
2764
2891
|
end
|
|
2765
2892
|
|
|
@@ -2813,6 +2940,7 @@ module Aws::Organizations
|
|
|
2813
2940
|
:filter,
|
|
2814
2941
|
:next_token,
|
|
2815
2942
|
:max_results)
|
|
2943
|
+
SENSITIVE = []
|
|
2816
2944
|
include Aws::Structure
|
|
2817
2945
|
end
|
|
2818
2946
|
|
|
@@ -2834,6 +2962,7 @@ module Aws::Organizations
|
|
|
2834
2962
|
class ListHandshakesForAccountResponse < Struct.new(
|
|
2835
2963
|
:handshakes,
|
|
2836
2964
|
:next_token)
|
|
2965
|
+
SENSITIVE = []
|
|
2837
2966
|
include Aws::Structure
|
|
2838
2967
|
end
|
|
2839
2968
|
|
|
@@ -2887,6 +3016,7 @@ module Aws::Organizations
|
|
|
2887
3016
|
:filter,
|
|
2888
3017
|
:next_token,
|
|
2889
3018
|
:max_results)
|
|
3019
|
+
SENSITIVE = []
|
|
2890
3020
|
include Aws::Structure
|
|
2891
3021
|
end
|
|
2892
3022
|
|
|
@@ -2908,6 +3038,7 @@ module Aws::Organizations
|
|
|
2908
3038
|
class ListHandshakesForOrganizationResponse < Struct.new(
|
|
2909
3039
|
:handshakes,
|
|
2910
3040
|
:next_token)
|
|
3041
|
+
SENSITIVE = []
|
|
2911
3042
|
include Aws::Structure
|
|
2912
3043
|
end
|
|
2913
3044
|
|
|
@@ -2968,6 +3099,7 @@ module Aws::Organizations
|
|
|
2968
3099
|
:parent_id,
|
|
2969
3100
|
:next_token,
|
|
2970
3101
|
:max_results)
|
|
3102
|
+
SENSITIVE = []
|
|
2971
3103
|
include Aws::Structure
|
|
2972
3104
|
end
|
|
2973
3105
|
|
|
@@ -2988,6 +3120,7 @@ module Aws::Organizations
|
|
|
2988
3120
|
class ListOrganizationalUnitsForParentResponse < Struct.new(
|
|
2989
3121
|
:organizational_units,
|
|
2990
3122
|
:next_token)
|
|
3123
|
+
SENSITIVE = []
|
|
2991
3124
|
include Aws::Structure
|
|
2992
3125
|
end
|
|
2993
3126
|
|
|
@@ -3047,6 +3180,7 @@ module Aws::Organizations
|
|
|
3047
3180
|
:child_id,
|
|
3048
3181
|
:next_token,
|
|
3049
3182
|
:max_results)
|
|
3183
|
+
SENSITIVE = []
|
|
3050
3184
|
include Aws::Structure
|
|
3051
3185
|
end
|
|
3052
3186
|
|
|
@@ -3067,6 +3201,7 @@ module Aws::Organizations
|
|
|
3067
3201
|
class ListParentsResponse < Struct.new(
|
|
3068
3202
|
:parents,
|
|
3069
3203
|
:next_token)
|
|
3204
|
+
SENSITIVE = []
|
|
3070
3205
|
include Aws::Structure
|
|
3071
3206
|
end
|
|
3072
3207
|
|
|
@@ -3135,6 +3270,7 @@ module Aws::Organizations
|
|
|
3135
3270
|
:filter,
|
|
3136
3271
|
:next_token,
|
|
3137
3272
|
:max_results)
|
|
3273
|
+
SENSITIVE = []
|
|
3138
3274
|
include Aws::Structure
|
|
3139
3275
|
end
|
|
3140
3276
|
|
|
@@ -3155,6 +3291,7 @@ module Aws::Organizations
|
|
|
3155
3291
|
class ListPoliciesForTargetResponse < Struct.new(
|
|
3156
3292
|
:policies,
|
|
3157
3293
|
:next_token)
|
|
3294
|
+
SENSITIVE = []
|
|
3158
3295
|
include Aws::Structure
|
|
3159
3296
|
end
|
|
3160
3297
|
|
|
@@ -3199,6 +3336,7 @@ module Aws::Organizations
|
|
|
3199
3336
|
:filter,
|
|
3200
3337
|
:next_token,
|
|
3201
3338
|
:max_results)
|
|
3339
|
+
SENSITIVE = []
|
|
3202
3340
|
include Aws::Structure
|
|
3203
3341
|
end
|
|
3204
3342
|
|
|
@@ -3221,6 +3359,7 @@ module Aws::Organizations
|
|
|
3221
3359
|
class ListPoliciesResponse < Struct.new(
|
|
3222
3360
|
:policies,
|
|
3223
3361
|
:next_token)
|
|
3362
|
+
SENSITIVE = []
|
|
3224
3363
|
include Aws::Structure
|
|
3225
3364
|
end
|
|
3226
3365
|
|
|
@@ -3258,6 +3397,7 @@ module Aws::Organizations
|
|
|
3258
3397
|
class ListRootsRequest < Struct.new(
|
|
3259
3398
|
:next_token,
|
|
3260
3399
|
:max_results)
|
|
3400
|
+
SENSITIVE = []
|
|
3261
3401
|
include Aws::Structure
|
|
3262
3402
|
end
|
|
3263
3403
|
|
|
@@ -3278,6 +3418,7 @@ module Aws::Organizations
|
|
|
3278
3418
|
class ListRootsResponse < Struct.new(
|
|
3279
3419
|
:roots,
|
|
3280
3420
|
:next_token)
|
|
3421
|
+
SENSITIVE = []
|
|
3281
3422
|
include Aws::Structure
|
|
3282
3423
|
end
|
|
3283
3424
|
|
|
@@ -3306,6 +3447,7 @@ module Aws::Organizations
|
|
|
3306
3447
|
class ListTagsForResourceRequest < Struct.new(
|
|
3307
3448
|
:resource_id,
|
|
3308
3449
|
:next_token)
|
|
3450
|
+
SENSITIVE = []
|
|
3309
3451
|
include Aws::Structure
|
|
3310
3452
|
end
|
|
3311
3453
|
|
|
@@ -3326,6 +3468,7 @@ module Aws::Organizations
|
|
|
3326
3468
|
class ListTagsForResourceResponse < Struct.new(
|
|
3327
3469
|
:tags,
|
|
3328
3470
|
:next_token)
|
|
3471
|
+
SENSITIVE = []
|
|
3329
3472
|
include Aws::Structure
|
|
3330
3473
|
end
|
|
3331
3474
|
|
|
@@ -3378,6 +3521,7 @@ module Aws::Organizations
|
|
|
3378
3521
|
:policy_id,
|
|
3379
3522
|
:next_token,
|
|
3380
3523
|
:max_results)
|
|
3524
|
+
SENSITIVE = []
|
|
3381
3525
|
include Aws::Structure
|
|
3382
3526
|
end
|
|
3383
3527
|
|
|
@@ -3399,6 +3543,7 @@ module Aws::Organizations
|
|
|
3399
3543
|
class ListTargetsForPolicyResponse < Struct.new(
|
|
3400
3544
|
:targets,
|
|
3401
3545
|
:next_token)
|
|
3546
|
+
SENSITIVE = []
|
|
3402
3547
|
include Aws::Structure
|
|
3403
3548
|
end
|
|
3404
3549
|
|
|
@@ -3418,6 +3563,7 @@ module Aws::Organizations
|
|
|
3418
3563
|
#
|
|
3419
3564
|
class MalformedPolicyDocumentException < Struct.new(
|
|
3420
3565
|
:message)
|
|
3566
|
+
SENSITIVE = []
|
|
3421
3567
|
include Aws::Structure
|
|
3422
3568
|
end
|
|
3423
3569
|
|
|
@@ -3432,6 +3578,7 @@ module Aws::Organizations
|
|
|
3432
3578
|
#
|
|
3433
3579
|
class MasterCannotLeaveOrganizationException < Struct.new(
|
|
3434
3580
|
:message)
|
|
3581
|
+
SENSITIVE = []
|
|
3435
3582
|
include Aws::Structure
|
|
3436
3583
|
end
|
|
3437
3584
|
|
|
@@ -3503,6 +3650,7 @@ module Aws::Organizations
|
|
|
3503
3650
|
:account_id,
|
|
3504
3651
|
:source_parent_id,
|
|
3505
3652
|
:destination_parent_id)
|
|
3653
|
+
SENSITIVE = []
|
|
3506
3654
|
include Aws::Structure
|
|
3507
3655
|
end
|
|
3508
3656
|
|
|
@@ -3600,6 +3748,7 @@ module Aws::Organizations
|
|
|
3600
3748
|
:master_account_id,
|
|
3601
3749
|
:master_account_email,
|
|
3602
3750
|
:available_policy_types)
|
|
3751
|
+
SENSITIVE = [:master_account_email]
|
|
3603
3752
|
include Aws::Structure
|
|
3604
3753
|
end
|
|
3605
3754
|
|
|
@@ -3614,6 +3763,7 @@ module Aws::Organizations
|
|
|
3614
3763
|
#
|
|
3615
3764
|
class OrganizationNotEmptyException < Struct.new(
|
|
3616
3765
|
:message)
|
|
3766
|
+
SENSITIVE = []
|
|
3617
3767
|
include Aws::Structure
|
|
3618
3768
|
end
|
|
3619
3769
|
|
|
@@ -3665,6 +3815,7 @@ module Aws::Organizations
|
|
|
3665
3815
|
:id,
|
|
3666
3816
|
:arn,
|
|
3667
3817
|
:name)
|
|
3818
|
+
SENSITIVE = []
|
|
3668
3819
|
include Aws::Structure
|
|
3669
3820
|
end
|
|
3670
3821
|
|
|
@@ -3678,6 +3829,7 @@ module Aws::Organizations
|
|
|
3678
3829
|
#
|
|
3679
3830
|
class OrganizationalUnitNotEmptyException < Struct.new(
|
|
3680
3831
|
:message)
|
|
3832
|
+
SENSITIVE = []
|
|
3681
3833
|
include Aws::Structure
|
|
3682
3834
|
end
|
|
3683
3835
|
|
|
@@ -3691,6 +3843,7 @@ module Aws::Organizations
|
|
|
3691
3843
|
#
|
|
3692
3844
|
class OrganizationalUnitNotFoundException < Struct.new(
|
|
3693
3845
|
:message)
|
|
3846
|
+
SENSITIVE = []
|
|
3694
3847
|
include Aws::Structure
|
|
3695
3848
|
end
|
|
3696
3849
|
|
|
@@ -3726,6 +3879,7 @@ module Aws::Organizations
|
|
|
3726
3879
|
class Parent < Struct.new(
|
|
3727
3880
|
:id,
|
|
3728
3881
|
:type)
|
|
3882
|
+
SENSITIVE = []
|
|
3729
3883
|
include Aws::Structure
|
|
3730
3884
|
end
|
|
3731
3885
|
|
|
@@ -3738,6 +3892,7 @@ module Aws::Organizations
|
|
|
3738
3892
|
#
|
|
3739
3893
|
class ParentNotFoundException < Struct.new(
|
|
3740
3894
|
:message)
|
|
3895
|
+
SENSITIVE = []
|
|
3741
3896
|
include Aws::Structure
|
|
3742
3897
|
end
|
|
3743
3898
|
|
|
@@ -3758,6 +3913,7 @@ module Aws::Organizations
|
|
|
3758
3913
|
class Policy < Struct.new(
|
|
3759
3914
|
:policy_summary,
|
|
3760
3915
|
:content)
|
|
3916
|
+
SENSITIVE = []
|
|
3761
3917
|
include Aws::Structure
|
|
3762
3918
|
end
|
|
3763
3919
|
|
|
@@ -3771,6 +3927,7 @@ module Aws::Organizations
|
|
|
3771
3927
|
#
|
|
3772
3928
|
class PolicyChangesInProgressException < Struct.new(
|
|
3773
3929
|
:message)
|
|
3930
|
+
SENSITIVE = []
|
|
3774
3931
|
include Aws::Structure
|
|
3775
3932
|
end
|
|
3776
3933
|
|
|
@@ -3784,6 +3941,7 @@ module Aws::Organizations
|
|
|
3784
3941
|
#
|
|
3785
3942
|
class PolicyInUseException < Struct.new(
|
|
3786
3943
|
:message)
|
|
3944
|
+
SENSITIVE = []
|
|
3787
3945
|
include Aws::Structure
|
|
3788
3946
|
end
|
|
3789
3947
|
|
|
@@ -3797,6 +3955,7 @@ module Aws::Organizations
|
|
|
3797
3955
|
#
|
|
3798
3956
|
class PolicyNotAttachedException < Struct.new(
|
|
3799
3957
|
:message)
|
|
3958
|
+
SENSITIVE = []
|
|
3800
3959
|
include Aws::Structure
|
|
3801
3960
|
end
|
|
3802
3961
|
|
|
@@ -3809,6 +3968,7 @@ module Aws::Organizations
|
|
|
3809
3968
|
#
|
|
3810
3969
|
class PolicyNotFoundException < Struct.new(
|
|
3811
3970
|
:message)
|
|
3971
|
+
SENSITIVE = []
|
|
3812
3972
|
include Aws::Structure
|
|
3813
3973
|
end
|
|
3814
3974
|
|
|
@@ -3872,6 +4032,7 @@ module Aws::Organizations
|
|
|
3872
4032
|
:description,
|
|
3873
4033
|
:type,
|
|
3874
4034
|
:aws_managed)
|
|
4035
|
+
SENSITIVE = []
|
|
3875
4036
|
include Aws::Structure
|
|
3876
4037
|
end
|
|
3877
4038
|
|
|
@@ -3934,6 +4095,7 @@ module Aws::Organizations
|
|
|
3934
4095
|
:arn,
|
|
3935
4096
|
:name,
|
|
3936
4097
|
:type)
|
|
4098
|
+
SENSITIVE = []
|
|
3937
4099
|
include Aws::Structure
|
|
3938
4100
|
end
|
|
3939
4101
|
|
|
@@ -3946,6 +4108,7 @@ module Aws::Organizations
|
|
|
3946
4108
|
#
|
|
3947
4109
|
class PolicyTypeAlreadyEnabledException < Struct.new(
|
|
3948
4110
|
:message)
|
|
4111
|
+
SENSITIVE = []
|
|
3949
4112
|
include Aws::Structure
|
|
3950
4113
|
end
|
|
3951
4114
|
|
|
@@ -3966,6 +4129,7 @@ module Aws::Organizations
|
|
|
3966
4129
|
#
|
|
3967
4130
|
class PolicyTypeNotAvailableForOrganizationException < Struct.new(
|
|
3968
4131
|
:message)
|
|
4132
|
+
SENSITIVE = []
|
|
3969
4133
|
include Aws::Structure
|
|
3970
4134
|
end
|
|
3971
4135
|
|
|
@@ -3986,6 +4150,7 @@ module Aws::Organizations
|
|
|
3986
4150
|
#
|
|
3987
4151
|
class PolicyTypeNotEnabledException < Struct.new(
|
|
3988
4152
|
:message)
|
|
4153
|
+
SENSITIVE = []
|
|
3989
4154
|
include Aws::Structure
|
|
3990
4155
|
end
|
|
3991
4156
|
|
|
@@ -4008,6 +4173,7 @@ module Aws::Organizations
|
|
|
4008
4173
|
class PolicyTypeSummary < Struct.new(
|
|
4009
4174
|
:type,
|
|
4010
4175
|
:status)
|
|
4176
|
+
SENSITIVE = []
|
|
4011
4177
|
include Aws::Structure
|
|
4012
4178
|
end
|
|
4013
4179
|
|
|
@@ -4034,6 +4200,7 @@ module Aws::Organizations
|
|
|
4034
4200
|
class RegisterDelegatedAdministratorRequest < Struct.new(
|
|
4035
4201
|
:account_id,
|
|
4036
4202
|
:service_principal)
|
|
4203
|
+
SENSITIVE = []
|
|
4037
4204
|
include Aws::Structure
|
|
4038
4205
|
end
|
|
4039
4206
|
|
|
@@ -4060,6 +4227,7 @@ module Aws::Organizations
|
|
|
4060
4227
|
#
|
|
4061
4228
|
class RemoveAccountFromOrganizationRequest < Struct.new(
|
|
4062
4229
|
:account_id)
|
|
4230
|
+
SENSITIVE = []
|
|
4063
4231
|
include Aws::Structure
|
|
4064
4232
|
end
|
|
4065
4233
|
|
|
@@ -4123,6 +4291,7 @@ module Aws::Organizations
|
|
|
4123
4291
|
:arn,
|
|
4124
4292
|
:name,
|
|
4125
4293
|
:policy_types)
|
|
4294
|
+
SENSITIVE = []
|
|
4126
4295
|
include Aws::Structure
|
|
4127
4296
|
end
|
|
4128
4297
|
|
|
@@ -4135,6 +4304,7 @@ module Aws::Organizations
|
|
|
4135
4304
|
#
|
|
4136
4305
|
class RootNotFoundException < Struct.new(
|
|
4137
4306
|
:message)
|
|
4307
|
+
SENSITIVE = []
|
|
4138
4308
|
include Aws::Structure
|
|
4139
4309
|
end
|
|
4140
4310
|
|
|
@@ -4148,6 +4318,7 @@ module Aws::Organizations
|
|
|
4148
4318
|
#
|
|
4149
4319
|
class ServiceException < Struct.new(
|
|
4150
4320
|
:message)
|
|
4321
|
+
SENSITIVE = []
|
|
4151
4322
|
include Aws::Structure
|
|
4152
4323
|
end
|
|
4153
4324
|
|
|
@@ -4161,6 +4332,7 @@ module Aws::Organizations
|
|
|
4161
4332
|
#
|
|
4162
4333
|
class SourceParentNotFoundException < Struct.new(
|
|
4163
4334
|
:message)
|
|
4335
|
+
SENSITIVE = []
|
|
4164
4336
|
include Aws::Structure
|
|
4165
4337
|
end
|
|
4166
4338
|
|
|
@@ -4190,6 +4362,7 @@ module Aws::Organizations
|
|
|
4190
4362
|
class Tag < Struct.new(
|
|
4191
4363
|
:key,
|
|
4192
4364
|
:value)
|
|
4365
|
+
SENSITIVE = []
|
|
4193
4366
|
include Aws::Structure
|
|
4194
4367
|
end
|
|
4195
4368
|
|
|
@@ -4221,6 +4394,7 @@ module Aws::Organizations
|
|
|
4221
4394
|
class TagResourceRequest < Struct.new(
|
|
4222
4395
|
:resource_id,
|
|
4223
4396
|
:tags)
|
|
4397
|
+
SENSITIVE = []
|
|
4224
4398
|
include Aws::Structure
|
|
4225
4399
|
end
|
|
4226
4400
|
|
|
@@ -4234,6 +4408,7 @@ module Aws::Organizations
|
|
|
4234
4408
|
#
|
|
4235
4409
|
class TargetNotFoundException < Struct.new(
|
|
4236
4410
|
:message)
|
|
4411
|
+
SENSITIVE = []
|
|
4237
4412
|
include Aws::Structure
|
|
4238
4413
|
end
|
|
4239
4414
|
|
|
@@ -4259,6 +4434,7 @@ module Aws::Organizations
|
|
|
4259
4434
|
class TooManyRequestsException < Struct.new(
|
|
4260
4435
|
:type,
|
|
4261
4436
|
:message)
|
|
4437
|
+
SENSITIVE = []
|
|
4262
4438
|
include Aws::Structure
|
|
4263
4439
|
end
|
|
4264
4440
|
|
|
@@ -4271,6 +4447,7 @@ module Aws::Organizations
|
|
|
4271
4447
|
#
|
|
4272
4448
|
class UnsupportedAPIEndpointException < Struct.new(
|
|
4273
4449
|
:message)
|
|
4450
|
+
SENSITIVE = []
|
|
4274
4451
|
include Aws::Structure
|
|
4275
4452
|
end
|
|
4276
4453
|
|
|
@@ -4295,6 +4472,7 @@ module Aws::Organizations
|
|
|
4295
4472
|
class UntagResourceRequest < Struct.new(
|
|
4296
4473
|
:resource_id,
|
|
4297
4474
|
:tag_keys)
|
|
4475
|
+
SENSITIVE = []
|
|
4298
4476
|
include Aws::Structure
|
|
4299
4477
|
end
|
|
4300
4478
|
|
|
@@ -4337,6 +4515,7 @@ module Aws::Organizations
|
|
|
4337
4515
|
class UpdateOrganizationalUnitRequest < Struct.new(
|
|
4338
4516
|
:organizational_unit_id,
|
|
4339
4517
|
:name)
|
|
4518
|
+
SENSITIVE = []
|
|
4340
4519
|
include Aws::Structure
|
|
4341
4520
|
end
|
|
4342
4521
|
|
|
@@ -4349,6 +4528,7 @@ module Aws::Organizations
|
|
|
4349
4528
|
#
|
|
4350
4529
|
class UpdateOrganizationalUnitResponse < Struct.new(
|
|
4351
4530
|
:organizational_unit)
|
|
4531
|
+
SENSITIVE = []
|
|
4352
4532
|
include Aws::Structure
|
|
4353
4533
|
end
|
|
4354
4534
|
|
|
@@ -4407,6 +4587,7 @@ module Aws::Organizations
|
|
|
4407
4587
|
:name,
|
|
4408
4588
|
:description,
|
|
4409
4589
|
:content)
|
|
4590
|
+
SENSITIVE = []
|
|
4410
4591
|
include Aws::Structure
|
|
4411
4592
|
end
|
|
4412
4593
|
|
|
@@ -4419,6 +4600,7 @@ module Aws::Organizations
|
|
|
4419
4600
|
#
|
|
4420
4601
|
class UpdatePolicyResponse < Struct.new(
|
|
4421
4602
|
:policy)
|
|
4603
|
+
SENSITIVE = []
|
|
4422
4604
|
include Aws::Structure
|
|
4423
4605
|
end
|
|
4424
4606
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-organizations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.43.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-06-
|
|
11
|
+
date: 2020-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|