aws-sdk-datazone 1.18.0 → 1.20.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +705 -4
- data/lib/aws-sdk-datazone/client_api.rb +552 -0
- data/lib/aws-sdk-datazone/endpoints.rb +143 -0
- data/lib/aws-sdk-datazone/plugins/endpoints.rb +22 -0
- data/lib/aws-sdk-datazone/types.rb +1372 -39
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +281 -0
- data/sig/types.rbs +445 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -77,6 +77,43 @@ module Aws::DataZone
|
|
77
77
|
end
|
78
78
|
end
|
79
79
|
|
80
|
+
class AddEntityOwnerInput
|
81
|
+
attr_accessor client_token: ::String
|
82
|
+
attr_accessor domain_identifier: ::String
|
83
|
+
attr_accessor entity_identifier: ::String
|
84
|
+
attr_accessor entity_type: ("DOMAIN_UNIT")
|
85
|
+
attr_accessor owner: Types::OwnerProperties
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class AddEntityOwnerOutput < Aws::EmptyStructure
|
90
|
+
end
|
91
|
+
|
92
|
+
class AddPolicyGrantInput
|
93
|
+
attr_accessor client_token: ::String
|
94
|
+
attr_accessor detail: Types::PolicyGrantDetail
|
95
|
+
attr_accessor domain_identifier: ::String
|
96
|
+
attr_accessor entity_identifier: ::String
|
97
|
+
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE")
|
98
|
+
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT")
|
99
|
+
attr_accessor principal: Types::PolicyGrantPrincipal
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class AddPolicyGrantOutput < Aws::EmptyStructure
|
104
|
+
end
|
105
|
+
|
106
|
+
class AddToProjectMemberPoolPolicyGrantDetail
|
107
|
+
attr_accessor include_child_domain_units: bool
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class AllDomainUnitsGrantFilter < Aws::EmptyStructure
|
112
|
+
end
|
113
|
+
|
114
|
+
class AllUsersGrantFilter < Aws::EmptyStructure
|
115
|
+
end
|
116
|
+
|
80
117
|
class AssetFilterConfiguration
|
81
118
|
attr_accessor column_configuration: Types::ColumnFilterConfiguration
|
82
119
|
attr_accessor row_configuration: Types::RowFilterConfiguration
|
@@ -411,6 +448,11 @@ module Aws::DataZone
|
|
411
448
|
SENSITIVE: [:description]
|
412
449
|
end
|
413
450
|
|
451
|
+
class CreateAssetTypePolicyGrantDetail
|
452
|
+
attr_accessor include_child_domain_units: bool
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
414
456
|
class CreateDataProductInput
|
415
457
|
attr_accessor client_token: ::String
|
416
458
|
attr_accessor description: ::String
|
@@ -531,12 +573,40 @@ module Aws::DataZone
|
|
531
573
|
attr_accessor kms_key_identifier: ::String
|
532
574
|
attr_accessor name: ::String
|
533
575
|
attr_accessor portal_url: ::String
|
576
|
+
attr_accessor root_domain_unit_id: ::String
|
534
577
|
attr_accessor single_sign_on: Types::SingleSignOn
|
535
578
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
|
536
579
|
attr_accessor tags: ::Hash[::String, ::String]
|
537
580
|
SENSITIVE: []
|
538
581
|
end
|
539
582
|
|
583
|
+
class CreateDomainUnitInput
|
584
|
+
attr_accessor client_token: ::String
|
585
|
+
attr_accessor description: ::String
|
586
|
+
attr_accessor domain_identifier: ::String
|
587
|
+
attr_accessor name: ::String
|
588
|
+
attr_accessor parent_domain_unit_identifier: ::String
|
589
|
+
SENSITIVE: [:description, :name]
|
590
|
+
end
|
591
|
+
|
592
|
+
class CreateDomainUnitOutput
|
593
|
+
attr_accessor ancestor_domain_unit_ids: ::Array[::String]
|
594
|
+
attr_accessor created_at: ::Time
|
595
|
+
attr_accessor created_by: ::String
|
596
|
+
attr_accessor description: ::String
|
597
|
+
attr_accessor domain_id: ::String
|
598
|
+
attr_accessor id: ::String
|
599
|
+
attr_accessor name: ::String
|
600
|
+
attr_accessor owners: ::Array[Types::DomainUnitOwnerProperties]
|
601
|
+
attr_accessor parent_domain_unit_id: ::String
|
602
|
+
SENSITIVE: [:description, :name]
|
603
|
+
end
|
604
|
+
|
605
|
+
class CreateDomainUnitPolicyGrantDetail
|
606
|
+
attr_accessor include_child_domain_units: bool
|
607
|
+
SENSITIVE: []
|
608
|
+
end
|
609
|
+
|
540
610
|
class CreateEnvironmentActionInput
|
541
611
|
attr_accessor description: ::String
|
542
612
|
attr_accessor domain_identifier: ::String
|
@@ -623,6 +693,11 @@ module Aws::DataZone
|
|
623
693
|
SENSITIVE: [:description, :name]
|
624
694
|
end
|
625
695
|
|
696
|
+
class CreateEnvironmentProfilePolicyGrantDetail
|
697
|
+
attr_accessor domain_unit_id: ::String
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
626
701
|
class CreateFormTypeInput
|
627
702
|
attr_accessor description: ::String
|
628
703
|
attr_accessor domain_identifier: ::String
|
@@ -644,6 +719,11 @@ module Aws::DataZone
|
|
644
719
|
SENSITIVE: [:description, :name]
|
645
720
|
end
|
646
721
|
|
722
|
+
class CreateFormTypePolicyGrantDetail
|
723
|
+
attr_accessor include_child_domain_units: bool
|
724
|
+
SENSITIVE: []
|
725
|
+
end
|
726
|
+
|
647
727
|
class CreateGlossaryInput
|
648
728
|
attr_accessor client_token: ::String
|
649
729
|
attr_accessor description: ::String
|
@@ -664,6 +744,11 @@ module Aws::DataZone
|
|
664
744
|
SENSITIVE: [:description, :name]
|
665
745
|
end
|
666
746
|
|
747
|
+
class CreateGlossaryPolicyGrantDetail
|
748
|
+
attr_accessor include_child_domain_units: bool
|
749
|
+
SENSITIVE: []
|
750
|
+
end
|
751
|
+
|
667
752
|
class CreateGlossaryTermInput
|
668
753
|
attr_accessor client_token: ::String
|
669
754
|
attr_accessor domain_identifier: ::String
|
@@ -723,6 +808,7 @@ module Aws::DataZone
|
|
723
808
|
class CreateProjectInput
|
724
809
|
attr_accessor description: ::String
|
725
810
|
attr_accessor domain_identifier: ::String
|
811
|
+
attr_accessor domain_unit_id: ::String
|
726
812
|
attr_accessor glossary_terms: ::Array[::String]
|
727
813
|
attr_accessor name: ::String
|
728
814
|
SENSITIVE: [:description, :name]
|
@@ -744,6 +830,7 @@ module Aws::DataZone
|
|
744
830
|
attr_accessor created_by: ::String
|
745
831
|
attr_accessor description: ::String
|
746
832
|
attr_accessor domain_id: ::String
|
833
|
+
attr_accessor domain_unit_id: ::String
|
747
834
|
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
748
835
|
attr_accessor glossary_terms: ::Array[::String]
|
749
836
|
attr_accessor id: ::String
|
@@ -753,6 +840,11 @@ module Aws::DataZone
|
|
753
840
|
SENSITIVE: [:description, :name]
|
754
841
|
end
|
755
842
|
|
843
|
+
class CreateProjectPolicyGrantDetail
|
844
|
+
attr_accessor include_child_domain_units: bool
|
845
|
+
SENSITIVE: []
|
846
|
+
end
|
847
|
+
|
756
848
|
class CreateSubscriptionGrantInput
|
757
849
|
attr_accessor asset_target_names: ::Array[Types::AssetTargetNameMap]
|
758
850
|
attr_accessor client_token: ::String
|
@@ -1087,6 +1179,15 @@ module Aws::DataZone
|
|
1087
1179
|
SENSITIVE: []
|
1088
1180
|
end
|
1089
1181
|
|
1182
|
+
class DeleteDomainUnitInput
|
1183
|
+
attr_accessor domain_identifier: ::String
|
1184
|
+
attr_accessor identifier: ::String
|
1185
|
+
SENSITIVE: []
|
1186
|
+
end
|
1187
|
+
|
1188
|
+
class DeleteDomainUnitOutput < Aws::EmptyStructure
|
1189
|
+
end
|
1190
|
+
|
1090
1191
|
class DeleteEnvironmentActionInput
|
1091
1192
|
attr_accessor domain_identifier: ::String
|
1092
1193
|
attr_accessor environment_identifier: ::String
|
@@ -1262,6 +1363,60 @@ module Aws::DataZone
|
|
1262
1363
|
SENSITIVE: [:description, :name]
|
1263
1364
|
end
|
1264
1365
|
|
1366
|
+
class DomainUnitFilterForProject
|
1367
|
+
attr_accessor domain_unit: ::String
|
1368
|
+
attr_accessor include_child_domain_units: bool
|
1369
|
+
SENSITIVE: []
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class DomainUnitGrantFilter
|
1373
|
+
attr_accessor all_domain_units_grant_filter: Types::AllDomainUnitsGrantFilter
|
1374
|
+
attr_accessor unknown: untyped
|
1375
|
+
SENSITIVE: []
|
1376
|
+
|
1377
|
+
class AllDomainUnitsGrantFilter < DomainUnitGrantFilter
|
1378
|
+
end
|
1379
|
+
class Unknown < DomainUnitGrantFilter
|
1380
|
+
end
|
1381
|
+
end
|
1382
|
+
|
1383
|
+
class DomainUnitGroupProperties
|
1384
|
+
attr_accessor group_id: ::String
|
1385
|
+
SENSITIVE: []
|
1386
|
+
end
|
1387
|
+
|
1388
|
+
class DomainUnitOwnerProperties
|
1389
|
+
attr_accessor group: Types::DomainUnitGroupProperties
|
1390
|
+
attr_accessor user: Types::DomainUnitUserProperties
|
1391
|
+
attr_accessor unknown: untyped
|
1392
|
+
SENSITIVE: []
|
1393
|
+
|
1394
|
+
class Group < DomainUnitOwnerProperties
|
1395
|
+
end
|
1396
|
+
class User < DomainUnitOwnerProperties
|
1397
|
+
end
|
1398
|
+
class Unknown < DomainUnitOwnerProperties
|
1399
|
+
end
|
1400
|
+
end
|
1401
|
+
|
1402
|
+
class DomainUnitPolicyGrantPrincipal
|
1403
|
+
attr_accessor domain_unit_designation: ("OWNER")
|
1404
|
+
attr_accessor domain_unit_grant_filter: Types::DomainUnitGrantFilter
|
1405
|
+
attr_accessor domain_unit_identifier: ::String
|
1406
|
+
SENSITIVE: []
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
class DomainUnitSummary
|
1410
|
+
attr_accessor id: ::String
|
1411
|
+
attr_accessor name: ::String
|
1412
|
+
SENSITIVE: []
|
1413
|
+
end
|
1414
|
+
|
1415
|
+
class DomainUnitUserProperties
|
1416
|
+
attr_accessor user_id: ::String
|
1417
|
+
SENSITIVE: []
|
1418
|
+
end
|
1419
|
+
|
1265
1420
|
class EnvironmentActionSummary
|
1266
1421
|
attr_accessor description: ::String
|
1267
1422
|
attr_accessor domain_id: ::String
|
@@ -1595,12 +1750,33 @@ module Aws::DataZone
|
|
1595
1750
|
attr_accessor last_updated_at: ::Time
|
1596
1751
|
attr_accessor name: ::String
|
1597
1752
|
attr_accessor portal_url: ::String
|
1753
|
+
attr_accessor root_domain_unit_id: ::String
|
1598
1754
|
attr_accessor single_sign_on: Types::SingleSignOn
|
1599
1755
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELETING" | "DELETED" | "DELETION_FAILED")
|
1600
1756
|
attr_accessor tags: ::Hash[::String, ::String]
|
1601
1757
|
SENSITIVE: []
|
1602
1758
|
end
|
1603
1759
|
|
1760
|
+
class GetDomainUnitInput
|
1761
|
+
attr_accessor domain_identifier: ::String
|
1762
|
+
attr_accessor identifier: ::String
|
1763
|
+
SENSITIVE: []
|
1764
|
+
end
|
1765
|
+
|
1766
|
+
class GetDomainUnitOutput
|
1767
|
+
attr_accessor created_at: ::Time
|
1768
|
+
attr_accessor created_by: ::String
|
1769
|
+
attr_accessor description: ::String
|
1770
|
+
attr_accessor domain_id: ::String
|
1771
|
+
attr_accessor id: ::String
|
1772
|
+
attr_accessor last_updated_at: ::Time
|
1773
|
+
attr_accessor last_updated_by: ::String
|
1774
|
+
attr_accessor name: ::String
|
1775
|
+
attr_accessor owners: ::Array[Types::DomainUnitOwnerProperties]
|
1776
|
+
attr_accessor parent_domain_unit_id: ::String
|
1777
|
+
SENSITIVE: [:description, :name]
|
1778
|
+
end
|
1779
|
+
|
1604
1780
|
class GetEnvironmentActionInput
|
1605
1781
|
attr_accessor domain_identifier: ::String
|
1606
1782
|
attr_accessor environment_identifier: ::String
|
@@ -1891,6 +2067,7 @@ module Aws::DataZone
|
|
1891
2067
|
attr_accessor created_by: ::String
|
1892
2068
|
attr_accessor description: ::String
|
1893
2069
|
attr_accessor domain_id: ::String
|
2070
|
+
attr_accessor domain_unit_id: ::String
|
1894
2071
|
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
1895
2072
|
attr_accessor glossary_terms: ::Array[::String]
|
1896
2073
|
attr_accessor id: ::String
|
@@ -2114,6 +2291,17 @@ module Aws::DataZone
|
|
2114
2291
|
SENSITIVE: []
|
2115
2292
|
end
|
2116
2293
|
|
2294
|
+
class GroupPolicyGrantPrincipal
|
2295
|
+
attr_accessor group_identifier: ::String
|
2296
|
+
attr_accessor unknown: untyped
|
2297
|
+
SENSITIVE: []
|
2298
|
+
|
2299
|
+
class GroupIdentifier < GroupPolicyGrantPrincipal
|
2300
|
+
end
|
2301
|
+
class Unknown < GroupPolicyGrantPrincipal
|
2302
|
+
end
|
2303
|
+
end
|
2304
|
+
|
2117
2305
|
class GroupProfileSummary
|
2118
2306
|
attr_accessor domain_id: ::String
|
2119
2307
|
attr_accessor group_name: ::String
|
@@ -2304,6 +2492,20 @@ module Aws::DataZone
|
|
2304
2492
|
SENSITIVE: []
|
2305
2493
|
end
|
2306
2494
|
|
2495
|
+
class ListDomainUnitsForParentInput
|
2496
|
+
attr_accessor domain_identifier: ::String
|
2497
|
+
attr_accessor max_results: ::Integer
|
2498
|
+
attr_accessor next_token: ::String
|
2499
|
+
attr_accessor parent_domain_unit_identifier: ::String
|
2500
|
+
SENSITIVE: []
|
2501
|
+
end
|
2502
|
+
|
2503
|
+
class ListDomainUnitsForParentOutput
|
2504
|
+
attr_accessor items: ::Array[Types::DomainUnitSummary]
|
2505
|
+
attr_accessor next_token: ::String
|
2506
|
+
SENSITIVE: []
|
2507
|
+
end
|
2508
|
+
|
2307
2509
|
class ListDomainsInput
|
2308
2510
|
attr_accessor max_results: ::Integer
|
2309
2511
|
attr_accessor next_token: ::String
|
@@ -2317,6 +2519,21 @@ module Aws::DataZone
|
|
2317
2519
|
SENSITIVE: []
|
2318
2520
|
end
|
2319
2521
|
|
2522
|
+
class ListEntityOwnersInput
|
2523
|
+
attr_accessor domain_identifier: ::String
|
2524
|
+
attr_accessor entity_identifier: ::String
|
2525
|
+
attr_accessor entity_type: ("DOMAIN_UNIT")
|
2526
|
+
attr_accessor max_results: ::Integer
|
2527
|
+
attr_accessor next_token: ::String
|
2528
|
+
SENSITIVE: []
|
2529
|
+
end
|
2530
|
+
|
2531
|
+
class ListEntityOwnersOutput
|
2532
|
+
attr_accessor next_token: ::String
|
2533
|
+
attr_accessor owners: ::Array[Types::OwnerPropertiesOutput]
|
2534
|
+
SENSITIVE: []
|
2535
|
+
end
|
2536
|
+
|
2320
2537
|
class ListEnvironmentActionsInput
|
2321
2538
|
attr_accessor domain_identifier: ::String
|
2322
2539
|
attr_accessor environment_identifier: ::String
|
@@ -2449,6 +2666,22 @@ module Aws::DataZone
|
|
2449
2666
|
SENSITIVE: []
|
2450
2667
|
end
|
2451
2668
|
|
2669
|
+
class ListPolicyGrantsInput
|
2670
|
+
attr_accessor domain_identifier: ::String
|
2671
|
+
attr_accessor entity_identifier: ::String
|
2672
|
+
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE")
|
2673
|
+
attr_accessor max_results: ::Integer
|
2674
|
+
attr_accessor next_token: ::String
|
2675
|
+
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT")
|
2676
|
+
SENSITIVE: []
|
2677
|
+
end
|
2678
|
+
|
2679
|
+
class ListPolicyGrantsOutput
|
2680
|
+
attr_accessor grant_list: ::Array[Types::PolicyGrantMember]
|
2681
|
+
attr_accessor next_token: ::String
|
2682
|
+
SENSITIVE: []
|
2683
|
+
end
|
2684
|
+
|
2452
2685
|
class ListProjectMembershipsInput
|
2453
2686
|
attr_accessor domain_identifier: ::String
|
2454
2687
|
attr_accessor max_results: ::Integer
|
@@ -2722,6 +2955,133 @@ module Aws::DataZone
|
|
2722
2955
|
SENSITIVE: []
|
2723
2956
|
end
|
2724
2957
|
|
2958
|
+
class OverrideDomainUnitOwnersPolicyGrantDetail
|
2959
|
+
attr_accessor include_child_domain_units: bool
|
2960
|
+
SENSITIVE: []
|
2961
|
+
end
|
2962
|
+
|
2963
|
+
class OverrideProjectOwnersPolicyGrantDetail
|
2964
|
+
attr_accessor include_child_domain_units: bool
|
2965
|
+
SENSITIVE: []
|
2966
|
+
end
|
2967
|
+
|
2968
|
+
class OwnerGroupProperties
|
2969
|
+
attr_accessor group_identifier: ::String
|
2970
|
+
SENSITIVE: []
|
2971
|
+
end
|
2972
|
+
|
2973
|
+
class OwnerGroupPropertiesOutput
|
2974
|
+
attr_accessor group_id: ::String
|
2975
|
+
SENSITIVE: []
|
2976
|
+
end
|
2977
|
+
|
2978
|
+
class OwnerProperties
|
2979
|
+
attr_accessor group: Types::OwnerGroupProperties
|
2980
|
+
attr_accessor user: Types::OwnerUserProperties
|
2981
|
+
attr_accessor unknown: untyped
|
2982
|
+
SENSITIVE: []
|
2983
|
+
|
2984
|
+
class Group < OwnerProperties
|
2985
|
+
end
|
2986
|
+
class User < OwnerProperties
|
2987
|
+
end
|
2988
|
+
class Unknown < OwnerProperties
|
2989
|
+
end
|
2990
|
+
end
|
2991
|
+
|
2992
|
+
class OwnerPropertiesOutput
|
2993
|
+
attr_accessor group: Types::OwnerGroupPropertiesOutput
|
2994
|
+
attr_accessor user: Types::OwnerUserPropertiesOutput
|
2995
|
+
attr_accessor unknown: untyped
|
2996
|
+
SENSITIVE: []
|
2997
|
+
|
2998
|
+
class Group < OwnerPropertiesOutput
|
2999
|
+
end
|
3000
|
+
class User < OwnerPropertiesOutput
|
3001
|
+
end
|
3002
|
+
class Unknown < OwnerPropertiesOutput
|
3003
|
+
end
|
3004
|
+
end
|
3005
|
+
|
3006
|
+
class OwnerUserProperties
|
3007
|
+
attr_accessor user_identifier: ::String
|
3008
|
+
SENSITIVE: []
|
3009
|
+
end
|
3010
|
+
|
3011
|
+
class OwnerUserPropertiesOutput
|
3012
|
+
attr_accessor user_id: ::String
|
3013
|
+
SENSITIVE: []
|
3014
|
+
end
|
3015
|
+
|
3016
|
+
class PolicyGrantDetail
|
3017
|
+
attr_accessor add_to_project_member_pool: Types::AddToProjectMemberPoolPolicyGrantDetail
|
3018
|
+
attr_accessor create_asset_type: Types::CreateAssetTypePolicyGrantDetail
|
3019
|
+
attr_accessor create_domain_unit: Types::CreateDomainUnitPolicyGrantDetail
|
3020
|
+
attr_accessor create_environment: Types::Unit
|
3021
|
+
attr_accessor create_environment_profile: Types::CreateEnvironmentProfilePolicyGrantDetail
|
3022
|
+
attr_accessor create_form_type: Types::CreateFormTypePolicyGrantDetail
|
3023
|
+
attr_accessor create_glossary: Types::CreateGlossaryPolicyGrantDetail
|
3024
|
+
attr_accessor create_project: Types::CreateProjectPolicyGrantDetail
|
3025
|
+
attr_accessor delegate_create_environment_profile: Types::Unit
|
3026
|
+
attr_accessor override_domain_unit_owners: Types::OverrideDomainUnitOwnersPolicyGrantDetail
|
3027
|
+
attr_accessor override_project_owners: Types::OverrideProjectOwnersPolicyGrantDetail
|
3028
|
+
attr_accessor unknown: untyped
|
3029
|
+
SENSITIVE: []
|
3030
|
+
|
3031
|
+
class AddToProjectMemberPool < PolicyGrantDetail
|
3032
|
+
end
|
3033
|
+
class CreateAssetType < PolicyGrantDetail
|
3034
|
+
end
|
3035
|
+
class CreateDomainUnit < PolicyGrantDetail
|
3036
|
+
end
|
3037
|
+
class CreateEnvironment < PolicyGrantDetail
|
3038
|
+
end
|
3039
|
+
class CreateEnvironmentProfile < PolicyGrantDetail
|
3040
|
+
end
|
3041
|
+
class CreateFormType < PolicyGrantDetail
|
3042
|
+
end
|
3043
|
+
class CreateGlossary < PolicyGrantDetail
|
3044
|
+
end
|
3045
|
+
class CreateProject < PolicyGrantDetail
|
3046
|
+
end
|
3047
|
+
class DelegateCreateEnvironmentProfile < PolicyGrantDetail
|
3048
|
+
end
|
3049
|
+
class OverrideDomainUnitOwners < PolicyGrantDetail
|
3050
|
+
end
|
3051
|
+
class OverrideProjectOwners < PolicyGrantDetail
|
3052
|
+
end
|
3053
|
+
class Unknown < PolicyGrantDetail
|
3054
|
+
end
|
3055
|
+
end
|
3056
|
+
|
3057
|
+
class PolicyGrantMember
|
3058
|
+
attr_accessor created_at: ::Time
|
3059
|
+
attr_accessor created_by: ::String
|
3060
|
+
attr_accessor detail: Types::PolicyGrantDetail
|
3061
|
+
attr_accessor principal: Types::PolicyGrantPrincipal
|
3062
|
+
SENSITIVE: []
|
3063
|
+
end
|
3064
|
+
|
3065
|
+
class PolicyGrantPrincipal
|
3066
|
+
attr_accessor domain_unit: Types::DomainUnitPolicyGrantPrincipal
|
3067
|
+
attr_accessor group: Types::GroupPolicyGrantPrincipal
|
3068
|
+
attr_accessor project: Types::ProjectPolicyGrantPrincipal
|
3069
|
+
attr_accessor user: Types::UserPolicyGrantPrincipal
|
3070
|
+
attr_accessor unknown: untyped
|
3071
|
+
SENSITIVE: []
|
3072
|
+
|
3073
|
+
class DomainUnit < PolicyGrantPrincipal
|
3074
|
+
end
|
3075
|
+
class Group < PolicyGrantPrincipal
|
3076
|
+
end
|
3077
|
+
class Project < PolicyGrantPrincipal
|
3078
|
+
end
|
3079
|
+
class User < PolicyGrantPrincipal
|
3080
|
+
end
|
3081
|
+
class Unknown < PolicyGrantPrincipal
|
3082
|
+
end
|
3083
|
+
end
|
3084
|
+
|
2725
3085
|
class PostLineageEventInput
|
2726
3086
|
attr_accessor client_token: ::String
|
2727
3087
|
attr_accessor domain_identifier: ::String
|
@@ -2760,17 +3120,36 @@ module Aws::DataZone
|
|
2760
3120
|
SENSITIVE: []
|
2761
3121
|
end
|
2762
3122
|
|
3123
|
+
class ProjectGrantFilter
|
3124
|
+
attr_accessor domain_unit_filter: Types::DomainUnitFilterForProject
|
3125
|
+
attr_accessor unknown: untyped
|
3126
|
+
SENSITIVE: []
|
3127
|
+
|
3128
|
+
class DomainUnitFilter < ProjectGrantFilter
|
3129
|
+
end
|
3130
|
+
class Unknown < ProjectGrantFilter
|
3131
|
+
end
|
3132
|
+
end
|
3133
|
+
|
2763
3134
|
class ProjectMember
|
2764
3135
|
attr_accessor designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR")
|
2765
3136
|
attr_accessor member_details: Types::MemberDetails
|
2766
3137
|
SENSITIVE: []
|
2767
3138
|
end
|
2768
3139
|
|
3140
|
+
class ProjectPolicyGrantPrincipal
|
3141
|
+
attr_accessor project_designation: ("OWNER" | "CONTRIBUTOR")
|
3142
|
+
attr_accessor project_grant_filter: Types::ProjectGrantFilter
|
3143
|
+
attr_accessor project_identifier: ::String
|
3144
|
+
SENSITIVE: []
|
3145
|
+
end
|
3146
|
+
|
2769
3147
|
class ProjectSummary
|
2770
3148
|
attr_accessor created_at: ::Time
|
2771
3149
|
attr_accessor created_by: ::String
|
2772
3150
|
attr_accessor description: ::String
|
2773
3151
|
attr_accessor domain_id: ::String
|
3152
|
+
attr_accessor domain_unit_id: ::String
|
2774
3153
|
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
2775
3154
|
attr_accessor id: ::String
|
2776
3155
|
attr_accessor name: ::String
|
@@ -2941,6 +3320,31 @@ module Aws::DataZone
|
|
2941
3320
|
SENSITIVE: []
|
2942
3321
|
end
|
2943
3322
|
|
3323
|
+
class RemoveEntityOwnerInput
|
3324
|
+
attr_accessor client_token: ::String
|
3325
|
+
attr_accessor domain_identifier: ::String
|
3326
|
+
attr_accessor entity_identifier: ::String
|
3327
|
+
attr_accessor entity_type: ("DOMAIN_UNIT")
|
3328
|
+
attr_accessor owner: Types::OwnerProperties
|
3329
|
+
SENSITIVE: []
|
3330
|
+
end
|
3331
|
+
|
3332
|
+
class RemoveEntityOwnerOutput < Aws::EmptyStructure
|
3333
|
+
end
|
3334
|
+
|
3335
|
+
class RemovePolicyGrantInput
|
3336
|
+
attr_accessor client_token: ::String
|
3337
|
+
attr_accessor domain_identifier: ::String
|
3338
|
+
attr_accessor entity_identifier: ::String
|
3339
|
+
attr_accessor entity_type: ("DOMAIN_UNIT" | "ENVIRONMENT_BLUEPRINT_CONFIGURATION" | "ENVIRONMENT_PROFILE")
|
3340
|
+
attr_accessor policy_type: ("CREATE_DOMAIN_UNIT" | "OVERRIDE_DOMAIN_UNIT_OWNERS" | "ADD_TO_PROJECT_MEMBER_POOL" | "OVERRIDE_PROJECT_OWNERS" | "CREATE_GLOSSARY" | "CREATE_FORM_TYPE" | "CREATE_ASSET_TYPE" | "CREATE_PROJECT" | "CREATE_ENVIRONMENT_PROFILE" | "DELEGATE_CREATE_ENVIRONMENT_PROFILE" | "CREATE_ENVIRONMENT")
|
3341
|
+
attr_accessor principal: Types::PolicyGrantPrincipal
|
3342
|
+
SENSITIVE: []
|
3343
|
+
end
|
3344
|
+
|
3345
|
+
class RemovePolicyGrantOutput < Aws::EmptyStructure
|
3346
|
+
end
|
3347
|
+
|
2944
3348
|
class Resource
|
2945
3349
|
attr_accessor name: ::String
|
2946
3350
|
attr_accessor provider: ::String
|
@@ -3519,6 +3923,9 @@ module Aws::DataZone
|
|
3519
3923
|
SENSITIVE: []
|
3520
3924
|
end
|
3521
3925
|
|
3926
|
+
class Unit < Aws::EmptyStructure
|
3927
|
+
end
|
3928
|
+
|
3522
3929
|
class UntagResourceRequest
|
3523
3930
|
attr_accessor resource_arn: ::String
|
3524
3931
|
attr_accessor tag_keys: ::Array[::String]
|
@@ -3610,10 +4017,33 @@ module Aws::DataZone
|
|
3610
4017
|
attr_accessor id: ::String
|
3611
4018
|
attr_accessor last_updated_at: ::Time
|
3612
4019
|
attr_accessor name: ::String
|
4020
|
+
attr_accessor root_domain_unit_id: ::String
|
3613
4021
|
attr_accessor single_sign_on: Types::SingleSignOn
|
3614
4022
|
SENSITIVE: []
|
3615
4023
|
end
|
3616
4024
|
|
4025
|
+
class UpdateDomainUnitInput
|
4026
|
+
attr_accessor description: ::String
|
4027
|
+
attr_accessor domain_identifier: ::String
|
4028
|
+
attr_accessor identifier: ::String
|
4029
|
+
attr_accessor name: ::String
|
4030
|
+
SENSITIVE: [:description, :name]
|
4031
|
+
end
|
4032
|
+
|
4033
|
+
class UpdateDomainUnitOutput
|
4034
|
+
attr_accessor created_at: ::Time
|
4035
|
+
attr_accessor created_by: ::String
|
4036
|
+
attr_accessor description: ::String
|
4037
|
+
attr_accessor domain_id: ::String
|
4038
|
+
attr_accessor id: ::String
|
4039
|
+
attr_accessor last_updated_at: ::Time
|
4040
|
+
attr_accessor last_updated_by: ::String
|
4041
|
+
attr_accessor name: ::String
|
4042
|
+
attr_accessor owners: ::Array[Types::DomainUnitOwnerProperties]
|
4043
|
+
attr_accessor parent_domain_unit_id: ::String
|
4044
|
+
SENSITIVE: [:description, :name]
|
4045
|
+
end
|
4046
|
+
|
3617
4047
|
class UpdateEnvironmentActionInput
|
3618
4048
|
attr_accessor description: ::String
|
3619
4049
|
attr_accessor domain_identifier: ::String
|
@@ -3768,6 +4198,7 @@ module Aws::DataZone
|
|
3768
4198
|
attr_accessor created_by: ::String
|
3769
4199
|
attr_accessor description: ::String
|
3770
4200
|
attr_accessor domain_id: ::String
|
4201
|
+
attr_accessor domain_unit_id: ::String
|
3771
4202
|
attr_accessor failure_reasons: ::Array[Types::ProjectDeletionError]
|
3772
4203
|
attr_accessor glossary_terms: ::Array[::String]
|
3773
4204
|
attr_accessor id: ::String
|
@@ -3879,6 +4310,20 @@ module Aws::DataZone
|
|
3879
4310
|
SENSITIVE: []
|
3880
4311
|
end
|
3881
4312
|
|
4313
|
+
class UserPolicyGrantPrincipal
|
4314
|
+
attr_accessor all_users_grant_filter: Types::AllUsersGrantFilter
|
4315
|
+
attr_accessor user_identifier: ::String
|
4316
|
+
attr_accessor unknown: untyped
|
4317
|
+
SENSITIVE: []
|
4318
|
+
|
4319
|
+
class AllUsersGrantFilter < UserPolicyGrantPrincipal
|
4320
|
+
end
|
4321
|
+
class UserIdentifier < UserPolicyGrantPrincipal
|
4322
|
+
end
|
4323
|
+
class Unknown < UserPolicyGrantPrincipal
|
4324
|
+
end
|
4325
|
+
end
|
4326
|
+
|
3882
4327
|
class UserProfileDetails
|
3883
4328
|
attr_accessor iam: Types::IamUserProfileDetails
|
3884
4329
|
attr_accessor sso: Types::SsoUserProfileDetails
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-datazone
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.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: 2024-08-
|
11
|
+
date: 2024-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|