@@ -92,6 +92,9 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
92
92
* kubernetesNetworkConfig: { // KubernetesNetworkConfigRequest
93
93
* serviceIpv4Cidr: "STRING_VALUE",
94
94
* ipFamily: "ipv4" || "ipv6",
95
+ * elasticLoadBalancing: { // ElasticLoadBalancing
96
+ * enabled: true || false,
97
+ * },
95
98
* },
96
99
* logging: { // Logging
97
100
* clusterLogging: [ // LogSetups
@@ -137,6 +140,28 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
137
140
* zonalShiftConfig: { // ZonalShiftConfigRequest
138
141
* enabled: true || false,
139
142
* },
143
+ * remoteNetworkConfig: { // RemoteNetworkConfigRequest
144
+ * remoteNodeNetworks: [ // RemoteNodeNetworkList
145
+ * { // RemoteNodeNetwork
146
+ * cidrs: "<StringList>",
147
+ * },
148
+ * ],
149
+ * remotePodNetworks: [ // RemotePodNetworkList
150
+ * { // RemotePodNetwork
151
+ * cidrs: "<StringList>",
152
+ * },
153
+ * ],
154
+ * },
155
+ * computeConfig: { // ComputeConfigRequest
156
+ * enabled: true || false,
157
+ * nodePools: "<StringList>",
158
+ * nodeRoleArn: "STRING_VALUE",
159
+ * },
160
+ * storageConfig: { // StorageConfigRequest
161
+ * blockStorage: { // BlockStorage
162
+ * enabled: true || false,
163
+ * },
164
+ * },
140
165
* };
141
166
* const command = new CreateClusterCommand(input);
142
167
* const response = await client.send(command);
@@ -167,6 +192,9 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
167
192
* // serviceIpv4Cidr: "STRING_VALUE",
168
193
* // serviceIpv6Cidr: "STRING_VALUE",
169
194
* // ipFamily: "ipv4" || "ipv6",
195
+ * // elasticLoadBalancing: { // ElasticLoadBalancing
196
+ * // enabled: true || false,
197
+ * // },
170
198
* // },
171
199
* // logging: { // Logging
172
200
* // clusterLogging: [ // LogSetups
@@ -236,6 +264,28 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
236
264
* // zonalShiftConfig: { // ZonalShiftConfigResponse
237
265
* // enabled: true || false,
238
266
* // },
267
+ * // remoteNetworkConfig: { // RemoteNetworkConfigResponse
268
+ * // remoteNodeNetworks: [ // RemoteNodeNetworkList
269
+ * // { // RemoteNodeNetwork
270
+ * // cidrs: "<StringList>",
271
+ * // },
272
+ * // ],
273
+ * // remotePodNetworks: [ // RemotePodNetworkList
274
+ * // { // RemotePodNetwork
275
+ * // cidrs: "<StringList>",
276
+ * // },
277
+ * // ],
278
+ * // },
279
+ * // computeConfig: { // ComputeConfigResponse
280
+ * // enabled: true || false,
281
+ * // nodePools: "<StringList>",
282
+ * // nodeRoleArn: "STRING_VALUE",
283
+ * // },
284
+ * // storageConfig: { // StorageConfigResponse
285
+ * // blockStorage: { // BlockStorage
286
+ * // enabled: true || false,
287
+ * // },
288
+ * // },
239
289
* // },
240
290
* // };
241
291
*
0 commit comments