@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.
- package/dist-cjs/index.js +129 -128
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +128 -0
- package/dist-es/models/errors.js +113 -0
- package/dist-es/models/models_0.js +1 -241
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +288 -0
- package/dist-types/models/errors.d.ts +111 -0
- package/dist-types/models/models_0.d.ts +1 -399
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +162 -0
- package/dist-types/ts3.4/models/errors.d.ts +66 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -228
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,20 +1,5 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
/**
|
|
5
|
-
* <p>Access is denied.</p>
|
|
6
|
-
* <p>HTTP status code: 403</p>
|
|
7
|
-
* @public
|
|
8
|
-
*/
|
|
9
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
-
readonly name: "AccessDeniedException";
|
|
11
|
-
readonly $fault: "client";
|
|
12
|
-
Message?: string | undefined;
|
|
13
|
-
/**
|
|
14
|
-
* @internal
|
|
15
|
-
*/
|
|
16
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
17
|
-
}
|
|
2
|
+
import { AmiProductSortBy, AmiProductVisibilityString, ChangeStatus, ContainerProductSortBy, ContainerProductVisibilityString, DataProductSortBy, DataProductVisibilityString, FailureCode, Intent, MachineLearningProductSortBy, MachineLearningProductVisibilityString, OfferSortBy, OfferStateString, OfferTargetingString, OwnershipType, ResaleAuthorizationSortBy, ResaleAuthorizationStatusString, SaaSProductSortBy, SaaSProductVisibilityString, SortOrder } from "./enums";
|
|
18
3
|
/**
|
|
19
4
|
* <p>Object that allows filtering on entity id of an AMI product.</p>
|
|
20
5
|
* @public
|
|
@@ -69,20 +54,6 @@ export interface AmiProductTitleFilter {
|
|
|
69
54
|
*/
|
|
70
55
|
WildCardValue?: string | undefined;
|
|
71
56
|
}
|
|
72
|
-
/**
|
|
73
|
-
* @public
|
|
74
|
-
* @enum
|
|
75
|
-
*/
|
|
76
|
-
export declare const AmiProductVisibilityString: {
|
|
77
|
-
readonly Draft: "Draft";
|
|
78
|
-
readonly Limited: "Limited";
|
|
79
|
-
readonly Public: "Public";
|
|
80
|
-
readonly Restricted: "Restricted";
|
|
81
|
-
};
|
|
82
|
-
/**
|
|
83
|
-
* @public
|
|
84
|
-
*/
|
|
85
|
-
export type AmiProductVisibilityString = (typeof AmiProductVisibilityString)[keyof typeof AmiProductVisibilityString];
|
|
86
57
|
/**
|
|
87
58
|
* <p>Object that allows filtering on the visibility of the product in the AWS Marketplace.</p>
|
|
88
59
|
* @public
|
|
@@ -121,32 +92,6 @@ export interface AmiProductFilters {
|
|
|
121
92
|
*/
|
|
122
93
|
Visibility?: AmiProductVisibilityFilter | undefined;
|
|
123
94
|
}
|
|
124
|
-
/**
|
|
125
|
-
* @public
|
|
126
|
-
* @enum
|
|
127
|
-
*/
|
|
128
|
-
export declare const AmiProductSortBy: {
|
|
129
|
-
readonly EntityId: "EntityId";
|
|
130
|
-
readonly LastModifiedDate: "LastModifiedDate";
|
|
131
|
-
readonly ProductTitle: "ProductTitle";
|
|
132
|
-
readonly Visibility: "Visibility";
|
|
133
|
-
};
|
|
134
|
-
/**
|
|
135
|
-
* @public
|
|
136
|
-
*/
|
|
137
|
-
export type AmiProductSortBy = (typeof AmiProductSortBy)[keyof typeof AmiProductSortBy];
|
|
138
|
-
/**
|
|
139
|
-
* @public
|
|
140
|
-
* @enum
|
|
141
|
-
*/
|
|
142
|
-
export declare const SortOrder: {
|
|
143
|
-
readonly ASCENDING: "ASCENDING";
|
|
144
|
-
readonly DESCENDING: "DESCENDING";
|
|
145
|
-
};
|
|
146
|
-
/**
|
|
147
|
-
* @public
|
|
148
|
-
*/
|
|
149
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
150
95
|
/**
|
|
151
96
|
* <p>Objects that allows sorting on AMI products based on certain fields and sorting order.</p>
|
|
152
97
|
* @public
|
|
@@ -270,48 +215,6 @@ export interface BatchDescribeEntitiesResponse {
|
|
|
270
215
|
*/
|
|
271
216
|
Errors?: Record<string, BatchDescribeErrorDetail> | undefined;
|
|
272
217
|
}
|
|
273
|
-
/**
|
|
274
|
-
* <p>There was an internal service exception.</p>
|
|
275
|
-
* <p>HTTP status code: 500</p>
|
|
276
|
-
* @public
|
|
277
|
-
*/
|
|
278
|
-
export declare class InternalServiceException extends __BaseException {
|
|
279
|
-
readonly name: "InternalServiceException";
|
|
280
|
-
readonly $fault: "server";
|
|
281
|
-
Message?: string | undefined;
|
|
282
|
-
/**
|
|
283
|
-
* @internal
|
|
284
|
-
*/
|
|
285
|
-
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
286
|
-
}
|
|
287
|
-
/**
|
|
288
|
-
* <p>Too many requests.</p>
|
|
289
|
-
* <p>HTTP status code: 429</p>
|
|
290
|
-
* @public
|
|
291
|
-
*/
|
|
292
|
-
export declare class ThrottlingException extends __BaseException {
|
|
293
|
-
readonly name: "ThrottlingException";
|
|
294
|
-
readonly $fault: "client";
|
|
295
|
-
Message?: string | undefined;
|
|
296
|
-
/**
|
|
297
|
-
* @internal
|
|
298
|
-
*/
|
|
299
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
300
|
-
}
|
|
301
|
-
/**
|
|
302
|
-
* <p>An error occurred during validation.</p>
|
|
303
|
-
* <p>HTTP status code: 422</p>
|
|
304
|
-
* @public
|
|
305
|
-
*/
|
|
306
|
-
export declare class ValidationException extends __BaseException {
|
|
307
|
-
readonly name: "ValidationException";
|
|
308
|
-
readonly $fault: "client";
|
|
309
|
-
Message?: string | undefined;
|
|
310
|
-
/**
|
|
311
|
-
* @internal
|
|
312
|
-
*/
|
|
313
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
314
|
-
}
|
|
315
218
|
/**
|
|
316
219
|
* @public
|
|
317
220
|
*/
|
|
@@ -344,33 +247,6 @@ export interface CancelChangeSetResponse {
|
|
|
344
247
|
*/
|
|
345
248
|
ChangeSetArn?: string | undefined;
|
|
346
249
|
}
|
|
347
|
-
/**
|
|
348
|
-
* <p>The resource is currently in use.</p>
|
|
349
|
-
* @public
|
|
350
|
-
*/
|
|
351
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
352
|
-
readonly name: "ResourceInUseException";
|
|
353
|
-
readonly $fault: "client";
|
|
354
|
-
Message?: string | undefined;
|
|
355
|
-
/**
|
|
356
|
-
* @internal
|
|
357
|
-
*/
|
|
358
|
-
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
359
|
-
}
|
|
360
|
-
/**
|
|
361
|
-
* <p>The specified resource wasn't found.</p>
|
|
362
|
-
* <p>HTTP status code: 404</p>
|
|
363
|
-
* @public
|
|
364
|
-
*/
|
|
365
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
366
|
-
readonly name: "ResourceNotFoundException";
|
|
367
|
-
readonly $fault: "client";
|
|
368
|
-
Message?: string | undefined;
|
|
369
|
-
/**
|
|
370
|
-
* @internal
|
|
371
|
-
*/
|
|
372
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
373
|
-
}
|
|
374
250
|
/**
|
|
375
251
|
* @public
|
|
376
252
|
*/
|
|
@@ -478,45 +354,6 @@ export interface ChangeSummary {
|
|
|
478
354
|
*/
|
|
479
355
|
ChangeName?: string | undefined;
|
|
480
356
|
}
|
|
481
|
-
/**
|
|
482
|
-
* @public
|
|
483
|
-
* @enum
|
|
484
|
-
*/
|
|
485
|
-
export declare const FailureCode: {
|
|
486
|
-
readonly ClientError: "CLIENT_ERROR";
|
|
487
|
-
readonly ServerFault: "SERVER_FAULT";
|
|
488
|
-
};
|
|
489
|
-
/**
|
|
490
|
-
* @public
|
|
491
|
-
*/
|
|
492
|
-
export type FailureCode = (typeof FailureCode)[keyof typeof FailureCode];
|
|
493
|
-
/**
|
|
494
|
-
* @public
|
|
495
|
-
* @enum
|
|
496
|
-
*/
|
|
497
|
-
export declare const Intent: {
|
|
498
|
-
readonly APPLY: "APPLY";
|
|
499
|
-
readonly VALIDATE: "VALIDATE";
|
|
500
|
-
};
|
|
501
|
-
/**
|
|
502
|
-
* @public
|
|
503
|
-
*/
|
|
504
|
-
export type Intent = (typeof Intent)[keyof typeof Intent];
|
|
505
|
-
/**
|
|
506
|
-
* @public
|
|
507
|
-
* @enum
|
|
508
|
-
*/
|
|
509
|
-
export declare const ChangeStatus: {
|
|
510
|
-
readonly APPLYING: "APPLYING";
|
|
511
|
-
readonly CANCELLED: "CANCELLED";
|
|
512
|
-
readonly FAILED: "FAILED";
|
|
513
|
-
readonly PREPARING: "PREPARING";
|
|
514
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
515
|
-
};
|
|
516
|
-
/**
|
|
517
|
-
* @public
|
|
518
|
-
*/
|
|
519
|
-
export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
|
|
520
357
|
/**
|
|
521
358
|
* @public
|
|
522
359
|
*/
|
|
@@ -639,19 +476,6 @@ export interface DescribeEntityResponse {
|
|
|
639
476
|
*/
|
|
640
477
|
DetailsDocument?: __DocumentType | undefined;
|
|
641
478
|
}
|
|
642
|
-
/**
|
|
643
|
-
* <p>Currently, the specified resource is not supported.</p>
|
|
644
|
-
* @public
|
|
645
|
-
*/
|
|
646
|
-
export declare class ResourceNotSupportedException extends __BaseException {
|
|
647
|
-
readonly name: "ResourceNotSupportedException";
|
|
648
|
-
readonly $fault: "client";
|
|
649
|
-
Message?: string | undefined;
|
|
650
|
-
/**
|
|
651
|
-
* @internal
|
|
652
|
-
*/
|
|
653
|
-
constructor(opts: __ExceptionOptionType<ResourceNotSupportedException, __BaseException>);
|
|
654
|
-
}
|
|
655
479
|
/**
|
|
656
480
|
* @public
|
|
657
481
|
*/
|
|
@@ -916,20 +740,6 @@ export interface ContainerProductTitleFilter {
|
|
|
916
740
|
*/
|
|
917
741
|
WildCardValue?: string | undefined;
|
|
918
742
|
}
|
|
919
|
-
/**
|
|
920
|
-
* @public
|
|
921
|
-
* @enum
|
|
922
|
-
*/
|
|
923
|
-
export declare const ContainerProductVisibilityString: {
|
|
924
|
-
readonly Draft: "Draft";
|
|
925
|
-
readonly Limited: "Limited";
|
|
926
|
-
readonly Public: "Public";
|
|
927
|
-
readonly Restricted: "Restricted";
|
|
928
|
-
};
|
|
929
|
-
/**
|
|
930
|
-
* @public
|
|
931
|
-
*/
|
|
932
|
-
export type ContainerProductVisibilityString = (typeof ContainerProductVisibilityString)[keyof typeof ContainerProductVisibilityString];
|
|
933
743
|
/**
|
|
934
744
|
* <p>Object that allows filtering on the visibility of the product in the AWS Marketplace.</p>
|
|
935
745
|
* @public
|
|
@@ -1021,21 +831,6 @@ export interface DataProductTitleFilter {
|
|
|
1021
831
|
*/
|
|
1022
832
|
WildCardValue?: string | undefined;
|
|
1023
833
|
}
|
|
1024
|
-
/**
|
|
1025
|
-
* @public
|
|
1026
|
-
* @enum
|
|
1027
|
-
*/
|
|
1028
|
-
export declare const DataProductVisibilityString: {
|
|
1029
|
-
readonly Draft: "Draft";
|
|
1030
|
-
readonly Limited: "Limited";
|
|
1031
|
-
readonly Public: "Public";
|
|
1032
|
-
readonly Restricted: "Restricted";
|
|
1033
|
-
readonly Unavailable: "Unavailable";
|
|
1034
|
-
};
|
|
1035
|
-
/**
|
|
1036
|
-
* @public
|
|
1037
|
-
*/
|
|
1038
|
-
export type DataProductVisibilityString = (typeof DataProductVisibilityString)[keyof typeof DataProductVisibilityString];
|
|
1039
834
|
/**
|
|
1040
835
|
* <p>Object that allows filtering on the visibility of the product in the AWS Marketplace.</p>
|
|
1041
836
|
* @public
|
|
@@ -1127,20 +922,6 @@ export interface MachineLearningProductTitleFilter {
|
|
|
1127
922
|
*/
|
|
1128
923
|
WildCardValue?: string | undefined;
|
|
1129
924
|
}
|
|
1130
|
-
/**
|
|
1131
|
-
* @public
|
|
1132
|
-
* @enum
|
|
1133
|
-
*/
|
|
1134
|
-
export declare const MachineLearningProductVisibilityString: {
|
|
1135
|
-
readonly Draft: "Draft";
|
|
1136
|
-
readonly Limited: "Limited";
|
|
1137
|
-
readonly Public: "Public";
|
|
1138
|
-
readonly Restricted: "Restricted";
|
|
1139
|
-
};
|
|
1140
|
-
/**
|
|
1141
|
-
* @public
|
|
1142
|
-
*/
|
|
1143
|
-
export type MachineLearningProductVisibilityString = (typeof MachineLearningProductVisibilityString)[keyof typeof MachineLearningProductVisibilityString];
|
|
1144
925
|
/**
|
|
1145
926
|
* <p>The filter for machine learning product visibility status.</p>
|
|
1146
927
|
* @public
|
|
@@ -1324,18 +1105,6 @@ export interface OfferResaleAuthorizationIdFilter {
|
|
|
1324
1105
|
*/
|
|
1325
1106
|
ValueList?: string[] | undefined;
|
|
1326
1107
|
}
|
|
1327
|
-
/**
|
|
1328
|
-
* @public
|
|
1329
|
-
* @enum
|
|
1330
|
-
*/
|
|
1331
|
-
export declare const OfferStateString: {
|
|
1332
|
-
readonly Draft: "Draft";
|
|
1333
|
-
readonly Released: "Released";
|
|
1334
|
-
};
|
|
1335
|
-
/**
|
|
1336
|
-
* @public
|
|
1337
|
-
*/
|
|
1338
|
-
export type OfferStateString = (typeof OfferStateString)[keyof typeof OfferStateString];
|
|
1339
1108
|
/**
|
|
1340
1109
|
* <p>Allows filtering on the <code>State</code> of an offer.</p>
|
|
1341
1110
|
* @public
|
|
@@ -1347,20 +1116,6 @@ export interface OfferStateFilter {
|
|
|
1347
1116
|
*/
|
|
1348
1117
|
ValueList?: OfferStateString[] | undefined;
|
|
1349
1118
|
}
|
|
1350
|
-
/**
|
|
1351
|
-
* @public
|
|
1352
|
-
* @enum
|
|
1353
|
-
*/
|
|
1354
|
-
export declare const OfferTargetingString: {
|
|
1355
|
-
readonly BuyerAccounts: "BuyerAccounts";
|
|
1356
|
-
readonly CountryCodes: "CountryCodes";
|
|
1357
|
-
readonly None: "None";
|
|
1358
|
-
readonly ParticipatingPrograms: "ParticipatingPrograms";
|
|
1359
|
-
};
|
|
1360
|
-
/**
|
|
1361
|
-
* @public
|
|
1362
|
-
*/
|
|
1363
|
-
export type OfferTargetingString = (typeof OfferTargetingString)[keyof typeof OfferTargetingString];
|
|
1364
1119
|
/**
|
|
1365
1120
|
* <p>Allows filtering on the <code>Targeting</code> of an offer.</p>
|
|
1366
1121
|
* @public
|
|
@@ -1657,19 +1412,6 @@ export interface ResaleAuthorizationResellerLegalNameFilter {
|
|
|
1657
1412
|
*/
|
|
1658
1413
|
WildCardValue?: string | undefined;
|
|
1659
1414
|
}
|
|
1660
|
-
/**
|
|
1661
|
-
* @public
|
|
1662
|
-
* @enum
|
|
1663
|
-
*/
|
|
1664
|
-
export declare const ResaleAuthorizationStatusString: {
|
|
1665
|
-
readonly Active: "Active";
|
|
1666
|
-
readonly Draft: "Draft";
|
|
1667
|
-
readonly Restricted: "Restricted";
|
|
1668
|
-
};
|
|
1669
|
-
/**
|
|
1670
|
-
* @public
|
|
1671
|
-
*/
|
|
1672
|
-
export type ResaleAuthorizationStatusString = (typeof ResaleAuthorizationStatusString)[keyof typeof ResaleAuthorizationStatusString];
|
|
1673
1415
|
/**
|
|
1674
1416
|
* <p>Allows filtering on the <code>Status</code> of a ResaleAuthorization.</p>
|
|
1675
1417
|
* @public
|
|
@@ -1806,20 +1548,6 @@ export interface SaaSProductTitleFilter {
|
|
|
1806
1548
|
*/
|
|
1807
1549
|
WildCardValue?: string | undefined;
|
|
1808
1550
|
}
|
|
1809
|
-
/**
|
|
1810
|
-
* @public
|
|
1811
|
-
* @enum
|
|
1812
|
-
*/
|
|
1813
|
-
export declare const SaaSProductVisibilityString: {
|
|
1814
|
-
readonly Draft: "Draft";
|
|
1815
|
-
readonly Limited: "Limited";
|
|
1816
|
-
readonly Public: "Public";
|
|
1817
|
-
readonly Restricted: "Restricted";
|
|
1818
|
-
};
|
|
1819
|
-
/**
|
|
1820
|
-
* @public
|
|
1821
|
-
*/
|
|
1822
|
-
export type SaaSProductVisibilityString = (typeof SaaSProductVisibilityString)[keyof typeof SaaSProductVisibilityString];
|
|
1823
1551
|
/**
|
|
1824
1552
|
* <p>Object that allows filtering on the visibility of the product in the AWS Marketplace.</p>
|
|
1825
1553
|
* @public
|
|
@@ -1993,21 +1721,6 @@ export declare namespace EntityTypeFilters {
|
|
|
1993
1721
|
_: (name: string, value: any) => T;
|
|
1994
1722
|
}
|
|
1995
1723
|
}
|
|
1996
|
-
/**
|
|
1997
|
-
* @public
|
|
1998
|
-
* @enum
|
|
1999
|
-
*/
|
|
2000
|
-
export declare const ContainerProductSortBy: {
|
|
2001
|
-
readonly CompatibleAWSServices: "CompatibleAWSServices";
|
|
2002
|
-
readonly EntityId: "EntityId";
|
|
2003
|
-
readonly LastModifiedDate: "LastModifiedDate";
|
|
2004
|
-
readonly ProductTitle: "ProductTitle";
|
|
2005
|
-
readonly Visibility: "Visibility";
|
|
2006
|
-
};
|
|
2007
|
-
/**
|
|
2008
|
-
* @public
|
|
2009
|
-
*/
|
|
2010
|
-
export type ContainerProductSortBy = (typeof ContainerProductSortBy)[keyof typeof ContainerProductSortBy];
|
|
2011
1724
|
/**
|
|
2012
1725
|
* <p>Objects that allows sorting on container products based on certain fields and sorting order.</p>
|
|
2013
1726
|
* @public
|
|
@@ -2024,20 +1737,6 @@ export interface ContainerProductSort {
|
|
|
2024
1737
|
*/
|
|
2025
1738
|
SortOrder?: SortOrder | undefined;
|
|
2026
1739
|
}
|
|
2027
|
-
/**
|
|
2028
|
-
* @public
|
|
2029
|
-
* @enum
|
|
2030
|
-
*/
|
|
2031
|
-
export declare const DataProductSortBy: {
|
|
2032
|
-
readonly EntityId: "EntityId";
|
|
2033
|
-
readonly LastModifiedDate: "LastModifiedDate";
|
|
2034
|
-
readonly ProductTitle: "ProductTitle";
|
|
2035
|
-
readonly Visibility: "Visibility";
|
|
2036
|
-
};
|
|
2037
|
-
/**
|
|
2038
|
-
* @public
|
|
2039
|
-
*/
|
|
2040
|
-
export type DataProductSortBy = (typeof DataProductSortBy)[keyof typeof DataProductSortBy];
|
|
2041
1740
|
/**
|
|
2042
1741
|
* <p>Objects that allows sorting on data products based on certain fields and sorting order.</p>
|
|
2043
1742
|
* @public
|
|
@@ -2054,20 +1753,6 @@ export interface DataProductSort {
|
|
|
2054
1753
|
*/
|
|
2055
1754
|
SortOrder?: SortOrder | undefined;
|
|
2056
1755
|
}
|
|
2057
|
-
/**
|
|
2058
|
-
* @public
|
|
2059
|
-
* @enum
|
|
2060
|
-
*/
|
|
2061
|
-
export declare const MachineLearningProductSortBy: {
|
|
2062
|
-
readonly EntityId: "EntityId";
|
|
2063
|
-
readonly LastModifiedDate: "LastModifiedDate";
|
|
2064
|
-
readonly ProductTitle: "ProductTitle";
|
|
2065
|
-
readonly Visibility: "Visibility";
|
|
2066
|
-
};
|
|
2067
|
-
/**
|
|
2068
|
-
* @public
|
|
2069
|
-
*/
|
|
2070
|
-
export type MachineLearningProductSortBy = (typeof MachineLearningProductSortBy)[keyof typeof MachineLearningProductSortBy];
|
|
2071
1756
|
/**
|
|
2072
1757
|
* <p>The sort options for machine learning products.</p>
|
|
2073
1758
|
* @public
|
|
@@ -2084,26 +1769,6 @@ export interface MachineLearningProductSort {
|
|
|
2084
1769
|
*/
|
|
2085
1770
|
SortOrder?: SortOrder | undefined;
|
|
2086
1771
|
}
|
|
2087
|
-
/**
|
|
2088
|
-
* @public
|
|
2089
|
-
* @enum
|
|
2090
|
-
*/
|
|
2091
|
-
export declare const OfferSortBy: {
|
|
2092
|
-
readonly AvailabilityEndDate: "AvailabilityEndDate";
|
|
2093
|
-
readonly BuyerAccounts: "BuyerAccounts";
|
|
2094
|
-
readonly EntityId: "EntityId";
|
|
2095
|
-
readonly LastModifiedDate: "LastModifiedDate";
|
|
2096
|
-
readonly Name: "Name";
|
|
2097
|
-
readonly ProductId: "ProductId";
|
|
2098
|
-
readonly ReleaseDate: "ReleaseDate";
|
|
2099
|
-
readonly ResaleAuthorizationId: "ResaleAuthorizationId";
|
|
2100
|
-
readonly State: "State";
|
|
2101
|
-
readonly Targeting: "Targeting";
|
|
2102
|
-
};
|
|
2103
|
-
/**
|
|
2104
|
-
* @public
|
|
2105
|
-
*/
|
|
2106
|
-
export type OfferSortBy = (typeof OfferSortBy)[keyof typeof OfferSortBy];
|
|
2107
1772
|
/**
|
|
2108
1773
|
* <p>Allows to sort offers.</p>
|
|
2109
1774
|
* @public
|
|
@@ -2120,29 +1785,6 @@ export interface OfferSort {
|
|
|
2120
1785
|
*/
|
|
2121
1786
|
SortOrder?: SortOrder | undefined;
|
|
2122
1787
|
}
|
|
2123
|
-
/**
|
|
2124
|
-
* @public
|
|
2125
|
-
* @enum
|
|
2126
|
-
*/
|
|
2127
|
-
export declare const ResaleAuthorizationSortBy: {
|
|
2128
|
-
readonly AvailabilityEndDate: "AvailabilityEndDate";
|
|
2129
|
-
readonly CreatedDate: "CreatedDate";
|
|
2130
|
-
readonly EntityId: "EntityId";
|
|
2131
|
-
readonly LastModifiedDate: "LastModifiedDate";
|
|
2132
|
-
readonly ManufacturerAccountId: "ManufacturerAccountId";
|
|
2133
|
-
readonly ManufacturerLegalName: "ManufacturerLegalName";
|
|
2134
|
-
readonly Name: "Name";
|
|
2135
|
-
readonly OfferExtendedStatus: "OfferExtendedStatus";
|
|
2136
|
-
readonly ProductId: "ProductId";
|
|
2137
|
-
readonly ProductName: "ProductName";
|
|
2138
|
-
readonly ResellerAccountID: "ResellerAccountID";
|
|
2139
|
-
readonly ResellerLegalName: "ResellerLegalName";
|
|
2140
|
-
readonly Status: "Status";
|
|
2141
|
-
};
|
|
2142
|
-
/**
|
|
2143
|
-
* @public
|
|
2144
|
-
*/
|
|
2145
|
-
export type ResaleAuthorizationSortBy = (typeof ResaleAuthorizationSortBy)[keyof typeof ResaleAuthorizationSortBy];
|
|
2146
1788
|
/**
|
|
2147
1789
|
* <p>Allows to sort ResaleAuthorization.</p>
|
|
2148
1790
|
* @public
|
|
@@ -2159,21 +1801,6 @@ export interface ResaleAuthorizationSort {
|
|
|
2159
1801
|
*/
|
|
2160
1802
|
SortOrder?: SortOrder | undefined;
|
|
2161
1803
|
}
|
|
2162
|
-
/**
|
|
2163
|
-
* @public
|
|
2164
|
-
* @enum
|
|
2165
|
-
*/
|
|
2166
|
-
export declare const SaaSProductSortBy: {
|
|
2167
|
-
readonly DeliveryOptionTypes: "DeliveryOptionTypes";
|
|
2168
|
-
readonly EntityId: "EntityId";
|
|
2169
|
-
readonly LastModifiedDate: "LastModifiedDate";
|
|
2170
|
-
readonly ProductTitle: "ProductTitle";
|
|
2171
|
-
readonly Visibility: "Visibility";
|
|
2172
|
-
};
|
|
2173
|
-
/**
|
|
2174
|
-
* @public
|
|
2175
|
-
*/
|
|
2176
|
-
export type SaaSProductSortBy = (typeof SaaSProductSortBy)[keyof typeof SaaSProductSortBy];
|
|
2177
1804
|
/**
|
|
2178
1805
|
* <p>Objects that allows sorting on SaaS products based on certain fields and sorting order.</p>
|
|
2179
1806
|
* @public
|
|
@@ -2325,18 +1952,6 @@ export declare namespace EntityTypeSort {
|
|
|
2325
1952
|
_: (name: string, value: any) => T;
|
|
2326
1953
|
}
|
|
2327
1954
|
}
|
|
2328
|
-
/**
|
|
2329
|
-
* @public
|
|
2330
|
-
* @enum
|
|
2331
|
-
*/
|
|
2332
|
-
export declare const OwnershipType: {
|
|
2333
|
-
readonly SELF: "SELF";
|
|
2334
|
-
readonly SHARED: "SHARED";
|
|
2335
|
-
};
|
|
2336
|
-
/**
|
|
2337
|
-
* @public
|
|
2338
|
-
*/
|
|
2339
|
-
export type OwnershipType = (typeof OwnershipType)[keyof typeof OwnershipType];
|
|
2340
1955
|
/**
|
|
2341
1956
|
* @public
|
|
2342
1957
|
*/
|
|
@@ -2733,19 +2348,6 @@ export interface PutResourcePolicyRequest {
|
|
|
2733
2348
|
*/
|
|
2734
2349
|
export interface PutResourcePolicyResponse {
|
|
2735
2350
|
}
|
|
2736
|
-
/**
|
|
2737
|
-
* <p>The maximum number of open requests per account has been exceeded.</p>
|
|
2738
|
-
* @public
|
|
2739
|
-
*/
|
|
2740
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
2741
|
-
readonly name: "ServiceQuotaExceededException";
|
|
2742
|
-
readonly $fault: "client";
|
|
2743
|
-
Message?: string | undefined;
|
|
2744
|
-
/**
|
|
2745
|
-
* @internal
|
|
2746
|
-
*/
|
|
2747
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
2748
|
-
}
|
|
2749
2351
|
/**
|
|
2750
2352
|
* <p>An object that contains the <code>ChangeType</code>, <code>Details</code>, and
|
|
2751
2353
|
* <code>Entity</code>.</p>
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { MarketplaceCatalogExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { MarketplaceCatalogServiceException } from "./models/MarketplaceCatalogServiceException";
|