aws-sdk-marketplacediscovery 1.5.0 → 1.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f375d416e90e2c3f735ec106048b34a8f329057641629891fc6996a773dfb49a
4
- data.tar.gz: 808cf3bbddaacda541385b0a41d8eca3c1f60e085eba934fc098808175be73c1
3
+ metadata.gz: 6aebd43501feb6c67c23b6b3d70d2fb09052edcf5e0a801f2fcfea6080f9f8db
4
+ data.tar.gz: 485b98975833a9e1de04a8e85aa6fe79387c2b67ec3c76a8b08b9c7fe3b2f63b
5
5
  SHA512:
6
- metadata.gz: bbb19fe5724b927d7fe5f882d577ed8f601eb52303bd8cfb0caf70e9a268b22b83989d6c85a7f0f5fefc0bdce1f3af97254e0059b690334c3a57e656cae97885
7
- data.tar.gz: a64aeb3afbe5633042e568c3689cd8ccdb29b6a2dff20bf814a1b34ffd8348dcdc16785ef6f96ec25002e02d9e89163381eae25c593b188c88048a46f4850e6f
6
+ metadata.gz: 7ad2f0a21ccefc57e7d28c02514235684d89ac807d97f31d6e90244404872bdd7241c39187482bbfee6b9ba229a6367ab50961b79bab401a49541fb4f8a083a8
7
+ data.tar.gz: 1d35e80f519f371852d65b273bb1dce0513a05e9e61888239006f089646f5dd87721703802747298b8a0c1cbf7df8ab50c9b96a2962acaa3cc9e89a86d135c56
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.6.0 (2026-08-06)
5
+ ------------------
6
+
7
+ * Feature - GetOfferTerms now returns netPaymentTerm in offerTerms, specifying payment due period after invoice date. The paymentDuePeriod field uses ISO 8601 duration format (e.g., "P30D" for net 30 days). This is a backward-compatible addition. See API documentation for full structure and examples.
8
+
4
9
  1.5.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.0
1
+ 1.6.0
@@ -967,14 +967,14 @@ module Aws::MarketplaceDiscovery
967
967
  # * {Types::GetOfferOutput#offer_id #offer_id} => String
968
968
  # * {Types::GetOfferOutput#catalog #catalog} => String
969
969
  # * {Types::GetOfferOutput#offer_name #offer_name} => String
970
- # * {Types::GetOfferOutput#agreement_proposal_id #agreement_proposal_id} => String
971
970
  # * {Types::GetOfferOutput#expiration_time #expiration_time} => Time
972
971
  # * {Types::GetOfferOutput#available_from_time #available_from_time} => Time
973
972
  # * {Types::GetOfferOutput#seller_of_record #seller_of_record} => Types::SellerInformation
973
+ # * {Types::GetOfferOutput#associated_entities #associated_entities} => Array<Types::OfferAssociatedEntity>
974
+ # * {Types::GetOfferOutput#agreement_proposal_id #agreement_proposal_id} => String
974
975
  # * {Types::GetOfferOutput#replacement_agreement_id #replacement_agreement_id} => String
975
976
  # * {Types::GetOfferOutput#pricing_model #pricing_model} => Types::PricingModel
976
977
  # * {Types::GetOfferOutput#badges #badges} => Array<Types::PurchaseOptionBadge>
977
- # * {Types::GetOfferOutput#associated_entities #associated_entities} => Array<Types::OfferAssociatedEntity>
978
978
  #
979
979
  #
980
980
  # @example Example: Invoke GetOffer for Contract Pricing offer
@@ -1160,17 +1160,10 @@ module Aws::MarketplaceDiscovery
1160
1160
  # resp.offer_id #=> String
1161
1161
  # resp.catalog #=> String
1162
1162
  # resp.offer_name #=> String
1163
- # resp.agreement_proposal_id #=> String
1164
1163
  # resp.expiration_time #=> Time
1165
1164
  # resp.available_from_time #=> Time
1166
1165
  # resp.seller_of_record.seller_profile_id #=> String
1167
1166
  # resp.seller_of_record.display_name #=> String
1168
- # resp.replacement_agreement_id #=> String
1169
- # resp.pricing_model.pricing_model_type #=> String, one of "USAGE", "CONTRACT", "BYOL", "FREE"
1170
- # resp.pricing_model.display_name #=> String
1171
- # resp.badges #=> Array
1172
- # resp.badges[0].display_name #=> String
1173
- # resp.badges[0].badge_type #=> String, one of "PRIVATE_PRICING", "FUTURE_DATED", "REPLACEMENT_OFFER"
1174
1167
  # resp.associated_entities #=> Array
1175
1168
  # resp.associated_entities[0].product.product_id #=> String
1176
1169
  # resp.associated_entities[0].product.product_name #=> String
@@ -1179,6 +1172,13 @@ module Aws::MarketplaceDiscovery
1179
1172
  # resp.associated_entities[0].offer_set.offer_set_id #=> String
1180
1173
  # resp.associated_entities[0].offer_set.seller_of_record.seller_profile_id #=> String
1181
1174
  # resp.associated_entities[0].offer_set.seller_of_record.display_name #=> String
1175
+ # resp.agreement_proposal_id #=> String
1176
+ # resp.replacement_agreement_id #=> String
1177
+ # resp.pricing_model.pricing_model_type #=> String, one of "USAGE", "CONTRACT", "BYOL", "FREE"
1178
+ # resp.pricing_model.display_name #=> String
1179
+ # resp.badges #=> Array
1180
+ # resp.badges[0].display_name #=> String
1181
+ # resp.badges[0].badge_type #=> String, one of "PRIVATE_PRICING", "FUTURE_DATED", "REPLACEMENT_OFFER"
1182
1182
  #
1183
1183
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/GetOffer AWS API Documentation
1184
1184
  #
@@ -1736,6 +1736,25 @@ module Aws::MarketplaceDiscovery
1736
1736
  # ],
1737
1737
  # }
1738
1738
  #
1739
+ # @example Example: GetOfferTerms for net payment term
1740
+ #
1741
+ # resp = client.get_offer_terms({
1742
+ # offer_id: "offer-sampleNetPaymentId",
1743
+ # })
1744
+ #
1745
+ # resp.to_h outputs the following:
1746
+ # {
1747
+ # offer_terms: [
1748
+ # {
1749
+ # net_payment_term: {
1750
+ # type: "NetPaymentTerm",
1751
+ # id: "term-netpay-001",
1752
+ # payment_due_period: "P30D",
1753
+ # },
1754
+ # },
1755
+ # ],
1756
+ # }
1757
+ #
1739
1758
  # @example Request syntax with placeholder values
1740
1759
  #
1741
1760
  # resp = client.get_offer_terms({
@@ -1748,9 +1767,9 @@ module Aws::MarketplaceDiscovery
1748
1767
  #
1749
1768
  # resp.offer_terms #=> Array
1750
1769
  # resp.offer_terms[0].byol_pricing_term.id #=> String
1751
- # resp.offer_terms[0].byol_pricing_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1770
+ # resp.offer_terms[0].byol_pricing_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1752
1771
  # resp.offer_terms[0].configurable_upfront_pricing_term.id #=> String
1753
- # resp.offer_terms[0].configurable_upfront_pricing_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1772
+ # resp.offer_terms[0].configurable_upfront_pricing_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1754
1773
  # resp.offer_terms[0].configurable_upfront_pricing_term.currency_code #=> String
1755
1774
  # resp.offer_terms[0].configurable_upfront_pricing_term.rate_cards #=> Array
1756
1775
  # resp.offer_terms[0].configurable_upfront_pricing_term.rate_cards[0].selector.type #=> String, one of "Duration"
@@ -1768,7 +1787,7 @@ module Aws::MarketplaceDiscovery
1768
1787
  # resp.offer_terms[0].configurable_upfront_pricing_term.rate_cards[0].rate_card[0].unit #=> String
1769
1788
  # resp.offer_terms[0].configurable_upfront_pricing_term.rate_cards[0].rate_card[0].price #=> String
1770
1789
  # resp.offer_terms[0].fixed_upfront_pricing_term.id #=> String
1771
- # resp.offer_terms[0].fixed_upfront_pricing_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1790
+ # resp.offer_terms[0].fixed_upfront_pricing_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1772
1791
  # resp.offer_terms[0].fixed_upfront_pricing_term.currency_code #=> String
1773
1792
  # resp.offer_terms[0].fixed_upfront_pricing_term.duration #=> String
1774
1793
  # resp.offer_terms[0].fixed_upfront_pricing_term.price #=> String
@@ -1783,7 +1802,7 @@ module Aws::MarketplaceDiscovery
1783
1802
  # resp.offer_terms[0].fixed_upfront_pricing_term.grants[0].unit #=> String
1784
1803
  # resp.offer_terms[0].fixed_upfront_pricing_term.grants[0].max_quantity #=> Integer
1785
1804
  # resp.offer_terms[0].free_trial_pricing_term.id #=> String
1786
- # resp.offer_terms[0].free_trial_pricing_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1805
+ # resp.offer_terms[0].free_trial_pricing_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1787
1806
  # resp.offer_terms[0].free_trial_pricing_term.duration #=> String
1788
1807
  # resp.offer_terms[0].free_trial_pricing_term.grants #=> Array
1789
1808
  # resp.offer_terms[0].free_trial_pricing_term.grants[0].dimension_key #=> String
@@ -1796,29 +1815,29 @@ module Aws::MarketplaceDiscovery
1796
1815
  # resp.offer_terms[0].free_trial_pricing_term.grants[0].unit #=> String
1797
1816
  # resp.offer_terms[0].free_trial_pricing_term.grants[0].max_quantity #=> Integer
1798
1817
  # resp.offer_terms[0].legal_term.id #=> String
1799
- # resp.offer_terms[0].legal_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1818
+ # resp.offer_terms[0].legal_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1800
1819
  # resp.offer_terms[0].legal_term.documents #=> Array
1801
1820
  # resp.offer_terms[0].legal_term.documents[0].type #=> String, one of "CustomEula", "CustomDsa", "EnterpriseEula", "StandardEula", "StandardDsa"
1802
1821
  # resp.offer_terms[0].legal_term.documents[0].url #=> String
1803
1822
  # resp.offer_terms[0].legal_term.documents[0].version #=> String
1804
1823
  # resp.offer_terms[0].payment_schedule_term.id #=> String
1805
- # resp.offer_terms[0].payment_schedule_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1824
+ # resp.offer_terms[0].payment_schedule_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1806
1825
  # resp.offer_terms[0].payment_schedule_term.currency_code #=> String
1807
1826
  # resp.offer_terms[0].payment_schedule_term.schedule #=> Array
1808
1827
  # resp.offer_terms[0].payment_schedule_term.schedule[0].charge_date #=> Time
1809
1828
  # resp.offer_terms[0].payment_schedule_term.schedule[0].charge_amount #=> String
1810
1829
  # resp.offer_terms[0].recurring_payment_term.id #=> String
1811
- # resp.offer_terms[0].recurring_payment_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1830
+ # resp.offer_terms[0].recurring_payment_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1812
1831
  # resp.offer_terms[0].recurring_payment_term.currency_code #=> String
1813
1832
  # resp.offer_terms[0].recurring_payment_term.billing_period #=> String, one of "Monthly"
1814
1833
  # resp.offer_terms[0].recurring_payment_term.price #=> String
1815
1834
  # resp.offer_terms[0].renewal_term.id #=> String
1816
- # resp.offer_terms[0].renewal_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1835
+ # resp.offer_terms[0].renewal_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1817
1836
  # resp.offer_terms[0].support_term.id #=> String
1818
- # resp.offer_terms[0].support_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1837
+ # resp.offer_terms[0].support_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1819
1838
  # resp.offer_terms[0].support_term.refund_policy #=> String
1820
1839
  # resp.offer_terms[0].usage_based_pricing_term.id #=> String
1821
- # resp.offer_terms[0].usage_based_pricing_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1840
+ # resp.offer_terms[0].usage_based_pricing_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1822
1841
  # resp.offer_terms[0].usage_based_pricing_term.currency_code #=> String
1823
1842
  # resp.offer_terms[0].usage_based_pricing_term.rate_cards #=> Array
1824
1843
  # resp.offer_terms[0].usage_based_pricing_term.rate_cards[0].rate_card #=> Array
@@ -1832,14 +1851,17 @@ module Aws::MarketplaceDiscovery
1832
1851
  # resp.offer_terms[0].usage_based_pricing_term.rate_cards[0].rate_card[0].unit #=> String
1833
1852
  # resp.offer_terms[0].usage_based_pricing_term.rate_cards[0].rate_card[0].price #=> String
1834
1853
  # resp.offer_terms[0].validity_term.id #=> String
1835
- # resp.offer_terms[0].validity_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1854
+ # resp.offer_terms[0].validity_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1836
1855
  # resp.offer_terms[0].validity_term.agreement_duration #=> String
1837
1856
  # resp.offer_terms[0].validity_term.agreement_end_date #=> Time
1838
1857
  # resp.offer_terms[0].validity_term.agreement_start_date #=> Time
1839
1858
  # resp.offer_terms[0].variable_payment_term.id #=> String
1840
- # resp.offer_terms[0].variable_payment_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm"
1859
+ # resp.offer_terms[0].variable_payment_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1841
1860
  # resp.offer_terms[0].variable_payment_term.currency_code #=> String
1842
1861
  # resp.offer_terms[0].variable_payment_term.max_total_charge_amount #=> String
1862
+ # resp.offer_terms[0].net_payment_term.id #=> String
1863
+ # resp.offer_terms[0].net_payment_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1864
+ # resp.offer_terms[0].net_payment_term.payment_due_period #=> String
1843
1865
  # resp.next_token #=> String
1844
1866
  #
1845
1867
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/GetOfferTerms AWS API Documentation
@@ -1863,10 +1885,10 @@ module Aws::MarketplaceDiscovery
1863
1885
  # * {Types::GetProductOutput#product_id #product_id} => String
1864
1886
  # * {Types::GetProductOutput#catalog #catalog} => String
1865
1887
  # * {Types::GetProductOutput#product_name #product_name} => String
1888
+ # * {Types::GetProductOutput#manufacturer #manufacturer} => Types::SellerInformation
1866
1889
  # * {Types::GetProductOutput#deployed_on_aws #deployed_on_aws} => String
1867
1890
  # * {Types::GetProductOutput#short_description #short_description} => String
1868
1891
  # * {Types::GetProductOutput#long_description #long_description} => String
1869
- # * {Types::GetProductOutput#manufacturer #manufacturer} => Types::SellerInformation
1870
1892
  # * {Types::GetProductOutput#logo_thumbnail_url #logo_thumbnail_url} => String
1871
1893
  # * {Types::GetProductOutput#fulfillment_option_summaries #fulfillment_option_summaries} => Array<Types::FulfillmentOptionSummary>
1872
1894
  # * {Types::GetProductOutput#categories #categories} => Array<Types::Category>
@@ -2110,11 +2132,11 @@ module Aws::MarketplaceDiscovery
2110
2132
  # resp.product_id #=> String
2111
2133
  # resp.catalog #=> String
2112
2134
  # resp.product_name #=> String
2135
+ # resp.manufacturer.seller_profile_id #=> String
2136
+ # resp.manufacturer.display_name #=> String
2113
2137
  # resp.deployed_on_aws #=> String, one of "DEPLOYED", "NOT_DEPLOYED", "NOT_APPLICABLE"
2114
2138
  # resp.short_description #=> String
2115
2139
  # resp.long_description #=> String
2116
- # resp.manufacturer.seller_profile_id #=> String
2117
- # resp.manufacturer.display_name #=> String
2118
2140
  # resp.logo_thumbnail_url #=> String
2119
2141
  # resp.fulfillment_option_summaries #=> Array
2120
2142
  # resp.fulfillment_option_summaries[0].fulfillment_option_type #=> String, one of "AMAZON_MACHINE_IMAGE", "API", "CLOUDFORMATION_TEMPLATE", "CONTAINER", "HELM", "EKS_ADD_ON", "EC2_IMAGE_BUILDER_COMPONENT", "DATA_EXCHANGE", "PROFESSIONAL_SERVICES", "SAAS", "SAGEMAKER_ALGORITHM", "SAGEMAKER_MODEL"
@@ -3227,15 +3249,15 @@ module Aws::MarketplaceDiscovery
3227
3249
  # resp.listing_summaries[0].listing_name #=> String
3228
3250
  # resp.listing_summaries[0].publisher.seller_profile_id #=> String
3229
3251
  # resp.listing_summaries[0].publisher.display_name #=> String
3252
+ # resp.listing_summaries[0].fulfillment_option_summaries #=> Array
3253
+ # resp.listing_summaries[0].fulfillment_option_summaries[0].fulfillment_option_type #=> String, one of "AMAZON_MACHINE_IMAGE", "API", "CLOUDFORMATION_TEMPLATE", "CONTAINER", "HELM", "EKS_ADD_ON", "EC2_IMAGE_BUILDER_COMPONENT", "DATA_EXCHANGE", "PROFESSIONAL_SERVICES", "SAAS", "SAGEMAKER_ALGORITHM", "SAGEMAKER_MODEL"
3254
+ # resp.listing_summaries[0].fulfillment_option_summaries[0].display_name #=> String
3230
3255
  # resp.listing_summaries[0].catalog #=> String
3231
3256
  # resp.listing_summaries[0].short_description #=> String
3232
3257
  # resp.listing_summaries[0].logo_thumbnail_url #=> String
3233
3258
  # resp.listing_summaries[0].categories #=> Array
3234
3259
  # resp.listing_summaries[0].categories[0].category_id #=> String
3235
3260
  # resp.listing_summaries[0].categories[0].display_name #=> String
3236
- # resp.listing_summaries[0].fulfillment_option_summaries #=> Array
3237
- # resp.listing_summaries[0].fulfillment_option_summaries[0].fulfillment_option_type #=> String, one of "AMAZON_MACHINE_IMAGE", "API", "CLOUDFORMATION_TEMPLATE", "CONTAINER", "HELM", "EKS_ADD_ON", "EC2_IMAGE_BUILDER_COMPONENT", "DATA_EXCHANGE", "PROFESSIONAL_SERVICES", "SAAS", "SAGEMAKER_ALGORITHM", "SAGEMAKER_MODEL"
3238
- # resp.listing_summaries[0].fulfillment_option_summaries[0].display_name #=> String
3239
3261
  # resp.listing_summaries[0].badges #=> Array
3240
3262
  # resp.listing_summaries[0].badges[0].display_name #=> String
3241
3263
  # resp.listing_summaries[0].badges[0].badge_type #=> String, one of "AWS_FREE_TIER", "FREE_TRIAL", "DEPLOYED_ON_AWS", "QUICK_LAUNCH", "MULTI_PRODUCT"
@@ -3285,7 +3307,7 @@ module Aws::MarketplaceDiscovery
3285
3307
  tracer: tracer
3286
3308
  )
3287
3309
  context[:gem_name] = 'aws-sdk-marketplacediscovery'
3288
- context[:gem_version] = '1.5.0'
3310
+ context[:gem_version] = '1.6.0'
3289
3311
  Seahorse::Client::Request.new(handlers, context)
3290
3312
  end
3291
3313
 
@@ -102,6 +102,7 @@ module Aws::MarketplaceDiscovery
102
102
  ListingSummaryAssociatedEntityList = Shapes::ListShape.new(name: 'ListingSummaryAssociatedEntityList')
103
103
  ListingSummaryList = Shapes::ListShape.new(name: 'ListingSummaryList')
104
104
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
105
+ NetPaymentTerm = Shapes::StructureShape.new(name: 'NetPaymentTerm')
105
106
  NextToken = Shapes::StringShape.new(name: 'NextToken')
106
107
  NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
107
108
  NonNegativeCount = Shapes::IntegerShape.new(name: 'NonNegativeCount')
@@ -434,14 +435,14 @@ module Aws::MarketplaceDiscovery
434
435
  GetOfferOutput.add_member(:offer_id, Shapes::ShapeRef.new(shape: OfferId, required: true, location_name: "offerId"))
435
436
  GetOfferOutput.add_member(:catalog, Shapes::ShapeRef.new(shape: Catalog, required: true, location_name: "catalog"))
436
437
  GetOfferOutput.add_member(:offer_name, Shapes::ShapeRef.new(shape: NullableString, location_name: "offerName"))
437
- GetOfferOutput.add_member(:agreement_proposal_id, Shapes::ShapeRef.new(shape: AgreementResourceId, required: true, location_name: "agreementProposalId"))
438
438
  GetOfferOutput.add_member(:expiration_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expirationTime"))
439
439
  GetOfferOutput.add_member(:available_from_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "availableFromTime"))
440
440
  GetOfferOutput.add_member(:seller_of_record, Shapes::ShapeRef.new(shape: SellerInformation, required: true, location_name: "sellerOfRecord"))
441
+ GetOfferOutput.add_member(:associated_entities, Shapes::ShapeRef.new(shape: OfferAssociatedEntityList, required: true, location_name: "associatedEntities"))
442
+ GetOfferOutput.add_member(:agreement_proposal_id, Shapes::ShapeRef.new(shape: AgreementResourceId, required: true, location_name: "agreementProposalId"))
441
443
  GetOfferOutput.add_member(:replacement_agreement_id, Shapes::ShapeRef.new(shape: AgreementResourceId, location_name: "replacementAgreementId"))
442
444
  GetOfferOutput.add_member(:pricing_model, Shapes::ShapeRef.new(shape: PricingModel, required: true, location_name: "pricingModel"))
443
445
  GetOfferOutput.add_member(:badges, Shapes::ShapeRef.new(shape: PurchaseOptionBadgeList, required: true, location_name: "badges"))
444
- GetOfferOutput.add_member(:associated_entities, Shapes::ShapeRef.new(shape: OfferAssociatedEntityList, required: true, location_name: "associatedEntities"))
445
446
  GetOfferOutput.struct_class = Types::GetOfferOutput
446
447
 
447
448
  GetOfferSetInput.add_member(:offer_set_id, Shapes::ShapeRef.new(shape: OfferSetId, required: true, location_name: "offerSetId"))
@@ -473,10 +474,10 @@ module Aws::MarketplaceDiscovery
473
474
  GetProductOutput.add_member(:product_id, Shapes::ShapeRef.new(shape: ProductId, required: true, location_name: "productId"))
474
475
  GetProductOutput.add_member(:catalog, Shapes::ShapeRef.new(shape: Catalog, required: true, location_name: "catalog"))
475
476
  GetProductOutput.add_member(:product_name, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "productName"))
477
+ GetProductOutput.add_member(:manufacturer, Shapes::ShapeRef.new(shape: SellerInformation, required: true, location_name: "manufacturer"))
476
478
  GetProductOutput.add_member(:deployed_on_aws, Shapes::ShapeRef.new(shape: DeployedOnAwsStatus, required: true, location_name: "deployedOnAws"))
477
479
  GetProductOutput.add_member(:short_description, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "shortDescription"))
478
480
  GetProductOutput.add_member(:long_description, Shapes::ShapeRef.new(shape: GetProductOutputLongDescriptionString, required: true, location_name: "longDescription"))
479
- GetProductOutput.add_member(:manufacturer, Shapes::ShapeRef.new(shape: SellerInformation, required: true, location_name: "manufacturer"))
480
481
  GetProductOutput.add_member(:logo_thumbnail_url, Shapes::ShapeRef.new(shape: URL, required: true, location_name: "logoThumbnailUrl"))
481
482
  GetProductOutput.add_member(:fulfillment_option_summaries, Shapes::ShapeRef.new(shape: FulfillmentOptionSummaryList, required: true, location_name: "fulfillmentOptionSummaries"))
482
483
  GetProductOutput.add_member(:categories, Shapes::ShapeRef.new(shape: CategoryList, required: true, location_name: "categories"))
@@ -564,11 +565,11 @@ module Aws::MarketplaceDiscovery
564
565
  ListingSummary.add_member(:listing_id, Shapes::ShapeRef.new(shape: ListingId, required: true, location_name: "listingId"))
565
566
  ListingSummary.add_member(:listing_name, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "listingName"))
566
567
  ListingSummary.add_member(:publisher, Shapes::ShapeRef.new(shape: SellerInformation, required: true, location_name: "publisher"))
568
+ ListingSummary.add_member(:fulfillment_option_summaries, Shapes::ShapeRef.new(shape: FulfillmentOptionSummaryList, required: true, location_name: "fulfillmentOptionSummaries"))
567
569
  ListingSummary.add_member(:catalog, Shapes::ShapeRef.new(shape: Catalog, required: true, location_name: "catalog"))
568
570
  ListingSummary.add_member(:short_description, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "shortDescription"))
569
571
  ListingSummary.add_member(:logo_thumbnail_url, Shapes::ShapeRef.new(shape: URL, required: true, location_name: "logoThumbnailUrl"))
570
572
  ListingSummary.add_member(:categories, Shapes::ShapeRef.new(shape: CategoryList, required: true, location_name: "categories"))
571
- ListingSummary.add_member(:fulfillment_option_summaries, Shapes::ShapeRef.new(shape: FulfillmentOptionSummaryList, required: true, location_name: "fulfillmentOptionSummaries"))
572
573
  ListingSummary.add_member(:badges, Shapes::ShapeRef.new(shape: ListingBadgeList, required: true, location_name: "badges"))
573
574
  ListingSummary.add_member(:review_summary, Shapes::ShapeRef.new(shape: ReviewSummary, required: true, location_name: "reviewSummary"))
574
575
  ListingSummary.add_member(:pricing_models, Shapes::ShapeRef.new(shape: PricingModelList, required: true, location_name: "pricingModels"))
@@ -583,6 +584,11 @@ module Aws::MarketplaceDiscovery
583
584
 
584
585
  ListingSummaryList.member = Shapes::ShapeRef.new(shape: ListingSummary)
585
586
 
587
+ NetPaymentTerm.add_member(:id, Shapes::ShapeRef.new(shape: TermId, required: true, location_name: "id"))
588
+ NetPaymentTerm.add_member(:type, Shapes::ShapeRef.new(shape: TermType, required: true, location_name: "type"))
589
+ NetPaymentTerm.add_member(:payment_due_period, Shapes::ShapeRef.new(shape: BoundedString, required: true, location_name: "paymentDuePeriod"))
590
+ NetPaymentTerm.struct_class = Types::NetPaymentTerm
591
+
586
592
  OfferAssociatedEntity.add_member(:product, Shapes::ShapeRef.new(shape: ProductInformation, required: true, location_name: "product"))
587
593
  OfferAssociatedEntity.add_member(:offer_set, Shapes::ShapeRef.new(shape: OfferSetInformation, location_name: "offerSet"))
588
594
  OfferAssociatedEntity.struct_class = Types::OfferAssociatedEntity
@@ -616,6 +622,7 @@ module Aws::MarketplaceDiscovery
616
622
  OfferTerm.add_member(:usage_based_pricing_term, Shapes::ShapeRef.new(shape: UsageBasedPricingTerm, location_name: "usageBasedPricingTerm"))
617
623
  OfferTerm.add_member(:validity_term, Shapes::ShapeRef.new(shape: ValidityTerm, location_name: "validityTerm"))
618
624
  OfferTerm.add_member(:variable_payment_term, Shapes::ShapeRef.new(shape: VariablePaymentTerm, location_name: "variablePaymentTerm"))
625
+ OfferTerm.add_member(:net_payment_term, Shapes::ShapeRef.new(shape: NetPaymentTerm, location_name: "netPaymentTerm"))
619
626
  OfferTerm.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
620
627
  OfferTerm.add_member_subclass(:byol_pricing_term, Types::OfferTerm::ByolPricingTerm)
621
628
  OfferTerm.add_member_subclass(:configurable_upfront_pricing_term, Types::OfferTerm::ConfigurableUpfrontPricingTerm)
@@ -629,6 +636,7 @@ module Aws::MarketplaceDiscovery
629
636
  OfferTerm.add_member_subclass(:usage_based_pricing_term, Types::OfferTerm::UsageBasedPricingTerm)
630
637
  OfferTerm.add_member_subclass(:validity_term, Types::OfferTerm::ValidityTerm)
631
638
  OfferTerm.add_member_subclass(:variable_payment_term, Types::OfferTerm::VariablePaymentTerm)
639
+ OfferTerm.add_member_subclass(:net_payment_term, Types::OfferTerm::NetPaymentTerm)
632
640
  OfferTerm.add_member_subclass(:unknown, Types::OfferTerm::Unknown)
633
641
  OfferTerm.struct_class = Types::OfferTerm
634
642
 
@@ -997,11 +997,6 @@ module Aws::MarketplaceDiscovery
997
997
  # the seller.
998
998
  # @return [String]
999
999
  #
1000
- # @!attribute [rw] agreement_proposal_id
1001
- # An encoded string to be passed by the acceptor of the terms when
1002
- # creating an agreement.
1003
- # @return [String]
1004
- #
1005
1000
  # @!attribute [rw] expiration_time
1006
1001
  # The date and time until when the offer can be procured. This value
1007
1002
  # is null for offers that never expire.
@@ -1015,6 +1010,15 @@ module Aws::MarketplaceDiscovery
1015
1010
  # The entity responsible for selling the product under this offer.
1016
1011
  # @return [Types::SellerInformation]
1017
1012
  #
1013
+ # @!attribute [rw] associated_entities
1014
+ # The products and offer sets associated with this offer.
1015
+ # @return [Array<Types::OfferAssociatedEntity>]
1016
+ #
1017
+ # @!attribute [rw] agreement_proposal_id
1018
+ # An encoded string to be passed by the acceptor of the terms when
1019
+ # creating an agreement.
1020
+ # @return [String]
1021
+ #
1018
1022
  # @!attribute [rw] replacement_agreement_id
1019
1023
  # The identifier of the existing agreement that this offer would
1020
1024
  # replace. Enables agreement-based offer functionality.
@@ -1030,24 +1034,20 @@ module Aws::MarketplaceDiscovery
1030
1034
  # pricing, future dated, or replacement offer.
1031
1035
  # @return [Array<Types::PurchaseOptionBadge>]
1032
1036
  #
1033
- # @!attribute [rw] associated_entities
1034
- # The products and offer sets associated with this offer.
1035
- # @return [Array<Types::OfferAssociatedEntity>]
1036
- #
1037
1037
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/GetOfferOutput AWS API Documentation
1038
1038
  #
1039
1039
  class GetOfferOutput < Struct.new(
1040
1040
  :offer_id,
1041
1041
  :catalog,
1042
1042
  :offer_name,
1043
- :agreement_proposal_id,
1044
1043
  :expiration_time,
1045
1044
  :available_from_time,
1046
1045
  :seller_of_record,
1046
+ :associated_entities,
1047
+ :agreement_proposal_id,
1047
1048
  :replacement_agreement_id,
1048
1049
  :pricing_model,
1049
- :badges,
1050
- :associated_entities)
1050
+ :badges)
1051
1051
  SENSITIVE = []
1052
1052
  include Aws::Structure
1053
1053
  end
@@ -1187,6 +1187,10 @@ module Aws::MarketplaceDiscovery
1187
1187
  # The human-readable display name of the product.
1188
1188
  # @return [String]
1189
1189
  #
1190
+ # @!attribute [rw] manufacturer
1191
+ # The entity who manufactured the product.
1192
+ # @return [Types::SellerInformation]
1193
+ #
1190
1194
  # @!attribute [rw] deployed_on_aws
1191
1195
  # Indicates whether the product is deployed on AWS infrastructure.
1192
1196
  # @return [String]
@@ -1200,10 +1204,6 @@ module Aws::MarketplaceDiscovery
1200
1204
  # format.
1201
1205
  # @return [String]
1202
1206
  #
1203
- # @!attribute [rw] manufacturer
1204
- # The entity who manufactured the product.
1205
- # @return [Types::SellerInformation]
1206
- #
1207
1207
  # @!attribute [rw] logo_thumbnail_url
1208
1208
  # The URL of the logo thumbnail image for the product.
1209
1209
  # @return [String]
@@ -1243,10 +1243,10 @@ module Aws::MarketplaceDiscovery
1243
1243
  :product_id,
1244
1244
  :catalog,
1245
1245
  :product_name,
1246
+ :manufacturer,
1246
1247
  :deployed_on_aws,
1247
1248
  :short_description,
1248
1249
  :long_description,
1249
- :manufacturer,
1250
1250
  :logo_thumbnail_url,
1251
1251
  :fulfillment_option_summaries,
1252
1252
  :categories,
@@ -1588,6 +1588,10 @@ module Aws::MarketplaceDiscovery
1588
1588
  # The entity who created and published the listing.
1589
1589
  # @return [Types::SellerInformation]
1590
1590
  #
1591
+ # @!attribute [rw] fulfillment_option_summaries
1592
+ # A summary of fulfillment options available for the listing.
1593
+ # @return [Array<Types::FulfillmentOptionSummary>]
1594
+ #
1591
1595
  # @!attribute [rw] catalog
1592
1596
  # The name of the catalog that the listing belongs to.
1593
1597
  # @return [String]
@@ -1604,10 +1608,6 @@ module Aws::MarketplaceDiscovery
1604
1608
  # The categories used to classify this listing into logical groups.
1605
1609
  # @return [Array<Types::Category>]
1606
1610
  #
1607
- # @!attribute [rw] fulfillment_option_summaries
1608
- # A summary of fulfillment options available for the listing.
1609
- # @return [Array<Types::FulfillmentOptionSummary>]
1610
- #
1611
1611
  # @!attribute [rw] badges
1612
1612
  # Badges indicating special attributes of the listing.
1613
1613
  # @return [Array<Types::ListingBadge>]
@@ -1635,11 +1635,11 @@ module Aws::MarketplaceDiscovery
1635
1635
  :listing_id,
1636
1636
  :listing_name,
1637
1637
  :publisher,
1638
+ :fulfillment_option_summaries,
1638
1639
  :catalog,
1639
1640
  :short_description,
1640
1641
  :logo_thumbnail_url,
1641
1642
  :categories,
1642
- :fulfillment_option_summaries,
1643
1643
  :badges,
1644
1644
  :review_summary,
1645
1645
  :pricing_models,
@@ -1663,6 +1663,31 @@ module Aws::MarketplaceDiscovery
1663
1663
  include Aws::Structure
1664
1664
  end
1665
1665
 
1666
+ # Defines a net payment term that sets how many days after the invoice
1667
+ # date the payment is due.
1668
+ #
1669
+ # @!attribute [rw] id
1670
+ # The unique identifier of the term.
1671
+ # @return [String]
1672
+ #
1673
+ # @!attribute [rw] type
1674
+ # The category of the term.
1675
+ # @return [String]
1676
+ #
1677
+ # @!attribute [rw] payment_due_period
1678
+ # The duration after invoice date by which payment is due.
1679
+ # @return [String]
1680
+ #
1681
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/NetPaymentTerm AWS API Documentation
1682
+ #
1683
+ class NetPaymentTerm < Struct.new(
1684
+ :id,
1685
+ :type,
1686
+ :payment_due_period)
1687
+ SENSITIVE = []
1688
+ include Aws::Structure
1689
+ end
1690
+
1666
1691
  # A product and optional offer set associated with an offer.
1667
1692
  #
1668
1693
  # @!attribute [rw] product
@@ -1811,6 +1836,10 @@ module Aws::MarketplaceDiscovery
1811
1836
  # Defines a variable payment term with a maximum total charge amount.
1812
1837
  # @return [Types::VariablePaymentTerm]
1813
1838
  #
1839
+ # @!attribute [rw] net_payment_term
1840
+ # A net payment term.
1841
+ # @return [Types::NetPaymentTerm]
1842
+ #
1814
1843
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/OfferTerm AWS API Documentation
1815
1844
  #
1816
1845
  class OfferTerm < Struct.new(
@@ -1826,6 +1855,7 @@ module Aws::MarketplaceDiscovery
1826
1855
  :usage_based_pricing_term,
1827
1856
  :validity_term,
1828
1857
  :variable_payment_term,
1858
+ :net_payment_term,
1829
1859
  :unknown)
1830
1860
  SENSITIVE = []
1831
1861
  include Aws::Structure
@@ -1843,6 +1873,7 @@ module Aws::MarketplaceDiscovery
1843
1873
  class UsageBasedPricingTerm < OfferTerm; end
1844
1874
  class ValidityTerm < OfferTerm; end
1845
1875
  class VariablePaymentTerm < OfferTerm; end
1876
+ class NetPaymentTerm < OfferTerm; end
1846
1877
  class Unknown < OfferTerm; end
1847
1878
  end
1848
1879
 
@@ -55,7 +55,7 @@ module Aws::MarketplaceDiscovery
55
55
  autoload :EndpointProvider, 'aws-sdk-marketplacediscovery/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-marketplacediscovery/endpoints'
57
57
 
58
- GEM_VERSION = '1.5.0'
58
+ GEM_VERSION = '1.6.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -112,14 +112,14 @@ module Aws
112
112
  def offer_id: () -> ::String
113
113
  def catalog: () -> ::String
114
114
  def offer_name: () -> ::String
115
- def agreement_proposal_id: () -> ::String
116
115
  def expiration_time: () -> ::Time
117
116
  def available_from_time: () -> ::Time
118
117
  def seller_of_record: () -> Types::SellerInformation
118
+ def associated_entities: () -> ::Array[Types::OfferAssociatedEntity]
119
+ def agreement_proposal_id: () -> ::String
119
120
  def replacement_agreement_id: () -> ::String
120
121
  def pricing_model: () -> Types::PricingModel
121
122
  def badges: () -> ::Array[Types::PurchaseOptionBadge]
122
- def associated_entities: () -> ::Array[Types::OfferAssociatedEntity]
123
123
  end
124
124
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceDiscovery/Client.html#get_offer-instance_method
125
125
  def get_offer: (
@@ -163,10 +163,10 @@ module Aws
163
163
  def product_id: () -> ::String
164
164
  def catalog: () -> ::String
165
165
  def product_name: () -> ::String
166
+ def manufacturer: () -> Types::SellerInformation
166
167
  def deployed_on_aws: () -> ("DEPLOYED" | "NOT_DEPLOYED" | "NOT_APPLICABLE")
167
168
  def short_description: () -> ::String
168
169
  def long_description: () -> ::String
169
- def manufacturer: () -> Types::SellerInformation
170
170
  def logo_thumbnail_url: () -> ::String
171
171
  def fulfillment_option_summaries: () -> ::Array[Types::FulfillmentOptionSummary]
172
172
  def categories: () -> ::Array[Types::Category]
data/sig/types.rbs CHANGED
@@ -56,7 +56,7 @@ module Aws::MarketplaceDiscovery
56
56
 
57
57
  class ByolPricingTerm
58
58
  attr_accessor id: ::String
59
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
59
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
60
60
  SENSITIVE: []
61
61
  end
62
62
 
@@ -79,7 +79,7 @@ module Aws::MarketplaceDiscovery
79
79
 
80
80
  class ConfigurableUpfrontPricingTerm
81
81
  attr_accessor id: ::String
82
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
82
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
83
83
  attr_accessor currency_code: ::String
84
84
  attr_accessor rate_cards: ::Array[Types::ConfigurableUpfrontRateCardItem]
85
85
  SENSITIVE: []
@@ -181,7 +181,7 @@ module Aws::MarketplaceDiscovery
181
181
 
182
182
  class FixedUpfrontPricingTerm
183
183
  attr_accessor id: ::String
184
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
184
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
185
185
  attr_accessor currency_code: ::String
186
186
  attr_accessor duration: ::String
187
187
  attr_accessor price: ::String
@@ -191,7 +191,7 @@ module Aws::MarketplaceDiscovery
191
191
 
192
192
  class FreeTrialPricingTerm
193
193
  attr_accessor id: ::String
194
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
194
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
195
195
  attr_accessor duration: ::String
196
196
  attr_accessor grants: ::Array[Types::GrantItem]
197
197
  SENSITIVE: []
@@ -285,14 +285,14 @@ module Aws::MarketplaceDiscovery
285
285
  attr_accessor offer_id: ::String
286
286
  attr_accessor catalog: ::String
287
287
  attr_accessor offer_name: ::String
288
- attr_accessor agreement_proposal_id: ::String
289
288
  attr_accessor expiration_time: ::Time
290
289
  attr_accessor available_from_time: ::Time
291
290
  attr_accessor seller_of_record: Types::SellerInformation
291
+ attr_accessor associated_entities: ::Array[Types::OfferAssociatedEntity]
292
+ attr_accessor agreement_proposal_id: ::String
292
293
  attr_accessor replacement_agreement_id: ::String
293
294
  attr_accessor pricing_model: Types::PricingModel
294
295
  attr_accessor badges: ::Array[Types::PurchaseOptionBadge]
295
- attr_accessor associated_entities: ::Array[Types::OfferAssociatedEntity]
296
296
  SENSITIVE: []
297
297
  end
298
298
 
@@ -336,10 +336,10 @@ module Aws::MarketplaceDiscovery
336
336
  attr_accessor product_id: ::String
337
337
  attr_accessor catalog: ::String
338
338
  attr_accessor product_name: ::String
339
+ attr_accessor manufacturer: Types::SellerInformation
339
340
  attr_accessor deployed_on_aws: ("DEPLOYED" | "NOT_DEPLOYED" | "NOT_APPLICABLE")
340
341
  attr_accessor short_description: ::String
341
342
  attr_accessor long_description: ::String
342
- attr_accessor manufacturer: Types::SellerInformation
343
343
  attr_accessor logo_thumbnail_url: ::String
344
344
  attr_accessor fulfillment_option_summaries: ::Array[Types::FulfillmentOptionSummary]
345
345
  attr_accessor categories: ::Array[Types::Category]
@@ -386,7 +386,7 @@ module Aws::MarketplaceDiscovery
386
386
 
387
387
  class LegalTerm
388
388
  attr_accessor id: ::String
389
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
389
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
390
390
  attr_accessor documents: ::Array[Types::DocumentItem]
391
391
  SENSITIVE: []
392
392
  end
@@ -441,11 +441,11 @@ module Aws::MarketplaceDiscovery
441
441
  attr_accessor listing_id: ::String
442
442
  attr_accessor listing_name: ::String
443
443
  attr_accessor publisher: Types::SellerInformation
444
+ attr_accessor fulfillment_option_summaries: ::Array[Types::FulfillmentOptionSummary]
444
445
  attr_accessor catalog: ::String
445
446
  attr_accessor short_description: ::String
446
447
  attr_accessor logo_thumbnail_url: ::String
447
448
  attr_accessor categories: ::Array[Types::Category]
448
- attr_accessor fulfillment_option_summaries: ::Array[Types::FulfillmentOptionSummary]
449
449
  attr_accessor badges: ::Array[Types::ListingBadge]
450
450
  attr_accessor review_summary: Types::ReviewSummary
451
451
  attr_accessor pricing_models: ::Array[Types::PricingModel]
@@ -459,6 +459,13 @@ module Aws::MarketplaceDiscovery
459
459
  SENSITIVE: []
460
460
  end
461
461
 
462
+ class NetPaymentTerm
463
+ attr_accessor id: ::String
464
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
465
+ attr_accessor payment_due_period: ::String
466
+ SENSITIVE: []
467
+ end
468
+
462
469
  class OfferAssociatedEntity
463
470
  attr_accessor product: Types::ProductInformation
464
471
  attr_accessor offer_set: Types::OfferSetInformation
@@ -497,6 +504,7 @@ module Aws::MarketplaceDiscovery
497
504
  attr_accessor usage_based_pricing_term: Types::UsageBasedPricingTerm
498
505
  attr_accessor validity_term: Types::ValidityTerm
499
506
  attr_accessor variable_payment_term: Types::VariablePaymentTerm
507
+ attr_accessor net_payment_term: Types::NetPaymentTerm
500
508
  attr_accessor unknown: untyped
501
509
  SENSITIVE: []
502
510
 
@@ -524,13 +532,15 @@ module Aws::MarketplaceDiscovery
524
532
  end
525
533
  class VariablePaymentTerm < OfferTerm
526
534
  end
535
+ class NetPaymentTerm < OfferTerm
536
+ end
527
537
  class Unknown < OfferTerm
528
538
  end
529
539
  end
530
540
 
531
541
  class PaymentScheduleTerm
532
542
  attr_accessor id: ::String
533
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
543
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
534
544
  attr_accessor currency_code: ::String
535
545
  attr_accessor schedule: ::Array[Types::ScheduleItem]
536
546
  SENSITIVE: []
@@ -636,7 +646,7 @@ module Aws::MarketplaceDiscovery
636
646
 
637
647
  class RecurringPaymentTerm
638
648
  attr_accessor id: ::String
639
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
649
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
640
650
  attr_accessor currency_code: ::String
641
651
  attr_accessor billing_period: ("Monthly")
642
652
  attr_accessor price: ::String
@@ -645,7 +655,7 @@ module Aws::MarketplaceDiscovery
645
655
 
646
656
  class RenewalTerm
647
657
  attr_accessor id: ::String
648
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
658
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
649
659
  SENSITIVE: []
650
660
  end
651
661
 
@@ -785,7 +795,7 @@ module Aws::MarketplaceDiscovery
785
795
 
786
796
  class SupportTerm
787
797
  attr_accessor id: ::String
788
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
798
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
789
799
  attr_accessor refund_policy: ::String
790
800
  SENSITIVE: []
791
801
  end
@@ -797,7 +807,7 @@ module Aws::MarketplaceDiscovery
797
807
 
798
808
  class UsageBasedPricingTerm
799
809
  attr_accessor id: ::String
800
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
810
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
801
811
  attr_accessor currency_code: ::String
802
812
  attr_accessor rate_cards: ::Array[Types::UsageBasedRateCardItem]
803
813
  SENSITIVE: []
@@ -828,7 +838,7 @@ module Aws::MarketplaceDiscovery
828
838
 
829
839
  class ValidityTerm
830
840
  attr_accessor id: ::String
831
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
841
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
832
842
  attr_accessor agreement_duration: ::String
833
843
  attr_accessor agreement_end_date: ::Time
834
844
  attr_accessor agreement_start_date: ::Time
@@ -837,7 +847,7 @@ module Aws::MarketplaceDiscovery
837
847
 
838
848
  class VariablePaymentTerm
839
849
  attr_accessor id: ::String
840
- attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm")
850
+ attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
841
851
  attr_accessor currency_code: ::String
842
852
  attr_accessor max_total_charge_amount: ::String
843
853
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-marketplacediscovery
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services