aws-sdk-datazone 1.57.0 → 1.59.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b16930e2dd6b51cd3f05c738b06b10261aa7f0f6301b997b235e8b612509aa6
4
- data.tar.gz: 8a06048e0d614f26cd7a14e74543922083ae64327d52302a1b0ea81379f2594d
3
+ metadata.gz: 3ab7510875a8d7a231b8c8ccb567ccaa0fd3a5c8570a76f32601bc256749888e
4
+ data.tar.gz: 62121cc040b6bb0a50d5037dfe170e452e22558cb36522461de95b99a6e18405
5
5
  SHA512:
6
- metadata.gz: 880c092434cbf56a9d8e2280c3e99760112ce41613cdc86e7a92e9ffd794e95fe344ff7fa7721fc7dd00cff529cf6ea9a3e95aad204a6b87d36df1e9b29eaed0
7
- data.tar.gz: 6e3ed564327f502eb0d860f4baf1dfddcd854d6e8d735f99d23ec5fabe28ce23660c25d8dcead23199eef042e4fa0bf0d71b73006e2c3f42cceef7333cc84d7e
6
+ metadata.gz: 20bf4dfb7d9a5de1426d0e9fa5971196915f394382f789a506ebdf22a0f9853d58bac46c7328e51ed889d3d7951190ac994c3152329d6c8924a2d600e002a0c2
7
+ data.tar.gz: 4238d3b4c4f2d38c75a29d13b3f225077bebbcc0a7db3758816340435eaaa968a2184c497befa791c4d0af361c7fc6e6614ee5e68d76d6519782c1862b376c93
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.0 (2025-11-14)
5
+ ------------------
6
+
7
+ * Feature - Adds support for granting read and write access to Amazon S3 general purpose buckets using CreateSubscriptionRequest and AcceptSubscriptionRequest APIs. Also adds search filters for SSOUser and SSOGroup to ListSubscriptions APIs and deprecates "sortBy" parameter for ListSubscriptions APIs.
8
+
9
+ 1.58.0 (2025-11-10)
10
+ ------------------
11
+
12
+ * Feature - Remove trackingServerName from DataZone Connection MLflowProperties
13
+
4
14
  1.57.0 (2025-11-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.59.0
@@ -547,6 +547,9 @@ module Aws::DataZone
547
547
 
548
548
  # Accepts a subscription request to a specific asset.
549
549
  #
550
+ # @option params [Array<Types::AssetPermission>] :asset_permissions
551
+ # The asset permissions of the accept subscription request.
552
+ #
550
553
  # @option params [Array<Types::AcceptedAssetScope>] :asset_scopes
551
554
  # The asset scopes of the accept subscription request.
552
555
  #
@@ -582,6 +585,14 @@ module Aws::DataZone
582
585
  # @example Request syntax with placeholder values
583
586
  #
584
587
  # resp = client.accept_subscription_request({
588
+ # asset_permissions: [
589
+ # {
590
+ # asset_id: "AssetId", # required
591
+ # permissions: { # required
592
+ # s3: ["READ"], # accepts READ, WRITE
593
+ # },
594
+ # },
595
+ # ],
585
596
  # asset_scopes: [
586
597
  # {
587
598
  # asset_id: "AssetId", # required
@@ -624,6 +635,8 @@ module Aws::DataZone
624
635
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
625
636
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
626
637
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
638
+ # resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
639
+ # resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
627
640
  # resp.subscribed_listings[0].item.product_listing.asset_listings #=> Array
628
641
  # resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
629
642
  # resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
@@ -640,8 +653,16 @@ module Aws::DataZone
640
653
  # resp.subscribed_listings[0].owner_project_name #=> String
641
654
  # resp.subscribed_listings[0].revision #=> String
642
655
  # resp.subscribed_principals #=> Array
656
+ # resp.subscribed_principals[0].group.id #=> String
657
+ # resp.subscribed_principals[0].group.name #=> String
643
658
  # resp.subscribed_principals[0].project.id #=> String
644
659
  # resp.subscribed_principals[0].project.name #=> String
660
+ # resp.subscribed_principals[0].user.details.iam.arn #=> String
661
+ # resp.subscribed_principals[0].user.details.iam.principal_id #=> String
662
+ # resp.subscribed_principals[0].user.details.sso.first_name #=> String
663
+ # resp.subscribed_principals[0].user.details.sso.last_name #=> String
664
+ # resp.subscribed_principals[0].user.details.sso.username #=> String
665
+ # resp.subscribed_principals[0].user.id #=> String
645
666
  # resp.updated_at #=> Time
646
667
  # resp.updated_by #=> String
647
668
  #
@@ -985,6 +1006,8 @@ module Aws::DataZone
985
1006
  # resp.subscribed_listing.item.asset_listing.glossary_terms #=> Array
986
1007
  # resp.subscribed_listing.item.asset_listing.glossary_terms[0].name #=> String
987
1008
  # resp.subscribed_listing.item.asset_listing.glossary_terms[0].short_description #=> String
1009
+ # resp.subscribed_listing.item.asset_listing.permissions.s3 #=> Array
1010
+ # resp.subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
988
1011
  # resp.subscribed_listing.item.product_listing.asset_listings #=> Array
989
1012
  # resp.subscribed_listing.item.product_listing.asset_listings[0].entity_id #=> String
990
1013
  # resp.subscribed_listing.item.product_listing.asset_listings[0].entity_revision #=> String
@@ -1000,8 +1023,16 @@ module Aws::DataZone
1000
1023
  # resp.subscribed_listing.owner_project_id #=> String
1001
1024
  # resp.subscribed_listing.owner_project_name #=> String
1002
1025
  # resp.subscribed_listing.revision #=> String
1026
+ # resp.subscribed_principal.group.id #=> String
1027
+ # resp.subscribed_principal.group.name #=> String
1003
1028
  # resp.subscribed_principal.project.id #=> String
1004
1029
  # resp.subscribed_principal.project.name #=> String
1030
+ # resp.subscribed_principal.user.details.iam.arn #=> String
1031
+ # resp.subscribed_principal.user.details.iam.principal_id #=> String
1032
+ # resp.subscribed_principal.user.details.sso.first_name #=> String
1033
+ # resp.subscribed_principal.user.details.sso.last_name #=> String
1034
+ # resp.subscribed_principal.user.details.sso.username #=> String
1035
+ # resp.subscribed_principal.user.id #=> String
1005
1036
  # resp.subscription_request_id #=> String
1006
1037
  # resp.updated_at #=> Time
1007
1038
  # resp.updated_by #=> String
@@ -1859,7 +1890,6 @@ module Aws::DataZone
1859
1890
  # },
1860
1891
  # mlflow_properties: {
1861
1892
  # tracking_server_arn: "String",
1862
- # tracking_server_name: "String",
1863
1893
  # },
1864
1894
  # redshift_properties: {
1865
1895
  # credentials: {
@@ -1987,7 +2017,6 @@ module Aws::DataZone
1987
2017
  # resp.props.iam_properties.environment_id #=> String
1988
2018
  # resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
1989
2019
  # resp.props.mlflow_properties.tracking_server_arn #=> String
1990
- # resp.props.mlflow_properties.tracking_server_name #=> String
1991
2020
  # resp.props.redshift_properties.credentials.secret_arn #=> String
1992
2021
  # resp.props.redshift_properties.credentials.username_password.password #=> String
1993
2022
  # resp.props.redshift_properties.credentials.username_password.username #=> String
@@ -3934,6 +3963,7 @@ module Aws::DataZone
3934
3963
  # * {Types::CreateSubscriptionGrantOutput#created_at #created_at} => Time
3935
3964
  # * {Types::CreateSubscriptionGrantOutput#created_by #created_by} => String
3936
3965
  # * {Types::CreateSubscriptionGrantOutput#domain_id #domain_id} => String
3966
+ # * {Types::CreateSubscriptionGrantOutput#environment_id #environment_id} => String
3937
3967
  # * {Types::CreateSubscriptionGrantOutput#granted_entity #granted_entity} => Types::GrantedEntity
3938
3968
  # * {Types::CreateSubscriptionGrantOutput#id #id} => String
3939
3969
  # * {Types::CreateSubscriptionGrantOutput#status #status} => String
@@ -3976,11 +4006,14 @@ module Aws::DataZone
3976
4006
  # resp.assets[0].failure_cause.message #=> String
3977
4007
  # resp.assets[0].failure_timestamp #=> Time
3978
4008
  # resp.assets[0].granted_timestamp #=> Time
4009
+ # resp.assets[0].permissions.s3 #=> Array
4010
+ # resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
3979
4011
  # resp.assets[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "REVOKED", "GRANT_FAILED", "REVOKE_FAILED"
3980
4012
  # resp.assets[0].target_name #=> String
3981
4013
  # resp.created_at #=> Time
3982
4014
  # resp.created_by #=> String
3983
4015
  # resp.domain_id #=> String
4016
+ # resp.environment_id #=> String
3984
4017
  # resp.granted_entity.listing.id #=> String
3985
4018
  # resp.granted_entity.listing.revision #=> String
3986
4019
  # resp.id #=> String
@@ -4001,6 +4034,12 @@ module Aws::DataZone
4001
4034
 
4002
4035
  # Creates a subscription request in Amazon DataZone.
4003
4036
  #
4037
+ # @option params [Array<Types::AssetPermission>] :asset_permissions
4038
+ # The asset permissions of the subscription request.
4039
+ #
4040
+ # @option params [Array<Types::AcceptedAssetScope>] :asset_scopes
4041
+ # The asset scopes of the subscription request.
4042
+ #
4004
4043
  # @option params [String] :client_token
4005
4044
  # A unique, case-sensitive identifier that is provided to ensure the
4006
4045
  # idempotency of the request.
@@ -4045,6 +4084,20 @@ module Aws::DataZone
4045
4084
  # @example Request syntax with placeholder values
4046
4085
  #
4047
4086
  # resp = client.create_subscription_request({
4087
+ # asset_permissions: [
4088
+ # {
4089
+ # asset_id: "AssetId", # required
4090
+ # permissions: { # required
4091
+ # s3: ["READ"], # accepts READ, WRITE
4092
+ # },
4093
+ # },
4094
+ # ],
4095
+ # asset_scopes: [
4096
+ # {
4097
+ # asset_id: "AssetId", # required
4098
+ # filter_ids: ["FilterId"], # required
4099
+ # },
4100
+ # ],
4048
4101
  # client_token: "String",
4049
4102
  # domain_identifier: "DomainId", # required
4050
4103
  # metadata_forms: [
@@ -4063,9 +4116,15 @@ module Aws::DataZone
4063
4116
  # ],
4064
4117
  # subscribed_principals: [ # required
4065
4118
  # {
4119
+ # group: {
4120
+ # identifier: "GroupProfileId",
4121
+ # },
4066
4122
  # project: {
4067
4123
  # identifier: "ProjectId",
4068
4124
  # },
4125
+ # user: {
4126
+ # identifier: "UserProfileId",
4127
+ # },
4069
4128
  # },
4070
4129
  # ],
4071
4130
  # })
@@ -4101,6 +4160,8 @@ module Aws::DataZone
4101
4160
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
4102
4161
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
4103
4162
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
4163
+ # resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
4164
+ # resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
4104
4165
  # resp.subscribed_listings[0].item.product_listing.asset_listings #=> Array
4105
4166
  # resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
4106
4167
  # resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
@@ -4117,8 +4178,16 @@ module Aws::DataZone
4117
4178
  # resp.subscribed_listings[0].owner_project_name #=> String
4118
4179
  # resp.subscribed_listings[0].revision #=> String
4119
4180
  # resp.subscribed_principals #=> Array
4181
+ # resp.subscribed_principals[0].group.id #=> String
4182
+ # resp.subscribed_principals[0].group.name #=> String
4120
4183
  # resp.subscribed_principals[0].project.id #=> String
4121
4184
  # resp.subscribed_principals[0].project.name #=> String
4185
+ # resp.subscribed_principals[0].user.details.iam.arn #=> String
4186
+ # resp.subscribed_principals[0].user.details.iam.principal_id #=> String
4187
+ # resp.subscribed_principals[0].user.details.sso.first_name #=> String
4188
+ # resp.subscribed_principals[0].user.details.sso.last_name #=> String
4189
+ # resp.subscribed_principals[0].user.details.sso.username #=> String
4190
+ # resp.subscribed_principals[0].user.id #=> String
4122
4191
  # resp.updated_at #=> Time
4123
4192
  # resp.updated_by #=> String
4124
4193
  #
@@ -5126,6 +5195,7 @@ module Aws::DataZone
5126
5195
  # * {Types::DeleteSubscriptionGrantOutput#created_at #created_at} => Time
5127
5196
  # * {Types::DeleteSubscriptionGrantOutput#created_by #created_by} => String
5128
5197
  # * {Types::DeleteSubscriptionGrantOutput#domain_id #domain_id} => String
5198
+ # * {Types::DeleteSubscriptionGrantOutput#environment_id #environment_id} => String
5129
5199
  # * {Types::DeleteSubscriptionGrantOutput#granted_entity #granted_entity} => Types::GrantedEntity
5130
5200
  # * {Types::DeleteSubscriptionGrantOutput#id #id} => String
5131
5201
  # * {Types::DeleteSubscriptionGrantOutput#status #status} => String
@@ -5154,11 +5224,14 @@ module Aws::DataZone
5154
5224
  # resp.assets[0].failure_cause.message #=> String
5155
5225
  # resp.assets[0].failure_timestamp #=> Time
5156
5226
  # resp.assets[0].granted_timestamp #=> Time
5227
+ # resp.assets[0].permissions.s3 #=> Array
5228
+ # resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
5157
5229
  # resp.assets[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "REVOKED", "GRANT_FAILED", "REVOKE_FAILED"
5158
5230
  # resp.assets[0].target_name #=> String
5159
5231
  # resp.created_at #=> Time
5160
5232
  # resp.created_by #=> String
5161
5233
  # resp.domain_id #=> String
5234
+ # resp.environment_id #=> String
5162
5235
  # resp.granted_entity.listing.id #=> String
5163
5236
  # resp.granted_entity.listing.revision #=> String
5164
5237
  # resp.id #=> String
@@ -5810,7 +5883,6 @@ module Aws::DataZone
5810
5883
  # resp.props.iam_properties.environment_id #=> String
5811
5884
  # resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
5812
5885
  # resp.props.mlflow_properties.tracking_server_arn #=> String
5813
- # resp.props.mlflow_properties.tracking_server_name #=> String
5814
5886
  # resp.props.redshift_properties.credentials.secret_arn #=> String
5815
5887
  # resp.props.redshift_properties.credentials.username_password.password #=> String
5816
5888
  # resp.props.redshift_properties.credentials.username_password.username #=> String
@@ -7511,6 +7583,8 @@ module Aws::DataZone
7511
7583
  # resp.subscribed_listing.item.asset_listing.glossary_terms #=> Array
7512
7584
  # resp.subscribed_listing.item.asset_listing.glossary_terms[0].name #=> String
7513
7585
  # resp.subscribed_listing.item.asset_listing.glossary_terms[0].short_description #=> String
7586
+ # resp.subscribed_listing.item.asset_listing.permissions.s3 #=> Array
7587
+ # resp.subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
7514
7588
  # resp.subscribed_listing.item.product_listing.asset_listings #=> Array
7515
7589
  # resp.subscribed_listing.item.product_listing.asset_listings[0].entity_id #=> String
7516
7590
  # resp.subscribed_listing.item.product_listing.asset_listings[0].entity_revision #=> String
@@ -7526,8 +7600,16 @@ module Aws::DataZone
7526
7600
  # resp.subscribed_listing.owner_project_id #=> String
7527
7601
  # resp.subscribed_listing.owner_project_name #=> String
7528
7602
  # resp.subscribed_listing.revision #=> String
7603
+ # resp.subscribed_principal.group.id #=> String
7604
+ # resp.subscribed_principal.group.name #=> String
7529
7605
  # resp.subscribed_principal.project.id #=> String
7530
7606
  # resp.subscribed_principal.project.name #=> String
7607
+ # resp.subscribed_principal.user.details.iam.arn #=> String
7608
+ # resp.subscribed_principal.user.details.iam.principal_id #=> String
7609
+ # resp.subscribed_principal.user.details.sso.first_name #=> String
7610
+ # resp.subscribed_principal.user.details.sso.last_name #=> String
7611
+ # resp.subscribed_principal.user.details.sso.username #=> String
7612
+ # resp.subscribed_principal.user.id #=> String
7531
7613
  # resp.subscription_request_id #=> String
7532
7614
  # resp.updated_at #=> Time
7533
7615
  # resp.updated_by #=> String
@@ -7556,6 +7638,7 @@ module Aws::DataZone
7556
7638
  # * {Types::GetSubscriptionGrantOutput#created_at #created_at} => Time
7557
7639
  # * {Types::GetSubscriptionGrantOutput#created_by #created_by} => String
7558
7640
  # * {Types::GetSubscriptionGrantOutput#domain_id #domain_id} => String
7641
+ # * {Types::GetSubscriptionGrantOutput#environment_id #environment_id} => String
7559
7642
  # * {Types::GetSubscriptionGrantOutput#granted_entity #granted_entity} => Types::GrantedEntity
7560
7643
  # * {Types::GetSubscriptionGrantOutput#id #id} => String
7561
7644
  # * {Types::GetSubscriptionGrantOutput#status #status} => String
@@ -7584,11 +7667,14 @@ module Aws::DataZone
7584
7667
  # resp.assets[0].failure_cause.message #=> String
7585
7668
  # resp.assets[0].failure_timestamp #=> Time
7586
7669
  # resp.assets[0].granted_timestamp #=> Time
7670
+ # resp.assets[0].permissions.s3 #=> Array
7671
+ # resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
7587
7672
  # resp.assets[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "REVOKED", "GRANT_FAILED", "REVOKE_FAILED"
7588
7673
  # resp.assets[0].target_name #=> String
7589
7674
  # resp.created_at #=> Time
7590
7675
  # resp.created_by #=> String
7591
7676
  # resp.domain_id #=> String
7677
+ # resp.environment_id #=> String
7592
7678
  # resp.granted_entity.listing.id #=> String
7593
7679
  # resp.granted_entity.listing.revision #=> String
7594
7680
  # resp.id #=> String
@@ -7672,6 +7758,8 @@ module Aws::DataZone
7672
7758
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
7673
7759
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
7674
7760
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
7761
+ # resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
7762
+ # resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
7675
7763
  # resp.subscribed_listings[0].item.product_listing.asset_listings #=> Array
7676
7764
  # resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
7677
7765
  # resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
@@ -7688,8 +7776,16 @@ module Aws::DataZone
7688
7776
  # resp.subscribed_listings[0].owner_project_name #=> String
7689
7777
  # resp.subscribed_listings[0].revision #=> String
7690
7778
  # resp.subscribed_principals #=> Array
7779
+ # resp.subscribed_principals[0].group.id #=> String
7780
+ # resp.subscribed_principals[0].group.name #=> String
7691
7781
  # resp.subscribed_principals[0].project.id #=> String
7692
7782
  # resp.subscribed_principals[0].project.name #=> String
7783
+ # resp.subscribed_principals[0].user.details.iam.arn #=> String
7784
+ # resp.subscribed_principals[0].user.details.iam.principal_id #=> String
7785
+ # resp.subscribed_principals[0].user.details.sso.first_name #=> String
7786
+ # resp.subscribed_principals[0].user.details.sso.last_name #=> String
7787
+ # resp.subscribed_principals[0].user.details.sso.username #=> String
7788
+ # resp.subscribed_principals[0].user.id #=> String
7693
7789
  # resp.updated_at #=> Time
7694
7790
  # resp.updated_by #=> String
7695
7791
  #
@@ -8288,7 +8384,6 @@ module Aws::DataZone
8288
8384
  # resp.items[0].props.iam_properties.environment_id #=> String
8289
8385
  # resp.items[0].props.iam_properties.glue_lineage_sync_enabled #=> Boolean
8290
8386
  # resp.items[0].props.mlflow_properties.tracking_server_arn #=> String
8291
- # resp.items[0].props.mlflow_properties.tracking_server_name #=> String
8292
8387
  # resp.items[0].props.redshift_properties.credentials.secret_arn #=> String
8293
8388
  # resp.items[0].props.redshift_properties.credentials.username_password.password #=> String
8294
8389
  # resp.items[0].props.redshift_properties.credentials.username_password.username #=> String
@@ -10028,9 +10123,15 @@ module Aws::DataZone
10028
10123
  # You can specify this `NextToken` value in a subsequent call to
10029
10124
  # `ListSubscriptionGrants` to list the next set of subscription grants.
10030
10125
  #
10126
+ # @option params [String] :owning_group_id
10127
+ # The ID of the owning group.
10128
+ #
10031
10129
  # @option params [String] :owning_project_id
10032
10130
  # The ID of the owning project of the subscription grants.
10033
10131
  #
10132
+ # @option params [String] :owning_user_id
10133
+ # The ID of the owning user.
10134
+ #
10034
10135
  # @option params [String] :sort_by
10035
10136
  # Specifies the way of sorting the results of this action.
10036
10137
  #
@@ -10060,7 +10161,9 @@ module Aws::DataZone
10060
10161
  # environment_id: "EnvironmentId",
10061
10162
  # max_results: 1,
10062
10163
  # next_token: "PaginationToken",
10164
+ # owning_group_id: "GroupProfileId",
10063
10165
  # owning_project_id: "ProjectId",
10166
+ # owning_user_id: "UserProfileId",
10064
10167
  # sort_by: "CREATED_AT", # accepts CREATED_AT, UPDATED_AT
10065
10168
  # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
10066
10169
  # subscribed_listing_id: "ListingId",
@@ -10082,11 +10185,14 @@ module Aws::DataZone
10082
10185
  # resp.items[0].assets[0].failure_cause.message #=> String
10083
10186
  # resp.items[0].assets[0].failure_timestamp #=> Time
10084
10187
  # resp.items[0].assets[0].granted_timestamp #=> Time
10188
+ # resp.items[0].assets[0].permissions.s3 #=> Array
10189
+ # resp.items[0].assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
10085
10190
  # resp.items[0].assets[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "REVOKED", "GRANT_FAILED", "REVOKE_FAILED"
10086
10191
  # resp.items[0].assets[0].target_name #=> String
10087
10192
  # resp.items[0].created_at #=> Time
10088
10193
  # resp.items[0].created_by #=> String
10089
10194
  # resp.items[0].domain_id #=> String
10195
+ # resp.items[0].environment_id #=> String
10090
10196
  # resp.items[0].granted_entity.listing.id #=> String
10091
10197
  # resp.items[0].granted_entity.listing.revision #=> String
10092
10198
  # resp.items[0].id #=> String
@@ -10131,9 +10237,15 @@ module Aws::DataZone
10131
10237
  # `ListSubscriptionRequests` to list the next set of subscription
10132
10238
  # requests.
10133
10239
  #
10240
+ # @option params [String] :owning_group_id
10241
+ # The ID of the owning group.
10242
+ #
10134
10243
  # @option params [String] :owning_project_id
10135
10244
  # The identifier of the project for the subscription requests.
10136
10245
  #
10246
+ # @option params [String] :owning_user_id
10247
+ # The ID of the owning user.
10248
+ #
10137
10249
  # @option params [String] :sort_by
10138
10250
  # Specifies the way to sort the results of this action.
10139
10251
  #
@@ -10165,7 +10277,9 @@ module Aws::DataZone
10165
10277
  # domain_identifier: "DomainId", # required
10166
10278
  # max_results: 1,
10167
10279
  # next_token: "PaginationToken",
10280
+ # owning_group_id: "GroupProfileId",
10168
10281
  # owning_project_id: "ProjectId",
10282
+ # owning_user_id: "UserProfileId",
10169
10283
  # sort_by: "CREATED_AT", # accepts CREATED_AT, UPDATED_AT
10170
10284
  # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
10171
10285
  # status: "PENDING", # accepts PENDING, ACCEPTED, REJECTED
@@ -10203,6 +10317,8 @@ module Aws::DataZone
10203
10317
  # resp.items[0].subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
10204
10318
  # resp.items[0].subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
10205
10319
  # resp.items[0].subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
10320
+ # resp.items[0].subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
10321
+ # resp.items[0].subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
10206
10322
  # resp.items[0].subscribed_listings[0].item.product_listing.asset_listings #=> Array
10207
10323
  # resp.items[0].subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
10208
10324
  # resp.items[0].subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
@@ -10219,8 +10335,16 @@ module Aws::DataZone
10219
10335
  # resp.items[0].subscribed_listings[0].owner_project_name #=> String
10220
10336
  # resp.items[0].subscribed_listings[0].revision #=> String
10221
10337
  # resp.items[0].subscribed_principals #=> Array
10338
+ # resp.items[0].subscribed_principals[0].group.id #=> String
10339
+ # resp.items[0].subscribed_principals[0].group.name #=> String
10222
10340
  # resp.items[0].subscribed_principals[0].project.id #=> String
10223
10341
  # resp.items[0].subscribed_principals[0].project.name #=> String
10342
+ # resp.items[0].subscribed_principals[0].user.details.iam.arn #=> String
10343
+ # resp.items[0].subscribed_principals[0].user.details.iam.principal_id #=> String
10344
+ # resp.items[0].subscribed_principals[0].user.details.sso.first_name #=> String
10345
+ # resp.items[0].subscribed_principals[0].user.details.sso.last_name #=> String
10346
+ # resp.items[0].subscribed_principals[0].user.details.sso.username #=> String
10347
+ # resp.items[0].subscribed_principals[0].user.id #=> String
10224
10348
  # resp.items[0].updated_at #=> Time
10225
10349
  # resp.items[0].updated_by #=> String
10226
10350
  # resp.next_token #=> String
@@ -10342,9 +10466,15 @@ module Aws::DataZone
10342
10466
  # specify this `NextToken` value in a subsequent call to
10343
10467
  # `ListSubscriptions` to list the next set of subscriptions.
10344
10468
  #
10469
+ # @option params [String] :owning_group_id
10470
+ # The ID of the owning group.
10471
+ #
10345
10472
  # @option params [String] :owning_project_id
10346
10473
  # The identifier of the owning project.
10347
10474
  #
10475
+ # @option params [String] :owning_user_id
10476
+ # The ID of the owning user.
10477
+ #
10348
10478
  # @option params [String] :sort_by
10349
10479
  # Specifies the way in which the results of this action are to be
10350
10480
  # sorted.
@@ -10382,7 +10512,9 @@ module Aws::DataZone
10382
10512
  # domain_identifier: "DomainId", # required
10383
10513
  # max_results: 1,
10384
10514
  # next_token: "PaginationToken",
10515
+ # owning_group_id: "GroupProfileId",
10385
10516
  # owning_project_id: "ProjectId",
10517
+ # owning_user_id: "UserProfileId",
10386
10518
  # sort_by: "CREATED_AT", # accepts CREATED_AT, UPDATED_AT
10387
10519
  # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
10388
10520
  # status: "APPROVED", # accepts APPROVED, REVOKED, CANCELLED
@@ -10413,6 +10545,8 @@ module Aws::DataZone
10413
10545
  # resp.items[0].subscribed_listing.item.asset_listing.glossary_terms #=> Array
10414
10546
  # resp.items[0].subscribed_listing.item.asset_listing.glossary_terms[0].name #=> String
10415
10547
  # resp.items[0].subscribed_listing.item.asset_listing.glossary_terms[0].short_description #=> String
10548
+ # resp.items[0].subscribed_listing.item.asset_listing.permissions.s3 #=> Array
10549
+ # resp.items[0].subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
10416
10550
  # resp.items[0].subscribed_listing.item.product_listing.asset_listings #=> Array
10417
10551
  # resp.items[0].subscribed_listing.item.product_listing.asset_listings[0].entity_id #=> String
10418
10552
  # resp.items[0].subscribed_listing.item.product_listing.asset_listings[0].entity_revision #=> String
@@ -10428,8 +10562,16 @@ module Aws::DataZone
10428
10562
  # resp.items[0].subscribed_listing.owner_project_id #=> String
10429
10563
  # resp.items[0].subscribed_listing.owner_project_name #=> String
10430
10564
  # resp.items[0].subscribed_listing.revision #=> String
10565
+ # resp.items[0].subscribed_principal.group.id #=> String
10566
+ # resp.items[0].subscribed_principal.group.name #=> String
10431
10567
  # resp.items[0].subscribed_principal.project.id #=> String
10432
10568
  # resp.items[0].subscribed_principal.project.name #=> String
10569
+ # resp.items[0].subscribed_principal.user.details.iam.arn #=> String
10570
+ # resp.items[0].subscribed_principal.user.details.iam.principal_id #=> String
10571
+ # resp.items[0].subscribed_principal.user.details.sso.first_name #=> String
10572
+ # resp.items[0].subscribed_principal.user.details.sso.last_name #=> String
10573
+ # resp.items[0].subscribed_principal.user.details.sso.username #=> String
10574
+ # resp.items[0].subscribed_principal.user.id #=> String
10433
10575
  # resp.items[0].subscription_request_id #=> String
10434
10576
  # resp.items[0].updated_at #=> Time
10435
10577
  # resp.items[0].updated_by #=> String
@@ -10897,6 +11039,8 @@ module Aws::DataZone
10897
11039
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
10898
11040
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
10899
11041
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
11042
+ # resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
11043
+ # resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
10900
11044
  # resp.subscribed_listings[0].item.product_listing.asset_listings #=> Array
10901
11045
  # resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
10902
11046
  # resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
@@ -10913,8 +11057,16 @@ module Aws::DataZone
10913
11057
  # resp.subscribed_listings[0].owner_project_name #=> String
10914
11058
  # resp.subscribed_listings[0].revision #=> String
10915
11059
  # resp.subscribed_principals #=> Array
11060
+ # resp.subscribed_principals[0].group.id #=> String
11061
+ # resp.subscribed_principals[0].group.name #=> String
10916
11062
  # resp.subscribed_principals[0].project.id #=> String
10917
11063
  # resp.subscribed_principals[0].project.name #=> String
11064
+ # resp.subscribed_principals[0].user.details.iam.arn #=> String
11065
+ # resp.subscribed_principals[0].user.details.iam.principal_id #=> String
11066
+ # resp.subscribed_principals[0].user.details.sso.first_name #=> String
11067
+ # resp.subscribed_principals[0].user.details.sso.last_name #=> String
11068
+ # resp.subscribed_principals[0].user.details.sso.username #=> String
11069
+ # resp.subscribed_principals[0].user.id #=> String
10918
11070
  # resp.updated_at #=> Time
10919
11071
  # resp.updated_by #=> String
10920
11072
  #
@@ -11111,6 +11263,8 @@ module Aws::DataZone
11111
11263
  # resp.subscribed_listing.item.asset_listing.glossary_terms #=> Array
11112
11264
  # resp.subscribed_listing.item.asset_listing.glossary_terms[0].name #=> String
11113
11265
  # resp.subscribed_listing.item.asset_listing.glossary_terms[0].short_description #=> String
11266
+ # resp.subscribed_listing.item.asset_listing.permissions.s3 #=> Array
11267
+ # resp.subscribed_listing.item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
11114
11268
  # resp.subscribed_listing.item.product_listing.asset_listings #=> Array
11115
11269
  # resp.subscribed_listing.item.product_listing.asset_listings[0].entity_id #=> String
11116
11270
  # resp.subscribed_listing.item.product_listing.asset_listings[0].entity_revision #=> String
@@ -11126,8 +11280,16 @@ module Aws::DataZone
11126
11280
  # resp.subscribed_listing.owner_project_id #=> String
11127
11281
  # resp.subscribed_listing.owner_project_name #=> String
11128
11282
  # resp.subscribed_listing.revision #=> String
11283
+ # resp.subscribed_principal.group.id #=> String
11284
+ # resp.subscribed_principal.group.name #=> String
11129
11285
  # resp.subscribed_principal.project.id #=> String
11130
11286
  # resp.subscribed_principal.project.name #=> String
11287
+ # resp.subscribed_principal.user.details.iam.arn #=> String
11288
+ # resp.subscribed_principal.user.details.iam.principal_id #=> String
11289
+ # resp.subscribed_principal.user.details.sso.first_name #=> String
11290
+ # resp.subscribed_principal.user.details.sso.last_name #=> String
11291
+ # resp.subscribed_principal.user.details.sso.username #=> String
11292
+ # resp.subscribed_principal.user.id #=> String
11131
11293
  # resp.subscription_request_id #=> String
11132
11294
  # resp.updated_at #=> Time
11133
11295
  # resp.updated_by #=> String
@@ -12414,7 +12576,6 @@ module Aws::DataZone
12414
12576
  # },
12415
12577
  # mlflow_properties: {
12416
12578
  # tracking_server_arn: "String",
12417
- # tracking_server_name: "String",
12418
12579
  # },
12419
12580
  # redshift_properties: {
12420
12581
  # credentials: {
@@ -12529,7 +12690,6 @@ module Aws::DataZone
12529
12690
  # resp.props.iam_properties.environment_id #=> String
12530
12691
  # resp.props.iam_properties.glue_lineage_sync_enabled #=> Boolean
12531
12692
  # resp.props.mlflow_properties.tracking_server_arn #=> String
12532
- # resp.props.mlflow_properties.tracking_server_name #=> String
12533
12693
  # resp.props.redshift_properties.credentials.secret_arn #=> String
12534
12694
  # resp.props.redshift_properties.credentials.username_password.password #=> String
12535
12695
  # resp.props.redshift_properties.credentials.username_password.username #=> String
@@ -13971,6 +14131,7 @@ module Aws::DataZone
13971
14131
  # * {Types::UpdateSubscriptionGrantStatusOutput#created_at #created_at} => Time
13972
14132
  # * {Types::UpdateSubscriptionGrantStatusOutput#created_by #created_by} => String
13973
14133
  # * {Types::UpdateSubscriptionGrantStatusOutput#domain_id #domain_id} => String
14134
+ # * {Types::UpdateSubscriptionGrantStatusOutput#environment_id #environment_id} => String
13974
14135
  # * {Types::UpdateSubscriptionGrantStatusOutput#granted_entity #granted_entity} => Types::GrantedEntity
13975
14136
  # * {Types::UpdateSubscriptionGrantStatusOutput#id #id} => String
13976
14137
  # * {Types::UpdateSubscriptionGrantStatusOutput#status #status} => String
@@ -14005,11 +14166,14 @@ module Aws::DataZone
14005
14166
  # resp.assets[0].failure_cause.message #=> String
14006
14167
  # resp.assets[0].failure_timestamp #=> Time
14007
14168
  # resp.assets[0].granted_timestamp #=> Time
14169
+ # resp.assets[0].permissions.s3 #=> Array
14170
+ # resp.assets[0].permissions.s3[0] #=> String, one of "READ", "WRITE"
14008
14171
  # resp.assets[0].status #=> String, one of "GRANT_PENDING", "REVOKE_PENDING", "GRANT_IN_PROGRESS", "REVOKE_IN_PROGRESS", "GRANTED", "REVOKED", "GRANT_FAILED", "REVOKE_FAILED"
14009
14172
  # resp.assets[0].target_name #=> String
14010
14173
  # resp.created_at #=> Time
14011
14174
  # resp.created_by #=> String
14012
14175
  # resp.domain_id #=> String
14176
+ # resp.environment_id #=> String
14013
14177
  # resp.granted_entity.listing.id #=> String
14014
14178
  # resp.granted_entity.listing.revision #=> String
14015
14179
  # resp.id #=> String
@@ -14096,6 +14260,8 @@ module Aws::DataZone
14096
14260
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms #=> Array
14097
14261
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].name #=> String
14098
14262
  # resp.subscribed_listings[0].item.asset_listing.glossary_terms[0].short_description #=> String
14263
+ # resp.subscribed_listings[0].item.asset_listing.permissions.s3 #=> Array
14264
+ # resp.subscribed_listings[0].item.asset_listing.permissions.s3[0] #=> String, one of "READ", "WRITE"
14099
14265
  # resp.subscribed_listings[0].item.product_listing.asset_listings #=> Array
14100
14266
  # resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_id #=> String
14101
14267
  # resp.subscribed_listings[0].item.product_listing.asset_listings[0].entity_revision #=> String
@@ -14112,8 +14278,16 @@ module Aws::DataZone
14112
14278
  # resp.subscribed_listings[0].owner_project_name #=> String
14113
14279
  # resp.subscribed_listings[0].revision #=> String
14114
14280
  # resp.subscribed_principals #=> Array
14281
+ # resp.subscribed_principals[0].group.id #=> String
14282
+ # resp.subscribed_principals[0].group.name #=> String
14115
14283
  # resp.subscribed_principals[0].project.id #=> String
14116
14284
  # resp.subscribed_principals[0].project.name #=> String
14285
+ # resp.subscribed_principals[0].user.details.iam.arn #=> String
14286
+ # resp.subscribed_principals[0].user.details.iam.principal_id #=> String
14287
+ # resp.subscribed_principals[0].user.details.sso.first_name #=> String
14288
+ # resp.subscribed_principals[0].user.details.sso.last_name #=> String
14289
+ # resp.subscribed_principals[0].user.details.sso.username #=> String
14290
+ # resp.subscribed_principals[0].user.id #=> String
14117
14291
  # resp.updated_at #=> Time
14118
14292
  # resp.updated_by #=> String
14119
14293
  #
@@ -14302,7 +14476,7 @@ module Aws::DataZone
14302
14476
  tracer: tracer
14303
14477
  )
14304
14478
  context[:gem_name] = 'aws-sdk-datazone'
14305
- context[:gem_version] = '1.57.0'
14479
+ context[:gem_version] = '1.59.0'
14306
14480
  Seahorse::Client::Request.new(handlers, context)
14307
14481
  end
14308
14482