@pulumi/confluentcloud 2.67.0-alpha.1777530259 → 2.67.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/input.d.ts CHANGED
@@ -593,6 +593,187 @@ export interface FlinkConnectionOrganization {
593
593
  export interface FlinkConnectionPrincipal {
594
594
  id: pulumi.Input<string>;
595
595
  }
596
+ export interface FlinkMaterializedTableColumn {
597
+ /**
598
+ * Computed column definitions. Each block supports:
599
+ */
600
+ columnsComputeds?: pulumi.Input<pulumi.Input<inputs.FlinkMaterializedTableColumnColumnsComputed>[]>;
601
+ /**
602
+ * Metadata column definitions. Each block supports:
603
+ */
604
+ columnsMetadatas?: pulumi.Input<pulumi.Input<inputs.FlinkMaterializedTableColumnColumnsMetadata>[]>;
605
+ /**
606
+ * Physical column definitions. Each block supports:
607
+ */
608
+ columnsPhysicals?: pulumi.Input<pulumi.Input<inputs.FlinkMaterializedTableColumnColumnsPhysical>[]>;
609
+ }
610
+ export interface FlinkMaterializedTableColumnColumnsComputed {
611
+ /**
612
+ * Comment for the computed column.
613
+ */
614
+ columnComputedComment?: pulumi.Input<string>;
615
+ /**
616
+ * Expression of the computed column.
617
+ */
618
+ columnComputedExpression?: pulumi.Input<string>;
619
+ /**
620
+ * Kind of the computed column.
621
+ */
622
+ columnComputedKind?: pulumi.Input<string>;
623
+ /**
624
+ * Name of the computed column.
625
+ */
626
+ columnComputedName?: pulumi.Input<string>;
627
+ /**
628
+ * Type of the computed column.
629
+ */
630
+ columnComputedType?: pulumi.Input<string>;
631
+ /**
632
+ * Whether the computed column is virtual. Defaults to `false`.
633
+ */
634
+ columnComputedVirtual?: pulumi.Input<boolean>;
635
+ }
636
+ export interface FlinkMaterializedTableColumnColumnsMetadata {
637
+ /**
638
+ * Comment for the metadata column.
639
+ */
640
+ columnMetadataComment?: pulumi.Input<string>;
641
+ /**
642
+ * Metadata key of the metadata column.
643
+ */
644
+ columnMetadataKey?: pulumi.Input<string>;
645
+ /**
646
+ * Kind of the metadata column.
647
+ */
648
+ columnMetadataKind?: pulumi.Input<string>;
649
+ /**
650
+ * Name of the metadata column.
651
+ */
652
+ columnMetadataName?: pulumi.Input<string>;
653
+ /**
654
+ * Type of the metadata column.
655
+ */
656
+ columnMetadataType?: pulumi.Input<string>;
657
+ /**
658
+ * Whether the metadata column is virtual. Defaults to `false`.
659
+ *
660
+ * > **Note:** A Flink API key consists of a key and a secret. Flink API keys are required to interact with Flink Materialized Tables in Confluent Cloud. Each Flink API key is valid for one specific Flink Region.
661
+ *
662
+ * > **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_materialized_table.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_materialized_table.example" -out=rotate-flink-api-key` and `pulumi up rotate-flink-api-key` instead.
663
+ *
664
+ * !> **Warning:** Use Option #2 to avoid exposing sensitive `credentials` value in a state file. When using Option #1, Terraform doesn't encrypt the sensitive `credentials` value of the `confluentcloud.FlinkMaterializedTable` resource, so you must keep your state file secure to avoid exposing it. Refer to the Terraform documentation to learn more about securing your state file.
665
+ *
666
+ * > **Note:** When using OAuth to authenticate a Flink Materialized Table, if the intended `principal.id` is a service account instead of an Identity Pool, make sure the Identity Pool has an `Assigner` role binding on the service account. Otherwise, you may encounter a 403 Forbidden error. For example:
667
+ *
668
+ * ```typescript
669
+ * import * as pulumi from "@pulumi/pulumi";
670
+ * import * as confluentcloud from "@pulumi/confluentcloud";
671
+ *
672
+ * const identity_pool_assigner = new confluentcloud.RoleBinding("identity-pool-assigner", {
673
+ * principal: "User:pool-abc123",
674
+ * roleName: "Assigner",
675
+ * crnPattern: `${main.resourceName}/service-account=sa-def456`,
676
+ * });
677
+ * ```
678
+ */
679
+ columnMetadataVirtual?: pulumi.Input<boolean>;
680
+ }
681
+ export interface FlinkMaterializedTableColumnColumnsPhysical {
682
+ /**
683
+ * Comment for the physical column.
684
+ */
685
+ columnPhysicalComment?: pulumi.Input<string>;
686
+ /**
687
+ * Kind of the physical column.
688
+ */
689
+ columnPhysicalKind?: pulumi.Input<string>;
690
+ /**
691
+ * Name of the physical column.
692
+ */
693
+ columnPhysicalName?: pulumi.Input<string>;
694
+ /**
695
+ * Type of the physical column.
696
+ */
697
+ columnPhysicalType?: pulumi.Input<string>;
698
+ }
699
+ export interface FlinkMaterializedTableComputePool {
700
+ /**
701
+ * The ID of the Flink Compute Pool, for example, `lfcp-abc123`.
702
+ */
703
+ id: pulumi.Input<string>;
704
+ }
705
+ export interface FlinkMaterializedTableConstraint {
706
+ /**
707
+ * The column names of the constraint.
708
+ */
709
+ columns?: pulumi.Input<pulumi.Input<string>[]>;
710
+ /**
711
+ * Whether the constraint is enforced. Defaults to `false`.
712
+ */
713
+ enforced?: pulumi.Input<boolean>;
714
+ /**
715
+ * The name of the constraint, for example, `pkOrders`.
716
+ */
717
+ name?: pulumi.Input<string>;
718
+ /**
719
+ * The type of the constraint, for example, `PRIMARY_KEY`.
720
+ */
721
+ type?: pulumi.Input<string>;
722
+ }
723
+ export interface FlinkMaterializedTableCredentials {
724
+ /**
725
+ * The Flink API Key.
726
+ */
727
+ key: pulumi.Input<string>;
728
+ /**
729
+ * The Flink API Secret.
730
+ */
731
+ secret: pulumi.Input<string>;
732
+ }
733
+ export interface FlinkMaterializedTableDistribution {
734
+ /**
735
+ * The number of buckets the table is distributed by.
736
+ */
737
+ bucketCount?: pulumi.Input<number>;
738
+ /**
739
+ * The names of the columns the table is distributed by.
740
+ */
741
+ keys?: pulumi.Input<pulumi.Input<string>[]>;
742
+ }
743
+ export interface FlinkMaterializedTableEnvironment {
744
+ /**
745
+ * The ID of the Environment, for example, `env-abc123`.
746
+ */
747
+ id: pulumi.Input<string>;
748
+ }
749
+ export interface FlinkMaterializedTableKafkaCluster {
750
+ /**
751
+ * The ID of the Kafka Cluster hosting the Materialized Table's topic, for example, `lkc-abc123`.
752
+ */
753
+ id: pulumi.Input<string>;
754
+ }
755
+ export interface FlinkMaterializedTableOrganization {
756
+ /**
757
+ * The ID of the Organization, for example, `1111aaaa-11aa-11aa-11aa-111111aaaaaa`.
758
+ */
759
+ id: pulumi.Input<string>;
760
+ }
761
+ export interface FlinkMaterializedTablePrincipal {
762
+ /**
763
+ * The ID of the Principal the Flink Materialized Table runs as, for example, `sa-abc123`.
764
+ */
765
+ id: pulumi.Input<string>;
766
+ }
767
+ export interface FlinkMaterializedTableWatermark {
768
+ /**
769
+ * The name of the watermark column.
770
+ */
771
+ column?: pulumi.Input<string>;
772
+ /**
773
+ * The watermark expression, for example, `eventTime - INTERVAL '5' SECOND`.
774
+ */
775
+ expression?: pulumi.Input<string>;
776
+ }
596
777
  export interface FlinkStatementComputePool {
597
778
  /**
598
779
  * The ID of the Flink Compute Pool, for example, `lfcp-abc123`.
@@ -1131,6 +1312,108 @@ export interface GetFlinkConnectionPrincipalArgs {
1131
1312
  */
1132
1313
  id: pulumi.Input<string>;
1133
1314
  }
1315
+ export interface GetFlinkMaterializedTableComputePool {
1316
+ /**
1317
+ * The ID of the Flink Compute Pool, for example, `lfcp-abc123`.
1318
+ */
1319
+ id: string;
1320
+ }
1321
+ export interface GetFlinkMaterializedTableComputePoolArgs {
1322
+ /**
1323
+ * The ID of the Flink Compute Pool, for example, `lfcp-abc123`.
1324
+ */
1325
+ id: pulumi.Input<string>;
1326
+ }
1327
+ export interface GetFlinkMaterializedTableCredentials {
1328
+ /**
1329
+ * The Flink API Key.
1330
+ */
1331
+ key: string;
1332
+ /**
1333
+ * The Flink API Secret.
1334
+ *
1335
+ * > **Note:** A Flink API key consists of a key and a secret. Flink API keys are required to interact with Flink Materialized Tables in Confluent Cloud. Each Flink API key is valid for one specific Flink Region.
1336
+ *
1337
+ * > **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_materialized_table.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_materialized_table.example" -out=rotate-flink-api-key` and `pulumi up rotate-flink-api-key` instead.
1338
+ *
1339
+ * > **Note:** When using OAuth to authenticate a Flink Materialized Table, if the intended `principal.id` is a service account instead of an Identity Pool, make sure the Identity Pool has an `Assigner` role binding on the service account. Otherwise, you may encounter a 403 Forbidden error. For example:
1340
+ *
1341
+ * ```typescript
1342
+ * import * as pulumi from "@pulumi/pulumi";
1343
+ * import * as confluentcloud from "@pulumi/confluentcloud";
1344
+ *
1345
+ * const identity_pool_assigner = new confluentcloud.RoleBinding("identity-pool-assigner", {
1346
+ * principal: "User:pool-abc123",
1347
+ * roleName: "Assigner",
1348
+ * crnPattern: `${main.resourceName}/service-account=sa-def456`,
1349
+ * });
1350
+ * ```
1351
+ */
1352
+ secret: string;
1353
+ }
1354
+ export interface GetFlinkMaterializedTableCredentialsArgs {
1355
+ /**
1356
+ * The Flink API Key.
1357
+ */
1358
+ key: pulumi.Input<string>;
1359
+ /**
1360
+ * The Flink API Secret.
1361
+ *
1362
+ * > **Note:** A Flink API key consists of a key and a secret. Flink API keys are required to interact with Flink Materialized Tables in Confluent Cloud. Each Flink API key is valid for one specific Flink Region.
1363
+ *
1364
+ * > **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_materialized_table.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_materialized_table.example" -out=rotate-flink-api-key` and `pulumi up rotate-flink-api-key` instead.
1365
+ *
1366
+ * > **Note:** When using OAuth to authenticate a Flink Materialized Table, if the intended `principal.id` is a service account instead of an Identity Pool, make sure the Identity Pool has an `Assigner` role binding on the service account. Otherwise, you may encounter a 403 Forbidden error. For example:
1367
+ *
1368
+ * ```typescript
1369
+ * import * as pulumi from "@pulumi/pulumi";
1370
+ * import * as confluentcloud from "@pulumi/confluentcloud";
1371
+ *
1372
+ * const identity_pool_assigner = new confluentcloud.RoleBinding("identity-pool-assigner", {
1373
+ * principal: "User:pool-abc123",
1374
+ * roleName: "Assigner",
1375
+ * crnPattern: `${main.resourceName}/service-account=sa-def456`,
1376
+ * });
1377
+ * ```
1378
+ */
1379
+ secret: pulumi.Input<string>;
1380
+ }
1381
+ export interface GetFlinkMaterializedTableEnvironment {
1382
+ /**
1383
+ * The ID of the Environment, for example, `env-abc123`.
1384
+ */
1385
+ id: string;
1386
+ }
1387
+ export interface GetFlinkMaterializedTableEnvironmentArgs {
1388
+ /**
1389
+ * The ID of the Environment, for example, `env-abc123`.
1390
+ */
1391
+ id: pulumi.Input<string>;
1392
+ }
1393
+ export interface GetFlinkMaterializedTableOrganization {
1394
+ /**
1395
+ * The ID of the Organization, for example, `1111aaaa-11aa-11aa-11aa-111111aaaaaa`.
1396
+ */
1397
+ id: string;
1398
+ }
1399
+ export interface GetFlinkMaterializedTableOrganizationArgs {
1400
+ /**
1401
+ * The ID of the Organization, for example, `1111aaaa-11aa-11aa-11aa-111111aaaaaa`.
1402
+ */
1403
+ id: pulumi.Input<string>;
1404
+ }
1405
+ export interface GetFlinkMaterializedTablePrincipal {
1406
+ /**
1407
+ * The ID of the Principal the Flink Materialized Table runs as, for example, `sa-abc123`.
1408
+ */
1409
+ id: string;
1410
+ }
1411
+ export interface GetFlinkMaterializedTablePrincipalArgs {
1412
+ /**
1413
+ * The ID of the Principal the Flink Materialized Table runs as, for example, `sa-abc123`.
1414
+ */
1415
+ id: pulumi.Input<string>;
1416
+ }
1134
1417
  export interface GetGatewayEnvironment {
1135
1418
  /**
1136
1419
  * The ID of the Environment that the Gateway belongs to, for example, `env-123abc`.
@@ -1918,6 +2201,10 @@ export interface GetSchemaRuleset {
1918
2201
  * (Optional List of Blocks) supports the following:
1919
2202
  */
1920
2203
  domainRules?: inputs.GetSchemaRulesetDomainRule[];
2204
+ /**
2205
+ * (Optional List of Blocks) supports the following:
2206
+ */
2207
+ encodingRules?: inputs.GetSchemaRulesetEncodingRule[];
1921
2208
  /**
1922
2209
  * (Optional List of Blocks) supports the following:
1923
2210
  */
@@ -1928,6 +2215,10 @@ export interface GetSchemaRulesetArgs {
1928
2215
  * (Optional List of Blocks) supports the following:
1929
2216
  */
1930
2217
  domainRules?: pulumi.Input<pulumi.Input<inputs.GetSchemaRulesetDomainRuleArgs>[]>;
2218
+ /**
2219
+ * (Optional List of Blocks) supports the following:
2220
+ */
2221
+ encodingRules?: pulumi.Input<pulumi.Input<inputs.GetSchemaRulesetEncodingRuleArgs>[]>;
1931
2222
  /**
1932
2223
  * (Optional List of Blocks) supports the following:
1933
2224
  */
@@ -1977,7 +2268,7 @@ export interface GetSchemaRulesetDomainRule {
1977
2268
  */
1978
2269
  tags?: string[];
1979
2270
  /**
1980
- * (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.
2271
+ * (Required String) The type of rule, which invokes a specific rule executor 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.
1981
2272
  */
1982
2273
  type: string;
1983
2274
  }
@@ -2025,7 +2316,103 @@ export interface GetSchemaRulesetDomainRuleArgs {
2025
2316
  */
2026
2317
  tags?: pulumi.Input<pulumi.Input<string>[]>;
2027
2318
  /**
2028
- * (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.
2319
+ * (Required String) The type of rule, which invokes a specific rule executor 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.
2320
+ */
2321
+ type: pulumi.Input<string>;
2322
+ }
2323
+ export interface GetSchemaRulesetEncodingRule {
2324
+ /**
2325
+ * (Optional Boolean) The boolean flag to control whether the rule should be disabled.
2326
+ */
2327
+ disabled?: boolean;
2328
+ /**
2329
+ * (Optional String) An optional description of the rule.
2330
+ */
2331
+ doc?: string;
2332
+ /**
2333
+ * (Optional String) The rule body. Data quality and transformation rules use `CEL` language expressions, data migration rules use `JSONata` expressions. Defaults to "".
2334
+ */
2335
+ expr?: string;
2336
+ /**
2337
+ * (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.
2338
+ */
2339
+ kind: string;
2340
+ /**
2341
+ * (Required String) The mode of the rule. Accepted values are `UPGRADE`, `DOWNGRADE`, `UPDOWN`, `WRITE`, `READ`, and `WRITEREAD`.
2342
+ */
2343
+ mode: string;
2344
+ /**
2345
+ * (Required String) A user-defined name that can be used to reference the rule.
2346
+ */
2347
+ name: string;
2348
+ /**
2349
+ * (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.
2350
+ */
2351
+ onFailure?: string;
2352
+ /**
2353
+ * (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`.
2354
+ */
2355
+ onSuccess?: string;
2356
+ /**
2357
+ * (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.
2358
+ */
2359
+ params?: {
2360
+ [key: string]: string;
2361
+ };
2362
+ /**
2363
+ * (Optional String List) The tags to which the rule applies, if any.
2364
+ */
2365
+ tags?: string[];
2366
+ /**
2367
+ * (Required String) The type of rule, which invokes a specific rule executor 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.
2368
+ */
2369
+ type: string;
2370
+ }
2371
+ export interface GetSchemaRulesetEncodingRuleArgs {
2372
+ /**
2373
+ * (Optional Boolean) The boolean flag to control whether the rule should be disabled.
2374
+ */
2375
+ disabled?: pulumi.Input<boolean>;
2376
+ /**
2377
+ * (Optional String) An optional description of the rule.
2378
+ */
2379
+ doc?: pulumi.Input<string>;
2380
+ /**
2381
+ * (Optional String) The rule body. Data quality and transformation rules use `CEL` language expressions, data migration rules use `JSONata` expressions. Defaults to "".
2382
+ */
2383
+ expr?: pulumi.Input<string>;
2384
+ /**
2385
+ * (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.
2386
+ */
2387
+ kind: pulumi.Input<string>;
2388
+ /**
2389
+ * (Required String) The mode of the rule. Accepted values are `UPGRADE`, `DOWNGRADE`, `UPDOWN`, `WRITE`, `READ`, and `WRITEREAD`.
2390
+ */
2391
+ mode: pulumi.Input<string>;
2392
+ /**
2393
+ * (Required String) A user-defined name that can be used to reference the rule.
2394
+ */
2395
+ name: pulumi.Input<string>;
2396
+ /**
2397
+ * (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.
2398
+ */
2399
+ onFailure?: pulumi.Input<string>;
2400
+ /**
2401
+ * (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`.
2402
+ */
2403
+ onSuccess?: pulumi.Input<string>;
2404
+ /**
2405
+ * (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.
2406
+ */
2407
+ params?: pulumi.Input<{
2408
+ [key: string]: pulumi.Input<string>;
2409
+ }>;
2410
+ /**
2411
+ * (Optional String List) The tags to which the rule applies, if any.
2412
+ */
2413
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
2414
+ /**
2415
+ * (Required String) The type of rule, which invokes a specific rule executor 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.
2029
2416
  */
2030
2417
  type: pulumi.Input<string>;
2031
2418
  }
@@ -2073,7 +2460,7 @@ export interface GetSchemaRulesetMigrationRule {
2073
2460
  */
2074
2461
  tags?: string[];
2075
2462
  /**
2076
- * (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.
2463
+ * (Required String) The type of rule, which invokes a specific rule executor 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.
2077
2464
  */
2078
2465
  type: string;
2079
2466
  }
@@ -2121,7 +2508,7 @@ export interface GetSchemaRulesetMigrationRuleArgs {
2121
2508
  */
2122
2509
  tags?: pulumi.Input<pulumi.Input<string>[]>;
2123
2510
  /**
2124
- * (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.
2511
+ * (Required String) The type of rule, which invokes a specific rule executor 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.
2125
2512
  */
2126
2513
  type: pulumi.Input<string>;
2127
2514
  }
@@ -3153,6 +3540,10 @@ export interface SchemaRuleset {
3153
3540
  * supports the following:
3154
3541
  */
3155
3542
  domainRules?: pulumi.Input<pulumi.Input<inputs.SchemaRulesetDomainRule>[]>;
3543
+ /**
3544
+ * supports the following:
3545
+ */
3546
+ encodingRules?: pulumi.Input<pulumi.Input<inputs.SchemaRulesetEncodingRule>[]>;
3156
3547
  /**
3157
3548
  * supports the following:
3158
3549
  */
@@ -3173,6 +3564,21 @@ export interface SchemaRulesetDomainRule {
3173
3564
  tags?: pulumi.Input<pulumi.Input<string>[]>;
3174
3565
  type: pulumi.Input<string>;
3175
3566
  }
3567
+ export interface SchemaRulesetEncodingRule {
3568
+ disabled?: pulumi.Input<boolean>;
3569
+ doc?: pulumi.Input<string>;
3570
+ expr?: pulumi.Input<string>;
3571
+ kind: pulumi.Input<string>;
3572
+ mode: pulumi.Input<string>;
3573
+ name: pulumi.Input<string>;
3574
+ onFailure?: pulumi.Input<string>;
3575
+ onSuccess?: pulumi.Input<string>;
3576
+ params?: pulumi.Input<{
3577
+ [key: string]: pulumi.Input<string>;
3578
+ }>;
3579
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
3580
+ type: pulumi.Input<string>;
3581
+ }
3176
3582
  export interface SchemaRulesetMigrationRule {
3177
3583
  disabled?: pulumi.Input<boolean>;
3178
3584
  doc?: pulumi.Input<string>;