@pulumi/confluentcloud 1.4.0-alpha.1666123324 → 1.5.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.
Files changed (61) hide show
  1. package/apiKey.d.ts +2 -2
  2. package/apiKey.js +4 -2
  3. package/apiKey.js.map +1 -1
  4. package/clusterLink.d.ts +91 -0
  5. package/clusterLink.js +74 -0
  6. package/clusterLink.js.map +1 -0
  7. package/connector.d.ts +6 -6
  8. package/connector.js +3 -1
  9. package/connector.js.map +1 -1
  10. package/getKafkaClientQuota.d.ts +70 -0
  11. package/getKafkaClientQuota.js +44 -0
  12. package/getKafkaClientQuota.js.map +1 -0
  13. package/getKsqlCluster.d.ts +3 -0
  14. package/getKsqlCluster.js +3 -0
  15. package/getKsqlCluster.js.map +1 -1
  16. package/getStreamGovernanceRegion.d.ts +71 -0
  17. package/getStreamGovernanceRegion.js +46 -0
  18. package/getStreamGovernanceRegion.js.map +1 -0
  19. package/getStreatGovernanceCluster.d.ts +96 -0
  20. package/getStreatGovernanceCluster.js +54 -0
  21. package/getStreatGovernanceCluster.js.map +1 -0
  22. package/getTransitGatewayAttachment.d.ts +83 -0
  23. package/getTransitGatewayAttachment.js +54 -0
  24. package/getTransitGatewayAttachment.js.map +1 -0
  25. package/identityPool.d.ts +0 -3
  26. package/identityPool.js +0 -3
  27. package/identityPool.js.map +1 -1
  28. package/identityProvider.d.ts +0 -3
  29. package/identityProvider.js +0 -3
  30. package/identityProvider.js.map +1 -1
  31. package/index.d.ts +30 -0
  32. package/index.js +44 -1
  33. package/index.js.map +1 -1
  34. package/kafkaAcl.d.ts +9 -9
  35. package/kafkaAcl.js +3 -1
  36. package/kafkaAcl.js.map +1 -1
  37. package/kafkaClientQuota.d.ts +138 -0
  38. package/kafkaClientQuota.js +111 -0
  39. package/kafkaClientQuota.js.map +1 -0
  40. package/kafkaClusterConfig.d.ts +123 -0
  41. package/kafkaClusterConfig.js +103 -0
  42. package/kafkaClusterConfig.js.map +1 -0
  43. package/kafkaMirrorTopic.d.ts +82 -0
  44. package/kafkaMirrorTopic.js +77 -0
  45. package/kafkaMirrorTopic.js.map +1 -0
  46. package/kafkaTopic.d.ts +1 -1
  47. package/kafkaTopic.js +4 -2
  48. package/kafkaTopic.js.map +1 -1
  49. package/network.d.ts +3 -3
  50. package/package.json +2 -2
  51. package/package.json.dev +2 -2
  52. package/provider.js +6 -4
  53. package/provider.js.map +1 -1
  54. package/streamGovernanceCluster.d.ts +139 -0
  55. package/streamGovernanceCluster.js +106 -0
  56. package/streamGovernanceCluster.js.map +1 -0
  57. package/transitGatewayAttachment.d.ts +100 -0
  58. package/transitGatewayAttachment.js +72 -0
  59. package/transitGatewayAttachment.js.map +1 -0
  60. package/types/input.d.ts +253 -50
  61. package/types/output.d.ts +253 -10
package/types/output.d.ts CHANGED
@@ -34,6 +34,56 @@ export interface ApiKeyOwner {
34
34
  */
35
35
  kind: string;
36
36
  }
37
+ export interface ClusterLinkDestinationKafkaCluster {
38
+ /**
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
+ */
41
+ bootstrapEndpoint?: string;
42
+ credentials?: outputs.ClusterLinkDestinationKafkaClusterCredentials;
43
+ /**
44
+ * The ID of the destination Kafka cluster, for example, `lkc-abc123`.
45
+ */
46
+ id: string;
47
+ /**
48
+ * The REST endpoint of the destination Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
49
+ */
50
+ restEndpoint?: string;
51
+ }
52
+ export interface ClusterLinkDestinationKafkaClusterCredentials {
53
+ /**
54
+ * The Kafka API Key.
55
+ */
56
+ key: string;
57
+ /**
58
+ * The Kafka API Secret.
59
+ */
60
+ secret: string;
61
+ }
62
+ export interface ClusterLinkSourceKafkaCluster {
63
+ /**
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
+ */
66
+ bootstrapEndpoint?: string;
67
+ credentials?: outputs.ClusterLinkSourceKafkaClusterCredentials;
68
+ /**
69
+ * The ID of the destination Kafka cluster, for example, `lkc-abc123`.
70
+ */
71
+ id: string;
72
+ /**
73
+ * The REST endpoint of the destination Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
74
+ */
75
+ restEndpoint?: string;
76
+ }
77
+ export interface ClusterLinkSourceKafkaClusterCredentials {
78
+ /**
79
+ * The Kafka API Key.
80
+ */
81
+ key: string;
82
+ /**
83
+ * The Kafka API Secret.
84
+ */
85
+ secret: string;
86
+ }
37
87
  export interface ConnectorEnvironment {
38
88
  /**
39
89
  * The ID of the Kafka cluster that the connector belongs to, for example, `lkc-abc123`.
@@ -52,6 +102,28 @@ export interface GetIdentityPoolIdentityProvider {
52
102
  */
53
103
  id: string;
54
104
  }
105
+ export interface GetKafkaClientQuotaEnvironment {
106
+ /**
107
+ * The ID of the Kafka Client Quota (for example, `cq-abc123`).
108
+ */
109
+ id: string;
110
+ }
111
+ export interface GetKafkaClientQuotaKafkaCluster {
112
+ /**
113
+ * The ID of the Kafka Client Quota (for example, `cq-abc123`).
114
+ */
115
+ id: string;
116
+ }
117
+ export interface GetKafkaClientQuotaThroughput {
118
+ /**
119
+ * (Required String) The egress throughput limit in bytes per second.
120
+ */
121
+ egressByteRate: string;
122
+ /**
123
+ * (Required String) The ingress throughput limit in bytes per second.
124
+ */
125
+ ingressByteRate: string;
126
+ }
55
127
  export interface GetKafkaClusterBasic {
56
128
  }
57
129
  export interface GetKafkaClusterDedicated {
@@ -114,11 +186,15 @@ export interface GetKsqlClusterKafkaCluster {
114
186
  }
115
187
  export interface GetNetworkAw {
116
188
  /**
117
- * (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
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.
118
194
  */
119
195
  privateLinkEndpointService: string;
120
196
  /**
121
- * (Required String) The AWS VPC ID for the network.
197
+ * (Required String) The Confluent Cloud VPC ID.
122
198
  */
123
199
  vpc: string;
124
200
  }
@@ -138,17 +214,17 @@ export interface GetNetworkEnvironment {
138
214
  }
139
215
  export interface GetNetworkGcp {
140
216
  /**
141
- * (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).
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).
142
218
  */
143
219
  privateServiceConnectServiceAttachments: {
144
220
  [key: string]: string;
145
221
  };
146
222
  /**
147
- * (Required String) The GCP project ID.
223
+ * (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
148
224
  */
149
225
  project: string;
150
226
  /**
151
- * (Required String) The GCP VPC network name.
227
+ * (Required String) The network name of the Confluent Cloud VPC.
152
228
  */
153
229
  vpcNetwork: string;
154
230
  }
@@ -240,6 +316,52 @@ export interface GetPrivateLinkAccessNetwork {
240
316
  */
241
317
  id: string;
242
318
  }
319
+ export interface GetStreatGovernanceClusterEnvironment {
320
+ /**
321
+ * The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
322
+ */
323
+ id: string;
324
+ }
325
+ export interface GetStreatGovernanceClusterRegion {
326
+ /**
327
+ * The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
328
+ */
329
+ id: string;
330
+ }
331
+ export interface GetTransitGatewayAttachmentAw {
332
+ /**
333
+ * (Required String) Enable custom destination routes in Confluent Cloud. Defaults to `false`.
334
+ */
335
+ enableCustomRoutes: boolean;
336
+ /**
337
+ * (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.
338
+ */
339
+ ramResourceShareArn: string;
340
+ /**
341
+ * (Required List of String) List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.
342
+ */
343
+ routes: string[];
344
+ /**
345
+ * (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
346
+ */
347
+ transitGatewayAttachmentId: string;
348
+ /**
349
+ * (Required String) The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with `tgw-`.
350
+ */
351
+ transitGatewayId: string;
352
+ }
353
+ export interface GetTransitGatewayAttachmentEnvironment {
354
+ /**
355
+ * The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
356
+ */
357
+ id: string;
358
+ }
359
+ export interface GetTransitGatewayAttachmentNetwork {
360
+ /**
361
+ * The ID of the Environment that the Transit Gateway Attachment belongs to, for example, `env-xyz456`.
362
+ */
363
+ id: string;
364
+ }
243
365
  export interface IdentityPoolIdentityProvider {
244
366
  /**
245
367
  * The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
@@ -262,8 +384,46 @@ export interface KafkaAclKafkaCluster {
262
384
  */
263
385
  id: string;
264
386
  }
387
+ export interface KafkaClientQuotaEnvironment {
388
+ /**
389
+ * The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, `env-abc123`.
390
+ */
391
+ id: string;
392
+ }
393
+ export interface KafkaClientQuotaKafkaCluster {
394
+ /**
395
+ * The ID of the Environment that the corresponding Kafka Cluster belongs to, for example, `env-abc123`.
396
+ */
397
+ id: string;
398
+ }
399
+ export interface KafkaClientQuotaThroughput {
400
+ /**
401
+ * The egress throughput limit in bytes per second.
402
+ */
403
+ egressByteRate: string;
404
+ /**
405
+ * The ingress throughput limit in bytes per second.
406
+ */
407
+ ingressByteRate: string;
408
+ }
265
409
  export interface KafkaClusterBasic {
266
410
  }
411
+ export interface KafkaClusterConfigCredentials {
412
+ /**
413
+ * The Kafka API Key.
414
+ */
415
+ key: string;
416
+ /**
417
+ * The Kafka API Secret.
418
+ */
419
+ secret: string;
420
+ }
421
+ export interface KafkaClusterConfigKafkaCluster {
422
+ /**
423
+ * The ID of the Dedicated Kafka cluster, for example, `lkc-abc123`.
424
+ */
425
+ id: string;
426
+ }
267
427
  export interface KafkaClusterDedicated {
268
428
  /**
269
429
  * 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.
@@ -288,6 +448,39 @@ export interface KafkaClusterNetwork {
288
448
  }
289
449
  export interface KafkaClusterStandard {
290
450
  }
451
+ export interface KafkaMirrorTopicClusterLink {
452
+ /**
453
+ * The name of the cluster link to attach to the mirror topic, for example, `my-cluster-link`.
454
+ */
455
+ linkName: string;
456
+ }
457
+ export interface KafkaMirrorTopicKafkaCluster {
458
+ credentials?: outputs.KafkaMirrorTopicKafkaClusterCredentials;
459
+ /**
460
+ * The ID of the destination Kafka cluster, for example, `lkc-abc123`.
461
+ */
462
+ id: string;
463
+ /**
464
+ * The REST endpoint of the destination Kafka cluster, for example, `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
465
+ */
466
+ restEndpoint?: string;
467
+ }
468
+ export interface KafkaMirrorTopicKafkaClusterCredentials {
469
+ /**
470
+ * The Kafka API Key.
471
+ */
472
+ key: string;
473
+ /**
474
+ * The Kafka API Secret.
475
+ */
476
+ secret: string;
477
+ }
478
+ export interface KafkaMirrorTopicSourceKafkaTopic {
479
+ /**
480
+ * The name of the topic on the source cluster to be mirrored over the cluster link, for example, `orders`. A topic with the exact same name must exist on the source cluster, and no topic with this name should exist on the destination cluster.
481
+ */
482
+ topicName: string;
483
+ }
291
484
  export interface KafkaTopicCredentials {
292
485
  /**
293
486
  * The Kafka API Key.
@@ -324,11 +517,15 @@ export interface KsqlClusterKafkaCluster {
324
517
  }
325
518
  export interface NetworkAw {
326
519
  /**
327
- * (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
520
+ * (Required String) The AWS account ID associated with the Confluent Cloud VPC.
521
+ */
522
+ account: string;
523
+ /**
524
+ * (Optional String) The endpoint service of the Confluent Cloud VPC (used for PrivateLink) if available.
328
525
  */
329
526
  privateLinkEndpointService: string;
330
527
  /**
331
- * (Required String) The AWS VPC ID for the network.
528
+ * (Required String) The Confluent Cloud VPC ID.
332
529
  */
333
530
  vpc: string;
334
531
  }
@@ -348,17 +545,17 @@ export interface NetworkEnvironment {
348
545
  }
349
546
  export interface NetworkGcp {
350
547
  /**
351
- * (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).
548
+ * (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).
352
549
  */
353
550
  privateServiceConnectServiceAttachments: {
354
551
  [key: string]: string;
355
552
  };
356
553
  /**
357
- * (Required String) The GCP project ID.
554
+ * (Required String) The GCP Project ID associated with the Confluent Cloud VPC.
358
555
  */
359
556
  project: string;
360
557
  /**
361
- * (Required String) The GCP VPC network name.
558
+ * (Required String) The network name of the Confluent Cloud VPC.
362
559
  */
363
560
  vpcNetwork: string;
364
561
  }
@@ -450,3 +647,49 @@ export interface PrivateLinkAccessNetwork {
450
647
  */
451
648
  id: string;
452
649
  }
650
+ export interface StreamGovernanceClusterEnvironment {
651
+ /**
652
+ * 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.
653
+ */
654
+ id: string;
655
+ }
656
+ export interface StreamGovernanceClusterRegion {
657
+ /**
658
+ * 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.
659
+ */
660
+ id: string;
661
+ }
662
+ export interface TransitGatewayAttachmentAws {
663
+ /**
664
+ * Enable custom destination routes in Confluent Cloud. Defaults to `false`.
665
+ */
666
+ enableCustomRoutes?: boolean;
667
+ /**
668
+ * The Amazon Resource Name (ARN) of the Resource Access Manager (RAM) Resource Share of the transit gateway your Confluent Cloud network attaches to.
669
+ */
670
+ ramResourceShareArn: string;
671
+ /**
672
+ * List of destination routes for traffic from Confluent VPC to customer VPC via Transit Gateway.
673
+ */
674
+ routes: string[];
675
+ /**
676
+ * (Required String) The ID of the AWS Transit Gateway VPC Attachment that attaches Confluent VPC to Transit Gateway.
677
+ */
678
+ transitGatewayAttachmentId: string;
679
+ /**
680
+ * The ID of the AWS Transit Gateway that you want Confluent CLoud to be attached to. Must start with `tgw-`.
681
+ */
682
+ transitGatewayId: string;
683
+ }
684
+ export interface TransitGatewayAttachmentEnvironment {
685
+ /**
686
+ * The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
687
+ */
688
+ id: string;
689
+ }
690
+ export interface TransitGatewayAttachmentNetwork {
691
+ /**
692
+ * The ID of the Network that the Transit Gateway Attachment belongs to, for example, `n-abc123`.
693
+ */
694
+ id: string;
695
+ }