aws-sdk-datazone 1.72.0 → 1.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +110 -7
- data/lib/aws-sdk-datazone/client_api.rb +53 -2
- data/lib/aws-sdk-datazone/types.rb +219 -12
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +37 -6
- data/sig/types.rbs +54 -2
- metadata +1 -1
|
@@ -2088,6 +2088,10 @@ module Aws::DataZone
|
|
|
2088
2088
|
# The MWAA serverless properties of a connection.
|
|
2089
2089
|
# @return [Types::WorkflowsServerlessPropertiesInput]
|
|
2090
2090
|
#
|
|
2091
|
+
# @!attribute [rw] lakehouse_properties
|
|
2092
|
+
# The lakehouse properties of a connection.
|
|
2093
|
+
# @return [Types::LakehousePropertiesInput]
|
|
2094
|
+
#
|
|
2091
2095
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesInput AWS API Documentation
|
|
2092
2096
|
#
|
|
2093
2097
|
class ConnectionPropertiesInput < Struct.new(
|
|
@@ -2103,6 +2107,7 @@ module Aws::DataZone
|
|
|
2103
2107
|
:mlflow_properties,
|
|
2104
2108
|
:workflows_mwaa_properties,
|
|
2105
2109
|
:workflows_serverless_properties,
|
|
2110
|
+
:lakehouse_properties,
|
|
2106
2111
|
:unknown)
|
|
2107
2112
|
SENSITIVE = []
|
|
2108
2113
|
include Aws::Structure
|
|
@@ -2120,6 +2125,7 @@ module Aws::DataZone
|
|
|
2120
2125
|
class MlflowProperties < ConnectionPropertiesInput; end
|
|
2121
2126
|
class WorkflowsMwaaProperties < ConnectionPropertiesInput; end
|
|
2122
2127
|
class WorkflowsServerlessProperties < ConnectionPropertiesInput; end
|
|
2128
|
+
class LakehouseProperties < ConnectionPropertiesInput; end
|
|
2123
2129
|
class Unknown < ConnectionPropertiesInput; end
|
|
2124
2130
|
end
|
|
2125
2131
|
|
|
@@ -2175,6 +2181,10 @@ module Aws::DataZone
|
|
|
2175
2181
|
# The MWAA serverless properties of a connection.
|
|
2176
2182
|
# @return [Types::WorkflowsServerlessPropertiesOutput]
|
|
2177
2183
|
#
|
|
2184
|
+
# @!attribute [rw] lakehouse_properties
|
|
2185
|
+
# The lakehouse properties of a connection.
|
|
2186
|
+
# @return [Types::LakehousePropertiesOutput]
|
|
2187
|
+
#
|
|
2178
2188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesOutput AWS API Documentation
|
|
2179
2189
|
#
|
|
2180
2190
|
class ConnectionPropertiesOutput < Struct.new(
|
|
@@ -2190,6 +2200,7 @@ module Aws::DataZone
|
|
|
2190
2200
|
:mlflow_properties,
|
|
2191
2201
|
:workflows_mwaa_properties,
|
|
2192
2202
|
:workflows_serverless_properties,
|
|
2203
|
+
:lakehouse_properties,
|
|
2193
2204
|
:unknown)
|
|
2194
2205
|
SENSITIVE = []
|
|
2195
2206
|
include Aws::Structure
|
|
@@ -2207,6 +2218,7 @@ module Aws::DataZone
|
|
|
2207
2218
|
class MlflowProperties < ConnectionPropertiesOutput; end
|
|
2208
2219
|
class WorkflowsMwaaProperties < ConnectionPropertiesOutput; end
|
|
2209
2220
|
class WorkflowsServerlessProperties < ConnectionPropertiesOutput; end
|
|
2221
|
+
class LakehouseProperties < ConnectionPropertiesOutput; end
|
|
2210
2222
|
class Unknown < ConnectionPropertiesOutput; end
|
|
2211
2223
|
end
|
|
2212
2224
|
|
|
@@ -2247,6 +2259,10 @@ module Aws::DataZone
|
|
|
2247
2259
|
# The MLflow properties of a connection.
|
|
2248
2260
|
# @return [Types::MlflowPropertiesPatch]
|
|
2249
2261
|
#
|
|
2262
|
+
# @!attribute [rw] lakehouse_properties
|
|
2263
|
+
# The lakehouse properties of a connection properties patch.
|
|
2264
|
+
# @return [Types::LakehousePropertiesPatch]
|
|
2265
|
+
#
|
|
2250
2266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionPropertiesPatch AWS API Documentation
|
|
2251
2267
|
#
|
|
2252
2268
|
class ConnectionPropertiesPatch < Struct.new(
|
|
@@ -2258,6 +2274,7 @@ module Aws::DataZone
|
|
|
2258
2274
|
:s3_properties,
|
|
2259
2275
|
:amazon_q_properties,
|
|
2260
2276
|
:mlflow_properties,
|
|
2277
|
+
:lakehouse_properties,
|
|
2261
2278
|
:unknown)
|
|
2262
2279
|
SENSITIVE = []
|
|
2263
2280
|
include Aws::Structure
|
|
@@ -2271,6 +2288,7 @@ module Aws::DataZone
|
|
|
2271
2288
|
class S3Properties < ConnectionPropertiesPatch; end
|
|
2272
2289
|
class AmazonQProperties < ConnectionPropertiesPatch; end
|
|
2273
2290
|
class MlflowProperties < ConnectionPropertiesPatch; end
|
|
2291
|
+
class LakehouseProperties < ConnectionPropertiesPatch; end
|
|
2274
2292
|
class Unknown < ConnectionPropertiesPatch; end
|
|
2275
2293
|
end
|
|
2276
2294
|
|
|
@@ -4672,6 +4690,12 @@ module Aws::DataZone
|
|
|
4672
4690
|
# The identifier of the group for which the group profile is created.
|
|
4673
4691
|
# @return [String]
|
|
4674
4692
|
#
|
|
4693
|
+
# @!attribute [rw] role_principal_arn
|
|
4694
|
+
# The ARN of the IAM role that will be associated with the group
|
|
4695
|
+
# profile. This role defines the permissions that group members will
|
|
4696
|
+
# assume when accessing Amazon DataZone resources.
|
|
4697
|
+
# @return [String]
|
|
4698
|
+
#
|
|
4675
4699
|
# @!attribute [rw] client_token
|
|
4676
4700
|
# A unique, case-sensitive identifier that is provided to ensure the
|
|
4677
4701
|
# idempotency of the request.
|
|
@@ -4685,6 +4709,7 @@ module Aws::DataZone
|
|
|
4685
4709
|
class CreateGroupProfileInput < Struct.new(
|
|
4686
4710
|
:domain_identifier,
|
|
4687
4711
|
:group_identifier,
|
|
4712
|
+
:role_principal_arn,
|
|
4688
4713
|
:client_token)
|
|
4689
4714
|
SENSITIVE = []
|
|
4690
4715
|
include Aws::Structure
|
|
@@ -4707,13 +4732,25 @@ module Aws::DataZone
|
|
|
4707
4732
|
# The name of the group for which group profile is created.
|
|
4708
4733
|
# @return [String]
|
|
4709
4734
|
#
|
|
4735
|
+
# @!attribute [rw] role_principal_arn
|
|
4736
|
+
# The ARN of the IAM role principal. This role is associated with the
|
|
4737
|
+
# group profile.
|
|
4738
|
+
# @return [String]
|
|
4739
|
+
#
|
|
4740
|
+
# @!attribute [rw] role_principal_id
|
|
4741
|
+
# The unique identifier of the IAM role principal. This principal is
|
|
4742
|
+
# associated with the group profile.
|
|
4743
|
+
# @return [String]
|
|
4744
|
+
#
|
|
4710
4745
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateGroupProfileOutput AWS API Documentation
|
|
4711
4746
|
#
|
|
4712
4747
|
class CreateGroupProfileOutput < Struct.new(
|
|
4713
4748
|
:domain_id,
|
|
4714
4749
|
:id,
|
|
4715
4750
|
:status,
|
|
4716
|
-
:group_name
|
|
4751
|
+
:group_name,
|
|
4752
|
+
:role_principal_arn,
|
|
4753
|
+
:role_principal_id)
|
|
4717
4754
|
SENSITIVE = [:group_name]
|
|
4718
4755
|
include Aws::Structure
|
|
4719
4756
|
end
|
|
@@ -4838,6 +4875,20 @@ module Aws::DataZone
|
|
|
4838
4875
|
# The user parameters of the project.
|
|
4839
4876
|
# @return [Array<Types::EnvironmentConfigurationUserParameter>]
|
|
4840
4877
|
#
|
|
4878
|
+
# @!attribute [rw] project_category
|
|
4879
|
+
# The category of the project. Set to 'ADMIN' designates this as an
|
|
4880
|
+
# administrative project for the Amazon DataZone domain.
|
|
4881
|
+
# @return [String]
|
|
4882
|
+
#
|
|
4883
|
+
# @!attribute [rw] project_execution_role
|
|
4884
|
+
# The default project IAM role that is used to access project
|
|
4885
|
+
# resources and run computes such as Glue and Sagemaker.
|
|
4886
|
+
# @return [String]
|
|
4887
|
+
#
|
|
4888
|
+
# @!attribute [rw] membership_assignments
|
|
4889
|
+
# The members to be assigned to the project.
|
|
4890
|
+
# @return [Array<Types::ProjectMembershipAssignment>]
|
|
4891
|
+
#
|
|
4841
4892
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectInput AWS API Documentation
|
|
4842
4893
|
#
|
|
4843
4894
|
class CreateProjectInput < Struct.new(
|
|
@@ -4848,7 +4899,10 @@ module Aws::DataZone
|
|
|
4848
4899
|
:glossary_terms,
|
|
4849
4900
|
:domain_unit_id,
|
|
4850
4901
|
:project_profile_id,
|
|
4851
|
-
:user_parameters
|
|
4902
|
+
:user_parameters,
|
|
4903
|
+
:project_category,
|
|
4904
|
+
:project_execution_role,
|
|
4905
|
+
:membership_assignments)
|
|
4852
4906
|
SENSITIVE = [:name, :description]
|
|
4853
4907
|
include Aws::Structure
|
|
4854
4908
|
end
|
|
@@ -4947,6 +5001,10 @@ module Aws::DataZone
|
|
|
4947
5001
|
# The environment deployment details.
|
|
4948
5002
|
# @return [Types::EnvironmentDeploymentDetails]
|
|
4949
5003
|
#
|
|
5004
|
+
# @!attribute [rw] project_category
|
|
5005
|
+
# The category of the project.
|
|
5006
|
+
# @return [String]
|
|
5007
|
+
#
|
|
4950
5008
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateProjectOutput AWS API Documentation
|
|
4951
5009
|
#
|
|
4952
5010
|
class CreateProjectOutput < Struct.new(
|
|
@@ -4964,7 +5022,8 @@ module Aws::DataZone
|
|
|
4964
5022
|
:domain_unit_id,
|
|
4965
5023
|
:project_profile_id,
|
|
4966
5024
|
:user_parameters,
|
|
4967
|
-
:environment_deployment_details
|
|
5025
|
+
:environment_deployment_details,
|
|
5026
|
+
:project_category)
|
|
4968
5027
|
SENSITIVE = [:name, :description]
|
|
4969
5028
|
include Aws::Structure
|
|
4970
5029
|
end
|
|
@@ -5643,6 +5702,10 @@ module Aws::DataZone
|
|
|
5643
5702
|
# The user type of the user for which the user profile is created.
|
|
5644
5703
|
# @return [String]
|
|
5645
5704
|
#
|
|
5705
|
+
# @!attribute [rw] session_name
|
|
5706
|
+
# The session name for IAM role sessions.
|
|
5707
|
+
# @return [String]
|
|
5708
|
+
#
|
|
5646
5709
|
# @!attribute [rw] client_token
|
|
5647
5710
|
# A unique, case-sensitive identifier that is provided to ensure the
|
|
5648
5711
|
# idempotency of the request.
|
|
@@ -5657,6 +5720,7 @@ module Aws::DataZone
|
|
|
5657
5720
|
:domain_identifier,
|
|
5658
5721
|
:user_identifier,
|
|
5659
5722
|
:user_type,
|
|
5723
|
+
:session_name,
|
|
5660
5724
|
:client_token)
|
|
5661
5725
|
SENSITIVE = []
|
|
5662
5726
|
include Aws::Structure
|
|
@@ -10305,13 +10369,25 @@ module Aws::DataZone
|
|
|
10305
10369
|
# The name of the group for which the specified group profile exists.
|
|
10306
10370
|
# @return [String]
|
|
10307
10371
|
#
|
|
10372
|
+
# @!attribute [rw] role_principal_arn
|
|
10373
|
+
# The ARN of the IAM role principal. This role is associated with the
|
|
10374
|
+
# group profile.
|
|
10375
|
+
# @return [String]
|
|
10376
|
+
#
|
|
10377
|
+
# @!attribute [rw] role_principal_id
|
|
10378
|
+
# The unique identifier of the IAM role principal. This principal is
|
|
10379
|
+
# associated with the group profile.
|
|
10380
|
+
# @return [String]
|
|
10381
|
+
#
|
|
10308
10382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetGroupProfileOutput AWS API Documentation
|
|
10309
10383
|
#
|
|
10310
10384
|
class GetGroupProfileOutput < Struct.new(
|
|
10311
10385
|
:domain_id,
|
|
10312
10386
|
:id,
|
|
10313
10387
|
:status,
|
|
10314
|
-
:group_name
|
|
10388
|
+
:group_name,
|
|
10389
|
+
:role_principal_arn,
|
|
10390
|
+
:role_principal_id)
|
|
10315
10391
|
SENSITIVE = [:group_name]
|
|
10316
10392
|
include Aws::Structure
|
|
10317
10393
|
end
|
|
@@ -10845,6 +10921,10 @@ module Aws::DataZone
|
|
|
10845
10921
|
# The environment deployment status of a project.
|
|
10846
10922
|
# @return [Types::EnvironmentDeploymentDetails]
|
|
10847
10923
|
#
|
|
10924
|
+
# @!attribute [rw] project_category
|
|
10925
|
+
# The category of the project.
|
|
10926
|
+
# @return [String]
|
|
10927
|
+
#
|
|
10848
10928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetProjectOutput AWS API Documentation
|
|
10849
10929
|
#
|
|
10850
10930
|
class GetProjectOutput < Struct.new(
|
|
@@ -10862,7 +10942,8 @@ module Aws::DataZone
|
|
|
10862
10942
|
:domain_unit_id,
|
|
10863
10943
|
:project_profile_id,
|
|
10864
10944
|
:user_parameters,
|
|
10865
|
-
:environment_deployment_details
|
|
10945
|
+
:environment_deployment_details,
|
|
10946
|
+
:project_category)
|
|
10866
10947
|
SENSITIVE = [:name, :description]
|
|
10867
10948
|
include Aws::Structure
|
|
10868
10949
|
end
|
|
@@ -11519,12 +11600,17 @@ module Aws::DataZone
|
|
|
11519
11600
|
# The type of the user profile.
|
|
11520
11601
|
# @return [String]
|
|
11521
11602
|
#
|
|
11603
|
+
# @!attribute [rw] session_name
|
|
11604
|
+
# The session name for IAM role sessions.
|
|
11605
|
+
# @return [String]
|
|
11606
|
+
#
|
|
11522
11607
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetUserProfileInput AWS API Documentation
|
|
11523
11608
|
#
|
|
11524
11609
|
class GetUserProfileInput < Struct.new(
|
|
11525
11610
|
:domain_identifier,
|
|
11526
11611
|
:user_identifier,
|
|
11527
|
-
:type
|
|
11612
|
+
:type,
|
|
11613
|
+
:session_name)
|
|
11528
11614
|
SENSITIVE = []
|
|
11529
11615
|
include Aws::Structure
|
|
11530
11616
|
end
|
|
@@ -12261,13 +12347,25 @@ module Aws::DataZone
|
|
|
12261
12347
|
# The group name of a group profile.
|
|
12262
12348
|
# @return [String]
|
|
12263
12349
|
#
|
|
12350
|
+
# @!attribute [rw] role_principal_arn
|
|
12351
|
+
# The ARN of the IAM role principal. This role is associated with the
|
|
12352
|
+
# group profile.
|
|
12353
|
+
# @return [String]
|
|
12354
|
+
#
|
|
12355
|
+
# @!attribute [rw] role_principal_id
|
|
12356
|
+
# The unique identifier of the IAM role principal. This principal is
|
|
12357
|
+
# associated with the group profile.
|
|
12358
|
+
# @return [String]
|
|
12359
|
+
#
|
|
12264
12360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GroupProfileSummary AWS API Documentation
|
|
12265
12361
|
#
|
|
12266
12362
|
class GroupProfileSummary < Struct.new(
|
|
12267
12363
|
:domain_id,
|
|
12268
12364
|
:id,
|
|
12269
12365
|
:status,
|
|
12270
|
-
:group_name
|
|
12366
|
+
:group_name,
|
|
12367
|
+
:role_principal_arn,
|
|
12368
|
+
:role_principal_id)
|
|
12271
12369
|
SENSITIVE = [:group_name]
|
|
12272
12370
|
include Aws::Structure
|
|
12273
12371
|
end
|
|
@@ -12372,11 +12470,23 @@ module Aws::DataZone
|
|
|
12372
12470
|
# The principal ID as part of the IAM user profile details.
|
|
12373
12471
|
# @return [String]
|
|
12374
12472
|
#
|
|
12473
|
+
# @!attribute [rw] session_name
|
|
12474
|
+
# The session name for IAM role sessions.
|
|
12475
|
+
# @return [String]
|
|
12476
|
+
#
|
|
12477
|
+
# @!attribute [rw] group_profile_id
|
|
12478
|
+
# The identifier of the group profile associated with the IAM user
|
|
12479
|
+
# profile. This links the user to a specific group profile within the
|
|
12480
|
+
# Amazon DataZone domain.
|
|
12481
|
+
# @return [String]
|
|
12482
|
+
#
|
|
12375
12483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IamUserProfileDetails AWS API Documentation
|
|
12376
12484
|
#
|
|
12377
12485
|
class IamUserProfileDetails < Struct.new(
|
|
12378
12486
|
:arn,
|
|
12379
|
-
:principal_id
|
|
12487
|
+
:principal_id,
|
|
12488
|
+
:session_name,
|
|
12489
|
+
:group_profile_id)
|
|
12380
12490
|
SENSITIVE = []
|
|
12381
12491
|
include Aws::Structure
|
|
12382
12492
|
end
|
|
@@ -12582,6 +12692,51 @@ module Aws::DataZone
|
|
|
12582
12692
|
include Aws::Structure
|
|
12583
12693
|
end
|
|
12584
12694
|
|
|
12695
|
+
# The lakehouse properties of a connection.
|
|
12696
|
+
#
|
|
12697
|
+
# @!attribute [rw] glue_lineage_sync_enabled
|
|
12698
|
+
# Specifies whether to enable Glue lineage sync for tables managed by
|
|
12699
|
+
# Glue crawlers.
|
|
12700
|
+
# @return [Boolean]
|
|
12701
|
+
#
|
|
12702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LakehousePropertiesInput AWS API Documentation
|
|
12703
|
+
#
|
|
12704
|
+
class LakehousePropertiesInput < Struct.new(
|
|
12705
|
+
:glue_lineage_sync_enabled)
|
|
12706
|
+
SENSITIVE = []
|
|
12707
|
+
include Aws::Structure
|
|
12708
|
+
end
|
|
12709
|
+
|
|
12710
|
+
# The lakehouse properties of a connection.
|
|
12711
|
+
#
|
|
12712
|
+
# @!attribute [rw] glue_lineage_sync_enabled
|
|
12713
|
+
# Specifies whether Glue lineage sync is enabled for tables managed by
|
|
12714
|
+
# Glue crawlers.
|
|
12715
|
+
# @return [Boolean]
|
|
12716
|
+
#
|
|
12717
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LakehousePropertiesOutput AWS API Documentation
|
|
12718
|
+
#
|
|
12719
|
+
class LakehousePropertiesOutput < Struct.new(
|
|
12720
|
+
:glue_lineage_sync_enabled)
|
|
12721
|
+
SENSITIVE = []
|
|
12722
|
+
include Aws::Structure
|
|
12723
|
+
end
|
|
12724
|
+
|
|
12725
|
+
# The lakehouse properties of a connection properties patch.
|
|
12726
|
+
#
|
|
12727
|
+
# @!attribute [rw] glue_lineage_sync_enabled
|
|
12728
|
+
# Specifies whether to enable Glue lineage sync for tables managed by
|
|
12729
|
+
# Glue crawlers.
|
|
12730
|
+
# @return [Boolean]
|
|
12731
|
+
#
|
|
12732
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/LakehousePropertiesPatch AWS API Documentation
|
|
12733
|
+
#
|
|
12734
|
+
class LakehousePropertiesPatch < Struct.new(
|
|
12735
|
+
:glue_lineage_sync_enabled)
|
|
12736
|
+
SENSITIVE = []
|
|
12737
|
+
include Aws::Structure
|
|
12738
|
+
end
|
|
12739
|
+
|
|
12585
12740
|
# Specifies that a value is less than an expression.
|
|
12586
12741
|
#
|
|
12587
12742
|
# @!attribute [rw] column_name
|
|
@@ -14744,6 +14899,10 @@ module Aws::DataZone
|
|
|
14744
14899
|
# The name of the project.
|
|
14745
14900
|
# @return [String]
|
|
14746
14901
|
#
|
|
14902
|
+
# @!attribute [rw] project_category
|
|
14903
|
+
# A parameter to filter projects by their category.
|
|
14904
|
+
# @return [String]
|
|
14905
|
+
#
|
|
14747
14906
|
# @!attribute [rw] next_token
|
|
14748
14907
|
# When the number of projects is greater than the default value for
|
|
14749
14908
|
# the `MaxResults` parameter, or if you explicitly specify a value for
|
|
@@ -14768,6 +14927,7 @@ module Aws::DataZone
|
|
|
14768
14927
|
:user_identifier,
|
|
14769
14928
|
:group_identifier,
|
|
14770
14929
|
:name,
|
|
14930
|
+
:project_category,
|
|
14771
14931
|
:next_token,
|
|
14772
14932
|
:max_results)
|
|
14773
14933
|
SENSITIVE = [:name]
|
|
@@ -16756,6 +16916,26 @@ module Aws::DataZone
|
|
|
16756
16916
|
include Aws::Structure
|
|
16757
16917
|
end
|
|
16758
16918
|
|
|
16919
|
+
# A map of user or group profiles to designations that need to be
|
|
16920
|
+
# assigned in the project.
|
|
16921
|
+
#
|
|
16922
|
+
# @!attribute [rw] member
|
|
16923
|
+
# The details about a project member.
|
|
16924
|
+
# @return [Types::Member]
|
|
16925
|
+
#
|
|
16926
|
+
# @!attribute [rw] designation
|
|
16927
|
+
# The designation of the project membership.
|
|
16928
|
+
# @return [String]
|
|
16929
|
+
#
|
|
16930
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ProjectMembershipAssignment AWS API Documentation
|
|
16931
|
+
#
|
|
16932
|
+
class ProjectMembershipAssignment < Struct.new(
|
|
16933
|
+
:member,
|
|
16934
|
+
:designation)
|
|
16935
|
+
SENSITIVE = []
|
|
16936
|
+
include Aws::Structure
|
|
16937
|
+
end
|
|
16938
|
+
|
|
16759
16939
|
# The project policy grant principal.
|
|
16760
16940
|
#
|
|
16761
16941
|
# @!attribute [rw] project_designation
|
|
@@ -16877,6 +17057,10 @@ module Aws::DataZone
|
|
|
16877
17057
|
# The ID of the domain unit.
|
|
16878
17058
|
# @return [String]
|
|
16879
17059
|
#
|
|
17060
|
+
# @!attribute [rw] project_category
|
|
17061
|
+
# The category of the project.
|
|
17062
|
+
# @return [String]
|
|
17063
|
+
#
|
|
16880
17064
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ProjectSummary AWS API Documentation
|
|
16881
17065
|
#
|
|
16882
17066
|
class ProjectSummary < Struct.new(
|
|
@@ -16889,7 +17073,8 @@ module Aws::DataZone
|
|
|
16889
17073
|
:created_by,
|
|
16890
17074
|
:created_at,
|
|
16891
17075
|
:updated_at,
|
|
16892
|
-
:domain_unit_id
|
|
17076
|
+
:domain_unit_id,
|
|
17077
|
+
:project_category)
|
|
16893
17078
|
SENSITIVE = [:name, :description]
|
|
16894
17079
|
include Aws::Structure
|
|
16895
17080
|
end
|
|
@@ -22247,13 +22432,25 @@ module Aws::DataZone
|
|
|
22247
22432
|
# The name of the group profile that is updated.
|
|
22248
22433
|
# @return [String]
|
|
22249
22434
|
#
|
|
22435
|
+
# @!attribute [rw] role_principal_arn
|
|
22436
|
+
# The ARN of the IAM role principal. This role is associated with the
|
|
22437
|
+
# updated group profile.
|
|
22438
|
+
# @return [String]
|
|
22439
|
+
#
|
|
22440
|
+
# @!attribute [rw] role_principal_id
|
|
22441
|
+
# The unique identifier of the IAM role principal. This principal is
|
|
22442
|
+
# associated with the updated group profile.
|
|
22443
|
+
# @return [String]
|
|
22444
|
+
#
|
|
22250
22445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateGroupProfileOutput AWS API Documentation
|
|
22251
22446
|
#
|
|
22252
22447
|
class UpdateGroupProfileOutput < Struct.new(
|
|
22253
22448
|
:domain_id,
|
|
22254
22449
|
:id,
|
|
22255
22450
|
:status,
|
|
22256
|
-
:group_name
|
|
22451
|
+
:group_name,
|
|
22452
|
+
:role_principal_arn,
|
|
22453
|
+
:role_principal_id)
|
|
22257
22454
|
SENSITIVE = [:group_name]
|
|
22258
22455
|
include Aws::Structure
|
|
22259
22456
|
end
|
|
@@ -22381,6 +22578,10 @@ module Aws::DataZone
|
|
|
22381
22578
|
# The environment deployment details of the project.
|
|
22382
22579
|
# @return [Types::EnvironmentDeploymentDetails]
|
|
22383
22580
|
#
|
|
22581
|
+
# @!attribute [rw] project_category
|
|
22582
|
+
# The category of the project.
|
|
22583
|
+
# @return [String]
|
|
22584
|
+
#
|
|
22384
22585
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateProjectOutput AWS API Documentation
|
|
22385
22586
|
#
|
|
22386
22587
|
class UpdateProjectOutput < Struct.new(
|
|
@@ -22398,7 +22599,8 @@ module Aws::DataZone
|
|
|
22398
22599
|
:domain_unit_id,
|
|
22399
22600
|
:project_profile_id,
|
|
22400
22601
|
:user_parameters,
|
|
22401
|
-
:environment_deployment_details
|
|
22602
|
+
:environment_deployment_details,
|
|
22603
|
+
:project_category)
|
|
22402
22604
|
SENSITIVE = [:name, :description]
|
|
22403
22605
|
include Aws::Structure
|
|
22404
22606
|
end
|
|
@@ -23088,13 +23290,18 @@ module Aws::DataZone
|
|
|
23088
23290
|
# The status of the user profile that are to be updated.
|
|
23089
23291
|
# @return [String]
|
|
23090
23292
|
#
|
|
23293
|
+
# @!attribute [rw] session_name
|
|
23294
|
+
# The session name for IAM role sessions.
|
|
23295
|
+
# @return [String]
|
|
23296
|
+
#
|
|
23091
23297
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateUserProfileInput AWS API Documentation
|
|
23092
23298
|
#
|
|
23093
23299
|
class UpdateUserProfileInput < Struct.new(
|
|
23094
23300
|
:domain_identifier,
|
|
23095
23301
|
:user_identifier,
|
|
23096
23302
|
:type,
|
|
23097
|
-
:status
|
|
23303
|
+
:status,
|
|
23304
|
+
:session_name)
|
|
23098
23305
|
SENSITIVE = []
|
|
23099
23306
|
include Aws::Structure
|
|
23100
23307
|
end
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -749,6 +749,9 @@ module Aws
|
|
|
749
749
|
mwaa_environment_name: ::String?
|
|
750
750
|
}?,
|
|
751
751
|
workflows_serverless_properties: {
|
|
752
|
+
}?,
|
|
753
|
+
lakehouse_properties: {
|
|
754
|
+
glue_lineage_sync_enabled: bool?
|
|
752
755
|
}?
|
|
753
756
|
},
|
|
754
757
|
?enable_trusted_identity_propagation: bool,
|
|
@@ -971,7 +974,7 @@ module Aws
|
|
|
971
974
|
user_assignment: ("AUTOMATIC" | "MANUAL")?,
|
|
972
975
|
idc_instance_arn: ::String?
|
|
973
976
|
},
|
|
974
|
-
domain_execution_role: ::String,
|
|
977
|
+
?domain_execution_role: ::String,
|
|
975
978
|
?kms_key_identifier: ::String,
|
|
976
979
|
?tags: Hash[::String, ::String],
|
|
977
980
|
?domain_version: ("V1" | "V2"),
|
|
@@ -1223,11 +1226,14 @@ module Aws
|
|
|
1223
1226
|
def id: () -> ::String
|
|
1224
1227
|
def status: () -> ("ASSIGNED" | "NOT_ASSIGNED")
|
|
1225
1228
|
def group_name: () -> ::String
|
|
1229
|
+
def role_principal_arn: () -> ::String
|
|
1230
|
+
def role_principal_id: () -> ::String
|
|
1226
1231
|
end
|
|
1227
1232
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_group_profile-instance_method
|
|
1228
1233
|
def create_group_profile: (
|
|
1229
1234
|
domain_identifier: ::String,
|
|
1230
|
-
group_identifier: ::String,
|
|
1235
|
+
?group_identifier: ::String,
|
|
1236
|
+
?role_principal_arn: ::String,
|
|
1231
1237
|
?client_token: ::String
|
|
1232
1238
|
) -> _CreateGroupProfileResponseSuccess
|
|
1233
1239
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGroupProfileResponseSuccess
|
|
@@ -1266,6 +1272,7 @@ module Aws
|
|
|
1266
1272
|
def project_profile_id: () -> ::String
|
|
1267
1273
|
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
1268
1274
|
def environment_deployment_details: () -> Types::EnvironmentDeploymentDetails
|
|
1275
|
+
def project_category: () -> ::String
|
|
1269
1276
|
end
|
|
1270
1277
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_project-instance_method
|
|
1271
1278
|
def create_project: (
|
|
@@ -1292,6 +1299,17 @@ module Aws
|
|
|
1292
1299
|
},
|
|
1293
1300
|
]?
|
|
1294
1301
|
},
|
|
1302
|
+
],
|
|
1303
|
+
?project_category: ::String,
|
|
1304
|
+
?project_execution_role: ::String,
|
|
1305
|
+
?membership_assignments: Array[
|
|
1306
|
+
{
|
|
1307
|
+
member: {
|
|
1308
|
+
user_identifier: ::String?,
|
|
1309
|
+
group_identifier: ::String?
|
|
1310
|
+
},
|
|
1311
|
+
designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR" | "PROJECT_CATALOG_VIEWER" | "PROJECT_CATALOG_CONSUMER" | "PROJECT_CATALOG_STEWARD")
|
|
1312
|
+
},
|
|
1295
1313
|
]
|
|
1296
1314
|
) -> _CreateProjectResponseSuccess
|
|
1297
1315
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
|
|
@@ -1592,7 +1610,8 @@ module Aws
|
|
|
1592
1610
|
def create_user_profile: (
|
|
1593
1611
|
domain_identifier: ::String,
|
|
1594
1612
|
user_identifier: ::String,
|
|
1595
|
-
?user_type: ("IAM_USER" | "IAM_ROLE" | "SSO_USER"),
|
|
1613
|
+
?user_type: ("IAM_USER" | "IAM_ROLE" | "SSO_USER" | "IAM_ROLE_SESSION"),
|
|
1614
|
+
?session_name: ::String,
|
|
1596
1615
|
?client_token: ::String
|
|
1597
1616
|
) -> _CreateUserProfileResponseSuccess
|
|
1598
1617
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserProfileResponseSuccess
|
|
@@ -2379,6 +2398,8 @@ module Aws
|
|
|
2379
2398
|
def id: () -> ::String
|
|
2380
2399
|
def status: () -> ("ASSIGNED" | "NOT_ASSIGNED")
|
|
2381
2400
|
def group_name: () -> ::String
|
|
2401
|
+
def role_principal_arn: () -> ::String
|
|
2402
|
+
def role_principal_id: () -> ::String
|
|
2382
2403
|
end
|
|
2383
2404
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_group_profile-instance_method
|
|
2384
2405
|
def get_group_profile: (
|
|
@@ -2522,6 +2543,7 @@ module Aws
|
|
|
2522
2543
|
def project_profile_id: () -> ::String
|
|
2523
2544
|
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
2524
2545
|
def environment_deployment_details: () -> Types::EnvironmentDeploymentDetails
|
|
2546
|
+
def project_category: () -> ::String
|
|
2525
2547
|
end
|
|
2526
2548
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_project-instance_method
|
|
2527
2549
|
def get_project: (
|
|
@@ -2702,7 +2724,8 @@ module Aws
|
|
|
2702
2724
|
def get_user_profile: (
|
|
2703
2725
|
domain_identifier: ::String,
|
|
2704
2726
|
user_identifier: ::String,
|
|
2705
|
-
?type: ("IAM" | "SSO")
|
|
2727
|
+
?type: ("IAM" | "SSO"),
|
|
2728
|
+
?session_name: ::String
|
|
2706
2729
|
) -> _GetUserProfileResponseSuccess
|
|
2707
2730
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUserProfileResponseSuccess
|
|
2708
2731
|
|
|
@@ -3115,6 +3138,7 @@ module Aws
|
|
|
3115
3138
|
?user_identifier: ::String,
|
|
3116
3139
|
?group_identifier: ::String,
|
|
3117
3140
|
?name: ::String,
|
|
3141
|
+
?project_category: ::String,
|
|
3118
3142
|
?next_token: ::String,
|
|
3119
3143
|
?max_results: ::Integer
|
|
3120
3144
|
) -> _ListProjectsResponseSuccess
|
|
@@ -3566,7 +3590,7 @@ module Aws
|
|
|
3566
3590
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#search_group_profiles-instance_method
|
|
3567
3591
|
def search_group_profiles: (
|
|
3568
3592
|
domain_identifier: ::String,
|
|
3569
|
-
group_type: ("SSO_GROUP" | "DATAZONE_SSO_GROUP"),
|
|
3593
|
+
group_type: ("SSO_GROUP" | "DATAZONE_SSO_GROUP" | "IAM_ROLE_SESSION_GROUP"),
|
|
3570
3594
|
?search_text: ::String,
|
|
3571
3595
|
?max_results: ::Integer,
|
|
3572
3596
|
?next_token: ::String
|
|
@@ -3965,6 +3989,9 @@ module Aws
|
|
|
3965
3989
|
}?,
|
|
3966
3990
|
mlflow_properties: {
|
|
3967
3991
|
tracking_server_arn: ::String?
|
|
3992
|
+
}?,
|
|
3993
|
+
lakehouse_properties: {
|
|
3994
|
+
glue_lineage_sync_enabled: bool?
|
|
3968
3995
|
}?
|
|
3969
3996
|
}
|
|
3970
3997
|
) -> _UpdateConnectionResponseSuccess
|
|
@@ -4312,6 +4339,8 @@ module Aws
|
|
|
4312
4339
|
def id: () -> ::String
|
|
4313
4340
|
def status: () -> ("ASSIGNED" | "NOT_ASSIGNED")
|
|
4314
4341
|
def group_name: () -> ::String
|
|
4342
|
+
def role_principal_arn: () -> ::String
|
|
4343
|
+
def role_principal_id: () -> ::String
|
|
4315
4344
|
end
|
|
4316
4345
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_group_profile-instance_method
|
|
4317
4346
|
def update_group_profile: (
|
|
@@ -4338,6 +4367,7 @@ module Aws
|
|
|
4338
4367
|
def project_profile_id: () -> ::String
|
|
4339
4368
|
def user_parameters: () -> ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
4340
4369
|
def environment_deployment_details: () -> Types::EnvironmentDeploymentDetails
|
|
4370
|
+
def project_category: () -> ::String
|
|
4341
4371
|
end
|
|
4342
4372
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_project-instance_method
|
|
4343
4373
|
def update_project: (
|
|
@@ -4617,7 +4647,8 @@ module Aws
|
|
|
4617
4647
|
domain_identifier: ::String,
|
|
4618
4648
|
user_identifier: ::String,
|
|
4619
4649
|
?type: ("IAM" | "SSO"),
|
|
4620
|
-
status: ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED")
|
|
4650
|
+
status: ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED"),
|
|
4651
|
+
?session_name: ::String
|
|
4621
4652
|
) -> _UpdateUserProfileResponseSuccess
|
|
4622
4653
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserProfileResponseSuccess
|
|
4623
4654
|
end
|