@pulumi/confluentcloud 1.25.0-alpha.1695058997 → 1.25.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/flinkComputePool.d.ts +167 -0
- package/flinkComputePool.js +108 -0
- package/flinkComputePool.js.map +1 -0
- package/getFlinkComputePool.d.ts +152 -0
- package/getFlinkComputePool.js +81 -0
- package/getFlinkComputePool.js.map +1 -0
- package/getRoleBinding.d.ts +4 -0
- package/getRoleBinding.js +4 -0
- package/getRoleBinding.js.map +1 -1
- package/index.d.ts +9 -0
- package/index.js +16 -3
- package/index.js.map +1 -1
- package/kafkaAcl.d.ts +1 -1
- package/kafkaAcl.js +1 -1
- package/package.json +1 -1
- package/schemaExporter.d.ts +181 -0
- package/schemaExporter.js +87 -0
- package/schemaExporter.js.map +1 -0
- package/types/input.d.ts +55 -8
- package/types/output.d.ts +47 -8
package/types/output.d.ts
CHANGED
|
@@ -141,8 +141,6 @@ export interface ClusterLinkDestinationKafkaClusterCredentials {
|
|
|
141
141
|
key: string;
|
|
142
142
|
/**
|
|
143
143
|
* The Kafka API Secret.
|
|
144
|
-
*
|
|
145
|
-
* > **Note:** The `localKafkaCluster`, `remoteKafkaCluster` configuration block and `linkMode = BIDIRECTIONAL` are in a [Preview lifecycle stage](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy).
|
|
146
144
|
*/
|
|
147
145
|
secret: string;
|
|
148
146
|
}
|
|
@@ -168,8 +166,6 @@ export interface ClusterLinkLocalKafkaClusterCredentials {
|
|
|
168
166
|
key: string;
|
|
169
167
|
/**
|
|
170
168
|
* The Kafka API Secret.
|
|
171
|
-
*
|
|
172
|
-
* > **Note:** The `localKafkaCluster`, `remoteKafkaCluster` configuration block and `linkMode = BIDIRECTIONAL` are in a [Preview lifecycle stage](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy).
|
|
173
169
|
*/
|
|
174
170
|
secret: string;
|
|
175
171
|
}
|
|
@@ -195,8 +191,6 @@ export interface ClusterLinkRemoteKafkaClusterCredentials {
|
|
|
195
191
|
key: string;
|
|
196
192
|
/**
|
|
197
193
|
* The Kafka API Secret.
|
|
198
|
-
*
|
|
199
|
-
* > **Note:** The `localKafkaCluster`, `remoteKafkaCluster` configuration block and `linkMode = BIDIRECTIONAL` are in a [Preview lifecycle stage](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy).
|
|
200
194
|
*/
|
|
201
195
|
secret: string;
|
|
202
196
|
}
|
|
@@ -222,8 +216,6 @@ export interface ClusterLinkSourceKafkaClusterCredentials {
|
|
|
222
216
|
key: string;
|
|
223
217
|
/**
|
|
224
218
|
* The Kafka API Secret.
|
|
225
|
-
*
|
|
226
|
-
* > **Note:** The `localKafkaCluster`, `remoteKafkaCluster` configuration block and `linkMode = BIDIRECTIONAL` are in a [Preview lifecycle stage](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy).
|
|
227
219
|
*/
|
|
228
220
|
secret: string;
|
|
229
221
|
}
|
|
@@ -239,6 +231,12 @@ export interface ConnectorKafkaCluster {
|
|
|
239
231
|
*/
|
|
240
232
|
id: string;
|
|
241
233
|
}
|
|
234
|
+
export interface FlinkComputePoolEnvironment {
|
|
235
|
+
/**
|
|
236
|
+
* The ID of the Environment that the Flink Compute Pool belongs to, for example, `env-abc123`.
|
|
237
|
+
*/
|
|
238
|
+
id: string;
|
|
239
|
+
}
|
|
242
240
|
export interface GetBusinessMetadataAttributeDefinition {
|
|
243
241
|
/**
|
|
244
242
|
* (Optional String) The default value of this attribute.
|
|
@@ -331,6 +329,14 @@ export interface GetByokKeyAzure {
|
|
|
331
329
|
*/
|
|
332
330
|
tenantId: string;
|
|
333
331
|
}
|
|
332
|
+
export interface GetFlinkComputePoolEnvironment {
|
|
333
|
+
/**
|
|
334
|
+
* The ID of the Environment that the Flink Compute Pool belongs to, for example, `env-xyz456`.
|
|
335
|
+
*
|
|
336
|
+
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
337
|
+
*/
|
|
338
|
+
id: string;
|
|
339
|
+
}
|
|
334
340
|
export interface GetIdentityPoolIdentityProvider {
|
|
335
341
|
/**
|
|
336
342
|
* The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
|
|
@@ -1445,6 +1451,39 @@ export interface SchemaCredentials {
|
|
|
1445
1451
|
key: string;
|
|
1446
1452
|
secret: string;
|
|
1447
1453
|
}
|
|
1454
|
+
export interface SchemaExporterCredentials {
|
|
1455
|
+
/**
|
|
1456
|
+
* The Schema Registry API Key.
|
|
1457
|
+
*/
|
|
1458
|
+
key: string;
|
|
1459
|
+
/**
|
|
1460
|
+
* The Schema Registry API Secret.
|
|
1461
|
+
*/
|
|
1462
|
+
secret: string;
|
|
1463
|
+
}
|
|
1464
|
+
export interface SchemaExporterDestinationSchemaRegistryCluster {
|
|
1465
|
+
credentials: outputs.SchemaExporterDestinationSchemaRegistryClusterCredentials;
|
|
1466
|
+
/**
|
|
1467
|
+
* The REST endpoint of the destination Schema Registry cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
|
|
1468
|
+
*/
|
|
1469
|
+
restEndpoint: string;
|
|
1470
|
+
}
|
|
1471
|
+
export interface SchemaExporterDestinationSchemaRegistryClusterCredentials {
|
|
1472
|
+
/**
|
|
1473
|
+
* The Schema Registry API Key.
|
|
1474
|
+
*/
|
|
1475
|
+
key: string;
|
|
1476
|
+
/**
|
|
1477
|
+
* The Schema Registry API Secret.
|
|
1478
|
+
*/
|
|
1479
|
+
secret: string;
|
|
1480
|
+
}
|
|
1481
|
+
export interface SchemaExporterSchemaRegistryCluster {
|
|
1482
|
+
/**
|
|
1483
|
+
* The ID of the Schema Registry cluster, for example, `lsrc-abc123`.
|
|
1484
|
+
*/
|
|
1485
|
+
id: string;
|
|
1486
|
+
}
|
|
1448
1487
|
export interface SchemaRegistryClusterConfigCredentials {
|
|
1449
1488
|
/**
|
|
1450
1489
|
* The Schema Registry API Key.
|