@aws-sdk/client-marketplace-catalog 3.940.0 → 3.943.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 +85 -8
- package/dist-es/models/enums.js +13 -0
- package/dist-es/schemas/schemas_0.js +77 -8
- package/dist-types/commands/ListEntitiesCommand.d.ts +59 -1
- package/dist-types/models/enums.d.ts +29 -0
- package/dist-types/models/models_0.d.ts +276 -5
- package/dist-types/schemas/schemas_0.d.ts +20 -0
- package/dist-types/ts3.4/models/enums.d.ts +17 -0
- package/dist-types/ts3.4/models/models_0.d.ts +99 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +20 -0
- package/package.json +5 -5
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
-
import { AmiProductSortBy, AmiProductVisibilityString, ChangeStatus, ContainerProductSortBy, ContainerProductVisibilityString, DataProductSortBy, DataProductVisibilityString, FailureCode, Intent, MachineLearningProductSortBy, MachineLearningProductVisibilityString, OfferSortBy, OfferStateString, OfferTargetingString, OwnershipType, ResaleAuthorizationSortBy, ResaleAuthorizationStatusString, SaaSProductSortBy, SaaSProductVisibilityString, SortOrder } from "./enums";
|
|
2
|
+
import { AmiProductSortBy, AmiProductVisibilityString, ChangeStatus, ContainerProductSortBy, ContainerProductVisibilityString, DataProductSortBy, DataProductVisibilityString, FailureCode, Intent, MachineLearningProductSortBy, MachineLearningProductVisibilityString, OfferSetSortBy, OfferSetStateString, OfferSortBy, OfferStateString, OfferTargetingString, OwnershipType, ResaleAuthorizationSortBy, ResaleAuthorizationStatusString, SaaSProductSortBy, SaaSProductVisibilityString, SortOrder } from "./enums";
|
|
3
3
|
/**
|
|
4
4
|
* <p>Object that allows filtering on entity id of an AMI product.</p>
|
|
5
5
|
* @public
|
|
@@ -1052,6 +1052,17 @@ export interface OfferNameFilter {
|
|
|
1052
1052
|
*/
|
|
1053
1053
|
WildCardValue?: string | undefined;
|
|
1054
1054
|
}
|
|
1055
|
+
/**
|
|
1056
|
+
* <p>Allows filtering on the <code>OfferSetId</code> of an offer.</p>
|
|
1057
|
+
* @public
|
|
1058
|
+
*/
|
|
1059
|
+
export interface OfferSetIdFilter {
|
|
1060
|
+
/**
|
|
1061
|
+
* <p>Allows filtering on the <code>OfferSetId</code> of an offer.</p>
|
|
1062
|
+
* @public
|
|
1063
|
+
*/
|
|
1064
|
+
ValueList?: string[] | undefined;
|
|
1065
|
+
}
|
|
1055
1066
|
/**
|
|
1056
1067
|
* <p>Allows filtering on the <code>ProductId</code> of an offer.</p>
|
|
1057
1068
|
* @public
|
|
@@ -1186,6 +1197,161 @@ export interface OfferFilters {
|
|
|
1186
1197
|
* @public
|
|
1187
1198
|
*/
|
|
1188
1199
|
LastModifiedDate?: OfferLastModifiedDateFilter | undefined;
|
|
1200
|
+
/**
|
|
1201
|
+
* <p>Allows filtering on the <code>OfferSetId</code> of an offer.</p>
|
|
1202
|
+
* @public
|
|
1203
|
+
*/
|
|
1204
|
+
OfferSetId?: OfferSetIdFilter | undefined;
|
|
1205
|
+
}
|
|
1206
|
+
/**
|
|
1207
|
+
* <p>Allows filtering on the <code>AssociatedOfferIds</code> of an offer set.</p>
|
|
1208
|
+
* @public
|
|
1209
|
+
*/
|
|
1210
|
+
export interface OfferSetAssociatedOfferIdsFilter {
|
|
1211
|
+
/**
|
|
1212
|
+
* <p>Allows filtering on the <code>AssociatedOfferIds</code> of an offer set with list input.</p>
|
|
1213
|
+
* @public
|
|
1214
|
+
*/
|
|
1215
|
+
ValueList?: string[] | undefined;
|
|
1216
|
+
}
|
|
1217
|
+
/**
|
|
1218
|
+
* <p>Allows filtering on the entity id of an offer set.</p>
|
|
1219
|
+
* @public
|
|
1220
|
+
*/
|
|
1221
|
+
export interface OfferSetEntityIdFilter {
|
|
1222
|
+
/**
|
|
1223
|
+
* <p>Allows filtering on entity id of an offer set with list input.</p>
|
|
1224
|
+
* @public
|
|
1225
|
+
*/
|
|
1226
|
+
ValueList?: string[] | undefined;
|
|
1227
|
+
}
|
|
1228
|
+
/**
|
|
1229
|
+
* <p>Allows filtering on the <code>LastModifiedDate</code> of an offer set with date range as input.</p>
|
|
1230
|
+
* @public
|
|
1231
|
+
*/
|
|
1232
|
+
export interface OfferSetLastModifiedDateFilterDateRange {
|
|
1233
|
+
/**
|
|
1234
|
+
* <p>Allows filtering on the <code>LastModifiedDate</code> of an offer set after a date.</p>
|
|
1235
|
+
* @public
|
|
1236
|
+
*/
|
|
1237
|
+
AfterValue?: string | undefined;
|
|
1238
|
+
/**
|
|
1239
|
+
* <p>Allows filtering on the <code>LastModifiedDate</code> of an offer set before a date.</p>
|
|
1240
|
+
* @public
|
|
1241
|
+
*/
|
|
1242
|
+
BeforeValue?: string | undefined;
|
|
1243
|
+
}
|
|
1244
|
+
/**
|
|
1245
|
+
* <p>Allows filtering on the <code>LastModifiedDate</code> of an offer set.</p>
|
|
1246
|
+
* @public
|
|
1247
|
+
*/
|
|
1248
|
+
export interface OfferSetLastModifiedDateFilter {
|
|
1249
|
+
/**
|
|
1250
|
+
* <p>Allows filtering on the <code>LastModifiedDate</code> of an offer set with date range as input.</p>
|
|
1251
|
+
* @public
|
|
1252
|
+
*/
|
|
1253
|
+
DateRange?: OfferSetLastModifiedDateFilterDateRange | undefined;
|
|
1254
|
+
}
|
|
1255
|
+
/**
|
|
1256
|
+
* <p>Allows filtering on the <code>Name</code> of an offer set.</p>
|
|
1257
|
+
* @public
|
|
1258
|
+
*/
|
|
1259
|
+
export interface OfferSetNameFilter {
|
|
1260
|
+
/**
|
|
1261
|
+
* <p>Allows filtering on the <code>Name</code> of an offer set with list input.</p>
|
|
1262
|
+
* @public
|
|
1263
|
+
*/
|
|
1264
|
+
ValueList?: string[] | undefined;
|
|
1265
|
+
}
|
|
1266
|
+
/**
|
|
1267
|
+
* <p>Allows filtering on the <code>ReleaseDate</code> of an offer set with date range as input.</p>
|
|
1268
|
+
* @public
|
|
1269
|
+
*/
|
|
1270
|
+
export interface OfferSetReleaseDateFilterDateRange {
|
|
1271
|
+
/**
|
|
1272
|
+
* <p>Allows filtering on the <code>ReleaseDate</code> of offer set after a date.</p>
|
|
1273
|
+
* @public
|
|
1274
|
+
*/
|
|
1275
|
+
AfterValue?: string | undefined;
|
|
1276
|
+
/**
|
|
1277
|
+
* <p>Allows filtering on the <code>ReleaseDate</code> of offer set before a date.</p>
|
|
1278
|
+
* @public
|
|
1279
|
+
*/
|
|
1280
|
+
BeforeValue?: string | undefined;
|
|
1281
|
+
}
|
|
1282
|
+
/**
|
|
1283
|
+
* <p>Allows filtering on the <code>ReleaseDate</code> of an offer set.</p>
|
|
1284
|
+
* @public
|
|
1285
|
+
*/
|
|
1286
|
+
export interface OfferSetReleaseDateFilter {
|
|
1287
|
+
/**
|
|
1288
|
+
* <p>Allows filtering on the <code>ReleaseDate</code> of an offer set with date range as input.</p>
|
|
1289
|
+
* @public
|
|
1290
|
+
*/
|
|
1291
|
+
DateRange?: OfferSetReleaseDateFilterDateRange | undefined;
|
|
1292
|
+
}
|
|
1293
|
+
/**
|
|
1294
|
+
* <p>Allows filtering on the <code>SolutionId</code> of an offer set.</p>
|
|
1295
|
+
* @public
|
|
1296
|
+
*/
|
|
1297
|
+
export interface OfferSetSolutionIdFilter {
|
|
1298
|
+
/**
|
|
1299
|
+
* <p>Allows filtering on the <code>SolutionId</code> of an offer set with list input.</p>
|
|
1300
|
+
* @public
|
|
1301
|
+
*/
|
|
1302
|
+
ValueList?: string[] | undefined;
|
|
1303
|
+
}
|
|
1304
|
+
/**
|
|
1305
|
+
* <p>Allows filtering on the <code>State</code> of an offer set.</p>
|
|
1306
|
+
* @public
|
|
1307
|
+
*/
|
|
1308
|
+
export interface OfferSetStateFilter {
|
|
1309
|
+
/**
|
|
1310
|
+
* <p>Allows filtering on the <code>State</code> of an offer set with list input.</p>
|
|
1311
|
+
* @public
|
|
1312
|
+
*/
|
|
1313
|
+
ValueList?: OfferSetStateString[] | undefined;
|
|
1314
|
+
}
|
|
1315
|
+
/**
|
|
1316
|
+
* <p>Object containing all the filter fields for offer sets entity. Client can add a maximum of 8 filters in a single <code>ListEntities</code> request.</p>
|
|
1317
|
+
* @public
|
|
1318
|
+
*/
|
|
1319
|
+
export interface OfferSetFilters {
|
|
1320
|
+
/**
|
|
1321
|
+
* <p>Allows filtering on <code>EntityId</code> of an offer set.</p>
|
|
1322
|
+
* @public
|
|
1323
|
+
*/
|
|
1324
|
+
EntityId?: OfferSetEntityIdFilter | undefined;
|
|
1325
|
+
/**
|
|
1326
|
+
* <p>Allows filtering on the <code>Name</code> of an offer set.</p>
|
|
1327
|
+
* @public
|
|
1328
|
+
*/
|
|
1329
|
+
Name?: OfferSetNameFilter | undefined;
|
|
1330
|
+
/**
|
|
1331
|
+
* <p>Allows filtering on the <code>State</code> of an offer set.</p>
|
|
1332
|
+
* @public
|
|
1333
|
+
*/
|
|
1334
|
+
State?: OfferSetStateFilter | undefined;
|
|
1335
|
+
/**
|
|
1336
|
+
* <p>Allows filtering on the <code>ReleaseDate</code> of an offer set.</p>
|
|
1337
|
+
* @public
|
|
1338
|
+
*/
|
|
1339
|
+
ReleaseDate?: OfferSetReleaseDateFilter | undefined;
|
|
1340
|
+
/**
|
|
1341
|
+
* <p>Allows filtering on the <code>AssociatedOfferIds</code> of an offer set.</p>
|
|
1342
|
+
* @public
|
|
1343
|
+
*/
|
|
1344
|
+
AssociatedOfferIds?: OfferSetAssociatedOfferIdsFilter | undefined;
|
|
1345
|
+
/**
|
|
1346
|
+
* <p>Allows filtering on the <code>SolutionId</code> of an offer set.</p>
|
|
1347
|
+
* @public
|
|
1348
|
+
*/
|
|
1349
|
+
SolutionId?: OfferSetSolutionIdFilter | undefined;
|
|
1350
|
+
/**
|
|
1351
|
+
* <p>Allows filtering on the <code>LastModifiedDate</code> of an offer set.</p>
|
|
1352
|
+
* @public
|
|
1353
|
+
*/
|
|
1354
|
+
LastModifiedDate?: OfferSetLastModifiedDateFilter | undefined;
|
|
1189
1355
|
}
|
|
1190
1356
|
/**
|
|
1191
1357
|
* <p>Allows filtering on <code>AvailabilityEndDate</code> of a ResaleAuthorization with date range as input.</p>
|
|
@@ -1589,7 +1755,7 @@ export interface SaaSProductFilters {
|
|
|
1589
1755
|
* <p>Object containing all the filter fields per entity type.</p>
|
|
1590
1756
|
* @public
|
|
1591
1757
|
*/
|
|
1592
|
-
export type EntityTypeFilters = EntityTypeFilters.AmiProductFiltersMember | EntityTypeFilters.ContainerProductFiltersMember | EntityTypeFilters.DataProductFiltersMember | EntityTypeFilters.MachineLearningProductFiltersMember | EntityTypeFilters.OfferFiltersMember | EntityTypeFilters.ResaleAuthorizationFiltersMember | EntityTypeFilters.SaaSProductFiltersMember | EntityTypeFilters.$UnknownMember;
|
|
1758
|
+
export type EntityTypeFilters = EntityTypeFilters.AmiProductFiltersMember | EntityTypeFilters.ContainerProductFiltersMember | EntityTypeFilters.DataProductFiltersMember | EntityTypeFilters.MachineLearningProductFiltersMember | EntityTypeFilters.OfferFiltersMember | EntityTypeFilters.OfferSetFiltersMember | EntityTypeFilters.ResaleAuthorizationFiltersMember | EntityTypeFilters.SaaSProductFiltersMember | EntityTypeFilters.$UnknownMember;
|
|
1593
1759
|
/**
|
|
1594
1760
|
* @public
|
|
1595
1761
|
*/
|
|
@@ -1606,6 +1772,7 @@ export declare namespace EntityTypeFilters {
|
|
|
1606
1772
|
ContainerProductFilters?: never;
|
|
1607
1773
|
ResaleAuthorizationFilters?: never;
|
|
1608
1774
|
MachineLearningProductFilters?: never;
|
|
1775
|
+
OfferSetFilters?: never;
|
|
1609
1776
|
$unknown?: never;
|
|
1610
1777
|
}
|
|
1611
1778
|
/**
|
|
@@ -1620,6 +1787,7 @@ export declare namespace EntityTypeFilters {
|
|
|
1620
1787
|
ContainerProductFilters?: never;
|
|
1621
1788
|
ResaleAuthorizationFilters?: never;
|
|
1622
1789
|
MachineLearningProductFilters?: never;
|
|
1790
|
+
OfferSetFilters?: never;
|
|
1623
1791
|
$unknown?: never;
|
|
1624
1792
|
}
|
|
1625
1793
|
/**
|
|
@@ -1634,6 +1802,7 @@ export declare namespace EntityTypeFilters {
|
|
|
1634
1802
|
ContainerProductFilters?: never;
|
|
1635
1803
|
ResaleAuthorizationFilters?: never;
|
|
1636
1804
|
MachineLearningProductFilters?: never;
|
|
1805
|
+
OfferSetFilters?: never;
|
|
1637
1806
|
$unknown?: never;
|
|
1638
1807
|
}
|
|
1639
1808
|
/**
|
|
@@ -1648,6 +1817,7 @@ export declare namespace EntityTypeFilters {
|
|
|
1648
1817
|
ContainerProductFilters?: never;
|
|
1649
1818
|
ResaleAuthorizationFilters?: never;
|
|
1650
1819
|
MachineLearningProductFilters?: never;
|
|
1820
|
+
OfferSetFilters?: never;
|
|
1651
1821
|
$unknown?: never;
|
|
1652
1822
|
}
|
|
1653
1823
|
/**
|
|
@@ -1662,6 +1832,7 @@ export declare namespace EntityTypeFilters {
|
|
|
1662
1832
|
ContainerProductFilters: ContainerProductFilters;
|
|
1663
1833
|
ResaleAuthorizationFilters?: never;
|
|
1664
1834
|
MachineLearningProductFilters?: never;
|
|
1835
|
+
OfferSetFilters?: never;
|
|
1665
1836
|
$unknown?: never;
|
|
1666
1837
|
}
|
|
1667
1838
|
/**
|
|
@@ -1676,6 +1847,7 @@ export declare namespace EntityTypeFilters {
|
|
|
1676
1847
|
ContainerProductFilters?: never;
|
|
1677
1848
|
ResaleAuthorizationFilters: ResaleAuthorizationFilters;
|
|
1678
1849
|
MachineLearningProductFilters?: never;
|
|
1850
|
+
OfferSetFilters?: never;
|
|
1679
1851
|
$unknown?: never;
|
|
1680
1852
|
}
|
|
1681
1853
|
/**
|
|
@@ -1691,6 +1863,22 @@ export declare namespace EntityTypeFilters {
|
|
|
1691
1863
|
ContainerProductFilters?: never;
|
|
1692
1864
|
ResaleAuthorizationFilters?: never;
|
|
1693
1865
|
MachineLearningProductFilters: MachineLearningProductFilters;
|
|
1866
|
+
OfferSetFilters?: never;
|
|
1867
|
+
$unknown?: never;
|
|
1868
|
+
}
|
|
1869
|
+
/**
|
|
1870
|
+
* <p>A filter for offer sets.</p>
|
|
1871
|
+
* @public
|
|
1872
|
+
*/
|
|
1873
|
+
interface OfferSetFiltersMember {
|
|
1874
|
+
DataProductFilters?: never;
|
|
1875
|
+
SaaSProductFilters?: never;
|
|
1876
|
+
AmiProductFilters?: never;
|
|
1877
|
+
OfferFilters?: never;
|
|
1878
|
+
ContainerProductFilters?: never;
|
|
1879
|
+
ResaleAuthorizationFilters?: never;
|
|
1880
|
+
MachineLearningProductFilters?: never;
|
|
1881
|
+
OfferSetFilters: OfferSetFilters;
|
|
1694
1882
|
$unknown?: never;
|
|
1695
1883
|
}
|
|
1696
1884
|
/**
|
|
@@ -1704,6 +1892,7 @@ export declare namespace EntityTypeFilters {
|
|
|
1704
1892
|
ContainerProductFilters?: never;
|
|
1705
1893
|
ResaleAuthorizationFilters?: never;
|
|
1706
1894
|
MachineLearningProductFilters?: never;
|
|
1895
|
+
OfferSetFilters?: never;
|
|
1707
1896
|
$unknown: [string, any];
|
|
1708
1897
|
}
|
|
1709
1898
|
/**
|
|
@@ -1718,6 +1907,7 @@ export declare namespace EntityTypeFilters {
|
|
|
1718
1907
|
ContainerProductFilters: (value: ContainerProductFilters) => T;
|
|
1719
1908
|
ResaleAuthorizationFilters: (value: ResaleAuthorizationFilters) => T;
|
|
1720
1909
|
MachineLearningProductFilters: (value: MachineLearningProductFilters) => T;
|
|
1910
|
+
OfferSetFilters: (value: OfferSetFilters) => T;
|
|
1721
1911
|
_: (name: string, value: any) => T;
|
|
1722
1912
|
}
|
|
1723
1913
|
}
|
|
@@ -1769,6 +1959,22 @@ export interface MachineLearningProductSort {
|
|
|
1769
1959
|
*/
|
|
1770
1960
|
SortOrder?: SortOrder | undefined;
|
|
1771
1961
|
}
|
|
1962
|
+
/**
|
|
1963
|
+
* <p>Allows to sort offer sets.</p>
|
|
1964
|
+
* @public
|
|
1965
|
+
*/
|
|
1966
|
+
export interface OfferSetSort {
|
|
1967
|
+
/**
|
|
1968
|
+
* <p>Allows to sort offer sets.</p>
|
|
1969
|
+
* @public
|
|
1970
|
+
*/
|
|
1971
|
+
SortBy?: OfferSetSortBy | undefined;
|
|
1972
|
+
/**
|
|
1973
|
+
* <p>Allows to sort offer sets.</p>
|
|
1974
|
+
* @public
|
|
1975
|
+
*/
|
|
1976
|
+
SortOrder?: SortOrder | undefined;
|
|
1977
|
+
}
|
|
1772
1978
|
/**
|
|
1773
1979
|
* <p>Allows to sort offers.</p>
|
|
1774
1980
|
* @public
|
|
@@ -1821,7 +2027,7 @@ export interface SaaSProductSort {
|
|
|
1821
2027
|
* <p>Object containing all the sort fields per entity type.</p>
|
|
1822
2028
|
* @public
|
|
1823
2029
|
*/
|
|
1824
|
-
export type EntityTypeSort = EntityTypeSort.AmiProductSortMember | EntityTypeSort.ContainerProductSortMember | EntityTypeSort.DataProductSortMember | EntityTypeSort.MachineLearningProductSortMember | EntityTypeSort.OfferSortMember | EntityTypeSort.ResaleAuthorizationSortMember | EntityTypeSort.SaaSProductSortMember | EntityTypeSort.$UnknownMember;
|
|
2030
|
+
export type EntityTypeSort = EntityTypeSort.AmiProductSortMember | EntityTypeSort.ContainerProductSortMember | EntityTypeSort.DataProductSortMember | EntityTypeSort.MachineLearningProductSortMember | EntityTypeSort.OfferSetSortMember | EntityTypeSort.OfferSortMember | EntityTypeSort.ResaleAuthorizationSortMember | EntityTypeSort.SaaSProductSortMember | EntityTypeSort.$UnknownMember;
|
|
1825
2031
|
/**
|
|
1826
2032
|
* @public
|
|
1827
2033
|
*/
|
|
@@ -1838,6 +2044,7 @@ export declare namespace EntityTypeSort {
|
|
|
1838
2044
|
ContainerProductSort?: never;
|
|
1839
2045
|
ResaleAuthorizationSort?: never;
|
|
1840
2046
|
MachineLearningProductSort?: never;
|
|
2047
|
+
OfferSetSort?: never;
|
|
1841
2048
|
$unknown?: never;
|
|
1842
2049
|
}
|
|
1843
2050
|
/**
|
|
@@ -1852,6 +2059,7 @@ export declare namespace EntityTypeSort {
|
|
|
1852
2059
|
ContainerProductSort?: never;
|
|
1853
2060
|
ResaleAuthorizationSort?: never;
|
|
1854
2061
|
MachineLearningProductSort?: never;
|
|
2062
|
+
OfferSetSort?: never;
|
|
1855
2063
|
$unknown?: never;
|
|
1856
2064
|
}
|
|
1857
2065
|
/**
|
|
@@ -1866,6 +2074,7 @@ export declare namespace EntityTypeSort {
|
|
|
1866
2074
|
ContainerProductSort?: never;
|
|
1867
2075
|
ResaleAuthorizationSort?: never;
|
|
1868
2076
|
MachineLearningProductSort?: never;
|
|
2077
|
+
OfferSetSort?: never;
|
|
1869
2078
|
$unknown?: never;
|
|
1870
2079
|
}
|
|
1871
2080
|
/**
|
|
@@ -1880,6 +2089,7 @@ export declare namespace EntityTypeSort {
|
|
|
1880
2089
|
ContainerProductSort?: never;
|
|
1881
2090
|
ResaleAuthorizationSort?: never;
|
|
1882
2091
|
MachineLearningProductSort?: never;
|
|
2092
|
+
OfferSetSort?: never;
|
|
1883
2093
|
$unknown?: never;
|
|
1884
2094
|
}
|
|
1885
2095
|
/**
|
|
@@ -1894,6 +2104,7 @@ export declare namespace EntityTypeSort {
|
|
|
1894
2104
|
ContainerProductSort: ContainerProductSort;
|
|
1895
2105
|
ResaleAuthorizationSort?: never;
|
|
1896
2106
|
MachineLearningProductSort?: never;
|
|
2107
|
+
OfferSetSort?: never;
|
|
1897
2108
|
$unknown?: never;
|
|
1898
2109
|
}
|
|
1899
2110
|
/**
|
|
@@ -1908,6 +2119,7 @@ export declare namespace EntityTypeSort {
|
|
|
1908
2119
|
ContainerProductSort?: never;
|
|
1909
2120
|
ResaleAuthorizationSort: ResaleAuthorizationSort;
|
|
1910
2121
|
MachineLearningProductSort?: never;
|
|
2122
|
+
OfferSetSort?: never;
|
|
1911
2123
|
$unknown?: never;
|
|
1912
2124
|
}
|
|
1913
2125
|
/**
|
|
@@ -1922,6 +2134,22 @@ export declare namespace EntityTypeSort {
|
|
|
1922
2134
|
ContainerProductSort?: never;
|
|
1923
2135
|
ResaleAuthorizationSort?: never;
|
|
1924
2136
|
MachineLearningProductSort: MachineLearningProductSort;
|
|
2137
|
+
OfferSetSort?: never;
|
|
2138
|
+
$unknown?: never;
|
|
2139
|
+
}
|
|
2140
|
+
/**
|
|
2141
|
+
* <p>A sort for offer sets.</p>
|
|
2142
|
+
* @public
|
|
2143
|
+
*/
|
|
2144
|
+
interface OfferSetSortMember {
|
|
2145
|
+
DataProductSort?: never;
|
|
2146
|
+
SaaSProductSort?: never;
|
|
2147
|
+
AmiProductSort?: never;
|
|
2148
|
+
OfferSort?: never;
|
|
2149
|
+
ContainerProductSort?: never;
|
|
2150
|
+
ResaleAuthorizationSort?: never;
|
|
2151
|
+
MachineLearningProductSort?: never;
|
|
2152
|
+
OfferSetSort: OfferSetSort;
|
|
1925
2153
|
$unknown?: never;
|
|
1926
2154
|
}
|
|
1927
2155
|
/**
|
|
@@ -1935,6 +2163,7 @@ export declare namespace EntityTypeSort {
|
|
|
1935
2163
|
ContainerProductSort?: never;
|
|
1936
2164
|
ResaleAuthorizationSort?: never;
|
|
1937
2165
|
MachineLearningProductSort?: never;
|
|
2166
|
+
OfferSetSort?: never;
|
|
1938
2167
|
$unknown: [string, any];
|
|
1939
2168
|
}
|
|
1940
2169
|
/**
|
|
@@ -1949,6 +2178,7 @@ export declare namespace EntityTypeSort {
|
|
|
1949
2178
|
ContainerProductSort: (value: ContainerProductSort) => T;
|
|
1950
2179
|
ResaleAuthorizationSort: (value: ResaleAuthorizationSort) => T;
|
|
1951
2180
|
MachineLearningProductSort: (value: MachineLearningProductSort) => T;
|
|
2181
|
+
OfferSetSort: (value: OfferSetSort) => T;
|
|
1952
2182
|
_: (name: string, value: any) => T;
|
|
1953
2183
|
}
|
|
1954
2184
|
}
|
|
@@ -1968,8 +2198,8 @@ export interface ListEntitiesRequest {
|
|
|
1968
2198
|
* values are: <code>AmiProduct</code>, <code>ContainerProduct</code>,
|
|
1969
2199
|
* <code>DataProduct</code>, <code>SaaSProduct</code>, <code>ProcurementPolicy</code>,
|
|
1970
2200
|
* <code>Experience</code>, <code>Audience</code>, <code>BrandingSettings</code>,
|
|
1971
|
-
* <code>Offer</code>, <code>Seller</code>,
|
|
1972
|
-
* <code>ResaleAuthorization</code>.</p>
|
|
2201
|
+
* <code>Offer</code>, <code>OfferSet</code>, <code>Seller</code>,
|
|
2202
|
+
* <code>ResaleAuthorization</code>, <code>Solution</code>.</p>
|
|
1973
2203
|
* @public
|
|
1974
2204
|
*/
|
|
1975
2205
|
EntityType: string | undefined;
|
|
@@ -2069,6 +2299,37 @@ export interface MachineLearningProductSummary {
|
|
|
2069
2299
|
*/
|
|
2070
2300
|
Visibility?: MachineLearningProductVisibilityString | undefined;
|
|
2071
2301
|
}
|
|
2302
|
+
/**
|
|
2303
|
+
* <p>Summarized information about an offer set.</p>
|
|
2304
|
+
* @public
|
|
2305
|
+
*/
|
|
2306
|
+
export interface OfferSetSummary {
|
|
2307
|
+
/**
|
|
2308
|
+
* <p>The name of the offer set.</p>
|
|
2309
|
+
* @public
|
|
2310
|
+
*/
|
|
2311
|
+
Name?: string | undefined;
|
|
2312
|
+
/**
|
|
2313
|
+
* <p>The state of the offer set.</p>
|
|
2314
|
+
* @public
|
|
2315
|
+
*/
|
|
2316
|
+
State?: OfferSetStateString | undefined;
|
|
2317
|
+
/**
|
|
2318
|
+
* <p>The release date of the offer set.</p>
|
|
2319
|
+
* @public
|
|
2320
|
+
*/
|
|
2321
|
+
ReleaseDate?: string | undefined;
|
|
2322
|
+
/**
|
|
2323
|
+
* <p>The list of offer IDs associated with the offer set.</p>
|
|
2324
|
+
* @public
|
|
2325
|
+
*/
|
|
2326
|
+
AssociatedOfferIds?: string[] | undefined;
|
|
2327
|
+
/**
|
|
2328
|
+
* <p>The solution ID associated with the offer set.</p>
|
|
2329
|
+
* @public
|
|
2330
|
+
*/
|
|
2331
|
+
SolutionId?: string | undefined;
|
|
2332
|
+
}
|
|
2072
2333
|
/**
|
|
2073
2334
|
* <p>Summarized information about an offer.</p>
|
|
2074
2335
|
* @public
|
|
@@ -2114,6 +2375,11 @@ export interface OfferSummary {
|
|
|
2114
2375
|
* @public
|
|
2115
2376
|
*/
|
|
2116
2377
|
Targeting?: OfferTargetingString[] | undefined;
|
|
2378
|
+
/**
|
|
2379
|
+
* <p>The offer set ID of the offer.</p>
|
|
2380
|
+
* @public
|
|
2381
|
+
*/
|
|
2382
|
+
OfferSetId?: string | undefined;
|
|
2117
2383
|
}
|
|
2118
2384
|
/**
|
|
2119
2385
|
* <p>Summarized information about a Resale Authorization.</p>
|
|
@@ -2268,6 +2534,11 @@ export interface EntitySummary {
|
|
|
2268
2534
|
* @public
|
|
2269
2535
|
*/
|
|
2270
2536
|
MachineLearningProductSummary?: MachineLearningProductSummary | undefined;
|
|
2537
|
+
/**
|
|
2538
|
+
* <p>An object that contains summary information about the offer set.</p>
|
|
2539
|
+
* @public
|
|
2540
|
+
*/
|
|
2541
|
+
OfferSetSummary?: OfferSetSummary | undefined;
|
|
2271
2542
|
}
|
|
2272
2543
|
/**
|
|
2273
2544
|
* @public
|
|
@@ -73,6 +73,19 @@ export declare var OfferProductIdFilter: StaticStructureSchema;
|
|
|
73
73
|
export declare var OfferReleaseDateFilter: StaticStructureSchema;
|
|
74
74
|
export declare var OfferReleaseDateFilterDateRange: StaticStructureSchema;
|
|
75
75
|
export declare var OfferResaleAuthorizationIdFilter: StaticStructureSchema;
|
|
76
|
+
export declare var OfferSetAssociatedOfferIdsFilter: StaticStructureSchema;
|
|
77
|
+
export declare var OfferSetEntityIdFilter: StaticStructureSchema;
|
|
78
|
+
export declare var OfferSetFilters: StaticStructureSchema;
|
|
79
|
+
export declare var OfferSetIdFilter: StaticStructureSchema;
|
|
80
|
+
export declare var OfferSetLastModifiedDateFilter: StaticStructureSchema;
|
|
81
|
+
export declare var OfferSetLastModifiedDateFilterDateRange: StaticStructureSchema;
|
|
82
|
+
export declare var OfferSetNameFilter: StaticStructureSchema;
|
|
83
|
+
export declare var OfferSetReleaseDateFilter: StaticStructureSchema;
|
|
84
|
+
export declare var OfferSetReleaseDateFilterDateRange: StaticStructureSchema;
|
|
85
|
+
export declare var OfferSetSolutionIdFilter: StaticStructureSchema;
|
|
86
|
+
export declare var OfferSetSort: StaticStructureSchema;
|
|
87
|
+
export declare var OfferSetStateFilter: StaticStructureSchema;
|
|
88
|
+
export declare var OfferSetSummary: StaticStructureSchema;
|
|
76
89
|
export declare var OfferSort: StaticStructureSchema;
|
|
77
90
|
export declare var OfferStateFilter: StaticStructureSchema;
|
|
78
91
|
export declare var OfferSummary: StaticStructureSchema;
|
|
@@ -145,6 +158,13 @@ export declare var OfferEntityIdFilterValueList: number;
|
|
|
145
158
|
export declare var OfferNameFilterValueList: number;
|
|
146
159
|
export declare var OfferProductIdFilterValueList: number;
|
|
147
160
|
export declare var OfferResaleAuthorizationIdFilterValueList: number;
|
|
161
|
+
export declare var OfferSetAssociatedOfferIdsFilterValueList: number;
|
|
162
|
+
export declare var OfferSetAssociatedOfferIdsList: number;
|
|
163
|
+
export declare var OfferSetEntityIdFilterValueList: number;
|
|
164
|
+
export declare var OfferSetIdFilterValueList: number;
|
|
165
|
+
export declare var OfferSetNameFilterValueList: number;
|
|
166
|
+
export declare var OfferSetSolutionIdFilterValueList: number;
|
|
167
|
+
export declare var OfferSetStateFilterValueList: number;
|
|
148
168
|
export declare var OfferStateFilterValueList: number;
|
|
149
169
|
export declare var OfferTargetingFilterValueList: number;
|
|
150
170
|
export declare var OfferTargetingList: number;
|
|
@@ -76,6 +76,12 @@ export declare const OfferTargetingString: {
|
|
|
76
76
|
};
|
|
77
77
|
export type OfferTargetingString =
|
|
78
78
|
(typeof OfferTargetingString)[keyof typeof OfferTargetingString];
|
|
79
|
+
export declare const OfferSetStateString: {
|
|
80
|
+
readonly Draft: "Draft";
|
|
81
|
+
readonly Released: "Released";
|
|
82
|
+
};
|
|
83
|
+
export type OfferSetStateString =
|
|
84
|
+
(typeof OfferSetStateString)[keyof typeof OfferSetStateString];
|
|
79
85
|
export declare const ResaleAuthorizationStatusString: {
|
|
80
86
|
readonly Active: "Active";
|
|
81
87
|
readonly Draft: "Draft";
|
|
@@ -116,12 +122,23 @@ export declare const MachineLearningProductSortBy: {
|
|
|
116
122
|
};
|
|
117
123
|
export type MachineLearningProductSortBy =
|
|
118
124
|
(typeof MachineLearningProductSortBy)[keyof typeof MachineLearningProductSortBy];
|
|
125
|
+
export declare const OfferSetSortBy: {
|
|
126
|
+
readonly EntityId: "EntityId";
|
|
127
|
+
readonly LastModifiedDate: "LastModifiedDate";
|
|
128
|
+
readonly Name: "Name";
|
|
129
|
+
readonly ReleaseDate: "ReleaseDate";
|
|
130
|
+
readonly SolutionId: "SolutionId";
|
|
131
|
+
readonly State: "State";
|
|
132
|
+
};
|
|
133
|
+
export type OfferSetSortBy =
|
|
134
|
+
(typeof OfferSetSortBy)[keyof typeof OfferSetSortBy];
|
|
119
135
|
export declare const OfferSortBy: {
|
|
120
136
|
readonly AvailabilityEndDate: "AvailabilityEndDate";
|
|
121
137
|
readonly BuyerAccounts: "BuyerAccounts";
|
|
122
138
|
readonly EntityId: "EntityId";
|
|
123
139
|
readonly LastModifiedDate: "LastModifiedDate";
|
|
124
140
|
readonly Name: "Name";
|
|
141
|
+
readonly OfferSetId: "OfferSetId";
|
|
125
142
|
readonly ProductId: "ProductId";
|
|
126
143
|
readonly ReleaseDate: "ReleaseDate";
|
|
127
144
|
readonly ResaleAuthorizationId: "ResaleAuthorizationId";
|