@aws-sdk/client-marketplace-agreement 3.686.0 → 3.691.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.
@@ -11,7 +11,7 @@ export interface ByolPricingTerm {
11
11
  * <p>Type of the term being updated.</p>
12
12
  * @public
13
13
  */
14
- type?: string;
14
+ type?: string | undefined;
15
15
  }
16
16
  /**
17
17
  * <p>Defines the dimensions that the acceptor has purchased from the overall set of
@@ -66,14 +66,14 @@ export interface Constraints {
66
66
  * <code>Allowed</code>.</p>
67
67
  * @public
68
68
  */
69
- multipleDimensionSelection?: string;
69
+ multipleDimensionSelection?: string | undefined;
70
70
  /**
71
71
  * <p>Determines if acceptors are allowed to configure quantity for each dimension in rate
72
72
  * card. The possible values are <code>Allowed</code> and <code>Disallowed</code>. The default
73
73
  * value is <code>Allowed</code>.</p>
74
74
  * @public
75
75
  */
76
- quantityConfiguration?: string;
76
+ quantityConfiguration?: string | undefined;
77
77
  }
78
78
  /**
79
79
  * <p>Defines the per unit rates for each individual product dimension.</p>
@@ -84,12 +84,12 @@ export interface RateCardItem {
84
84
  * <p>Dimension for which the given entitlement applies. Dimensions represent categories of capacity in a product and are specified when the product is listed in AWS Marketplace.</p>
85
85
  * @public
86
86
  */
87
- dimensionKey?: string;
87
+ dimensionKey?: string | undefined;
88
88
  /**
89
89
  * <p>Per unit price for the product dimension that’s used for calculating the amount to be charged.</p>
90
90
  * @public
91
91
  */
92
- price?: string;
92
+ price?: string | undefined;
93
93
  }
94
94
  /**
95
95
  * <p>Differentiates between the mutually exclusive rate cards in the same pricing term to be
@@ -101,12 +101,12 @@ export interface Selector {
101
101
  * <p>Category of selector.</p>
102
102
  * @public
103
103
  */
104
- type?: string;
104
+ type?: string | undefined;
105
105
  /**
106
106
  * <p>Contract duration. This field supports the ISO 8601 format. </p>
107
107
  * @public
108
108
  */
109
- value?: string;
109
+ value?: string | undefined;
110
110
  }
111
111
  /**
112
112
  * <p>Within the prepaid payment model defined under <code>ConfigurableUpfrontPricingTerm</code>, the <code>RateCardItem</code> defines all the various rate cards (including pricing and dimensions) that have been proposed.</p>
@@ -117,17 +117,17 @@ export interface ConfigurableUpfrontRateCardItem {
117
117
  * <p>Differentiates between the mutually exclusive rate cards in the same pricing term to be selected by the buyer.</p>
118
118
  * @public
119
119
  */
120
- selector?: Selector;
120
+ selector?: Selector | undefined;
121
121
  /**
122
122
  * <p>Defines limits on how the term can be configured by acceptors.</p>
123
123
  * @public
124
124
  */
125
- constraints?: Constraints;
125
+ constraints?: Constraints | undefined;
126
126
  /**
127
127
  * <p>Defines the per unit rates for product dimensions.</p>
128
128
  * @public
129
129
  */
130
- rateCard?: RateCardItem[];
130
+ rateCard?: RateCardItem[] | undefined;
131
131
  }
132
132
  /**
133
133
  * <p>Defines a prepaid payment model that allows buyers to configure the entitlements they
@@ -139,22 +139,22 @@ export interface ConfigurableUpfrontPricingTerm {
139
139
  * <p>Category of selector.</p>
140
140
  * @public
141
141
  */
142
- type?: string;
142
+ type?: string | undefined;
143
143
  /**
144
144
  * <p>Defines the currency for the prices mentioned in the term.</p>
145
145
  * @public
146
146
  */
147
- currencyCode?: string;
147
+ currencyCode?: string | undefined;
148
148
  /**
149
149
  * <p>A rate card defines the per unit rates for product dimensions.</p>
150
150
  * @public
151
151
  */
152
- rateCards?: ConfigurableUpfrontRateCardItem[];
152
+ rateCards?: ConfigurableUpfrontRateCardItem[] | undefined;
153
153
  /**
154
154
  * <p>Additional parameters specified by the acceptor while accepting the term.</p>
155
155
  * @public
156
156
  */
157
- configuration?: ConfigurableUpfrontPricingTermConfiguration;
157
+ configuration?: ConfigurableUpfrontPricingTermConfiguration | undefined;
158
158
  }
159
159
  /**
160
160
  * <p>Entitlements granted to the acceptor of fixed upfront as part of agreement execution.</p>
@@ -165,12 +165,12 @@ export interface GrantItem {
165
165
  * <p>Unique dimension key defined in the product document. Dimensions represent categories of capacity in a product and are specified when the product is listed in AWS Marketplace. </p>
166
166
  * @public
167
167
  */
168
- dimensionKey?: string;
168
+ dimensionKey?: string | undefined;
169
169
  /**
170
170
  * <p>Maximum amount of capacity that the buyer can be entitled to the given dimension of the product. If <code>MaxQuantity</code> is not provided, the buyer will be able to use an unlimited amount of the given dimension. </p>
171
171
  * @public
172
172
  */
173
- maxQuantity?: number;
173
+ maxQuantity?: number | undefined;
174
174
  }
175
175
  /**
176
176
  * <p>Defines a prepaid pricing model where the customers are charged a fixed upfront
@@ -182,28 +182,28 @@ export interface FixedUpfrontPricingTerm {
182
182
  * <p>Category of the term being updated.</p>
183
183
  * @public
184
184
  */
185
- type?: string;
185
+ type?: string | undefined;
186
186
  /**
187
187
  * <p>Defines the currency for the prices mentioned in this term. </p>
188
188
  * @public
189
189
  */
190
- currencyCode?: string;
190
+ currencyCode?: string | undefined;
191
191
  /**
192
192
  * <p>Contract duration for the terms.</p>
193
193
  * @public
194
194
  */
195
- duration?: string;
195
+ duration?: string | undefined;
196
196
  /**
197
197
  * <p>Fixed amount to be charged to the customer when this term is accepted.</p>
198
198
  * @public
199
199
  */
200
- price?: string;
200
+ price?: string | undefined;
201
201
  /**
202
202
  * <p>Entitlements granted to the acceptor of fixed upfront as part of agreement
203
203
  * execution.</p>
204
204
  * @public
205
205
  */
206
- grants?: GrantItem[];
206
+ grants?: GrantItem[] | undefined;
207
207
  }
208
208
  /**
209
209
  * <p>Defines a short-term free pricing model where the buyers aren’t charged anything within
@@ -215,18 +215,18 @@ export interface FreeTrialPricingTerm {
215
215
  * <p>Category of the term.</p>
216
216
  * @public
217
217
  */
218
- type?: string;
218
+ type?: string | undefined;
219
219
  /**
220
220
  * <p>Duration of the free trial period (5–31 days). </p>
221
221
  * @public
222
222
  */
223
- duration?: string;
223
+ duration?: string | undefined;
224
224
  /**
225
225
  * <p>Entitlements granted to the acceptor of a free trial as part of an agreement
226
226
  * execution.</p>
227
227
  * @public
228
228
  */
229
- grants?: GrantItem[];
229
+ grants?: GrantItem[] | undefined;
230
230
  }
231
231
  /**
232
232
  * <p>Includes the list of references to legal resources proposed by the proposer to the acceptor. Each <code>DocumentItem</code> refers to an individual reference.</p>
@@ -263,17 +263,17 @@ export interface DocumentItem {
263
263
  * </ul>
264
264
  * @public
265
265
  */
266
- type?: string;
266
+ type?: string | undefined;
267
267
  /**
268
268
  * <p>A URL to the legal document for buyers to read. Required when <code>Type</code> is <code>CustomEula</code>.</p>
269
269
  * @public
270
270
  */
271
- url?: string;
271
+ url?: string | undefined;
272
272
  /**
273
273
  * <p>Version of standard contracts provided by AWS Marketplace. Required when Type is <code>StandardEula</code> or <code>StandardDsa</code>. </p>
274
274
  * @public
275
275
  */
276
- version?: string;
276
+ version?: string | undefined;
277
277
  }
278
278
  /**
279
279
  * <p>Defines the list of text agreements proposed to the acceptors. An example is the end
@@ -285,13 +285,13 @@ export interface LegalTerm {
285
285
  * <p>Category of the term being updated.</p>
286
286
  * @public
287
287
  */
288
- type?: string;
288
+ type?: string | undefined;
289
289
  /**
290
290
  * <p>List of references to legal resources proposed to the buyers. An example is the
291
291
  * EULA.</p>
292
292
  * @public
293
293
  */
294
- documents?: DocumentItem[];
294
+ documents?: DocumentItem[] | undefined;
295
295
  }
296
296
  /**
297
297
  * <p>An individual installment of the payment that includes the date and amount of the charge.</p>
@@ -302,12 +302,12 @@ export interface ScheduleItem {
302
302
  * <p>The date that the customer would pay the price defined in this payment schedule term. Invoices are generated on the date provided.</p>
303
303
  * @public
304
304
  */
305
- chargeDate?: Date;
305
+ chargeDate?: Date | undefined;
306
306
  /**
307
307
  * <p>The price that the customer would pay on the scheduled date (chargeDate).</p>
308
308
  * @public
309
309
  */
310
- chargeAmount?: string;
310
+ chargeAmount?: string | undefined;
311
311
  }
312
312
  /**
313
313
  * <p>Defines an installment-based pricing model where customers are charged a fixed price on
@@ -320,18 +320,18 @@ export interface PaymentScheduleTerm {
320
320
  * <p>Type of the term.</p>
321
321
  * @public
322
322
  */
323
- type?: string;
323
+ type?: string | undefined;
324
324
  /**
325
325
  * <p>Defines the currency for the prices mentioned in the term. </p>
326
326
  * @public
327
327
  */
328
- currencyCode?: string;
328
+ currencyCode?: string | undefined;
329
329
  /**
330
330
  * <p>List of the payment schedule where each element defines one installment of payment. It
331
331
  * contains the information necessary for calculating the price.</p>
332
332
  * @public
333
333
  */
334
- schedule?: ScheduleItem[];
334
+ schedule?: ScheduleItem[] | undefined;
335
335
  }
336
336
  /**
337
337
  * <p>Defines a pricing model where customers are charged a fixed recurring price at the end
@@ -343,22 +343,22 @@ export interface RecurringPaymentTerm {
343
343
  * <p>Type of the term being updated.</p>
344
344
  * @public
345
345
  */
346
- type?: string;
346
+ type?: string | undefined;
347
347
  /**
348
348
  * <p>Defines the currency for the prices mentioned in this term. </p>
349
349
  * @public
350
350
  */
351
- currencyCode?: string;
351
+ currencyCode?: string | undefined;
352
352
  /**
353
353
  * <p>Defines the recurrence at which buyers are charged.</p>
354
354
  * @public
355
355
  */
356
- billingPeriod?: string;
356
+ billingPeriod?: string | undefined;
357
357
  /**
358
358
  * <p>Amount charged to the buyer every billing period.</p>
359
359
  * @public
360
360
  */
361
- price?: string;
361
+ price?: string | undefined;
362
362
  }
363
363
  /**
364
364
  * <p>Additional parameters specified by the acceptor while accepting the term.</p>
@@ -388,12 +388,12 @@ export interface RenewalTerm {
388
388
  * <p>Category of the term being updated. </p>
389
389
  * @public
390
390
  */
391
- type?: string;
391
+ type?: string | undefined;
392
392
  /**
393
393
  * <p>Additional parameters specified by the acceptor while accepting the term.</p>
394
394
  * @public
395
395
  */
396
- configuration?: RenewalTermConfiguration;
396
+ configuration?: RenewalTermConfiguration | undefined;
397
397
  }
398
398
  /**
399
399
  * <p>Defines the customer support available for the acceptors when they purchase the
@@ -405,13 +405,13 @@ export interface SupportTerm {
405
405
  * <p>Category of the term being updated.</p>
406
406
  * @public
407
407
  */
408
- type?: string;
408
+ type?: string | undefined;
409
409
  /**
410
410
  * <p>Free-text field about the refund policy description that will be shown to customers as
411
411
  * is on the website and console.</p>
412
412
  * @public
413
413
  */
414
- refundPolicy?: string;
414
+ refundPolicy?: string | undefined;
415
415
  }
416
416
  /**
417
417
  * <p>Within the pay-as-you-go model defined under <code>UsageBasedPricingTerm</code>, the <code>UsageBasedRateCardItem</code> defines an individual rate for a product dimension.</p>
@@ -422,7 +422,7 @@ export interface UsageBasedRateCardItem {
422
422
  * <p>Defines the per unit rates for product dimensions.</p>
423
423
  * @public
424
424
  */
425
- rateCard?: RateCardItem[];
425
+ rateCard?: RateCardItem[] | undefined;
426
426
  }
427
427
  /**
428
428
  * <p>Defines a usage-based pricing model (typically, pay-as-you-go pricing), where the
@@ -434,17 +434,17 @@ export interface UsageBasedPricingTerm {
434
434
  * <p>Category of the term.</p>
435
435
  * @public
436
436
  */
437
- type?: string;
437
+ type?: string | undefined;
438
438
  /**
439
439
  * <p>Defines the currency for the prices mentioned in the term. </p>
440
440
  * @public
441
441
  */
442
- currencyCode?: string;
442
+ currencyCode?: string | undefined;
443
443
  /**
444
444
  * <p>List of rate cards.</p>
445
445
  * @public
446
446
  */
447
- rateCards?: UsageBasedRateCardItem[];
447
+ rateCards?: UsageBasedRateCardItem[] | undefined;
448
448
  }
449
449
  /**
450
450
  * <p>Defines the conditions that will keep an agreement created from this offer valid. </p>
@@ -455,28 +455,28 @@ export interface ValidityTerm {
455
455
  * <p>Category of the term being updated. </p>
456
456
  * @public
457
457
  */
458
- type?: string;
458
+ type?: string | undefined;
459
459
  /**
460
460
  * <p>Defines the duration that the agreement remains active. If
461
461
  * <code>AgreementStartDate</code> isn’t provided, the agreement duration is relative to
462
462
  * the agreement signature time. The duration is represented in the ISO_8601 format.</p>
463
463
  * @public
464
464
  */
465
- agreementDuration?: string;
465
+ agreementDuration?: string | undefined;
466
466
  /**
467
467
  * <p>Defines the date when agreement starts. The agreement starts at 00:00:00.000 UTC on the
468
468
  * date provided. If <code>AgreementStartDate</code> isn’t provided, the agreement start date
469
469
  * is determined based on agreement signature time.</p>
470
470
  * @public
471
471
  */
472
- agreementStartDate?: Date;
472
+ agreementStartDate?: Date | undefined;
473
473
  /**
474
474
  * <p>Defines the date when the agreement ends. The agreement ends at 23:59:59.999 UTC on the
475
475
  * date provided. If <code>AgreementEndDate</code> isn’t provided, the agreement end date is
476
476
  * determined by the validity of individual terms.</p>
477
477
  * @public
478
478
  */
479
- agreementEndDate?: Date;
479
+ agreementEndDate?: Date | undefined;
480
480
  }
481
481
  /**
482
482
  * <p>A subset of terms proposed by the proposer, which have been accepted by the acceptor as part of agreement creation.</p>
@@ -728,7 +728,7 @@ export interface Acceptor {
728
728
  * <p>The AWS account ID of the acceptor.</p>
729
729
  * @public
730
730
  */
731
- accountId?: string;
731
+ accountId?: string | undefined;
732
732
  }
733
733
  /**
734
734
  * <p>User does not have sufficient access to perform this action.</p>
@@ -741,7 +741,7 @@ export declare class AccessDeniedException extends __BaseException {
741
741
  * <p>The unique identifier for the error.</p>
742
742
  * @public
743
743
  */
744
- requestId?: string;
744
+ requestId?: string | undefined;
745
745
  /**
746
746
  * @internal
747
747
  */
@@ -779,13 +779,13 @@ export interface Resource {
779
779
  * </note>
780
780
  * @public
781
781
  */
782
- id?: string;
782
+ id?: string | undefined;
783
783
  /**
784
784
  * <p>Type of the resource, which is the product. Values include <code>SaaSProduct</code> or
785
785
  * <code>AmiProduct</code>.</p>
786
786
  * @public
787
787
  */
788
- type?: string;
788
+ type?: string | undefined;
789
789
  }
790
790
  /**
791
791
  * <p>A summary of the proposal received from the proposer.</p>
@@ -796,12 +796,12 @@ export interface ProposalSummary {
796
796
  * <p>The list of resources involved in the agreement.</p>
797
797
  * @public
798
798
  */
799
- resources?: Resource[];
799
+ resources?: Resource[] | undefined;
800
800
  /**
801
801
  * <p>The unique identifier of the offer in AWS Marketplace.</p>
802
802
  * @public
803
803
  */
804
- offerId?: string;
804
+ offerId?: string | undefined;
805
805
  }
806
806
  /**
807
807
  * <p>Details of the party proposing the agreement terms,. This is commonly the seller for
@@ -813,7 +813,7 @@ export interface Proposer {
813
813
  * <p>The AWS account ID of the proposer.</p>
814
814
  * @public
815
815
  */
816
- accountId?: string;
816
+ accountId?: string | undefined;
817
817
  }
818
818
  /**
819
819
  * <p>A summary of the agreement, including top-level attributes (for example, the agreement
@@ -825,52 +825,52 @@ export interface AgreementViewSummary {
825
825
  * <p>The unique identifier of the agreement.</p>
826
826
  * @public
827
827
  */
828
- agreementId?: string;
828
+ agreementId?: string | undefined;
829
829
  /**
830
830
  * <p>The date and time that the agreement was accepted.</p>
831
831
  * @public
832
832
  */
833
- acceptanceTime?: Date;
833
+ acceptanceTime?: Date | undefined;
834
834
  /**
835
835
  * <p>The date and time when the agreement starts.</p>
836
836
  * @public
837
837
  */
838
- startTime?: Date;
838
+ startTime?: Date | undefined;
839
839
  /**
840
840
  * <p>The date and time when the agreement ends. The field is <code>null</code> for
841
841
  * pay-as-you-go agreements, which don’t have end dates.</p>
842
842
  * @public
843
843
  */
844
- endTime?: Date;
844
+ endTime?: Date | undefined;
845
845
  /**
846
846
  * <p>The type of agreement. Values are <code>PurchaseAgreement</code> or
847
847
  * <code>VendorInsightsAgreement</code>.</p>
848
848
  * @public
849
849
  */
850
- agreementType?: string;
850
+ agreementType?: string | undefined;
851
851
  /**
852
852
  * <p>Details of the party accepting the agreement terms. This is commonly the buyer for
853
853
  * <code>PurchaseAgreement.</code>
854
854
  * </p>
855
855
  * @public
856
856
  */
857
- acceptor?: Acceptor;
857
+ acceptor?: Acceptor | undefined;
858
858
  /**
859
859
  * <p>Details of the party proposing the agreement terms, most commonly the seller for
860
860
  * <code>PurchaseAgreement</code>.</p>
861
861
  * @public
862
862
  */
863
- proposer?: Proposer;
863
+ proposer?: Proposer | undefined;
864
864
  /**
865
865
  * <p>A summary of the proposal</p>
866
866
  * @public
867
867
  */
868
- proposalSummary?: ProposalSummary;
868
+ proposalSummary?: ProposalSummary | undefined;
869
869
  /**
870
870
  * <p>The current status of the agreement. </p>
871
871
  * @public
872
872
  */
873
- status?: AgreementStatus;
873
+ status?: AgreementStatus | undefined;
874
874
  }
875
875
  /**
876
876
  * @public
@@ -891,7 +891,7 @@ export interface EstimatedCharges {
891
891
  * <p>Defines the currency code for the charge.</p>
892
892
  * @public
893
893
  */
894
- currencyCode?: string;
894
+ currencyCode?: string | undefined;
895
895
  /**
896
896
  * <p>The total known amount customer has to pay across the lifecycle of the agreement.</p>
897
897
  * <note>
@@ -914,7 +914,7 @@ export interface EstimatedCharges {
914
914
  * </note>
915
915
  * @public
916
916
  */
917
- agreementValue?: string;
917
+ agreementValue?: string | undefined;
918
918
  }
919
919
  /**
920
920
  * @public
@@ -924,30 +924,30 @@ export interface DescribeAgreementOutput {
924
924
  * <p>The unique identifier of the agreement.</p>
925
925
  * @public
926
926
  */
927
- agreementId?: string;
927
+ agreementId?: string | undefined;
928
928
  /**
929
929
  * <p>The details of the party accepting the agreement terms. This is commonly the buyer for
930
930
  * <code>PurchaseAgreement</code>.</p>
931
931
  * @public
932
932
  */
933
- acceptor?: Acceptor;
933
+ acceptor?: Acceptor | undefined;
934
934
  /**
935
935
  * <p>The details of the party proposing the agreement terms. This is commonly the seller for
936
936
  * <code>PurchaseAgreement</code>.</p>
937
937
  * @public
938
938
  */
939
- proposer?: Proposer;
939
+ proposer?: Proposer | undefined;
940
940
  /**
941
941
  * <p>The date and time when the agreement starts.</p>
942
942
  * @public
943
943
  */
944
- startTime?: Date;
944
+ startTime?: Date | undefined;
945
945
  /**
946
946
  * <p>The date and time when the agreement ends. The field is <code>null</code> for
947
947
  * pay-as-you-go agreements, which don’t have end dates.</p>
948
948
  * @public
949
949
  */
950
- endTime?: Date;
950
+ endTime?: Date | undefined;
951
951
  /**
952
952
  * <p>The date and time the offer was accepted or the agreement was created.</p>
953
953
  * <note>
@@ -957,23 +957,23 @@ export interface DescribeAgreementOutput {
957
957
  * </note>
958
958
  * @public
959
959
  */
960
- acceptanceTime?: Date;
960
+ acceptanceTime?: Date | undefined;
961
961
  /**
962
962
  * <p>The type of agreement. Values are <code>PurchaseAgreement</code> or
963
963
  * <code>VendorInsightsAgreement</code>.</p>
964
964
  * @public
965
965
  */
966
- agreementType?: string;
966
+ agreementType?: string | undefined;
967
967
  /**
968
968
  * <p>The estimated cost of the agreement.</p>
969
969
  * @public
970
970
  */
971
- estimatedCharges?: EstimatedCharges;
971
+ estimatedCharges?: EstimatedCharges | undefined;
972
972
  /**
973
973
  * <p>A summary of the proposal received from the proposer.</p>
974
974
  * @public
975
975
  */
976
- proposalSummary?: ProposalSummary;
976
+ proposalSummary?: ProposalSummary | undefined;
977
977
  /**
978
978
  * <p>The current status of the agreement.</p>
979
979
  * <p>Statuses include:</p>
@@ -1025,7 +1025,7 @@ export interface DescribeAgreementOutput {
1025
1025
  * </ul>
1026
1026
  * @public
1027
1027
  */
1028
- status?: AgreementStatus;
1028
+ status?: AgreementStatus | undefined;
1029
1029
  }
1030
1030
  /**
1031
1031
  * <p>Unexpected error during processing of request.</p>
@@ -1038,7 +1038,7 @@ export declare class InternalServerException extends __BaseException {
1038
1038
  * <p>The unique identifier for the error.</p>
1039
1039
  * @public
1040
1040
  */
1041
- requestId?: string;
1041
+ requestId?: string | undefined;
1042
1042
  /**
1043
1043
  * @internal
1044
1044
  */
@@ -1066,17 +1066,17 @@ export declare class ResourceNotFoundException extends __BaseException {
1066
1066
  * <p>The unique identifier for the error.</p>
1067
1067
  * @public
1068
1068
  */
1069
- requestId?: string;
1069
+ requestId?: string | undefined;
1070
1070
  /**
1071
1071
  * <p>The unique identifier for the resource.</p>
1072
1072
  * @public
1073
1073
  */
1074
- resourceId?: string;
1074
+ resourceId?: string | undefined;
1075
1075
  /**
1076
1076
  * <p>The type of resource.</p>
1077
1077
  * @public
1078
1078
  */
1079
- resourceType?: ResourceType;
1079
+ resourceType?: ResourceType | undefined;
1080
1080
  /**
1081
1081
  * @internal
1082
1082
  */
@@ -1093,7 +1093,7 @@ export declare class ThrottlingException extends __BaseException {
1093
1093
  * <p>The unique identifier for the error.</p>
1094
1094
  * @public
1095
1095
  */
1096
- requestId?: string;
1096
+ requestId?: string | undefined;
1097
1097
  /**
1098
1098
  * @internal
1099
1099
  */
@@ -1147,17 +1147,17 @@ export declare class ValidationException extends __BaseException {
1147
1147
  * <p>The unique identifier associated with the error.</p>
1148
1148
  * @public
1149
1149
  */
1150
- requestId?: string;
1150
+ requestId?: string | undefined;
1151
1151
  /**
1152
1152
  * <p>The reason associated with the error.</p>
1153
1153
  * @public
1154
1154
  */
1155
- reason?: ValidationExceptionReason;
1155
+ reason?: ValidationExceptionReason | undefined;
1156
1156
  /**
1157
1157
  * <p>The fields associated with the error.</p>
1158
1158
  * @public
1159
1159
  */
1160
- fields?: ValidationExceptionField[];
1160
+ fields?: ValidationExceptionField[] | undefined;
1161
1161
  /**
1162
1162
  * @internal
1163
1163
  */
@@ -1176,12 +1176,12 @@ export interface GetAgreementTermsInput {
1176
1176
  * <p>The maximum number of agreements to return in the response.</p>
1177
1177
  * @public
1178
1178
  */
1179
- maxResults?: number;
1179
+ maxResults?: number | undefined;
1180
1180
  /**
1181
1181
  * <p>A token to specify where to start pagination</p>
1182
1182
  * @public
1183
1183
  */
1184
- nextToken?: string;
1184
+ nextToken?: string | undefined;
1185
1185
  }
1186
1186
  /**
1187
1187
  * @public
@@ -1192,12 +1192,12 @@ export interface GetAgreementTermsOutput {
1192
1192
  * part of the agreement creation.</p>
1193
1193
  * @public
1194
1194
  */
1195
- acceptedTerms?: AcceptedTerm[];
1195
+ acceptedTerms?: AcceptedTerm[] | undefined;
1196
1196
  /**
1197
1197
  * <p>A token to specify where to start pagination</p>
1198
1198
  * @public
1199
1199
  */
1200
- nextToken?: string;
1200
+ nextToken?: string | undefined;
1201
1201
  }
1202
1202
  /**
1203
1203
  * <p>The filter name and value pair that is used to return a more specific list of results.
@@ -1210,12 +1210,12 @@ export interface Filter {
1210
1210
  * <p>The name of the filter.</p>
1211
1211
  * @public
1212
1212
  */
1213
- name?: string;
1213
+ name?: string | undefined;
1214
1214
  /**
1215
1215
  * <p>The filter value.</p>
1216
1216
  * @public
1217
1217
  */
1218
- values?: string[];
1218
+ values?: string[] | undefined;
1219
1219
  }
1220
1220
  /**
1221
1221
  * @public
@@ -1240,13 +1240,13 @@ export interface Sort {
1240
1240
  * <code>EndTime</code>. The default value is <code>EndTime</code>.</p>
1241
1241
  * @public
1242
1242
  */
1243
- sortBy?: string;
1243
+ sortBy?: string | undefined;
1244
1244
  /**
1245
1245
  * <p>The sorting order, which can be <code>ASCENDING</code> or <code>DESCENDING</code>. The
1246
1246
  * default value is <code>DESCENDING</code>.</p>
1247
1247
  * @public
1248
1248
  */
1249
- sortOrder?: SortOrder;
1249
+ sortOrder?: SortOrder | undefined;
1250
1250
  }
1251
1251
  /**
1252
1252
  * @public
@@ -1256,7 +1256,7 @@ export interface SearchAgreementsInput {
1256
1256
  * <p>The catalog in which the agreement was created.</p>
1257
1257
  * @public
1258
1258
  */
1259
- catalog?: string;
1259
+ catalog?: string | undefined;
1260
1260
  /**
1261
1261
  * <p>The filter name and value pair used to return a specific list of results.</p>
1262
1262
  * <p>The following filters are supported:</p>
@@ -1313,23 +1313,23 @@ export interface SearchAgreementsInput {
1313
1313
  * </ul>
1314
1314
  * @public
1315
1315
  */
1316
- filters?: Filter[];
1316
+ filters?: Filter[] | undefined;
1317
1317
  /**
1318
1318
  * <p>An object that contains the <code>SortBy</code> and <code>SortOrder</code>
1319
1319
  * attributes.</p>
1320
1320
  * @public
1321
1321
  */
1322
- sort?: Sort;
1322
+ sort?: Sort | undefined;
1323
1323
  /**
1324
1324
  * <p>The maximum number of agreements to return in the response.</p>
1325
1325
  * @public
1326
1326
  */
1327
- maxResults?: number;
1327
+ maxResults?: number | undefined;
1328
1328
  /**
1329
1329
  * <p>A token to specify where to start pagination.</p>
1330
1330
  * @public
1331
1331
  */
1332
- nextToken?: string;
1332
+ nextToken?: string | undefined;
1333
1333
  }
1334
1334
  /**
1335
1335
  * @public
@@ -1340,11 +1340,11 @@ export interface SearchAgreementsOutput {
1340
1340
  * ID, version, proposer, and acceptor).</p>
1341
1341
  * @public
1342
1342
  */
1343
- agreementViewSummaries?: AgreementViewSummary[];
1343
+ agreementViewSummaries?: AgreementViewSummary[] | undefined;
1344
1344
  /**
1345
1345
  * <p>The token used for pagination. The field is <code>null</code> if there are no more
1346
1346
  * results.</p>
1347
1347
  * @public
1348
1348
  */
1349
- nextToken?: string;
1349
+ nextToken?: string | undefined;
1350
1350
  }
@@ -1,7 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { MarketplaceAgreementServiceException as __BaseException } from "./MarketplaceAgreementServiceException";
3
3
  export interface ByolPricingTerm {
4
- type?: string;
4
+ type?: string | undefined;
5
5
  }
6
6
  export interface Dimension {
7
7
  dimensionKey: string | undefined;
@@ -12,92 +12,92 @@ export interface ConfigurableUpfrontPricingTermConfiguration {
12
12
  dimensions: Dimension[] | undefined;
13
13
  }
14
14
  export interface Constraints {
15
- multipleDimensionSelection?: string;
16
- quantityConfiguration?: string;
15
+ multipleDimensionSelection?: string | undefined;
16
+ quantityConfiguration?: string | undefined;
17
17
  }
18
18
  export interface RateCardItem {
19
- dimensionKey?: string;
20
- price?: string;
19
+ dimensionKey?: string | undefined;
20
+ price?: string | undefined;
21
21
  }
22
22
  export interface Selector {
23
- type?: string;
24
- value?: string;
23
+ type?: string | undefined;
24
+ value?: string | undefined;
25
25
  }
26
26
  export interface ConfigurableUpfrontRateCardItem {
27
- selector?: Selector;
28
- constraints?: Constraints;
29
- rateCard?: RateCardItem[];
27
+ selector?: Selector | undefined;
28
+ constraints?: Constraints | undefined;
29
+ rateCard?: RateCardItem[] | undefined;
30
30
  }
31
31
  export interface ConfigurableUpfrontPricingTerm {
32
- type?: string;
33
- currencyCode?: string;
34
- rateCards?: ConfigurableUpfrontRateCardItem[];
35
- configuration?: ConfigurableUpfrontPricingTermConfiguration;
32
+ type?: string | undefined;
33
+ currencyCode?: string | undefined;
34
+ rateCards?: ConfigurableUpfrontRateCardItem[] | undefined;
35
+ configuration?: ConfigurableUpfrontPricingTermConfiguration | undefined;
36
36
  }
37
37
  export interface GrantItem {
38
- dimensionKey?: string;
39
- maxQuantity?: number;
38
+ dimensionKey?: string | undefined;
39
+ maxQuantity?: number | undefined;
40
40
  }
41
41
  export interface FixedUpfrontPricingTerm {
42
- type?: string;
43
- currencyCode?: string;
44
- duration?: string;
45
- price?: string;
46
- grants?: GrantItem[];
42
+ type?: string | undefined;
43
+ currencyCode?: string | undefined;
44
+ duration?: string | undefined;
45
+ price?: string | undefined;
46
+ grants?: GrantItem[] | undefined;
47
47
  }
48
48
  export interface FreeTrialPricingTerm {
49
- type?: string;
50
- duration?: string;
51
- grants?: GrantItem[];
49
+ type?: string | undefined;
50
+ duration?: string | undefined;
51
+ grants?: GrantItem[] | undefined;
52
52
  }
53
53
  export interface DocumentItem {
54
- type?: string;
55
- url?: string;
56
- version?: string;
54
+ type?: string | undefined;
55
+ url?: string | undefined;
56
+ version?: string | undefined;
57
57
  }
58
58
  export interface LegalTerm {
59
- type?: string;
60
- documents?: DocumentItem[];
59
+ type?: string | undefined;
60
+ documents?: DocumentItem[] | undefined;
61
61
  }
62
62
  export interface ScheduleItem {
63
- chargeDate?: Date;
64
- chargeAmount?: string;
63
+ chargeDate?: Date | undefined;
64
+ chargeAmount?: string | undefined;
65
65
  }
66
66
  export interface PaymentScheduleTerm {
67
- type?: string;
68
- currencyCode?: string;
69
- schedule?: ScheduleItem[];
67
+ type?: string | undefined;
68
+ currencyCode?: string | undefined;
69
+ schedule?: ScheduleItem[] | undefined;
70
70
  }
71
71
  export interface RecurringPaymentTerm {
72
- type?: string;
73
- currencyCode?: string;
74
- billingPeriod?: string;
75
- price?: string;
72
+ type?: string | undefined;
73
+ currencyCode?: string | undefined;
74
+ billingPeriod?: string | undefined;
75
+ price?: string | undefined;
76
76
  }
77
77
  export interface RenewalTermConfiguration {
78
78
  enableAutoRenew: boolean | undefined;
79
79
  }
80
80
  export interface RenewalTerm {
81
- type?: string;
82
- configuration?: RenewalTermConfiguration;
81
+ type?: string | undefined;
82
+ configuration?: RenewalTermConfiguration | undefined;
83
83
  }
84
84
  export interface SupportTerm {
85
- type?: string;
86
- refundPolicy?: string;
85
+ type?: string | undefined;
86
+ refundPolicy?: string | undefined;
87
87
  }
88
88
  export interface UsageBasedRateCardItem {
89
- rateCard?: RateCardItem[];
89
+ rateCard?: RateCardItem[] | undefined;
90
90
  }
91
91
  export interface UsageBasedPricingTerm {
92
- type?: string;
93
- currencyCode?: string;
94
- rateCards?: UsageBasedRateCardItem[];
92
+ type?: string | undefined;
93
+ currencyCode?: string | undefined;
94
+ rateCards?: UsageBasedRateCardItem[] | undefined;
95
95
  }
96
96
  export interface ValidityTerm {
97
- type?: string;
98
- agreementDuration?: string;
99
- agreementStartDate?: Date;
100
- agreementEndDate?: Date;
97
+ type?: string | undefined;
98
+ agreementDuration?: string | undefined;
99
+ agreementStartDate?: Date | undefined;
100
+ agreementEndDate?: Date | undefined;
101
101
  }
102
102
  export type AcceptedTerm =
103
103
  | AcceptedTerm.ByolPricingTermMember
@@ -300,12 +300,12 @@ export declare namespace AcceptedTerm {
300
300
  const visit: <T>(value: AcceptedTerm, visitor: Visitor<T>) => T;
301
301
  }
302
302
  export interface Acceptor {
303
- accountId?: string;
303
+ accountId?: string | undefined;
304
304
  }
305
305
  export declare class AccessDeniedException extends __BaseException {
306
306
  readonly name: "AccessDeniedException";
307
307
  readonly $fault: "client";
308
- requestId?: string;
308
+ requestId?: string | undefined;
309
309
  constructor(
310
310
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
311
311
  );
@@ -324,50 +324,50 @@ export declare const AgreementStatus: {
324
324
  export type AgreementStatus =
325
325
  (typeof AgreementStatus)[keyof typeof AgreementStatus];
326
326
  export interface Resource {
327
- id?: string;
328
- type?: string;
327
+ id?: string | undefined;
328
+ type?: string | undefined;
329
329
  }
330
330
  export interface ProposalSummary {
331
- resources?: Resource[];
332
- offerId?: string;
331
+ resources?: Resource[] | undefined;
332
+ offerId?: string | undefined;
333
333
  }
334
334
  export interface Proposer {
335
- accountId?: string;
335
+ accountId?: string | undefined;
336
336
  }
337
337
  export interface AgreementViewSummary {
338
- agreementId?: string;
339
- acceptanceTime?: Date;
340
- startTime?: Date;
341
- endTime?: Date;
342
- agreementType?: string;
343
- acceptor?: Acceptor;
344
- proposer?: Proposer;
345
- proposalSummary?: ProposalSummary;
346
- status?: AgreementStatus;
338
+ agreementId?: string | undefined;
339
+ acceptanceTime?: Date | undefined;
340
+ startTime?: Date | undefined;
341
+ endTime?: Date | undefined;
342
+ agreementType?: string | undefined;
343
+ acceptor?: Acceptor | undefined;
344
+ proposer?: Proposer | undefined;
345
+ proposalSummary?: ProposalSummary | undefined;
346
+ status?: AgreementStatus | undefined;
347
347
  }
348
348
  export interface DescribeAgreementInput {
349
349
  agreementId: string | undefined;
350
350
  }
351
351
  export interface EstimatedCharges {
352
- currencyCode?: string;
353
- agreementValue?: string;
352
+ currencyCode?: string | undefined;
353
+ agreementValue?: string | undefined;
354
354
  }
355
355
  export interface DescribeAgreementOutput {
356
- agreementId?: string;
357
- acceptor?: Acceptor;
358
- proposer?: Proposer;
359
- startTime?: Date;
360
- endTime?: Date;
361
- acceptanceTime?: Date;
362
- agreementType?: string;
363
- estimatedCharges?: EstimatedCharges;
364
- proposalSummary?: ProposalSummary;
365
- status?: AgreementStatus;
356
+ agreementId?: string | undefined;
357
+ acceptor?: Acceptor | undefined;
358
+ proposer?: Proposer | undefined;
359
+ startTime?: Date | undefined;
360
+ endTime?: Date | undefined;
361
+ acceptanceTime?: Date | undefined;
362
+ agreementType?: string | undefined;
363
+ estimatedCharges?: EstimatedCharges | undefined;
364
+ proposalSummary?: ProposalSummary | undefined;
365
+ status?: AgreementStatus | undefined;
366
366
  }
367
367
  export declare class InternalServerException extends __BaseException {
368
368
  readonly name: "InternalServerException";
369
369
  readonly $fault: "server";
370
- requestId?: string;
370
+ requestId?: string | undefined;
371
371
  constructor(
372
372
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
373
373
  );
@@ -379,9 +379,9 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
379
379
  export declare class ResourceNotFoundException extends __BaseException {
380
380
  readonly name: "ResourceNotFoundException";
381
381
  readonly $fault: "client";
382
- requestId?: string;
383
- resourceId?: string;
384
- resourceType?: ResourceType;
382
+ requestId?: string | undefined;
383
+ resourceId?: string | undefined;
384
+ resourceType?: ResourceType | undefined;
385
385
  constructor(
386
386
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
387
387
  );
@@ -389,7 +389,7 @@ export declare class ResourceNotFoundException extends __BaseException {
389
389
  export declare class ThrottlingException extends __BaseException {
390
390
  readonly name: "ThrottlingException";
391
391
  readonly $fault: "client";
392
- requestId?: string;
392
+ requestId?: string | undefined;
393
393
  constructor(
394
394
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
395
395
  );
@@ -416,25 +416,25 @@ export type ValidationExceptionReason =
416
416
  export declare class ValidationException extends __BaseException {
417
417
  readonly name: "ValidationException";
418
418
  readonly $fault: "client";
419
- requestId?: string;
420
- reason?: ValidationExceptionReason;
421
- fields?: ValidationExceptionField[];
419
+ requestId?: string | undefined;
420
+ reason?: ValidationExceptionReason | undefined;
421
+ fields?: ValidationExceptionField[] | undefined;
422
422
  constructor(
423
423
  opts: __ExceptionOptionType<ValidationException, __BaseException>
424
424
  );
425
425
  }
426
426
  export interface GetAgreementTermsInput {
427
427
  agreementId: string | undefined;
428
- maxResults?: number;
429
- nextToken?: string;
428
+ maxResults?: number | undefined;
429
+ nextToken?: string | undefined;
430
430
  }
431
431
  export interface GetAgreementTermsOutput {
432
- acceptedTerms?: AcceptedTerm[];
433
- nextToken?: string;
432
+ acceptedTerms?: AcceptedTerm[] | undefined;
433
+ nextToken?: string | undefined;
434
434
  }
435
435
  export interface Filter {
436
- name?: string;
437
- values?: string[];
436
+ name?: string | undefined;
437
+ values?: string[] | undefined;
438
438
  }
439
439
  export declare const SortOrder: {
440
440
  readonly ASCENDING: "ASCENDING";
@@ -442,17 +442,17 @@ export declare const SortOrder: {
442
442
  };
443
443
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
444
444
  export interface Sort {
445
- sortBy?: string;
446
- sortOrder?: SortOrder;
445
+ sortBy?: string | undefined;
446
+ sortOrder?: SortOrder | undefined;
447
447
  }
448
448
  export interface SearchAgreementsInput {
449
- catalog?: string;
450
- filters?: Filter[];
451
- sort?: Sort;
452
- maxResults?: number;
453
- nextToken?: string;
449
+ catalog?: string | undefined;
450
+ filters?: Filter[] | undefined;
451
+ sort?: Sort | undefined;
452
+ maxResults?: number | undefined;
453
+ nextToken?: string | undefined;
454
454
  }
455
455
  export interface SearchAgreementsOutput {
456
- agreementViewSummaries?: AgreementViewSummary[];
457
- nextToken?: string;
456
+ agreementViewSummaries?: AgreementViewSummary[] | undefined;
457
+ nextToken?: string | undefined;
458
458
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-marketplace-agreement",
3
3
  "description": "AWS SDK for JavaScript Marketplace Agreement Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-marketplace-agreement",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",