@aws-sdk/client-marketplace-catalog 3.934.0 → 3.936.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.
@@ -0,0 +1,162 @@
1
+ export declare const AmiProductVisibilityString: {
2
+ readonly Draft: "Draft";
3
+ readonly Limited: "Limited";
4
+ readonly Public: "Public";
5
+ readonly Restricted: "Restricted";
6
+ };
7
+ export type AmiProductVisibilityString =
8
+ (typeof AmiProductVisibilityString)[keyof typeof AmiProductVisibilityString];
9
+ export declare const AmiProductSortBy: {
10
+ readonly EntityId: "EntityId";
11
+ readonly LastModifiedDate: "LastModifiedDate";
12
+ readonly ProductTitle: "ProductTitle";
13
+ readonly Visibility: "Visibility";
14
+ };
15
+ export type AmiProductSortBy =
16
+ (typeof AmiProductSortBy)[keyof typeof AmiProductSortBy];
17
+ export declare const SortOrder: {
18
+ readonly ASCENDING: "ASCENDING";
19
+ readonly DESCENDING: "DESCENDING";
20
+ };
21
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
22
+ export declare const FailureCode: {
23
+ readonly ClientError: "CLIENT_ERROR";
24
+ readonly ServerFault: "SERVER_FAULT";
25
+ };
26
+ export type FailureCode = (typeof FailureCode)[keyof typeof FailureCode];
27
+ export declare const Intent: {
28
+ readonly APPLY: "APPLY";
29
+ readonly VALIDATE: "VALIDATE";
30
+ };
31
+ export type Intent = (typeof Intent)[keyof typeof Intent];
32
+ export declare const ChangeStatus: {
33
+ readonly APPLYING: "APPLYING";
34
+ readonly CANCELLED: "CANCELLED";
35
+ readonly FAILED: "FAILED";
36
+ readonly PREPARING: "PREPARING";
37
+ readonly SUCCEEDED: "SUCCEEDED";
38
+ };
39
+ export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
40
+ export declare const ContainerProductVisibilityString: {
41
+ readonly Draft: "Draft";
42
+ readonly Limited: "Limited";
43
+ readonly Public: "Public";
44
+ readonly Restricted: "Restricted";
45
+ };
46
+ export type ContainerProductVisibilityString =
47
+ (typeof ContainerProductVisibilityString)[keyof typeof ContainerProductVisibilityString];
48
+ export declare const DataProductVisibilityString: {
49
+ readonly Draft: "Draft";
50
+ readonly Limited: "Limited";
51
+ readonly Public: "Public";
52
+ readonly Restricted: "Restricted";
53
+ readonly Unavailable: "Unavailable";
54
+ };
55
+ export type DataProductVisibilityString =
56
+ (typeof DataProductVisibilityString)[keyof typeof DataProductVisibilityString];
57
+ export declare const MachineLearningProductVisibilityString: {
58
+ readonly Draft: "Draft";
59
+ readonly Limited: "Limited";
60
+ readonly Public: "Public";
61
+ readonly Restricted: "Restricted";
62
+ };
63
+ export type MachineLearningProductVisibilityString =
64
+ (typeof MachineLearningProductVisibilityString)[keyof typeof MachineLearningProductVisibilityString];
65
+ export declare const OfferStateString: {
66
+ readonly Draft: "Draft";
67
+ readonly Released: "Released";
68
+ };
69
+ export type OfferStateString =
70
+ (typeof OfferStateString)[keyof typeof OfferStateString];
71
+ export declare const OfferTargetingString: {
72
+ readonly BuyerAccounts: "BuyerAccounts";
73
+ readonly CountryCodes: "CountryCodes";
74
+ readonly None: "None";
75
+ readonly ParticipatingPrograms: "ParticipatingPrograms";
76
+ };
77
+ export type OfferTargetingString =
78
+ (typeof OfferTargetingString)[keyof typeof OfferTargetingString];
79
+ export declare const ResaleAuthorizationStatusString: {
80
+ readonly Active: "Active";
81
+ readonly Draft: "Draft";
82
+ readonly Restricted: "Restricted";
83
+ };
84
+ export type ResaleAuthorizationStatusString =
85
+ (typeof ResaleAuthorizationStatusString)[keyof typeof ResaleAuthorizationStatusString];
86
+ export declare const SaaSProductVisibilityString: {
87
+ readonly Draft: "Draft";
88
+ readonly Limited: "Limited";
89
+ readonly Public: "Public";
90
+ readonly Restricted: "Restricted";
91
+ };
92
+ export type SaaSProductVisibilityString =
93
+ (typeof SaaSProductVisibilityString)[keyof typeof SaaSProductVisibilityString];
94
+ export declare const ContainerProductSortBy: {
95
+ readonly CompatibleAWSServices: "CompatibleAWSServices";
96
+ readonly EntityId: "EntityId";
97
+ readonly LastModifiedDate: "LastModifiedDate";
98
+ readonly ProductTitle: "ProductTitle";
99
+ readonly Visibility: "Visibility";
100
+ };
101
+ export type ContainerProductSortBy =
102
+ (typeof ContainerProductSortBy)[keyof typeof ContainerProductSortBy];
103
+ export declare const DataProductSortBy: {
104
+ readonly EntityId: "EntityId";
105
+ readonly LastModifiedDate: "LastModifiedDate";
106
+ readonly ProductTitle: "ProductTitle";
107
+ readonly Visibility: "Visibility";
108
+ };
109
+ export type DataProductSortBy =
110
+ (typeof DataProductSortBy)[keyof typeof DataProductSortBy];
111
+ export declare const MachineLearningProductSortBy: {
112
+ readonly EntityId: "EntityId";
113
+ readonly LastModifiedDate: "LastModifiedDate";
114
+ readonly ProductTitle: "ProductTitle";
115
+ readonly Visibility: "Visibility";
116
+ };
117
+ export type MachineLearningProductSortBy =
118
+ (typeof MachineLearningProductSortBy)[keyof typeof MachineLearningProductSortBy];
119
+ export declare const OfferSortBy: {
120
+ readonly AvailabilityEndDate: "AvailabilityEndDate";
121
+ readonly BuyerAccounts: "BuyerAccounts";
122
+ readonly EntityId: "EntityId";
123
+ readonly LastModifiedDate: "LastModifiedDate";
124
+ readonly Name: "Name";
125
+ readonly ProductId: "ProductId";
126
+ readonly ReleaseDate: "ReleaseDate";
127
+ readonly ResaleAuthorizationId: "ResaleAuthorizationId";
128
+ readonly State: "State";
129
+ readonly Targeting: "Targeting";
130
+ };
131
+ export type OfferSortBy = (typeof OfferSortBy)[keyof typeof OfferSortBy];
132
+ export declare const ResaleAuthorizationSortBy: {
133
+ readonly AvailabilityEndDate: "AvailabilityEndDate";
134
+ readonly CreatedDate: "CreatedDate";
135
+ readonly EntityId: "EntityId";
136
+ readonly LastModifiedDate: "LastModifiedDate";
137
+ readonly ManufacturerAccountId: "ManufacturerAccountId";
138
+ readonly ManufacturerLegalName: "ManufacturerLegalName";
139
+ readonly Name: "Name";
140
+ readonly OfferExtendedStatus: "OfferExtendedStatus";
141
+ readonly ProductId: "ProductId";
142
+ readonly ProductName: "ProductName";
143
+ readonly ResellerAccountID: "ResellerAccountID";
144
+ readonly ResellerLegalName: "ResellerLegalName";
145
+ readonly Status: "Status";
146
+ };
147
+ export type ResaleAuthorizationSortBy =
148
+ (typeof ResaleAuthorizationSortBy)[keyof typeof ResaleAuthorizationSortBy];
149
+ export declare const SaaSProductSortBy: {
150
+ readonly DeliveryOptionTypes: "DeliveryOptionTypes";
151
+ readonly EntityId: "EntityId";
152
+ readonly LastModifiedDate: "LastModifiedDate";
153
+ readonly ProductTitle: "ProductTitle";
154
+ readonly Visibility: "Visibility";
155
+ };
156
+ export type SaaSProductSortBy =
157
+ (typeof SaaSProductSortBy)[keyof typeof SaaSProductSortBy];
158
+ export declare const OwnershipType: {
159
+ readonly SELF: "SELF";
160
+ readonly SHARED: "SHARED";
161
+ };
162
+ export type OwnershipType = (typeof OwnershipType)[keyof typeof OwnershipType];
@@ -0,0 +1,66 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { MarketplaceCatalogServiceException as __BaseException } from "./MarketplaceCatalogServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare class InternalServiceException extends __BaseException {
12
+ readonly name: "InternalServiceException";
13
+ readonly $fault: "server";
14
+ Message?: string | undefined;
15
+ constructor(
16
+ opts: __ExceptionOptionType<InternalServiceException, __BaseException>
17
+ );
18
+ }
19
+ export declare class ThrottlingException extends __BaseException {
20
+ readonly name: "ThrottlingException";
21
+ readonly $fault: "client";
22
+ Message?: string | undefined;
23
+ constructor(
24
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
25
+ );
26
+ }
27
+ export declare class ValidationException extends __BaseException {
28
+ readonly name: "ValidationException";
29
+ readonly $fault: "client";
30
+ Message?: string | undefined;
31
+ constructor(
32
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
33
+ );
34
+ }
35
+ export declare class ResourceInUseException extends __BaseException {
36
+ readonly name: "ResourceInUseException";
37
+ readonly $fault: "client";
38
+ Message?: string | undefined;
39
+ constructor(
40
+ opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
41
+ );
42
+ }
43
+ export declare class ResourceNotFoundException extends __BaseException {
44
+ readonly name: "ResourceNotFoundException";
45
+ readonly $fault: "client";
46
+ Message?: string | undefined;
47
+ constructor(
48
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
49
+ );
50
+ }
51
+ export declare class ResourceNotSupportedException extends __BaseException {
52
+ readonly name: "ResourceNotSupportedException";
53
+ readonly $fault: "client";
54
+ Message?: string | undefined;
55
+ constructor(
56
+ opts: __ExceptionOptionType<ResourceNotSupportedException, __BaseException>
57
+ );
58
+ }
59
+ export declare class ServiceQuotaExceededException extends __BaseException {
60
+ readonly name: "ServiceQuotaExceededException";
61
+ readonly $fault: "client";
62
+ Message?: string | undefined;
63
+ constructor(
64
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
65
+ );
66
+ }
@@ -1,14 +1,26 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
1
  import { DocumentType as __DocumentType } from "@smithy/types";
3
- import { MarketplaceCatalogServiceException as __BaseException } from "./MarketplaceCatalogServiceException";
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message?: string | undefined;
8
- constructor(
9
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
- );
11
- }
2
+ import {
3
+ AmiProductSortBy,
4
+ AmiProductVisibilityString,
5
+ ChangeStatus,
6
+ ContainerProductSortBy,
7
+ ContainerProductVisibilityString,
8
+ DataProductSortBy,
9
+ DataProductVisibilityString,
10
+ FailureCode,
11
+ Intent,
12
+ MachineLearningProductSortBy,
13
+ MachineLearningProductVisibilityString,
14
+ OfferSortBy,
15
+ OfferStateString,
16
+ OfferTargetingString,
17
+ OwnershipType,
18
+ ResaleAuthorizationSortBy,
19
+ ResaleAuthorizationStatusString,
20
+ SaaSProductSortBy,
21
+ SaaSProductVisibilityString,
22
+ SortOrder,
23
+ } from "./enums";
12
24
  export interface AmiProductEntityIdFilter {
13
25
  ValueList?: string[] | undefined;
14
26
  }
@@ -23,14 +35,6 @@ export interface AmiProductTitleFilter {
23
35
  ValueList?: string[] | undefined;
24
36
  WildCardValue?: string | undefined;
25
37
  }
26
- export declare const AmiProductVisibilityString: {
27
- readonly Draft: "Draft";
28
- readonly Limited: "Limited";
29
- readonly Public: "Public";
30
- readonly Restricted: "Restricted";
31
- };
32
- export type AmiProductVisibilityString =
33
- (typeof AmiProductVisibilityString)[keyof typeof AmiProductVisibilityString];
34
38
  export interface AmiProductVisibilityFilter {
35
39
  ValueList?: AmiProductVisibilityString[] | undefined;
36
40
  }
@@ -40,19 +44,6 @@ export interface AmiProductFilters {
40
44
  ProductTitle?: AmiProductTitleFilter | undefined;
41
45
  Visibility?: AmiProductVisibilityFilter | undefined;
42
46
  }
43
- export declare const AmiProductSortBy: {
44
- readonly EntityId: "EntityId";
45
- readonly LastModifiedDate: "LastModifiedDate";
46
- readonly ProductTitle: "ProductTitle";
47
- readonly Visibility: "Visibility";
48
- };
49
- export type AmiProductSortBy =
50
- (typeof AmiProductSortBy)[keyof typeof AmiProductSortBy];
51
- export declare const SortOrder: {
52
- readonly ASCENDING: "ASCENDING";
53
- readonly DESCENDING: "DESCENDING";
54
- };
55
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
56
47
  export interface AmiProductSort {
57
48
  SortBy?: AmiProductSortBy | undefined;
58
49
  SortOrder?: SortOrder | undefined;
@@ -83,30 +74,6 @@ export interface BatchDescribeEntitiesResponse {
83
74
  EntityDetails?: Record<string, EntityDetail> | undefined;
84
75
  Errors?: Record<string, BatchDescribeErrorDetail> | undefined;
85
76
  }
86
- export declare class InternalServiceException extends __BaseException {
87
- readonly name: "InternalServiceException";
88
- readonly $fault: "server";
89
- Message?: string | undefined;
90
- constructor(
91
- opts: __ExceptionOptionType<InternalServiceException, __BaseException>
92
- );
93
- }
94
- export declare class ThrottlingException extends __BaseException {
95
- readonly name: "ThrottlingException";
96
- readonly $fault: "client";
97
- Message?: string | undefined;
98
- constructor(
99
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
100
- );
101
- }
102
- export declare class ValidationException extends __BaseException {
103
- readonly name: "ValidationException";
104
- readonly $fault: "client";
105
- Message?: string | undefined;
106
- constructor(
107
- opts: __ExceptionOptionType<ValidationException, __BaseException>
108
- );
109
- }
110
77
  export interface CancelChangeSetRequest {
111
78
  Catalog: string | undefined;
112
79
  ChangeSetId: string | undefined;
@@ -115,22 +82,6 @@ export interface CancelChangeSetResponse {
115
82
  ChangeSetId?: string | undefined;
116
83
  ChangeSetArn?: string | undefined;
117
84
  }
118
- export declare class ResourceInUseException extends __BaseException {
119
- readonly name: "ResourceInUseException";
120
- readonly $fault: "client";
121
- Message?: string | undefined;
122
- constructor(
123
- opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
124
- );
125
- }
126
- export declare class ResourceNotFoundException extends __BaseException {
127
- readonly name: "ResourceNotFoundException";
128
- readonly $fault: "client";
129
- Message?: string | undefined;
130
- constructor(
131
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
132
- );
133
- }
134
85
  export interface DeleteResourcePolicyRequest {
135
86
  ResourceArn: string | undefined;
136
87
  }
@@ -155,24 +106,6 @@ export interface ChangeSummary {
155
106
  ErrorDetailList?: ErrorDetail[] | undefined;
156
107
  ChangeName?: string | undefined;
157
108
  }
158
- export declare const FailureCode: {
159
- readonly ClientError: "CLIENT_ERROR";
160
- readonly ServerFault: "SERVER_FAULT";
161
- };
162
- export type FailureCode = (typeof FailureCode)[keyof typeof FailureCode];
163
- export declare const Intent: {
164
- readonly APPLY: "APPLY";
165
- readonly VALIDATE: "VALIDATE";
166
- };
167
- export type Intent = (typeof Intent)[keyof typeof Intent];
168
- export declare const ChangeStatus: {
169
- readonly APPLYING: "APPLYING";
170
- readonly CANCELLED: "CANCELLED";
171
- readonly FAILED: "FAILED";
172
- readonly PREPARING: "PREPARING";
173
- readonly SUCCEEDED: "SUCCEEDED";
174
- };
175
- export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
176
109
  export interface DescribeChangeSetResponse {
177
110
  ChangeSetId?: string | undefined;
178
111
  ChangeSetArn?: string | undefined;
@@ -197,14 +130,6 @@ export interface DescribeEntityResponse {
197
130
  Details?: string | undefined;
198
131
  DetailsDocument?: __DocumentType | undefined;
199
132
  }
200
- export declare class ResourceNotSupportedException extends __BaseException {
201
- readonly name: "ResourceNotSupportedException";
202
- readonly $fault: "client";
203
- Message?: string | undefined;
204
- constructor(
205
- opts: __ExceptionOptionType<ResourceNotSupportedException, __BaseException>
206
- );
207
- }
208
133
  export interface GetResourcePolicyRequest {
209
134
  ResourceArn: string | undefined;
210
135
  }
@@ -254,14 +179,6 @@ export interface ContainerProductTitleFilter {
254
179
  ValueList?: string[] | undefined;
255
180
  WildCardValue?: string | undefined;
256
181
  }
257
- export declare const ContainerProductVisibilityString: {
258
- readonly Draft: "Draft";
259
- readonly Limited: "Limited";
260
- readonly Public: "Public";
261
- readonly Restricted: "Restricted";
262
- };
263
- export type ContainerProductVisibilityString =
264
- (typeof ContainerProductVisibilityString)[keyof typeof ContainerProductVisibilityString];
265
182
  export interface ContainerProductVisibilityFilter {
266
183
  ValueList?: ContainerProductVisibilityString[] | undefined;
267
184
  }
@@ -285,15 +202,6 @@ export interface DataProductTitleFilter {
285
202
  ValueList?: string[] | undefined;
286
203
  WildCardValue?: string | undefined;
287
204
  }
288
- export declare const DataProductVisibilityString: {
289
- readonly Draft: "Draft";
290
- readonly Limited: "Limited";
291
- readonly Public: "Public";
292
- readonly Restricted: "Restricted";
293
- readonly Unavailable: "Unavailable";
294
- };
295
- export type DataProductVisibilityString =
296
- (typeof DataProductVisibilityString)[keyof typeof DataProductVisibilityString];
297
205
  export interface DataProductVisibilityFilter {
298
206
  ValueList?: DataProductVisibilityString[] | undefined;
299
207
  }
@@ -317,14 +225,6 @@ export interface MachineLearningProductTitleFilter {
317
225
  ValueList?: string[] | undefined;
318
226
  WildCardValue?: string | undefined;
319
227
  }
320
- export declare const MachineLearningProductVisibilityString: {
321
- readonly Draft: "Draft";
322
- readonly Limited: "Limited";
323
- readonly Public: "Public";
324
- readonly Restricted: "Restricted";
325
- };
326
- export type MachineLearningProductVisibilityString =
327
- (typeof MachineLearningProductVisibilityString)[keyof typeof MachineLearningProductVisibilityString];
328
228
  export interface MachineLearningProductVisibilityFilter {
329
229
  ValueList?: MachineLearningProductVisibilityString[] | undefined;
330
230
  }
@@ -371,23 +271,9 @@ export interface OfferReleaseDateFilter {
371
271
  export interface OfferResaleAuthorizationIdFilter {
372
272
  ValueList?: string[] | undefined;
373
273
  }
374
- export declare const OfferStateString: {
375
- readonly Draft: "Draft";
376
- readonly Released: "Released";
377
- };
378
- export type OfferStateString =
379
- (typeof OfferStateString)[keyof typeof OfferStateString];
380
274
  export interface OfferStateFilter {
381
275
  ValueList?: OfferStateString[] | undefined;
382
276
  }
383
- export declare const OfferTargetingString: {
384
- readonly BuyerAccounts: "BuyerAccounts";
385
- readonly CountryCodes: "CountryCodes";
386
- readonly None: "None";
387
- readonly ParticipatingPrograms: "ParticipatingPrograms";
388
- };
389
- export type OfferTargetingString =
390
- (typeof OfferTargetingString)[keyof typeof OfferTargetingString];
391
277
  export interface OfferTargetingFilter {
392
278
  ValueList?: OfferTargetingString[] | undefined;
393
279
  }
@@ -460,13 +346,6 @@ export interface ResaleAuthorizationResellerLegalNameFilter {
460
346
  ValueList?: string[] | undefined;
461
347
  WildCardValue?: string | undefined;
462
348
  }
463
- export declare const ResaleAuthorizationStatusString: {
464
- readonly Active: "Active";
465
- readonly Draft: "Draft";
466
- readonly Restricted: "Restricted";
467
- };
468
- export type ResaleAuthorizationStatusString =
469
- (typeof ResaleAuthorizationStatusString)[keyof typeof ResaleAuthorizationStatusString];
470
349
  export interface ResaleAuthorizationStatusFilter {
471
350
  ValueList?: ResaleAuthorizationStatusString[] | undefined;
472
351
  }
@@ -507,14 +386,6 @@ export interface SaaSProductTitleFilter {
507
386
  ValueList?: string[] | undefined;
508
387
  WildCardValue?: string | undefined;
509
388
  }
510
- export declare const SaaSProductVisibilityString: {
511
- readonly Draft: "Draft";
512
- readonly Limited: "Limited";
513
- readonly Public: "Public";
514
- readonly Restricted: "Restricted";
515
- };
516
- export type SaaSProductVisibilityString =
517
- (typeof SaaSProductVisibilityString)[keyof typeof SaaSProductVisibilityString];
518
389
  export interface SaaSProductVisibilityFilter {
519
390
  ValueList?: SaaSProductVisibilityString[] | undefined;
520
391
  }
@@ -625,90 +496,26 @@ export declare namespace EntityTypeFilters {
625
496
  _: (name: string, value: any) => T;
626
497
  }
627
498
  }
628
- export declare const ContainerProductSortBy: {
629
- readonly CompatibleAWSServices: "CompatibleAWSServices";
630
- readonly EntityId: "EntityId";
631
- readonly LastModifiedDate: "LastModifiedDate";
632
- readonly ProductTitle: "ProductTitle";
633
- readonly Visibility: "Visibility";
634
- };
635
- export type ContainerProductSortBy =
636
- (typeof ContainerProductSortBy)[keyof typeof ContainerProductSortBy];
637
499
  export interface ContainerProductSort {
638
500
  SortBy?: ContainerProductSortBy | undefined;
639
501
  SortOrder?: SortOrder | undefined;
640
502
  }
641
- export declare const DataProductSortBy: {
642
- readonly EntityId: "EntityId";
643
- readonly LastModifiedDate: "LastModifiedDate";
644
- readonly ProductTitle: "ProductTitle";
645
- readonly Visibility: "Visibility";
646
- };
647
- export type DataProductSortBy =
648
- (typeof DataProductSortBy)[keyof typeof DataProductSortBy];
649
503
  export interface DataProductSort {
650
504
  SortBy?: DataProductSortBy | undefined;
651
505
  SortOrder?: SortOrder | undefined;
652
506
  }
653
- export declare const MachineLearningProductSortBy: {
654
- readonly EntityId: "EntityId";
655
- readonly LastModifiedDate: "LastModifiedDate";
656
- readonly ProductTitle: "ProductTitle";
657
- readonly Visibility: "Visibility";
658
- };
659
- export type MachineLearningProductSortBy =
660
- (typeof MachineLearningProductSortBy)[keyof typeof MachineLearningProductSortBy];
661
507
  export interface MachineLearningProductSort {
662
508
  SortBy?: MachineLearningProductSortBy | undefined;
663
509
  SortOrder?: SortOrder | undefined;
664
510
  }
665
- export declare const OfferSortBy: {
666
- readonly AvailabilityEndDate: "AvailabilityEndDate";
667
- readonly BuyerAccounts: "BuyerAccounts";
668
- readonly EntityId: "EntityId";
669
- readonly LastModifiedDate: "LastModifiedDate";
670
- readonly Name: "Name";
671
- readonly ProductId: "ProductId";
672
- readonly ReleaseDate: "ReleaseDate";
673
- readonly ResaleAuthorizationId: "ResaleAuthorizationId";
674
- readonly State: "State";
675
- readonly Targeting: "Targeting";
676
- };
677
- export type OfferSortBy = (typeof OfferSortBy)[keyof typeof OfferSortBy];
678
511
  export interface OfferSort {
679
512
  SortBy?: OfferSortBy | undefined;
680
513
  SortOrder?: SortOrder | undefined;
681
514
  }
682
- export declare const ResaleAuthorizationSortBy: {
683
- readonly AvailabilityEndDate: "AvailabilityEndDate";
684
- readonly CreatedDate: "CreatedDate";
685
- readonly EntityId: "EntityId";
686
- readonly LastModifiedDate: "LastModifiedDate";
687
- readonly ManufacturerAccountId: "ManufacturerAccountId";
688
- readonly ManufacturerLegalName: "ManufacturerLegalName";
689
- readonly Name: "Name";
690
- readonly OfferExtendedStatus: "OfferExtendedStatus";
691
- readonly ProductId: "ProductId";
692
- readonly ProductName: "ProductName";
693
- readonly ResellerAccountID: "ResellerAccountID";
694
- readonly ResellerLegalName: "ResellerLegalName";
695
- readonly Status: "Status";
696
- };
697
- export type ResaleAuthorizationSortBy =
698
- (typeof ResaleAuthorizationSortBy)[keyof typeof ResaleAuthorizationSortBy];
699
515
  export interface ResaleAuthorizationSort {
700
516
  SortBy?: ResaleAuthorizationSortBy | undefined;
701
517
  SortOrder?: SortOrder | undefined;
702
518
  }
703
- export declare const SaaSProductSortBy: {
704
- readonly DeliveryOptionTypes: "DeliveryOptionTypes";
705
- readonly EntityId: "EntityId";
706
- readonly LastModifiedDate: "LastModifiedDate";
707
- readonly ProductTitle: "ProductTitle";
708
- readonly Visibility: "Visibility";
709
- };
710
- export type SaaSProductSortBy =
711
- (typeof SaaSProductSortBy)[keyof typeof SaaSProductSortBy];
712
519
  export interface SaaSProductSort {
713
520
  SortBy?: SaaSProductSortBy | undefined;
714
521
  SortOrder?: SortOrder | undefined;
@@ -814,11 +621,6 @@ export declare namespace EntityTypeSort {
814
621
  _: (name: string, value: any) => T;
815
622
  }
816
623
  }
817
- export declare const OwnershipType: {
818
- readonly SELF: "SELF";
819
- readonly SHARED: "SHARED";
820
- };
821
- export type OwnershipType = (typeof OwnershipType)[keyof typeof OwnershipType];
822
624
  export interface ListEntitiesRequest {
823
625
  Catalog: string | undefined;
824
626
  EntityType: string | undefined;
@@ -904,14 +706,6 @@ export interface PutResourcePolicyRequest {
904
706
  Policy: string | undefined;
905
707
  }
906
708
  export interface PutResourcePolicyResponse {}
907
- export declare class ServiceQuotaExceededException extends __BaseException {
908
- readonly name: "ServiceQuotaExceededException";
909
- readonly $fault: "client";
910
- Message?: string | undefined;
911
- constructor(
912
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
913
- );
914
- }
915
709
  export interface Change {
916
710
  ChangeType: string | undefined;
917
711
  Entity: Entity | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-marketplace-catalog",
3
3
  "description": "AWS SDK for JavaScript Marketplace Catalog Client for Node.js, Browser and React Native",
4
- "version": "3.934.0",
4
+ "version": "3.936.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-catalog",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
25
- "@aws-sdk/middleware-host-header": "3.930.0",
26
- "@aws-sdk/middleware-logger": "3.930.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
29
- "@aws-sdk/region-config-resolver": "3.930.0",
30
- "@aws-sdk/types": "3.930.0",
31
- "@aws-sdk/util-endpoints": "3.930.0",
32
- "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
23
+ "@aws-sdk/core": "3.936.0",
24
+ "@aws-sdk/credential-provider-node": "3.936.0",
25
+ "@aws-sdk/middleware-host-header": "3.936.0",
26
+ "@aws-sdk/middleware-logger": "3.936.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.936.0",
29
+ "@aws-sdk/region-config-resolver": "3.936.0",
30
+ "@aws-sdk/types": "3.936.0",
31
+ "@aws-sdk/util-endpoints": "3.936.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.936.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";