@aws-sdk/client-appflow 3.229.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.
@@ -56,15 +56,6 @@ exports.ruleSet = {
56
56
  },
57
57
  ],
58
58
  },
59
- {
60
- fn: "parseURL",
61
- argv: [
62
- {
63
- ref: "Endpoint",
64
- },
65
- ],
66
- assign: "url",
67
- },
68
59
  ],
69
60
  type: "tree",
70
61
  rules: [
@@ -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;
@@ -53,15 +53,6 @@ export const ruleSet = {
53
53
  },
54
54
  ],
55
55
  },
56
- {
57
- fn: "parseURL",
58
- argv: [
59
- {
60
- ref: "Endpoint",
61
- },
62
- ],
63
- assign: "url",
64
- },
65
56
  ],
66
57
  type: "tree",
67
58
  rules: [
@@ -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.229.0",
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",
@@ -19,9 +19,9 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.229.0",
23
- "@aws-sdk/config-resolver": "3.226.0",
24
- "@aws-sdk/credential-provider-node": "3.229.0",
22
+ "@aws-sdk/client-sts": "3.231.0",
23
+ "@aws-sdk/config-resolver": "3.231.0",
24
+ "@aws-sdk/credential-provider-node": "3.231.0",
25
25
  "@aws-sdk/fetch-http-handler": "3.226.0",
26
26
  "@aws-sdk/hash-node": "3.226.0",
27
27
  "@aws-sdk/invalid-dependency": "3.226.0",
@@ -45,7 +45,7 @@
45
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
46
46
  "@aws-sdk/util-body-length-node": "3.208.0",
47
47
  "@aws-sdk/util-defaults-mode-browser": "3.226.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.226.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.231.0",
49
49
  "@aws-sdk/util-endpoints": "3.226.0",
50
50
  "@aws-sdk/util-retry": "3.229.0",
51
51
  "@aws-sdk/util-user-agent-browser": "3.226.0",