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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +181 -7
- data/lib/aws-sdk-datazone/client_api.rb +66 -6
- data/lib/aws-sdk-datazone/types.rb +230 -39
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +40 -4
- data/sig/types.rbs +67 -3
- metadata +1 -1
|
@@ -126,6 +126,10 @@ module Aws::DataZone
|
|
|
126
126
|
include Aws::Structure
|
|
127
127
|
end
|
|
128
128
|
|
|
129
|
+
# @!attribute [rw] asset_permissions
|
|
130
|
+
# The asset permissions of the accept subscription request.
|
|
131
|
+
# @return [Array<Types::AssetPermission>]
|
|
132
|
+
#
|
|
129
133
|
# @!attribute [rw] asset_scopes
|
|
130
134
|
# The asset scopes of the accept subscription request.
|
|
131
135
|
# @return [Array<Types::AcceptedAssetScope>]
|
|
@@ -148,6 +152,7 @@ module Aws::DataZone
|
|
|
148
152
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AcceptSubscriptionRequestInput AWS API Documentation
|
|
149
153
|
#
|
|
150
154
|
class AcceptSubscriptionRequestInput < Struct.new(
|
|
155
|
+
:asset_permissions,
|
|
151
156
|
:asset_scopes,
|
|
152
157
|
:decision_comment,
|
|
153
158
|
:domain_identifier,
|
|
@@ -1087,6 +1092,25 @@ module Aws::DataZone
|
|
|
1087
1092
|
include Aws::Structure
|
|
1088
1093
|
end
|
|
1089
1094
|
|
|
1095
|
+
# The asset permissions.
|
|
1096
|
+
#
|
|
1097
|
+
# @!attribute [rw] asset_id
|
|
1098
|
+
# The asset ID as part of the asset permissions.
|
|
1099
|
+
# @return [String]
|
|
1100
|
+
#
|
|
1101
|
+
# @!attribute [rw] permissions
|
|
1102
|
+
# The details as part of the asset permissions.
|
|
1103
|
+
# @return [Types::Permissions]
|
|
1104
|
+
#
|
|
1105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssetPermission AWS API Documentation
|
|
1106
|
+
#
|
|
1107
|
+
class AssetPermission < Struct.new(
|
|
1108
|
+
:asset_id,
|
|
1109
|
+
:permissions)
|
|
1110
|
+
SENSITIVE = []
|
|
1111
|
+
include Aws::Structure
|
|
1112
|
+
end
|
|
1113
|
+
|
|
1090
1114
|
# The revision of an inventory asset.
|
|
1091
1115
|
#
|
|
1092
1116
|
# @!attribute [rw] created_at
|
|
@@ -4994,6 +5018,10 @@ module Aws::DataZone
|
|
|
4994
5018
|
# is created.
|
|
4995
5019
|
# @return [String]
|
|
4996
5020
|
#
|
|
5021
|
+
# @!attribute [rw] environment_id
|
|
5022
|
+
# The environment ID for which subscription grant is created.
|
|
5023
|
+
# @return [String]
|
|
5024
|
+
#
|
|
4997
5025
|
# @!attribute [rw] granted_entity
|
|
4998
5026
|
# The entity to which the subscription is granted.
|
|
4999
5027
|
# @return [Types::GrantedEntity]
|
|
@@ -5030,6 +5058,7 @@ module Aws::DataZone
|
|
|
5030
5058
|
:created_at,
|
|
5031
5059
|
:created_by,
|
|
5032
5060
|
:domain_id,
|
|
5061
|
+
:environment_id,
|
|
5033
5062
|
:granted_entity,
|
|
5034
5063
|
:id,
|
|
5035
5064
|
:status,
|
|
@@ -5041,6 +5070,14 @@ module Aws::DataZone
|
|
|
5041
5070
|
include Aws::Structure
|
|
5042
5071
|
end
|
|
5043
5072
|
|
|
5073
|
+
# @!attribute [rw] asset_permissions
|
|
5074
|
+
# The asset permissions of the subscription request.
|
|
5075
|
+
# @return [Array<Types::AssetPermission>]
|
|
5076
|
+
#
|
|
5077
|
+
# @!attribute [rw] asset_scopes
|
|
5078
|
+
# The asset scopes of the subscription request.
|
|
5079
|
+
# @return [Array<Types::AcceptedAssetScope>]
|
|
5080
|
+
#
|
|
5044
5081
|
# @!attribute [rw] client_token
|
|
5045
5082
|
# A unique, case-sensitive identifier that is provided to ensure the
|
|
5046
5083
|
# idempotency of the request.
|
|
@@ -5075,6 +5112,8 @@ module Aws::DataZone
|
|
|
5075
5112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateSubscriptionRequestInput AWS API Documentation
|
|
5076
5113
|
#
|
|
5077
5114
|
class CreateSubscriptionRequestInput < Struct.new(
|
|
5115
|
+
:asset_permissions,
|
|
5116
|
+
:asset_scopes,
|
|
5078
5117
|
:client_token,
|
|
5079
5118
|
:domain_identifier,
|
|
5080
5119
|
:metadata_forms,
|
|
@@ -5345,7 +5384,7 @@ module Aws::DataZone
|
|
|
5345
5384
|
end
|
|
5346
5385
|
|
|
5347
5386
|
# @!attribute [rw] details
|
|
5348
|
-
# The
|
|
5387
|
+
# The user profile details.
|
|
5349
5388
|
# @return [Types::UserProfileDetails]
|
|
5350
5389
|
#
|
|
5351
5390
|
# @!attribute [rw] domain_id
|
|
@@ -6730,6 +6769,11 @@ module Aws::DataZone
|
|
|
6730
6769
|
# is deleted.
|
|
6731
6770
|
# @return [String]
|
|
6732
6771
|
#
|
|
6772
|
+
# @!attribute [rw] environment_id
|
|
6773
|
+
# The ID of the environment in which the subscription grant is
|
|
6774
|
+
# deleted.
|
|
6775
|
+
# @return [String]
|
|
6776
|
+
#
|
|
6733
6777
|
# @!attribute [rw] granted_entity
|
|
6734
6778
|
# The entity to which the subscription is deleted.
|
|
6735
6779
|
# @return [Types::GrantedEntity]
|
|
@@ -6769,6 +6813,7 @@ module Aws::DataZone
|
|
|
6769
6813
|
:created_at,
|
|
6770
6814
|
:created_by,
|
|
6771
6815
|
:domain_id,
|
|
6816
|
+
:environment_id,
|
|
6772
6817
|
:granted_entity,
|
|
6773
6818
|
:id,
|
|
6774
6819
|
:status,
|
|
@@ -10600,6 +10645,10 @@ module Aws::DataZone
|
|
|
10600
10645
|
# exists.
|
|
10601
10646
|
# @return [String]
|
|
10602
10647
|
#
|
|
10648
|
+
# @!attribute [rw] environment_id
|
|
10649
|
+
# The environment ID of the subscription grant.
|
|
10650
|
+
# @return [String]
|
|
10651
|
+
#
|
|
10603
10652
|
# @!attribute [rw] granted_entity
|
|
10604
10653
|
# The entity to which the subscription is granted.
|
|
10605
10654
|
# @return [Types::GrantedEntity]
|
|
@@ -10635,6 +10684,7 @@ module Aws::DataZone
|
|
|
10635
10684
|
:created_at,
|
|
10636
10685
|
:created_by,
|
|
10637
10686
|
:domain_id,
|
|
10687
|
+
:environment_id,
|
|
10638
10688
|
:granted_entity,
|
|
10639
10689
|
:id,
|
|
10640
10690
|
:status,
|
|
@@ -11027,7 +11077,7 @@ module Aws::DataZone
|
|
|
11027
11077
|
end
|
|
11028
11078
|
|
|
11029
11079
|
# @!attribute [rw] details
|
|
11030
|
-
# The
|
|
11080
|
+
# The user profile details.
|
|
11031
11081
|
# @return [Types::UserProfileDetails]
|
|
11032
11082
|
#
|
|
11033
11083
|
# @!attribute [rw] domain_id
|
|
@@ -11845,14 +11895,12 @@ module Aws::DataZone
|
|
|
11845
11895
|
include Aws::Structure
|
|
11846
11896
|
end
|
|
11847
11897
|
|
|
11848
|
-
# The details of an IAM user profile in Amazon DataZone.
|
|
11849
|
-
#
|
|
11850
11898
|
# @!attribute [rw] arn
|
|
11851
|
-
# The ARN of
|
|
11899
|
+
# The ARN of the IAM user.
|
|
11852
11900
|
# @return [String]
|
|
11853
11901
|
#
|
|
11854
11902
|
# @!attribute [rw] principal_id
|
|
11855
|
-
#
|
|
11903
|
+
# The principal ID as part of the IAM user profile details.
|
|
11856
11904
|
# @return [String]
|
|
11857
11905
|
#
|
|
11858
11906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IamUserProfileDetails AWS API Documentation
|
|
@@ -14309,10 +14357,18 @@ module Aws::DataZone
|
|
|
14309
14357
|
# grants.
|
|
14310
14358
|
# @return [String]
|
|
14311
14359
|
#
|
|
14360
|
+
# @!attribute [rw] owning_group_id
|
|
14361
|
+
# The ID of the owning group.
|
|
14362
|
+
# @return [String]
|
|
14363
|
+
#
|
|
14312
14364
|
# @!attribute [rw] owning_project_id
|
|
14313
14365
|
# The ID of the owning project of the subscription grants.
|
|
14314
14366
|
# @return [String]
|
|
14315
14367
|
#
|
|
14368
|
+
# @!attribute [rw] owning_user_id
|
|
14369
|
+
# The ID of the owning user.
|
|
14370
|
+
# @return [String]
|
|
14371
|
+
#
|
|
14316
14372
|
# @!attribute [rw] sort_by
|
|
14317
14373
|
# Specifies the way of sorting the results of this action.
|
|
14318
14374
|
# @return [String]
|
|
@@ -14340,7 +14396,9 @@ module Aws::DataZone
|
|
|
14340
14396
|
:environment_id,
|
|
14341
14397
|
:max_results,
|
|
14342
14398
|
:next_token,
|
|
14399
|
+
:owning_group_id,
|
|
14343
14400
|
:owning_project_id,
|
|
14401
|
+
:owning_user_id,
|
|
14344
14402
|
:sort_by,
|
|
14345
14403
|
:sort_order,
|
|
14346
14404
|
:subscribed_listing_id,
|
|
@@ -14400,10 +14458,18 @@ module Aws::DataZone
|
|
|
14400
14458
|
# subscription requests.
|
|
14401
14459
|
# @return [String]
|
|
14402
14460
|
#
|
|
14461
|
+
# @!attribute [rw] owning_group_id
|
|
14462
|
+
# The ID of the owning group.
|
|
14463
|
+
# @return [String]
|
|
14464
|
+
#
|
|
14403
14465
|
# @!attribute [rw] owning_project_id
|
|
14404
14466
|
# The identifier of the project for the subscription requests.
|
|
14405
14467
|
# @return [String]
|
|
14406
14468
|
#
|
|
14469
|
+
# @!attribute [rw] owning_user_id
|
|
14470
|
+
# The ID of the owning user.
|
|
14471
|
+
# @return [String]
|
|
14472
|
+
#
|
|
14407
14473
|
# @!attribute [rw] sort_by
|
|
14408
14474
|
# Specifies the way to sort the results of this action.
|
|
14409
14475
|
# @return [String]
|
|
@@ -14432,7 +14498,9 @@ module Aws::DataZone
|
|
|
14432
14498
|
:domain_identifier,
|
|
14433
14499
|
:max_results,
|
|
14434
14500
|
:next_token,
|
|
14501
|
+
:owning_group_id,
|
|
14435
14502
|
:owning_project_id,
|
|
14503
|
+
:owning_user_id,
|
|
14436
14504
|
:sort_by,
|
|
14437
14505
|
:sort_order,
|
|
14438
14506
|
:status,
|
|
@@ -14563,10 +14631,18 @@ module Aws::DataZone
|
|
|
14563
14631
|
# `ListSubscriptions` to list the next set of subscriptions.
|
|
14564
14632
|
# @return [String]
|
|
14565
14633
|
#
|
|
14634
|
+
# @!attribute [rw] owning_group_id
|
|
14635
|
+
# The ID of the owning group.
|
|
14636
|
+
# @return [String]
|
|
14637
|
+
#
|
|
14566
14638
|
# @!attribute [rw] owning_project_id
|
|
14567
14639
|
# The identifier of the owning project.
|
|
14568
14640
|
# @return [String]
|
|
14569
14641
|
#
|
|
14642
|
+
# @!attribute [rw] owning_user_id
|
|
14643
|
+
# The ID of the owning user.
|
|
14644
|
+
# @return [String]
|
|
14645
|
+
#
|
|
14570
14646
|
# @!attribute [rw] sort_by
|
|
14571
14647
|
# Specifies the way in which the results of this action are to be
|
|
14572
14648
|
# sorted.
|
|
@@ -14602,7 +14678,9 @@ module Aws::DataZone
|
|
|
14602
14678
|
:domain_identifier,
|
|
14603
14679
|
:max_results,
|
|
14604
14680
|
:next_token,
|
|
14681
|
+
:owning_group_id,
|
|
14605
14682
|
:owning_project_id,
|
|
14683
|
+
:owning_user_id,
|
|
14606
14684
|
:sort_by,
|
|
14607
14685
|
:sort_order,
|
|
14608
14686
|
:status,
|
|
@@ -15112,16 +15190,10 @@ module Aws::DataZone
|
|
|
15112
15190
|
# connection.
|
|
15113
15191
|
# @return [String]
|
|
15114
15192
|
#
|
|
15115
|
-
# @!attribute [rw] tracking_server_name
|
|
15116
|
-
# The name of the tracking server as part of the MLflow properties of
|
|
15117
|
-
# a connection.
|
|
15118
|
-
# @return [String]
|
|
15119
|
-
#
|
|
15120
15193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MlflowPropertiesInput AWS API Documentation
|
|
15121
15194
|
#
|
|
15122
15195
|
class MlflowPropertiesInput < Struct.new(
|
|
15123
|
-
:tracking_server_arn
|
|
15124
|
-
:tracking_server_name)
|
|
15196
|
+
:tracking_server_arn)
|
|
15125
15197
|
SENSITIVE = []
|
|
15126
15198
|
include Aws::Structure
|
|
15127
15199
|
end
|
|
@@ -15133,16 +15205,10 @@ module Aws::DataZone
|
|
|
15133
15205
|
# connection.
|
|
15134
15206
|
# @return [String]
|
|
15135
15207
|
#
|
|
15136
|
-
# @!attribute [rw] tracking_server_name
|
|
15137
|
-
# The name of the tracking server as part of the MLflow properties of
|
|
15138
|
-
# a connection.
|
|
15139
|
-
# @return [String]
|
|
15140
|
-
#
|
|
15141
15208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MlflowPropertiesOutput AWS API Documentation
|
|
15142
15209
|
#
|
|
15143
15210
|
class MlflowPropertiesOutput < Struct.new(
|
|
15144
|
-
:tracking_server_arn
|
|
15145
|
-
:tracking_server_name)
|
|
15211
|
+
:tracking_server_arn)
|
|
15146
15212
|
SENSITIVE = []
|
|
15147
15213
|
include Aws::Structure
|
|
15148
15214
|
end
|
|
@@ -15154,16 +15220,10 @@ module Aws::DataZone
|
|
|
15154
15220
|
# connection.
|
|
15155
15221
|
# @return [String]
|
|
15156
15222
|
#
|
|
15157
|
-
# @!attribute [rw] tracking_server_name
|
|
15158
|
-
# The name of the tracking server as part of the MLflow properties of
|
|
15159
|
-
# a connection.
|
|
15160
|
-
# @return [String]
|
|
15161
|
-
#
|
|
15162
15223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/MlflowPropertiesPatch AWS API Documentation
|
|
15163
15224
|
#
|
|
15164
15225
|
class MlflowPropertiesPatch < Struct.new(
|
|
15165
|
-
:tracking_server_arn
|
|
15166
|
-
:tracking_server_name)
|
|
15226
|
+
:tracking_server_arn)
|
|
15167
15227
|
SENSITIVE = []
|
|
15168
15228
|
include Aws::Structure
|
|
15169
15229
|
end
|
|
@@ -15588,6 +15648,29 @@ module Aws::DataZone
|
|
|
15588
15648
|
include Aws::Structure
|
|
15589
15649
|
end
|
|
15590
15650
|
|
|
15651
|
+
# The asset permissions.
|
|
15652
|
+
#
|
|
15653
|
+
# @note Permissions is a union - when making an API calls you must set exactly one of the members.
|
|
15654
|
+
#
|
|
15655
|
+
# @note Permissions is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Permissions corresponding to the set member.
|
|
15656
|
+
#
|
|
15657
|
+
# @!attribute [rw] s3
|
|
15658
|
+
# The S3 details of the asset permissions.
|
|
15659
|
+
# @return [Array<String>]
|
|
15660
|
+
#
|
|
15661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Permissions AWS API Documentation
|
|
15662
|
+
#
|
|
15663
|
+
class Permissions < Struct.new(
|
|
15664
|
+
:s3,
|
|
15665
|
+
:unknown)
|
|
15666
|
+
SENSITIVE = []
|
|
15667
|
+
include Aws::Structure
|
|
15668
|
+
include Aws::Structure::Union
|
|
15669
|
+
|
|
15670
|
+
class S3 < Permissions; end
|
|
15671
|
+
class Unknown < Permissions; end
|
|
15672
|
+
end
|
|
15673
|
+
|
|
15591
15674
|
# Physical connection requirements of a connection.
|
|
15592
15675
|
#
|
|
15593
15676
|
# @!attribute [rw] availability_zone
|
|
@@ -18683,21 +18766,18 @@ module Aws::DataZone
|
|
|
18683
18766
|
include Aws::Structure
|
|
18684
18767
|
end
|
|
18685
18768
|
|
|
18686
|
-
# The
|
|
18769
|
+
# The SSO user profile detail.
|
|
18687
18770
|
#
|
|
18688
18771
|
# @!attribute [rw] first_name
|
|
18689
|
-
# The first name
|
|
18690
|
-
# profile.
|
|
18772
|
+
# The first name as part of the SSO user profile detail.
|
|
18691
18773
|
# @return [String]
|
|
18692
18774
|
#
|
|
18693
18775
|
# @!attribute [rw] last_name
|
|
18694
|
-
# The last name
|
|
18695
|
-
# profile.
|
|
18776
|
+
# The last name as part of the SSO user profile detail.
|
|
18696
18777
|
# @return [String]
|
|
18697
18778
|
#
|
|
18698
18779
|
# @!attribute [rw] username
|
|
18699
|
-
# The username
|
|
18700
|
-
# profile.
|
|
18780
|
+
# The username as part of the SSO user profile detail.
|
|
18701
18781
|
# @return [String]
|
|
18702
18782
|
#
|
|
18703
18783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SsoUserProfileDetails AWS API Documentation
|
|
@@ -18924,6 +19004,10 @@ module Aws::DataZone
|
|
|
18924
19004
|
# created.
|
|
18925
19005
|
# @return [Time]
|
|
18926
19006
|
#
|
|
19007
|
+
# @!attribute [rw] permissions
|
|
19008
|
+
# The asset permissions.
|
|
19009
|
+
# @return [Types::Permissions]
|
|
19010
|
+
#
|
|
18927
19011
|
# @!attribute [rw] status
|
|
18928
19012
|
# The status of the asset for which the subscription grant is created.
|
|
18929
19013
|
# @return [String]
|
|
@@ -18942,6 +19026,7 @@ module Aws::DataZone
|
|
|
18942
19026
|
:failure_cause,
|
|
18943
19027
|
:failure_timestamp,
|
|
18944
19028
|
:granted_timestamp,
|
|
19029
|
+
:permissions,
|
|
18945
19030
|
:status,
|
|
18946
19031
|
:target_name)
|
|
18947
19032
|
SENSITIVE = []
|
|
@@ -18980,6 +19065,10 @@ module Aws::DataZone
|
|
|
18980
19065
|
# subscription grant is created.
|
|
18981
19066
|
# @return [Array<Types::DetailedGlossaryTerm>]
|
|
18982
19067
|
#
|
|
19068
|
+
# @!attribute [rw] permissions
|
|
19069
|
+
# The asset permissions.
|
|
19070
|
+
# @return [Types::Permissions]
|
|
19071
|
+
#
|
|
18983
19072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedAssetListing AWS API Documentation
|
|
18984
19073
|
#
|
|
18985
19074
|
class SubscribedAssetListing < Struct.new(
|
|
@@ -18988,7 +19077,41 @@ module Aws::DataZone
|
|
|
18988
19077
|
:entity_revision,
|
|
18989
19078
|
:entity_type,
|
|
18990
19079
|
:forms,
|
|
18991
|
-
:glossary_terms
|
|
19080
|
+
:glossary_terms,
|
|
19081
|
+
:permissions)
|
|
19082
|
+
SENSITIVE = []
|
|
19083
|
+
include Aws::Structure
|
|
19084
|
+
end
|
|
19085
|
+
|
|
19086
|
+
# The group that subscribes to the asset.
|
|
19087
|
+
#
|
|
19088
|
+
# @!attribute [rw] id
|
|
19089
|
+
# The ID of the subscribed group.
|
|
19090
|
+
# @return [String]
|
|
19091
|
+
#
|
|
19092
|
+
# @!attribute [rw] name
|
|
19093
|
+
# The name of the subscribed group.
|
|
19094
|
+
# @return [String]
|
|
19095
|
+
#
|
|
19096
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedGroup AWS API Documentation
|
|
19097
|
+
#
|
|
19098
|
+
class SubscribedGroup < Struct.new(
|
|
19099
|
+
:id,
|
|
19100
|
+
:name)
|
|
19101
|
+
SENSITIVE = [:name]
|
|
19102
|
+
include Aws::Structure
|
|
19103
|
+
end
|
|
19104
|
+
|
|
19105
|
+
# The details of the subscribed group.
|
|
19106
|
+
#
|
|
19107
|
+
# @!attribute [rw] identifier
|
|
19108
|
+
# The ID of the subscribed group.
|
|
19109
|
+
# @return [String]
|
|
19110
|
+
#
|
|
19111
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedGroupInput AWS API Documentation
|
|
19112
|
+
#
|
|
19113
|
+
class SubscribedGroupInput < Struct.new(
|
|
19114
|
+
:identifier)
|
|
18992
19115
|
SENSITIVE = []
|
|
18993
19116
|
include Aws::Structure
|
|
18994
19117
|
end
|
|
@@ -19090,20 +19213,32 @@ module Aws::DataZone
|
|
|
19090
19213
|
#
|
|
19091
19214
|
# @note SubscribedPrincipal is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SubscribedPrincipal corresponding to the set member.
|
|
19092
19215
|
#
|
|
19216
|
+
# @!attribute [rw] group
|
|
19217
|
+
# The subscribed group.
|
|
19218
|
+
# @return [Types::SubscribedGroup]
|
|
19219
|
+
#
|
|
19093
19220
|
# @!attribute [rw] project
|
|
19094
19221
|
# The project that has the subscription grant.
|
|
19095
19222
|
# @return [Types::SubscribedProject]
|
|
19096
19223
|
#
|
|
19224
|
+
# @!attribute [rw] user
|
|
19225
|
+
# The subscribed user.
|
|
19226
|
+
# @return [Types::SubscribedUser]
|
|
19227
|
+
#
|
|
19097
19228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedPrincipal AWS API Documentation
|
|
19098
19229
|
#
|
|
19099
19230
|
class SubscribedPrincipal < Struct.new(
|
|
19231
|
+
:group,
|
|
19100
19232
|
:project,
|
|
19233
|
+
:user,
|
|
19101
19234
|
:unknown)
|
|
19102
19235
|
SENSITIVE = []
|
|
19103
19236
|
include Aws::Structure
|
|
19104
19237
|
include Aws::Structure::Union
|
|
19105
19238
|
|
|
19239
|
+
class Group < SubscribedPrincipal; end
|
|
19106
19240
|
class Project < SubscribedPrincipal; end
|
|
19241
|
+
class User < SubscribedPrincipal; end
|
|
19107
19242
|
class Unknown < SubscribedPrincipal; end
|
|
19108
19243
|
end
|
|
19109
19244
|
|
|
@@ -19111,20 +19246,32 @@ module Aws::DataZone
|
|
|
19111
19246
|
#
|
|
19112
19247
|
# @note SubscribedPrincipalInput is a union - when making an API calls you must set exactly one of the members.
|
|
19113
19248
|
#
|
|
19249
|
+
# @!attribute [rw] group
|
|
19250
|
+
# The subscribed group.
|
|
19251
|
+
# @return [Types::SubscribedGroupInput]
|
|
19252
|
+
#
|
|
19114
19253
|
# @!attribute [rw] project
|
|
19115
19254
|
# The project that is to be given a subscription grant.
|
|
19116
19255
|
# @return [Types::SubscribedProjectInput]
|
|
19117
19256
|
#
|
|
19257
|
+
# @!attribute [rw] user
|
|
19258
|
+
# The subscribed user.
|
|
19259
|
+
# @return [Types::SubscribedUserInput]
|
|
19260
|
+
#
|
|
19118
19261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedPrincipalInput AWS API Documentation
|
|
19119
19262
|
#
|
|
19120
19263
|
class SubscribedPrincipalInput < Struct.new(
|
|
19264
|
+
:group,
|
|
19121
19265
|
:project,
|
|
19266
|
+
:user,
|
|
19122
19267
|
:unknown)
|
|
19123
19268
|
SENSITIVE = []
|
|
19124
19269
|
include Aws::Structure
|
|
19125
19270
|
include Aws::Structure::Union
|
|
19126
19271
|
|
|
19272
|
+
class Group < SubscribedPrincipalInput; end
|
|
19127
19273
|
class Project < SubscribedPrincipalInput; end
|
|
19274
|
+
class User < SubscribedPrincipalInput; end
|
|
19128
19275
|
class Unknown < SubscribedPrincipalInput; end
|
|
19129
19276
|
end
|
|
19130
19277
|
|
|
@@ -19201,6 +19348,39 @@ module Aws::DataZone
|
|
|
19201
19348
|
include Aws::Structure
|
|
19202
19349
|
end
|
|
19203
19350
|
|
|
19351
|
+
# The subscribed user.
|
|
19352
|
+
#
|
|
19353
|
+
# @!attribute [rw] details
|
|
19354
|
+
# The subscribed user details.
|
|
19355
|
+
# @return [Types::UserProfileDetails]
|
|
19356
|
+
#
|
|
19357
|
+
# @!attribute [rw] id
|
|
19358
|
+
# The ID of the subscribed user.
|
|
19359
|
+
# @return [String]
|
|
19360
|
+
#
|
|
19361
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedUser AWS API Documentation
|
|
19362
|
+
#
|
|
19363
|
+
class SubscribedUser < Struct.new(
|
|
19364
|
+
:details,
|
|
19365
|
+
:id)
|
|
19366
|
+
SENSITIVE = []
|
|
19367
|
+
include Aws::Structure
|
|
19368
|
+
end
|
|
19369
|
+
|
|
19370
|
+
# The subscribed user.
|
|
19371
|
+
#
|
|
19372
|
+
# @!attribute [rw] identifier
|
|
19373
|
+
# The ID of the subscribed user.
|
|
19374
|
+
# @return [String]
|
|
19375
|
+
#
|
|
19376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedUserInput AWS API Documentation
|
|
19377
|
+
#
|
|
19378
|
+
class SubscribedUserInput < Struct.new(
|
|
19379
|
+
:identifier)
|
|
19380
|
+
SENSITIVE = []
|
|
19381
|
+
include Aws::Structure
|
|
19382
|
+
end
|
|
19383
|
+
|
|
19204
19384
|
# The details of the subscription grant.
|
|
19205
19385
|
#
|
|
19206
19386
|
# @!attribute [rw] assets
|
|
@@ -19220,6 +19400,10 @@ module Aws::DataZone
|
|
|
19220
19400
|
# grant exists.
|
|
19221
19401
|
# @return [String]
|
|
19222
19402
|
#
|
|
19403
|
+
# @!attribute [rw] environment_id
|
|
19404
|
+
# The environment ID of the subscription grant.
|
|
19405
|
+
# @return [String]
|
|
19406
|
+
#
|
|
19223
19407
|
# @!attribute [rw] granted_entity
|
|
19224
19408
|
# The entity to which the subscription is granted.
|
|
19225
19409
|
# @return [Types::GrantedEntity]
|
|
@@ -19255,6 +19439,7 @@ module Aws::DataZone
|
|
|
19255
19439
|
:created_at,
|
|
19256
19440
|
:created_by,
|
|
19257
19441
|
:domain_id,
|
|
19442
|
+
:environment_id,
|
|
19258
19443
|
:granted_entity,
|
|
19259
19444
|
:id,
|
|
19260
19445
|
:status,
|
|
@@ -21621,6 +21806,11 @@ module Aws::DataZone
|
|
|
21621
21806
|
# grant status is to be updated.
|
|
21622
21807
|
# @return [String]
|
|
21623
21808
|
#
|
|
21809
|
+
# @!attribute [rw] environment_id
|
|
21810
|
+
# The ID of the environment in which the subscription grant is
|
|
21811
|
+
# updated.
|
|
21812
|
+
# @return [String]
|
|
21813
|
+
#
|
|
21624
21814
|
# @!attribute [rw] granted_entity
|
|
21625
21815
|
# The granted entity to be updated as part of the
|
|
21626
21816
|
# `UpdateSubscriptionGrantStatus` action.
|
|
@@ -21660,6 +21850,7 @@ module Aws::DataZone
|
|
|
21660
21850
|
:created_at,
|
|
21661
21851
|
:created_by,
|
|
21662
21852
|
:domain_id,
|
|
21853
|
+
:environment_id,
|
|
21663
21854
|
:granted_entity,
|
|
21664
21855
|
:id,
|
|
21665
21856
|
:status,
|
|
@@ -21955,7 +22146,7 @@ module Aws::DataZone
|
|
|
21955
22146
|
end
|
|
21956
22147
|
|
|
21957
22148
|
# @!attribute [rw] details
|
|
21958
|
-
# The
|
|
22149
|
+
# The results of the UpdateUserProfile action.
|
|
21959
22150
|
# @return [Types::UserProfileDetails]
|
|
21960
22151
|
#
|
|
21961
22152
|
# @!attribute [rw] domain_id
|
|
@@ -22045,16 +22236,16 @@ module Aws::DataZone
|
|
|
22045
22236
|
class Unknown < UserPolicyGrantPrincipal; end
|
|
22046
22237
|
end
|
|
22047
22238
|
|
|
22048
|
-
# The
|
|
22239
|
+
# The user profile details.
|
|
22049
22240
|
#
|
|
22050
22241
|
# @note UserProfileDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of UserProfileDetails corresponding to the set member.
|
|
22051
22242
|
#
|
|
22052
22243
|
# @!attribute [rw] iam
|
|
22053
|
-
# The IAM details
|
|
22244
|
+
# The IAM details of the user profile.
|
|
22054
22245
|
# @return [Types::IamUserProfileDetails]
|
|
22055
22246
|
#
|
|
22056
22247
|
# @!attribute [rw] sso
|
|
22057
|
-
# The
|
|
22248
|
+
# The SSO details of the user profile.
|
|
22058
22249
|
# @return [Types::SsoUserProfileDetails]
|
|
22059
22250
|
#
|
|
22060
22251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UserProfileDetails AWS API Documentation
|