@pulumi/confluentcloud 1.1.0 → 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 +2 -2
- package/kafkaTopic.d.ts +18 -0
- package/kafkaTopic.js +2 -0
- package/kafkaTopic.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
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:
|
|
63
|
-
- `confluentcloud:
|
|
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/kafkaTopic.d.ts
CHANGED
|
@@ -117,6 +117,12 @@ export declare class KafkaTopic extends pulumi.CustomResource {
|
|
|
117
117
|
* The Cluster API Credentials.
|
|
118
118
|
*/
|
|
119
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>;
|
|
120
126
|
readonly kafkaCluster: pulumi.Output<outputs.KafkaTopicKafkaCluster>;
|
|
121
127
|
/**
|
|
122
128
|
* The number of partitions to create in the topic. Defaults to `6`.
|
|
@@ -153,6 +159,12 @@ export interface KafkaTopicState {
|
|
|
153
159
|
* The Cluster API Credentials.
|
|
154
160
|
*/
|
|
155
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>;
|
|
156
168
|
kafkaCluster?: pulumi.Input<inputs.KafkaTopicKafkaCluster>;
|
|
157
169
|
/**
|
|
158
170
|
* The number of partitions to create in the topic. Defaults to `6`.
|
|
@@ -181,6 +193,12 @@ export interface KafkaTopicArgs {
|
|
|
181
193
|
* The Cluster API Credentials.
|
|
182
194
|
*/
|
|
183
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>;
|
|
184
202
|
kafkaCluster: pulumi.Input<inputs.KafkaTopicKafkaCluster>;
|
|
185
203
|
/**
|
|
186
204
|
* The number of partitions to create in the topic. Defaults to `6`.
|
package/kafkaTopic.js
CHANGED
|
@@ -104,6 +104,7 @@ class KafkaTopic extends pulumi.CustomResource {
|
|
|
104
104
|
const state = argsOrState;
|
|
105
105
|
resourceInputs["config"] = state ? state.config : undefined;
|
|
106
106
|
resourceInputs["credentials"] = state ? state.credentials : undefined;
|
|
107
|
+
resourceInputs["httpEndpoint"] = state ? state.httpEndpoint : undefined;
|
|
107
108
|
resourceInputs["kafkaCluster"] = state ? state.kafkaCluster : undefined;
|
|
108
109
|
resourceInputs["partitionsCount"] = state ? state.partitionsCount : undefined;
|
|
109
110
|
resourceInputs["restEndpoint"] = state ? state.restEndpoint : undefined;
|
|
@@ -119,6 +120,7 @@ class KafkaTopic extends pulumi.CustomResource {
|
|
|
119
120
|
}
|
|
120
121
|
resourceInputs["config"] = args ? args.config : undefined;
|
|
121
122
|
resourceInputs["credentials"] = args ? args.credentials : undefined;
|
|
123
|
+
resourceInputs["httpEndpoint"] = args ? args.httpEndpoint : undefined;
|
|
122
124
|
resourceInputs["kafkaCluster"] = args ? args.kafkaCluster : undefined;
|
|
123
125
|
resourceInputs["partitionsCount"] = args ? args.partitionsCount : undefined;
|
|
124
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":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0FG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"kafkaTopic.js","sourceRoot":"","sources":["../kafkaTopic.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0FG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IAgEjD,YAAY,IAAY,EAAE,WAA8C,EAAE,IAAmC;QACzG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0C,CAAC;YACzD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAAyC,CAAC;YACvD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;IA7FD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;;AA1BL,gCA+FC;AAjFG,gBAAgB;AACO,uBAAY,GAAG,4CAA4C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/confluentcloud",
|
|
3
|
-
"version": "v1.
|
|
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.
|
|
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.
|
|
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.
|
|
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"
|