@pulumi/confluentcloud 1.5.0 → 1.6.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.
- package/apiKey.js +22 -22
- package/apiKey.js.map +1 -1
- package/clusterLink.js +22 -22
- package/clusterLink.js.map +1 -1
- 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 +1 -1
- package/getKsqlCluster.d.ts +7 -5
- 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 +2 -0
- package/getStreamGovernanceRegion.js +2 -0
- package/getStreamGovernanceRegion.js.map +1 -1
- package/getStreatGovernanceCluster.d.ts +2 -0
- package/getStreatGovernanceCluster.js +2 -0
- package/getStreatGovernanceCluster.js.map +1 -1
- package/getUser.d.ts +1 -1
- package/getUser.js +1 -1
- package/identityPool.js +22 -22
- package/identityPool.js.map +1 -1
- package/identityProvider.js +22 -22
- package/identityProvider.js.map +1 -1
- package/index.d.ts +30 -21
- package/index.js +13 -2
- package/index.js.map +1 -1
- 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 -4
- package/kafkaClusterConfig.js +23 -26
- package/kafkaClusterConfig.js.map +1 -1
- package/kafkaMirrorTopic.js +22 -22
- package/kafkaMirrorTopic.js.map +1 -1
- package/kafkaTopic.js +22 -22
- 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.js +22 -22
- package/streamGovernanceCluster.js.map +1 -1
- package/transitGatewayAttachment.js +22 -22
- package/transitGatewayAttachment.js.map +1 -1
- package/types/input.d.ts +38 -14
- package/types/output.d.ts +24 -0
package/kafkaCluster.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export declare class KafkaCluster extends pulumi.CustomResource {
|
|
|
39
39
|
/**
|
|
40
40
|
* The configuration of the Basic Kafka cluster.
|
|
41
41
|
*/
|
|
42
|
-
readonly
|
|
42
|
+
readonly basic: pulumi.Output<outputs.KafkaClusterBasic | undefined>;
|
|
43
43
|
/**
|
|
44
44
|
* (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`).
|
|
45
45
|
*/
|
|
@@ -81,7 +81,7 @@ export declare class KafkaCluster extends pulumi.CustomResource {
|
|
|
81
81
|
/**
|
|
82
82
|
* The configuration of the Standard Kafka cluster.
|
|
83
83
|
*/
|
|
84
|
-
readonly
|
|
84
|
+
readonly standard: pulumi.Output<outputs.KafkaClusterStandard | undefined>;
|
|
85
85
|
/**
|
|
86
86
|
* Create a KafkaCluster resource with the given unique name, arguments, and options.
|
|
87
87
|
*
|
|
@@ -106,7 +106,7 @@ export interface KafkaClusterState {
|
|
|
106
106
|
/**
|
|
107
107
|
* The configuration of the Basic Kafka cluster.
|
|
108
108
|
*/
|
|
109
|
-
|
|
109
|
+
basic?: pulumi.Input<inputs.KafkaClusterBasic>;
|
|
110
110
|
/**
|
|
111
111
|
* (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`).
|
|
112
112
|
*/
|
|
@@ -148,7 +148,7 @@ export interface KafkaClusterState {
|
|
|
148
148
|
/**
|
|
149
149
|
* The configuration of the Standard Kafka cluster.
|
|
150
150
|
*/
|
|
151
|
-
|
|
151
|
+
standard?: pulumi.Input<inputs.KafkaClusterStandard>;
|
|
152
152
|
}
|
|
153
153
|
/**
|
|
154
154
|
* The set of arguments for constructing a KafkaCluster resource.
|
|
@@ -161,7 +161,7 @@ export interface KafkaClusterArgs {
|
|
|
161
161
|
/**
|
|
162
162
|
* The configuration of the Basic Kafka cluster.
|
|
163
163
|
*/
|
|
164
|
-
|
|
164
|
+
basic?: pulumi.Input<inputs.KafkaClusterBasic>;
|
|
165
165
|
/**
|
|
166
166
|
* The cloud service provider that runs the Kafka cluster. Accepted values are: `AWS`, `AZURE`, and `GCP`.
|
|
167
167
|
*/
|
|
@@ -187,5 +187,5 @@ export interface KafkaClusterArgs {
|
|
|
187
187
|
/**
|
|
188
188
|
* The configuration of the Standard Kafka cluster.
|
|
189
189
|
*/
|
|
190
|
-
|
|
190
|
+
standard?: pulumi.Input<inputs.KafkaClusterStandard>;
|
|
191
191
|
}
|
package/kafkaCluster.js
CHANGED
|
@@ -17,6 +17,28 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
18
18
|
*/
|
|
19
19
|
class KafkaCluster extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing KafkaCluster resource's state with the given name, ID, and optional extra
|
|
22
|
+
* properties used to qualify the lookup.
|
|
23
|
+
*
|
|
24
|
+
* @param name The _unique_ name of the resulting resource.
|
|
25
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
26
|
+
* @param state Any extra arguments used during the lookup.
|
|
27
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
|
+
*/
|
|
29
|
+
static get(name, id, state, opts) {
|
|
30
|
+
return new KafkaCluster(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of KafkaCluster. This is designed to work even
|
|
34
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
35
|
+
*/
|
|
36
|
+
static isInstance(obj) {
|
|
37
|
+
if (obj === undefined || obj === null) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
return obj['__pulumiType'] === KafkaCluster.__pulumiType;
|
|
41
|
+
}
|
|
20
42
|
constructor(name, argsOrState, opts) {
|
|
21
43
|
let resourceInputs = {};
|
|
22
44
|
opts = opts || {};
|
|
@@ -24,7 +46,7 @@ class KafkaCluster extends pulumi.CustomResource {
|
|
|
24
46
|
const state = argsOrState;
|
|
25
47
|
resourceInputs["apiVersion"] = state ? state.apiVersion : undefined;
|
|
26
48
|
resourceInputs["availability"] = state ? state.availability : undefined;
|
|
27
|
-
resourceInputs["
|
|
49
|
+
resourceInputs["basic"] = state ? state.basic : undefined;
|
|
28
50
|
resourceInputs["bootstrapEndpoint"] = state ? state.bootstrapEndpoint : undefined;
|
|
29
51
|
resourceInputs["cloud"] = state ? state.cloud : undefined;
|
|
30
52
|
resourceInputs["dedicated"] = state ? state.dedicated : undefined;
|
|
@@ -35,7 +57,7 @@ class KafkaCluster extends pulumi.CustomResource {
|
|
|
35
57
|
resourceInputs["rbacCrn"] = state ? state.rbacCrn : undefined;
|
|
36
58
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
37
59
|
resourceInputs["restEndpoint"] = state ? state.restEndpoint : undefined;
|
|
38
|
-
resourceInputs["
|
|
60
|
+
resourceInputs["standard"] = state ? state.standard : undefined;
|
|
39
61
|
}
|
|
40
62
|
else {
|
|
41
63
|
const args = argsOrState;
|
|
@@ -52,14 +74,14 @@ class KafkaCluster extends pulumi.CustomResource {
|
|
|
52
74
|
throw new Error("Missing required property 'region'");
|
|
53
75
|
}
|
|
54
76
|
resourceInputs["availability"] = args ? args.availability : undefined;
|
|
55
|
-
resourceInputs["
|
|
77
|
+
resourceInputs["basic"] = args ? args.basic : undefined;
|
|
56
78
|
resourceInputs["cloud"] = args ? args.cloud : undefined;
|
|
57
79
|
resourceInputs["dedicated"] = args ? args.dedicated : undefined;
|
|
58
80
|
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
59
81
|
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
60
82
|
resourceInputs["network"] = args ? args.network : undefined;
|
|
61
83
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
62
|
-
resourceInputs["
|
|
84
|
+
resourceInputs["standard"] = args ? args.standard : undefined;
|
|
63
85
|
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
64
86
|
resourceInputs["bootstrapEndpoint"] = undefined /*out*/;
|
|
65
87
|
resourceInputs["kind"] = undefined /*out*/;
|
|
@@ -69,28 +91,6 @@ class KafkaCluster extends pulumi.CustomResource {
|
|
|
69
91
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
70
92
|
super(KafkaCluster.__pulumiType, name, resourceInputs, opts);
|
|
71
93
|
}
|
|
72
|
-
/**
|
|
73
|
-
* Get an existing KafkaCluster resource's state with the given name, ID, and optional extra
|
|
74
|
-
* properties used to qualify the lookup.
|
|
75
|
-
*
|
|
76
|
-
* @param name The _unique_ name of the resulting resource.
|
|
77
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
78
|
-
* @param state Any extra arguments used during the lookup.
|
|
79
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
80
|
-
*/
|
|
81
|
-
static get(name, id, state, opts) {
|
|
82
|
-
return new KafkaCluster(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
83
|
-
}
|
|
84
|
-
/**
|
|
85
|
-
* Returns true if the given object is an instance of KafkaCluster. This is designed to work even
|
|
86
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
87
|
-
*/
|
|
88
|
-
static isInstance(obj) {
|
|
89
|
-
if (obj === undefined || obj === null) {
|
|
90
|
-
return false;
|
|
91
|
-
}
|
|
92
|
-
return obj['__pulumiType'] === KafkaCluster.__pulumiType;
|
|
93
|
-
}
|
|
94
94
|
}
|
|
95
95
|
exports.KafkaCluster = KafkaCluster;
|
|
96
96
|
/** @internal */
|
package/kafkaCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kafkaCluster.js","sourceRoot":"","sources":["../kafkaCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"kafkaCluster.js","sourceRoot":"","sources":["../kafkaCluster.ts"],"names":[],"mappings":"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"}
|
package/kafkaClusterConfig.d.ts
CHANGED
|
@@ -2,10 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
9
6
|
*
|
|
10
7
|
* `confluentcloud.KafkaClusterConfig` provides a Kafka cluster config resource that enables updating configs on a Dedicated Kafka cluster on Confluent Cloud.
|
|
11
8
|
*
|
package/kafkaClusterConfig.js
CHANGED
|
@@ -6,10 +6,7 @@ exports.KafkaClusterConfig = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
13
10
|
*
|
|
14
11
|
* `confluentcloud.KafkaClusterConfig` provides a Kafka cluster config resource that enables updating configs on a Dedicated Kafka cluster on Confluent Cloud.
|
|
15
12
|
*
|
|
@@ -46,6 +43,28 @@ const utilities = require("./utilities");
|
|
|
46
43
|
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
47
44
|
*/
|
|
48
45
|
class KafkaClusterConfig extends pulumi.CustomResource {
|
|
46
|
+
/**
|
|
47
|
+
* Get an existing KafkaClusterConfig resource's state with the given name, ID, and optional extra
|
|
48
|
+
* properties used to qualify the lookup.
|
|
49
|
+
*
|
|
50
|
+
* @param name The _unique_ name of the resulting resource.
|
|
51
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
52
|
+
* @param state Any extra arguments used during the lookup.
|
|
53
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
54
|
+
*/
|
|
55
|
+
static get(name, id, state, opts) {
|
|
56
|
+
return new KafkaClusterConfig(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Returns true if the given object is an instance of KafkaClusterConfig. This is designed to work even
|
|
60
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
61
|
+
*/
|
|
62
|
+
static isInstance(obj) {
|
|
63
|
+
if (obj === undefined || obj === null) {
|
|
64
|
+
return false;
|
|
65
|
+
}
|
|
66
|
+
return obj['__pulumiType'] === KafkaClusterConfig.__pulumiType;
|
|
67
|
+
}
|
|
49
68
|
constructor(name, argsOrState, opts) {
|
|
50
69
|
let resourceInputs = {};
|
|
51
70
|
opts = opts || {};
|
|
@@ -74,28 +93,6 @@ class KafkaClusterConfig extends pulumi.CustomResource {
|
|
|
74
93
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
75
94
|
super(KafkaClusterConfig.__pulumiType, name, resourceInputs, opts);
|
|
76
95
|
}
|
|
77
|
-
/**
|
|
78
|
-
* Get an existing KafkaClusterConfig resource's state with the given name, ID, and optional extra
|
|
79
|
-
* properties used to qualify the lookup.
|
|
80
|
-
*
|
|
81
|
-
* @param name The _unique_ name of the resulting resource.
|
|
82
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
83
|
-
* @param state Any extra arguments used during the lookup.
|
|
84
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
85
|
-
*/
|
|
86
|
-
static get(name, id, state, opts) {
|
|
87
|
-
return new KafkaClusterConfig(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
88
|
-
}
|
|
89
|
-
/**
|
|
90
|
-
* Returns true if the given object is an instance of KafkaClusterConfig. This is designed to work even
|
|
91
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
92
|
-
*/
|
|
93
|
-
static isInstance(obj) {
|
|
94
|
-
if (obj === undefined || obj === null) {
|
|
95
|
-
return false;
|
|
96
|
-
}
|
|
97
|
-
return obj['__pulumiType'] === KafkaClusterConfig.__pulumiType;
|
|
98
|
-
}
|
|
99
96
|
}
|
|
100
97
|
exports.KafkaClusterConfig = KafkaClusterConfig;
|
|
101
98
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kafkaClusterConfig.js","sourceRoot":"","sources":["../kafkaClusterConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"kafkaClusterConfig.js","sourceRoot":"","sources":["../kafkaClusterConfig.ts"],"names":[],"mappings":"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"}
|
package/kafkaMirrorTopic.js
CHANGED
|
@@ -17,6 +17,28 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
18
18
|
*/
|
|
19
19
|
class KafkaMirrorTopic extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing KafkaMirrorTopic resource's state with the given name, ID, and optional extra
|
|
22
|
+
* properties used to qualify the lookup.
|
|
23
|
+
*
|
|
24
|
+
* @param name The _unique_ name of the resulting resource.
|
|
25
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
26
|
+
* @param state Any extra arguments used during the lookup.
|
|
27
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
|
+
*/
|
|
29
|
+
static get(name, id, state, opts) {
|
|
30
|
+
return new KafkaMirrorTopic(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of KafkaMirrorTopic. This is designed to work even
|
|
34
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
35
|
+
*/
|
|
36
|
+
static isInstance(obj) {
|
|
37
|
+
if (obj === undefined || obj === null) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
return obj['__pulumiType'] === KafkaMirrorTopic.__pulumiType;
|
|
41
|
+
}
|
|
20
42
|
constructor(name, argsOrState, opts) {
|
|
21
43
|
let resourceInputs = {};
|
|
22
44
|
opts = opts || {};
|
|
@@ -48,28 +70,6 @@ class KafkaMirrorTopic extends pulumi.CustomResource {
|
|
|
48
70
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
49
71
|
super(KafkaMirrorTopic.__pulumiType, name, resourceInputs, opts);
|
|
50
72
|
}
|
|
51
|
-
/**
|
|
52
|
-
* Get an existing KafkaMirrorTopic resource's state with the given name, ID, and optional extra
|
|
53
|
-
* properties used to qualify the lookup.
|
|
54
|
-
*
|
|
55
|
-
* @param name The _unique_ name of the resulting resource.
|
|
56
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
57
|
-
* @param state Any extra arguments used during the lookup.
|
|
58
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
59
|
-
*/
|
|
60
|
-
static get(name, id, state, opts) {
|
|
61
|
-
return new KafkaMirrorTopic(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
62
|
-
}
|
|
63
|
-
/**
|
|
64
|
-
* Returns true if the given object is an instance of KafkaMirrorTopic. This is designed to work even
|
|
65
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
66
|
-
*/
|
|
67
|
-
static isInstance(obj) {
|
|
68
|
-
if (obj === undefined || obj === null) {
|
|
69
|
-
return false;
|
|
70
|
-
}
|
|
71
|
-
return obj['__pulumiType'] === KafkaMirrorTopic.__pulumiType;
|
|
72
|
-
}
|
|
73
73
|
}
|
|
74
74
|
exports.KafkaMirrorTopic = KafkaMirrorTopic;
|
|
75
75
|
/** @internal */
|
package/kafkaMirrorTopic.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kafkaMirrorTopic.js","sourceRoot":"","sources":["../kafkaMirrorTopic.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"kafkaMirrorTopic.js","sourceRoot":"","sources":["../kafkaMirrorTopic.ts"],"names":[],"mappings":"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"}
|
package/kafkaTopic.js
CHANGED
|
@@ -97,6 +97,28 @@ const utilities = require("./utilities");
|
|
|
97
97
|
* } } !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
98
98
|
*/
|
|
99
99
|
class KafkaTopic extends pulumi.CustomResource {
|
|
100
|
+
/**
|
|
101
|
+
* Get an existing KafkaTopic resource's state with the given name, ID, and optional extra
|
|
102
|
+
* properties used to qualify the lookup.
|
|
103
|
+
*
|
|
104
|
+
* @param name The _unique_ name of the resulting resource.
|
|
105
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
106
|
+
* @param state Any extra arguments used during the lookup.
|
|
107
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
108
|
+
*/
|
|
109
|
+
static get(name, id, state, opts) {
|
|
110
|
+
return new KafkaTopic(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Returns true if the given object is an instance of KafkaTopic. This is designed to work even
|
|
114
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
115
|
+
*/
|
|
116
|
+
static isInstance(obj) {
|
|
117
|
+
if (obj === undefined || obj === null) {
|
|
118
|
+
return false;
|
|
119
|
+
}
|
|
120
|
+
return obj['__pulumiType'] === KafkaTopic.__pulumiType;
|
|
121
|
+
}
|
|
100
122
|
constructor(name, argsOrState, opts) {
|
|
101
123
|
let resourceInputs = {};
|
|
102
124
|
opts = opts || {};
|
|
@@ -131,28 +153,6 @@ class KafkaTopic extends pulumi.CustomResource {
|
|
|
131
153
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
132
154
|
super(KafkaTopic.__pulumiType, name, resourceInputs, opts);
|
|
133
155
|
}
|
|
134
|
-
/**
|
|
135
|
-
* Get an existing KafkaTopic resource's state with the given name, ID, and optional extra
|
|
136
|
-
* properties used to qualify the lookup.
|
|
137
|
-
*
|
|
138
|
-
* @param name The _unique_ name of the resulting resource.
|
|
139
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
140
|
-
* @param state Any extra arguments used during the lookup.
|
|
141
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
142
|
-
*/
|
|
143
|
-
static get(name, id, state, opts) {
|
|
144
|
-
return new KafkaTopic(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
145
|
-
}
|
|
146
|
-
/**
|
|
147
|
-
* Returns true if the given object is an instance of KafkaTopic. This is designed to work even
|
|
148
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
149
|
-
*/
|
|
150
|
-
static isInstance(obj) {
|
|
151
|
-
if (obj === undefined || obj === null) {
|
|
152
|
-
return false;
|
|
153
|
-
}
|
|
154
|
-
return obj['__pulumiType'] === KafkaTopic.__pulumiType;
|
|
155
|
-
}
|
|
156
156
|
}
|
|
157
157
|
exports.KafkaTopic = KafkaTopic;
|
|
158
158
|
/** @internal */
|
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;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0FG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"kafkaTopic.js","sourceRoot":"","sources":["../kafkaTopic.ts"],"names":[],"mappings":"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"}
|
package/ksqlCluster.d.ts
CHANGED
|
@@ -47,15 +47,15 @@ export declare class KsqlCluster extends pulumi.CustomResource {
|
|
|
47
47
|
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
48
48
|
*/
|
|
49
49
|
readonly environment: pulumi.Output<outputs.KsqlClusterEnvironment>;
|
|
50
|
-
/**
|
|
51
|
-
* (Required String) The API endpoint of the ksqlDB cluster, for example, `https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud`.
|
|
52
|
-
*/
|
|
53
|
-
readonly httpEndpoint: pulumi.Output<string>;
|
|
54
50
|
readonly kafkaCluster: pulumi.Output<outputs.KsqlClusterKafkaCluster>;
|
|
55
51
|
/**
|
|
56
52
|
* (Required String) A kind of the ksqlDB cluster, for example, `Cluster`.
|
|
57
53
|
*/
|
|
58
54
|
readonly kind: pulumi.Output<string>;
|
|
55
|
+
/**
|
|
56
|
+
* (Required String) The API endpoint of the ksqlDB cluster, for example, `https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud`.
|
|
57
|
+
*/
|
|
58
|
+
readonly restEndpoint: pulumi.Output<string>;
|
|
59
59
|
/**
|
|
60
60
|
* (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
|
|
61
61
|
*/
|
|
@@ -98,15 +98,15 @@ export interface KsqlClusterState {
|
|
|
98
98
|
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
99
99
|
*/
|
|
100
100
|
environment?: pulumi.Input<inputs.KsqlClusterEnvironment>;
|
|
101
|
-
/**
|
|
102
|
-
* (Required String) The API endpoint of the ksqlDB cluster, for example, `https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud`.
|
|
103
|
-
*/
|
|
104
|
-
httpEndpoint?: pulumi.Input<string>;
|
|
105
101
|
kafkaCluster?: pulumi.Input<inputs.KsqlClusterKafkaCluster>;
|
|
106
102
|
/**
|
|
107
103
|
* (Required String) A kind of the ksqlDB cluster, for example, `Cluster`.
|
|
108
104
|
*/
|
|
109
105
|
kind?: pulumi.Input<string>;
|
|
106
|
+
/**
|
|
107
|
+
* (Required String) The API endpoint of the ksqlDB cluster, for example, `https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud`.
|
|
108
|
+
*/
|
|
109
|
+
restEndpoint?: pulumi.Input<string>;
|
|
110
110
|
/**
|
|
111
111
|
* (Required Integer) The amount of storage (in GB) provisioned to the ksqlDB cluster.
|
|
112
112
|
*/
|
package/ksqlCluster.js
CHANGED
|
@@ -19,6 +19,28 @@ const utilities = require("./utilities");
|
|
|
19
19
|
* Do not forget to delete the terminal's command history afterward for security purposes.
|
|
20
20
|
*/
|
|
21
21
|
class KsqlCluster extends pulumi.CustomResource {
|
|
22
|
+
/**
|
|
23
|
+
* Get an existing KsqlCluster resource's state with the given name, ID, and optional extra
|
|
24
|
+
* properties used to qualify the lookup.
|
|
25
|
+
*
|
|
26
|
+
* @param name The _unique_ name of the resulting resource.
|
|
27
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
28
|
+
* @param state Any extra arguments used during the lookup.
|
|
29
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
30
|
+
*/
|
|
31
|
+
static get(name, id, state, opts) {
|
|
32
|
+
return new KsqlCluster(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Returns true if the given object is an instance of KsqlCluster. This is designed to work even
|
|
36
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
37
|
+
*/
|
|
38
|
+
static isInstance(obj) {
|
|
39
|
+
if (obj === undefined || obj === null) {
|
|
40
|
+
return false;
|
|
41
|
+
}
|
|
42
|
+
return obj['__pulumiType'] === KsqlCluster.__pulumiType;
|
|
43
|
+
}
|
|
22
44
|
constructor(name, argsOrState, opts) {
|
|
23
45
|
let resourceInputs = {};
|
|
24
46
|
opts = opts || {};
|
|
@@ -29,9 +51,9 @@ class KsqlCluster extends pulumi.CustomResource {
|
|
|
29
51
|
resourceInputs["csu"] = state ? state.csu : undefined;
|
|
30
52
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
31
53
|
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
32
|
-
resourceInputs["httpEndpoint"] = state ? state.httpEndpoint : undefined;
|
|
33
54
|
resourceInputs["kafkaCluster"] = state ? state.kafkaCluster : undefined;
|
|
34
55
|
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
56
|
+
resourceInputs["restEndpoint"] = state ? state.restEndpoint : undefined;
|
|
35
57
|
resourceInputs["storage"] = state ? state.storage : undefined;
|
|
36
58
|
resourceInputs["topicPrefix"] = state ? state.topicPrefix : undefined;
|
|
37
59
|
resourceInputs["useDetailedProcessingLog"] = state ? state.useDetailedProcessingLog : undefined;
|
|
@@ -60,36 +82,14 @@ class KsqlCluster extends pulumi.CustomResource {
|
|
|
60
82
|
resourceInputs["kafkaCluster"] = args ? args.kafkaCluster : undefined;
|
|
61
83
|
resourceInputs["useDetailedProcessingLog"] = args ? args.useDetailedProcessingLog : undefined;
|
|
62
84
|
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
63
|
-
resourceInputs["httpEndpoint"] = undefined /*out*/;
|
|
64
85
|
resourceInputs["kind"] = undefined /*out*/;
|
|
86
|
+
resourceInputs["restEndpoint"] = undefined /*out*/;
|
|
65
87
|
resourceInputs["storage"] = undefined /*out*/;
|
|
66
88
|
resourceInputs["topicPrefix"] = undefined /*out*/;
|
|
67
89
|
}
|
|
68
90
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
69
91
|
super(KsqlCluster.__pulumiType, name, resourceInputs, opts);
|
|
70
92
|
}
|
|
71
|
-
/**
|
|
72
|
-
* Get an existing KsqlCluster resource's state with the given name, ID, and optional extra
|
|
73
|
-
* properties used to qualify the lookup.
|
|
74
|
-
*
|
|
75
|
-
* @param name The _unique_ name of the resulting resource.
|
|
76
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
77
|
-
* @param state Any extra arguments used during the lookup.
|
|
78
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
79
|
-
*/
|
|
80
|
-
static get(name, id, state, opts) {
|
|
81
|
-
return new KsqlCluster(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
82
|
-
}
|
|
83
|
-
/**
|
|
84
|
-
* Returns true if the given object is an instance of KsqlCluster. This is designed to work even
|
|
85
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
86
|
-
*/
|
|
87
|
-
static isInstance(obj) {
|
|
88
|
-
if (obj === undefined || obj === null) {
|
|
89
|
-
return false;
|
|
90
|
-
}
|
|
91
|
-
return obj['__pulumiType'] === KsqlCluster.__pulumiType;
|
|
92
|
-
}
|
|
93
93
|
}
|
|
94
94
|
exports.KsqlCluster = KsqlCluster;
|
|
95
95
|
/** @internal */
|
package/ksqlCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ksqlCluster.js","sourceRoot":"","sources":["../ksqlCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"ksqlCluster.js","sourceRoot":"","sources":["../ksqlCluster.ts"],"names":[],"mappings":"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"}
|
package/network.js
CHANGED
|
@@ -17,6 +17,28 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
18
18
|
*/
|
|
19
19
|
class Network extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing Network resource's state with the given name, ID, and optional extra
|
|
22
|
+
* properties used to qualify the lookup.
|
|
23
|
+
*
|
|
24
|
+
* @param name The _unique_ name of the resulting resource.
|
|
25
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
26
|
+
* @param state Any extra arguments used during the lookup.
|
|
27
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
28
|
+
*/
|
|
29
|
+
static get(name, id, state, opts) {
|
|
30
|
+
return new Network(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of Network. This is designed to work even
|
|
34
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
35
|
+
*/
|
|
36
|
+
static isInstance(obj) {
|
|
37
|
+
if (obj === undefined || obj === null) {
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
return obj['__pulumiType'] === Network.__pulumiType;
|
|
41
|
+
}
|
|
20
42
|
constructor(name, argsOrState, opts) {
|
|
21
43
|
let resourceInputs = {};
|
|
22
44
|
opts = opts || {};
|
|
@@ -67,28 +89,6 @@ class Network extends pulumi.CustomResource {
|
|
|
67
89
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
68
90
|
super(Network.__pulumiType, name, resourceInputs, opts);
|
|
69
91
|
}
|
|
70
|
-
/**
|
|
71
|
-
* Get an existing Network resource's state with the given name, ID, and optional extra
|
|
72
|
-
* properties used to qualify the lookup.
|
|
73
|
-
*
|
|
74
|
-
* @param name The _unique_ name of the resulting resource.
|
|
75
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
76
|
-
* @param state Any extra arguments used during the lookup.
|
|
77
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
78
|
-
*/
|
|
79
|
-
static get(name, id, state, opts) {
|
|
80
|
-
return new Network(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
81
|
-
}
|
|
82
|
-
/**
|
|
83
|
-
* Returns true if the given object is an instance of Network. This is designed to work even
|
|
84
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
85
|
-
*/
|
|
86
|
-
static isInstance(obj) {
|
|
87
|
-
if (obj === undefined || obj === null) {
|
|
88
|
-
return false;
|
|
89
|
-
}
|
|
90
|
-
return obj['__pulumiType'] === Network.__pulumiType;
|
|
91
|
-
}
|
|
92
92
|
}
|
|
93
93
|
exports.Network = Network;
|
|
94
94
|
/** @internal */
|
package/network.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"network.js","sourceRoot":"","sources":["../network.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"network.js","sourceRoot":"","sources":["../network.ts"],"names":[],"mappings":"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"}
|