@pulumi/confluentcloud 1.33.0 → 1.34.0-alpha.1706811890

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/confluentcloud",
3
- "version": "v1.33.0",
3
+ "version": "v1.34.0-alpha.1706811890+94accd3e",
4
4
  "description": "A Pulumi package for creating and managing Confluent cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
package/types/input.d.ts CHANGED
@@ -5,6 +5,9 @@ export interface ApiKeyManagedResource {
5
5
  * The API group and version of the managed resource that the API Key associated with, for example, `cmk/v2`.
6
6
  */
7
7
  apiVersion: pulumi.Input<string>;
8
+ /**
9
+ * Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
10
+ */
8
11
  environment: pulumi.Input<inputs.ApiKeyManagedResourceEnvironment>;
9
12
  /**
10
13
  * The ID of the Environment that the managed resource belongs to, for example, `env-abc123`.
@@ -84,6 +87,9 @@ export interface BusinessMetadataCredentials {
84
87
  * The Schema Registry API Key.
85
88
  */
86
89
  key: pulumi.Input<string>;
90
+ /**
91
+ * The Cluster API Secret for your Confluent Cloud cluster.
92
+ */
87
93
  secret: pulumi.Input<string>;
88
94
  }
89
95
  export interface BusinessMetadataSchemaRegistryCluster {
@@ -135,6 +141,9 @@ export interface ClusterLinkDestinationKafkaCluster {
135
141
  * 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`).
136
142
  */
137
143
  bootstrapEndpoint?: pulumi.Input<string>;
144
+ /**
145
+ * The Kafka API Credentials.
146
+ */
138
147
  credentials?: pulumi.Input<inputs.ClusterLinkDestinationKafkaClusterCredentials>;
139
148
  /**
140
149
  * The ID of the remote Kafka cluster, for example, `lkc-abc123`.
@@ -160,6 +169,9 @@ export interface ClusterLinkLocalKafkaCluster {
160
169
  * 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`).
161
170
  */
162
171
  bootstrapEndpoint?: pulumi.Input<string>;
172
+ /**
173
+ * The Kafka API Credentials.
174
+ */
163
175
  credentials?: pulumi.Input<inputs.ClusterLinkLocalKafkaClusterCredentials>;
164
176
  /**
165
177
  * The ID of the remote Kafka cluster, for example, `lkc-abc123`.
@@ -185,6 +197,9 @@ export interface ClusterLinkRemoteKafkaCluster {
185
197
  * 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`).
186
198
  */
187
199
  bootstrapEndpoint?: pulumi.Input<string>;
200
+ /**
201
+ * The Kafka API Credentials.
202
+ */
188
203
  credentials?: pulumi.Input<inputs.ClusterLinkRemoteKafkaClusterCredentials>;
189
204
  /**
190
205
  * The ID of the remote Kafka cluster, for example, `lkc-abc123`.
@@ -210,6 +225,9 @@ export interface ClusterLinkSourceKafkaCluster {
210
225
  * 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`).
211
226
  */
212
227
  bootstrapEndpoint?: pulumi.Input<string>;
228
+ /**
229
+ * The Kafka API Credentials.
230
+ */
213
231
  credentials?: pulumi.Input<inputs.ClusterLinkSourceKafkaClusterCredentials>;
214
232
  /**
215
233
  * The ID of the remote Kafka cluster, for example, `lkc-abc123`.
@@ -419,6 +437,9 @@ export interface GetKafkaClusterDedicated {
419
437
  * (Required Number) The number of Confluent Kafka Units (CKUs) for Dedicated cluster types. The minimum number of CKUs for `SINGLE_ZONE` dedicated clusters is `1` whereas `MULTI_ZONE` dedicated clusters must have more than `2` CKUs.
420
438
  */
421
439
  cku?: number;
440
+ /**
441
+ * The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
442
+ */
422
443
  encryptionKey?: string;
423
444
  /**
424
445
  * (Required List of String) The list of zones the cluster is in.
@@ -433,6 +454,9 @@ export interface GetKafkaClusterDedicatedArgs {
433
454
  * (Required Number) The number of Confluent Kafka Units (CKUs) for Dedicated cluster types. The minimum number of CKUs for `SINGLE_ZONE` dedicated clusters is `1` whereas `MULTI_ZONE` dedicated clusters must have more than `2` CKUs.
434
455
  */
435
456
  cku?: pulumi.Input<number>;
457
+ /**
458
+ * The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
459
+ */
436
460
  encryptionKey?: pulumi.Input<string>;
437
461
  /**
438
462
  * (Required List of String) The list of zones the cluster is in.
@@ -471,6 +495,9 @@ export interface GetKafkaTopicCredentials {
471
495
  * The Kafka API Key.
472
496
  */
473
497
  key: string;
498
+ /**
499
+ * The Cluster API Secret for your Confluent Cloud cluster.
500
+ */
474
501
  secret: string;
475
502
  }
476
503
  export interface GetKafkaTopicCredentialsArgs {
@@ -478,6 +505,9 @@ export interface GetKafkaTopicCredentialsArgs {
478
505
  * The Kafka API Key.
479
506
  */
480
507
  key: pulumi.Input<string>;
508
+ /**
509
+ * The Cluster API Secret for your Confluent Cloud cluster.
510
+ */
481
511
  secret: pulumi.Input<string>;
482
512
  }
483
513
  export interface GetKafkaTopicKafkaCluster {
@@ -821,31 +851,67 @@ export interface GetSchemaRegistryClusterModeSchemaRegistryClusterArgs {
821
851
  id: pulumi.Input<string>;
822
852
  }
823
853
  export interface GetSchemaRegistryDekCredentials {
854
+ /**
855
+ * The Cluster API Key for your Confluent Cloud cluster.
856
+ */
824
857
  key: string;
858
+ /**
859
+ * The Cluster API Secret for your Confluent Cloud cluster.
860
+ */
825
861
  secret: string;
826
862
  }
827
863
  export interface GetSchemaRegistryDekCredentialsArgs {
864
+ /**
865
+ * The Cluster API Key for your Confluent Cloud cluster.
866
+ */
828
867
  key: pulumi.Input<string>;
868
+ /**
869
+ * The Cluster API Secret for your Confluent Cloud cluster.
870
+ */
829
871
  secret: pulumi.Input<string>;
830
872
  }
831
873
  export interface GetSchemaRegistryDekSchemaRegistryCluster {
874
+ /**
875
+ * The Schema Registry cluster ID (e.g., `lsrc-abc123`).
876
+ */
832
877
  id: string;
833
878
  }
834
879
  export interface GetSchemaRegistryDekSchemaRegistryClusterArgs {
880
+ /**
881
+ * The Schema Registry cluster ID (e.g., `lsrc-abc123`).
882
+ */
835
883
  id: pulumi.Input<string>;
836
884
  }
837
885
  export interface GetSchemaRegistryKekCredentials {
886
+ /**
887
+ * The Cluster API Key for your Confluent Cloud cluster.
888
+ */
838
889
  key: string;
890
+ /**
891
+ * The Cluster API Secret for your Confluent Cloud cluster.
892
+ */
839
893
  secret: string;
840
894
  }
841
895
  export interface GetSchemaRegistryKekCredentialsArgs {
896
+ /**
897
+ * The Cluster API Key for your Confluent Cloud cluster.
898
+ */
842
899
  key: pulumi.Input<string>;
900
+ /**
901
+ * The Cluster API Secret for your Confluent Cloud cluster.
902
+ */
843
903
  secret: pulumi.Input<string>;
844
904
  }
845
905
  export interface GetSchemaRegistryKekSchemaRegistryCluster {
906
+ /**
907
+ * The Schema Registry cluster ID (e.g., `lsrc-abc123`).
908
+ */
846
909
  id: string;
847
910
  }
848
911
  export interface GetSchemaRegistryKekSchemaRegistryClusterArgs {
912
+ /**
913
+ * The Schema Registry cluster ID (e.g., `lsrc-abc123`).
914
+ */
849
915
  id: pulumi.Input<string>;
850
916
  }
851
917
  export interface GetSchemaSchemaRegistryCluster {
@@ -1167,6 +1233,9 @@ export interface KafkaClusterDedicated {
1167
1233
  * > **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
1168
1234
  */
1169
1235
  cku: pulumi.Input<number>;
1236
+ /**
1237
+ * The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
1238
+ */
1170
1239
  encryptionKey?: pulumi.Input<string>;
1171
1240
  /**
1172
1241
  * (Required List of String) The list of zones the cluster is in.
@@ -1199,6 +1268,9 @@ export interface KafkaMirrorTopicClusterLink {
1199
1268
  linkName: pulumi.Input<string>;
1200
1269
  }
1201
1270
  export interface KafkaMirrorTopicKafkaCluster {
1271
+ /**
1272
+ * The Kafka API Credentials.
1273
+ */
1202
1274
  credentials?: pulumi.Input<inputs.KafkaMirrorTopicKafkaClusterCredentials>;
1203
1275
  /**
1204
1276
  * The ID of the destination Kafka cluster, for example, `lkc-abc123`.
@@ -1476,8 +1548,17 @@ export interface PrivateLinkAttachmentAw {
1476
1548
  vpcEndpointServiceName?: pulumi.Input<string>;
1477
1549
  }
1478
1550
  export interface PrivateLinkAttachmentAzure {
1551
+ /**
1552
+ * Azure PrivateLink service alias for the availability zone.
1553
+ */
1479
1554
  privateLinkServiceAlias?: pulumi.Input<string>;
1555
+ /**
1556
+ * Azure PrivateLink service resource id for the availability zone.
1557
+ */
1480
1558
  privateLinkServiceResourceId?: pulumi.Input<string>;
1559
+ /**
1560
+ * Availability zone associated with the Azure PrivateLink service.
1561
+ */
1481
1562
  zone?: pulumi.Input<string>;
1482
1563
  }
1483
1564
  export interface PrivateLinkAttachmentConnectionAws {
@@ -1487,6 +1568,9 @@ export interface PrivateLinkAttachmentConnectionAws {
1487
1568
  vpcEndpointId: pulumi.Input<string>;
1488
1569
  }
1489
1570
  export interface PrivateLinkAttachmentConnectionAzure {
1571
+ /**
1572
+ * Resource Id of the PrivateEndpoint that is connected to the PrivateLink service.
1573
+ */
1490
1574
  privateEndpointResourceId: pulumi.Input<string>;
1491
1575
  }
1492
1576
  export interface PrivateLinkAttachmentConnectionEnvironment {
@@ -1496,6 +1580,9 @@ export interface PrivateLinkAttachmentConnectionEnvironment {
1496
1580
  id: pulumi.Input<string>;
1497
1581
  }
1498
1582
  export interface PrivateLinkAttachmentConnectionGcp {
1583
+ /**
1584
+ * Id of the Private Service connection.
1585
+ */
1499
1586
  privateServiceConnectConnectionId: pulumi.Input<string>;
1500
1587
  }
1501
1588
  export interface PrivateLinkAttachmentConnectionPrivateLinkAttachment {
@@ -1511,7 +1598,13 @@ export interface PrivateLinkAttachmentEnvironment {
1511
1598
  id: pulumi.Input<string>;
1512
1599
  }
1513
1600
  export interface PrivateLinkAttachmentGcp {
1601
+ /**
1602
+ * Id of a Private Service Connect Service Attachment in Confluent Cloud.
1603
+ */
1514
1604
  privateServiceConnectServiceAttachment?: pulumi.Input<string>;
1605
+ /**
1606
+ * Zone associated with the PSC Service attachment.
1607
+ */
1515
1608
  zone?: pulumi.Input<string>;
1516
1609
  }
1517
1610
  export interface SchemaCredentials {
@@ -1519,6 +1612,9 @@ export interface SchemaCredentials {
1519
1612
  * The Schema Registry API Key.
1520
1613
  */
1521
1614
  key: pulumi.Input<string>;
1615
+ /**
1616
+ * The Cluster API Secret for your Confluent Cloud cluster.
1617
+ */
1522
1618
  secret: pulumi.Input<string>;
1523
1619
  }
1524
1620
  export interface SchemaExporterCredentials {
@@ -1559,6 +1655,9 @@ export interface SchemaRegistryClusterConfigCredentials {
1559
1655
  * The Schema Registry API Key.
1560
1656
  */
1561
1657
  key: pulumi.Input<string>;
1658
+ /**
1659
+ * The Cluster API Secret for your Confluent Cloud cluster.
1660
+ */
1562
1661
  secret: pulumi.Input<string>;
1563
1662
  }
1564
1663
  export interface SchemaRegistryClusterConfigSchemaRegistryCluster {
@@ -1578,6 +1677,9 @@ export interface SchemaRegistryClusterModeCredentials {
1578
1677
  * The Schema Registry API Key.
1579
1678
  */
1580
1679
  key: pulumi.Input<string>;
1680
+ /**
1681
+ * The Cluster API Secret for your Confluent Cloud cluster.
1682
+ */
1581
1683
  secret: pulumi.Input<string>;
1582
1684
  }
1583
1685
  export interface SchemaRegistryClusterModeSchemaRegistryCluster {
@@ -1593,17 +1695,35 @@ export interface SchemaRegistryClusterRegion {
1593
1695
  id: pulumi.Input<string>;
1594
1696
  }
1595
1697
  export interface SchemaRegistryDekCredentials {
1698
+ /**
1699
+ * The Cluster API Key for your Confluent Cloud cluster.
1700
+ */
1596
1701
  key: pulumi.Input<string>;
1702
+ /**
1703
+ * The Cluster API Secret for your Confluent Cloud cluster.
1704
+ */
1597
1705
  secret: pulumi.Input<string>;
1598
1706
  }
1599
1707
  export interface SchemaRegistryDekSchemaRegistryCluster {
1708
+ /**
1709
+ * The Schema Registry cluster ID (e.g., `lsrc-abc123`).
1710
+ */
1600
1711
  id: pulumi.Input<string>;
1601
1712
  }
1602
1713
  export interface SchemaRegistryKekCredentials {
1714
+ /**
1715
+ * The Cluster API Key for your Confluent Cloud cluster.
1716
+ */
1603
1717
  key: pulumi.Input<string>;
1718
+ /**
1719
+ * The Cluster API Secret for your Confluent Cloud cluster.
1720
+ */
1604
1721
  secret: pulumi.Input<string>;
1605
1722
  }
1606
1723
  export interface SchemaRegistryKekSchemaRegistryCluster {
1724
+ /**
1725
+ * The Schema Registry cluster ID (e.g., `lsrc-abc123`).
1726
+ */
1607
1727
  id: pulumi.Input<string>;
1608
1728
  }
1609
1729
  export interface SchemaSchemaReference {
@@ -1631,6 +1751,9 @@ export interface SubjectConfigCredentials {
1631
1751
  * The Schema Registry API Key.
1632
1752
  */
1633
1753
  key: pulumi.Input<string>;
1754
+ /**
1755
+ * The Cluster API Secret for your Confluent Cloud cluster.
1756
+ */
1634
1757
  secret: pulumi.Input<string>;
1635
1758
  }
1636
1759
  export interface SubjectConfigSchemaRegistryCluster {
@@ -1644,6 +1767,9 @@ export interface SubjectModeCredentials {
1644
1767
  * The Schema Registry API Key.
1645
1768
  */
1646
1769
  key: pulumi.Input<string>;
1770
+ /**
1771
+ * The Cluster API Secret for your Confluent Cloud cluster.
1772
+ */
1647
1773
  secret: pulumi.Input<string>;
1648
1774
  }
1649
1775
  export interface SubjectModeSchemaRegistryCluster {
package/types/output.d.ts CHANGED
@@ -4,6 +4,9 @@ export interface ApiKeyManagedResource {
4
4
  * The API group and version of the managed resource that the API Key associated with, for example, `cmk/v2`.
5
5
  */
6
6
  apiVersion: string;
7
+ /**
8
+ * Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
9
+ */
7
10
  environment: outputs.ApiKeyManagedResourceEnvironment;
8
11
  /**
9
12
  * The ID of the Environment that the managed resource belongs to, for example, `env-abc123`.
@@ -83,6 +86,9 @@ export interface BusinessMetadataCredentials {
83
86
  * The Schema Registry API Key.
84
87
  */
85
88
  key: string;
89
+ /**
90
+ * The Cluster API Secret for your Confluent Cloud cluster.
91
+ */
86
92
  secret: string;
87
93
  }
88
94
  export interface BusinessMetadataSchemaRegistryCluster {
@@ -134,6 +140,9 @@ export interface ClusterLinkDestinationKafkaCluster {
134
140
  * 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`).
135
141
  */
136
142
  bootstrapEndpoint?: string;
143
+ /**
144
+ * The Kafka API Credentials.
145
+ */
137
146
  credentials?: outputs.ClusterLinkDestinationKafkaClusterCredentials;
138
147
  /**
139
148
  * The ID of the remote Kafka cluster, for example, `lkc-abc123`.
@@ -159,6 +168,9 @@ export interface ClusterLinkLocalKafkaCluster {
159
168
  * 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`).
160
169
  */
161
170
  bootstrapEndpoint?: string;
171
+ /**
172
+ * The Kafka API Credentials.
173
+ */
162
174
  credentials?: outputs.ClusterLinkLocalKafkaClusterCredentials;
163
175
  /**
164
176
  * The ID of the remote Kafka cluster, for example, `lkc-abc123`.
@@ -184,6 +196,9 @@ export interface ClusterLinkRemoteKafkaCluster {
184
196
  * 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`).
185
197
  */
186
198
  bootstrapEndpoint?: string;
199
+ /**
200
+ * The Kafka API Credentials.
201
+ */
187
202
  credentials?: outputs.ClusterLinkRemoteKafkaClusterCredentials;
188
203
  /**
189
204
  * The ID of the remote Kafka cluster, for example, `lkc-abc123`.
@@ -209,6 +224,9 @@ export interface ClusterLinkSourceKafkaCluster {
209
224
  * 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`).
210
225
  */
211
226
  bootstrapEndpoint?: string;
227
+ /**
228
+ * The Kafka API Credentials.
229
+ */
212
230
  credentials?: outputs.ClusterLinkSourceKafkaClusterCredentials;
213
231
  /**
214
232
  * The ID of the remote Kafka cluster, for example, `lkc-abc123`.
@@ -488,6 +506,9 @@ export interface GetKafkaClusterDedicated {
488
506
  * (Required Number) The number of Confluent Kafka Units (CKUs) for Dedicated cluster types. The minimum number of CKUs for `SINGLE_ZONE` dedicated clusters is `1` whereas `MULTI_ZONE` dedicated clusters must have more than `2` CKUs.
489
507
  */
490
508
  cku: number;
509
+ /**
510
+ * The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
511
+ */
491
512
  encryptionKey: string;
492
513
  /**
493
514
  * (Required List of String) The list of zones the cluster is in.
@@ -522,6 +543,9 @@ export interface GetKafkaTopicCredentials {
522
543
  * The Kafka API Key.
523
544
  */
524
545
  key: string;
546
+ /**
547
+ * The Cluster API Secret for your Confluent Cloud cluster.
548
+ */
525
549
  secret: string;
526
550
  }
527
551
  export interface GetKafkaTopicKafkaCluster {
@@ -761,8 +785,17 @@ export interface GetPrivateLinkAttachmentAw {
761
785
  vpcEndpointServiceName: string;
762
786
  }
763
787
  export interface GetPrivateLinkAttachmentAzure {
788
+ /**
789
+ * Azure PrivateLink service alias for the availability zone.
790
+ */
764
791
  privateLinkServiceAlias: string;
792
+ /**
793
+ * Azure PrivateLink service resource id for the availability zone.
794
+ */
765
795
  privateLinkServiceResourceId: string;
796
+ /**
797
+ * Availability zone associated with the Azure PrivateLink service.
798
+ */
766
799
  zone: string;
767
800
  }
768
801
  export interface GetPrivateLinkAttachmentConnectionAw {
@@ -772,6 +805,9 @@ export interface GetPrivateLinkAttachmentConnectionAw {
772
805
  vpcEndpointId: string;
773
806
  }
774
807
  export interface GetPrivateLinkAttachmentConnectionAzure {
808
+ /**
809
+ * Resource Id of the PrivateEndpoint that is connected to the PrivateLink service.
810
+ */
775
811
  privateEndpointResourceId: string;
776
812
  }
777
813
  export interface GetPrivateLinkAttachmentConnectionEnvironment {
@@ -781,6 +817,9 @@ export interface GetPrivateLinkAttachmentConnectionEnvironment {
781
817
  id: string;
782
818
  }
783
819
  export interface GetPrivateLinkAttachmentConnectionGcp {
820
+ /**
821
+ * Id of the Private Service connection.
822
+ */
784
823
  privateServiceConnectConnectionId: string;
785
824
  }
786
825
  export interface GetPrivateLinkAttachmentConnectionPrivateLinkAttachment {
@@ -796,7 +835,13 @@ export interface GetPrivateLinkAttachmentEnvironment {
796
835
  id: string;
797
836
  }
798
837
  export interface GetPrivateLinkAttachmentGcp {
838
+ /**
839
+ * Id of a Private Service Connect Service Attachment in Confluent Cloud.
840
+ */
799
841
  privateServiceConnectServiceAttachment: string;
842
+ /**
843
+ * Zone associated with the PSC Service attachment.
844
+ */
800
845
  zone: string;
801
846
  }
802
847
  export interface GetSchemaCredentials {
@@ -910,17 +955,35 @@ export interface GetSchemaRegistryClustersClusterRegion {
910
955
  id: string;
911
956
  }
912
957
  export interface GetSchemaRegistryDekCredentials {
958
+ /**
959
+ * The Cluster API Key for your Confluent Cloud cluster.
960
+ */
913
961
  key: string;
962
+ /**
963
+ * The Cluster API Secret for your Confluent Cloud cluster.
964
+ */
914
965
  secret: string;
915
966
  }
916
967
  export interface GetSchemaRegistryDekSchemaRegistryCluster {
968
+ /**
969
+ * The Schema Registry cluster ID (e.g., `lsrc-abc123`).
970
+ */
917
971
  id: string;
918
972
  }
919
973
  export interface GetSchemaRegistryKekCredentials {
974
+ /**
975
+ * The Cluster API Key for your Confluent Cloud cluster.
976
+ */
920
977
  key: string;
978
+ /**
979
+ * The Cluster API Secret for your Confluent Cloud cluster.
980
+ */
921
981
  secret: string;
922
982
  }
923
983
  export interface GetSchemaRegistryKekSchemaRegistryCluster {
984
+ /**
985
+ * The Schema Registry cluster ID (e.g., `lsrc-abc123`).
986
+ */
924
987
  id: string;
925
988
  }
926
989
  export interface GetSchemaSchemaReference {
@@ -1214,6 +1277,9 @@ export interface KafkaClusterDedicated {
1214
1277
  * > **Note:** Currently, provisioning of a Dedicated Kafka cluster takes around 25 minutes on average but might take up to 24 hours. If you can't wait for the `pulumi up` step to finish, you can exit it and import the cluster by using the `pulumi import` command once it has been provisioned. When the cluster is provisioned, you will receive an email notification, and you can also follow updates on the Target Environment web page of the Confluent Cloud website.
1215
1278
  */
1216
1279
  cku: number;
1280
+ /**
1281
+ * The ID of the encryption key that is used to encrypt the data in the Kafka cluster.
1282
+ */
1217
1283
  encryptionKey?: string;
1218
1284
  /**
1219
1285
  * (Required List of String) The list of zones the cluster is in.
@@ -1246,6 +1312,9 @@ export interface KafkaMirrorTopicClusterLink {
1246
1312
  linkName: string;
1247
1313
  }
1248
1314
  export interface KafkaMirrorTopicKafkaCluster {
1315
+ /**
1316
+ * The Kafka API Credentials.
1317
+ */
1249
1318
  credentials?: outputs.KafkaMirrorTopicKafkaClusterCredentials;
1250
1319
  /**
1251
1320
  * The ID of the destination Kafka cluster, for example, `lkc-abc123`.
@@ -1523,8 +1592,17 @@ export interface PrivateLinkAttachmentAw {
1523
1592
  vpcEndpointServiceName: string;
1524
1593
  }
1525
1594
  export interface PrivateLinkAttachmentAzure {
1595
+ /**
1596
+ * Azure PrivateLink service alias for the availability zone.
1597
+ */
1526
1598
  privateLinkServiceAlias: string;
1599
+ /**
1600
+ * Azure PrivateLink service resource id for the availability zone.
1601
+ */
1527
1602
  privateLinkServiceResourceId: string;
1603
+ /**
1604
+ * Availability zone associated with the Azure PrivateLink service.
1605
+ */
1528
1606
  zone: string;
1529
1607
  }
1530
1608
  export interface PrivateLinkAttachmentConnectionAws {
@@ -1534,6 +1612,9 @@ export interface PrivateLinkAttachmentConnectionAws {
1534
1612
  vpcEndpointId: string;
1535
1613
  }
1536
1614
  export interface PrivateLinkAttachmentConnectionAzure {
1615
+ /**
1616
+ * Resource Id of the PrivateEndpoint that is connected to the PrivateLink service.
1617
+ */
1537
1618
  privateEndpointResourceId: string;
1538
1619
  }
1539
1620
  export interface PrivateLinkAttachmentConnectionEnvironment {
@@ -1543,6 +1624,9 @@ export interface PrivateLinkAttachmentConnectionEnvironment {
1543
1624
  id: string;
1544
1625
  }
1545
1626
  export interface PrivateLinkAttachmentConnectionGcp {
1627
+ /**
1628
+ * Id of the Private Service connection.
1629
+ */
1546
1630
  privateServiceConnectConnectionId: string;
1547
1631
  }
1548
1632
  export interface PrivateLinkAttachmentConnectionPrivateLinkAttachment {
@@ -1558,7 +1642,13 @@ export interface PrivateLinkAttachmentEnvironment {
1558
1642
  id: string;
1559
1643
  }
1560
1644
  export interface PrivateLinkAttachmentGcp {
1645
+ /**
1646
+ * Id of a Private Service Connect Service Attachment in Confluent Cloud.
1647
+ */
1561
1648
  privateServiceConnectServiceAttachment: string;
1649
+ /**
1650
+ * Zone associated with the PSC Service attachment.
1651
+ */
1562
1652
  zone: string;
1563
1653
  }
1564
1654
  export interface SchemaCredentials {
@@ -1566,6 +1656,9 @@ export interface SchemaCredentials {
1566
1656
  * The Schema Registry API Key.
1567
1657
  */
1568
1658
  key: string;
1659
+ /**
1660
+ * The Cluster API Secret for your Confluent Cloud cluster.
1661
+ */
1569
1662
  secret: string;
1570
1663
  }
1571
1664
  export interface SchemaExporterCredentials {
@@ -1606,6 +1699,9 @@ export interface SchemaRegistryClusterConfigCredentials {
1606
1699
  * The Schema Registry API Key.
1607
1700
  */
1608
1701
  key: string;
1702
+ /**
1703
+ * The Cluster API Secret for your Confluent Cloud cluster.
1704
+ */
1609
1705
  secret: string;
1610
1706
  }
1611
1707
  export interface SchemaRegistryClusterConfigSchemaRegistryCluster {
@@ -1625,6 +1721,9 @@ export interface SchemaRegistryClusterModeCredentials {
1625
1721
  * The Schema Registry API Key.
1626
1722
  */
1627
1723
  key: string;
1724
+ /**
1725
+ * The Cluster API Secret for your Confluent Cloud cluster.
1726
+ */
1628
1727
  secret: string;
1629
1728
  }
1630
1729
  export interface SchemaRegistryClusterModeSchemaRegistryCluster {
@@ -1640,17 +1739,35 @@ export interface SchemaRegistryClusterRegion {
1640
1739
  id: string;
1641
1740
  }
1642
1741
  export interface SchemaRegistryDekCredentials {
1742
+ /**
1743
+ * The Cluster API Key for your Confluent Cloud cluster.
1744
+ */
1643
1745
  key: string;
1746
+ /**
1747
+ * The Cluster API Secret for your Confluent Cloud cluster.
1748
+ */
1644
1749
  secret: string;
1645
1750
  }
1646
1751
  export interface SchemaRegistryDekSchemaRegistryCluster {
1752
+ /**
1753
+ * The Schema Registry cluster ID (e.g., `lsrc-abc123`).
1754
+ */
1647
1755
  id: string;
1648
1756
  }
1649
1757
  export interface SchemaRegistryKekCredentials {
1758
+ /**
1759
+ * The Cluster API Key for your Confluent Cloud cluster.
1760
+ */
1650
1761
  key: string;
1762
+ /**
1763
+ * The Cluster API Secret for your Confluent Cloud cluster.
1764
+ */
1651
1765
  secret: string;
1652
1766
  }
1653
1767
  export interface SchemaRegistryKekSchemaRegistryCluster {
1768
+ /**
1769
+ * The Schema Registry cluster ID (e.g., `lsrc-abc123`).
1770
+ */
1654
1771
  id: string;
1655
1772
  }
1656
1773
  export interface SchemaSchemaReference {
@@ -1678,6 +1795,9 @@ export interface SubjectConfigCredentials {
1678
1795
  * The Schema Registry API Key.
1679
1796
  */
1680
1797
  key: string;
1798
+ /**
1799
+ * The Cluster API Secret for your Confluent Cloud cluster.
1800
+ */
1681
1801
  secret: string;
1682
1802
  }
1683
1803
  export interface SubjectConfigSchemaRegistryCluster {
@@ -1691,6 +1811,9 @@ export interface SubjectModeCredentials {
1691
1811
  * The Schema Registry API Key.
1692
1812
  */
1693
1813
  key: string;
1814
+ /**
1815
+ * The Cluster API Secret for your Confluent Cloud cluster.
1816
+ */
1694
1817
  secret: string;
1695
1818
  }
1696
1819
  export interface SubjectModeSchemaRegistryCluster {