@pulumi/confluentcloud 1.1.0-alpha.1660148466 → 1.2.0-alpha.1660949086

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/README.md CHANGED
@@ -59,8 +59,8 @@ dotnet add package Pulumi.ConfluentCloud
59
59
 
60
60
  The following configuration points are available for the `confluent cloud` provider:
61
61
 
62
- - `confluentcloud:apiKey` (environment: `CONFLUENT_CLOUD_API_KEY`) - the API key for `Confluent Cloud`
63
- - `confluentcloud:apiSecret` (environment: `CONFLUENT_CLOUD_API_SECRET`) - the region in which to deploy resources
62
+ - `confluentcloud:cloudApiKey` (environment: `CONFLUENT_CLOUD_API_KEY`) - the API key for `Confluent Cloud`
63
+ - `confluentcloud:cloudApiSecret` (environment: `CONFLUENT_CLOUD_API_SECRET`) - the region in which to deploy resources
64
64
 
65
65
  ## Reference
66
66
 
package/kafkaCluster.d.ts CHANGED
@@ -40,7 +40,7 @@ export declare class KafkaCluster extends pulumi.CustomResource {
40
40
  */
41
41
  readonly basics: pulumi.Output<outputs.KafkaClusterBasic[] | undefined>;
42
42
  /**
43
- * (Required String) The bootstrap endpoint used by Kafka clients to connect to the Kafka cluster. (e.g., `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
43
+ * (Required String) The bootstrap endpoint used by Kafka clients to connect to the Kafka cluster. (e.g., `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
44
44
  */
45
45
  readonly bootstrapEndpoint: pulumi.Output<string>;
46
46
  /**
@@ -107,7 +107,7 @@ export interface KafkaClusterState {
107
107
  */
108
108
  basics?: pulumi.Input<pulumi.Input<inputs.KafkaClusterBasic>[]>;
109
109
  /**
110
- * (Required String) The bootstrap endpoint used by Kafka clients to connect to the Kafka cluster. (e.g., `pkc-00000.us-central1.gcp.confluent.cloud:9092`).
110
+ * (Required String) The bootstrap endpoint used by Kafka clients to connect to the Kafka cluster. (e.g., `SASL_SSL://pkc-00000.us-central1.gcp.confluent.cloud:9092`).
111
111
  */
112
112
  bootstrapEndpoint?: pulumi.Input<string>;
113
113
  /**
package/kafkaTopic.d.ts CHANGED
@@ -9,7 +9,87 @@ import { input as inputs, output as outputs } from "./types";
9
9
  * $ pulumi import confluentcloud:index/kafkaTopic:KafkaTopic my_topic lkc-abc123/orders-123
10
10
  * ```
11
11
  *
12
- * !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
12
+ * resource "confluent_kafka_topic" "orders" {
13
+ *
14
+ * kafka_cluster {
15
+ *
16
+ * id = confluent_kafka_cluster.basic-cluster.id
17
+ *
18
+ * }
19
+ *
20
+ * topic_name
21
+ *
22
+ * = "orders"
23
+ *
24
+ * partitions_count
25
+ *
26
+ * = 4
27
+ *
28
+ * rest_endpoint
29
+ *
30
+ * = confluent_kafka_cluster.basic-cluster.rest_endpoint
31
+ *
32
+ * # https://docs.confluent.io/cloud/current/clusters/broker-config.html#custom-topic-settings-for-all-cluster-types
33
+ *
34
+ * config = {
35
+ *
36
+ * "cleanup.policy"
37
+ *
38
+ * = "delete"
39
+ *
40
+ * "delete.retention.ms"
41
+ *
42
+ * = "86400000"
43
+ *
44
+ * "max.compaction.lag.ms"
45
+ *
46
+ * = "9223372036854775807"
47
+ *
48
+ * "max.message.bytes"
49
+ *
50
+ * = "2097164"
51
+ *
52
+ * "message.timestamp.difference.max.ms" = "9223372036854775807"
53
+ *
54
+ * "message.timestamp.type"
55
+ *
56
+ * = "CreateTime"
57
+ *
58
+ * "min.compaction.lag.ms"
59
+ *
60
+ * = "0"
61
+ *
62
+ * "min.insync.replicas"
63
+ *
64
+ * = "2"
65
+ *
66
+ * "retention.bytes"
67
+ *
68
+ * = "-1"
69
+ *
70
+ * "retention.ms"
71
+ *
72
+ * = "604800000"
73
+ *
74
+ * "segment.bytes"
75
+ *
76
+ * = "104857600"
77
+ *
78
+ * "segment.ms"
79
+ *
80
+ * = "604800000"
81
+ *
82
+ * }
83
+ *
84
+ * credentials {
85
+ *
86
+ * key
87
+ *
88
+ * = confluent_api_key.app-manager-kafka-api-key.id
89
+ *
90
+ * secret = confluent_api_key.app-manager-kafka-api-key.secret
91
+ *
92
+ * } } !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
13
93
  */
14
94
  export declare class KafkaTopic extends pulumi.CustomResource {
15
95
  /**
@@ -37,6 +117,12 @@ export declare class KafkaTopic extends pulumi.CustomResource {
37
117
  * The Cluster API Credentials.
38
118
  */
39
119
  readonly credentials: pulumi.Output<outputs.KafkaTopicCredentials | undefined>;
120
+ /**
121
+ * The HTTP endpoint of the Kafka cluster (e.g., `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
122
+ *
123
+ * @deprecated This parameter has been deprecated in favour of Rest Endpoint
124
+ */
125
+ readonly httpEndpoint: pulumi.Output<string>;
40
126
  readonly kafkaCluster: pulumi.Output<outputs.KafkaTopicKafkaCluster>;
41
127
  /**
42
128
  * The number of partitions to create in the topic. Defaults to `6`.
@@ -73,6 +159,12 @@ export interface KafkaTopicState {
73
159
  * The Cluster API Credentials.
74
160
  */
75
161
  credentials?: pulumi.Input<inputs.KafkaTopicCredentials>;
162
+ /**
163
+ * The HTTP endpoint of the Kafka cluster (e.g., `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
164
+ *
165
+ * @deprecated This parameter has been deprecated in favour of Rest Endpoint
166
+ */
167
+ httpEndpoint?: pulumi.Input<string>;
76
168
  kafkaCluster?: pulumi.Input<inputs.KafkaTopicKafkaCluster>;
77
169
  /**
78
170
  * The number of partitions to create in the topic. Defaults to `6`.
@@ -101,6 +193,12 @@ export interface KafkaTopicArgs {
101
193
  * The Cluster API Credentials.
102
194
  */
103
195
  credentials?: pulumi.Input<inputs.KafkaTopicCredentials>;
196
+ /**
197
+ * The HTTP endpoint of the Kafka cluster (e.g., `https://pkc-00000.us-central1.gcp.confluent.cloud:443`).
198
+ *
199
+ * @deprecated This parameter has been deprecated in favour of Rest Endpoint
200
+ */
201
+ httpEndpoint?: pulumi.Input<string>;
104
202
  kafkaCluster: pulumi.Input<inputs.KafkaTopicKafkaCluster>;
105
203
  /**
106
204
  * The number of partitions to create in the topic. Defaults to `6`.
package/kafkaTopic.js CHANGED
@@ -14,7 +14,87 @@ const utilities = require("./utilities");
14
14
  * $ pulumi import confluentcloud:index/kafkaTopic:KafkaTopic my_topic lkc-abc123/orders-123
15
15
  * ```
16
16
  *
17
- * !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
17
+ * resource "confluent_kafka_topic" "orders" {
18
+ *
19
+ * kafka_cluster {
20
+ *
21
+ * id = confluent_kafka_cluster.basic-cluster.id
22
+ *
23
+ * }
24
+ *
25
+ * topic_name
26
+ *
27
+ * = "orders"
28
+ *
29
+ * partitions_count
30
+ *
31
+ * = 4
32
+ *
33
+ * rest_endpoint
34
+ *
35
+ * = confluent_kafka_cluster.basic-cluster.rest_endpoint
36
+ *
37
+ * # https://docs.confluent.io/cloud/current/clusters/broker-config.html#custom-topic-settings-for-all-cluster-types
38
+ *
39
+ * config = {
40
+ *
41
+ * "cleanup.policy"
42
+ *
43
+ * = "delete"
44
+ *
45
+ * "delete.retention.ms"
46
+ *
47
+ * = "86400000"
48
+ *
49
+ * "max.compaction.lag.ms"
50
+ *
51
+ * = "9223372036854775807"
52
+ *
53
+ * "max.message.bytes"
54
+ *
55
+ * = "2097164"
56
+ *
57
+ * "message.timestamp.difference.max.ms" = "9223372036854775807"
58
+ *
59
+ * "message.timestamp.type"
60
+ *
61
+ * = "CreateTime"
62
+ *
63
+ * "min.compaction.lag.ms"
64
+ *
65
+ * = "0"
66
+ *
67
+ * "min.insync.replicas"
68
+ *
69
+ * = "2"
70
+ *
71
+ * "retention.bytes"
72
+ *
73
+ * = "-1"
74
+ *
75
+ * "retention.ms"
76
+ *
77
+ * = "604800000"
78
+ *
79
+ * "segment.bytes"
80
+ *
81
+ * = "104857600"
82
+ *
83
+ * "segment.ms"
84
+ *
85
+ * = "604800000"
86
+ *
87
+ * }
88
+ *
89
+ * credentials {
90
+ *
91
+ * key
92
+ *
93
+ * = confluent_api_key.app-manager-kafka-api-key.id
94
+ *
95
+ * secret = confluent_api_key.app-manager-kafka-api-key.secret
96
+ *
97
+ * } } !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
18
98
  */
19
99
  class KafkaTopic extends pulumi.CustomResource {
20
100
  constructor(name, argsOrState, opts) {
@@ -24,6 +104,7 @@ class KafkaTopic extends pulumi.CustomResource {
24
104
  const state = argsOrState;
25
105
  resourceInputs["config"] = state ? state.config : undefined;
26
106
  resourceInputs["credentials"] = state ? state.credentials : undefined;
107
+ resourceInputs["httpEndpoint"] = state ? state.httpEndpoint : undefined;
27
108
  resourceInputs["kafkaCluster"] = state ? state.kafkaCluster : undefined;
28
109
  resourceInputs["partitionsCount"] = state ? state.partitionsCount : undefined;
29
110
  resourceInputs["restEndpoint"] = state ? state.restEndpoint : undefined;
@@ -39,6 +120,7 @@ class KafkaTopic extends pulumi.CustomResource {
39
120
  }
40
121
  resourceInputs["config"] = args ? args.config : undefined;
41
122
  resourceInputs["credentials"] = args ? args.credentials : undefined;
123
+ resourceInputs["httpEndpoint"] = args ? args.httpEndpoint : undefined;
42
124
  resourceInputs["kafkaCluster"] = args ? args.kafkaCluster : undefined;
43
125
  resourceInputs["partitionsCount"] = args ? args.partitionsCount : undefined;
44
126
  resourceInputs["restEndpoint"] = args ? args.restEndpoint : undefined;
package/kafkaTopic.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"kafkaTopic.js","sourceRoot":"","sources":["../kafkaTopic.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"kafkaTopic.js","sourceRoot":"","sources":["../kafkaTopic.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/confluentcloud",
3
- "version": "v1.1.0-alpha.1660148466+6c48d052",
3
+ "version": "v1.2.0-alpha.1660949086+2c7c5633",
4
4
  "description": "A Pulumi package for creating and managing Confluent cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -12,7 +12,7 @@
12
12
  "license": "Apache-2.0",
13
13
  "scripts": {
14
14
  "build": "tsc",
15
- "install": "node scripts/install-pulumi-plugin.js resource confluentcloud v1.1.0-alpha.1660148466+6c48d052"
15
+ "install": "node scripts/install-pulumi-plugin.js resource confluentcloud v1.2.0-alpha.1660949086+2c7c5633"
16
16
  },
17
17
  "dependencies": {
18
18
  "@pulumi/pulumi": "^3.0.0"
package/package.json.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/confluentcloud",
3
- "version": "v1.1.0-alpha.1660148466+6c48d052",
3
+ "version": "v1.2.0-alpha.1660949086+2c7c5633",
4
4
  "description": "A Pulumi package for creating and managing Confluent cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -12,7 +12,7 @@
12
12
  "license": "Apache-2.0",
13
13
  "scripts": {
14
14
  "build": "tsc",
15
- "install": "node scripts/install-pulumi-plugin.js resource confluentcloud v1.1.0-alpha.1660148466+6c48d052"
15
+ "install": "node scripts/install-pulumi-plugin.js resource confluentcloud v1.2.0-alpha.1660949086+2c7c5633"
16
16
  },
17
17
  "dependencies": {
18
18
  "@pulumi/pulumi": "^3.0.0"
package/types/input.d.ts CHANGED
@@ -47,46 +47,46 @@ export interface ConnectorKafkaCluster {
47
47
  */
48
48
  id: pulumi.Input<string>;
49
49
  }
50
- export interface GetKafkaClusterBasicArgs {
51
- }
52
50
  export interface GetKafkaClusterBasic {
53
51
  }
54
- export interface GetKafkaClusterDedicatedArgs {
52
+ export interface GetKafkaClusterBasicArgs {
53
+ }
54
+ export interface GetKafkaClusterDedicated {
55
55
  /**
56
56
  * (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.
57
57
  */
58
- cku?: pulumi.Input<number>;
58
+ cku?: number;
59
59
  /**
60
60
  * (Optional String) The ID of the encryption key that is used to encrypt the data in the Kafka cluster, for example, `arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab` (key Amazon Resource Name) for AWS or `projects/my-test-project/locations/global/keyRings/test-byok/cryptoKeys/test` for GCP. Append required permissions to the key policy before creating a Kafka cluster, see [Encrypt Confluent Cloud Clusters using Self-Managed Keys](https://docs.confluent.io/cloud/current/clusters/byok/index.html) for more details. At the moment, self-managed encryption keys are only available for the Dedicated clusters on AWS or GCP.
61
61
  */
62
- encryptionKey?: pulumi.Input<string>;
62
+ encryptionKey?: string;
63
63
  }
64
- export interface GetKafkaClusterDedicated {
64
+ export interface GetKafkaClusterDedicatedArgs {
65
65
  /**
66
66
  * (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.
67
67
  */
68
- cku?: number;
68
+ cku?: pulumi.Input<number>;
69
69
  /**
70
70
  * (Optional String) The ID of the encryption key that is used to encrypt the data in the Kafka cluster, for example, `arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab` (key Amazon Resource Name) for AWS or `projects/my-test-project/locations/global/keyRings/test-byok/cryptoKeys/test` for GCP. Append required permissions to the key policy before creating a Kafka cluster, see [Encrypt Confluent Cloud Clusters using Self-Managed Keys](https://docs.confluent.io/cloud/current/clusters/byok/index.html) for more details. At the moment, self-managed encryption keys are only available for the Dedicated clusters on AWS or GCP.
71
71
  */
72
- encryptionKey?: string;
72
+ encryptionKey?: pulumi.Input<string>;
73
73
  }
74
- export interface GetKafkaClusterEnvironmentArgs {
74
+ export interface GetKafkaClusterEnvironment {
75
75
  /**
76
76
  * The ID of the Environment that the Kafka cluster belongs to, for example, `env-xyz456`.
77
77
  */
78
- id: pulumi.Input<string>;
78
+ id: string;
79
79
  }
80
- export interface GetKafkaClusterEnvironment {
80
+ export interface GetKafkaClusterEnvironmentArgs {
81
81
  /**
82
82
  * The ID of the Environment that the Kafka cluster belongs to, for example, `env-xyz456`.
83
83
  */
84
- id: string;
85
- }
86
- export interface GetKafkaClusterStandard {
84
+ id: pulumi.Input<string>;
87
85
  }
88
86
  export interface GetKafkaClusterStandardArgs {
89
87
  }
88
+ export interface GetKafkaClusterStandard {
89
+ }
90
90
  export interface GetKafkaTopicCredentialsArgs {
91
91
  /**
92
92
  * The Kafka API Key.
@@ -167,25 +167,25 @@ export interface GetNetworkEnvironmentArgs {
167
167
  */
168
168
  id: pulumi.Input<string>;
169
169
  }
170
- export interface GetNetworkGcpArgs {
170
+ export interface GetNetworkGcp {
171
171
  /**
172
172
  * (Required String) The GCP project.
173
173
  */
174
- project?: pulumi.Input<string>;
174
+ project?: string;
175
175
  /**
176
176
  * (Required String) The GCP VPC network name.
177
177
  */
178
- vpcNetwork?: pulumi.Input<string>;
178
+ vpcNetwork?: string;
179
179
  }
180
- export interface GetNetworkGcp {
180
+ export interface GetNetworkGcpArgs {
181
181
  /**
182
182
  * (Required String) The GCP project.
183
183
  */
184
- project?: string;
184
+ project?: pulumi.Input<string>;
185
185
  /**
186
186
  * (Required String) The GCP VPC network name.
187
187
  */
188
- vpcNetwork?: string;
188
+ vpcNetwork?: pulumi.Input<string>;
189
189
  }
190
190
  export interface GetPeeringEnvironment {
191
191
  /**