@aws-sdk/client-appflow 3.231.0 → 3.233.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/endpoint/ruleset.js +0 -9
- package/dist-cjs/protocols/Aws_restJson1.js +5 -0
- package/dist-es/endpoint/ruleset.js +0 -9
- package/dist-es/protocols/Aws_restJson1.js +5 -0
- package/dist-types/models/models_0.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/package.json +1 -1
|
@@ -268,6 +268,8 @@ const serializeAws_restJson1ListConnectorEntitiesCommand = async (input, context
|
|
|
268
268
|
...(input.connectorProfileName != null && { connectorProfileName: input.connectorProfileName }),
|
|
269
269
|
...(input.connectorType != null && { connectorType: input.connectorType }),
|
|
270
270
|
...(input.entitiesPath != null && { entitiesPath: input.entitiesPath }),
|
|
271
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
272
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
271
273
|
});
|
|
272
274
|
return new protocol_http_1.HttpRequest({
|
|
273
275
|
protocol,
|
|
@@ -1051,6 +1053,9 @@ const deserializeAws_restJson1ListConnectorEntitiesCommand = async (output, cont
|
|
|
1051
1053
|
if (data.connectorEntityMap != null) {
|
|
1052
1054
|
contents.connectorEntityMap = deserializeAws_restJson1ConnectorEntityMap(data.connectorEntityMap, context);
|
|
1053
1055
|
}
|
|
1056
|
+
if (data.nextToken != null) {
|
|
1057
|
+
contents.nextToken = (0, smithy_client_1.expectString)(data.nextToken);
|
|
1058
|
+
}
|
|
1054
1059
|
return contents;
|
|
1055
1060
|
};
|
|
1056
1061
|
exports.deserializeAws_restJson1ListConnectorEntitiesCommand = deserializeAws_restJson1ListConnectorEntitiesCommand;
|
|
@@ -255,6 +255,8 @@ export const serializeAws_restJson1ListConnectorEntitiesCommand = async (input,
|
|
|
255
255
|
...(input.connectorProfileName != null && { connectorProfileName: input.connectorProfileName }),
|
|
256
256
|
...(input.connectorType != null && { connectorType: input.connectorType }),
|
|
257
257
|
...(input.entitiesPath != null && { entitiesPath: input.entitiesPath }),
|
|
258
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
259
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
258
260
|
});
|
|
259
261
|
return new __HttpRequest({
|
|
260
262
|
protocol,
|
|
@@ -1015,6 +1017,9 @@ export const deserializeAws_restJson1ListConnectorEntitiesCommand = async (outpu
|
|
|
1015
1017
|
if (data.connectorEntityMap != null) {
|
|
1016
1018
|
contents.connectorEntityMap = deserializeAws_restJson1ConnectorEntityMap(data.connectorEntityMap, context);
|
|
1017
1019
|
}
|
|
1020
|
+
if (data.nextToken != null) {
|
|
1021
|
+
contents.nextToken = __expectString(data.nextToken);
|
|
1022
|
+
}
|
|
1018
1023
|
return contents;
|
|
1019
1024
|
};
|
|
1020
1025
|
const deserializeAws_restJson1ListConnectorEntitiesCommandError = async (output, context) => {
|
|
@@ -3994,6 +3994,16 @@ export interface ListConnectorEntitiesRequest {
|
|
|
3994
3994
|
* <p>The version of the API that's used by the connector.</p>
|
|
3995
3995
|
*/
|
|
3996
3996
|
apiVersion?: string;
|
|
3997
|
+
/**
|
|
3998
|
+
* <p>The maximum number of items that the operation returns in the response.</p>
|
|
3999
|
+
*/
|
|
4000
|
+
maxResults?: number;
|
|
4001
|
+
/**
|
|
4002
|
+
* <p>A token that was provided by your prior <code>ListConnectorEntities</code> operation if
|
|
4003
|
+
* the response was too big for the page size. You specify this token to get the next page of
|
|
4004
|
+
* results in paginated response.</p>
|
|
4005
|
+
*/
|
|
4006
|
+
nextToken?: string;
|
|
3997
4007
|
}
|
|
3998
4008
|
export interface ListConnectorEntitiesResponse {
|
|
3999
4009
|
/**
|
|
@@ -4002,6 +4012,12 @@ export interface ListConnectorEntitiesResponse {
|
|
|
4002
4012
|
* belonging to that group. </p>
|
|
4003
4013
|
*/
|
|
4004
4014
|
connectorEntityMap: Record<string, ConnectorEntity[]> | undefined;
|
|
4015
|
+
/**
|
|
4016
|
+
* <p>A token that you specify in your next <code>ListConnectorEntities</code> operation to get
|
|
4017
|
+
* the next page of results in paginated response. The <code>ListConnectorEntities</code>
|
|
4018
|
+
* operation provides this token if the response is too big for the page size.</p>
|
|
4019
|
+
*/
|
|
4020
|
+
nextToken?: string;
|
|
4005
4021
|
}
|
|
4006
4022
|
export interface ListConnectorsRequest {
|
|
4007
4023
|
/**
|
|
@@ -1392,9 +1392,12 @@ export interface ListConnectorEntitiesRequest {
|
|
|
1392
1392
|
connectorType?: ConnectorType | string;
|
|
1393
1393
|
entitiesPath?: string;
|
|
1394
1394
|
apiVersion?: string;
|
|
1395
|
+
maxResults?: number;
|
|
1396
|
+
nextToken?: string;
|
|
1395
1397
|
}
|
|
1396
1398
|
export interface ListConnectorEntitiesResponse {
|
|
1397
1399
|
connectorEntityMap: Record<string, ConnectorEntity[]> | undefined;
|
|
1400
|
+
nextToken?: string;
|
|
1398
1401
|
}
|
|
1399
1402
|
export interface ListConnectorsRequest {
|
|
1400
1403
|
maxResults?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appflow",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appflow Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.233.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|