aws-sdk-marketplacediscovery 1.6.0 → 1.7.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: 6aebd43501feb6c67c23b6b3d70d2fb09052edcf5e0a801f2fcfea6080f9f8db
4
- data.tar.gz: 485b98975833a9e1de04a8e85aa6fe79387c2b67ec3c76a8b08b9c7fe3b2f63b
3
+ metadata.gz: 1c7262b3cb6474261ee4aefef65f0f57a156f834c256bc63413073719a24d7e6
4
+ data.tar.gz: f9812fb9c910f5f6107684878dfb94058694c6d436d2453975664b3a56b54aff
5
5
  SHA512:
6
- metadata.gz: 7ad2f0a21ccefc57e7d28c02514235684d89ac807d97f31d6e90244404872bdd7241c39187482bbfee6b9ba229a6367ab50961b79bab401a49541fb4f8a083a8
7
- data.tar.gz: 1d35e80f519f371852d65b273bb1dce0513a05e9e61888239006f089646f5dd87721703802747298b8a0c1cbf7df8ab50c9b96a2962acaa3cc9e89a86d135c56
6
+ metadata.gz: 9d3843daa098641a336bf91bb44d8aeaa4080c2fb469b1b3e586422d2985a71476dc1511ca71fc31114ddea98ef009a58a86c841a91e1bfa21872585c475afb8
7
+ data.tar.gz: 9eaf6e942ba21a19a334df372c054ac860a0f959a6e734877816439bdc49d8e3844f8a385ddd34d47cc3a48784a76be000ac90666bbc644e4dd7e289fbeba47e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2026-09-01)
5
+ ------------------
6
+
7
+ * Feature - GetOfferTerms now returns renewalTerm for offers with pre-authorized renewals, exposing maxRenewals, lockoutPeriod, adjustmentDeadline, priceIncrease (fixed percentage or percentage range), and termTemplates (renewal payment schedules). Enables buyers to view renewal pricing and terms.
8
+
4
9
  1.6.0 (2026-08-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -1178,7 +1178,7 @@ module Aws::MarketplaceDiscovery
1178
1178
  # resp.pricing_model.display_name #=> String
1179
1179
  # resp.badges #=> Array
1180
1180
  # resp.badges[0].display_name #=> String
1181
- # resp.badges[0].badge_type #=> String, one of "PRIVATE_PRICING", "FUTURE_DATED", "REPLACEMENT_OFFER"
1181
+ # resp.badges[0].badge_type #=> String, one of "PRIVATE_PRICING", "FUTURE_DATED", "REPLACEMENT_OFFER", "AUTO_RENEW"
1182
1182
  #
1183
1183
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/GetOffer AWS API Documentation
1184
1184
  #
@@ -1291,7 +1291,7 @@ module Aws::MarketplaceDiscovery
1291
1291
  # resp.seller_of_record.display_name #=> String
1292
1292
  # resp.badges #=> Array
1293
1293
  # resp.badges[0].display_name #=> String
1294
- # resp.badges[0].badge_type #=> String, one of "PRIVATE_PRICING", "FUTURE_DATED", "REPLACEMENT_OFFER"
1294
+ # resp.badges[0].badge_type #=> String, one of "PRIVATE_PRICING", "FUTURE_DATED", "REPLACEMENT_OFFER", "AUTO_RENEW"
1295
1295
  # resp.associated_entities #=> Array
1296
1296
  # resp.associated_entities[0].product.product_id #=> String
1297
1297
  # resp.associated_entities[0].product.product_name #=> String
@@ -1690,7 +1690,84 @@ module Aws::MarketplaceDiscovery
1690
1690
  # {
1691
1691
  # renewal_term: {
1692
1692
  # type: "RenewalTerm",
1693
+ # adjustment_deadline: "P30D",
1693
1694
  # id: "term-renewal-001",
1695
+ # lockout_period: "P30D",
1696
+ # max_renewals: 3,
1697
+ # price_increase: {
1698
+ # percentage_range: {
1699
+ # default_value: "5.00",
1700
+ # maximum_value: "10.00",
1701
+ # minimum_value: "3.00",
1702
+ # },
1703
+ # },
1704
+ # term_templates: [
1705
+ # {
1706
+ # payment_schedule_term_template: {
1707
+ # schedule: [
1708
+ # {
1709
+ # charge_date_offset: "P0D",
1710
+ # charge_percentage: "50.00",
1711
+ # },
1712
+ # {
1713
+ # charge_date_offset: "P6M",
1714
+ # charge_percentage: "25.00",
1715
+ # day_of_month: 1,
1716
+ # },
1717
+ # {
1718
+ # charge_date_offset: "P12M",
1719
+ # charge_percentage: "25.00",
1720
+ # day_of_month: 1,
1721
+ # },
1722
+ # ],
1723
+ # },
1724
+ # },
1725
+ # ],
1726
+ # },
1727
+ # },
1728
+ # ],
1729
+ # }
1730
+ #
1731
+ # @example Example: GetOfferTerms for renewal term with fixed percentage
1732
+ #
1733
+ # resp = client.get_offer_terms({
1734
+ # offer_id: "offer-sampleRenewalFixedId",
1735
+ # })
1736
+ #
1737
+ # resp.to_h outputs the following:
1738
+ # {
1739
+ # offer_terms: [
1740
+ # {
1741
+ # renewal_term: {
1742
+ # type: "RenewalTerm",
1743
+ # id: "term-renewal-002",
1744
+ # lockout_period: "P60D",
1745
+ # max_renewals: 5,
1746
+ # price_increase: {
1747
+ # fixed_percentage: {
1748
+ # percentage_value: "5.00",
1749
+ # },
1750
+ # },
1751
+ # },
1752
+ # },
1753
+ # ],
1754
+ # }
1755
+ #
1756
+ # @example Example: GetOfferTerms for renewal term with identical pricing (no price increase)
1757
+ #
1758
+ # resp = client.get_offer_terms({
1759
+ # offer_id: "offer-sampleRenewalNoPriceIncreaseId",
1760
+ # })
1761
+ #
1762
+ # resp.to_h outputs the following:
1763
+ # {
1764
+ # offer_terms: [
1765
+ # {
1766
+ # renewal_term: {
1767
+ # type: "RenewalTerm",
1768
+ # id: "term-renewal-003",
1769
+ # lockout_period: "P30D",
1770
+ # max_renewals: 2,
1694
1771
  # },
1695
1772
  # },
1696
1773
  # ],
@@ -1833,6 +1910,18 @@ module Aws::MarketplaceDiscovery
1833
1910
  # resp.offer_terms[0].recurring_payment_term.price #=> String
1834
1911
  # resp.offer_terms[0].renewal_term.id #=> String
1835
1912
  # resp.offer_terms[0].renewal_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1913
+ # resp.offer_terms[0].renewal_term.max_renewals #=> Integer
1914
+ # resp.offer_terms[0].renewal_term.lockout_period #=> String
1915
+ # resp.offer_terms[0].renewal_term.adjustment_deadline #=> String
1916
+ # resp.offer_terms[0].renewal_term.price_increase.fixed_percentage.percentage_value #=> String
1917
+ # resp.offer_terms[0].renewal_term.price_increase.percentage_range.minimum_value #=> String
1918
+ # resp.offer_terms[0].renewal_term.price_increase.percentage_range.maximum_value #=> String
1919
+ # resp.offer_terms[0].renewal_term.price_increase.percentage_range.default_value #=> String
1920
+ # resp.offer_terms[0].renewal_term.term_templates #=> Array
1921
+ # resp.offer_terms[0].renewal_term.term_templates[0].payment_schedule_term_template.schedule #=> Array
1922
+ # resp.offer_terms[0].renewal_term.term_templates[0].payment_schedule_term_template.schedule[0].charge_date_offset #=> String
1923
+ # resp.offer_terms[0].renewal_term.term_templates[0].payment_schedule_term_template.schedule[0].charge_percentage #=> String
1924
+ # resp.offer_terms[0].renewal_term.term_templates[0].payment_schedule_term_template.schedule[0].day_of_month #=> Integer
1836
1925
  # resp.offer_terms[0].support_term.id #=> String
1837
1926
  # resp.offer_terms[0].support_term.type #=> String, one of "ByolPricingTerm", "ConfigurableUpfrontPricingTerm", "FixedUpfrontPricingTerm", "UsageBasedPricingTerm", "FreeTrialPricingTerm", "LegalTerm", "PaymentScheduleTerm", "RecurringPaymentTerm", "RenewalTerm", "SupportTerm", "ValidityTerm", "VariablePaymentTerm", "NetPaymentTerm"
1838
1927
  # resp.offer_terms[0].support_term.refund_policy #=> String
@@ -2876,7 +2965,7 @@ module Aws::MarketplaceDiscovery
2876
2965
  # resp.purchase_options[0].seller_of_record.display_name #=> String
2877
2966
  # resp.purchase_options[0].badges #=> Array
2878
2967
  # resp.purchase_options[0].badges[0].display_name #=> String
2879
- # resp.purchase_options[0].badges[0].badge_type #=> String, one of "PRIVATE_PRICING", "FUTURE_DATED", "REPLACEMENT_OFFER"
2968
+ # resp.purchase_options[0].badges[0].badge_type #=> String, one of "PRIVATE_PRICING", "FUTURE_DATED", "REPLACEMENT_OFFER", "AUTO_RENEW"
2880
2969
  # resp.purchase_options[0].associated_entities #=> Array
2881
2970
  # resp.purchase_options[0].associated_entities[0].product.product_id #=> String
2882
2971
  # resp.purchase_options[0].associated_entities[0].product.product_name #=> String
@@ -3307,7 +3396,7 @@ module Aws::MarketplaceDiscovery
3307
3396
  tracer: tracer
3308
3397
  )
3309
3398
  context[:gem_name] = 'aws-sdk-marketplacediscovery'
3310
- context[:gem_version] = '1.6.0'
3399
+ context[:gem_version] = '1.7.0'
3311
3400
  Seahorse::Client::Request.new(handlers, context)
3312
3401
  end
3313
3402
 
@@ -53,6 +53,7 @@ module Aws::MarketplaceDiscovery
53
53
  EksAddOnOperatingSystemList = Shapes::ListShape.new(name: 'EksAddOnOperatingSystemList')
54
54
  ExceptionMessage = Shapes::StringShape.new(name: 'ExceptionMessage')
55
55
  FacetTypeList = Shapes::ListShape.new(name: 'FacetTypeList')
56
+ FixedPercentage = Shapes::StructureShape.new(name: 'FixedPercentage')
56
57
  FixedUpfrontPricingTerm = Shapes::StructureShape.new(name: 'FixedUpfrontPricingTerm')
57
58
  FreeTrialPricingTerm = Shapes::StructureShape.new(name: 'FreeTrialPricingTerm')
58
59
  FulfillmentOption = Shapes::UnionShape.new(name: 'FulfillmentOption')
@@ -117,7 +118,13 @@ module Aws::MarketplaceDiscovery
117
118
  OfferSetInformation = Shapes::StructureShape.new(name: 'OfferSetInformation')
118
119
  OfferTerm = Shapes::UnionShape.new(name: 'OfferTerm')
119
120
  OfferTermsList = Shapes::ListShape.new(name: 'OfferTermsList')
121
+ PaymentScheduleEntry = Shapes::StructureShape.new(name: 'PaymentScheduleEntry')
122
+ PaymentScheduleEntryDayOfMonthInteger = Shapes::IntegerShape.new(name: 'PaymentScheduleEntryDayOfMonthInteger')
123
+ PaymentScheduleEntryList = Shapes::ListShape.new(name: 'PaymentScheduleEntryList')
120
124
  PaymentScheduleTerm = Shapes::StructureShape.new(name: 'PaymentScheduleTerm')
125
+ PaymentScheduleTermTemplate = Shapes::StructureShape.new(name: 'PaymentScheduleTermTemplate')
126
+ PercentageRange = Shapes::StructureShape.new(name: 'PercentageRange')
127
+ PriceIncrease = Shapes::UnionShape.new(name: 'PriceIncrease')
121
128
  PricingModel = Shapes::StructureShape.new(name: 'PricingModel')
122
129
  PricingModelList = Shapes::ListShape.new(name: 'PricingModelList')
123
130
  PricingModelType = Shapes::StringShape.new(name: 'PricingModelType')
@@ -149,6 +156,7 @@ module Aws::MarketplaceDiscovery
149
156
  RateCardList = Shapes::ListShape.new(name: 'RateCardList')
150
157
  RecurringPaymentTerm = Shapes::StructureShape.new(name: 'RecurringPaymentTerm')
151
158
  RenewalTerm = Shapes::StructureShape.new(name: 'RenewalTerm')
159
+ RenewalTermMaxRenewalsInteger = Shapes::IntegerShape.new(name: 'RenewalTermMaxRenewalsInteger')
152
160
  Resource = Shapes::StructureShape.new(name: 'Resource')
153
161
  ResourceContentType = Shapes::StringShape.new(name: 'ResourceContentType')
154
162
  ResourceList = Shapes::ListShape.new(name: 'ResourceList')
@@ -189,6 +197,8 @@ module Aws::MarketplaceDiscovery
189
197
  String = Shapes::StringShape.new(name: 'String')
190
198
  SupportTerm = Shapes::StructureShape.new(name: 'SupportTerm')
191
199
  TermId = Shapes::StringShape.new(name: 'TermId')
200
+ TermTemplate = Shapes::UnionShape.new(name: 'TermTemplate')
201
+ TermTemplateList = Shapes::ListShape.new(name: 'TermTemplateList')
192
202
  TermType = Shapes::StringShape.new(name: 'TermType')
193
203
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
194
204
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
@@ -354,6 +364,9 @@ module Aws::MarketplaceDiscovery
354
364
 
355
365
  FacetTypeList.member = Shapes::ShapeRef.new(shape: SearchFacetType)
356
366
 
367
+ FixedPercentage.add_member(:percentage_value, Shapes::ShapeRef.new(shape: BoundedString, required: true, location_name: "percentageValue"))
368
+ FixedPercentage.struct_class = Types::FixedPercentage
369
+
357
370
  FixedUpfrontPricingTerm.add_member(:id, Shapes::ShapeRef.new(shape: TermId, required: true, location_name: "id"))
358
371
  FixedUpfrontPricingTerm.add_member(:type, Shapes::ShapeRef.new(shape: TermType, required: true, location_name: "type"))
359
372
  FixedUpfrontPricingTerm.add_member(:currency_code, Shapes::ShapeRef.new(shape: CurrencyCode, required: true, location_name: "currencyCode"))
@@ -642,12 +655,35 @@ module Aws::MarketplaceDiscovery
642
655
 
643
656
  OfferTermsList.member = Shapes::ShapeRef.new(shape: OfferTerm)
644
657
 
658
+ PaymentScheduleEntry.add_member(:charge_date_offset, Shapes::ShapeRef.new(shape: BoundedString, required: true, location_name: "chargeDateOffset"))
659
+ PaymentScheduleEntry.add_member(:charge_percentage, Shapes::ShapeRef.new(shape: BoundedString, required: true, location_name: "chargePercentage"))
660
+ PaymentScheduleEntry.add_member(:day_of_month, Shapes::ShapeRef.new(shape: PaymentScheduleEntryDayOfMonthInteger, location_name: "dayOfMonth"))
661
+ PaymentScheduleEntry.struct_class = Types::PaymentScheduleEntry
662
+
663
+ PaymentScheduleEntryList.member = Shapes::ShapeRef.new(shape: PaymentScheduleEntry)
664
+
645
665
  PaymentScheduleTerm.add_member(:id, Shapes::ShapeRef.new(shape: TermId, required: true, location_name: "id"))
646
666
  PaymentScheduleTerm.add_member(:type, Shapes::ShapeRef.new(shape: TermType, required: true, location_name: "type"))
647
667
  PaymentScheduleTerm.add_member(:currency_code, Shapes::ShapeRef.new(shape: CurrencyCode, required: true, location_name: "currencyCode"))
648
668
  PaymentScheduleTerm.add_member(:schedule, Shapes::ShapeRef.new(shape: ScheduleList, required: true, location_name: "schedule"))
649
669
  PaymentScheduleTerm.struct_class = Types::PaymentScheduleTerm
650
670
 
671
+ PaymentScheduleTermTemplate.add_member(:schedule, Shapes::ShapeRef.new(shape: PaymentScheduleEntryList, required: true, location_name: "schedule"))
672
+ PaymentScheduleTermTemplate.struct_class = Types::PaymentScheduleTermTemplate
673
+
674
+ PercentageRange.add_member(:minimum_value, Shapes::ShapeRef.new(shape: BoundedString, required: true, location_name: "minimumValue"))
675
+ PercentageRange.add_member(:maximum_value, Shapes::ShapeRef.new(shape: BoundedString, required: true, location_name: "maximumValue"))
676
+ PercentageRange.add_member(:default_value, Shapes::ShapeRef.new(shape: BoundedString, required: true, location_name: "defaultValue"))
677
+ PercentageRange.struct_class = Types::PercentageRange
678
+
679
+ PriceIncrease.add_member(:fixed_percentage, Shapes::ShapeRef.new(shape: FixedPercentage, location_name: "fixedPercentage"))
680
+ PriceIncrease.add_member(:percentage_range, Shapes::ShapeRef.new(shape: PercentageRange, location_name: "percentageRange"))
681
+ PriceIncrease.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
682
+ PriceIncrease.add_member_subclass(:fixed_percentage, Types::PriceIncrease::FixedPercentage)
683
+ PriceIncrease.add_member_subclass(:percentage_range, Types::PriceIncrease::PercentageRange)
684
+ PriceIncrease.add_member_subclass(:unknown, Types::PriceIncrease::Unknown)
685
+ PriceIncrease.struct_class = Types::PriceIncrease
686
+
651
687
  PricingModel.add_member(:pricing_model_type, Shapes::ShapeRef.new(shape: PricingModelType, required: true, location_name: "pricingModelType"))
652
688
  PricingModel.add_member(:display_name, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "displayName"))
653
689
  PricingModel.struct_class = Types::PricingModel
@@ -745,6 +781,11 @@ module Aws::MarketplaceDiscovery
745
781
 
746
782
  RenewalTerm.add_member(:id, Shapes::ShapeRef.new(shape: TermId, required: true, location_name: "id"))
747
783
  RenewalTerm.add_member(:type, Shapes::ShapeRef.new(shape: TermType, required: true, location_name: "type"))
784
+ RenewalTerm.add_member(:max_renewals, Shapes::ShapeRef.new(shape: RenewalTermMaxRenewalsInteger, location_name: "maxRenewals"))
785
+ RenewalTerm.add_member(:lockout_period, Shapes::ShapeRef.new(shape: BoundedString, location_name: "lockoutPeriod"))
786
+ RenewalTerm.add_member(:adjustment_deadline, Shapes::ShapeRef.new(shape: BoundedString, location_name: "adjustmentDeadline"))
787
+ RenewalTerm.add_member(:price_increase, Shapes::ShapeRef.new(shape: PriceIncrease, location_name: "priceIncrease"))
788
+ RenewalTerm.add_member(:term_templates, Shapes::ShapeRef.new(shape: TermTemplateList, location_name: "termTemplates"))
748
789
  RenewalTerm.struct_class = Types::RenewalTerm
749
790
 
750
791
  Resource.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "resourceType"))
@@ -862,6 +903,14 @@ module Aws::MarketplaceDiscovery
862
903
  SupportTerm.add_member(:refund_policy, Shapes::ShapeRef.new(shape: BoundedString, required: true, location_name: "refundPolicy"))
863
904
  SupportTerm.struct_class = Types::SupportTerm
864
905
 
906
+ TermTemplate.add_member(:payment_schedule_term_template, Shapes::ShapeRef.new(shape: PaymentScheduleTermTemplate, location_name: "paymentScheduleTermTemplate"))
907
+ TermTemplate.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
908
+ TermTemplate.add_member_subclass(:payment_schedule_term_template, Types::TermTemplate::PaymentScheduleTermTemplate)
909
+ TermTemplate.add_member_subclass(:unknown, Types::TermTemplate::Unknown)
910
+ TermTemplate.struct_class = Types::TermTemplate
911
+
912
+ TermTemplateList.member = Shapes::ShapeRef.new(shape: TermTemplate)
913
+
865
914
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
866
915
  ThrottlingException.struct_class = Types::ThrottlingException
867
916
 
@@ -660,6 +660,21 @@ module Aws::MarketplaceDiscovery
660
660
  include Aws::Structure
661
661
  end
662
662
 
663
+ # A single fixed price increase percentage applied at each renewal
664
+ # cycle.
665
+ #
666
+ # @!attribute [rw] percentage_value
667
+ # The percentage value applied at each renewal cycle.
668
+ # @return [String]
669
+ #
670
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/FixedPercentage AWS API Documentation
671
+ #
672
+ class FixedPercentage < Struct.new(
673
+ :percentage_value)
674
+ SENSITIVE = []
675
+ include Aws::Structure
676
+ end
677
+
663
678
  # Defines a fixed upfront pricing term with a pre-paid amount and
664
679
  # granted entitlements.
665
680
  #
@@ -1877,6 +1892,39 @@ module Aws::MarketplaceDiscovery
1877
1892
  class Unknown < OfferTerm; end
1878
1893
  end
1879
1894
 
1895
+ # A single installment entry in the renewal payment schedule.
1896
+ #
1897
+ # @!attribute [rw] charge_date_offset
1898
+ # The relative offset from the renewal agreement start date when this
1899
+ # installment is due, in ISO 8601 duration format. The offset uses
1900
+ # months only or days only (for example, P1M or P30D); mixed units are
1901
+ # not supported, and every offset in a schedule uses the same unit.
1902
+ # @return [String]
1903
+ #
1904
+ # @!attribute [rw] charge_percentage
1905
+ # The percentage of the increased TCV to charge in this installment.
1906
+ # All entries in a schedule sum to 100.00.
1907
+ # @return [String]
1908
+ #
1909
+ # @!attribute [rw] day_of_month
1910
+ # The optional calendar day of month on which the charge occurs. When
1911
+ # absent, the charge day is derived from `chargeDateOffset`, and this
1912
+ # field does not apply when `chargeDateOffset` is expressed in days.
1913
+ # For months with fewer days than the specified day, the charge occurs
1914
+ # on the last day of the month. For example, if `dayOfMonth` is 31,
1915
+ # the charge in April occurs on April 30.
1916
+ # @return [Integer]
1917
+ #
1918
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/PaymentScheduleEntry AWS API Documentation
1919
+ #
1920
+ class PaymentScheduleEntry < Struct.new(
1921
+ :charge_date_offset,
1922
+ :charge_percentage,
1923
+ :day_of_month)
1924
+ SENSITIVE = []
1925
+ include Aws::Structure
1926
+ end
1927
+
1880
1928
  # Defines a payment schedule term with installment payments at specified
1881
1929
  # dates.
1882
1930
  #
@@ -1908,6 +1956,80 @@ module Aws::MarketplaceDiscovery
1908
1956
  include Aws::Structure
1909
1957
  end
1910
1958
 
1959
+ # A template for the payment schedule term on the renewal offer.
1960
+ #
1961
+ # @!attribute [rw] schedule
1962
+ # An ordered list of installment entries for the renewal payment
1963
+ # schedule.
1964
+ # @return [Array<Types::PaymentScheduleEntry>]
1965
+ #
1966
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/PaymentScheduleTermTemplate AWS API Documentation
1967
+ #
1968
+ class PaymentScheduleTermTemplate < Struct.new(
1969
+ :schedule)
1970
+ SENSITIVE = []
1971
+ include Aws::Structure
1972
+ end
1973
+
1974
+ # A price increase percentage range with minimum, maximum, and default
1975
+ # values.
1976
+ #
1977
+ # @!attribute [rw] minimum_value
1978
+ # The minimum percentage by which the price can increase at each
1979
+ # renewal cycle.
1980
+ # @return [String]
1981
+ #
1982
+ # @!attribute [rw] maximum_value
1983
+ # The maximum percentage by which the price can increase at each
1984
+ # renewal cycle.
1985
+ # @return [String]
1986
+ #
1987
+ # @!attribute [rw] default_value
1988
+ # The percentage increase applied by default when no other value is
1989
+ # finalized before the adjustment deadline. Falls between
1990
+ # `minimumValue` and `maximumValue`.
1991
+ # @return [String]
1992
+ #
1993
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/PercentageRange AWS API Documentation
1994
+ #
1995
+ class PercentageRange < Struct.new(
1996
+ :minimum_value,
1997
+ :maximum_value,
1998
+ :default_value)
1999
+ SENSITIVE = []
2000
+ include Aws::Structure
2001
+ end
2002
+
2003
+ # The pricing adjustment that applies at each renewal cycle, expressed
2004
+ # as either a fixed percentage or a percentage range. Exactly one
2005
+ # variant is present.
2006
+ #
2007
+ # @note PriceIncrease is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PriceIncrease corresponding to the set member.
2008
+ #
2009
+ # @!attribute [rw] fixed_percentage
2010
+ # A single fixed percentage applied uniformly at every renewal cycle.
2011
+ # @return [Types::FixedPercentage]
2012
+ #
2013
+ # @!attribute [rw] percentage_range
2014
+ # A percentage band with minimum, maximum, and default values that
2015
+ # bound the price increase at each renewal cycle.
2016
+ # @return [Types::PercentageRange]
2017
+ #
2018
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/PriceIncrease AWS API Documentation
2019
+ #
2020
+ class PriceIncrease < Struct.new(
2021
+ :fixed_percentage,
2022
+ :percentage_range,
2023
+ :unknown)
2024
+ SENSITIVE = []
2025
+ include Aws::Structure
2026
+ include Aws::Structure::Union
2027
+
2028
+ class FixedPercentage < PriceIncrease; end
2029
+ class PercentageRange < PriceIncrease; end
2030
+ class Unknown < PriceIncrease; end
2031
+ end
2032
+
1911
2033
  # A pricing model that determines how buyers are charged for a listing,
1912
2034
  # such as usage-based, contract, BYOL, or free.
1913
2035
  #
@@ -2298,11 +2420,43 @@ module Aws::MarketplaceDiscovery
2298
2420
  # The category of the term.
2299
2421
  # @return [String]
2300
2422
  #
2423
+ # @!attribute [rw] max_renewals
2424
+ # The maximum number of renewals allowed on this offer. Absent means
2425
+ # unlimited renewals.
2426
+ # @return [Integer]
2427
+ #
2428
+ # @!attribute [rw] lockout_period
2429
+ # The duration before the agreement end date when the lockout window
2430
+ # begins, in ISO 8601 format (for example, P30D). Absent means no
2431
+ # lockout.
2432
+ # @return [String]
2433
+ #
2434
+ # @!attribute [rw] adjustment_deadline
2435
+ # The duration before the agreement end date by which the renewal
2436
+ # price is finalized, represented in ISO 8601 format (for example,
2437
+ # P30D). Only applicable with `PercentageRange`.
2438
+ # @return [String]
2439
+ #
2440
+ # @!attribute [rw] price_increase
2441
+ # The price increase applied at each renewal cycle. Absent means
2442
+ # identical pricing on renewal.
2443
+ # @return [Types::PriceIncrease]
2444
+ #
2445
+ # @!attribute [rw] term_templates
2446
+ # Structural templates defining how specific terms are reshaped on
2447
+ # each renewal cycle. Absent for upfront-only offers.
2448
+ # @return [Array<Types::TermTemplate>]
2449
+ #
2301
2450
  # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/RenewalTerm AWS API Documentation
2302
2451
  #
2303
2452
  class RenewalTerm < Struct.new(
2304
2453
  :id,
2305
- :type)
2454
+ :type,
2455
+ :max_renewals,
2456
+ :lockout_period,
2457
+ :adjustment_deadline,
2458
+ :price_increase,
2459
+ :term_templates)
2306
2460
  SENSITIVE = []
2307
2461
  include Aws::Structure
2308
2462
  end
@@ -2827,6 +2981,29 @@ module Aws::MarketplaceDiscovery
2827
2981
  include Aws::Structure
2828
2982
  end
2829
2983
 
2984
+ # A structural template defining how a specific term type is reshaped on
2985
+ # each renewal cycle. Exactly one variant is present.
2986
+ #
2987
+ # @note TermTemplate is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TermTemplate corresponding to the set member.
2988
+ #
2989
+ # @!attribute [rw] payment_schedule_term_template
2990
+ # The installment schedule used to structure payments on the renewal
2991
+ # offer.
2992
+ # @return [Types::PaymentScheduleTermTemplate]
2993
+ #
2994
+ # @see http://docs.aws.amazon.com/goto/WebAPI/marketplace-discovery-2026-02-05/TermTemplate AWS API Documentation
2995
+ #
2996
+ class TermTemplate < Struct.new(
2997
+ :payment_schedule_term_template,
2998
+ :unknown)
2999
+ SENSITIVE = []
3000
+ include Aws::Structure
3001
+ include Aws::Structure::Union
3002
+
3003
+ class PaymentScheduleTermTemplate < TermTemplate; end
3004
+ class Unknown < TermTemplate; end
3005
+ end
3006
+
2830
3007
  # The request was denied due to request throttling.
2831
3008
  #
2832
3009
  # @!attribute [rw] message
@@ -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.6.0'
58
+ GEM_VERSION = '1.7.0'
59
59
 
60
60
  end
61
61
 
data/sig/types.rbs CHANGED
@@ -179,6 +179,11 @@ module Aws::MarketplaceDiscovery
179
179
  SENSITIVE: []
180
180
  end
181
181
 
182
+ class FixedPercentage
183
+ attr_accessor percentage_value: ::String
184
+ SENSITIVE: []
185
+ end
186
+
182
187
  class FixedUpfrontPricingTerm
183
188
  attr_accessor id: ::String
184
189
  attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
@@ -538,6 +543,13 @@ module Aws::MarketplaceDiscovery
538
543
  end
539
544
  end
540
545
 
546
+ class PaymentScheduleEntry
547
+ attr_accessor charge_date_offset: ::String
548
+ attr_accessor charge_percentage: ::String
549
+ attr_accessor day_of_month: ::Integer
550
+ SENSITIVE: []
551
+ end
552
+
541
553
  class PaymentScheduleTerm
542
554
  attr_accessor id: ::String
543
555
  attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
@@ -546,6 +558,32 @@ module Aws::MarketplaceDiscovery
546
558
  SENSITIVE: []
547
559
  end
548
560
 
561
+ class PaymentScheduleTermTemplate
562
+ attr_accessor schedule: ::Array[Types::PaymentScheduleEntry]
563
+ SENSITIVE: []
564
+ end
565
+
566
+ class PercentageRange
567
+ attr_accessor minimum_value: ::String
568
+ attr_accessor maximum_value: ::String
569
+ attr_accessor default_value: ::String
570
+ SENSITIVE: []
571
+ end
572
+
573
+ class PriceIncrease
574
+ attr_accessor fixed_percentage: Types::FixedPercentage
575
+ attr_accessor percentage_range: Types::PercentageRange
576
+ attr_accessor unknown: untyped
577
+ SENSITIVE: []
578
+
579
+ class FixedPercentage < PriceIncrease
580
+ end
581
+ class PercentageRange < PriceIncrease
582
+ end
583
+ class Unknown < PriceIncrease
584
+ end
585
+ end
586
+
549
587
  class PricingModel
550
588
  attr_accessor pricing_model_type: ("USAGE" | "CONTRACT" | "BYOL" | "FREE")
551
589
  attr_accessor display_name: ::String
@@ -611,7 +649,7 @@ module Aws::MarketplaceDiscovery
611
649
 
612
650
  class PurchaseOptionBadge
613
651
  attr_accessor display_name: ::String
614
- attr_accessor badge_type: ("PRIVATE_PRICING" | "FUTURE_DATED" | "REPLACEMENT_OFFER")
652
+ attr_accessor badge_type: ("PRIVATE_PRICING" | "FUTURE_DATED" | "REPLACEMENT_OFFER" | "AUTO_RENEW")
615
653
  SENSITIVE: []
616
654
  end
617
655
 
@@ -656,6 +694,11 @@ module Aws::MarketplaceDiscovery
656
694
  class RenewalTerm
657
695
  attr_accessor id: ::String
658
696
  attr_accessor type: ("ByolPricingTerm" | "ConfigurableUpfrontPricingTerm" | "FixedUpfrontPricingTerm" | "UsageBasedPricingTerm" | "FreeTrialPricingTerm" | "LegalTerm" | "PaymentScheduleTerm" | "RecurringPaymentTerm" | "RenewalTerm" | "SupportTerm" | "ValidityTerm" | "VariablePaymentTerm" | "NetPaymentTerm")
697
+ attr_accessor max_renewals: ::Integer
698
+ attr_accessor lockout_period: ::String
699
+ attr_accessor adjustment_deadline: ::String
700
+ attr_accessor price_increase: Types::PriceIncrease
701
+ attr_accessor term_templates: ::Array[Types::TermTemplate]
659
702
  SENSITIVE: []
660
703
  end
661
704
 
@@ -800,6 +843,17 @@ module Aws::MarketplaceDiscovery
800
843
  SENSITIVE: []
801
844
  end
802
845
 
846
+ class TermTemplate
847
+ attr_accessor payment_schedule_term_template: Types::PaymentScheduleTermTemplate
848
+ attr_accessor unknown: untyped
849
+ SENSITIVE: []
850
+
851
+ class PaymentScheduleTermTemplate < TermTemplate
852
+ end
853
+ class Unknown < TermTemplate
854
+ end
855
+ end
856
+
803
857
  class ThrottlingException
804
858
  attr_accessor message: ::String
805
859
  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.6.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services