aws-sdk-datazone 1.16.0 → 1.18.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.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-datazone/customizations'
52
52
  # @!group service
53
53
  module Aws::DataZone
54
54
 
55
- GEM_VERSION = '1.16.0'
55
+ GEM_VERSION = '1.18.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -377,6 +377,94 @@ module Aws
377
377
  ) -> _CreateAssetTypeResponseSuccess
378
378
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetTypeResponseSuccess
379
379
 
380
+ interface _CreateDataProductResponseSuccess
381
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataProductOutput]
382
+ def created_at: () -> ::Time
383
+ def created_by: () -> ::String
384
+ def description: () -> ::String
385
+ def domain_id: () -> ::String
386
+ def first_revision_created_at: () -> ::Time
387
+ def first_revision_created_by: () -> ::String
388
+ def forms_output: () -> ::Array[Types::FormOutput]
389
+ def glossary_terms: () -> ::Array[::String]
390
+ def id: () -> ::String
391
+ def items: () -> ::Array[Types::DataProductItem]
392
+ def name: () -> ::String
393
+ def owning_project_id: () -> ::String
394
+ def revision: () -> ::String
395
+ def status: () -> ("CREATED" | "CREATING" | "CREATE_FAILED")
396
+ end
397
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_data_product-instance_method
398
+ def create_data_product: (
399
+ ?client_token: ::String,
400
+ ?description: ::String,
401
+ domain_identifier: ::String,
402
+ ?forms_input: Array[
403
+ {
404
+ content: ::String?,
405
+ form_name: ::String,
406
+ type_identifier: ::String?,
407
+ type_revision: ::String?
408
+ },
409
+ ],
410
+ ?glossary_terms: Array[::String],
411
+ ?items: Array[
412
+ {
413
+ glossary_terms: Array[::String]?,
414
+ identifier: ::String,
415
+ item_type: ("ASSET"),
416
+ revision: ::String?
417
+ },
418
+ ],
419
+ name: ::String,
420
+ owning_project_identifier: ::String
421
+ ) -> _CreateDataProductResponseSuccess
422
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataProductResponseSuccess
423
+
424
+ interface _CreateDataProductRevisionResponseSuccess
425
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataProductRevisionOutput]
426
+ def created_at: () -> ::Time
427
+ def created_by: () -> ::String
428
+ def description: () -> ::String
429
+ def domain_id: () -> ::String
430
+ def first_revision_created_at: () -> ::Time
431
+ def first_revision_created_by: () -> ::String
432
+ def forms_output: () -> ::Array[Types::FormOutput]
433
+ def glossary_terms: () -> ::Array[::String]
434
+ def id: () -> ::String
435
+ def items: () -> ::Array[Types::DataProductItem]
436
+ def name: () -> ::String
437
+ def owning_project_id: () -> ::String
438
+ def revision: () -> ::String
439
+ def status: () -> ("CREATED" | "CREATING" | "CREATE_FAILED")
440
+ end
441
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_data_product_revision-instance_method
442
+ def create_data_product_revision: (
443
+ ?client_token: ::String,
444
+ ?description: ::String,
445
+ domain_identifier: ::String,
446
+ ?forms_input: Array[
447
+ {
448
+ content: ::String?,
449
+ form_name: ::String,
450
+ type_identifier: ::String?,
451
+ type_revision: ::String?
452
+ },
453
+ ],
454
+ ?glossary_terms: Array[::String],
455
+ identifier: ::String,
456
+ ?items: Array[
457
+ {
458
+ glossary_terms: Array[::String]?,
459
+ identifier: ::String,
460
+ item_type: ("ASSET"),
461
+ revision: ::String?
462
+ },
463
+ ],
464
+ name: ::String
465
+ ) -> _CreateDataProductRevisionResponseSuccess
466
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataProductRevisionResponseSuccess
467
+
380
468
  interface _CreateDataSourceResponseSuccess
381
469
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataSourceOutput]
382
470
  def asset_forms_output: () -> ::Array[Types::FormOutput]
@@ -699,7 +787,7 @@ module Aws
699
787
  domain_identifier: ::String,
700
788
  entity_identifier: ::String,
701
789
  ?entity_revision: ::String,
702
- entity_type: ("ASSET")
790
+ entity_type: ("ASSET" | "DATA_PRODUCT")
703
791
  ) -> _CreateListingChangeSetResponseSuccess
704
792
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateListingChangeSetResponseSuccess
705
793
 
@@ -893,6 +981,16 @@ module Aws
893
981
  ) -> _DeleteAssetTypeResponseSuccess
894
982
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetTypeResponseSuccess
895
983
 
984
+ interface _DeleteDataProductResponseSuccess
985
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataProductOutput]
986
+ end
987
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#delete_data_product-instance_method
988
+ def delete_data_product: (
989
+ domain_identifier: ::String,
990
+ identifier: ::String
991
+ ) -> _DeleteDataProductResponseSuccess
992
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataProductResponseSuccess
993
+
896
994
  interface _DeleteDataSourceResponseSuccess
897
995
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataSourceOutput]
898
996
  def asset_forms_output: () -> ::Array[Types::FormOutput]
@@ -1169,6 +1267,31 @@ module Aws
1169
1267
  ) -> _GetAssetTypeResponseSuccess
1170
1268
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetTypeResponseSuccess
1171
1269
 
1270
+ interface _GetDataProductResponseSuccess
1271
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataProductOutput]
1272
+ def created_at: () -> ::Time
1273
+ def created_by: () -> ::String
1274
+ def description: () -> ::String
1275
+ def domain_id: () -> ::String
1276
+ def first_revision_created_at: () -> ::Time
1277
+ def first_revision_created_by: () -> ::String
1278
+ def forms_output: () -> ::Array[Types::FormOutput]
1279
+ def glossary_terms: () -> ::Array[::String]
1280
+ def id: () -> ::String
1281
+ def items: () -> ::Array[Types::DataProductItem]
1282
+ def name: () -> ::String
1283
+ def owning_project_id: () -> ::String
1284
+ def revision: () -> ::String
1285
+ def status: () -> ("CREATED" | "CREATING" | "CREATE_FAILED")
1286
+ end
1287
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_data_product-instance_method
1288
+ def get_data_product: (
1289
+ domain_identifier: ::String,
1290
+ identifier: ::String,
1291
+ ?revision: ::String
1292
+ ) -> _GetDataProductResponseSuccess
1293
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataProductResponseSuccess
1294
+
1172
1295
  interface _GetDataSourceResponseSuccess
1173
1296
  include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceOutput]
1174
1297
  def asset_forms_output: () -> ::Array[Types::FormOutput]
@@ -1332,6 +1455,20 @@ module Aws
1332
1455
  ) -> _GetEnvironmentBlueprintConfigurationResponseSuccess
1333
1456
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentBlueprintConfigurationResponseSuccess
1334
1457
 
1458
+ interface _GetEnvironmentCredentialsResponseSuccess
1459
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentCredentialsOutput]
1460
+ def access_key_id: () -> ::String
1461
+ def expiration: () -> ::Time
1462
+ def secret_access_key: () -> ::String
1463
+ def session_token: () -> ::String
1464
+ end
1465
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment_credentials-instance_method
1466
+ def get_environment_credentials: (
1467
+ domain_identifier: ::String,
1468
+ environment_identifier: ::String
1469
+ ) -> _GetEnvironmentCredentialsResponseSuccess
1470
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentCredentialsResponseSuccess
1471
+
1335
1472
  interface _GetEnvironmentProfileResponseSuccess
1336
1473
  include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentProfileOutput]
1337
1474
  def aws_account_id: () -> ::String
@@ -1683,6 +1820,20 @@ module Aws
1683
1820
  ) -> _ListAssetRevisionsResponseSuccess
1684
1821
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetRevisionsResponseSuccess
1685
1822
 
1823
+ interface _ListDataProductRevisionsResponseSuccess
1824
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataProductRevisionsOutput]
1825
+ def items: () -> ::Array[Types::DataProductRevision]
1826
+ def next_token: () -> ::String
1827
+ end
1828
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#list_data_product_revisions-instance_method
1829
+ def list_data_product_revisions: (
1830
+ domain_identifier: ::String,
1831
+ identifier: ::String,
1832
+ ?max_results: ::Integer,
1833
+ ?next_token: ::String
1834
+ ) -> _ListDataProductRevisionsResponseSuccess
1835
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataProductRevisionsResponseSuccess
1836
+
1686
1837
  interface _ListDataSourceRunActivitiesResponseSuccess
1687
1838
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSourceRunActivitiesOutput]
1688
1839
  def items: () -> ::Array[Types::DataSourceRunActivity]
@@ -1919,6 +2070,7 @@ module Aws
1919
2070
  ?environment_id: ::String,
1920
2071
  ?max_results: ::Integer,
1921
2072
  ?next_token: ::String,
2073
+ ?owning_project_id: ::String,
1922
2074
  ?sort_by: ("CREATED_AT" | "UPDATED_AT"),
1923
2075
  ?sort_order: ("ASCENDING" | "DESCENDING"),
1924
2076
  ?subscribed_listing_id: ::String,
@@ -2177,7 +2329,7 @@ module Aws
2177
2329
  attribute: ::String
2178
2330
  },
2179
2331
  ],
2180
- search_scope: ("ASSET" | "GLOSSARY" | "GLOSSARY_TERM"),
2332
+ search_scope: ("ASSET" | "GLOSSARY" | "GLOSSARY_TERM" | "DATA_PRODUCT"),
2181
2333
  ?search_text: ::String,
2182
2334
  ?sort: {
2183
2335
  attribute: ::String,
data/sig/types.rbs CHANGED
@@ -105,6 +105,13 @@ module Aws::DataZone
105
105
  SENSITIVE: [:description, :name]
106
106
  end
107
107
 
108
+ class AssetInDataProductListingItem
109
+ attr_accessor entity_id: ::String
110
+ attr_accessor entity_revision: ::String
111
+ attr_accessor entity_type: ::String
112
+ SENSITIVE: []
113
+ end
114
+
108
115
  class AssetItem
109
116
  attr_accessor additional_attributes: Types::AssetItemAdditionalAttributes
110
117
  attr_accessor created_at: ::Time
@@ -404,6 +411,66 @@ module Aws::DataZone
404
411
  SENSITIVE: [:description]
405
412
  end
406
413
 
414
+ class CreateDataProductInput
415
+ attr_accessor client_token: ::String
416
+ attr_accessor description: ::String
417
+ attr_accessor domain_identifier: ::String
418
+ attr_accessor forms_input: ::Array[Types::FormInput]
419
+ attr_accessor glossary_terms: ::Array[::String]
420
+ attr_accessor items: ::Array[Types::DataProductItem]
421
+ attr_accessor name: ::String
422
+ attr_accessor owning_project_identifier: ::String
423
+ SENSITIVE: [:description, :forms_input, :name]
424
+ end
425
+
426
+ class CreateDataProductOutput
427
+ attr_accessor created_at: ::Time
428
+ attr_accessor created_by: ::String
429
+ attr_accessor description: ::String
430
+ attr_accessor domain_id: ::String
431
+ attr_accessor first_revision_created_at: ::Time
432
+ attr_accessor first_revision_created_by: ::String
433
+ attr_accessor forms_output: ::Array[Types::FormOutput]
434
+ attr_accessor glossary_terms: ::Array[::String]
435
+ attr_accessor id: ::String
436
+ attr_accessor items: ::Array[Types::DataProductItem]
437
+ attr_accessor name: ::String
438
+ attr_accessor owning_project_id: ::String
439
+ attr_accessor revision: ::String
440
+ attr_accessor status: ("CREATED" | "CREATING" | "CREATE_FAILED")
441
+ SENSITIVE: [:description, :name]
442
+ end
443
+
444
+ class CreateDataProductRevisionInput
445
+ attr_accessor client_token: ::String
446
+ attr_accessor description: ::String
447
+ attr_accessor domain_identifier: ::String
448
+ attr_accessor forms_input: ::Array[Types::FormInput]
449
+ attr_accessor glossary_terms: ::Array[::String]
450
+ attr_accessor identifier: ::String
451
+ attr_accessor items: ::Array[Types::DataProductItem]
452
+ attr_accessor name: ::String
453
+ SENSITIVE: [:description, :forms_input, :name]
454
+ end
455
+
456
+ class CreateDataProductRevisionOutput
457
+ attr_accessor created_at: ::Time
458
+ attr_accessor created_by: ::String
459
+ attr_accessor description: ::String
460
+ attr_accessor domain_id: ::String
461
+ attr_accessor first_revision_created_at: ::Time
462
+ attr_accessor first_revision_created_by: ::String
463
+ attr_accessor forms_output: ::Array[Types::FormOutput]
464
+ attr_accessor glossary_terms: ::Array[::String]
465
+ attr_accessor id: ::String
466
+ attr_accessor items: ::Array[Types::DataProductItem]
467
+ attr_accessor name: ::String
468
+ attr_accessor owning_project_id: ::String
469
+ attr_accessor revision: ::String
470
+ attr_accessor status: ("CREATED" | "CREATING" | "CREATE_FAILED")
471
+ SENSITIVE: [:description, :name]
472
+ end
473
+
407
474
  class CreateDataSourceInput
408
475
  attr_accessor asset_forms_input: ::Array[Types::FormInput]
409
476
  attr_accessor client_token: ::String
@@ -642,7 +709,7 @@ module Aws::DataZone
642
709
  attr_accessor domain_identifier: ::String
643
710
  attr_accessor entity_identifier: ::String
644
711
  attr_accessor entity_revision: ::String
645
- attr_accessor entity_type: ("ASSET")
712
+ attr_accessor entity_type: ("ASSET" | "DATA_PRODUCT")
646
713
  SENSITIVE: []
647
714
  end
648
715
 
@@ -796,6 +863,70 @@ module Aws::DataZone
796
863
  SENSITIVE: [:description]
797
864
  end
798
865
 
866
+ class DataProductItem
867
+ attr_accessor glossary_terms: ::Array[::String]
868
+ attr_accessor identifier: ::String
869
+ attr_accessor item_type: ("ASSET")
870
+ attr_accessor revision: ::String
871
+ SENSITIVE: []
872
+ end
873
+
874
+ class DataProductListing
875
+ attr_accessor created_at: ::Time
876
+ attr_accessor data_product_id: ::String
877
+ attr_accessor data_product_revision: ::String
878
+ attr_accessor forms: ::String
879
+ attr_accessor glossary_terms: ::Array[Types::DetailedGlossaryTerm]
880
+ attr_accessor items: ::Array[Types::ListingSummary]
881
+ attr_accessor owning_project_id: ::String
882
+ SENSITIVE: []
883
+ end
884
+
885
+ class DataProductListingItem
886
+ attr_accessor additional_attributes: Types::DataProductListingItemAdditionalAttributes
887
+ attr_accessor created_at: ::Time
888
+ attr_accessor description: ::String
889
+ attr_accessor entity_id: ::String
890
+ attr_accessor entity_revision: ::String
891
+ attr_accessor glossary_terms: ::Array[Types::DetailedGlossaryTerm]
892
+ attr_accessor items: ::Array[Types::ListingSummaryItem]
893
+ attr_accessor listing_created_by: ::String
894
+ attr_accessor listing_id: ::String
895
+ attr_accessor listing_revision: ::String
896
+ attr_accessor listing_updated_by: ::String
897
+ attr_accessor name: ::String
898
+ attr_accessor owning_project_id: ::String
899
+ SENSITIVE: [:description, :name]
900
+ end
901
+
902
+ class DataProductListingItemAdditionalAttributes
903
+ attr_accessor forms: ::String
904
+ SENSITIVE: []
905
+ end
906
+
907
+ class DataProductResultItem
908
+ attr_accessor created_at: ::Time
909
+ attr_accessor created_by: ::String
910
+ attr_accessor description: ::String
911
+ attr_accessor domain_id: ::String
912
+ attr_accessor first_revision_created_at: ::Time
913
+ attr_accessor first_revision_created_by: ::String
914
+ attr_accessor glossary_terms: ::Array[::String]
915
+ attr_accessor id: ::String
916
+ attr_accessor name: ::String
917
+ attr_accessor owning_project_id: ::String
918
+ SENSITIVE: [:description, :name]
919
+ end
920
+
921
+ class DataProductRevision
922
+ attr_accessor created_at: ::Time
923
+ attr_accessor created_by: ::String
924
+ attr_accessor domain_id: ::String
925
+ attr_accessor id: ::String
926
+ attr_accessor revision: ::String
927
+ SENSITIVE: []
928
+ end
929
+
799
930
  class DataSourceConfigurationInput
800
931
  attr_accessor glue_run_configuration: Types::GlueRunConfigurationInput
801
932
  attr_accessor redshift_run_configuration: Types::RedshiftRunConfigurationInput
@@ -902,6 +1033,15 @@ module Aws::DataZone
902
1033
  class DeleteAssetTypeOutput < Aws::EmptyStructure
903
1034
  end
904
1035
 
1036
+ class DeleteDataProductInput
1037
+ attr_accessor domain_identifier: ::String
1038
+ attr_accessor identifier: ::String
1039
+ SENSITIVE: []
1040
+ end
1041
+
1042
+ class DeleteDataProductOutput < Aws::EmptyStructure
1043
+ end
1044
+
905
1045
  class DeleteDataSourceInput
906
1046
  attr_accessor client_token: ::String
907
1047
  attr_accessor domain_identifier: ::String
@@ -1360,6 +1500,31 @@ module Aws::DataZone
1360
1500
  SENSITIVE: [:description]
1361
1501
  end
1362
1502
 
1503
+ class GetDataProductInput
1504
+ attr_accessor domain_identifier: ::String
1505
+ attr_accessor identifier: ::String
1506
+ attr_accessor revision: ::String
1507
+ SENSITIVE: []
1508
+ end
1509
+
1510
+ class GetDataProductOutput
1511
+ attr_accessor created_at: ::Time
1512
+ attr_accessor created_by: ::String
1513
+ attr_accessor description: ::String
1514
+ attr_accessor domain_id: ::String
1515
+ attr_accessor first_revision_created_at: ::Time
1516
+ attr_accessor first_revision_created_by: ::String
1517
+ attr_accessor forms_output: ::Array[Types::FormOutput]
1518
+ attr_accessor glossary_terms: ::Array[::String]
1519
+ attr_accessor id: ::String
1520
+ attr_accessor items: ::Array[Types::DataProductItem]
1521
+ attr_accessor name: ::String
1522
+ attr_accessor owning_project_id: ::String
1523
+ attr_accessor revision: ::String
1524
+ attr_accessor status: ("CREATED" | "CREATING" | "CREATE_FAILED")
1525
+ SENSITIVE: [:description, :name]
1526
+ end
1527
+
1363
1528
  class GetDataSourceInput
1364
1529
  attr_accessor domain_identifier: ::String
1365
1530
  attr_accessor identifier: ::String
@@ -1492,6 +1657,20 @@ module Aws::DataZone
1492
1657
  SENSITIVE: [:description]
1493
1658
  end
1494
1659
 
1660
+ class GetEnvironmentCredentialsInput
1661
+ attr_accessor domain_identifier: ::String
1662
+ attr_accessor environment_identifier: ::String
1663
+ SENSITIVE: []
1664
+ end
1665
+
1666
+ class GetEnvironmentCredentialsOutput
1667
+ attr_accessor access_key_id: ::String
1668
+ attr_accessor expiration: ::Time
1669
+ attr_accessor secret_access_key: ::String
1670
+ attr_accessor session_token: ::String
1671
+ SENSITIVE: []
1672
+ end
1673
+
1495
1674
  class GetEnvironmentInput
1496
1675
  attr_accessor domain_identifier: ::String
1497
1676
  attr_accessor identifier: ::String
@@ -2063,6 +2242,20 @@ module Aws::DataZone
2063
2242
  SENSITIVE: []
2064
2243
  end
2065
2244
 
2245
+ class ListDataProductRevisionsInput
2246
+ attr_accessor domain_identifier: ::String
2247
+ attr_accessor identifier: ::String
2248
+ attr_accessor max_results: ::Integer
2249
+ attr_accessor next_token: ::String
2250
+ SENSITIVE: []
2251
+ end
2252
+
2253
+ class ListDataProductRevisionsOutput
2254
+ attr_accessor items: ::Array[Types::DataProductRevision]
2255
+ attr_accessor next_token: ::String
2256
+ SENSITIVE: []
2257
+ end
2258
+
2066
2259
  class ListDataSourceRunActivitiesInput
2067
2260
  attr_accessor domain_identifier: ::String
2068
2261
  attr_accessor identifier: ::String
@@ -2293,6 +2486,7 @@ module Aws::DataZone
2293
2486
  attr_accessor environment_id: ::String
2294
2487
  attr_accessor max_results: ::Integer
2295
2488
  attr_accessor next_token: ::String
2489
+ attr_accessor owning_project_id: ::String
2296
2490
  attr_accessor sort_by: ("CREATED_AT" | "UPDATED_AT")
2297
2491
  attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
2298
2492
  attr_accessor subscribed_listing_id: ::String
@@ -2392,11 +2586,14 @@ module Aws::DataZone
2392
2586
 
2393
2587
  class ListingItem
2394
2588
  attr_accessor asset_listing: Types::AssetListing
2589
+ attr_accessor data_product_listing: Types::DataProductListing
2395
2590
  attr_accessor unknown: untyped
2396
2591
  SENSITIVE: []
2397
2592
 
2398
2593
  class AssetListing < ListingItem
2399
2594
  end
2595
+ class DataProductListing < ListingItem
2596
+ end
2400
2597
  class Unknown < ListingItem
2401
2598
  end
2402
2599
  end
@@ -2413,6 +2610,20 @@ module Aws::DataZone
2413
2610
  SENSITIVE: []
2414
2611
  end
2415
2612
 
2613
+ class ListingSummary
2614
+ attr_accessor glossary_terms: ::Array[Types::DetailedGlossaryTerm]
2615
+ attr_accessor listing_id: ::String
2616
+ attr_accessor listing_revision: ::String
2617
+ SENSITIVE: []
2618
+ end
2619
+
2620
+ class ListingSummaryItem
2621
+ attr_accessor glossary_terms: ::Array[Types::DetailedGlossaryTerm]
2622
+ attr_accessor listing_id: ::String
2623
+ attr_accessor listing_revision: ::String
2624
+ SENSITIVE: []
2625
+ end
2626
+
2416
2627
  class Member
2417
2628
  attr_accessor group_identifier: ::String
2418
2629
  attr_accessor user_identifier: ::String
@@ -2875,7 +3086,7 @@ module Aws::DataZone
2875
3086
  attr_accessor next_token: ::String
2876
3087
  attr_accessor owning_project_identifier: ::String
2877
3088
  attr_accessor search_in: ::Array[Types::SearchInItem]
2878
- attr_accessor search_scope: ("ASSET" | "GLOSSARY" | "GLOSSARY_TERM")
3089
+ attr_accessor search_scope: ("ASSET" | "GLOSSARY" | "GLOSSARY_TERM" | "DATA_PRODUCT")
2879
3090
  attr_accessor search_text: ::String
2880
3091
  attr_accessor sort: Types::SearchSort
2881
3092
  SENSITIVE: []
@@ -2883,6 +3094,7 @@ module Aws::DataZone
2883
3094
 
2884
3095
  class SearchInventoryResultItem
2885
3096
  attr_accessor asset_item: Types::AssetItem
3097
+ attr_accessor data_product_item: Types::DataProductResultItem
2886
3098
  attr_accessor glossary_item: Types::GlossaryItem
2887
3099
  attr_accessor glossary_term_item: Types::GlossaryTermItem
2888
3100
  attr_accessor unknown: untyped
@@ -2890,6 +3102,8 @@ module Aws::DataZone
2890
3102
 
2891
3103
  class AssetItem < SearchInventoryResultItem
2892
3104
  end
3105
+ class DataProductItem < SearchInventoryResultItem
3106
+ end
2893
3107
  class GlossaryItem < SearchInventoryResultItem
2894
3108
  end
2895
3109
  class GlossaryTermItem < SearchInventoryResultItem
@@ -2926,11 +3140,14 @@ module Aws::DataZone
2926
3140
 
2927
3141
  class SearchResultItem
2928
3142
  attr_accessor asset_listing: Types::AssetListingItem
3143
+ attr_accessor data_product_listing: Types::DataProductListingItem
2929
3144
  attr_accessor unknown: untyped
2930
3145
  SENSITIVE: []
2931
3146
 
2932
3147
  class AssetListing < SearchResultItem
2933
3148
  end
3149
+ class DataProductListing < SearchResultItem
3150
+ end
2934
3151
  class Unknown < SearchResultItem
2935
3152
  end
2936
3153
  end
@@ -3115,11 +3332,14 @@ module Aws::DataZone
3115
3332
 
3116
3333
  class SubscribedListingItem
3117
3334
  attr_accessor asset_listing: Types::SubscribedAssetListing
3335
+ attr_accessor product_listing: Types::SubscribedProductListing
3118
3336
  attr_accessor unknown: untyped
3119
3337
  SENSITIVE: []
3120
3338
 
3121
3339
  class AssetListing < SubscribedListingItem
3122
3340
  end
3341
+ class ProductListing < SubscribedListingItem
3342
+ end
3123
3343
  class Unknown < SubscribedListingItem
3124
3344
  end
3125
3345
  end
@@ -3146,6 +3366,16 @@ module Aws::DataZone
3146
3366
  end
3147
3367
  end
3148
3368
 
3369
+ class SubscribedProductListing
3370
+ attr_accessor asset_listings: ::Array[Types::AssetInDataProductListingItem]
3371
+ attr_accessor description: ::String
3372
+ attr_accessor entity_id: ::String
3373
+ attr_accessor entity_revision: ::String
3374
+ attr_accessor glossary_terms: ::Array[Types::DetailedGlossaryTerm]
3375
+ attr_accessor name: ::String
3376
+ SENSITIVE: []
3377
+ end
3378
+
3149
3379
  class SubscribedProject
3150
3380
  attr_accessor id: ::String
3151
3381
  attr_accessor name: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datazone
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-23 00:00:00.000000000 Z
11
+ date: 2024-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core