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
data/sig/types.rbs
CHANGED
|
@@ -39,6 +39,7 @@ module Aws::DataZone
|
|
|
39
39
|
end
|
|
40
40
|
|
|
41
41
|
class AcceptSubscriptionRequestInput
|
|
42
|
+
attr_accessor asset_permissions: ::Array[Types::AssetPermission]
|
|
42
43
|
attr_accessor asset_scopes: ::Array[Types::AcceptedAssetScope]
|
|
43
44
|
attr_accessor decision_comment: ::String
|
|
44
45
|
attr_accessor domain_identifier: ::String
|
|
@@ -304,6 +305,12 @@ module Aws::DataZone
|
|
|
304
305
|
SENSITIVE: []
|
|
305
306
|
end
|
|
306
307
|
|
|
308
|
+
class AssetPermission
|
|
309
|
+
attr_accessor asset_id: ::String
|
|
310
|
+
attr_accessor permissions: Types::Permissions
|
|
311
|
+
SENSITIVE: []
|
|
312
|
+
end
|
|
313
|
+
|
|
307
314
|
class AssetRevision
|
|
308
315
|
attr_accessor created_at: ::Time
|
|
309
316
|
attr_accessor created_by: ::String
|
|
@@ -1335,6 +1342,7 @@ module Aws::DataZone
|
|
|
1335
1342
|
attr_accessor created_at: ::Time
|
|
1336
1343
|
attr_accessor created_by: ::String
|
|
1337
1344
|
attr_accessor domain_id: ::String
|
|
1345
|
+
attr_accessor environment_id: ::String
|
|
1338
1346
|
attr_accessor granted_entity: Types::GrantedEntity
|
|
1339
1347
|
attr_accessor id: ::String
|
|
1340
1348
|
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -1346,6 +1354,8 @@ module Aws::DataZone
|
|
|
1346
1354
|
end
|
|
1347
1355
|
|
|
1348
1356
|
class CreateSubscriptionRequestInput
|
|
1357
|
+
attr_accessor asset_permissions: ::Array[Types::AssetPermission]
|
|
1358
|
+
attr_accessor asset_scopes: ::Array[Types::AcceptedAssetScope]
|
|
1349
1359
|
attr_accessor client_token: ::String
|
|
1350
1360
|
attr_accessor domain_identifier: ::String
|
|
1351
1361
|
attr_accessor metadata_forms: ::Array[Types::FormInput]
|
|
@@ -1835,6 +1845,7 @@ module Aws::DataZone
|
|
|
1835
1845
|
attr_accessor created_at: ::Time
|
|
1836
1846
|
attr_accessor created_by: ::String
|
|
1837
1847
|
attr_accessor domain_id: ::String
|
|
1848
|
+
attr_accessor environment_id: ::String
|
|
1838
1849
|
attr_accessor granted_entity: Types::GrantedEntity
|
|
1839
1850
|
attr_accessor id: ::String
|
|
1840
1851
|
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -2865,6 +2876,7 @@ module Aws::DataZone
|
|
|
2865
2876
|
attr_accessor created_at: ::Time
|
|
2866
2877
|
attr_accessor created_by: ::String
|
|
2867
2878
|
attr_accessor domain_id: ::String
|
|
2879
|
+
attr_accessor environment_id: ::String
|
|
2868
2880
|
attr_accessor granted_entity: Types::GrantedEntity
|
|
2869
2881
|
attr_accessor id: ::String
|
|
2870
2882
|
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -3801,7 +3813,9 @@ module Aws::DataZone
|
|
|
3801
3813
|
attr_accessor environment_id: ::String
|
|
3802
3814
|
attr_accessor max_results: ::Integer
|
|
3803
3815
|
attr_accessor next_token: ::String
|
|
3816
|
+
attr_accessor owning_group_id: ::String
|
|
3804
3817
|
attr_accessor owning_project_id: ::String
|
|
3818
|
+
attr_accessor owning_user_id: ::String
|
|
3805
3819
|
attr_accessor sort_by: ("CREATED_AT" | "UPDATED_AT")
|
|
3806
3820
|
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
3807
3821
|
attr_accessor subscribed_listing_id: ::String
|
|
@@ -3821,7 +3835,9 @@ module Aws::DataZone
|
|
|
3821
3835
|
attr_accessor domain_identifier: ::String
|
|
3822
3836
|
attr_accessor max_results: ::Integer
|
|
3823
3837
|
attr_accessor next_token: ::String
|
|
3838
|
+
attr_accessor owning_group_id: ::String
|
|
3824
3839
|
attr_accessor owning_project_id: ::String
|
|
3840
|
+
attr_accessor owning_user_id: ::String
|
|
3825
3841
|
attr_accessor sort_by: ("CREATED_AT" | "UPDATED_AT")
|
|
3826
3842
|
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
3827
3843
|
attr_accessor status: ("PENDING" | "ACCEPTED" | "REJECTED")
|
|
@@ -3856,7 +3872,9 @@ module Aws::DataZone
|
|
|
3856
3872
|
attr_accessor domain_identifier: ::String
|
|
3857
3873
|
attr_accessor max_results: ::Integer
|
|
3858
3874
|
attr_accessor next_token: ::String
|
|
3875
|
+
attr_accessor owning_group_id: ::String
|
|
3859
3876
|
attr_accessor owning_project_id: ::String
|
|
3877
|
+
attr_accessor owning_user_id: ::String
|
|
3860
3878
|
attr_accessor sort_by: ("CREATED_AT" | "UPDATED_AT")
|
|
3861
3879
|
attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
|
|
3862
3880
|
attr_accessor status: ("APPROVED" | "REVOKED" | "CANCELLED")
|
|
@@ -4182,6 +4200,17 @@ module Aws::DataZone
|
|
|
4182
4200
|
SENSITIVE: []
|
|
4183
4201
|
end
|
|
4184
4202
|
|
|
4203
|
+
class Permissions
|
|
4204
|
+
attr_accessor s3: ::Array[("READ" | "WRITE")]
|
|
4205
|
+
attr_accessor unknown: untyped
|
|
4206
|
+
SENSITIVE: []
|
|
4207
|
+
|
|
4208
|
+
class S3 < Permissions
|
|
4209
|
+
end
|
|
4210
|
+
class Unknown < Permissions
|
|
4211
|
+
end
|
|
4212
|
+
end
|
|
4213
|
+
|
|
4185
4214
|
class PhysicalConnectionRequirements
|
|
4186
4215
|
attr_accessor availability_zone: ::String
|
|
4187
4216
|
attr_accessor security_group_id_list: ::Array[::String]
|
|
@@ -5183,6 +5212,7 @@ module Aws::DataZone
|
|
|
5183
5212
|
attr_accessor failure_cause: Types::FailureCause
|
|
5184
5213
|
attr_accessor failure_timestamp: ::Time
|
|
5185
5214
|
attr_accessor granted_timestamp: ::Time
|
|
5215
|
+
attr_accessor permissions: Types::Permissions
|
|
5186
5216
|
attr_accessor status: ("GRANT_PENDING" | "REVOKE_PENDING" | "GRANT_IN_PROGRESS" | "REVOKE_IN_PROGRESS" | "GRANTED" | "REVOKED" | "GRANT_FAILED" | "REVOKE_FAILED")
|
|
5187
5217
|
attr_accessor target_name: ::String
|
|
5188
5218
|
SENSITIVE: []
|
|
@@ -5195,6 +5225,18 @@ module Aws::DataZone
|
|
|
5195
5225
|
attr_accessor entity_type: ::String
|
|
5196
5226
|
attr_accessor forms: ::String
|
|
5197
5227
|
attr_accessor glossary_terms: ::Array[Types::DetailedGlossaryTerm]
|
|
5228
|
+
attr_accessor permissions: Types::Permissions
|
|
5229
|
+
SENSITIVE: []
|
|
5230
|
+
end
|
|
5231
|
+
|
|
5232
|
+
class SubscribedGroup
|
|
5233
|
+
attr_accessor id: ::String
|
|
5234
|
+
attr_accessor name: ::String
|
|
5235
|
+
SENSITIVE: [:name]
|
|
5236
|
+
end
|
|
5237
|
+
|
|
5238
|
+
class SubscribedGroupInput
|
|
5239
|
+
attr_accessor identifier: ::String
|
|
5198
5240
|
SENSITIVE: []
|
|
5199
5241
|
end
|
|
5200
5242
|
|
|
@@ -5229,23 +5271,35 @@ module Aws::DataZone
|
|
|
5229
5271
|
end
|
|
5230
5272
|
|
|
5231
5273
|
class SubscribedPrincipal
|
|
5274
|
+
attr_accessor group: Types::SubscribedGroup
|
|
5232
5275
|
attr_accessor project: Types::SubscribedProject
|
|
5276
|
+
attr_accessor user: Types::SubscribedUser
|
|
5233
5277
|
attr_accessor unknown: untyped
|
|
5234
5278
|
SENSITIVE: []
|
|
5235
5279
|
|
|
5280
|
+
class Group < SubscribedPrincipal
|
|
5281
|
+
end
|
|
5236
5282
|
class Project < SubscribedPrincipal
|
|
5237
5283
|
end
|
|
5284
|
+
class User < SubscribedPrincipal
|
|
5285
|
+
end
|
|
5238
5286
|
class Unknown < SubscribedPrincipal
|
|
5239
5287
|
end
|
|
5240
5288
|
end
|
|
5241
5289
|
|
|
5242
5290
|
class SubscribedPrincipalInput
|
|
5291
|
+
attr_accessor group: Types::SubscribedGroupInput
|
|
5243
5292
|
attr_accessor project: Types::SubscribedProjectInput
|
|
5293
|
+
attr_accessor user: Types::SubscribedUserInput
|
|
5244
5294
|
attr_accessor unknown: untyped
|
|
5245
5295
|
SENSITIVE: []
|
|
5246
5296
|
|
|
5297
|
+
class Group < SubscribedPrincipalInput
|
|
5298
|
+
end
|
|
5247
5299
|
class Project < SubscribedPrincipalInput
|
|
5248
5300
|
end
|
|
5301
|
+
class User < SubscribedPrincipalInput
|
|
5302
|
+
end
|
|
5249
5303
|
class Unknown < SubscribedPrincipalInput
|
|
5250
5304
|
end
|
|
5251
5305
|
end
|
|
@@ -5271,11 +5325,23 @@ module Aws::DataZone
|
|
|
5271
5325
|
SENSITIVE: []
|
|
5272
5326
|
end
|
|
5273
5327
|
|
|
5328
|
+
class SubscribedUser
|
|
5329
|
+
attr_accessor details: Types::UserProfileDetails
|
|
5330
|
+
attr_accessor id: ::String
|
|
5331
|
+
SENSITIVE: []
|
|
5332
|
+
end
|
|
5333
|
+
|
|
5334
|
+
class SubscribedUserInput
|
|
5335
|
+
attr_accessor identifier: ::String
|
|
5336
|
+
SENSITIVE: []
|
|
5337
|
+
end
|
|
5338
|
+
|
|
5274
5339
|
class SubscriptionGrantSummary
|
|
5275
5340
|
attr_accessor assets: ::Array[Types::SubscribedAsset]
|
|
5276
5341
|
attr_accessor created_at: ::Time
|
|
5277
5342
|
attr_accessor created_by: ::String
|
|
5278
5343
|
attr_accessor domain_id: ::String
|
|
5344
|
+
attr_accessor environment_id: ::String
|
|
5279
5345
|
attr_accessor granted_entity: Types::GrantedEntity
|
|
5280
5346
|
attr_accessor id: ::String
|
|
5281
5347
|
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|
|
@@ -5860,6 +5926,7 @@ module Aws::DataZone
|
|
|
5860
5926
|
attr_accessor created_at: ::Time
|
|
5861
5927
|
attr_accessor created_by: ::String
|
|
5862
5928
|
attr_accessor domain_id: ::String
|
|
5929
|
+
attr_accessor environment_id: ::String
|
|
5863
5930
|
attr_accessor granted_entity: Types::GrantedEntity
|
|
5864
5931
|
attr_accessor id: ::String
|
|
5865
5932
|
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "GRANT_FAILED" | "REVOKE_FAILED" | "GRANT_AND_REVOKE_FAILED" | "COMPLETED" | "INACCESSIBLE")
|