aws-sdk-datazone 1.17.0 → 1.19.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.
@@ -348,6 +348,30 @@ module Aws::DataZone
348
348
  include Aws::Structure
349
349
  end
350
350
 
351
+ # The listing of the asset in a data product.
352
+ #
353
+ # @!attribute [rw] entity_id
354
+ # The entity ID of the listing of the asset in a data product.
355
+ # @return [String]
356
+ #
357
+ # @!attribute [rw] entity_revision
358
+ # The entity revision of the listing of the asset in a data product.
359
+ # @return [String]
360
+ #
361
+ # @!attribute [rw] entity_type
362
+ # The entity type of the listing of the asset in a data product.
363
+ # @return [String]
364
+ #
365
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/AssetInDataProductListingItem AWS API Documentation
366
+ #
367
+ class AssetInDataProductListingItem < Struct.new(
368
+ :entity_id,
369
+ :entity_revision,
370
+ :entity_type)
371
+ SENSITIVE = []
372
+ include Aws::Structure
373
+ end
374
+
351
375
  # A Amazon DataZone inventory asset.
352
376
  #
353
377
  # @!attribute [rw] additional_attributes
@@ -1558,6 +1582,264 @@ module Aws::DataZone
1558
1582
  include Aws::Structure
1559
1583
  end
1560
1584
 
1585
+ # @!attribute [rw] client_token
1586
+ # A unique, case-sensitive identifier that is provided to ensure the
1587
+ # idempotency of the request.
1588
+ #
1589
+ # **A suitable default value is auto-generated.** You should normally
1590
+ # not need to pass this option.
1591
+ # @return [String]
1592
+ #
1593
+ # @!attribute [rw] description
1594
+ # The description of the data product.
1595
+ # @return [String]
1596
+ #
1597
+ # @!attribute [rw] domain_identifier
1598
+ # The ID of the domain where the data product is created.
1599
+ # @return [String]
1600
+ #
1601
+ # @!attribute [rw] forms_input
1602
+ # The metadata forms of the data product.
1603
+ # @return [Array<Types::FormInput>]
1604
+ #
1605
+ # @!attribute [rw] glossary_terms
1606
+ # The glossary terms of the data product.
1607
+ # @return [Array<String>]
1608
+ #
1609
+ # @!attribute [rw] items
1610
+ # The data assets of the data product.
1611
+ # @return [Array<Types::DataProductItem>]
1612
+ #
1613
+ # @!attribute [rw] name
1614
+ # The name of the data product.
1615
+ # @return [String]
1616
+ #
1617
+ # @!attribute [rw] owning_project_identifier
1618
+ # The ID of the owning project of the data product.
1619
+ # @return [String]
1620
+ #
1621
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateDataProductInput AWS API Documentation
1622
+ #
1623
+ class CreateDataProductInput < Struct.new(
1624
+ :client_token,
1625
+ :description,
1626
+ :domain_identifier,
1627
+ :forms_input,
1628
+ :glossary_terms,
1629
+ :items,
1630
+ :name,
1631
+ :owning_project_identifier)
1632
+ SENSITIVE = [:description, :forms_input, :name]
1633
+ include Aws::Structure
1634
+ end
1635
+
1636
+ # @!attribute [rw] created_at
1637
+ # The timestamp at which the data product was created.
1638
+ # @return [Time]
1639
+ #
1640
+ # @!attribute [rw] created_by
1641
+ # The user who created the data product.
1642
+ # @return [String]
1643
+ #
1644
+ # @!attribute [rw] description
1645
+ # The description of the data product.
1646
+ # @return [String]
1647
+ #
1648
+ # @!attribute [rw] domain_id
1649
+ # The ID of the domain where the data product lives.
1650
+ # @return [String]
1651
+ #
1652
+ # @!attribute [rw] first_revision_created_at
1653
+ # The timestamp at which the first revision of the data product was
1654
+ # created.
1655
+ # @return [Time]
1656
+ #
1657
+ # @!attribute [rw] first_revision_created_by
1658
+ # The user who created the first revision of the data product.
1659
+ # @return [String]
1660
+ #
1661
+ # @!attribute [rw] forms_output
1662
+ # The metadata forms of the data product.
1663
+ # @return [Array<Types::FormOutput>]
1664
+ #
1665
+ # @!attribute [rw] glossary_terms
1666
+ # The glossary terms of the data product.
1667
+ # @return [Array<String>]
1668
+ #
1669
+ # @!attribute [rw] id
1670
+ # The ID of the data product.
1671
+ # @return [String]
1672
+ #
1673
+ # @!attribute [rw] items
1674
+ # The data assets of the data product.
1675
+ # @return [Array<Types::DataProductItem>]
1676
+ #
1677
+ # @!attribute [rw] name
1678
+ # The name of the data product.
1679
+ # @return [String]
1680
+ #
1681
+ # @!attribute [rw] owning_project_id
1682
+ # The ID of the owning project of the data product.
1683
+ # @return [String]
1684
+ #
1685
+ # @!attribute [rw] revision
1686
+ # The revision of the data product.
1687
+ # @return [String]
1688
+ #
1689
+ # @!attribute [rw] status
1690
+ # The status of the data product.
1691
+ # @return [String]
1692
+ #
1693
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateDataProductOutput AWS API Documentation
1694
+ #
1695
+ class CreateDataProductOutput < Struct.new(
1696
+ :created_at,
1697
+ :created_by,
1698
+ :description,
1699
+ :domain_id,
1700
+ :first_revision_created_at,
1701
+ :first_revision_created_by,
1702
+ :forms_output,
1703
+ :glossary_terms,
1704
+ :id,
1705
+ :items,
1706
+ :name,
1707
+ :owning_project_id,
1708
+ :revision,
1709
+ :status)
1710
+ SENSITIVE = [:description, :name]
1711
+ include Aws::Structure
1712
+ end
1713
+
1714
+ # @!attribute [rw] client_token
1715
+ # A unique, case-sensitive identifier that is provided to ensure the
1716
+ # idempotency of the request.
1717
+ #
1718
+ # **A suitable default value is auto-generated.** You should normally
1719
+ # not need to pass this option.
1720
+ # @return [String]
1721
+ #
1722
+ # @!attribute [rw] description
1723
+ # The description of the data product revision.
1724
+ # @return [String]
1725
+ #
1726
+ # @!attribute [rw] domain_identifier
1727
+ # The ID of the domain where the data product revision is created.
1728
+ # @return [String]
1729
+ #
1730
+ # @!attribute [rw] forms_input
1731
+ # The metadata forms of the data product revision.
1732
+ # @return [Array<Types::FormInput>]
1733
+ #
1734
+ # @!attribute [rw] glossary_terms
1735
+ # The glossary terms of the data product revision.
1736
+ # @return [Array<String>]
1737
+ #
1738
+ # @!attribute [rw] identifier
1739
+ # The ID of the data product revision.
1740
+ # @return [String]
1741
+ #
1742
+ # @!attribute [rw] items
1743
+ # The data assets of the data product revision.
1744
+ # @return [Array<Types::DataProductItem>]
1745
+ #
1746
+ # @!attribute [rw] name
1747
+ # The name of the data product revision.
1748
+ # @return [String]
1749
+ #
1750
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateDataProductRevisionInput AWS API Documentation
1751
+ #
1752
+ class CreateDataProductRevisionInput < Struct.new(
1753
+ :client_token,
1754
+ :description,
1755
+ :domain_identifier,
1756
+ :forms_input,
1757
+ :glossary_terms,
1758
+ :identifier,
1759
+ :items,
1760
+ :name)
1761
+ SENSITIVE = [:description, :forms_input, :name]
1762
+ include Aws::Structure
1763
+ end
1764
+
1765
+ # @!attribute [rw] created_at
1766
+ # The timestamp at which the data product revision is created.
1767
+ # @return [Time]
1768
+ #
1769
+ # @!attribute [rw] created_by
1770
+ # The user who created the data product revision.
1771
+ # @return [String]
1772
+ #
1773
+ # @!attribute [rw] description
1774
+ # The description of the data product revision.
1775
+ # @return [String]
1776
+ #
1777
+ # @!attribute [rw] domain_id
1778
+ # The ID of the domain where data product revision is created.
1779
+ # @return [String]
1780
+ #
1781
+ # @!attribute [rw] first_revision_created_at
1782
+ # The timestamp at which the first revision of the data product is
1783
+ # created.
1784
+ # @return [Time]
1785
+ #
1786
+ # @!attribute [rw] first_revision_created_by
1787
+ # The user who created the first revision of the data product.
1788
+ # @return [String]
1789
+ #
1790
+ # @!attribute [rw] forms_output
1791
+ # The metadata forms of the data product revision.
1792
+ # @return [Array<Types::FormOutput>]
1793
+ #
1794
+ # @!attribute [rw] glossary_terms
1795
+ # The glossary terms of the data product revision.
1796
+ # @return [Array<String>]
1797
+ #
1798
+ # @!attribute [rw] id
1799
+ # The ID of the data product revision.
1800
+ # @return [String]
1801
+ #
1802
+ # @!attribute [rw] items
1803
+ # The data assets of the data product revision.
1804
+ # @return [Array<Types::DataProductItem>]
1805
+ #
1806
+ # @!attribute [rw] name
1807
+ # The name of the data product revision.
1808
+ # @return [String]
1809
+ #
1810
+ # @!attribute [rw] owning_project_id
1811
+ # The ID of the owning project of the data product revision.
1812
+ # @return [String]
1813
+ #
1814
+ # @!attribute [rw] revision
1815
+ # The revision of the data product revision.
1816
+ # @return [String]
1817
+ #
1818
+ # @!attribute [rw] status
1819
+ # The status of the data product revision.
1820
+ # @return [String]
1821
+ #
1822
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateDataProductRevisionOutput AWS API Documentation
1823
+ #
1824
+ class CreateDataProductRevisionOutput < Struct.new(
1825
+ :created_at,
1826
+ :created_by,
1827
+ :description,
1828
+ :domain_id,
1829
+ :first_revision_created_at,
1830
+ :first_revision_created_by,
1831
+ :forms_output,
1832
+ :glossary_terms,
1833
+ :id,
1834
+ :items,
1835
+ :name,
1836
+ :owning_project_id,
1837
+ :revision,
1838
+ :status)
1839
+ SENSITIVE = [:description, :name]
1840
+ include Aws::Structure
1841
+ end
1842
+
1561
1843
  # @!attribute [rw] asset_forms_input
1562
1844
  # The metadata forms that are to be attached to the assets that this
1563
1845
  # data source works with.
@@ -3170,48 +3452,304 @@ module Aws::DataZone
3170
3452
  :details,
3171
3453
  :domain_id,
3172
3454
  :id,
3173
- :status,
3174
- :type)
3175
- SENSITIVE = []
3455
+ :status,
3456
+ :type)
3457
+ SENSITIVE = []
3458
+ include Aws::Structure
3459
+ end
3460
+
3461
+ # The details of user parameters of an environment blueprint.
3462
+ #
3463
+ # @!attribute [rw] default_value
3464
+ # The default value of the parameter.
3465
+ # @return [String]
3466
+ #
3467
+ # @!attribute [rw] description
3468
+ # The description of the parameter.
3469
+ # @return [String]
3470
+ #
3471
+ # @!attribute [rw] field_type
3472
+ # The filed type of the parameter.
3473
+ # @return [String]
3474
+ #
3475
+ # @!attribute [rw] is_editable
3476
+ # Specifies whether the parameter is editable.
3477
+ # @return [Boolean]
3478
+ #
3479
+ # @!attribute [rw] is_optional
3480
+ # Specifies whether the custom parameter is optional.
3481
+ # @return [Boolean]
3482
+ #
3483
+ # @!attribute [rw] key_name
3484
+ # The key name of the parameter.
3485
+ # @return [String]
3486
+ #
3487
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CustomParameter AWS API Documentation
3488
+ #
3489
+ class CustomParameter < Struct.new(
3490
+ :default_value,
3491
+ :description,
3492
+ :field_type,
3493
+ :is_editable,
3494
+ :is_optional,
3495
+ :key_name)
3496
+ SENSITIVE = [:description]
3497
+ include Aws::Structure
3498
+ end
3499
+
3500
+ # The data product.
3501
+ #
3502
+ # @!attribute [rw] glossary_terms
3503
+ # The glossary terms of the data product.
3504
+ # @return [Array<String>]
3505
+ #
3506
+ # @!attribute [rw] identifier
3507
+ # The ID of the data product.
3508
+ # @return [String]
3509
+ #
3510
+ # @!attribute [rw] item_type
3511
+ # The type of the data product.
3512
+ # @return [String]
3513
+ #
3514
+ # @!attribute [rw] revision
3515
+ # The revision of the data product.
3516
+ # @return [String]
3517
+ #
3518
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductItem AWS API Documentation
3519
+ #
3520
+ class DataProductItem < Struct.new(
3521
+ :glossary_terms,
3522
+ :identifier,
3523
+ :item_type,
3524
+ :revision)
3525
+ SENSITIVE = []
3526
+ include Aws::Structure
3527
+ end
3528
+
3529
+ # The data product listing.
3530
+ #
3531
+ # @!attribute [rw] created_at
3532
+ # The timestamp at which the data product listing was created.
3533
+ # @return [Time]
3534
+ #
3535
+ # @!attribute [rw] data_product_id
3536
+ # The ID of the data product listing.
3537
+ # @return [String]
3538
+ #
3539
+ # @!attribute [rw] data_product_revision
3540
+ # The revision of the data product listing.
3541
+ # @return [String]
3542
+ #
3543
+ # @!attribute [rw] forms
3544
+ # The metadata forms of the data product listing.
3545
+ # @return [String]
3546
+ #
3547
+ # @!attribute [rw] glossary_terms
3548
+ # The glossary terms of the data product listing.
3549
+ # @return [Array<Types::DetailedGlossaryTerm>]
3550
+ #
3551
+ # @!attribute [rw] items
3552
+ # The data assets of the data product listing.
3553
+ # @return [Array<Types::ListingSummary>]
3554
+ #
3555
+ # @!attribute [rw] owning_project_id
3556
+ # The ID of the owning project of the data product listing.
3557
+ # @return [String]
3558
+ #
3559
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductListing AWS API Documentation
3560
+ #
3561
+ class DataProductListing < Struct.new(
3562
+ :created_at,
3563
+ :data_product_id,
3564
+ :data_product_revision,
3565
+ :forms,
3566
+ :glossary_terms,
3567
+ :items,
3568
+ :owning_project_id)
3569
+ SENSITIVE = []
3570
+ include Aws::Structure
3571
+ end
3572
+
3573
+ # The asset of the data product listing.
3574
+ #
3575
+ # @!attribute [rw] additional_attributes
3576
+ # The additional attributes of the asset of the data product.
3577
+ # @return [Types::DataProductListingItemAdditionalAttributes]
3578
+ #
3579
+ # @!attribute [rw] created_at
3580
+ # The timestamp at which the asset of the data product listing was
3581
+ # created.
3582
+ # @return [Time]
3583
+ #
3584
+ # @!attribute [rw] description
3585
+ # The description of the asset of the asset of the data product.
3586
+ # @return [String]
3587
+ #
3588
+ # @!attribute [rw] entity_id
3589
+ # The entity ID of the asset of the asset of the data product.
3590
+ # @return [String]
3591
+ #
3592
+ # @!attribute [rw] entity_revision
3593
+ # The revision of the asset of the asset of the data product.
3594
+ # @return [String]
3595
+ #
3596
+ # @!attribute [rw] glossary_terms
3597
+ # The glossary terms of the asset of the asset of the data product.
3598
+ # @return [Array<Types::DetailedGlossaryTerm>]
3599
+ #
3600
+ # @!attribute [rw] items
3601
+ # The data of the asset of the data product.
3602
+ # @return [Array<Types::ListingSummaryItem>]
3603
+ #
3604
+ # @!attribute [rw] listing_created_by
3605
+ # The timestamp at which the listing was created.
3606
+ # @return [String]
3607
+ #
3608
+ # @!attribute [rw] listing_id
3609
+ # The ID of the listing.
3610
+ # @return [String]
3611
+ #
3612
+ # @!attribute [rw] listing_revision
3613
+ # The revision of the listing.
3614
+ # @return [String]
3615
+ #
3616
+ # @!attribute [rw] listing_updated_by
3617
+ # The user who updated the listing.
3618
+ # @return [String]
3619
+ #
3620
+ # @!attribute [rw] name
3621
+ # The name of the asset of the data product.
3622
+ # @return [String]
3623
+ #
3624
+ # @!attribute [rw] owning_project_id
3625
+ # The ID of the owning project of the asset of the data product.
3626
+ # @return [String]
3627
+ #
3628
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductListingItem AWS API Documentation
3629
+ #
3630
+ class DataProductListingItem < Struct.new(
3631
+ :additional_attributes,
3632
+ :created_at,
3633
+ :description,
3634
+ :entity_id,
3635
+ :entity_revision,
3636
+ :glossary_terms,
3637
+ :items,
3638
+ :listing_created_by,
3639
+ :listing_id,
3640
+ :listing_revision,
3641
+ :listing_updated_by,
3642
+ :name,
3643
+ :owning_project_id)
3644
+ SENSITIVE = [:description, :name]
3645
+ include Aws::Structure
3646
+ end
3647
+
3648
+ # The additional attributes of the asset of the data product.
3649
+ #
3650
+ # @!attribute [rw] forms
3651
+ # The metadata forms of the asset of the data product.
3652
+ # @return [String]
3653
+ #
3654
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductListingItemAdditionalAttributes AWS API Documentation
3655
+ #
3656
+ class DataProductListingItemAdditionalAttributes < Struct.new(
3657
+ :forms)
3658
+ SENSITIVE = []
3659
+ include Aws::Structure
3660
+ end
3661
+
3662
+ # The data product.
3663
+ #
3664
+ # @!attribute [rw] created_at
3665
+ # The timestamp at which the data product was created.
3666
+ # @return [Time]
3667
+ #
3668
+ # @!attribute [rw] created_by
3669
+ # The user who created the data product.
3670
+ # @return [String]
3671
+ #
3672
+ # @!attribute [rw] description
3673
+ # The description of the data product.
3674
+ # @return [String]
3675
+ #
3676
+ # @!attribute [rw] domain_id
3677
+ # The ID of the domain where the data product lives.
3678
+ # @return [String]
3679
+ #
3680
+ # @!attribute [rw] first_revision_created_at
3681
+ # The timestamp at which first revision of the data product was
3682
+ # created.
3683
+ # @return [Time]
3684
+ #
3685
+ # @!attribute [rw] first_revision_created_by
3686
+ # The user who created the first revision of the data product.
3687
+ # @return [String]
3688
+ #
3689
+ # @!attribute [rw] glossary_terms
3690
+ # The glossary terms of the data product.
3691
+ # @return [Array<String>]
3692
+ #
3693
+ # @!attribute [rw] id
3694
+ # The ID of the data product.
3695
+ # @return [String]
3696
+ #
3697
+ # @!attribute [rw] name
3698
+ # The name of the data product.
3699
+ # @return [String]
3700
+ #
3701
+ # @!attribute [rw] owning_project_id
3702
+ # The ID of the owning project of the data product.
3703
+ # @return [String]
3704
+ #
3705
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductResultItem AWS API Documentation
3706
+ #
3707
+ class DataProductResultItem < Struct.new(
3708
+ :created_at,
3709
+ :created_by,
3710
+ :description,
3711
+ :domain_id,
3712
+ :first_revision_created_at,
3713
+ :first_revision_created_by,
3714
+ :glossary_terms,
3715
+ :id,
3716
+ :name,
3717
+ :owning_project_id)
3718
+ SENSITIVE = [:description, :name]
3176
3719
  include Aws::Structure
3177
3720
  end
3178
3721
 
3179
- # The details of user parameters of an environment blueprint.
3722
+ # The data product revision.
3180
3723
  #
3181
- # @!attribute [rw] default_value
3182
- # The default value of the parameter.
3183
- # @return [String]
3724
+ # @!attribute [rw] created_at
3725
+ # The timestamp at which the data product revision was created.
3726
+ # @return [Time]
3184
3727
  #
3185
- # @!attribute [rw] description
3186
- # The description of the parameter.
3728
+ # @!attribute [rw] created_by
3729
+ # The user who created the data product revision.
3187
3730
  # @return [String]
3188
3731
  #
3189
- # @!attribute [rw] field_type
3190
- # The filed type of the parameter.
3732
+ # @!attribute [rw] domain_id
3733
+ # The ID of the domain where the data product revision lives.
3191
3734
  # @return [String]
3192
3735
  #
3193
- # @!attribute [rw] is_editable
3194
- # Specifies whether the parameter is editable.
3195
- # @return [Boolean]
3196
- #
3197
- # @!attribute [rw] is_optional
3198
- # Specifies whether the custom parameter is optional.
3199
- # @return [Boolean]
3736
+ # @!attribute [rw] id
3737
+ # The ID of the data product revision.
3738
+ # @return [String]
3200
3739
  #
3201
- # @!attribute [rw] key_name
3202
- # The key name of the parameter.
3740
+ # @!attribute [rw] revision
3741
+ # The data product revision.
3203
3742
  # @return [String]
3204
3743
  #
3205
- # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CustomParameter AWS API Documentation
3744
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductRevision AWS API Documentation
3206
3745
  #
3207
- class CustomParameter < Struct.new(
3208
- :default_value,
3209
- :description,
3210
- :field_type,
3211
- :is_editable,
3212
- :is_optional,
3213
- :key_name)
3214
- SENSITIVE = [:description]
3746
+ class DataProductRevision < Struct.new(
3747
+ :created_at,
3748
+ :created_by,
3749
+ :domain_id,
3750
+ :id,
3751
+ :revision)
3752
+ SENSITIVE = []
3215
3753
  include Aws::Structure
3216
3754
  end
3217
3755
 
@@ -3563,6 +4101,28 @@ module Aws::DataZone
3563
4101
  #
3564
4102
  class DeleteAssetTypeOutput < Aws::EmptyStructure; end
3565
4103
 
4104
+ # @!attribute [rw] domain_identifier
4105
+ # The ID of the Amazon DataZone domain in which the data product is
4106
+ # deleted.
4107
+ # @return [String]
4108
+ #
4109
+ # @!attribute [rw] identifier
4110
+ # The identifier of the data product that is deleted.
4111
+ # @return [String]
4112
+ #
4113
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDataProductInput AWS API Documentation
4114
+ #
4115
+ class DeleteDataProductInput < Struct.new(
4116
+ :domain_identifier,
4117
+ :identifier)
4118
+ SENSITIVE = []
4119
+ include Aws::Structure
4120
+ end
4121
+
4122
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DeleteDataProductOutput AWS API Documentation
4123
+ #
4124
+ class DeleteDataProductOutput < Aws::EmptyStructure; end
4125
+
3566
4126
  # @!attribute [rw] client_token
3567
4127
  # A unique, case-sensitive identifier that is provided to ensure the
3568
4128
  # idempotency of the request.
@@ -5220,6 +5780,106 @@ module Aws::DataZone
5220
5780
  include Aws::Structure
5221
5781
  end
5222
5782
 
5783
+ # @!attribute [rw] domain_identifier
5784
+ # The ID of the domain where the data product lives.
5785
+ # @return [String]
5786
+ #
5787
+ # @!attribute [rw] identifier
5788
+ # The ID of the data product.
5789
+ # @return [String]
5790
+ #
5791
+ # @!attribute [rw] revision
5792
+ # The revision of the data product.
5793
+ # @return [String]
5794
+ #
5795
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetDataProductInput AWS API Documentation
5796
+ #
5797
+ class GetDataProductInput < Struct.new(
5798
+ :domain_identifier,
5799
+ :identifier,
5800
+ :revision)
5801
+ SENSITIVE = []
5802
+ include Aws::Structure
5803
+ end
5804
+
5805
+ # @!attribute [rw] created_at
5806
+ # The timestamp at which the data product is created.
5807
+ # @return [Time]
5808
+ #
5809
+ # @!attribute [rw] created_by
5810
+ # The user who created the data product.
5811
+ # @return [String]
5812
+ #
5813
+ # @!attribute [rw] description
5814
+ # The description of the data product.
5815
+ # @return [String]
5816
+ #
5817
+ # @!attribute [rw] domain_id
5818
+ # The ID of the domain where the data product lives.
5819
+ # @return [String]
5820
+ #
5821
+ # @!attribute [rw] first_revision_created_at
5822
+ # The timestamp at which the first revision of the data product is
5823
+ # created.
5824
+ # @return [Time]
5825
+ #
5826
+ # @!attribute [rw] first_revision_created_by
5827
+ # The user who created the first revision of the data product.
5828
+ # @return [String]
5829
+ #
5830
+ # @!attribute [rw] forms_output
5831
+ # The metadata forms of the data product.
5832
+ # @return [Array<Types::FormOutput>]
5833
+ #
5834
+ # @!attribute [rw] glossary_terms
5835
+ # The glossary terms of the data product.
5836
+ # @return [Array<String>]
5837
+ #
5838
+ # @!attribute [rw] id
5839
+ # The ID of the data product.
5840
+ # @return [String]
5841
+ #
5842
+ # @!attribute [rw] items
5843
+ # The data assets of the data product.
5844
+ # @return [Array<Types::DataProductItem>]
5845
+ #
5846
+ # @!attribute [rw] name
5847
+ # The name of the data product.
5848
+ # @return [String]
5849
+ #
5850
+ # @!attribute [rw] owning_project_id
5851
+ # The ID of the owning project of the data product.
5852
+ # @return [String]
5853
+ #
5854
+ # @!attribute [rw] revision
5855
+ # The revision of the data product.
5856
+ # @return [String]
5857
+ #
5858
+ # @!attribute [rw] status
5859
+ # The status of the data product.
5860
+ # @return [String]
5861
+ #
5862
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetDataProductOutput AWS API Documentation
5863
+ #
5864
+ class GetDataProductOutput < Struct.new(
5865
+ :created_at,
5866
+ :created_by,
5867
+ :description,
5868
+ :domain_id,
5869
+ :first_revision_created_at,
5870
+ :first_revision_created_by,
5871
+ :forms_output,
5872
+ :glossary_terms,
5873
+ :id,
5874
+ :items,
5875
+ :name,
5876
+ :owning_project_id,
5877
+ :revision,
5878
+ :status)
5879
+ SENSITIVE = [:description, :name]
5880
+ include Aws::Structure
5881
+ end
5882
+
5223
5883
  # @!attribute [rw] domain_identifier
5224
5884
  # The ID of the Amazon DataZone domain in which the data source
5225
5885
  # exists.
@@ -7928,6 +8588,68 @@ module Aws::DataZone
7928
8588
  include Aws::Structure
7929
8589
  end
7930
8590
 
8591
+ # @!attribute [rw] domain_identifier
8592
+ # The ID of the domain of the data product revisions that you want to
8593
+ # list.
8594
+ # @return [String]
8595
+ #
8596
+ # @!attribute [rw] identifier
8597
+ # The ID of the data product revision.
8598
+ # @return [String]
8599
+ #
8600
+ # @!attribute [rw] max_results
8601
+ # The maximum number of asset filters to return in a single call to
8602
+ # `ListDataProductRevisions`. When the number of data product
8603
+ # revisions to be listed is greater than the value of `MaxResults`,
8604
+ # the response contains a `NextToken` value that you can use in a
8605
+ # subsequent call to `ListDataProductRevisions` to list the next set
8606
+ # of data product revisions.
8607
+ # @return [Integer]
8608
+ #
8609
+ # @!attribute [rw] next_token
8610
+ # When the number of data product revisions is greater than the
8611
+ # default value for the `MaxResults` parameter, or if you explicitly
8612
+ # specify a value for `MaxResults` that is less than the number of
8613
+ # data product revisions, the response includes a pagination token
8614
+ # named `NextToken`. You can specify this `NextToken` value in a
8615
+ # subsequent call to `ListDataProductRevisions` to list the next set
8616
+ # of data product revisions.
8617
+ # @return [String]
8618
+ #
8619
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListDataProductRevisionsInput AWS API Documentation
8620
+ #
8621
+ class ListDataProductRevisionsInput < Struct.new(
8622
+ :domain_identifier,
8623
+ :identifier,
8624
+ :max_results,
8625
+ :next_token)
8626
+ SENSITIVE = []
8627
+ include Aws::Structure
8628
+ end
8629
+
8630
+ # @!attribute [rw] items
8631
+ # The results of the `ListDataProductRevisions` action.
8632
+ # @return [Array<Types::DataProductRevision>]
8633
+ #
8634
+ # @!attribute [rw] next_token
8635
+ # When the number of data product revisions is greater than the
8636
+ # default value for the `MaxResults` parameter, or if you explicitly
8637
+ # specify a value for `MaxResults` that is less than the number of
8638
+ # data product revisions, the response includes a pagination token
8639
+ # named `NextToken`. You can specify this `NextToken` value in a
8640
+ # subsequent call to `ListDataProductRevisions` to list the next set
8641
+ # of data product revisions.
8642
+ # @return [String]
8643
+ #
8644
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListDataProductRevisionsOutput AWS API Documentation
8645
+ #
8646
+ class ListDataProductRevisionsOutput < Struct.new(
8647
+ :items,
8648
+ :next_token)
8649
+ SENSITIVE = []
8650
+ include Aws::Structure
8651
+ end
8652
+
7931
8653
  # @!attribute [rw] domain_identifier
7932
8654
  # The identifier of the Amazon DataZone domain in which to list data
7933
8655
  # source run activities.
@@ -8942,6 +9664,10 @@ module Aws::DataZone
8942
9664
  # grants.
8943
9665
  # @return [String]
8944
9666
  #
9667
+ # @!attribute [rw] owning_project_id
9668
+ # The ID of the owning project of the subscription grants.
9669
+ # @return [String]
9670
+ #
8945
9671
  # @!attribute [rw] sort_by
8946
9672
  # Specifies the way of sorting the results of this action.
8947
9673
  # @return [String]
@@ -8969,6 +9695,7 @@ module Aws::DataZone
8969
9695
  :environment_id,
8970
9696
  :max_results,
8971
9697
  :next_token,
9698
+ :owning_project_id,
8972
9699
  :sort_by,
8973
9700
  :sort_order,
8974
9701
  :subscribed_listing_id,
@@ -9042,6 +9769,11 @@ module Aws::DataZone
9042
9769
  #
9043
9770
  # @!attribute [rw] status
9044
9771
  # Specifies the status of the subscription requests.
9772
+ #
9773
+ # <note markdown="1"> This is not a required parameter, but if not specified, by default,
9774
+ # Amazon DataZone returns only `PENDING` subscription requests.
9775
+ #
9776
+ # </note>
9045
9777
  # @return [String]
9046
9778
  #
9047
9779
  # @!attribute [rw] subscribed_listing_id
@@ -9201,6 +9933,11 @@ module Aws::DataZone
9201
9933
  #
9202
9934
  # @!attribute [rw] status
9203
9935
  # The status of the subscriptions that you want to list.
9936
+ #
9937
+ # <note markdown="1"> This is not a required parameter, but if not provided, by default,
9938
+ # Amazon DataZone returns only `APPROVED` subscriptions.
9939
+ #
9940
+ # </note>
9204
9941
  # @return [String]
9205
9942
  #
9206
9943
  # @!attribute [rw] subscribed_listing_id
@@ -9366,16 +10103,22 @@ module Aws::DataZone
9366
10103
  # An asset published in an Amazon DataZone catalog.
9367
10104
  # @return [Types::AssetListing]
9368
10105
  #
10106
+ # @!attribute [rw] data_product_listing
10107
+ # The data product listing.
10108
+ # @return [Types::DataProductListing]
10109
+ #
9369
10110
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListingItem AWS API Documentation
9370
10111
  #
9371
10112
  class ListingItem < Struct.new(
9372
10113
  :asset_listing,
10114
+ :data_product_listing,
9373
10115
  :unknown)
9374
10116
  SENSITIVE = []
9375
10117
  include Aws::Structure
9376
10118
  include Aws::Structure::Union
9377
10119
 
9378
10120
  class AssetListing < ListingItem; end
10121
+ class DataProductListing < ListingItem; end
9379
10122
  class Unknown < ListingItem; end
9380
10123
  end
9381
10124
 
@@ -9422,6 +10165,54 @@ module Aws::DataZone
9422
10165
  include Aws::Structure
9423
10166
  end
9424
10167
 
10168
+ # The summary of the listing of the data product.
10169
+ #
10170
+ # @!attribute [rw] glossary_terms
10171
+ # The glossary terms of the data product.
10172
+ # @return [Array<Types::DetailedGlossaryTerm>]
10173
+ #
10174
+ # @!attribute [rw] listing_id
10175
+ # The ID of the data product listing.
10176
+ # @return [String]
10177
+ #
10178
+ # @!attribute [rw] listing_revision
10179
+ # The revision of the data product listing.
10180
+ # @return [String]
10181
+ #
10182
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListingSummary AWS API Documentation
10183
+ #
10184
+ class ListingSummary < Struct.new(
10185
+ :glossary_terms,
10186
+ :listing_id,
10187
+ :listing_revision)
10188
+ SENSITIVE = []
10189
+ include Aws::Structure
10190
+ end
10191
+
10192
+ # The results of the data product summary.
10193
+ #
10194
+ # @!attribute [rw] glossary_terms
10195
+ # The glossary terms of the data product listing.
10196
+ # @return [Array<Types::DetailedGlossaryTerm>]
10197
+ #
10198
+ # @!attribute [rw] listing_id
10199
+ # The ID of the data product listing.
10200
+ # @return [String]
10201
+ #
10202
+ # @!attribute [rw] listing_revision
10203
+ # The revision of the data product listing.
10204
+ # @return [String]
10205
+ #
10206
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListingSummaryItem AWS API Documentation
10207
+ #
10208
+ class ListingSummaryItem < Struct.new(
10209
+ :glossary_terms,
10210
+ :listing_id,
10211
+ :listing_revision)
10212
+ SENSITIVE = []
10213
+ include Aws::Structure
10214
+ end
10215
+
9425
10216
  # The details about a project member.
9426
10217
  #
9427
10218
  # @note Member is a union - when making an API calls you must set exactly one of the members.
@@ -10960,6 +11751,10 @@ module Aws::DataZone
10960
11751
  # The asset item included in the search results.
10961
11752
  # @return [Types::AssetItem]
10962
11753
  #
11754
+ # @!attribute [rw] data_product_item
11755
+ # The data product.
11756
+ # @return [Types::DataProductResultItem]
11757
+ #
10963
11758
  # @!attribute [rw] glossary_item
10964
11759
  # The glossary item included in the search results.
10965
11760
  # @return [Types::GlossaryItem]
@@ -10972,6 +11767,7 @@ module Aws::DataZone
10972
11767
  #
10973
11768
  class SearchInventoryResultItem < Struct.new(
10974
11769
  :asset_item,
11770
+ :data_product_item,
10975
11771
  :glossary_item,
10976
11772
  :glossary_term_item,
10977
11773
  :unknown)
@@ -10980,6 +11776,7 @@ module Aws::DataZone
10980
11776
  include Aws::Structure::Union
10981
11777
 
10982
11778
  class AssetItem < SearchInventoryResultItem; end
11779
+ class DataProductItem < SearchInventoryResultItem; end
10983
11780
  class GlossaryItem < SearchInventoryResultItem; end
10984
11781
  class GlossaryTermItem < SearchInventoryResultItem; end
10985
11782
  class Unknown < SearchInventoryResultItem; end
@@ -11104,16 +11901,22 @@ module Aws::DataZone
11104
11901
  # action.
11105
11902
  # @return [Types::AssetListingItem]
11106
11903
  #
11904
+ # @!attribute [rw] data_product_listing
11905
+ # The data product listing.
11906
+ # @return [Types::DataProductListingItem]
11907
+ #
11107
11908
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SearchResultItem AWS API Documentation
11108
11909
  #
11109
11910
  class SearchResultItem < Struct.new(
11110
11911
  :asset_listing,
11912
+ :data_product_listing,
11111
11913
  :unknown)
11112
11914
  SENSITIVE = []
11113
11915
  include Aws::Structure
11114
11916
  include Aws::Structure::Union
11115
11917
 
11116
11918
  class AssetListing < SearchResultItem; end
11919
+ class DataProductListing < SearchResultItem; end
11117
11920
  class Unknown < SearchResultItem; end
11118
11921
  end
11119
11922
 
@@ -11785,16 +12588,22 @@ module Aws::DataZone
11785
12588
  # The asset for which the subscription grant is created.
11786
12589
  # @return [Types::SubscribedAssetListing]
11787
12590
  #
12591
+ # @!attribute [rw] product_listing
12592
+ # The data product listing.
12593
+ # @return [Types::SubscribedProductListing]
12594
+ #
11788
12595
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedListingItem AWS API Documentation
11789
12596
  #
11790
12597
  class SubscribedListingItem < Struct.new(
11791
12598
  :asset_listing,
12599
+ :product_listing,
11792
12600
  :unknown)
11793
12601
  SENSITIVE = []
11794
12602
  include Aws::Structure
11795
12603
  include Aws::Structure::Union
11796
12604
 
11797
12605
  class AssetListing < SubscribedListingItem; end
12606
+ class ProductListing < SubscribedListingItem; end
11798
12607
  class Unknown < SubscribedListingItem; end
11799
12608
  end
11800
12609
 
@@ -11840,6 +12649,45 @@ module Aws::DataZone
11840
12649
  class Unknown < SubscribedPrincipalInput; end
11841
12650
  end
11842
12651
 
12652
+ # The data product listing.
12653
+ #
12654
+ # @!attribute [rw] asset_listings
12655
+ # The data assets of the data product listing.
12656
+ # @return [Array<Types::AssetInDataProductListingItem>]
12657
+ #
12658
+ # @!attribute [rw] description
12659
+ # The description of the data product listing.
12660
+ # @return [String]
12661
+ #
12662
+ # @!attribute [rw] entity_id
12663
+ # The ID of the data product listing.
12664
+ # @return [String]
12665
+ #
12666
+ # @!attribute [rw] entity_revision
12667
+ # The revision of the data product listing.
12668
+ # @return [String]
12669
+ #
12670
+ # @!attribute [rw] glossary_terms
12671
+ # The glossary terms of the data product listing.
12672
+ # @return [Array<Types::DetailedGlossaryTerm>]
12673
+ #
12674
+ # @!attribute [rw] name
12675
+ # The name of the data product listing.
12676
+ # @return [String]
12677
+ #
12678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/SubscribedProductListing AWS API Documentation
12679
+ #
12680
+ class SubscribedProductListing < Struct.new(
12681
+ :asset_listings,
12682
+ :description,
12683
+ :entity_id,
12684
+ :entity_revision,
12685
+ :glossary_terms,
12686
+ :name)
12687
+ SENSITIVE = []
12688
+ include Aws::Structure
12689
+ end
12690
+
11843
12691
  # The project that has the subscription grant.
11844
12692
  #
11845
12693
  # @!attribute [rw] id
@@ -11906,7 +12754,7 @@ module Aws::DataZone
11906
12754
  # @return [String]
11907
12755
  #
11908
12756
  # @!attribute [rw] subscription_id
11909
- # The ID of the subscription grant.
12757
+ # The ID of the subscription.
11910
12758
  # @return [String]
11911
12759
  #
11912
12760
  # @!attribute [rw] subscription_target_id