aws-sdk-marketplacecatalog 1.36.0 → 1.37.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eaba551138da8535b3bdeffdb0c89089f934adc938fb3da4f1cdecc8b4670420
4
- data.tar.gz: 519ffa5dcc3b3ce5389bf0180aefe89b3d363da4788444830d0c74d4fbc46dba
3
+ metadata.gz: 3dab9ec081f9b37daf0e38a8ca3ac7145510a77f141beea52364dc630fcc264f
4
+ data.tar.gz: f52767c90a9b913488329d59b281cccf365f4ff100ddc0d5c478edebeeb28ee9
5
5
  SHA512:
6
- metadata.gz: 0d142c134747fe81bbc4c111094e438387aebd50847cd715a37a3f98a35e14d28567b7c8ef11b6d160e24823c8ec3a239ae21ff8c7192c25ce47d73e07313fb3
7
- data.tar.gz: 7c43a5fcc5a1bd137883dfe241a19918621ca09e7cb009a3da4c549ccd89fee14627d4104e28e4e1c3a945104b8a3dc3f4c287eba5565f2ff5bf4dd20233f524
6
+ metadata.gz: 4ebed5d9f71e74942917bebc7b8294cfc2d76c552171e25f29cc982bbeb0ea18e2450c4c81459f47c160d81ec2e6e3c77077ae0468c77207c40692ff6a364e7a
7
+ data.tar.gz: ae8c76c4e98ece2df7f6c884afbc791df006c1c375ee81cc670809c323177f105ad1eaf64f0e04d36839c785f7648b1a10cc0df47b28db41df77f81c7c30ee56
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2023-11-30)
5
+ ------------------
6
+
7
+ * Feature - This release enhances the ListEntities API to support new entity type-specific strongly typed filters in the request and entity type-specific strongly typed summaries in the response.
8
+
4
9
  1.36.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.37.0
@@ -662,7 +662,10 @@ module Aws::MarketplaceCatalog
662
662
  # The catalog related to the request. Fixed value: `AWSMarketplace`
663
663
  #
664
664
  # @option params [required, String] :entity_type
665
- # The type of entities to retrieve.
665
+ # The type of entities to retrieve. Valid values are: `ServerProduct`,
666
+ # `AmiProduct`, `ContainerProduct`, `DataProduct`, `SaaSProduct`,
667
+ # `ProcurementPolicy`, `Experience`, `Audience`, `BrandingSettings`,
668
+ # `Offer`, `Seller`, `ResaleAuthorization`.
666
669
  #
667
670
  # @option params [Array<Types::Filter>] :filter_list
668
671
  # An array of filter objects. Each filter object contains two
@@ -686,6 +689,17 @@ module Aws::MarketplaceCatalog
686
689
  # AWS Marketplace Catalog API `PutResourcePolicy` operation can't be
687
690
  # discovered through the `SHARED` parameter.
688
691
  #
692
+ # @option params [Types::EntityTypeFilters] :entity_type_filters
693
+ # A Union object containing filter shapes for all `EntityType`s. Each
694
+ # `EntityTypeFilter` shape will have filters applicable for that
695
+ # `EntityType` that can be used to search or filter entities.
696
+ #
697
+ # @option params [Types::EntityTypeSort] :entity_type_sort
698
+ # A Union object containing `Sort` shapes for all `EntityType`s. Each
699
+ # `EntityTypeSort` shape will have `SortBy` and `SortOrder` applicable
700
+ # for fields on that `EntityType`. This can be used to sort the results
701
+ # of the filter query.
702
+ #
689
703
  # @return [Types::ListEntitiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
690
704
  #
691
705
  # * {Types::ListEntitiesResponse#entity_summary_list #entity_summary_list} => Array&lt;Types::EntitySummary&gt;
@@ -711,6 +725,204 @@ module Aws::MarketplaceCatalog
711
725
  # next_token: "NextToken",
712
726
  # max_results: 1,
713
727
  # ownership_type: "SELF", # accepts SELF, SHARED
728
+ # entity_type_filters: {
729
+ # data_product_filters: {
730
+ # entity_id: {
731
+ # value_list: ["DataProductEntityIdString"],
732
+ # },
733
+ # product_title: {
734
+ # value_list: ["DataProductTitleString"],
735
+ # wild_card_value: "DataProductTitleString",
736
+ # },
737
+ # visibility: {
738
+ # value_list: ["Limited"], # accepts Limited, Public, Restricted, Unavailable, Draft
739
+ # },
740
+ # last_modified_date: {
741
+ # date_range: {
742
+ # after_value: "DateTimeISO8601",
743
+ # before_value: "DateTimeISO8601",
744
+ # },
745
+ # },
746
+ # },
747
+ # saa_s_product_filters: {
748
+ # entity_id: {
749
+ # value_list: ["SaaSProductEntityIdString"],
750
+ # },
751
+ # product_title: {
752
+ # value_list: ["SaaSProductTitleString"],
753
+ # wild_card_value: "SaaSProductTitleString",
754
+ # },
755
+ # visibility: {
756
+ # value_list: ["Limited"], # accepts Limited, Public, Restricted, Draft
757
+ # },
758
+ # last_modified_date: {
759
+ # date_range: {
760
+ # after_value: "DateTimeISO8601",
761
+ # before_value: "DateTimeISO8601",
762
+ # },
763
+ # },
764
+ # },
765
+ # ami_product_filters: {
766
+ # entity_id: {
767
+ # value_list: ["AmiProductEntityIdString"],
768
+ # },
769
+ # last_modified_date: {
770
+ # date_range: {
771
+ # after_value: "DateTimeISO8601",
772
+ # before_value: "DateTimeISO8601",
773
+ # },
774
+ # },
775
+ # product_title: {
776
+ # value_list: ["AmiProductTitleString"],
777
+ # wild_card_value: "AmiProductTitleString",
778
+ # },
779
+ # visibility: {
780
+ # value_list: ["Limited"], # accepts Limited, Public, Restricted, Draft
781
+ # },
782
+ # },
783
+ # offer_filters: {
784
+ # entity_id: {
785
+ # value_list: ["OfferEntityIdString"],
786
+ # },
787
+ # name: {
788
+ # value_list: ["OfferNameString"],
789
+ # wild_card_value: "OfferNameString",
790
+ # },
791
+ # product_id: {
792
+ # value_list: ["OfferProductIdString"],
793
+ # },
794
+ # release_date: {
795
+ # date_range: {
796
+ # after_value: "DateTimeISO8601",
797
+ # before_value: "DateTimeISO8601",
798
+ # },
799
+ # },
800
+ # availability_end_date: {
801
+ # date_range: {
802
+ # after_value: "DateTimeISO8601",
803
+ # before_value: "DateTimeISO8601",
804
+ # },
805
+ # },
806
+ # buyer_accounts: {
807
+ # wild_card_value: "OfferBuyerAccountsFilterWildcard",
808
+ # },
809
+ # state: {
810
+ # value_list: ["Draft"], # accepts Draft, Released
811
+ # },
812
+ # targeting: {
813
+ # value_list: ["BuyerAccounts"], # accepts BuyerAccounts, ParticipatingPrograms, CountryCodes, None
814
+ # },
815
+ # last_modified_date: {
816
+ # date_range: {
817
+ # after_value: "DateTimeISO8601",
818
+ # before_value: "DateTimeISO8601",
819
+ # },
820
+ # },
821
+ # },
822
+ # container_product_filters: {
823
+ # entity_id: {
824
+ # value_list: ["ContainerProductEntityIdString"],
825
+ # },
826
+ # last_modified_date: {
827
+ # date_range: {
828
+ # after_value: "DateTimeISO8601",
829
+ # before_value: "DateTimeISO8601",
830
+ # },
831
+ # },
832
+ # product_title: {
833
+ # value_list: ["ContainerProductTitleString"],
834
+ # wild_card_value: "ContainerProductTitleString",
835
+ # },
836
+ # visibility: {
837
+ # value_list: ["Limited"], # accepts Limited, Public, Restricted, Draft
838
+ # },
839
+ # },
840
+ # resale_authorization_filters: {
841
+ # entity_id: {
842
+ # value_list: ["ResaleAuthorizationEntityIdString"],
843
+ # },
844
+ # name: {
845
+ # value_list: ["ResaleAuthorizationNameString"],
846
+ # wild_card_value: "ResaleAuthorizationNameFilterWildcard",
847
+ # },
848
+ # product_id: {
849
+ # value_list: ["ResaleAuthorizationProductIdString"],
850
+ # wild_card_value: "ResaleAuthorizationProductIdFilterWildcard",
851
+ # },
852
+ # created_date: {
853
+ # date_range: {
854
+ # after_value: "DateTimeISO8601",
855
+ # before_value: "DateTimeISO8601",
856
+ # },
857
+ # value_list: ["DateTimeISO8601"],
858
+ # },
859
+ # availability_end_date: {
860
+ # date_range: {
861
+ # after_value: "DateTimeISO8601",
862
+ # before_value: "DateTimeISO8601",
863
+ # },
864
+ # value_list: ["DateTimeISO8601"],
865
+ # },
866
+ # manufacturer_account_id: {
867
+ # value_list: ["ResaleAuthorizationManufacturerAccountIdString"],
868
+ # wild_card_value: "ResaleAuthorizationManufacturerAccountIdFilterWildcard",
869
+ # },
870
+ # product_name: {
871
+ # value_list: ["ResaleAuthorizationProductNameString"],
872
+ # wild_card_value: "ResaleAuthorizationProductNameFilterWildcard",
873
+ # },
874
+ # manufacturer_legal_name: {
875
+ # value_list: ["ResaleAuthorizationManufacturerLegalNameString"],
876
+ # wild_card_value: "ResaleAuthorizationManufacturerLegalNameFilterWildcard",
877
+ # },
878
+ # reseller_account_id: {
879
+ # value_list: ["ResaleAuthorizationResellerAccountIDString"],
880
+ # wild_card_value: "ResaleAuthorizationResellerAccountIDFilterWildcard",
881
+ # },
882
+ # reseller_legal_name: {
883
+ # value_list: ["ResaleAuthorizationResellerLegalNameString"],
884
+ # wild_card_value: "ResaleAuthorizationResellerLegalNameFilterWildcard",
885
+ # },
886
+ # status: {
887
+ # value_list: ["Draft"], # accepts Draft, Active, Restricted
888
+ # },
889
+ # offer_extended_status: {
890
+ # value_list: ["ResaleAuthorizationOfferExtendedStatusString"],
891
+ # },
892
+ # last_modified_date: {
893
+ # date_range: {
894
+ # after_value: "DateTimeISO8601",
895
+ # before_value: "DateTimeISO8601",
896
+ # },
897
+ # },
898
+ # },
899
+ # },
900
+ # entity_type_sort: {
901
+ # data_product_sort: {
902
+ # sort_by: "EntityId", # accepts EntityId, ProductTitle, Visibility, LastModifiedDate
903
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
904
+ # },
905
+ # saa_s_product_sort: {
906
+ # sort_by: "EntityId", # accepts EntityId, ProductTitle, Visibility, LastModifiedDate
907
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
908
+ # },
909
+ # ami_product_sort: {
910
+ # sort_by: "EntityId", # accepts EntityId, LastModifiedDate, ProductTitle, Visibility
911
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
912
+ # },
913
+ # offer_sort: {
914
+ # sort_by: "EntityId", # accepts EntityId, Name, ProductId, ReleaseDate, AvailabilityEndDate, BuyerAccounts, State, Targeting, LastModifiedDate
915
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
916
+ # },
917
+ # container_product_sort: {
918
+ # sort_by: "EntityId", # accepts EntityId, LastModifiedDate, ProductTitle, Visibility
919
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
920
+ # },
921
+ # resale_authorization_sort: {
922
+ # sort_by: "EntityId", # accepts EntityId, Name, ProductId, ProductName, ManufacturerAccountId, ManufacturerLegalName, ResellerAccountID, ResellerLegalName, Status, OfferExtendedStatus, CreatedDate, AvailabilityEndDate, LastModifiedDate
923
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
924
+ # },
925
+ # },
714
926
  # })
715
927
  #
716
928
  # @example Response structure
@@ -722,6 +934,34 @@ module Aws::MarketplaceCatalog
722
934
  # resp.entity_summary_list[0].entity_arn #=> String
723
935
  # resp.entity_summary_list[0].last_modified_date #=> String
724
936
  # resp.entity_summary_list[0].visibility #=> String
937
+ # resp.entity_summary_list[0].ami_product_summary.product_title #=> String
938
+ # resp.entity_summary_list[0].ami_product_summary.visibility #=> String, one of "Limited", "Public", "Restricted", "Draft"
939
+ # resp.entity_summary_list[0].container_product_summary.product_title #=> String
940
+ # resp.entity_summary_list[0].container_product_summary.visibility #=> String, one of "Limited", "Public", "Restricted", "Draft"
941
+ # resp.entity_summary_list[0].data_product_summary.product_title #=> String
942
+ # resp.entity_summary_list[0].data_product_summary.visibility #=> String, one of "Limited", "Public", "Restricted", "Unavailable", "Draft"
943
+ # resp.entity_summary_list[0].saa_s_product_summary.product_title #=> String
944
+ # resp.entity_summary_list[0].saa_s_product_summary.visibility #=> String, one of "Limited", "Public", "Restricted", "Draft"
945
+ # resp.entity_summary_list[0].offer_summary.name #=> String
946
+ # resp.entity_summary_list[0].offer_summary.product_id #=> String
947
+ # resp.entity_summary_list[0].offer_summary.release_date #=> String
948
+ # resp.entity_summary_list[0].offer_summary.availability_end_date #=> String
949
+ # resp.entity_summary_list[0].offer_summary.buyer_accounts #=> Array
950
+ # resp.entity_summary_list[0].offer_summary.buyer_accounts[0] #=> String
951
+ # resp.entity_summary_list[0].offer_summary.state #=> String, one of "Draft", "Released"
952
+ # resp.entity_summary_list[0].offer_summary.targeting #=> Array
953
+ # resp.entity_summary_list[0].offer_summary.targeting[0] #=> String, one of "BuyerAccounts", "ParticipatingPrograms", "CountryCodes", "None"
954
+ # resp.entity_summary_list[0].resale_authorization_summary.name #=> String
955
+ # resp.entity_summary_list[0].resale_authorization_summary.product_id #=> String
956
+ # resp.entity_summary_list[0].resale_authorization_summary.product_name #=> String
957
+ # resp.entity_summary_list[0].resale_authorization_summary.manufacturer_account_id #=> String
958
+ # resp.entity_summary_list[0].resale_authorization_summary.manufacturer_legal_name #=> String
959
+ # resp.entity_summary_list[0].resale_authorization_summary.reseller_account_id #=> String
960
+ # resp.entity_summary_list[0].resale_authorization_summary.reseller_legal_name #=> String
961
+ # resp.entity_summary_list[0].resale_authorization_summary.status #=> String, one of "Draft", "Active", "Restricted"
962
+ # resp.entity_summary_list[0].resale_authorization_summary.offer_extended_status #=> String
963
+ # resp.entity_summary_list[0].resale_authorization_summary.created_date #=> String
964
+ # resp.entity_summary_list[0].resale_authorization_summary.availability_end_date #=> String
725
965
  # resp.next_token #=> String
726
966
  #
727
967
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/ListEntities AWS API Documentation
@@ -984,7 +1224,7 @@ module Aws::MarketplaceCatalog
984
1224
  params: params,
985
1225
  config: config)
986
1226
  context[:gem_name] = 'aws-sdk-marketplacecatalog'
987
- context[:gem_version] = '1.36.0'
1227
+ context[:gem_version] = '1.37.0'
988
1228
  Seahorse::Client::Request.new(handlers, context)
989
1229
  end
990
1230