@aws-sdk/client-marketplace-catalog 3.462.0 → 3.465.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/models/models_0.js +130 -4
- package/dist-cjs/protocols/Aws_restJson1.js +2 -0
- package/dist-es/models/models_0.js +129 -3
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/ListEntitiesCommand.d.ts +298 -0
- package/dist-types/models/models_0.d.ts +1663 -60
- package/dist-types/ts3.4/models/models_0.d.ts +574 -5
- package/package.json +14 -16
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ServiceQuotaExceededException = exports.OwnershipType = exports.
|
|
3
|
+
exports.ServiceQuotaExceededException = exports.OwnershipType = exports.EntityTypeSort = exports.SaaSProductSortBy = exports.ResaleAuthorizationSortBy = exports.OfferSortBy = exports.DataProductSortBy = exports.ContainerProductSortBy = exports.EntityTypeFilters = exports.SaaSProductVisibilityString = exports.ResaleAuthorizationStatusString = exports.OfferTargetingString = exports.OfferStateString = exports.DataProductVisibilityString = exports.ContainerProductVisibilityString = exports.ResourceNotSupportedException = exports.ChangeStatus = exports.FailureCode = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.ResourceInUseException = exports.InternalServiceException = exports.SortOrder = exports.AmiProductSortBy = exports.AmiProductVisibilityString = exports.AccessDeniedException = void 0;
|
|
4
4
|
const MarketplaceCatalogServiceException_1 = require("./MarketplaceCatalogServiceException");
|
|
5
5
|
class AccessDeniedException extends MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException {
|
|
6
6
|
constructor(opts) {
|
|
@@ -16,6 +16,22 @@ class AccessDeniedException extends MarketplaceCatalogServiceException_1.Marketp
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
exports.AccessDeniedException = AccessDeniedException;
|
|
19
|
+
exports.AmiProductVisibilityString = {
|
|
20
|
+
Draft: "Draft",
|
|
21
|
+
Limited: "Limited",
|
|
22
|
+
Public: "Public",
|
|
23
|
+
Restricted: "Restricted",
|
|
24
|
+
};
|
|
25
|
+
exports.AmiProductSortBy = {
|
|
26
|
+
EntityId: "EntityId",
|
|
27
|
+
LastModifiedDate: "LastModifiedDate",
|
|
28
|
+
ProductTitle: "ProductTitle",
|
|
29
|
+
Visibility: "Visibility",
|
|
30
|
+
};
|
|
31
|
+
exports.SortOrder = {
|
|
32
|
+
ASCENDING: "ASCENDING",
|
|
33
|
+
DESCENDING: "DESCENDING",
|
|
34
|
+
};
|
|
19
35
|
class InternalServiceException extends MarketplaceCatalogServiceException_1.MarketplaceCatalogServiceException {
|
|
20
36
|
constructor(opts) {
|
|
21
37
|
super({
|
|
@@ -111,10 +127,120 @@ class ResourceNotSupportedException extends MarketplaceCatalogServiceException_1
|
|
|
111
127
|
}
|
|
112
128
|
}
|
|
113
129
|
exports.ResourceNotSupportedException = ResourceNotSupportedException;
|
|
114
|
-
exports.
|
|
115
|
-
|
|
116
|
-
|
|
130
|
+
exports.ContainerProductVisibilityString = {
|
|
131
|
+
Draft: "Draft",
|
|
132
|
+
Limited: "Limited",
|
|
133
|
+
Public: "Public",
|
|
134
|
+
Restricted: "Restricted",
|
|
135
|
+
};
|
|
136
|
+
exports.DataProductVisibilityString = {
|
|
137
|
+
Draft: "Draft",
|
|
138
|
+
Limited: "Limited",
|
|
139
|
+
Public: "Public",
|
|
140
|
+
Restricted: "Restricted",
|
|
141
|
+
Unavailable: "Unavailable",
|
|
142
|
+
};
|
|
143
|
+
exports.OfferStateString = {
|
|
144
|
+
Draft: "Draft",
|
|
145
|
+
Released: "Released",
|
|
146
|
+
};
|
|
147
|
+
exports.OfferTargetingString = {
|
|
148
|
+
BuyerAccounts: "BuyerAccounts",
|
|
149
|
+
CountryCodes: "CountryCodes",
|
|
150
|
+
None: "None",
|
|
151
|
+
ParticipatingPrograms: "ParticipatingPrograms",
|
|
152
|
+
};
|
|
153
|
+
exports.ResaleAuthorizationStatusString = {
|
|
154
|
+
Active: "Active",
|
|
155
|
+
Draft: "Draft",
|
|
156
|
+
Restricted: "Restricted",
|
|
157
|
+
};
|
|
158
|
+
exports.SaaSProductVisibilityString = {
|
|
159
|
+
Draft: "Draft",
|
|
160
|
+
Limited: "Limited",
|
|
161
|
+
Public: "Public",
|
|
162
|
+
Restricted: "Restricted",
|
|
163
|
+
};
|
|
164
|
+
var EntityTypeFilters;
|
|
165
|
+
(function (EntityTypeFilters) {
|
|
166
|
+
EntityTypeFilters.visit = (value, visitor) => {
|
|
167
|
+
if (value.DataProductFilters !== undefined)
|
|
168
|
+
return visitor.DataProductFilters(value.DataProductFilters);
|
|
169
|
+
if (value.SaaSProductFilters !== undefined)
|
|
170
|
+
return visitor.SaaSProductFilters(value.SaaSProductFilters);
|
|
171
|
+
if (value.AmiProductFilters !== undefined)
|
|
172
|
+
return visitor.AmiProductFilters(value.AmiProductFilters);
|
|
173
|
+
if (value.OfferFilters !== undefined)
|
|
174
|
+
return visitor.OfferFilters(value.OfferFilters);
|
|
175
|
+
if (value.ContainerProductFilters !== undefined)
|
|
176
|
+
return visitor.ContainerProductFilters(value.ContainerProductFilters);
|
|
177
|
+
if (value.ResaleAuthorizationFilters !== undefined)
|
|
178
|
+
return visitor.ResaleAuthorizationFilters(value.ResaleAuthorizationFilters);
|
|
179
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
180
|
+
};
|
|
181
|
+
})(EntityTypeFilters = exports.EntityTypeFilters || (exports.EntityTypeFilters = {}));
|
|
182
|
+
exports.ContainerProductSortBy = {
|
|
183
|
+
EntityId: "EntityId",
|
|
184
|
+
LastModifiedDate: "LastModifiedDate",
|
|
185
|
+
ProductTitle: "ProductTitle",
|
|
186
|
+
Visibility: "Visibility",
|
|
187
|
+
};
|
|
188
|
+
exports.DataProductSortBy = {
|
|
189
|
+
EntityId: "EntityId",
|
|
190
|
+
LastModifiedDate: "LastModifiedDate",
|
|
191
|
+
ProductTitle: "ProductTitle",
|
|
192
|
+
Visibility: "Visibility",
|
|
193
|
+
};
|
|
194
|
+
exports.OfferSortBy = {
|
|
195
|
+
AvailabilityEndDate: "AvailabilityEndDate",
|
|
196
|
+
BuyerAccounts: "BuyerAccounts",
|
|
197
|
+
EntityId: "EntityId",
|
|
198
|
+
LastModifiedDate: "LastModifiedDate",
|
|
199
|
+
Name: "Name",
|
|
200
|
+
ProductId: "ProductId",
|
|
201
|
+
ReleaseDate: "ReleaseDate",
|
|
202
|
+
State: "State",
|
|
203
|
+
Targeting: "Targeting",
|
|
204
|
+
};
|
|
205
|
+
exports.ResaleAuthorizationSortBy = {
|
|
206
|
+
AvailabilityEndDate: "AvailabilityEndDate",
|
|
207
|
+
CreatedDate: "CreatedDate",
|
|
208
|
+
EntityId: "EntityId",
|
|
209
|
+
LastModifiedDate: "LastModifiedDate",
|
|
210
|
+
ManufacturerAccountId: "ManufacturerAccountId",
|
|
211
|
+
ManufacturerLegalName: "ManufacturerLegalName",
|
|
212
|
+
Name: "Name",
|
|
213
|
+
OfferExtendedStatus: "OfferExtendedStatus",
|
|
214
|
+
ProductId: "ProductId",
|
|
215
|
+
ProductName: "ProductName",
|
|
216
|
+
ResellerAccountID: "ResellerAccountID",
|
|
217
|
+
ResellerLegalName: "ResellerLegalName",
|
|
218
|
+
Status: "Status",
|
|
219
|
+
};
|
|
220
|
+
exports.SaaSProductSortBy = {
|
|
221
|
+
EntityId: "EntityId",
|
|
222
|
+
LastModifiedDate: "LastModifiedDate",
|
|
223
|
+
ProductTitle: "ProductTitle",
|
|
224
|
+
Visibility: "Visibility",
|
|
117
225
|
};
|
|
226
|
+
var EntityTypeSort;
|
|
227
|
+
(function (EntityTypeSort) {
|
|
228
|
+
EntityTypeSort.visit = (value, visitor) => {
|
|
229
|
+
if (value.DataProductSort !== undefined)
|
|
230
|
+
return visitor.DataProductSort(value.DataProductSort);
|
|
231
|
+
if (value.SaaSProductSort !== undefined)
|
|
232
|
+
return visitor.SaaSProductSort(value.SaaSProductSort);
|
|
233
|
+
if (value.AmiProductSort !== undefined)
|
|
234
|
+
return visitor.AmiProductSort(value.AmiProductSort);
|
|
235
|
+
if (value.OfferSort !== undefined)
|
|
236
|
+
return visitor.OfferSort(value.OfferSort);
|
|
237
|
+
if (value.ContainerProductSort !== undefined)
|
|
238
|
+
return visitor.ContainerProductSort(value.ContainerProductSort);
|
|
239
|
+
if (value.ResaleAuthorizationSort !== undefined)
|
|
240
|
+
return visitor.ResaleAuthorizationSort(value.ResaleAuthorizationSort);
|
|
241
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
242
|
+
};
|
|
243
|
+
})(EntityTypeSort = exports.EntityTypeSort || (exports.EntityTypeSort = {}));
|
|
118
244
|
exports.OwnershipType = {
|
|
119
245
|
SELF: "SELF",
|
|
120
246
|
SHARED: "SHARED",
|
|
@@ -144,6 +144,8 @@ const se_ListEntitiesCommand = async (input, context) => {
|
|
|
144
144
|
body = JSON.stringify((0, smithy_client_1.take)(input, {
|
|
145
145
|
Catalog: [],
|
|
146
146
|
EntityType: [],
|
|
147
|
+
EntityTypeFilters: (_) => (0, smithy_client_1._json)(_),
|
|
148
|
+
EntityTypeSort: (_) => (0, smithy_client_1._json)(_),
|
|
147
149
|
FilterList: (_) => (0, smithy_client_1._json)(_),
|
|
148
150
|
MaxResults: [],
|
|
149
151
|
NextToken: [],
|
|
@@ -12,6 +12,22 @@ export class AccessDeniedException extends __BaseException {
|
|
|
12
12
|
this.Message = opts.Message;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
+
export const AmiProductVisibilityString = {
|
|
16
|
+
Draft: "Draft",
|
|
17
|
+
Limited: "Limited",
|
|
18
|
+
Public: "Public",
|
|
19
|
+
Restricted: "Restricted",
|
|
20
|
+
};
|
|
21
|
+
export const AmiProductSortBy = {
|
|
22
|
+
EntityId: "EntityId",
|
|
23
|
+
LastModifiedDate: "LastModifiedDate",
|
|
24
|
+
ProductTitle: "ProductTitle",
|
|
25
|
+
Visibility: "Visibility",
|
|
26
|
+
};
|
|
27
|
+
export const SortOrder = {
|
|
28
|
+
ASCENDING: "ASCENDING",
|
|
29
|
+
DESCENDING: "DESCENDING",
|
|
30
|
+
};
|
|
15
31
|
export class InternalServiceException extends __BaseException {
|
|
16
32
|
constructor(opts) {
|
|
17
33
|
super({
|
|
@@ -101,10 +117,120 @@ export class ResourceNotSupportedException extends __BaseException {
|
|
|
101
117
|
this.Message = opts.Message;
|
|
102
118
|
}
|
|
103
119
|
}
|
|
104
|
-
export const
|
|
105
|
-
|
|
106
|
-
|
|
120
|
+
export const ContainerProductVisibilityString = {
|
|
121
|
+
Draft: "Draft",
|
|
122
|
+
Limited: "Limited",
|
|
123
|
+
Public: "Public",
|
|
124
|
+
Restricted: "Restricted",
|
|
125
|
+
};
|
|
126
|
+
export const DataProductVisibilityString = {
|
|
127
|
+
Draft: "Draft",
|
|
128
|
+
Limited: "Limited",
|
|
129
|
+
Public: "Public",
|
|
130
|
+
Restricted: "Restricted",
|
|
131
|
+
Unavailable: "Unavailable",
|
|
132
|
+
};
|
|
133
|
+
export const OfferStateString = {
|
|
134
|
+
Draft: "Draft",
|
|
135
|
+
Released: "Released",
|
|
136
|
+
};
|
|
137
|
+
export const OfferTargetingString = {
|
|
138
|
+
BuyerAccounts: "BuyerAccounts",
|
|
139
|
+
CountryCodes: "CountryCodes",
|
|
140
|
+
None: "None",
|
|
141
|
+
ParticipatingPrograms: "ParticipatingPrograms",
|
|
142
|
+
};
|
|
143
|
+
export const ResaleAuthorizationStatusString = {
|
|
144
|
+
Active: "Active",
|
|
145
|
+
Draft: "Draft",
|
|
146
|
+
Restricted: "Restricted",
|
|
147
|
+
};
|
|
148
|
+
export const SaaSProductVisibilityString = {
|
|
149
|
+
Draft: "Draft",
|
|
150
|
+
Limited: "Limited",
|
|
151
|
+
Public: "Public",
|
|
152
|
+
Restricted: "Restricted",
|
|
153
|
+
};
|
|
154
|
+
export var EntityTypeFilters;
|
|
155
|
+
(function (EntityTypeFilters) {
|
|
156
|
+
EntityTypeFilters.visit = (value, visitor) => {
|
|
157
|
+
if (value.DataProductFilters !== undefined)
|
|
158
|
+
return visitor.DataProductFilters(value.DataProductFilters);
|
|
159
|
+
if (value.SaaSProductFilters !== undefined)
|
|
160
|
+
return visitor.SaaSProductFilters(value.SaaSProductFilters);
|
|
161
|
+
if (value.AmiProductFilters !== undefined)
|
|
162
|
+
return visitor.AmiProductFilters(value.AmiProductFilters);
|
|
163
|
+
if (value.OfferFilters !== undefined)
|
|
164
|
+
return visitor.OfferFilters(value.OfferFilters);
|
|
165
|
+
if (value.ContainerProductFilters !== undefined)
|
|
166
|
+
return visitor.ContainerProductFilters(value.ContainerProductFilters);
|
|
167
|
+
if (value.ResaleAuthorizationFilters !== undefined)
|
|
168
|
+
return visitor.ResaleAuthorizationFilters(value.ResaleAuthorizationFilters);
|
|
169
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
170
|
+
};
|
|
171
|
+
})(EntityTypeFilters || (EntityTypeFilters = {}));
|
|
172
|
+
export const ContainerProductSortBy = {
|
|
173
|
+
EntityId: "EntityId",
|
|
174
|
+
LastModifiedDate: "LastModifiedDate",
|
|
175
|
+
ProductTitle: "ProductTitle",
|
|
176
|
+
Visibility: "Visibility",
|
|
177
|
+
};
|
|
178
|
+
export const DataProductSortBy = {
|
|
179
|
+
EntityId: "EntityId",
|
|
180
|
+
LastModifiedDate: "LastModifiedDate",
|
|
181
|
+
ProductTitle: "ProductTitle",
|
|
182
|
+
Visibility: "Visibility",
|
|
183
|
+
};
|
|
184
|
+
export const OfferSortBy = {
|
|
185
|
+
AvailabilityEndDate: "AvailabilityEndDate",
|
|
186
|
+
BuyerAccounts: "BuyerAccounts",
|
|
187
|
+
EntityId: "EntityId",
|
|
188
|
+
LastModifiedDate: "LastModifiedDate",
|
|
189
|
+
Name: "Name",
|
|
190
|
+
ProductId: "ProductId",
|
|
191
|
+
ReleaseDate: "ReleaseDate",
|
|
192
|
+
State: "State",
|
|
193
|
+
Targeting: "Targeting",
|
|
194
|
+
};
|
|
195
|
+
export const ResaleAuthorizationSortBy = {
|
|
196
|
+
AvailabilityEndDate: "AvailabilityEndDate",
|
|
197
|
+
CreatedDate: "CreatedDate",
|
|
198
|
+
EntityId: "EntityId",
|
|
199
|
+
LastModifiedDate: "LastModifiedDate",
|
|
200
|
+
ManufacturerAccountId: "ManufacturerAccountId",
|
|
201
|
+
ManufacturerLegalName: "ManufacturerLegalName",
|
|
202
|
+
Name: "Name",
|
|
203
|
+
OfferExtendedStatus: "OfferExtendedStatus",
|
|
204
|
+
ProductId: "ProductId",
|
|
205
|
+
ProductName: "ProductName",
|
|
206
|
+
ResellerAccountID: "ResellerAccountID",
|
|
207
|
+
ResellerLegalName: "ResellerLegalName",
|
|
208
|
+
Status: "Status",
|
|
209
|
+
};
|
|
210
|
+
export const SaaSProductSortBy = {
|
|
211
|
+
EntityId: "EntityId",
|
|
212
|
+
LastModifiedDate: "LastModifiedDate",
|
|
213
|
+
ProductTitle: "ProductTitle",
|
|
214
|
+
Visibility: "Visibility",
|
|
107
215
|
};
|
|
216
|
+
export var EntityTypeSort;
|
|
217
|
+
(function (EntityTypeSort) {
|
|
218
|
+
EntityTypeSort.visit = (value, visitor) => {
|
|
219
|
+
if (value.DataProductSort !== undefined)
|
|
220
|
+
return visitor.DataProductSort(value.DataProductSort);
|
|
221
|
+
if (value.SaaSProductSort !== undefined)
|
|
222
|
+
return visitor.SaaSProductSort(value.SaaSProductSort);
|
|
223
|
+
if (value.AmiProductSort !== undefined)
|
|
224
|
+
return visitor.AmiProductSort(value.AmiProductSort);
|
|
225
|
+
if (value.OfferSort !== undefined)
|
|
226
|
+
return visitor.OfferSort(value.OfferSort);
|
|
227
|
+
if (value.ContainerProductSort !== undefined)
|
|
228
|
+
return visitor.ContainerProductSort(value.ContainerProductSort);
|
|
229
|
+
if (value.ResaleAuthorizationSort !== undefined)
|
|
230
|
+
return visitor.ResaleAuthorizationSort(value.ResaleAuthorizationSort);
|
|
231
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
232
|
+
};
|
|
233
|
+
})(EntityTypeSort || (EntityTypeSort = {}));
|
|
108
234
|
export const OwnershipType = {
|
|
109
235
|
SELF: "SELF",
|
|
110
236
|
SHARED: "SHARED",
|
|
@@ -135,6 +135,8 @@ export const se_ListEntitiesCommand = async (input, context) => {
|
|
|
135
135
|
body = JSON.stringify(take(input, {
|
|
136
136
|
Catalog: [],
|
|
137
137
|
EntityType: [],
|
|
138
|
+
EntityTypeFilters: (_) => _json(_),
|
|
139
|
+
EntityTypeSort: (_) => _json(_),
|
|
138
140
|
FilterList: (_) => _json(_),
|
|
139
141
|
MaxResults: [],
|
|
140
142
|
NextToken: [],
|
|
@@ -48,6 +48,262 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad
|
|
|
48
48
|
* NextToken: "STRING_VALUE",
|
|
49
49
|
* MaxResults: Number("int"),
|
|
50
50
|
* OwnershipType: "SELF" || "SHARED",
|
|
51
|
+
* EntityTypeFilters: { // EntityTypeFilters Union: only one key present
|
|
52
|
+
* DataProductFilters: { // DataProductFilters
|
|
53
|
+
* EntityId: { // DataProductEntityIdFilter
|
|
54
|
+
* ValueList: [ // DataProductEntityIdFilterValueList
|
|
55
|
+
* "STRING_VALUE",
|
|
56
|
+
* ],
|
|
57
|
+
* },
|
|
58
|
+
* ProductTitle: { // DataProductTitleFilter
|
|
59
|
+
* ValueList: [ // DataProductTitleFilterValueList
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
62
|
+
* WildCardValue: "STRING_VALUE",
|
|
63
|
+
* },
|
|
64
|
+
* Visibility: { // DataProductVisibilityFilter
|
|
65
|
+
* ValueList: [ // DataProductVisibilityFilterValueList
|
|
66
|
+
* "Limited" || "Public" || "Restricted" || "Unavailable" || "Draft",
|
|
67
|
+
* ],
|
|
68
|
+
* },
|
|
69
|
+
* LastModifiedDate: { // DataProductLastModifiedDateFilter
|
|
70
|
+
* DateRange: { // DataProductLastModifiedDateFilterDateRange
|
|
71
|
+
* AfterValue: "STRING_VALUE",
|
|
72
|
+
* BeforeValue: "STRING_VALUE",
|
|
73
|
+
* },
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* SaaSProductFilters: { // SaaSProductFilters
|
|
77
|
+
* EntityId: { // SaaSProductEntityIdFilter
|
|
78
|
+
* ValueList: [ // SaaSProductEntityIdFilterValueList
|
|
79
|
+
* "STRING_VALUE",
|
|
80
|
+
* ],
|
|
81
|
+
* },
|
|
82
|
+
* ProductTitle: { // SaaSProductTitleFilter
|
|
83
|
+
* ValueList: [ // SaaSProductTitleFilterValueList
|
|
84
|
+
* "STRING_VALUE",
|
|
85
|
+
* ],
|
|
86
|
+
* WildCardValue: "STRING_VALUE",
|
|
87
|
+
* },
|
|
88
|
+
* Visibility: { // SaaSProductVisibilityFilter
|
|
89
|
+
* ValueList: [ // SaaSProductVisibilityFilterValueList
|
|
90
|
+
* "Limited" || "Public" || "Restricted" || "Draft",
|
|
91
|
+
* ],
|
|
92
|
+
* },
|
|
93
|
+
* LastModifiedDate: { // SaaSProductLastModifiedDateFilter
|
|
94
|
+
* DateRange: { // SaaSProductLastModifiedDateFilterDateRange
|
|
95
|
+
* AfterValue: "STRING_VALUE",
|
|
96
|
+
* BeforeValue: "STRING_VALUE",
|
|
97
|
+
* },
|
|
98
|
+
* },
|
|
99
|
+
* },
|
|
100
|
+
* AmiProductFilters: { // AmiProductFilters
|
|
101
|
+
* EntityId: { // AmiProductEntityIdFilter
|
|
102
|
+
* ValueList: [ // AmiProductEntityIdFilterValueList
|
|
103
|
+
* "STRING_VALUE",
|
|
104
|
+
* ],
|
|
105
|
+
* },
|
|
106
|
+
* LastModifiedDate: { // AmiProductLastModifiedDateFilter
|
|
107
|
+
* DateRange: { // AmiProductLastModifiedDateFilterDateRange
|
|
108
|
+
* AfterValue: "STRING_VALUE",
|
|
109
|
+
* BeforeValue: "STRING_VALUE",
|
|
110
|
+
* },
|
|
111
|
+
* },
|
|
112
|
+
* ProductTitle: { // AmiProductTitleFilter
|
|
113
|
+
* ValueList: [ // AmiProductTitleFilterValueList
|
|
114
|
+
* "STRING_VALUE",
|
|
115
|
+
* ],
|
|
116
|
+
* WildCardValue: "STRING_VALUE",
|
|
117
|
+
* },
|
|
118
|
+
* Visibility: { // AmiProductVisibilityFilter
|
|
119
|
+
* ValueList: [ // AmiProductVisibilityFilterValueList
|
|
120
|
+
* "Limited" || "Public" || "Restricted" || "Draft",
|
|
121
|
+
* ],
|
|
122
|
+
* },
|
|
123
|
+
* },
|
|
124
|
+
* OfferFilters: { // OfferFilters
|
|
125
|
+
* EntityId: { // OfferEntityIdFilter
|
|
126
|
+
* ValueList: [ // OfferEntityIdFilterValueList
|
|
127
|
+
* "STRING_VALUE",
|
|
128
|
+
* ],
|
|
129
|
+
* },
|
|
130
|
+
* Name: { // OfferNameFilter
|
|
131
|
+
* ValueList: [ // OfferNameFilterValueList
|
|
132
|
+
* "STRING_VALUE",
|
|
133
|
+
* ],
|
|
134
|
+
* WildCardValue: "STRING_VALUE",
|
|
135
|
+
* },
|
|
136
|
+
* ProductId: { // OfferProductIdFilter
|
|
137
|
+
* ValueList: [ // OfferProductIdFilterValueList
|
|
138
|
+
* "STRING_VALUE",
|
|
139
|
+
* ],
|
|
140
|
+
* },
|
|
141
|
+
* ReleaseDate: { // OfferReleaseDateFilter
|
|
142
|
+
* DateRange: { // OfferReleaseDateFilterDateRange
|
|
143
|
+
* AfterValue: "STRING_VALUE",
|
|
144
|
+
* BeforeValue: "STRING_VALUE",
|
|
145
|
+
* },
|
|
146
|
+
* },
|
|
147
|
+
* AvailabilityEndDate: { // OfferAvailabilityEndDateFilter
|
|
148
|
+
* DateRange: { // OfferAvailabilityEndDateFilterDateRange
|
|
149
|
+
* AfterValue: "STRING_VALUE",
|
|
150
|
+
* BeforeValue: "STRING_VALUE",
|
|
151
|
+
* },
|
|
152
|
+
* },
|
|
153
|
+
* BuyerAccounts: { // OfferBuyerAccountsFilter
|
|
154
|
+
* WildCardValue: "STRING_VALUE",
|
|
155
|
+
* },
|
|
156
|
+
* State: { // OfferStateFilter
|
|
157
|
+
* ValueList: [ // OfferStateFilterValueList
|
|
158
|
+
* "Draft" || "Released",
|
|
159
|
+
* ],
|
|
160
|
+
* },
|
|
161
|
+
* Targeting: { // OfferTargetingFilter
|
|
162
|
+
* ValueList: [ // OfferTargetingFilterValueList
|
|
163
|
+
* "BuyerAccounts" || "ParticipatingPrograms" || "CountryCodes" || "None",
|
|
164
|
+
* ],
|
|
165
|
+
* },
|
|
166
|
+
* LastModifiedDate: { // OfferLastModifiedDateFilter
|
|
167
|
+
* DateRange: { // OfferLastModifiedDateFilterDateRange
|
|
168
|
+
* AfterValue: "STRING_VALUE",
|
|
169
|
+
* BeforeValue: "STRING_VALUE",
|
|
170
|
+
* },
|
|
171
|
+
* },
|
|
172
|
+
* },
|
|
173
|
+
* ContainerProductFilters: { // ContainerProductFilters
|
|
174
|
+
* EntityId: { // ContainerProductEntityIdFilter
|
|
175
|
+
* ValueList: [ // ContainerProductEntityIdFilterValueList
|
|
176
|
+
* "STRING_VALUE",
|
|
177
|
+
* ],
|
|
178
|
+
* },
|
|
179
|
+
* LastModifiedDate: { // ContainerProductLastModifiedDateFilter
|
|
180
|
+
* DateRange: { // ContainerProductLastModifiedDateFilterDateRange
|
|
181
|
+
* AfterValue: "STRING_VALUE",
|
|
182
|
+
* BeforeValue: "STRING_VALUE",
|
|
183
|
+
* },
|
|
184
|
+
* },
|
|
185
|
+
* ProductTitle: { // ContainerProductTitleFilter
|
|
186
|
+
* ValueList: [ // ContainerProductTitleFilterValueList
|
|
187
|
+
* "STRING_VALUE",
|
|
188
|
+
* ],
|
|
189
|
+
* WildCardValue: "STRING_VALUE",
|
|
190
|
+
* },
|
|
191
|
+
* Visibility: { // ContainerProductVisibilityFilter
|
|
192
|
+
* ValueList: [ // ContainerProductVisibilityFilterValueList
|
|
193
|
+
* "Limited" || "Public" || "Restricted" || "Draft",
|
|
194
|
+
* ],
|
|
195
|
+
* },
|
|
196
|
+
* },
|
|
197
|
+
* ResaleAuthorizationFilters: { // ResaleAuthorizationFilters
|
|
198
|
+
* EntityId: { // ResaleAuthorizationEntityIdFilter
|
|
199
|
+
* ValueList: [ // ResaleAuthorizationEntityIdFilterValueList
|
|
200
|
+
* "STRING_VALUE",
|
|
201
|
+
* ],
|
|
202
|
+
* },
|
|
203
|
+
* Name: { // ResaleAuthorizationNameFilter
|
|
204
|
+
* ValueList: [ // ResaleAuthorizationNameFilterValueList
|
|
205
|
+
* "STRING_VALUE",
|
|
206
|
+
* ],
|
|
207
|
+
* WildCardValue: "STRING_VALUE",
|
|
208
|
+
* },
|
|
209
|
+
* ProductId: { // ResaleAuthorizationProductIdFilter
|
|
210
|
+
* ValueList: [ // ResaleAuthorizationProductIdFilterValueList
|
|
211
|
+
* "STRING_VALUE",
|
|
212
|
+
* ],
|
|
213
|
+
* WildCardValue: "STRING_VALUE",
|
|
214
|
+
* },
|
|
215
|
+
* CreatedDate: { // ResaleAuthorizationCreatedDateFilter
|
|
216
|
+
* DateRange: { // ResaleAuthorizationCreatedDateFilterDateRange
|
|
217
|
+
* AfterValue: "STRING_VALUE",
|
|
218
|
+
* BeforeValue: "STRING_VALUE",
|
|
219
|
+
* },
|
|
220
|
+
* ValueList: [ // ResaleAuthorizationCreatedDateFilterValueList
|
|
221
|
+
* "STRING_VALUE",
|
|
222
|
+
* ],
|
|
223
|
+
* },
|
|
224
|
+
* AvailabilityEndDate: { // ResaleAuthorizationAvailabilityEndDateFilter
|
|
225
|
+
* DateRange: { // ResaleAuthorizationAvailabilityEndDateFilterDateRange
|
|
226
|
+
* AfterValue: "STRING_VALUE",
|
|
227
|
+
* BeforeValue: "STRING_VALUE",
|
|
228
|
+
* },
|
|
229
|
+
* ValueList: [ // ResaleAuthorizationAvailabilityEndDateFilterValueList
|
|
230
|
+
* "STRING_VALUE",
|
|
231
|
+
* ],
|
|
232
|
+
* },
|
|
233
|
+
* ManufacturerAccountId: { // ResaleAuthorizationManufacturerAccountIdFilter
|
|
234
|
+
* ValueList: [ // ResaleAuthorizationManufacturerAccountIdFilterValueList
|
|
235
|
+
* "STRING_VALUE",
|
|
236
|
+
* ],
|
|
237
|
+
* WildCardValue: "STRING_VALUE",
|
|
238
|
+
* },
|
|
239
|
+
* ProductName: { // ResaleAuthorizationProductNameFilter
|
|
240
|
+
* ValueList: [ // ResaleAuthorizationProductNameFilterValueList
|
|
241
|
+
* "STRING_VALUE",
|
|
242
|
+
* ],
|
|
243
|
+
* WildCardValue: "STRING_VALUE",
|
|
244
|
+
* },
|
|
245
|
+
* ManufacturerLegalName: { // ResaleAuthorizationManufacturerLegalNameFilter
|
|
246
|
+
* ValueList: [ // ResaleAuthorizationManufacturerLegalNameFilterValueList
|
|
247
|
+
* "STRING_VALUE",
|
|
248
|
+
* ],
|
|
249
|
+
* WildCardValue: "STRING_VALUE",
|
|
250
|
+
* },
|
|
251
|
+
* ResellerAccountID: { // ResaleAuthorizationResellerAccountIDFilter
|
|
252
|
+
* ValueList: [ // ResaleAuthorizationResellerAccountIDFilterValueList
|
|
253
|
+
* "STRING_VALUE",
|
|
254
|
+
* ],
|
|
255
|
+
* WildCardValue: "STRING_VALUE",
|
|
256
|
+
* },
|
|
257
|
+
* ResellerLegalName: { // ResaleAuthorizationResellerLegalNameFilter
|
|
258
|
+
* ValueList: [ // ResaleAuthorizationResellerLegalNameFilterValueList
|
|
259
|
+
* "STRING_VALUE",
|
|
260
|
+
* ],
|
|
261
|
+
* WildCardValue: "STRING_VALUE",
|
|
262
|
+
* },
|
|
263
|
+
* Status: { // ResaleAuthorizationStatusFilter
|
|
264
|
+
* ValueList: [ // ResaleAuthorizationStatusFilterValueList
|
|
265
|
+
* "Draft" || "Active" || "Restricted",
|
|
266
|
+
* ],
|
|
267
|
+
* },
|
|
268
|
+
* OfferExtendedStatus: { // ResaleAuthorizationOfferExtendedStatusFilter
|
|
269
|
+
* ValueList: [ // ResaleAuthorizationOfferExtendedStatusFilterValueList
|
|
270
|
+
* "STRING_VALUE",
|
|
271
|
+
* ],
|
|
272
|
+
* },
|
|
273
|
+
* LastModifiedDate: { // ResaleAuthorizationLastModifiedDateFilter
|
|
274
|
+
* DateRange: { // ResaleAuthorizationLastModifiedDateFilterDateRange
|
|
275
|
+
* AfterValue: "STRING_VALUE",
|
|
276
|
+
* BeforeValue: "STRING_VALUE",
|
|
277
|
+
* },
|
|
278
|
+
* },
|
|
279
|
+
* },
|
|
280
|
+
* },
|
|
281
|
+
* EntityTypeSort: { // EntityTypeSort Union: only one key present
|
|
282
|
+
* DataProductSort: { // DataProductSort
|
|
283
|
+
* SortBy: "EntityId" || "ProductTitle" || "Visibility" || "LastModifiedDate",
|
|
284
|
+
* SortOrder: "ASCENDING" || "DESCENDING",
|
|
285
|
+
* },
|
|
286
|
+
* SaaSProductSort: { // SaaSProductSort
|
|
287
|
+
* SortBy: "EntityId" || "ProductTitle" || "Visibility" || "LastModifiedDate",
|
|
288
|
+
* SortOrder: "ASCENDING" || "DESCENDING",
|
|
289
|
+
* },
|
|
290
|
+
* AmiProductSort: { // AmiProductSort
|
|
291
|
+
* SortBy: "EntityId" || "LastModifiedDate" || "ProductTitle" || "Visibility",
|
|
292
|
+
* SortOrder: "ASCENDING" || "DESCENDING",
|
|
293
|
+
* },
|
|
294
|
+
* OfferSort: { // OfferSort
|
|
295
|
+
* SortBy: "EntityId" || "Name" || "ProductId" || "ReleaseDate" || "AvailabilityEndDate" || "BuyerAccounts" || "State" || "Targeting" || "LastModifiedDate",
|
|
296
|
+
* SortOrder: "ASCENDING" || "DESCENDING",
|
|
297
|
+
* },
|
|
298
|
+
* ContainerProductSort: { // ContainerProductSort
|
|
299
|
+
* SortBy: "EntityId" || "LastModifiedDate" || "ProductTitle" || "Visibility",
|
|
300
|
+
* SortOrder: "ASCENDING" || "DESCENDING",
|
|
301
|
+
* },
|
|
302
|
+
* ResaleAuthorizationSort: { // ResaleAuthorizationSort
|
|
303
|
+
* SortBy: "EntityId" || "Name" || "ProductId" || "ProductName" || "ManufacturerAccountId" || "ManufacturerLegalName" || "ResellerAccountID" || "ResellerLegalName" || "Status" || "OfferExtendedStatus" || "CreatedDate" || "AvailabilityEndDate" || "LastModifiedDate",
|
|
304
|
+
* SortOrder: "ASCENDING" || "DESCENDING",
|
|
305
|
+
* },
|
|
306
|
+
* },
|
|
51
307
|
* };
|
|
52
308
|
* const command = new ListEntitiesCommand(input);
|
|
53
309
|
* const response = await client.send(command);
|
|
@@ -60,6 +316,48 @@ export interface ListEntitiesCommandOutput extends ListEntitiesResponse, __Metad
|
|
|
60
316
|
* // EntityArn: "STRING_VALUE",
|
|
61
317
|
* // LastModifiedDate: "STRING_VALUE",
|
|
62
318
|
* // Visibility: "STRING_VALUE",
|
|
319
|
+
* // AmiProductSummary: { // AmiProductSummary
|
|
320
|
+
* // ProductTitle: "STRING_VALUE",
|
|
321
|
+
* // Visibility: "Limited" || "Public" || "Restricted" || "Draft",
|
|
322
|
+
* // },
|
|
323
|
+
* // ContainerProductSummary: { // ContainerProductSummary
|
|
324
|
+
* // ProductTitle: "STRING_VALUE",
|
|
325
|
+
* // Visibility: "Limited" || "Public" || "Restricted" || "Draft",
|
|
326
|
+
* // },
|
|
327
|
+
* // DataProductSummary: { // DataProductSummary
|
|
328
|
+
* // ProductTitle: "STRING_VALUE",
|
|
329
|
+
* // Visibility: "Limited" || "Public" || "Restricted" || "Unavailable" || "Draft",
|
|
330
|
+
* // },
|
|
331
|
+
* // SaaSProductSummary: { // SaaSProductSummary
|
|
332
|
+
* // ProductTitle: "STRING_VALUE",
|
|
333
|
+
* // Visibility: "Limited" || "Public" || "Restricted" || "Draft",
|
|
334
|
+
* // },
|
|
335
|
+
* // OfferSummary: { // OfferSummary
|
|
336
|
+
* // Name: "STRING_VALUE",
|
|
337
|
+
* // ProductId: "STRING_VALUE",
|
|
338
|
+
* // ReleaseDate: "STRING_VALUE",
|
|
339
|
+
* // AvailabilityEndDate: "STRING_VALUE",
|
|
340
|
+
* // BuyerAccounts: [ // OfferBuyerAccountsList
|
|
341
|
+
* // "STRING_VALUE",
|
|
342
|
+
* // ],
|
|
343
|
+
* // State: "Draft" || "Released",
|
|
344
|
+
* // Targeting: [ // OfferTargetingList
|
|
345
|
+
* // "BuyerAccounts" || "ParticipatingPrograms" || "CountryCodes" || "None",
|
|
346
|
+
* // ],
|
|
347
|
+
* // },
|
|
348
|
+
* // ResaleAuthorizationSummary: { // ResaleAuthorizationSummary
|
|
349
|
+
* // Name: "STRING_VALUE",
|
|
350
|
+
* // ProductId: "STRING_VALUE",
|
|
351
|
+
* // ProductName: "STRING_VALUE",
|
|
352
|
+
* // ManufacturerAccountId: "STRING_VALUE",
|
|
353
|
+
* // ManufacturerLegalName: "STRING_VALUE",
|
|
354
|
+
* // ResellerAccountID: "STRING_VALUE",
|
|
355
|
+
* // ResellerLegalName: "STRING_VALUE",
|
|
356
|
+
* // Status: "Draft" || "Active" || "Restricted",
|
|
357
|
+
* // OfferExtendedStatus: "STRING_VALUE",
|
|
358
|
+
* // CreatedDate: "STRING_VALUE",
|
|
359
|
+
* // AvailabilityEndDate: "STRING_VALUE",
|
|
360
|
+
* // },
|
|
63
361
|
* // },
|
|
64
362
|
* // ],
|
|
65
363
|
* // NextToken: "STRING_VALUE",
|