@pulumi/confluentcloud 1.28.0-alpha.1702588671 → 1.28.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/types/output.d.ts CHANGED
@@ -119,6 +119,16 @@ export interface ByokKeyAzure {
119
119
  */
120
120
  tenantId: string;
121
121
  }
122
+ export interface ByokKeyGcp {
123
+ /**
124
+ * The Google Cloud Platform key ID.
125
+ */
126
+ keyId: string;
127
+ /**
128
+ * (Optional String) The Google security group created for this key.
129
+ */
130
+ securityGroup: string;
131
+ }
122
132
  export interface ClusterLinkDestinationKafkaCluster {
123
133
  /**
124
134
  * The bootstrap endpoint of the remote Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092` or `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
@@ -237,6 +247,32 @@ export interface FlinkComputePoolEnvironment {
237
247
  */
238
248
  id: string;
239
249
  }
250
+ export interface FlinkStatementComputePool {
251
+ /**
252
+ * The ID of the Principal the Flink Statement runs as, for example, `sa-abc123`.
253
+ */
254
+ id: string;
255
+ }
256
+ export interface FlinkStatementCredentials {
257
+ /**
258
+ * The Flink API Key.
259
+ */
260
+ key: string;
261
+ /**
262
+ * The Flink API Secret.
263
+ *
264
+ * > **Note:** A Flink API key consists of a key and a secret. Flink API keys are required to interact with Flink Statements in Confluent Cloud. Each Flink API key is valid for one specific Flink Region.
265
+ *
266
+ * > **Note:** Use Option #2 to simplify the key rotation process. When using Option #1, to rotate a Flink API key, create a new Flink API key, update the `credentials` block in all configuration files to use the new Flink API key, run `pulumi up -target="confluent_flink_statement.example"`, and remove the old Flink API key. Alternatively, in case the old Flink API Key was deleted already, you might need to run `pulumi preview -refresh=false -target="confluent_flink_statement.example" -out=rotate-flink-api-key` and `pulumi up rotate-flink-api-key` instead.
267
+ */
268
+ secret: string;
269
+ }
270
+ export interface FlinkStatementPrincipal {
271
+ /**
272
+ * The ID of the Principal the Flink Statement runs as, for example, `sa-abc123`.
273
+ */
274
+ id: string;
275
+ }
240
276
  export interface GetBusinessMetadataAttributeDefinition {
241
277
  /**
242
278
  * (Optional String) The default value of this attribute.
@@ -329,6 +365,16 @@ export interface GetByokKeyAzure {
329
365
  */
330
366
  tenantId: string;
331
367
  }
368
+ export interface GetByokKeyGcp {
369
+ /**
370
+ * (Required String) The Google Cloud Platform key ID.
371
+ */
372
+ keyId: string;
373
+ /**
374
+ * (Optional String) The Google security group created for this key.
375
+ */
376
+ securityGroup: string;
377
+ }
332
378
  export interface GetFlinkComputePoolEnvironment {
333
379
  /**
334
380
  * The ID of the Environment that the Flink Compute Pool belongs to, for example, `env-xyz456`.