@pulumi/confluentcloud 2.6.0-alpha.1729195304 → 2.6.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
@@ -381,6 +381,12 @@ export interface EnvironmentStreamGovernance {
381
381
  */
382
382
  package: string;
383
383
  }
384
+ export interface FlinkArtifactEnvironment {
385
+ /**
386
+ * The ID of the Environment that the Flink Artifact Pool belongs to, for example, `env-abc123`.
387
+ */
388
+ id: string;
389
+ }
384
390
  export interface FlinkComputePoolEnvironment {
385
391
  /**
386
392
  * The ID of the Environment that the Flink Compute Pool belongs to, for example, `env-abc123`.
@@ -615,6 +621,12 @@ export interface GetEnvironmentStreamGovernance {
615
621
  */
616
622
  package: string;
617
623
  }
624
+ export interface GetFlinkArtifactEnvironment {
625
+ /**
626
+ * The ID of the Environment that the Flink Artifact belongs to, for example, `env-xyz456`.
627
+ */
628
+ id: string;
629
+ }
618
630
  export interface GetFlinkComputePoolEnvironment {
619
631
  /**
620
632
  * The ID of the Environment that the Flink Compute Pool belongs to, for example, `env-xyz456`.
@@ -1306,33 +1318,37 @@ export interface GetSchemaRuleset {
1306
1318
  }
1307
1319
  export interface GetSchemaRulesetDomainRule {
1308
1320
  /**
1309
- * (Optional String) An optional description.
1321
+ * (Optional Boolean) The boolean flag to control whether the rule should be disabled.
1322
+ */
1323
+ disabled?: boolean;
1324
+ /**
1325
+ * (Optional String) An optional description of the rule.
1310
1326
  */
1311
- doc: string;
1327
+ doc?: string;
1312
1328
  /**
1313
- * (Optional String) The body of the rule, which is optional.
1329
+ * (Optional String) The rule body. Data quality and transformation rules use `CEL` language expressions, data migration rules use `JSONata` expressions. Defaults to "".
1314
1330
  */
1315
- expr: string;
1331
+ expr?: string;
1316
1332
  /**
1317
- * (Optional String) Either `CONDITION` or `TRANSFORM`.
1333
+ * (Required String) The kind of the rule. Accepted values are `CONDITION` and `TRANSFORM`. `CONDITION` - validate the value of a field, `TRANSFORM` - transform the value of a field. Data quality rules use `CONDITION` kind, data transformation, encryption and migration rules use `TRANSFORM` kind.
1318
1334
  */
1319
1335
  kind: string;
1320
1336
  /**
1321
- * (Optional String) The mode of the rule.
1337
+ * (Required String) The mode of the rule. Accepted values are `UPGRADE`, `DOWNGRADE`, `UPDOWN`, `WRITE`, `READ`, and `WRITEREAD`.
1322
1338
  */
1323
1339
  mode: string;
1324
1340
  /**
1325
- * (Optional String) A user-defined name that can be used to reference the rule.
1341
+ * (Required String) A user-defined name that can be used to reference the rule.
1326
1342
  */
1327
1343
  name: string;
1328
1344
  /**
1329
- * (Optional String) An optional action to execute if the rule fails, otherwise the built-in action type ERROR is used. For UPDOWN and WRITEREAD rules, one can specify two actions separated by commas, as mentioned above.
1345
+ * (Optional String) An optional action to execute if the rule fails, otherwise the built-in action type `ERROR` is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, as mentioned above.
1330
1346
  */
1331
- onFailure: string;
1347
+ onFailure?: string;
1332
1348
  /**
1333
- * (Optional String) An optional action to execute if the rule succeeds, otherwise the built-in action type NONE is used. For UPDOWN and WRITEREAD rules, one can specify two actions separated by commas, such as NONE,ERROR for a WRITEREAD rule. In this case NONE applies to WRITE and ERROR applies to READ.
1349
+ * (Optional String) An optional action to execute if the rule succeeds, otherwise the built-in action type `NONE` is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, such as "NONE,ERROR" for a `WRITEREAD` rule. In this case `NONE` applies to `WRITE` and `ERROR` applies to `READ`.
1334
1350
  */
1335
- onSuccess: string;
1351
+ onSuccess?: string;
1336
1352
  /**
1337
1353
  * (Optional Configuration Block) A set of static parameters for the rule, which is optional. These are key-value pairs that are passed to the rule.
1338
1354
  */
@@ -1344,39 +1360,43 @@ export interface GetSchemaRulesetDomainRule {
1344
1360
  */
1345
1361
  tags: string[];
1346
1362
  /**
1347
- * (Optional String) The type of rule, which invokes a specific rule executor, such as Google Common Expression Language (CEL) or JSONata.
1363
+ * (Required String) The type of rule, which invokes a specific rule executor that that will run the rule. Google Common Expression Language (`CEL`) is used for data quality and transformation rules, Confluent `ENCRYPT` is used for data encryption rules, and `JSONata` is used for migration rules.
1348
1364
  */
1349
1365
  type: string;
1350
1366
  }
1351
1367
  export interface GetSchemaRulesetMigrationRule {
1352
1368
  /**
1353
- * (Optional String) An optional description.
1369
+ * (Optional Boolean) The boolean flag to control whether the rule should be disabled.
1370
+ */
1371
+ disabled?: boolean;
1372
+ /**
1373
+ * (Optional String) An optional description of the rule.
1354
1374
  */
1355
- doc: string;
1375
+ doc?: string;
1356
1376
  /**
1357
- * (Optional String) The body of the rule, which is optional.
1377
+ * (Optional String) The rule body. Data quality and transformation rules use `CEL` language expressions, data migration rules use `JSONata` expressions. Defaults to "".
1358
1378
  */
1359
- expr: string;
1379
+ expr?: string;
1360
1380
  /**
1361
- * (Optional String) Either `CONDITION` or `TRANSFORM`.
1381
+ * (Required String) The kind of the rule. Accepted values are `CONDITION` and `TRANSFORM`. `CONDITION` - validate the value of a field, `TRANSFORM` - transform the value of a field. Data quality rules use `CONDITION` kind, data transformation, encryption and migration rules use `TRANSFORM` kind.
1362
1382
  */
1363
1383
  kind: string;
1364
1384
  /**
1365
- * (Optional String) The mode of the rule.
1385
+ * (Required String) The mode of the rule. Accepted values are `UPGRADE`, `DOWNGRADE`, `UPDOWN`, `WRITE`, `READ`, and `WRITEREAD`.
1366
1386
  */
1367
1387
  mode: string;
1368
1388
  /**
1369
- * (Optional String) A user-defined name that can be used to reference the rule.
1389
+ * (Required String) A user-defined name that can be used to reference the rule.
1370
1390
  */
1371
1391
  name: string;
1372
1392
  /**
1373
- * (Optional String) An optional action to execute if the rule fails, otherwise the built-in action type ERROR is used. For UPDOWN and WRITEREAD rules, one can specify two actions separated by commas, as mentioned above.
1393
+ * (Optional String) An optional action to execute if the rule fails, otherwise the built-in action type `ERROR` is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, as mentioned above.
1374
1394
  */
1375
- onFailure: string;
1395
+ onFailure?: string;
1376
1396
  /**
1377
- * (Optional String) An optional action to execute if the rule succeeds, otherwise the built-in action type NONE is used. For UPDOWN and WRITEREAD rules, one can specify two actions separated by commas, such as NONE,ERROR for a WRITEREAD rule. In this case NONE applies to WRITE and ERROR applies to READ.
1397
+ * (Optional String) An optional action to execute if the rule succeeds, otherwise the built-in action type `NONE` is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, such as "NONE,ERROR" for a `WRITEREAD` rule. In this case `NONE` applies to `WRITE` and `ERROR` applies to `READ`.
1378
1398
  */
1379
- onSuccess: string;
1399
+ onSuccess?: string;
1380
1400
  /**
1381
1401
  * (Optional Configuration Block) A set of static parameters for the rule, which is optional. These are key-value pairs that are passed to the rule.
1382
1402
  */
@@ -1388,13 +1408,13 @@ export interface GetSchemaRulesetMigrationRule {
1388
1408
  */
1389
1409
  tags: string[];
1390
1410
  /**
1391
- * (Optional String) The type of rule, which invokes a specific rule executor, such as Google Common Expression Language (CEL) or JSONata.
1411
+ * (Required String) The type of rule, which invokes a specific rule executor that that will run the rule. Google Common Expression Language (`CEL`) is used for data quality and transformation rules, Confluent `ENCRYPT` is used for data encryption rules, and `JSONata` is used for migration rules.
1392
1412
  */
1393
1413
  type: string;
1394
1414
  }
1395
1415
  export interface GetSchemaSchemaReference {
1396
1416
  /**
1397
- * (Optional String) A user-defined name that can be used to reference the rule.
1417
+ * (Required String) A user-defined name that can be used to reference the rule.
1398
1418
  */
1399
1419
  name: string;
1400
1420
  /**
@@ -2226,15 +2246,19 @@ export interface SchemaRuleset {
2226
2246
  }
2227
2247
  export interface SchemaRulesetDomainRule {
2228
2248
  /**
2229
- * An optional description of the rule.
2249
+ * The boolean flag to control whether the rule should be disabled. Defaults to `false`.
2250
+ */
2251
+ disabled?: boolean;
2252
+ /**
2253
+ * An optional description of the rule. Defaults to "".
2230
2254
  */
2231
- doc: string;
2255
+ doc?: string;
2232
2256
  /**
2233
- * The body of the rule, which is optional.
2257
+ * The rule body. Data quality and transformation rules use `CEL` language expressions, data migration rules use `JSONata` expressions. Defaults to "".
2234
2258
  */
2235
- expr: string;
2259
+ expr?: string;
2236
2260
  /**
2237
- * The kind of the rule. Accepted values are `CONDITION` and `TRANSFORM`.
2261
+ * The kind of the rule. Accepted values are `CONDITION` and `TRANSFORM`. `CONDITION` - validate the value of a field, `TRANSFORM` - transform the value of a field. Data quality rules use `CONDITION` kind, data transformation, encryption and migration rules use `TRANSFORM` kind.
2238
2262
  */
2239
2263
  kind: string;
2240
2264
  /**
@@ -2246,20 +2270,17 @@ export interface SchemaRulesetDomainRule {
2246
2270
  */
2247
2271
  name: string;
2248
2272
  /**
2249
- * An optional action to execute if the rule fails, otherwise the built-in action type ERROR is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, as mentioned above.
2273
+ * An optional action to execute if the rule fails, otherwise the built-in action type `ERROR` is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, as mentioned above. Defaults to `ERROR,ERROR`.
2250
2274
  */
2251
- onFailure: string;
2275
+ onFailure?: string;
2252
2276
  /**
2253
- * An optional action to execute if the rule succeeds, otherwise the built-in action type NONE is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, such as "NONE,ERROR" for a `WRITEREAD` rule. In this case `NONE` applies to `WRITE` and `ERROR` applies to `READ`.
2277
+ * An optional action to execute if the rule succeeds, otherwise the built-in action type `NONE` is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, such as "NONE,ERROR" for a `WRITEREAD` rule. In this case `NONE` applies to `WRITE` and `ERROR` applies to `READ`. Defaults to `NONE,NONE`.
2254
2278
  */
2255
- onSuccess: string;
2279
+ onSuccess?: string;
2256
2280
  /**
2257
2281
  * A set of static parameters for the rule, which is optional. These are key-value pairs that are passed to the rule.
2258
2282
  *
2259
2283
  * > **Note:** Schema rules (`ruleset`) are only available with the [Stream Governance Advanced package](https://docs.confluent.io/cloud/current/stream-governance/packages.html#packages).
2260
- *
2261
- * > **Note:** `ruleset` and `metadata` attributes are available in **Preview** for early adopters. Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.
2262
- * **Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Preview features. Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Preview features at any time in Confluent’s sole discretion.
2263
2284
  */
2264
2285
  params: {
2265
2286
  [key: string]: string;
@@ -2269,21 +2290,25 @@ export interface SchemaRulesetDomainRule {
2269
2290
  */
2270
2291
  tags: string[];
2271
2292
  /**
2272
- * The type of rule, which invokes a specific rule executor, such as Google Common Expression Language (CEL) or JSONata.
2293
+ * The type of rule, which invokes a specific rule executor that that will run the rule. Google Common Expression Language (`CEL`) is used for data quality and transformation rules, Confluent `ENCRYPT` is used for data encryption rules, and `JSONata` is used for migration rules.
2273
2294
  */
2274
2295
  type: string;
2275
2296
  }
2276
2297
  export interface SchemaRulesetMigrationRule {
2277
2298
  /**
2278
- * An optional description of the rule.
2299
+ * The boolean flag to control whether the rule should be disabled. Defaults to `false`.
2300
+ */
2301
+ disabled?: boolean;
2302
+ /**
2303
+ * An optional description of the rule. Defaults to "".
2279
2304
  */
2280
- doc: string;
2305
+ doc?: string;
2281
2306
  /**
2282
- * The body of the rule, which is optional.
2307
+ * The rule body. Data quality and transformation rules use `CEL` language expressions, data migration rules use `JSONata` expressions. Defaults to "".
2283
2308
  */
2284
- expr: string;
2309
+ expr?: string;
2285
2310
  /**
2286
- * The kind of the rule. Accepted values are `CONDITION` and `TRANSFORM`.
2311
+ * The kind of the rule. Accepted values are `CONDITION` and `TRANSFORM`. `CONDITION` - validate the value of a field, `TRANSFORM` - transform the value of a field. Data quality rules use `CONDITION` kind, data transformation, encryption and migration rules use `TRANSFORM` kind.
2287
2312
  */
2288
2313
  kind: string;
2289
2314
  /**
@@ -2292,20 +2317,17 @@ export interface SchemaRulesetMigrationRule {
2292
2317
  mode: string;
2293
2318
  name: string;
2294
2319
  /**
2295
- * An optional action to execute if the rule fails, otherwise the built-in action type ERROR is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, as mentioned above.
2320
+ * An optional action to execute if the rule fails, otherwise the built-in action type `ERROR` is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, as mentioned above. Defaults to `ERROR,ERROR`.
2296
2321
  */
2297
- onFailure: string;
2322
+ onFailure?: string;
2298
2323
  /**
2299
- * An optional action to execute if the rule succeeds, otherwise the built-in action type NONE is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, such as "NONE,ERROR" for a `WRITEREAD` rule. In this case `NONE` applies to `WRITE` and `ERROR` applies to `READ`.
2324
+ * An optional action to execute if the rule succeeds, otherwise the built-in action type `NONE` is used. For `UPDOWN` and `WRITEREAD` rules, one can specify two actions separated by commas, such as "NONE,ERROR" for a `WRITEREAD` rule. In this case `NONE` applies to `WRITE` and `ERROR` applies to `READ`. Defaults to `NONE,NONE`.
2300
2325
  */
2301
- onSuccess: string;
2326
+ onSuccess?: string;
2302
2327
  /**
2303
2328
  * A set of static parameters for the rule, which is optional. These are key-value pairs that are passed to the rule.
2304
2329
  *
2305
2330
  * > **Note:** Schema rules (`ruleset`) are only available with the [Stream Governance Advanced package](https://docs.confluent.io/cloud/current/stream-governance/packages.html#packages).
2306
- *
2307
- * > **Note:** `ruleset` and `metadata` attributes are available in **Preview** for early adopters. Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.
2308
- * **Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Preview features. Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Preview features at any time in Confluent’s sole discretion.
2309
2331
  */
2310
2332
  params: {
2311
2333
  [key: string]: string;
@@ -2315,7 +2337,7 @@ export interface SchemaRulesetMigrationRule {
2315
2337
  */
2316
2338
  tags: string[];
2317
2339
  /**
2318
- * The type of rule, which invokes a specific rule executor, such as Google Common Expression Language (CEL) or JSONata.
2340
+ * The type of rule, which invokes a specific rule executor that that will run the rule. Google Common Expression Language (`CEL`) is used for data quality and transformation rules, Confluent `ENCRYPT` is used for data encryption rules, and `JSONata` is used for migration rules.
2319
2341
  */
2320
2342
  type: string;
2321
2343
  }