aws-sdk-datazone 1.58.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +181 -1
- data/lib/aws-sdk-datazone/client_api.rb +66 -3
- data/lib/aws-sdk-datazone/types.rb +227 -18
- data/lib/aws-sdk-datazone.rb +1 -1
- data/sig/client.rbs +38 -0
- data/sig/types.rbs +67 -0
- 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,
|
|
@@ -15570,6 +15648,29 @@ module Aws::DataZone
|
|
|
15570
15648
|
include Aws::Structure
|
|
15571
15649
|
end
|
|
15572
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
|
+
|
|
15573
15674
|
# Physical connection requirements of a connection.
|
|
15574
15675
|
#
|
|
15575
15676
|
# @!attribute [rw] availability_zone
|
|
@@ -18665,21 +18766,18 @@ module Aws::DataZone
|
|
|
18665
18766
|
include Aws::Structure
|
|
18666
18767
|
end
|
|
18667
18768
|
|
|
18668
|
-
# The
|
|
18769
|
+
# The SSO user profile detail.
|
|
18669
18770
|
#
|
|
18670
18771
|
# @!attribute [rw] first_name
|
|
18671
|
-
# The first name
|
|
18672
|
-
# profile.
|
|
18772
|
+
# The first name as part of the SSO user profile detail.
|
|
18673
18773
|
# @return [String]
|
|
18674
18774
|
#
|
|
18675
18775
|
# @!attribute [rw] last_name
|
|
18676
|
-
# The last name
|
|
18677
|
-
# profile.
|
|
18776
|
+
# The last name as part of the SSO user profile detail.
|
|
18678
18777
|
# @return [String]
|
|
18679
18778
|
#
|
|
18680
18779
|
# @!attribute [rw] username
|
|
18681
|
-
# The username
|
|
18682
|
-
# profile.
|
|
18780
|
+
# The username as part of the SSO user profile detail.
|
|
18683
18781
|
# @return [String]
|
|
18684
18782
|
#
|
|
18685
18783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SsoUserProfileDetails AWS API Documentation
|
|
@@ -18906,6 +19004,10 @@ module Aws::DataZone
|
|
|
18906
19004
|
# created.
|
|
18907
19005
|
# @return [Time]
|
|
18908
19006
|
#
|
|
19007
|
+
# @!attribute [rw] permissions
|
|
19008
|
+
# The asset permissions.
|
|
19009
|
+
# @return [Types::Permissions]
|
|
19010
|
+
#
|
|
18909
19011
|
# @!attribute [rw] status
|
|
18910
19012
|
# The status of the asset for which the subscription grant is created.
|
|
18911
19013
|
# @return [String]
|
|
@@ -18924,6 +19026,7 @@ module Aws::DataZone
|
|
|
18924
19026
|
:failure_cause,
|
|
18925
19027
|
:failure_timestamp,
|
|
18926
19028
|
:granted_timestamp,
|
|
19029
|
+
:permissions,
|
|
18927
19030
|
:status,
|
|
18928
19031
|
:target_name)
|
|
18929
19032
|
SENSITIVE = []
|
|
@@ -18962,6 +19065,10 @@ module Aws::DataZone
|
|
|
18962
19065
|
# subscription grant is created.
|
|
18963
19066
|
# @return [Array<Types::DetailedGlossaryTerm>]
|
|
18964
19067
|
#
|
|
19068
|
+
# @!attribute [rw] permissions
|
|
19069
|
+
# The asset permissions.
|
|
19070
|
+
# @return [Types::Permissions]
|
|
19071
|
+
#
|
|
18965
19072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedAssetListing AWS API Documentation
|
|
18966
19073
|
#
|
|
18967
19074
|
class SubscribedAssetListing < Struct.new(
|
|
@@ -18970,7 +19077,41 @@ module Aws::DataZone
|
|
|
18970
19077
|
:entity_revision,
|
|
18971
19078
|
:entity_type,
|
|
18972
19079
|
:forms,
|
|
18973
|
-
: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)
|
|
18974
19115
|
SENSITIVE = []
|
|
18975
19116
|
include Aws::Structure
|
|
18976
19117
|
end
|
|
@@ -19072,20 +19213,32 @@ module Aws::DataZone
|
|
|
19072
19213
|
#
|
|
19073
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.
|
|
19074
19215
|
#
|
|
19216
|
+
# @!attribute [rw] group
|
|
19217
|
+
# The subscribed group.
|
|
19218
|
+
# @return [Types::SubscribedGroup]
|
|
19219
|
+
#
|
|
19075
19220
|
# @!attribute [rw] project
|
|
19076
19221
|
# The project that has the subscription grant.
|
|
19077
19222
|
# @return [Types::SubscribedProject]
|
|
19078
19223
|
#
|
|
19224
|
+
# @!attribute [rw] user
|
|
19225
|
+
# The subscribed user.
|
|
19226
|
+
# @return [Types::SubscribedUser]
|
|
19227
|
+
#
|
|
19079
19228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedPrincipal AWS API Documentation
|
|
19080
19229
|
#
|
|
19081
19230
|
class SubscribedPrincipal < Struct.new(
|
|
19231
|
+
:group,
|
|
19082
19232
|
:project,
|
|
19233
|
+
:user,
|
|
19083
19234
|
:unknown)
|
|
19084
19235
|
SENSITIVE = []
|
|
19085
19236
|
include Aws::Structure
|
|
19086
19237
|
include Aws::Structure::Union
|
|
19087
19238
|
|
|
19239
|
+
class Group < SubscribedPrincipal; end
|
|
19088
19240
|
class Project < SubscribedPrincipal; end
|
|
19241
|
+
class User < SubscribedPrincipal; end
|
|
19089
19242
|
class Unknown < SubscribedPrincipal; end
|
|
19090
19243
|
end
|
|
19091
19244
|
|
|
@@ -19093,20 +19246,32 @@ module Aws::DataZone
|
|
|
19093
19246
|
#
|
|
19094
19247
|
# @note SubscribedPrincipalInput is a union - when making an API calls you must set exactly one of the members.
|
|
19095
19248
|
#
|
|
19249
|
+
# @!attribute [rw] group
|
|
19250
|
+
# The subscribed group.
|
|
19251
|
+
# @return [Types::SubscribedGroupInput]
|
|
19252
|
+
#
|
|
19096
19253
|
# @!attribute [rw] project
|
|
19097
19254
|
# The project that is to be given a subscription grant.
|
|
19098
19255
|
# @return [Types::SubscribedProjectInput]
|
|
19099
19256
|
#
|
|
19257
|
+
# @!attribute [rw] user
|
|
19258
|
+
# The subscribed user.
|
|
19259
|
+
# @return [Types::SubscribedUserInput]
|
|
19260
|
+
#
|
|
19100
19261
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedPrincipalInput AWS API Documentation
|
|
19101
19262
|
#
|
|
19102
19263
|
class SubscribedPrincipalInput < Struct.new(
|
|
19264
|
+
:group,
|
|
19103
19265
|
:project,
|
|
19266
|
+
:user,
|
|
19104
19267
|
:unknown)
|
|
19105
19268
|
SENSITIVE = []
|
|
19106
19269
|
include Aws::Structure
|
|
19107
19270
|
include Aws::Structure::Union
|
|
19108
19271
|
|
|
19272
|
+
class Group < SubscribedPrincipalInput; end
|
|
19109
19273
|
class Project < SubscribedPrincipalInput; end
|
|
19274
|
+
class User < SubscribedPrincipalInput; end
|
|
19110
19275
|
class Unknown < SubscribedPrincipalInput; end
|
|
19111
19276
|
end
|
|
19112
19277
|
|
|
@@ -19183,6 +19348,39 @@ module Aws::DataZone
|
|
|
19183
19348
|
include Aws::Structure
|
|
19184
19349
|
end
|
|
19185
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
|
+
|
|
19186
19384
|
# The details of the subscription grant.
|
|
19187
19385
|
#
|
|
19188
19386
|
# @!attribute [rw] assets
|
|
@@ -19202,6 +19400,10 @@ module Aws::DataZone
|
|
|
19202
19400
|
# grant exists.
|
|
19203
19401
|
# @return [String]
|
|
19204
19402
|
#
|
|
19403
|
+
# @!attribute [rw] environment_id
|
|
19404
|
+
# The environment ID of the subscription grant.
|
|
19405
|
+
# @return [String]
|
|
19406
|
+
#
|
|
19205
19407
|
# @!attribute [rw] granted_entity
|
|
19206
19408
|
# The entity to which the subscription is granted.
|
|
19207
19409
|
# @return [Types::GrantedEntity]
|
|
@@ -19237,6 +19439,7 @@ module Aws::DataZone
|
|
|
19237
19439
|
:created_at,
|
|
19238
19440
|
:created_by,
|
|
19239
19441
|
:domain_id,
|
|
19442
|
+
:environment_id,
|
|
19240
19443
|
:granted_entity,
|
|
19241
19444
|
:id,
|
|
19242
19445
|
:status,
|
|
@@ -21603,6 +21806,11 @@ module Aws::DataZone
|
|
|
21603
21806
|
# grant status is to be updated.
|
|
21604
21807
|
# @return [String]
|
|
21605
21808
|
#
|
|
21809
|
+
# @!attribute [rw] environment_id
|
|
21810
|
+
# The ID of the environment in which the subscription grant is
|
|
21811
|
+
# updated.
|
|
21812
|
+
# @return [String]
|
|
21813
|
+
#
|
|
21606
21814
|
# @!attribute [rw] granted_entity
|
|
21607
21815
|
# The granted entity to be updated as part of the
|
|
21608
21816
|
# `UpdateSubscriptionGrantStatus` action.
|
|
@@ -21642,6 +21850,7 @@ module Aws::DataZone
|
|
|
21642
21850
|
:created_at,
|
|
21643
21851
|
:created_by,
|
|
21644
21852
|
:domain_id,
|
|
21853
|
+
:environment_id,
|
|
21645
21854
|
:granted_entity,
|
|
21646
21855
|
:id,
|
|
21647
21856
|
:status,
|
|
@@ -21937,7 +22146,7 @@ module Aws::DataZone
|
|
|
21937
22146
|
end
|
|
21938
22147
|
|
|
21939
22148
|
# @!attribute [rw] details
|
|
21940
|
-
# The
|
|
22149
|
+
# The results of the UpdateUserProfile action.
|
|
21941
22150
|
# @return [Types::UserProfileDetails]
|
|
21942
22151
|
#
|
|
21943
22152
|
# @!attribute [rw] domain_id
|
|
@@ -22027,16 +22236,16 @@ module Aws::DataZone
|
|
|
22027
22236
|
class Unknown < UserPolicyGrantPrincipal; end
|
|
22028
22237
|
end
|
|
22029
22238
|
|
|
22030
|
-
# The
|
|
22239
|
+
# The user profile details.
|
|
22031
22240
|
#
|
|
22032
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.
|
|
22033
22242
|
#
|
|
22034
22243
|
# @!attribute [rw] iam
|
|
22035
|
-
# The IAM details
|
|
22244
|
+
# The IAM details of the user profile.
|
|
22036
22245
|
# @return [Types::IamUserProfileDetails]
|
|
22037
22246
|
#
|
|
22038
22247
|
# @!attribute [rw] sso
|
|
22039
|
-
# The
|
|
22248
|
+
# The SSO details of the user profile.
|
|
22040
22249
|
# @return [Types::SsoUserProfileDetails]
|
|
22041
22250
|
#
|
|
22042
22251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UserProfileDetails AWS API Documentation
|
data/lib/aws-sdk-datazone.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -123,6 +123,14 @@ module Aws
|
|
|
123
123
|
end
|
|
124
124
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#accept_subscription_request-instance_method
|
|
125
125
|
def accept_subscription_request: (
|
|
126
|
+
?asset_permissions: Array[
|
|
127
|
+
{
|
|
128
|
+
asset_id: ::String,
|
|
129
|
+
permissions: {
|
|
130
|
+
s3: Array[("READ" | "WRITE")]?
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
],
|
|
126
134
|
?asset_scopes: Array[
|
|
127
135
|
{
|
|
128
136
|
asset_id: ::String,
|
|
@@ -1373,6 +1381,7 @@ module Aws
|
|
|
1373
1381
|
def created_at: () -> ::Time
|
|
1374
1382
|
def created_by: () -> ::String
|
|
1375
1383
|
def domain_id: () -> ::String
|
|
1384
|
+
def environment_id: () -> ::String
|
|
1376
1385
|
def granted_entity: () -> Types::GrantedEntity
|
|
1377
1386
|
def id: () -> ::String
|
|
1378
1387
|
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -1421,6 +1430,20 @@ module Aws
|
|
|
1421
1430
|
end
|
|
1422
1431
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_subscription_request-instance_method
|
|
1423
1432
|
def create_subscription_request: (
|
|
1433
|
+
?asset_permissions: Array[
|
|
1434
|
+
{
|
|
1435
|
+
asset_id: ::String,
|
|
1436
|
+
permissions: {
|
|
1437
|
+
s3: Array[("READ" | "WRITE")]?
|
|
1438
|
+
}
|
|
1439
|
+
},
|
|
1440
|
+
],
|
|
1441
|
+
?asset_scopes: Array[
|
|
1442
|
+
{
|
|
1443
|
+
asset_id: ::String,
|
|
1444
|
+
filter_ids: Array[::String]
|
|
1445
|
+
},
|
|
1446
|
+
],
|
|
1424
1447
|
?client_token: ::String,
|
|
1425
1448
|
domain_identifier: ::String,
|
|
1426
1449
|
?metadata_forms: Array[
|
|
@@ -1439,8 +1462,14 @@ module Aws
|
|
|
1439
1462
|
],
|
|
1440
1463
|
subscribed_principals: Array[
|
|
1441
1464
|
{
|
|
1465
|
+
group: {
|
|
1466
|
+
identifier: ::String?
|
|
1467
|
+
}?,
|
|
1442
1468
|
project: {
|
|
1443
1469
|
identifier: ::String?
|
|
1470
|
+
}?,
|
|
1471
|
+
user: {
|
|
1472
|
+
identifier: ::String?
|
|
1444
1473
|
}?
|
|
1445
1474
|
},
|
|
1446
1475
|
]
|
|
@@ -1747,6 +1776,7 @@ module Aws
|
|
|
1747
1776
|
def created_at: () -> ::Time
|
|
1748
1777
|
def created_by: () -> ::String
|
|
1749
1778
|
def domain_id: () -> ::String
|
|
1779
|
+
def environment_id: () -> ::String
|
|
1750
1780
|
def granted_entity: () -> Types::GrantedEntity
|
|
1751
1781
|
def id: () -> ::String
|
|
1752
1782
|
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -2480,6 +2510,7 @@ module Aws
|
|
|
2480
2510
|
def created_at: () -> ::Time
|
|
2481
2511
|
def created_by: () -> ::String
|
|
2482
2512
|
def domain_id: () -> ::String
|
|
2513
|
+
def environment_id: () -> ::String
|
|
2483
2514
|
def granted_entity: () -> Types::GrantedEntity
|
|
2484
2515
|
def id: () -> ::String
|
|
2485
2516
|
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -3024,7 +3055,9 @@ module Aws
|
|
|
3024
3055
|
?environment_id: ::String,
|
|
3025
3056
|
?max_results: ::Integer,
|
|
3026
3057
|
?next_token: ::String,
|
|
3058
|
+
?owning_group_id: ::String,
|
|
3027
3059
|
?owning_project_id: ::String,
|
|
3060
|
+
?owning_user_id: ::String,
|
|
3028
3061
|
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
|
3029
3062
|
?sort_order: ("ASCENDING" | "DESCENDING"),
|
|
3030
3063
|
?subscribed_listing_id: ::String,
|
|
@@ -3044,7 +3077,9 @@ module Aws
|
|
|
3044
3077
|
domain_identifier: ::String,
|
|
3045
3078
|
?max_results: ::Integer,
|
|
3046
3079
|
?next_token: ::String,
|
|
3080
|
+
?owning_group_id: ::String,
|
|
3047
3081
|
?owning_project_id: ::String,
|
|
3082
|
+
?owning_user_id: ::String,
|
|
3048
3083
|
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
|
3049
3084
|
?sort_order: ("ASCENDING" | "DESCENDING"),
|
|
3050
3085
|
?status: ("PENDING" | "ACCEPTED" | "REJECTED"),
|
|
@@ -3079,7 +3114,9 @@ module Aws
|
|
|
3079
3114
|
domain_identifier: ::String,
|
|
3080
3115
|
?max_results: ::Integer,
|
|
3081
3116
|
?next_token: ::String,
|
|
3117
|
+
?owning_group_id: ::String,
|
|
3082
3118
|
?owning_project_id: ::String,
|
|
3119
|
+
?owning_user_id: ::String,
|
|
3083
3120
|
?sort_by: ("CREATED_AT" | "UPDATED_AT"),
|
|
3084
3121
|
?sort_order: ("ASCENDING" | "DESCENDING"),
|
|
3085
3122
|
?status: ("APPROVED" | "REVOKED" | "CANCELLED"),
|
|
@@ -4290,6 +4327,7 @@ module Aws
|
|
|
4290
4327
|
def created_at: () -> ::Time
|
|
4291
4328
|
def created_by: () -> ::String
|
|
4292
4329
|
def domain_id: () -> ::String
|
|
4330
|
+
def environment_id: () -> ::String
|
|
4293
4331
|
def granted_entity: () -> Types::GrantedEntity
|
|
4294
4332
|
def id: () -> ::String
|
|
4295
4333
|
def status: () -> ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|