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
data/sig/types.rbs
CHANGED
|
@@ -603,6 +603,7 @@ module Aws::DataZone
|
|
|
603
603
|
attr_accessor mlflow_properties: Types::MlflowPropertiesInput
|
|
604
604
|
attr_accessor workflows_mwaa_properties: Types::WorkflowsMwaaPropertiesInput
|
|
605
605
|
attr_accessor workflows_serverless_properties: Types::WorkflowsServerlessPropertiesInput
|
|
606
|
+
attr_accessor lakehouse_properties: Types::LakehousePropertiesInput
|
|
606
607
|
attr_accessor unknown: untyped
|
|
607
608
|
SENSITIVE: []
|
|
608
609
|
|
|
@@ -630,6 +631,8 @@ module Aws::DataZone
|
|
|
630
631
|
end
|
|
631
632
|
class WorkflowsServerlessProperties < ConnectionPropertiesInput
|
|
632
633
|
end
|
|
634
|
+
class LakehouseProperties < ConnectionPropertiesInput
|
|
635
|
+
end
|
|
633
636
|
class Unknown < ConnectionPropertiesInput
|
|
634
637
|
end
|
|
635
638
|
end
|
|
@@ -647,6 +650,7 @@ module Aws::DataZone
|
|
|
647
650
|
attr_accessor mlflow_properties: Types::MlflowPropertiesOutput
|
|
648
651
|
attr_accessor workflows_mwaa_properties: Types::WorkflowsMwaaPropertiesOutput
|
|
649
652
|
attr_accessor workflows_serverless_properties: Types::WorkflowsServerlessPropertiesOutput
|
|
653
|
+
attr_accessor lakehouse_properties: Types::LakehousePropertiesOutput
|
|
650
654
|
attr_accessor unknown: untyped
|
|
651
655
|
SENSITIVE: []
|
|
652
656
|
|
|
@@ -674,6 +678,8 @@ module Aws::DataZone
|
|
|
674
678
|
end
|
|
675
679
|
class WorkflowsServerlessProperties < ConnectionPropertiesOutput
|
|
676
680
|
end
|
|
681
|
+
class LakehouseProperties < ConnectionPropertiesOutput
|
|
682
|
+
end
|
|
677
683
|
class Unknown < ConnectionPropertiesOutput
|
|
678
684
|
end
|
|
679
685
|
end
|
|
@@ -687,6 +693,7 @@ module Aws::DataZone
|
|
|
687
693
|
attr_accessor s3_properties: Types::S3PropertiesPatch
|
|
688
694
|
attr_accessor amazon_q_properties: Types::AmazonQPropertiesPatch
|
|
689
695
|
attr_accessor mlflow_properties: Types::MlflowPropertiesPatch
|
|
696
|
+
attr_accessor lakehouse_properties: Types::LakehousePropertiesPatch
|
|
690
697
|
attr_accessor unknown: untyped
|
|
691
698
|
SENSITIVE: []
|
|
692
699
|
|
|
@@ -706,6 +713,8 @@ module Aws::DataZone
|
|
|
706
713
|
end
|
|
707
714
|
class MlflowProperties < ConnectionPropertiesPatch
|
|
708
715
|
end
|
|
716
|
+
class LakehouseProperties < ConnectionPropertiesPatch
|
|
717
|
+
end
|
|
709
718
|
class Unknown < ConnectionPropertiesPatch
|
|
710
719
|
end
|
|
711
720
|
end
|
|
@@ -1270,6 +1279,7 @@ module Aws::DataZone
|
|
|
1270
1279
|
class CreateGroupProfileInput
|
|
1271
1280
|
attr_accessor domain_identifier: ::String
|
|
1272
1281
|
attr_accessor group_identifier: ::String
|
|
1282
|
+
attr_accessor role_principal_arn: ::String
|
|
1273
1283
|
attr_accessor client_token: ::String
|
|
1274
1284
|
SENSITIVE: []
|
|
1275
1285
|
end
|
|
@@ -1279,6 +1289,8 @@ module Aws::DataZone
|
|
|
1279
1289
|
attr_accessor id: ::String
|
|
1280
1290
|
attr_accessor status: ("ASSIGNED" | "NOT_ASSIGNED")
|
|
1281
1291
|
attr_accessor group_name: ::String
|
|
1292
|
+
attr_accessor role_principal_arn: ::String
|
|
1293
|
+
attr_accessor role_principal_id: ::String
|
|
1282
1294
|
SENSITIVE: [:group_name]
|
|
1283
1295
|
end
|
|
1284
1296
|
|
|
@@ -1314,6 +1326,9 @@ module Aws::DataZone
|
|
|
1314
1326
|
attr_accessor domain_unit_id: ::String
|
|
1315
1327
|
attr_accessor project_profile_id: ::String
|
|
1316
1328
|
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
1329
|
+
attr_accessor project_category: ::String
|
|
1330
|
+
attr_accessor project_execution_role: ::String
|
|
1331
|
+
attr_accessor membership_assignments: ::Array[Types::ProjectMembershipAssignment]
|
|
1317
1332
|
SENSITIVE: [:name, :description]
|
|
1318
1333
|
end
|
|
1319
1334
|
|
|
@@ -1344,6 +1359,7 @@ module Aws::DataZone
|
|
|
1344
1359
|
attr_accessor project_profile_id: ::String
|
|
1345
1360
|
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
1346
1361
|
attr_accessor environment_deployment_details: Types::EnvironmentDeploymentDetails
|
|
1362
|
+
attr_accessor project_category: ::String
|
|
1347
1363
|
SENSITIVE: [:name, :description]
|
|
1348
1364
|
end
|
|
1349
1365
|
|
|
@@ -1503,7 +1519,8 @@ module Aws::DataZone
|
|
|
1503
1519
|
class CreateUserProfileInput
|
|
1504
1520
|
attr_accessor domain_identifier: ::String
|
|
1505
1521
|
attr_accessor user_identifier: ::String
|
|
1506
|
-
attr_accessor user_type: ("IAM_USER" | "IAM_ROLE" | "SSO_USER")
|
|
1522
|
+
attr_accessor user_type: ("IAM_USER" | "IAM_ROLE" | "SSO_USER" | "IAM_ROLE_SESSION")
|
|
1523
|
+
attr_accessor session_name: ::String
|
|
1507
1524
|
attr_accessor client_token: ::String
|
|
1508
1525
|
SENSITIVE: []
|
|
1509
1526
|
end
|
|
@@ -2798,6 +2815,8 @@ module Aws::DataZone
|
|
|
2798
2815
|
attr_accessor id: ::String
|
|
2799
2816
|
attr_accessor status: ("ASSIGNED" | "NOT_ASSIGNED")
|
|
2800
2817
|
attr_accessor group_name: ::String
|
|
2818
|
+
attr_accessor role_principal_arn: ::String
|
|
2819
|
+
attr_accessor role_principal_id: ::String
|
|
2801
2820
|
SENSITIVE: [:group_name]
|
|
2802
2821
|
end
|
|
2803
2822
|
|
|
@@ -2942,6 +2961,7 @@ module Aws::DataZone
|
|
|
2942
2961
|
attr_accessor project_profile_id: ::String
|
|
2943
2962
|
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
2944
2963
|
attr_accessor environment_deployment_details: Types::EnvironmentDeploymentDetails
|
|
2964
|
+
attr_accessor project_category: ::String
|
|
2945
2965
|
SENSITIVE: [:name, :description]
|
|
2946
2966
|
end
|
|
2947
2967
|
|
|
@@ -3109,6 +3129,7 @@ module Aws::DataZone
|
|
|
3109
3129
|
attr_accessor domain_identifier: ::String
|
|
3110
3130
|
attr_accessor user_identifier: ::String
|
|
3111
3131
|
attr_accessor type: ("IAM" | "SSO")
|
|
3132
|
+
attr_accessor session_name: ::String
|
|
3112
3133
|
SENSITIVE: []
|
|
3113
3134
|
end
|
|
3114
3135
|
|
|
@@ -3317,6 +3338,8 @@ module Aws::DataZone
|
|
|
3317
3338
|
attr_accessor id: ::String
|
|
3318
3339
|
attr_accessor status: ("ASSIGNED" | "NOT_ASSIGNED")
|
|
3319
3340
|
attr_accessor group_name: ::String
|
|
3341
|
+
attr_accessor role_principal_arn: ::String
|
|
3342
|
+
attr_accessor role_principal_id: ::String
|
|
3320
3343
|
SENSITIVE: [:group_name]
|
|
3321
3344
|
end
|
|
3322
3345
|
|
|
@@ -3351,6 +3374,8 @@ module Aws::DataZone
|
|
|
3351
3374
|
class IamUserProfileDetails
|
|
3352
3375
|
attr_accessor arn: ::String
|
|
3353
3376
|
attr_accessor principal_id: ::String
|
|
3377
|
+
attr_accessor session_name: ::String
|
|
3378
|
+
attr_accessor group_profile_id: ::String
|
|
3354
3379
|
SENSITIVE: []
|
|
3355
3380
|
end
|
|
3356
3381
|
|
|
@@ -3418,6 +3443,21 @@ module Aws::DataZone
|
|
|
3418
3443
|
SENSITIVE: []
|
|
3419
3444
|
end
|
|
3420
3445
|
|
|
3446
|
+
class LakehousePropertiesInput
|
|
3447
|
+
attr_accessor glue_lineage_sync_enabled: bool
|
|
3448
|
+
SENSITIVE: []
|
|
3449
|
+
end
|
|
3450
|
+
|
|
3451
|
+
class LakehousePropertiesOutput
|
|
3452
|
+
attr_accessor glue_lineage_sync_enabled: bool
|
|
3453
|
+
SENSITIVE: []
|
|
3454
|
+
end
|
|
3455
|
+
|
|
3456
|
+
class LakehousePropertiesPatch
|
|
3457
|
+
attr_accessor glue_lineage_sync_enabled: bool
|
|
3458
|
+
SENSITIVE: []
|
|
3459
|
+
end
|
|
3460
|
+
|
|
3421
3461
|
class LessThanExpression
|
|
3422
3462
|
attr_accessor column_name: ::String
|
|
3423
3463
|
attr_accessor value: ::String
|
|
@@ -3930,6 +3970,7 @@ module Aws::DataZone
|
|
|
3930
3970
|
attr_accessor user_identifier: ::String
|
|
3931
3971
|
attr_accessor group_identifier: ::String
|
|
3932
3972
|
attr_accessor name: ::String
|
|
3973
|
+
attr_accessor project_category: ::String
|
|
3933
3974
|
attr_accessor next_token: ::String
|
|
3934
3975
|
attr_accessor max_results: ::Integer
|
|
3935
3976
|
SENSITIVE: [:name]
|
|
@@ -4548,6 +4589,12 @@ module Aws::DataZone
|
|
|
4548
4589
|
SENSITIVE: []
|
|
4549
4590
|
end
|
|
4550
4591
|
|
|
4592
|
+
class ProjectMembershipAssignment
|
|
4593
|
+
attr_accessor member: Types::Member
|
|
4594
|
+
attr_accessor designation: ("PROJECT_OWNER" | "PROJECT_CONTRIBUTOR" | "PROJECT_CATALOG_VIEWER" | "PROJECT_CATALOG_CONSUMER" | "PROJECT_CATALOG_STEWARD")
|
|
4595
|
+
SENSITIVE: []
|
|
4596
|
+
end
|
|
4597
|
+
|
|
4551
4598
|
class ProjectPolicyGrantPrincipal
|
|
4552
4599
|
attr_accessor project_designation: ("OWNER" | "CONTRIBUTOR" | "PROJECT_CATALOG_STEWARD")
|
|
4553
4600
|
attr_accessor project_identifier: ::String
|
|
@@ -4579,6 +4626,7 @@ module Aws::DataZone
|
|
|
4579
4626
|
attr_accessor created_at: ::Time
|
|
4580
4627
|
attr_accessor updated_at: ::Time
|
|
4581
4628
|
attr_accessor domain_unit_id: ::String
|
|
4629
|
+
attr_accessor project_category: ::String
|
|
4582
4630
|
SENSITIVE: [:name, :description]
|
|
4583
4631
|
end
|
|
4584
4632
|
|
|
@@ -5127,7 +5175,7 @@ module Aws::DataZone
|
|
|
5127
5175
|
|
|
5128
5176
|
class SearchGroupProfilesInput
|
|
5129
5177
|
attr_accessor domain_identifier: ::String
|
|
5130
|
-
attr_accessor group_type: ("SSO_GROUP" | "DATAZONE_SSO_GROUP")
|
|
5178
|
+
attr_accessor group_type: ("SSO_GROUP" | "DATAZONE_SSO_GROUP" | "IAM_ROLE_SESSION_GROUP")
|
|
5131
5179
|
attr_accessor search_text: ::String
|
|
5132
5180
|
attr_accessor max_results: ::Integer
|
|
5133
5181
|
attr_accessor next_token: ::String
|
|
@@ -6071,6 +6119,8 @@ module Aws::DataZone
|
|
|
6071
6119
|
attr_accessor id: ::String
|
|
6072
6120
|
attr_accessor status: ("ASSIGNED" | "NOT_ASSIGNED")
|
|
6073
6121
|
attr_accessor group_name: ::String
|
|
6122
|
+
attr_accessor role_principal_arn: ::String
|
|
6123
|
+
attr_accessor role_principal_id: ::String
|
|
6074
6124
|
SENSITIVE: [:group_name]
|
|
6075
6125
|
end
|
|
6076
6126
|
|
|
@@ -6104,6 +6154,7 @@ module Aws::DataZone
|
|
|
6104
6154
|
attr_accessor project_profile_id: ::String
|
|
6105
6155
|
attr_accessor user_parameters: ::Array[Types::EnvironmentConfigurationUserParameter]
|
|
6106
6156
|
attr_accessor environment_deployment_details: Types::EnvironmentDeploymentDetails
|
|
6157
|
+
attr_accessor project_category: ::String
|
|
6107
6158
|
SENSITIVE: [:name, :description]
|
|
6108
6159
|
end
|
|
6109
6160
|
|
|
@@ -6267,6 +6318,7 @@ module Aws::DataZone
|
|
|
6267
6318
|
attr_accessor user_identifier: ::String
|
|
6268
6319
|
attr_accessor type: ("IAM" | "SSO")
|
|
6269
6320
|
attr_accessor status: ("ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED")
|
|
6321
|
+
attr_accessor session_name: ::String
|
|
6270
6322
|
SENSITIVE: []
|
|
6271
6323
|
end
|
|
6272
6324
|
|