@aws-sdk/client-kafka 3.583.0 → 3.587.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
CHANGED
|
@@ -2859,6 +2859,11 @@ var de_ConsumerGroupReplication = /* @__PURE__ */ __name((output, context) => {
|
|
|
2859
2859
|
SynchroniseConsumerGroupOffsets: [, import_smithy_client.expectBoolean, `synchroniseConsumerGroupOffsets`]
|
|
2860
2860
|
});
|
|
2861
2861
|
}, "de_ConsumerGroupReplication");
|
|
2862
|
+
var de_ControllerNodeInfo = /* @__PURE__ */ __name((output, context) => {
|
|
2863
|
+
return (0, import_smithy_client.take)(output, {
|
|
2864
|
+
Endpoints: [, import_smithy_client._json, `endpoints`]
|
|
2865
|
+
});
|
|
2866
|
+
}, "de_ControllerNodeInfo");
|
|
2862
2867
|
var de_EBSStorageInfo = /* @__PURE__ */ __name((output, context) => {
|
|
2863
2868
|
return (0, import_smithy_client.take)(output, {
|
|
2864
2869
|
ProvisionedThroughput: [, (_) => de_ProvisionedThroughput(_, context), `provisionedThroughput`],
|
|
@@ -2970,6 +2975,7 @@ var de_NodeInfo = /* @__PURE__ */ __name((output, context) => {
|
|
|
2970
2975
|
return (0, import_smithy_client.take)(output, {
|
|
2971
2976
|
AddedToClusterTime: [, import_smithy_client.expectString, `addedToClusterTime`],
|
|
2972
2977
|
BrokerNodeInfo: [, (_) => de_BrokerNodeInfo(_, context), `brokerNodeInfo`],
|
|
2978
|
+
ControllerNodeInfo: [, (_) => de_ControllerNodeInfo(_, context), `controllerNodeInfo`],
|
|
2973
2979
|
InstanceType: [, import_smithy_client.expectString, `instanceType`],
|
|
2974
2980
|
NodeARN: [, import_smithy_client.expectString, `nodeARN`],
|
|
2975
2981
|
NodeType: [, import_smithy_client.expectString, `nodeType`],
|
|
@@ -2346,6 +2346,11 @@ const de_ConsumerGroupReplication = (output, context) => {
|
|
|
2346
2346
|
SynchroniseConsumerGroupOffsets: [, __expectBoolean, `synchroniseConsumerGroupOffsets`],
|
|
2347
2347
|
});
|
|
2348
2348
|
};
|
|
2349
|
+
const de_ControllerNodeInfo = (output, context) => {
|
|
2350
|
+
return take(output, {
|
|
2351
|
+
Endpoints: [, _json, `endpoints`],
|
|
2352
|
+
});
|
|
2353
|
+
};
|
|
2349
2354
|
const de_EBSStorageInfo = (output, context) => {
|
|
2350
2355
|
return take(output, {
|
|
2351
2356
|
ProvisionedThroughput: [, (_) => de_ProvisionedThroughput(_, context), `provisionedThroughput`],
|
|
@@ -2457,6 +2462,7 @@ const de_NodeInfo = (output, context) => {
|
|
|
2457
2462
|
return take(output, {
|
|
2458
2463
|
AddedToClusterTime: [, __expectString, `addedToClusterTime`],
|
|
2459
2464
|
BrokerNodeInfo: [, (_) => de_BrokerNodeInfo(_, context), `brokerNodeInfo`],
|
|
2465
|
+
ControllerNodeInfo: [, (_) => de_ControllerNodeInfo(_, context), `controllerNodeInfo`],
|
|
2460
2466
|
InstanceType: [, __expectString, `instanceType`],
|
|
2461
2467
|
NodeARN: [, __expectString, `nodeARN`],
|
|
2462
2468
|
NodeType: [, __expectString, `nodeType`],
|
|
@@ -59,6 +59,11 @@ declare const ListNodesCommand_base: {
|
|
|
59
59
|
* // "STRING_VALUE",
|
|
60
60
|
* // ],
|
|
61
61
|
* // },
|
|
62
|
+
* // ControllerNodeInfo: { // ControllerNodeInfo
|
|
63
|
+
* // Endpoints: [
|
|
64
|
+
* // "STRING_VALUE",
|
|
65
|
+
* // ],
|
|
66
|
+
* // },
|
|
62
67
|
* // InstanceType: "STRING_VALUE",
|
|
63
68
|
* // NodeARN: "STRING_VALUE",
|
|
64
69
|
* // NodeType: "BROKER",
|
|
@@ -1462,6 +1462,17 @@ export interface BrokerNodeInfo {
|
|
|
1462
1462
|
*/
|
|
1463
1463
|
Endpoints?: string[];
|
|
1464
1464
|
}
|
|
1465
|
+
/**
|
|
1466
|
+
* <p>Controller node information.</p>
|
|
1467
|
+
* @public
|
|
1468
|
+
*/
|
|
1469
|
+
export interface ControllerNodeInfo {
|
|
1470
|
+
/**
|
|
1471
|
+
* <p>Endpoints for accessing the Controller.</p>
|
|
1472
|
+
* @public
|
|
1473
|
+
*/
|
|
1474
|
+
Endpoints?: string[];
|
|
1475
|
+
}
|
|
1465
1476
|
/**
|
|
1466
1477
|
* @public
|
|
1467
1478
|
* @enum
|
|
@@ -1519,6 +1530,11 @@ export interface NodeInfo {
|
|
|
1519
1530
|
* @public
|
|
1520
1531
|
*/
|
|
1521
1532
|
BrokerNodeInfo?: BrokerNodeInfo;
|
|
1533
|
+
/**
|
|
1534
|
+
* <p>The ControllerNodeInfo.</p>
|
|
1535
|
+
* @public
|
|
1536
|
+
*/
|
|
1537
|
+
ControllerNodeInfo?: ControllerNodeInfo;
|
|
1522
1538
|
/**
|
|
1523
1539
|
* <p>The instance type.</p>
|
|
1524
1540
|
* @public
|
|
@@ -406,6 +406,9 @@ export interface BrokerNodeInfo {
|
|
|
406
406
|
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
|
|
407
407
|
Endpoints?: string[];
|
|
408
408
|
}
|
|
409
|
+
export interface ControllerNodeInfo {
|
|
410
|
+
Endpoints?: string[];
|
|
411
|
+
}
|
|
409
412
|
export declare const NodeType: {
|
|
410
413
|
readonly BROKER: "BROKER";
|
|
411
414
|
};
|
|
@@ -420,6 +423,7 @@ export interface ZookeeperNodeInfo {
|
|
|
420
423
|
export interface NodeInfo {
|
|
421
424
|
AddedToClusterTime?: string;
|
|
422
425
|
BrokerNodeInfo?: BrokerNodeInfo;
|
|
426
|
+
ControllerNodeInfo?: ControllerNodeInfo;
|
|
423
427
|
InstanceType?: string;
|
|
424
428
|
NodeARN?: string;
|
|
425
429
|
NodeType?: NodeType;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kafka",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kafka Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.587.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-kafka",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.587.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.587.0",
|
|
25
|
+
"@aws-sdk/core": "3.587.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.587.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.587.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.587.0",
|
|
32
32
|
"@aws-sdk/types": "3.577.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.587.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.587.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.1",
|
|
37
|
+
"@smithy/core": "^2.1.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.0.1",
|
|
39
39
|
"@smithy/hash-node": "^3.0.0",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.0",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.0",
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.0.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.0.1",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.3",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.0",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.0",
|
|
46
|
-
"@smithy/node-config-provider": "^3.
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.0",
|
|
47
47
|
"@smithy/node-http-handler": "^3.0.0",
|
|
48
48
|
"@smithy/protocol-http": "^4.0.0",
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
49
|
+
"@smithy/smithy-client": "^3.1.1",
|
|
50
50
|
"@smithy/types": "^3.0.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.0",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.3",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.3",
|
|
57
|
+
"@smithy/util-endpoints": "^2.0.1",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.0",
|
|
59
59
|
"@smithy/util-retry": "^3.0.0",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|