@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/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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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/confluentcloud",
|
|
3
|
-
"version": "v1.
|
|
3
|
+
"version": "v1.6.0-alpha.1669246534+c4e4206c",
|
|
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.6.0-alpha.1669246534+c4e4206c"
|
|
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.6.0-alpha.1669246534+c4e4206c",
|
|
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.6.0-alpha.1669246534+c4e4206c"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
package/peering.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 Peering extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing Peering 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 Peering(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of Peering. 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'] === Peering.__pulumiType;
|
|
41
|
+
}
|
|
20
42
|
constructor(name, argsOrState, opts) {
|
|
21
43
|
let resourceInputs = {};
|
|
22
44
|
opts = opts || {};
|
|
@@ -47,28 +69,6 @@ class Peering extends pulumi.CustomResource {
|
|
|
47
69
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
48
70
|
super(Peering.__pulumiType, name, resourceInputs, opts);
|
|
49
71
|
}
|
|
50
|
-
/**
|
|
51
|
-
* Get an existing Peering resource's state with the given name, ID, and optional extra
|
|
52
|
-
* properties used to qualify the lookup.
|
|
53
|
-
*
|
|
54
|
-
* @param name The _unique_ name of the resulting resource.
|
|
55
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
56
|
-
* @param state Any extra arguments used during the lookup.
|
|
57
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
58
|
-
*/
|
|
59
|
-
static get(name, id, state, opts) {
|
|
60
|
-
return new Peering(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* Returns true if the given object is an instance of Peering. This is designed to work even
|
|
64
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
65
|
-
*/
|
|
66
|
-
static isInstance(obj) {
|
|
67
|
-
if (obj === undefined || obj === null) {
|
|
68
|
-
return false;
|
|
69
|
-
}
|
|
70
|
-
return obj['__pulumiType'] === Peering.__pulumiType;
|
|
71
|
-
}
|
|
72
72
|
}
|
|
73
73
|
exports.Peering = Peering;
|
|
74
74
|
/** @internal */
|
package/peering.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"peering.js","sourceRoot":"","sources":["../peering.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"peering.js","sourceRoot":"","sources":["../peering.ts"],"names":[],"mappings":"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"}
|
package/privateLinkAccess.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 PrivateLinkAccess extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing PrivateLinkAccess 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 PrivateLinkAccess(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of PrivateLinkAccess. 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'] === PrivateLinkAccess.__pulumiType;
|
|
41
|
+
}
|
|
20
42
|
constructor(name, argsOrState, opts) {
|
|
21
43
|
let resourceInputs = {};
|
|
22
44
|
opts = opts || {};
|
|
@@ -47,28 +69,6 @@ class PrivateLinkAccess extends pulumi.CustomResource {
|
|
|
47
69
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
48
70
|
super(PrivateLinkAccess.__pulumiType, name, resourceInputs, opts);
|
|
49
71
|
}
|
|
50
|
-
/**
|
|
51
|
-
* Get an existing PrivateLinkAccess resource's state with the given name, ID, and optional extra
|
|
52
|
-
* properties used to qualify the lookup.
|
|
53
|
-
*
|
|
54
|
-
* @param name The _unique_ name of the resulting resource.
|
|
55
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
56
|
-
* @param state Any extra arguments used during the lookup.
|
|
57
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
58
|
-
*/
|
|
59
|
-
static get(name, id, state, opts) {
|
|
60
|
-
return new PrivateLinkAccess(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* Returns true if the given object is an instance of PrivateLinkAccess. This is designed to work even
|
|
64
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
65
|
-
*/
|
|
66
|
-
static isInstance(obj) {
|
|
67
|
-
if (obj === undefined || obj === null) {
|
|
68
|
-
return false;
|
|
69
|
-
}
|
|
70
|
-
return obj['__pulumiType'] === PrivateLinkAccess.__pulumiType;
|
|
71
|
-
}
|
|
72
72
|
}
|
|
73
73
|
exports.PrivateLinkAccess = PrivateLinkAccess;
|
|
74
74
|
/** @internal */
|
package/privateLinkAccess.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"privateLinkAccess.js","sourceRoot":"","sources":["../privateLinkAccess.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"privateLinkAccess.js","sourceRoot":"","sources":["../privateLinkAccess.ts"],"names":[],"mappings":"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"}
|
package/provider.js
CHANGED
|
@@ -12,6 +12,16 @@ const utilities = require("./utilities");
|
|
|
12
12
|
* [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
|
|
13
13
|
*/
|
|
14
14
|
class Provider extends pulumi.ProviderResource {
|
|
15
|
+
/**
|
|
16
|
+
* Returns true if the given object is an instance of Provider. This is designed to work even
|
|
17
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
18
|
+
*/
|
|
19
|
+
static isInstance(obj) {
|
|
20
|
+
if (obj === undefined || obj === null) {
|
|
21
|
+
return false;
|
|
22
|
+
}
|
|
23
|
+
return obj['__pulumiType'] === Provider.__pulumiType;
|
|
24
|
+
}
|
|
15
25
|
/**
|
|
16
26
|
* Create a Provider resource with the given unique name, arguments, and options.
|
|
17
27
|
*
|
|
@@ -35,16 +45,6 @@ class Provider extends pulumi.ProviderResource {
|
|
|
35
45
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
36
46
|
super(Provider.__pulumiType, name, resourceInputs, opts);
|
|
37
47
|
}
|
|
38
|
-
/**
|
|
39
|
-
* Returns true if the given object is an instance of Provider. This is designed to work even
|
|
40
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
41
|
-
*/
|
|
42
|
-
static isInstance(obj) {
|
|
43
|
-
if (obj === undefined || obj === null) {
|
|
44
|
-
return false;
|
|
45
|
-
}
|
|
46
|
-
return obj['__pulumiType'] === Provider.__pulumiType;
|
|
47
|
-
}
|
|
48
48
|
}
|
|
49
49
|
exports.Provider = Provider;
|
|
50
50
|
/** @internal */
|
package/provider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;
|
|
1
|
+
{"version":3,"file":"provider.js","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;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,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;IA2BD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAmB,EAAE,IAA6B;QACxE,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB;YACI,cAAc,CAAC,aAAa,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,WAAW,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,gBAAgB,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,cAAc,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACzG,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,aAAa,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,WAAW,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,gBAAgB,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,cAAc,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACzG,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;SACnF;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,aAAa,EAAE,gBAAgB,EAAE,aAAa,EAAE,gBAAgB,CAAC,EAAE,CAAC;QACnH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;AA9DL,4BA+DC;AA9DG,gBAAgB;AACO,qBAAY,GAAG,gBAAgB,CAAC"}
|
package/roleBinding.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 RoleBinding extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing RoleBinding 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 RoleBinding(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of RoleBinding. 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'] === RoleBinding.__pulumiType;
|
|
41
|
+
}
|
|
20
42
|
constructor(name, argsOrState, opts) {
|
|
21
43
|
let resourceInputs = {};
|
|
22
44
|
opts = opts || {};
|
|
@@ -44,28 +66,6 @@ class RoleBinding extends pulumi.CustomResource {
|
|
|
44
66
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
45
67
|
super(RoleBinding.__pulumiType, name, resourceInputs, opts);
|
|
46
68
|
}
|
|
47
|
-
/**
|
|
48
|
-
* Get an existing RoleBinding resource's state with the given name, ID, and optional extra
|
|
49
|
-
* properties used to qualify the lookup.
|
|
50
|
-
*
|
|
51
|
-
* @param name The _unique_ name of the resulting resource.
|
|
52
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
53
|
-
* @param state Any extra arguments used during the lookup.
|
|
54
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
55
|
-
*/
|
|
56
|
-
static get(name, id, state, opts) {
|
|
57
|
-
return new RoleBinding(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
58
|
-
}
|
|
59
|
-
/**
|
|
60
|
-
* Returns true if the given object is an instance of RoleBinding. This is designed to work even
|
|
61
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
62
|
-
*/
|
|
63
|
-
static isInstance(obj) {
|
|
64
|
-
if (obj === undefined || obj === null) {
|
|
65
|
-
return false;
|
|
66
|
-
}
|
|
67
|
-
return obj['__pulumiType'] === RoleBinding.__pulumiType;
|
|
68
|
-
}
|
|
69
69
|
}
|
|
70
70
|
exports.RoleBinding = RoleBinding;
|
|
71
71
|
/** @internal */
|
package/roleBinding.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"roleBinding.js","sourceRoot":"","sources":["../roleBinding.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"roleBinding.js","sourceRoot":"","sources":["../roleBinding.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAuBD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;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,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AA1EL,kCA2EC;AA7DG,gBAAgB;AACO,wBAAY,GAAG,8CAA8C,CAAC"}
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
10
|
+
*
|
|
11
|
+
* const development = new confluentcloud.Environment("development", {});
|
|
12
|
+
* const example = confluentcloud.getSchemaRegistryRegion({
|
|
13
|
+
* cloud: "AWS",
|
|
14
|
+
* region: "us-east-2",
|
|
15
|
+
* "package": "ESSENTIALS",
|
|
16
|
+
* });
|
|
17
|
+
* const essentials = new confluentcloud.SchemaRegistryCluster("essentials", {
|
|
18
|
+
* "package": example.then(example => example["package"]),
|
|
19
|
+
* environment: {
|
|
20
|
+
* id: development.id,
|
|
21
|
+
* },
|
|
22
|
+
* region: {
|
|
23
|
+
* id: example.then(example => example.id),
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
* ```
|
|
27
|
+
*
|
|
28
|
+
* ## Import
|
|
29
|
+
*
|
|
30
|
+
* You can import a Schema Registry cluster by using Environment ID and Schema Registry cluster ID, in the format `<Environment ID>/<Schema Registry cluster ID>`, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
31
|
+
*
|
|
32
|
+
* ```sh
|
|
33
|
+
* $ pulumi import confluentcloud:index/schemaRegistryCluster:SchemaRegistryCluster example env-abc123/lsrc-abc123
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
37
|
+
*/
|
|
38
|
+
export declare class SchemaRegistryCluster extends pulumi.CustomResource {
|
|
39
|
+
/**
|
|
40
|
+
* Get an existing SchemaRegistryCluster resource's state with the given name, ID, and optional extra
|
|
41
|
+
* properties used to qualify the lookup.
|
|
42
|
+
*
|
|
43
|
+
* @param name The _unique_ name of the resulting resource.
|
|
44
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
45
|
+
* @param state Any extra arguments used during the lookup.
|
|
46
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
47
|
+
*/
|
|
48
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SchemaRegistryClusterState, opts?: pulumi.CustomResourceOptions): SchemaRegistryCluster;
|
|
49
|
+
/**
|
|
50
|
+
* Returns true if the given object is an instance of SchemaRegistryCluster. This is designed to work even
|
|
51
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
52
|
+
*/
|
|
53
|
+
static isInstance(obj: any): obj is SchemaRegistryCluster;
|
|
54
|
+
/**
|
|
55
|
+
* (Required String) An API Version of the schema version of the Schema Registry cluster, for example, `srcm/v2`.
|
|
56
|
+
*/
|
|
57
|
+
readonly apiVersion: pulumi.Output<string>;
|
|
58
|
+
/**
|
|
59
|
+
* (Required String) The name of the Schema Registry cluster, for example, `Stream Governance Package`.
|
|
60
|
+
*/
|
|
61
|
+
readonly displayName: pulumi.Output<string>;
|
|
62
|
+
/**
|
|
63
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
64
|
+
*/
|
|
65
|
+
readonly environment: pulumi.Output<outputs.SchemaRegistryClusterEnvironment>;
|
|
66
|
+
/**
|
|
67
|
+
* (Required String) A kind of the Schema Registry cluster, for example, `Cluster`.
|
|
68
|
+
*/
|
|
69
|
+
readonly kind: pulumi.Output<string>;
|
|
70
|
+
/**
|
|
71
|
+
* The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
72
|
+
*/
|
|
73
|
+
readonly package: pulumi.Output<string>;
|
|
74
|
+
readonly region: pulumi.Output<outputs.SchemaRegistryClusterRegion>;
|
|
75
|
+
/**
|
|
76
|
+
* (Required String) The Confluent Resource Name of the Schema Registry cluster, for example, `crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123`.
|
|
77
|
+
*/
|
|
78
|
+
readonly resourceName: pulumi.Output<string>;
|
|
79
|
+
/**
|
|
80
|
+
* (Required String) The HTTP endpoint of the Schema Registry cluster, for example, `https://psrc-00000.us-west-2.aws.confluent.cloud`.
|
|
81
|
+
*/
|
|
82
|
+
readonly restEndpoint: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Create a SchemaRegistryCluster resource with the given unique name, arguments, and options.
|
|
85
|
+
*
|
|
86
|
+
* @param name The _unique_ name of the resource.
|
|
87
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
88
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
89
|
+
*/
|
|
90
|
+
constructor(name: string, args: SchemaRegistryClusterArgs, opts?: pulumi.CustomResourceOptions);
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Input properties used for looking up and filtering SchemaRegistryCluster resources.
|
|
94
|
+
*/
|
|
95
|
+
export interface SchemaRegistryClusterState {
|
|
96
|
+
/**
|
|
97
|
+
* (Required String) An API Version of the schema version of the Schema Registry cluster, for example, `srcm/v2`.
|
|
98
|
+
*/
|
|
99
|
+
apiVersion?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* (Required String) The name of the Schema Registry cluster, for example, `Stream Governance Package`.
|
|
102
|
+
*/
|
|
103
|
+
displayName?: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
106
|
+
*/
|
|
107
|
+
environment?: pulumi.Input<inputs.SchemaRegistryClusterEnvironment>;
|
|
108
|
+
/**
|
|
109
|
+
* (Required String) A kind of the Schema Registry cluster, for example, `Cluster`.
|
|
110
|
+
*/
|
|
111
|
+
kind?: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
114
|
+
*/
|
|
115
|
+
package?: pulumi.Input<string>;
|
|
116
|
+
region?: pulumi.Input<inputs.SchemaRegistryClusterRegion>;
|
|
117
|
+
/**
|
|
118
|
+
* (Required String) The Confluent Resource Name of the Schema Registry cluster, for example, `crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-abc123/schema-registry=lsrc-abc123`.
|
|
119
|
+
*/
|
|
120
|
+
resourceName?: pulumi.Input<string>;
|
|
121
|
+
/**
|
|
122
|
+
* (Required String) The HTTP endpoint of the Schema Registry cluster, for example, `https://psrc-00000.us-west-2.aws.confluent.cloud`.
|
|
123
|
+
*/
|
|
124
|
+
restEndpoint?: pulumi.Input<string>;
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* The set of arguments for constructing a SchemaRegistryCluster resource.
|
|
128
|
+
*/
|
|
129
|
+
export interface SchemaRegistryClusterArgs {
|
|
130
|
+
/**
|
|
131
|
+
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
132
|
+
*/
|
|
133
|
+
environment: pulumi.Input<inputs.SchemaRegistryClusterEnvironment>;
|
|
134
|
+
/**
|
|
135
|
+
* The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
136
|
+
*/
|
|
137
|
+
package: pulumi.Input<string>;
|
|
138
|
+
region: pulumi.Input<inputs.SchemaRegistryClusterRegion>;
|
|
139
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.SchemaRegistryCluster = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
14
|
+
*
|
|
15
|
+
* const development = new confluentcloud.Environment("development", {});
|
|
16
|
+
* const example = confluentcloud.getSchemaRegistryRegion({
|
|
17
|
+
* cloud: "AWS",
|
|
18
|
+
* region: "us-east-2",
|
|
19
|
+
* "package": "ESSENTIALS",
|
|
20
|
+
* });
|
|
21
|
+
* const essentials = new confluentcloud.SchemaRegistryCluster("essentials", {
|
|
22
|
+
* "package": example.then(example => example["package"]),
|
|
23
|
+
* environment: {
|
|
24
|
+
* id: development.id,
|
|
25
|
+
* },
|
|
26
|
+
* region: {
|
|
27
|
+
* id: example.then(example => example.id),
|
|
28
|
+
* },
|
|
29
|
+
* });
|
|
30
|
+
* ```
|
|
31
|
+
*
|
|
32
|
+
* ## Import
|
|
33
|
+
*
|
|
34
|
+
* You can import a Schema Registry cluster by using Environment ID and Schema Registry cluster ID, in the format `<Environment ID>/<Schema Registry cluster ID>`, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
35
|
+
*
|
|
36
|
+
* ```sh
|
|
37
|
+
* $ pulumi import confluentcloud:index/schemaRegistryCluster:SchemaRegistryCluster example env-abc123/lsrc-abc123
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
41
|
+
*/
|
|
42
|
+
class SchemaRegistryCluster extends pulumi.CustomResource {
|
|
43
|
+
/**
|
|
44
|
+
* Get an existing SchemaRegistryCluster resource's state with the given name, ID, and optional extra
|
|
45
|
+
* properties used to qualify the lookup.
|
|
46
|
+
*
|
|
47
|
+
* @param name The _unique_ name of the resulting resource.
|
|
48
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
49
|
+
* @param state Any extra arguments used during the lookup.
|
|
50
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
51
|
+
*/
|
|
52
|
+
static get(name, id, state, opts) {
|
|
53
|
+
return new SchemaRegistryCluster(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Returns true if the given object is an instance of SchemaRegistryCluster. This is designed to work even
|
|
57
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
58
|
+
*/
|
|
59
|
+
static isInstance(obj) {
|
|
60
|
+
if (obj === undefined || obj === null) {
|
|
61
|
+
return false;
|
|
62
|
+
}
|
|
63
|
+
return obj['__pulumiType'] === SchemaRegistryCluster.__pulumiType;
|
|
64
|
+
}
|
|
65
|
+
constructor(name, argsOrState, opts) {
|
|
66
|
+
let resourceInputs = {};
|
|
67
|
+
opts = opts || {};
|
|
68
|
+
if (opts.id) {
|
|
69
|
+
const state = argsOrState;
|
|
70
|
+
resourceInputs["apiVersion"] = state ? state.apiVersion : undefined;
|
|
71
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
72
|
+
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
73
|
+
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
74
|
+
resourceInputs["package"] = state ? state.package : undefined;
|
|
75
|
+
resourceInputs["region"] = state ? state.region : undefined;
|
|
76
|
+
resourceInputs["resourceName"] = state ? state.resourceName : undefined;
|
|
77
|
+
resourceInputs["restEndpoint"] = state ? state.restEndpoint : undefined;
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
const args = argsOrState;
|
|
81
|
+
if ((!args || args.environment === undefined) && !opts.urn) {
|
|
82
|
+
throw new Error("Missing required property 'environment'");
|
|
83
|
+
}
|
|
84
|
+
if ((!args || args.package === undefined) && !opts.urn) {
|
|
85
|
+
throw new Error("Missing required property 'package'");
|
|
86
|
+
}
|
|
87
|
+
if ((!args || args.region === undefined) && !opts.urn) {
|
|
88
|
+
throw new Error("Missing required property 'region'");
|
|
89
|
+
}
|
|
90
|
+
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
91
|
+
resourceInputs["package"] = args ? args.package : undefined;
|
|
92
|
+
resourceInputs["region"] = args ? args.region : undefined;
|
|
93
|
+
resourceInputs["apiVersion"] = undefined /*out*/;
|
|
94
|
+
resourceInputs["displayName"] = undefined /*out*/;
|
|
95
|
+
resourceInputs["kind"] = undefined /*out*/;
|
|
96
|
+
resourceInputs["resourceName"] = undefined /*out*/;
|
|
97
|
+
resourceInputs["restEndpoint"] = undefined /*out*/;
|
|
98
|
+
}
|
|
99
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
100
|
+
super(SchemaRegistryCluster.__pulumiType, name, resourceInputs, opts);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
exports.SchemaRegistryCluster = SchemaRegistryCluster;
|
|
104
|
+
/** @internal */
|
|
105
|
+
SchemaRegistryCluster.__pulumiType = 'confluentcloud:index/schemaRegistryCluster:SchemaRegistryCluster';
|
|
106
|
+
//# sourceMappingURL=schemaRegistryCluster.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schemaRegistryCluster.js","sourceRoot":"","sources":["../schemaRegistryCluster.ts"],"names":[],"mappings":"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"}
|