@pulumi/confluentcloud 1.4.0 → 1.6.0-alpha.1669246534
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/apiKey.js +22 -22
- package/apiKey.js.map +1 -1
- package/clusterLink.js +22 -22
- package/clusterLink.js.map +1 -1
- package/connector.d.ts +6 -6
- package/connector.js +22 -22
- package/connector.js.map +1 -1
- package/environment.js +16 -16
- package/environment.js.map +1 -1
- package/getKafkaClientQuota.d.ts +4 -1
- package/getKafkaClientQuota.js +3 -0
- package/getKafkaClientQuota.js.map +1 -1
- package/getKsqlCluster.d.ts +10 -5
- package/getKsqlCluster.js +3 -0
- package/getKsqlCluster.js.map +1 -1
- package/getSchemaRegistryCluster.d.ts +96 -0
- package/getSchemaRegistryCluster.js +54 -0
- package/getSchemaRegistryCluster.js.map +1 -0
- package/getSchemaRegistryRegion.d.ts +71 -0
- package/getSchemaRegistryRegion.js +46 -0
- package/getSchemaRegistryRegion.js.map +1 -0
- package/getStreamGovernanceRegion.d.ts +73 -0
- package/getStreamGovernanceRegion.js +48 -0
- package/getStreamGovernanceRegion.js.map +1 -0
- package/getStreatGovernanceCluster.d.ts +98 -0
- package/getStreatGovernanceCluster.js +56 -0
- package/getStreatGovernanceCluster.js.map +1 -0
- package/getTransitGatewayAttachment.d.ts +83 -0
- package/getTransitGatewayAttachment.js +54 -0
- package/getTransitGatewayAttachment.js.map +1 -0
- package/getUser.d.ts +1 -1
- package/getUser.js +1 -1
- package/identityPool.d.ts +0 -3
- package/identityPool.js +22 -25
- package/identityPool.js.map +1 -1
- package/identityProvider.d.ts +0 -3
- package/identityProvider.js +22 -25
- package/identityProvider.js.map +1 -1
- package/index.d.ts +43 -19
- package/index.js +32 -1
- package/index.js.map +1 -1
- package/kafkaAcl.d.ts +3 -3
- package/kafkaAcl.js +22 -22
- package/kafkaAcl.js.map +1 -1
- package/kafkaClientQuota.d.ts +3 -3
- package/kafkaClientQuota.js +22 -22
- package/kafkaClientQuota.js.map +1 -1
- package/kafkaCluster.d.ts +6 -6
- package/kafkaCluster.js +26 -26
- package/kafkaCluster.js.map +1 -1
- package/kafkaClusterConfig.d.ts +1 -1
- package/kafkaClusterConfig.js +23 -23
- package/kafkaClusterConfig.js.map +1 -1
- package/kafkaMirrorTopic.js +22 -22
- package/kafkaMirrorTopic.js.map +1 -1
- package/kafkaTopic.d.ts +1 -1
- package/kafkaTopic.js +23 -23
- package/kafkaTopic.js.map +1 -1
- package/ksqlCluster.d.ts +8 -8
- package/ksqlCluster.js +24 -24
- package/ksqlCluster.js.map +1 -1
- package/network.js +22 -22
- package/network.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/peering.js +22 -22
- package/peering.js.map +1 -1
- package/privateLinkAccess.js +22 -22
- package/privateLinkAccess.js.map +1 -1
- package/provider.js +10 -10
- package/provider.js.map +1 -1
- package/roleBinding.js +22 -22
- package/roleBinding.js.map +1 -1
- package/schemaRegistryCluster.d.ts +139 -0
- package/schemaRegistryCluster.js +106 -0
- package/schemaRegistryCluster.js.map +1 -0
- package/serviceAccount.js +20 -20
- package/serviceAccount.js.map +1 -1
- package/streamGovernanceCluster.d.ts +139 -0
- package/streamGovernanceCluster.js +106 -0
- package/streamGovernanceCluster.js.map +1 -0
- package/transitGatewayAttachment.d.ts +100 -0
- package/transitGatewayAttachment.js +72 -0
- package/transitGatewayAttachment.js.map +1 -0
- package/types/input.d.ts +145 -39
- package/types/output.d.ts +136 -12
package/types/input.d.ts
CHANGED
|
@@ -37,7 +37,7 @@ export interface ApiKeyOwner {
|
|
|
37
37
|
}
|
|
38
38
|
export interface ClusterLinkDestinationKafkaCluster {
|
|
39
39
|
/**
|
|
40
|
-
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
40
|
+
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092` or `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
41
41
|
*/
|
|
42
42
|
bootstrapEndpoint?: pulumi.Input<string>;
|
|
43
43
|
credentials?: pulumi.Input<inputs.ClusterLinkDestinationKafkaClusterCredentials>;
|
|
@@ -62,7 +62,7 @@ export interface ClusterLinkDestinationKafkaClusterCredentials {
|
|
|
62
62
|
}
|
|
63
63
|
export interface ClusterLinkSourceKafkaCluster {
|
|
64
64
|
/**
|
|
65
|
-
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
65
|
+
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092` or `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
66
66
|
*/
|
|
67
67
|
bootstrapEndpoint?: pulumi.Input<string>;
|
|
68
68
|
credentials?: pulumi.Input<inputs.ClusterLinkSourceKafkaClusterCredentials>;
|
|
@@ -109,10 +109,10 @@ export interface GetIdentityPoolIdentityProvider {
|
|
|
109
109
|
*/
|
|
110
110
|
id: string;
|
|
111
111
|
}
|
|
112
|
-
export interface GetKafkaClusterBasic {
|
|
113
|
-
}
|
|
114
112
|
export interface GetKafkaClusterBasicArgs {
|
|
115
113
|
}
|
|
114
|
+
export interface GetKafkaClusterBasic {
|
|
115
|
+
}
|
|
116
116
|
export interface GetKafkaClusterDedicated {
|
|
117
117
|
/**
|
|
118
118
|
* (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.
|
|
@@ -145,29 +145,29 @@ export interface GetKafkaClusterEnvironmentArgs {
|
|
|
145
145
|
*/
|
|
146
146
|
id: pulumi.Input<string>;
|
|
147
147
|
}
|
|
148
|
-
export interface GetKafkaClusterStandardArgs {
|
|
149
|
-
}
|
|
150
148
|
export interface GetKafkaClusterStandard {
|
|
151
149
|
}
|
|
152
|
-
export interface
|
|
150
|
+
export interface GetKafkaClusterStandardArgs {
|
|
151
|
+
}
|
|
152
|
+
export interface GetKafkaTopicCredentialsArgs {
|
|
153
153
|
/**
|
|
154
154
|
* The Kafka API Key.
|
|
155
155
|
*/
|
|
156
|
-
key: string
|
|
156
|
+
key: pulumi.Input<string>;
|
|
157
157
|
/**
|
|
158
158
|
* The Kafka API Secret.
|
|
159
159
|
*/
|
|
160
|
-
secret: string
|
|
160
|
+
secret: pulumi.Input<string>;
|
|
161
161
|
}
|
|
162
|
-
export interface
|
|
162
|
+
export interface GetKafkaTopicCredentials {
|
|
163
163
|
/**
|
|
164
164
|
* The Kafka API Key.
|
|
165
165
|
*/
|
|
166
|
-
key:
|
|
166
|
+
key: string;
|
|
167
167
|
/**
|
|
168
168
|
* The Kafka API Secret.
|
|
169
169
|
*/
|
|
170
|
-
secret:
|
|
170
|
+
secret: string;
|
|
171
171
|
}
|
|
172
172
|
export interface GetKafkaTopicKafkaCluster {
|
|
173
173
|
/**
|
|
@@ -181,45 +181,45 @@ export interface GetKafkaTopicKafkaClusterArgs {
|
|
|
181
181
|
*/
|
|
182
182
|
id: pulumi.Input<string>;
|
|
183
183
|
}
|
|
184
|
-
export interface
|
|
184
|
+
export interface GetKsqlClusterEnvironment {
|
|
185
185
|
/**
|
|
186
186
|
* The ID of the Environment that the ksqlDB cluster belongs to, for example, `env-xyz456`.
|
|
187
187
|
*/
|
|
188
|
-
id:
|
|
188
|
+
id: string;
|
|
189
189
|
}
|
|
190
|
-
export interface
|
|
190
|
+
export interface GetKsqlClusterEnvironmentArgs {
|
|
191
191
|
/**
|
|
192
192
|
* The ID of the Environment that the ksqlDB cluster belongs to, for example, `env-xyz456`.
|
|
193
193
|
*/
|
|
194
|
-
id: string
|
|
194
|
+
id: pulumi.Input<string>;
|
|
195
195
|
}
|
|
196
196
|
export interface GetNetworkAw {
|
|
197
197
|
/**
|
|
198
|
-
* (
|
|
198
|
+
* (Required String) The AWS account ID associated with the Confluent Cloud VPC.
|
|
199
|
+
*/
|
|
200
|
+
account?: string;
|
|
201
|
+
/**
|
|
202
|
+
* (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
|
|
199
203
|
*/
|
|
200
204
|
privateLinkEndpointService?: string;
|
|
201
205
|
/**
|
|
202
|
-
* (Required String) The
|
|
206
|
+
* (Required String) The Confluent Cloud VPC ID.
|
|
203
207
|
*/
|
|
204
208
|
vpc?: string;
|
|
205
209
|
}
|
|
206
210
|
export interface GetNetworkAwArgs {
|
|
207
211
|
/**
|
|
208
|
-
* (
|
|
212
|
+
* (Required String) The AWS account ID associated with the Confluent Cloud VPC.
|
|
209
213
|
*/
|
|
210
|
-
|
|
214
|
+
account?: pulumi.Input<string>;
|
|
211
215
|
/**
|
|
212
|
-
* (
|
|
216
|
+
* (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
|
|
213
217
|
*/
|
|
214
|
-
|
|
215
|
-
}
|
|
216
|
-
export interface GetNetworkAzureArgs {
|
|
218
|
+
privateLinkEndpointService?: pulumi.Input<string>;
|
|
217
219
|
/**
|
|
218
|
-
* (
|
|
220
|
+
* (Required String) The Confluent Cloud VPC ID.
|
|
219
221
|
*/
|
|
220
|
-
|
|
221
|
-
[key: string]: pulumi.Input<string>;
|
|
222
|
-
}>;
|
|
222
|
+
vpc?: pulumi.Input<string>;
|
|
223
223
|
}
|
|
224
224
|
export interface GetNetworkAzure {
|
|
225
225
|
/**
|
|
@@ -229,6 +229,14 @@ export interface GetNetworkAzure {
|
|
|
229
229
|
[key: string]: string;
|
|
230
230
|
};
|
|
231
231
|
}
|
|
232
|
+
export interface GetNetworkAzureArgs {
|
|
233
|
+
/**
|
|
234
|
+
* (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zones and values are [Azure Private Link Service Aliases](https://docs.microsoft.com/en-us/azure/private-link/private-link-service-overview#share-your-service).
|
|
235
|
+
*/
|
|
236
|
+
privateLinkServiceAliases?: pulumi.Input<{
|
|
237
|
+
[key: string]: pulumi.Input<string>;
|
|
238
|
+
}>;
|
|
239
|
+
}
|
|
232
240
|
export interface GetNetworkEnvironment {
|
|
233
241
|
/**
|
|
234
242
|
* The ID of the Environment that the Network belongs to, for example, `env-xyz456`.
|
|
@@ -243,33 +251,33 @@ export interface GetNetworkEnvironmentArgs {
|
|
|
243
251
|
}
|
|
244
252
|
export interface GetNetworkGcp {
|
|
245
253
|
/**
|
|
246
|
-
* (Optional Map) The mapping of zones to Private Service Connect
|
|
254
|
+
* (Optional Map) The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect service attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7).
|
|
247
255
|
*/
|
|
248
256
|
privateServiceConnectServiceAttachments?: {
|
|
249
257
|
[key: string]: string;
|
|
250
258
|
};
|
|
251
259
|
/**
|
|
252
|
-
* (Required String) The GCP
|
|
260
|
+
* (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
|
|
253
261
|
*/
|
|
254
262
|
project?: string;
|
|
255
263
|
/**
|
|
256
|
-
* (Required String) The
|
|
264
|
+
* (Required String) The network name of the Confluent Cloud VPC.
|
|
257
265
|
*/
|
|
258
266
|
vpcNetwork?: string;
|
|
259
267
|
}
|
|
260
268
|
export interface GetNetworkGcpArgs {
|
|
261
269
|
/**
|
|
262
|
-
* (Optional Map) The mapping of zones to Private Service Connect
|
|
270
|
+
* (Optional Map) The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect service attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7).
|
|
263
271
|
*/
|
|
264
272
|
privateServiceConnectServiceAttachments?: pulumi.Input<{
|
|
265
273
|
[key: string]: pulumi.Input<string>;
|
|
266
274
|
}>;
|
|
267
275
|
/**
|
|
268
|
-
* (Required String) The GCP
|
|
276
|
+
* (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
|
|
269
277
|
*/
|
|
270
278
|
project?: pulumi.Input<string>;
|
|
271
279
|
/**
|
|
272
|
-
* (Required String) The
|
|
280
|
+
* (Required String) The network name of the Confluent Cloud VPC.
|
|
273
281
|
*/
|
|
274
282
|
vpcNetwork?: pulumi.Input<string>;
|
|
275
283
|
}
|
|
@@ -297,6 +305,42 @@ export interface GetPrivateLinkAccessEnvironmentArgs {
|
|
|
297
305
|
*/
|
|
298
306
|
id: pulumi.Input<string>;
|
|
299
307
|
}
|
|
308
|
+
export interface GetSchemaRegistryClusterEnvironmentArgs {
|
|
309
|
+
/**
|
|
310
|
+
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
311
|
+
*/
|
|
312
|
+
id: pulumi.Input<string>;
|
|
313
|
+
}
|
|
314
|
+
export interface GetSchemaRegistryClusterEnvironment {
|
|
315
|
+
/**
|
|
316
|
+
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
317
|
+
*/
|
|
318
|
+
id: string;
|
|
319
|
+
}
|
|
320
|
+
export interface GetStreatGovernanceClusterEnvironment {
|
|
321
|
+
/**
|
|
322
|
+
* The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
|
|
323
|
+
*/
|
|
324
|
+
id: string;
|
|
325
|
+
}
|
|
326
|
+
export interface GetStreatGovernanceClusterEnvironmentArgs {
|
|
327
|
+
/**
|
|
328
|
+
* The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
|
|
329
|
+
*/
|
|
330
|
+
id: pulumi.Input<string>;
|
|
331
|
+
}
|
|
332
|
+
export interface GetTransitGatewayAttachmentEnvironmentArgs {
|
|
333
|
+
/**
|
|
334
|
+
* The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
|
|
335
|
+
*/
|
|
336
|
+
id: pulumi.Input<string>;
|
|
337
|
+
}
|
|
338
|
+
export interface GetTransitGatewayAttachmentEnvironment {
|
|
339
|
+
/**
|
|
340
|
+
* The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
|
|
341
|
+
*/
|
|
342
|
+
id: string;
|
|
343
|
+
}
|
|
300
344
|
export interface IdentityPoolIdentityProvider {
|
|
301
345
|
/**
|
|
302
346
|
* The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
|
|
@@ -452,11 +496,15 @@ export interface KsqlClusterKafkaCluster {
|
|
|
452
496
|
}
|
|
453
497
|
export interface NetworkAw {
|
|
454
498
|
/**
|
|
455
|
-
* (
|
|
499
|
+
* (Required String) The AWS account ID associated with the Confluent Cloud VPC.
|
|
500
|
+
*/
|
|
501
|
+
account?: pulumi.Input<string>;
|
|
502
|
+
/**
|
|
503
|
+
* (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
|
|
456
504
|
*/
|
|
457
505
|
privateLinkEndpointService?: pulumi.Input<string>;
|
|
458
506
|
/**
|
|
459
|
-
* (Required String) The
|
|
507
|
+
* (Required String) The Confluent Cloud VPC ID.
|
|
460
508
|
*/
|
|
461
509
|
vpc?: pulumi.Input<string>;
|
|
462
510
|
}
|
|
@@ -476,17 +524,17 @@ export interface NetworkEnvironment {
|
|
|
476
524
|
}
|
|
477
525
|
export interface NetworkGcp {
|
|
478
526
|
/**
|
|
479
|
-
* (Optional Map) The mapping of zones to Private Service Connect
|
|
527
|
+
* (Optional Map) The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect service attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7).
|
|
480
528
|
*/
|
|
481
529
|
privateServiceConnectServiceAttachments?: pulumi.Input<{
|
|
482
530
|
[key: string]: pulumi.Input<string>;
|
|
483
531
|
}>;
|
|
484
532
|
/**
|
|
485
|
-
* (Required String) The GCP
|
|
533
|
+
* (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
|
|
486
534
|
*/
|
|
487
535
|
project?: pulumi.Input<string>;
|
|
488
536
|
/**
|
|
489
|
-
* (Required String) The
|
|
537
|
+
* (Required String) The network name of the Confluent Cloud VPC.
|
|
490
538
|
*/
|
|
491
539
|
vpcNetwork?: pulumi.Input<string>;
|
|
492
540
|
}
|
|
@@ -578,3 +626,61 @@ export interface PrivateLinkAccessNetwork {
|
|
|
578
626
|
*/
|
|
579
627
|
id: pulumi.Input<string>;
|
|
580
628
|
}
|
|
629
|
+
export interface SchemaRegistryClusterEnvironment {
|
|
630
|
+
/**
|
|
631
|
+
* The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example, `sgreg-1`. See [Schema Registry Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
632
|
+
*/
|
|
633
|
+
id: pulumi.Input<string>;
|
|
634
|
+
}
|
|
635
|
+
export interface SchemaRegistryClusterRegion {
|
|
636
|
+
/**
|
|
637
|
+
* The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example, `sgreg-1`. See [Schema Registry Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
638
|
+
*/
|
|
639
|
+
id: pulumi.Input<string>;
|
|
640
|
+
}
|
|
641
|
+
export interface StreamGovernanceClusterEnvironment {
|
|
642
|
+
/**
|
|
643
|
+
* The ID of the Stream Governance region that the Stream Governance cluster belongs to, for example, `sgreg-1`. See [Stream Governance Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
644
|
+
*/
|
|
645
|
+
id: pulumi.Input<string>;
|
|
646
|
+
}
|
|
647
|
+
export interface StreamGovernanceClusterRegion {
|
|
648
|
+
/**
|
|
649
|
+
* The ID of the Stream Governance region that the Stream Governance cluster belongs to, for example, `sgreg-1`. See [Stream Governance Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
650
|
+
*/
|
|
651
|
+
id: pulumi.Input<string>;
|
|
652
|
+
}
|
|
653
|
+
export interface TransitGatewayAttachmentAws {
|
|
654
|
+
/**
|
|
655
|
+
* Enable custom destination routes in Confluent Cloud. Defaults to `false`.
|
|
656
|
+
*/
|
|
657
|
+
enableCustomRoutes?: pulumi.Input<boolean>;
|
|
658
|
+
/**
|
|
659
|
+
* The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
|
|
660
|
+
*/
|
|
661
|
+
ramResourceShareArn: pulumi.Input<string>;
|
|
662
|
+
/**
|
|
663
|
+
* List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.
|
|
664
|
+
*/
|
|
665
|
+
routes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
666
|
+
/**
|
|
667
|
+
* (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
|
|
668
|
+
*/
|
|
669
|
+
transitGatewayAttachmentId?: pulumi.Input<string>;
|
|
670
|
+
/**
|
|
671
|
+
* The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with `tgw-`.
|
|
672
|
+
*/
|
|
673
|
+
transitGatewayId: pulumi.Input<string>;
|
|
674
|
+
}
|
|
675
|
+
export interface TransitGatewayAttachmentEnvironment {
|
|
676
|
+
/**
|
|
677
|
+
* The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
|
|
678
|
+
*/
|
|
679
|
+
id: pulumi.Input<string>;
|
|
680
|
+
}
|
|
681
|
+
export interface TransitGatewayAttachmentNetwork {
|
|
682
|
+
/**
|
|
683
|
+
* The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
|
|
684
|
+
*/
|
|
685
|
+
id: pulumi.Input<string>;
|
|
686
|
+
}
|
package/types/output.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export interface ApiKeyOwner {
|
|
|
36
36
|
}
|
|
37
37
|
export interface ClusterLinkDestinationKafkaCluster {
|
|
38
38
|
/**
|
|
39
|
-
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
39
|
+
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092` or `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
40
40
|
*/
|
|
41
41
|
bootstrapEndpoint?: string;
|
|
42
42
|
credentials?: outputs.ClusterLinkDestinationKafkaClusterCredentials;
|
|
@@ -61,7 +61,7 @@ export interface ClusterLinkDestinationKafkaClusterCredentials {
|
|
|
61
61
|
}
|
|
62
62
|
export interface ClusterLinkSourceKafkaCluster {
|
|
63
63
|
/**
|
|
64
|
-
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
64
|
+
* The bootstrap endpoint of the destination Kafka cluster, for example, `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092` or `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
|
|
65
65
|
*/
|
|
66
66
|
bootstrapEndpoint?: string;
|
|
67
67
|
credentials?: outputs.ClusterLinkSourceKafkaClusterCredentials;
|
|
@@ -186,11 +186,15 @@ export interface GetKsqlClusterKafkaCluster {
|
|
|
186
186
|
}
|
|
187
187
|
export interface GetNetworkAw {
|
|
188
188
|
/**
|
|
189
|
-
* (
|
|
189
|
+
* (Required String) The AWS account ID associated with the Confluent Cloud VPC.
|
|
190
|
+
*/
|
|
191
|
+
account: string;
|
|
192
|
+
/**
|
|
193
|
+
* (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
|
|
190
194
|
*/
|
|
191
195
|
privateLinkEndpointService: string;
|
|
192
196
|
/**
|
|
193
|
-
* (Required String) The
|
|
197
|
+
* (Required String) The Confluent Cloud VPC ID.
|
|
194
198
|
*/
|
|
195
199
|
vpc: string;
|
|
196
200
|
}
|
|
@@ -210,17 +214,17 @@ export interface GetNetworkEnvironment {
|
|
|
210
214
|
}
|
|
211
215
|
export interface GetNetworkGcp {
|
|
212
216
|
/**
|
|
213
|
-
* (Optional Map) The mapping of zones to Private Service Connect
|
|
217
|
+
* (Optional Map) The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect service attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7).
|
|
214
218
|
*/
|
|
215
219
|
privateServiceConnectServiceAttachments: {
|
|
216
220
|
[key: string]: string;
|
|
217
221
|
};
|
|
218
222
|
/**
|
|
219
|
-
* (Required String) The GCP
|
|
223
|
+
* (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
|
|
220
224
|
*/
|
|
221
225
|
project: string;
|
|
222
226
|
/**
|
|
223
|
-
* (Required String) The
|
|
227
|
+
* (Required String) The network name of the Confluent Cloud VPC.
|
|
224
228
|
*/
|
|
225
229
|
vpcNetwork: string;
|
|
226
230
|
}
|
|
@@ -312,6 +316,64 @@ export interface GetPrivateLinkAccessNetwork {
|
|
|
312
316
|
*/
|
|
313
317
|
id: string;
|
|
314
318
|
}
|
|
319
|
+
export interface GetSchemaRegistryClusterEnvironment {
|
|
320
|
+
/**
|
|
321
|
+
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
322
|
+
*/
|
|
323
|
+
id: string;
|
|
324
|
+
}
|
|
325
|
+
export interface GetSchemaRegistryClusterRegion {
|
|
326
|
+
/**
|
|
327
|
+
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
328
|
+
*/
|
|
329
|
+
id: string;
|
|
330
|
+
}
|
|
331
|
+
export interface GetStreatGovernanceClusterEnvironment {
|
|
332
|
+
/**
|
|
333
|
+
* The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
|
|
334
|
+
*/
|
|
335
|
+
id: string;
|
|
336
|
+
}
|
|
337
|
+
export interface GetStreatGovernanceClusterRegion {
|
|
338
|
+
/**
|
|
339
|
+
* The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
|
|
340
|
+
*/
|
|
341
|
+
id: string;
|
|
342
|
+
}
|
|
343
|
+
export interface GetTransitGatewayAttachmentAw {
|
|
344
|
+
/**
|
|
345
|
+
* (Required String) Enable custom destination routes in Confluent Cloud. Defaults to `false`.
|
|
346
|
+
*/
|
|
347
|
+
enableCustomRoutes: boolean;
|
|
348
|
+
/**
|
|
349
|
+
* (Required String) The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
|
|
350
|
+
*/
|
|
351
|
+
ramResourceShareArn: string;
|
|
352
|
+
/**
|
|
353
|
+
* (Required List of String) List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.
|
|
354
|
+
*/
|
|
355
|
+
routes: string[];
|
|
356
|
+
/**
|
|
357
|
+
* (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
|
|
358
|
+
*/
|
|
359
|
+
transitGatewayAttachmentId: string;
|
|
360
|
+
/**
|
|
361
|
+
* (Required String) The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with `tgw-`.
|
|
362
|
+
*/
|
|
363
|
+
transitGatewayId: string;
|
|
364
|
+
}
|
|
365
|
+
export interface GetTransitGatewayAttachmentEnvironment {
|
|
366
|
+
/**
|
|
367
|
+
* The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
|
|
368
|
+
*/
|
|
369
|
+
id: string;
|
|
370
|
+
}
|
|
371
|
+
export interface GetTransitGatewayAttachmentNetwork {
|
|
372
|
+
/**
|
|
373
|
+
* The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
|
|
374
|
+
*/
|
|
375
|
+
id: string;
|
|
376
|
+
}
|
|
315
377
|
export interface IdentityPoolIdentityProvider {
|
|
316
378
|
/**
|
|
317
379
|
* The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
|
|
@@ -467,11 +529,15 @@ export interface KsqlClusterKafkaCluster {
|
|
|
467
529
|
}
|
|
468
530
|
export interface NetworkAw {
|
|
469
531
|
/**
|
|
470
|
-
* (
|
|
532
|
+
* (Required String) The AWS account ID associated with the Confluent Cloud VPC.
|
|
533
|
+
*/
|
|
534
|
+
account: string;
|
|
535
|
+
/**
|
|
536
|
+
* (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
|
|
471
537
|
*/
|
|
472
538
|
privateLinkEndpointService: string;
|
|
473
539
|
/**
|
|
474
|
-
* (Required String) The
|
|
540
|
+
* (Required String) The Confluent Cloud VPC ID.
|
|
475
541
|
*/
|
|
476
542
|
vpc: string;
|
|
477
543
|
}
|
|
@@ -491,17 +557,17 @@ export interface NetworkEnvironment {
|
|
|
491
557
|
}
|
|
492
558
|
export interface NetworkGcp {
|
|
493
559
|
/**
|
|
494
|
-
* (Optional Map) The mapping of zones to Private Service Connect
|
|
560
|
+
* (Optional Map) The mapping of zones to Private Service Connect Service Attachments if available. Keys are zones and values are [GCP Private Service Connect service attachment](https://cloud.google.com/vpc/docs/configure-private-service-connect-producer#api_7).
|
|
495
561
|
*/
|
|
496
562
|
privateServiceConnectServiceAttachments: {
|
|
497
563
|
[key: string]: string;
|
|
498
564
|
};
|
|
499
565
|
/**
|
|
500
|
-
* (Required String) The GCP
|
|
566
|
+
* (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
|
|
501
567
|
*/
|
|
502
568
|
project: string;
|
|
503
569
|
/**
|
|
504
|
-
* (Required String) The
|
|
570
|
+
* (Required String) The network name of the Confluent Cloud VPC.
|
|
505
571
|
*/
|
|
506
572
|
vpcNetwork: string;
|
|
507
573
|
}
|
|
@@ -593,3 +659,61 @@ export interface PrivateLinkAccessNetwork {
|
|
|
593
659
|
*/
|
|
594
660
|
id: string;
|
|
595
661
|
}
|
|
662
|
+
export interface SchemaRegistryClusterEnvironment {
|
|
663
|
+
/**
|
|
664
|
+
* The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example, `sgreg-1`. See [Schema Registry Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
665
|
+
*/
|
|
666
|
+
id: string;
|
|
667
|
+
}
|
|
668
|
+
export interface SchemaRegistryClusterRegion {
|
|
669
|
+
/**
|
|
670
|
+
* The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example, `sgreg-1`. See [Schema Registry Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
671
|
+
*/
|
|
672
|
+
id: string;
|
|
673
|
+
}
|
|
674
|
+
export interface StreamGovernanceClusterEnvironment {
|
|
675
|
+
/**
|
|
676
|
+
* The ID of the Stream Governance region that the Stream Governance cluster belongs to, for example, `sgreg-1`. See [Stream Governance Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
677
|
+
*/
|
|
678
|
+
id: string;
|
|
679
|
+
}
|
|
680
|
+
export interface StreamGovernanceClusterRegion {
|
|
681
|
+
/**
|
|
682
|
+
* The ID of the Stream Governance region that the Stream Governance cluster belongs to, for example, `sgreg-1`. See [Stream Governance Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
|
|
683
|
+
*/
|
|
684
|
+
id: string;
|
|
685
|
+
}
|
|
686
|
+
export interface TransitGatewayAttachmentAws {
|
|
687
|
+
/**
|
|
688
|
+
* Enable custom destination routes in Confluent Cloud. Defaults to `false`.
|
|
689
|
+
*/
|
|
690
|
+
enableCustomRoutes?: boolean;
|
|
691
|
+
/**
|
|
692
|
+
* The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
|
|
693
|
+
*/
|
|
694
|
+
ramResourceShareArn: string;
|
|
695
|
+
/**
|
|
696
|
+
* List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.
|
|
697
|
+
*/
|
|
698
|
+
routes: string[];
|
|
699
|
+
/**
|
|
700
|
+
* (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
|
|
701
|
+
*/
|
|
702
|
+
transitGatewayAttachmentId: string;
|
|
703
|
+
/**
|
|
704
|
+
* The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with `tgw-`.
|
|
705
|
+
*/
|
|
706
|
+
transitGatewayId: string;
|
|
707
|
+
}
|
|
708
|
+
export interface TransitGatewayAttachmentEnvironment {
|
|
709
|
+
/**
|
|
710
|
+
* The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
|
|
711
|
+
*/
|
|
712
|
+
id: string;
|
|
713
|
+
}
|
|
714
|
+
export interface TransitGatewayAttachmentNetwork {
|
|
715
|
+
/**
|
|
716
|
+
* The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
|
|
717
|
+
*/
|
|
718
|
+
id: string;
|
|
719
|
+
}
|