@pulumi/confluentcloud 1.5.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.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/apiKey.js
CHANGED
|
@@ -23,6 +23,28 @@ const utilities = require("./utilities");
|
|
|
23
23
|
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
24
24
|
*/
|
|
25
25
|
class ApiKey extends pulumi.CustomResource {
|
|
26
|
+
/**
|
|
27
|
+
* Get an existing ApiKey resource's state with the given name, ID, and optional extra
|
|
28
|
+
* properties used to qualify the lookup.
|
|
29
|
+
*
|
|
30
|
+
* @param name The _unique_ name of the resulting resource.
|
|
31
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
32
|
+
* @param state Any extra arguments used during the lookup.
|
|
33
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
34
|
+
*/
|
|
35
|
+
static get(name, id, state, opts) {
|
|
36
|
+
return new ApiKey(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Returns true if the given object is an instance of ApiKey. 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'] === ApiKey.__pulumiType;
|
|
47
|
+
}
|
|
26
48
|
constructor(name, argsOrState, opts) {
|
|
27
49
|
let resourceInputs = {};
|
|
28
50
|
opts = opts || {};
|
|
@@ -52,28 +74,6 @@ class ApiKey extends pulumi.CustomResource {
|
|
|
52
74
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
53
75
|
super(ApiKey.__pulumiType, name, resourceInputs, opts);
|
|
54
76
|
}
|
|
55
|
-
/**
|
|
56
|
-
* Get an existing ApiKey resource's state with the given name, ID, and optional extra
|
|
57
|
-
* properties used to qualify the lookup.
|
|
58
|
-
*
|
|
59
|
-
* @param name The _unique_ name of the resulting resource.
|
|
60
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
61
|
-
* @param state Any extra arguments used during the lookup.
|
|
62
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
63
|
-
*/
|
|
64
|
-
static get(name, id, state, opts) {
|
|
65
|
-
return new ApiKey(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
66
|
-
}
|
|
67
|
-
/**
|
|
68
|
-
* Returns true if the given object is an instance of ApiKey. This is designed to work even
|
|
69
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
70
|
-
*/
|
|
71
|
-
static isInstance(obj) {
|
|
72
|
-
if (obj === undefined || obj === null) {
|
|
73
|
-
return false;
|
|
74
|
-
}
|
|
75
|
-
return obj['__pulumiType'] === ApiKey.__pulumiType;
|
|
76
|
-
}
|
|
77
77
|
}
|
|
78
78
|
exports.ApiKey = ApiKey;
|
|
79
79
|
/** @internal */
|
package/apiKey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apiKey.js","sourceRoot":"","sources":["../apiKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"apiKey.js","sourceRoot":"","sources":["../apiKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC3D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;;AAxFL,wBAyFC;AA3EG,gBAAgB;AACO,mBAAY,GAAG,oCAAoC,CAAC"}
|
package/clusterLink.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 ClusterLink extends pulumi.CustomResource {
|
|
20
|
+
/**
|
|
21
|
+
* Get an existing ClusterLink 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 ClusterLink(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Returns true if the given object is an instance of ClusterLink. 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'] === ClusterLink.__pulumiType;
|
|
41
|
+
}
|
|
20
42
|
constructor(name, argsOrState, opts) {
|
|
21
43
|
let resourceInputs = {};
|
|
22
44
|
opts = opts || {};
|
|
@@ -45,28 +67,6 @@ class ClusterLink extends pulumi.CustomResource {
|
|
|
45
67
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
46
68
|
super(ClusterLink.__pulumiType, name, resourceInputs, opts);
|
|
47
69
|
}
|
|
48
|
-
/**
|
|
49
|
-
* Get an existing ClusterLink resource's state with the given name, ID, and optional extra
|
|
50
|
-
* properties used to qualify the lookup.
|
|
51
|
-
*
|
|
52
|
-
* @param name The _unique_ name of the resulting resource.
|
|
53
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
54
|
-
* @param state Any extra arguments used during the lookup.
|
|
55
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
56
|
-
*/
|
|
57
|
-
static get(name, id, state, opts) {
|
|
58
|
-
return new ClusterLink(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
59
|
-
}
|
|
60
|
-
/**
|
|
61
|
-
* Returns true if the given object is an instance of ClusterLink. This is designed to work even
|
|
62
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
63
|
-
*/
|
|
64
|
-
static isInstance(obj) {
|
|
65
|
-
if (obj === undefined || obj === null) {
|
|
66
|
-
return false;
|
|
67
|
-
}
|
|
68
|
-
return obj['__pulumiType'] === ClusterLink.__pulumiType;
|
|
69
|
-
}
|
|
70
70
|
}
|
|
71
71
|
exports.ClusterLink = ClusterLink;
|
|
72
72
|
/** @internal */
|
package/clusterLink.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clusterLink.js","sourceRoot":"","sources":["../clusterLink.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"clusterLink.js","sourceRoot":"","sources":["../clusterLink.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,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;IAyBD,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,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;SACvF;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,uBAAuB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpE,MAAM,IAAI,KAAK,CAAC,qDAAqD,CAAC,CAAC;aAC1E;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,kBAAkB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/D,MAAM,IAAI,KAAK,CAAC,gDAAgD,CAAC,CAAC;aACrE;YACD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;SACrF;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;;AA7EL,kCA8EC;AAhEG,gBAAgB;AACO,wBAAY,GAAG,8CAA8C,CAAC"}
|
package/connector.js
CHANGED
|
@@ -15,6 +15,28 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* ```
|
|
16
16
|
*/
|
|
17
17
|
class Connector extends pulumi.CustomResource {
|
|
18
|
+
/**
|
|
19
|
+
* Get an existing Connector resource's state with the given name, ID, and optional extra
|
|
20
|
+
* properties used to qualify the lookup.
|
|
21
|
+
*
|
|
22
|
+
* @param name The _unique_ name of the resulting resource.
|
|
23
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
24
|
+
* @param state Any extra arguments used during the lookup.
|
|
25
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
26
|
+
*/
|
|
27
|
+
static get(name, id, state, opts) {
|
|
28
|
+
return new Connector(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of Connector. This is designed to work even
|
|
32
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
33
|
+
*/
|
|
34
|
+
static isInstance(obj) {
|
|
35
|
+
if (obj === undefined || obj === null) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
return obj['__pulumiType'] === Connector.__pulumiType;
|
|
39
|
+
}
|
|
18
40
|
constructor(name, argsOrState, opts) {
|
|
19
41
|
let resourceInputs = {};
|
|
20
42
|
opts = opts || {};
|
|
@@ -48,28 +70,6 @@ class Connector extends pulumi.CustomResource {
|
|
|
48
70
|
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
49
71
|
super(Connector.__pulumiType, name, resourceInputs, opts);
|
|
50
72
|
}
|
|
51
|
-
/**
|
|
52
|
-
* Get an existing Connector 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 Connector(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
62
|
-
}
|
|
63
|
-
/**
|
|
64
|
-
* Returns true if the given object is an instance of Connector. 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'] === Connector.__pulumiType;
|
|
72
|
-
}
|
|
73
73
|
}
|
|
74
74
|
exports.Connector = Connector;
|
|
75
75
|
/** @internal */
|
package/connector.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connector.js","sourceRoot":"","sources":["../connector.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"connector.js","sourceRoot":"","sources":["../connector.ts"],"names":[],"mappings":"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"}
|
package/environment.js
CHANGED
|
@@ -17,22 +17,6 @@ const utilities = require("./utilities");
|
|
|
17
17
|
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
18
18
|
*/
|
|
19
19
|
class Environment extends pulumi.CustomResource {
|
|
20
|
-
constructor(name, argsOrState, opts) {
|
|
21
|
-
let resourceInputs = {};
|
|
22
|
-
opts = opts || {};
|
|
23
|
-
if (opts.id) {
|
|
24
|
-
const state = argsOrState;
|
|
25
|
-
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
26
|
-
resourceInputs["resourceName"] = state ? state.resourceName : undefined;
|
|
27
|
-
}
|
|
28
|
-
else {
|
|
29
|
-
const args = argsOrState;
|
|
30
|
-
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
31
|
-
resourceInputs["resourceName"] = undefined /*out*/;
|
|
32
|
-
}
|
|
33
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
34
|
-
super(Environment.__pulumiType, name, resourceInputs, opts);
|
|
35
|
-
}
|
|
36
20
|
/**
|
|
37
21
|
* Get an existing Environment resource's state with the given name, ID, and optional extra
|
|
38
22
|
* properties used to qualify the lookup.
|
|
@@ -55,6 +39,22 @@ class Environment extends pulumi.CustomResource {
|
|
|
55
39
|
}
|
|
56
40
|
return obj['__pulumiType'] === Environment.__pulumiType;
|
|
57
41
|
}
|
|
42
|
+
constructor(name, argsOrState, opts) {
|
|
43
|
+
let resourceInputs = {};
|
|
44
|
+
opts = opts || {};
|
|
45
|
+
if (opts.id) {
|
|
46
|
+
const state = argsOrState;
|
|
47
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
48
|
+
resourceInputs["resourceName"] = state ? state.resourceName : undefined;
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
const args = argsOrState;
|
|
52
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
53
|
+
resourceInputs["resourceName"] = undefined /*out*/;
|
|
54
|
+
}
|
|
55
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
56
|
+
super(Environment.__pulumiType, name, resourceInputs, opts);
|
|
57
|
+
}
|
|
58
58
|
}
|
|
59
59
|
exports.Environment = Environment;
|
|
60
60
|
/** @internal */
|
package/environment.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../environment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../environment.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;IAmBD,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,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;SAC3E;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACtD;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;;AA3DL,kCA4DC;AA9CG,gBAAgB;AACO,wBAAY,GAAG,8CAA8C,CAAC"}
|
package/getKafkaClientQuota.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ export interface GetKafkaClientQuotaResult {
|
|
|
52
52
|
readonly id: string;
|
|
53
53
|
readonly kafkaClusters: outputs.GetKafkaClientQuotaKafkaCluster[];
|
|
54
54
|
/**
|
|
55
|
-
* (Required Set of Strings) The list of service accounts to apply the Kafka Client Quota to. Use the special name, "default", to represent the default quota for all users and service accounts.
|
|
55
|
+
* (Required Set of Strings) The list of principals (i.e., service accounts or identity pools) to apply the Kafka Client Quota to. Use the special name, "default", to represent the default quota for all users and service accounts.
|
|
56
56
|
* - `kafkaCluster` (Required Configuration Block) supports the following:
|
|
57
57
|
*/
|
|
58
58
|
readonly principals: string[];
|
package/getKsqlCluster.d.ts
CHANGED
|
@@ -64,11 +64,6 @@ export interface GetKsqlClusterResult {
|
|
|
64
64
|
readonly csu: number;
|
|
65
65
|
readonly displayName: string;
|
|
66
66
|
readonly environment: outputs.GetKsqlClusterEnvironment;
|
|
67
|
-
/**
|
|
68
|
-
* (Required String) The API endpoint of the ksqlDB cluster, for example, `https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud`.
|
|
69
|
-
* - `kafkaCluster` (Optional Configuration Block) supports the following:
|
|
70
|
-
*/
|
|
71
|
-
readonly httpEndpoint: string;
|
|
72
67
|
/**
|
|
73
68
|
* (Required String) The ID of the service or user account that the ksqlDB cluster belongs to, for example, `sa-abc123`.
|
|
74
69
|
*/
|
|
@@ -78,6 +73,13 @@ export interface GetKsqlClusterResult {
|
|
|
78
73
|
* (Required String) A kind of the ksqlDB cluster, for example, `Cluster`.
|
|
79
74
|
*/
|
|
80
75
|
readonly kind: string;
|
|
76
|
+
/**
|
|
77
|
+
* (Required String) The API endpoint of the ksqlDB cluster, for example, `https://pksqlc-00000.us-central1.gcp.glb.confluent.cloud`.
|
|
78
|
+
* - `kafkaCluster` (Optional Configuration Block) supports the following:
|
|
79
|
+
*
|
|
80
|
+
* @deprecated use rest_endpoint instead
|
|
81
|
+
*/
|
|
82
|
+
readonly restEndpoint: string;
|
|
81
83
|
/**
|
|
82
84
|
* (Required Integer) The amount of storage (in GB) provisioned to this cluster.
|
|
83
85
|
*/
|
package/getKsqlCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getKsqlCluster.js","sourceRoot":"","sources":["../getKsqlCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,wCAWC;
|
|
1
|
+
{"version":3,"file":"getKsqlCluster.js","sourceRoot":"","sources":["../getKsqlCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,wCAWC;AA4DD,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,oDAEC"}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
6
|
+
*
|
|
7
|
+
* > **Note:** `confluentcloud.SchemaRegistryCluster` resource is available in **Open Preview** for early adopters. Open Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
8
|
+
* **Open Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Open Preview features. Open Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Open Preview features at any time in Confluent’s sole discretion.
|
|
9
|
+
*
|
|
10
|
+
* `confluentcloud.SchemaRegistryCluster` describes a Schema Registry cluster data source.
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
17
|
+
*
|
|
18
|
+
* const exampleUsingIdSchemaRegistryCluster = confluentcloud.getSchemaRegistryCluster({
|
|
19
|
+
* id: "lsrc-abc123",
|
|
20
|
+
* environment: {
|
|
21
|
+
* id: "env-xyz456",
|
|
22
|
+
* },
|
|
23
|
+
* });
|
|
24
|
+
* export const exampleUsingId = exampleUsingIdSchemaRegistryCluster;
|
|
25
|
+
* const exampleUsingNameSchemaRegistryCluster = confluentcloud.getSchemaRegistryCluster({
|
|
26
|
+
* displayName: "Stream Governance Package",
|
|
27
|
+
* environment: {
|
|
28
|
+
* id: "env-xyz456",
|
|
29
|
+
* },
|
|
30
|
+
* });
|
|
31
|
+
* export const exampleUsingName = exampleUsingNameSchemaRegistryCluster;
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
export declare function getSchemaRegistryCluster(args: GetSchemaRegistryClusterArgs, opts?: pulumi.InvokeOptions): Promise<GetSchemaRegistryClusterResult>;
|
|
35
|
+
/**
|
|
36
|
+
* A collection of arguments for invoking getSchemaRegistryCluster.
|
|
37
|
+
*/
|
|
38
|
+
export interface GetSchemaRegistryClusterArgs {
|
|
39
|
+
/**
|
|
40
|
+
* The name for the Schema Registry cluster.
|
|
41
|
+
*/
|
|
42
|
+
displayName?: string;
|
|
43
|
+
environment: inputs.GetSchemaRegistryClusterEnvironment;
|
|
44
|
+
/**
|
|
45
|
+
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
46
|
+
*/
|
|
47
|
+
id?: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* A collection of values returned by getSchemaRegistryCluster.
|
|
51
|
+
*/
|
|
52
|
+
export interface GetSchemaRegistryClusterResult {
|
|
53
|
+
/**
|
|
54
|
+
* (Required String) An API Version of the schema version of the Schema Registry cluster, for example, `stream-governance/v2`.
|
|
55
|
+
*/
|
|
56
|
+
readonly apiVersion: string;
|
|
57
|
+
/**
|
|
58
|
+
* (Required String) The name of the Schema Registry cluster, for example, `Stream Governance Package`.
|
|
59
|
+
*/
|
|
60
|
+
readonly displayName: string;
|
|
61
|
+
readonly environment: outputs.GetSchemaRegistryClusterEnvironment;
|
|
62
|
+
readonly id: string;
|
|
63
|
+
/**
|
|
64
|
+
* (Required String) A kind of the Schema Registry cluster, for example, `Cluster`.
|
|
65
|
+
*/
|
|
66
|
+
readonly kind: string;
|
|
67
|
+
/**
|
|
68
|
+
* (Required String) The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
69
|
+
* - `region` (Required Configuration Block) supports the following:
|
|
70
|
+
*/
|
|
71
|
+
readonly package: string;
|
|
72
|
+
readonly regions: outputs.GetSchemaRegistryClusterRegion[];
|
|
73
|
+
/**
|
|
74
|
+
* (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`.
|
|
75
|
+
*/
|
|
76
|
+
readonly resourceName: string;
|
|
77
|
+
/**
|
|
78
|
+
* (Required String) The HTTP endpoint of the Schema Registry cluster, for example, `https://psrc-00000.us-west-2.aws.confluent.cloud`.
|
|
79
|
+
*/
|
|
80
|
+
readonly restEndpoint: string;
|
|
81
|
+
}
|
|
82
|
+
export declare function getSchemaRegistryClusterOutput(args: GetSchemaRegistryClusterOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSchemaRegistryClusterResult>;
|
|
83
|
+
/**
|
|
84
|
+
* A collection of arguments for invoking getSchemaRegistryCluster.
|
|
85
|
+
*/
|
|
86
|
+
export interface GetSchemaRegistryClusterOutputArgs {
|
|
87
|
+
/**
|
|
88
|
+
* The name for the Schema Registry cluster.
|
|
89
|
+
*/
|
|
90
|
+
displayName?: pulumi.Input<string>;
|
|
91
|
+
environment: pulumi.Input<inputs.GetSchemaRegistryClusterEnvironmentArgs>;
|
|
92
|
+
/**
|
|
93
|
+
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
94
|
+
*/
|
|
95
|
+
id?: pulumi.Input<string>;
|
|
96
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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.getSchemaRegistryClusterOutput = exports.getSchemaRegistryCluster = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** `confluentcloud.SchemaRegistryCluster` resource is available in **Open Preview** for early adopters. Open Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
12
|
+
* **Open Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Open Preview features. Open Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Open Preview features at any time in Confluent’s sole discretion.
|
|
13
|
+
*
|
|
14
|
+
* `confluentcloud.SchemaRegistryCluster` describes a Schema Registry cluster data source.
|
|
15
|
+
*
|
|
16
|
+
* ## Example Usage
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
21
|
+
*
|
|
22
|
+
* const exampleUsingIdSchemaRegistryCluster = confluentcloud.getSchemaRegistryCluster({
|
|
23
|
+
* id: "lsrc-abc123",
|
|
24
|
+
* environment: {
|
|
25
|
+
* id: "env-xyz456",
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
28
|
+
* export const exampleUsingId = exampleUsingIdSchemaRegistryCluster;
|
|
29
|
+
* const exampleUsingNameSchemaRegistryCluster = confluentcloud.getSchemaRegistryCluster({
|
|
30
|
+
* displayName: "Stream Governance Package",
|
|
31
|
+
* environment: {
|
|
32
|
+
* id: "env-xyz456",
|
|
33
|
+
* },
|
|
34
|
+
* });
|
|
35
|
+
* export const exampleUsingName = exampleUsingNameSchemaRegistryCluster;
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
38
|
+
function getSchemaRegistryCluster(args, opts) {
|
|
39
|
+
if (!opts) {
|
|
40
|
+
opts = {};
|
|
41
|
+
}
|
|
42
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
43
|
+
return pulumi.runtime.invoke("confluentcloud:index/getSchemaRegistryCluster:getSchemaRegistryCluster", {
|
|
44
|
+
"displayName": args.displayName,
|
|
45
|
+
"environment": args.environment,
|
|
46
|
+
"id": args.id,
|
|
47
|
+
}, opts);
|
|
48
|
+
}
|
|
49
|
+
exports.getSchemaRegistryCluster = getSchemaRegistryCluster;
|
|
50
|
+
function getSchemaRegistryClusterOutput(args, opts) {
|
|
51
|
+
return pulumi.output(args).apply(a => getSchemaRegistryCluster(a, opts));
|
|
52
|
+
}
|
|
53
|
+
exports.getSchemaRegistryClusterOutput = getSchemaRegistryClusterOutput;
|
|
54
|
+
//# sourceMappingURL=getSchemaRegistryCluster.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSchemaRegistryCluster.js","sourceRoot":"","sources":["../getSchemaRegistryCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wEAAwE,EAAE;QACnG,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,4DAWC;AAmDD,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,wBAAwB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,wEAEC"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
4
|
+
*
|
|
5
|
+
* > **Note:** `confluentcloud.getSchemaRegistryRegion` data source is available in **Open Preview** for early adopters. Open Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
6
|
+
* **Open Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Open Preview features. Open Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Open Preview features at any time in Confluent’s sole discretion.
|
|
7
|
+
*
|
|
8
|
+
* `confluentcloud.getSchemaRegistryRegion` describes a Schema Registry cluster data source.
|
|
9
|
+
*
|
|
10
|
+
* ## Example Usage
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
15
|
+
*
|
|
16
|
+
* const exampleSchemaRegistryRegion = confluentcloud.getSchemaRegistryRegion({
|
|
17
|
+
* cloud: "AWS",
|
|
18
|
+
* region: "us-east-2",
|
|
19
|
+
* "package": "ESSENTIALS",
|
|
20
|
+
* });
|
|
21
|
+
* export const example = exampleSchemaRegistryRegion;
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
export declare function getSchemaRegistryRegion(args: GetSchemaRegistryRegionArgs, opts?: pulumi.InvokeOptions): Promise<GetSchemaRegistryRegionResult>;
|
|
25
|
+
/**
|
|
26
|
+
* A collection of arguments for invoking getSchemaRegistryRegion.
|
|
27
|
+
*/
|
|
28
|
+
export interface GetSchemaRegistryRegionArgs {
|
|
29
|
+
/**
|
|
30
|
+
* The cloud service provider that hosts the region. Accepted values are: `AWS`, `AZURE`, and `GCP`.
|
|
31
|
+
*/
|
|
32
|
+
cloud: string;
|
|
33
|
+
/**
|
|
34
|
+
* The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
35
|
+
*/
|
|
36
|
+
package: string;
|
|
37
|
+
/**
|
|
38
|
+
* The cloud service provider region, for example, `us-east-2`. See [Cloud Providers and Regions](https://docs.confluent.io/cloud/current/clusters/regions.html#cloud-providers-and-regions) for a full list of options for AWS, Azure, and GCP.
|
|
39
|
+
*/
|
|
40
|
+
region: string;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* A collection of values returned by getSchemaRegistryRegion.
|
|
44
|
+
*/
|
|
45
|
+
export interface GetSchemaRegistryRegionResult {
|
|
46
|
+
readonly cloud: string;
|
|
47
|
+
/**
|
|
48
|
+
* (Required String) The ID of the Schema Registry region, for example, `sgreg-1`.
|
|
49
|
+
*/
|
|
50
|
+
readonly id: string;
|
|
51
|
+
readonly package: string;
|
|
52
|
+
readonly region: string;
|
|
53
|
+
}
|
|
54
|
+
export declare function getSchemaRegistryRegionOutput(args: GetSchemaRegistryRegionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSchemaRegistryRegionResult>;
|
|
55
|
+
/**
|
|
56
|
+
* A collection of arguments for invoking getSchemaRegistryRegion.
|
|
57
|
+
*/
|
|
58
|
+
export interface GetSchemaRegistryRegionOutputArgs {
|
|
59
|
+
/**
|
|
60
|
+
* The cloud service provider that hosts the region. Accepted values are: `AWS`, `AZURE`, and `GCP`.
|
|
61
|
+
*/
|
|
62
|
+
cloud: pulumi.Input<string>;
|
|
63
|
+
/**
|
|
64
|
+
* The type of the billing package. Accepted values are: `ESSENTIALS` and `ADVANCED`.
|
|
65
|
+
*/
|
|
66
|
+
package: pulumi.Input<string>;
|
|
67
|
+
/**
|
|
68
|
+
* The cloud service provider region, for example, `us-east-2`. See [Cloud Providers and Regions](https://docs.confluent.io/cloud/current/clusters/regions.html#cloud-providers-and-regions) for a full list of options for AWS, Azure, and GCP.
|
|
69
|
+
*/
|
|
70
|
+
region: pulumi.Input<string>;
|
|
71
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
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.getSchemaRegistryRegionOutput = exports.getSchemaRegistryRegion = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** `confluentcloud.getSchemaRegistryRegion` data source is available in **Open Preview** for early adopters. Open Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
12
|
+
* **Open Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Open Preview features. Open Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Open Preview features at any time in Confluent’s sole discretion.
|
|
13
|
+
*
|
|
14
|
+
* `confluentcloud.getSchemaRegistryRegion` describes a Schema Registry cluster data source.
|
|
15
|
+
*
|
|
16
|
+
* ## Example Usage
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
21
|
+
*
|
|
22
|
+
* const exampleSchemaRegistryRegion = confluentcloud.getSchemaRegistryRegion({
|
|
23
|
+
* cloud: "AWS",
|
|
24
|
+
* region: "us-east-2",
|
|
25
|
+
* "package": "ESSENTIALS",
|
|
26
|
+
* });
|
|
27
|
+
* export const example = exampleSchemaRegistryRegion;
|
|
28
|
+
* ```
|
|
29
|
+
*/
|
|
30
|
+
function getSchemaRegistryRegion(args, opts) {
|
|
31
|
+
if (!opts) {
|
|
32
|
+
opts = {};
|
|
33
|
+
}
|
|
34
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
35
|
+
return pulumi.runtime.invoke("confluentcloud:index/getSchemaRegistryRegion:getSchemaRegistryRegion", {
|
|
36
|
+
"cloud": args.cloud,
|
|
37
|
+
"package": args.package,
|
|
38
|
+
"region": args.region,
|
|
39
|
+
}, opts);
|
|
40
|
+
}
|
|
41
|
+
exports.getSchemaRegistryRegion = getSchemaRegistryRegion;
|
|
42
|
+
function getSchemaRegistryRegionOutput(args, opts) {
|
|
43
|
+
return pulumi.output(args).apply(a => getSchemaRegistryRegion(a, opts));
|
|
44
|
+
}
|
|
45
|
+
exports.getSchemaRegistryRegionOutput = getSchemaRegistryRegionOutput;
|
|
46
|
+
//# sourceMappingURL=getSchemaRegistryRegion.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSchemaRegistryRegion.js","sourceRoot":"","sources":["../getSchemaRegistryRegion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sEAAsE,EAAE;QACjG,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,0DAWC;AAiCD,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,sEAEC"}
|
|
@@ -2,6 +2,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
4
4
|
*
|
|
5
|
+
* !> **WARNING:** `confluentcloud.getStreamGovernanceRegion` data source is deprecated and will be removed in the next version. Use `confluentcloud.getSchemaRegistryRegion` instead.
|
|
6
|
+
*
|
|
5
7
|
* > **Note:** `confluentcloud.getStreamGovernanceRegion` data source is available in **Open Preview** for early adopters. Open Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
6
8
|
* **Open Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Open Preview features. Open Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Open Preview features at any time in Confluent’s sole discretion.
|
|
7
9
|
*
|
|
@@ -8,6 +8,8 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
10
10
|
*
|
|
11
|
+
* !> **WARNING:** `confluentcloud.getStreamGovernanceRegion` data source is deprecated and will be removed in the next version. Use `confluentcloud.getSchemaRegistryRegion` instead.
|
|
12
|
+
*
|
|
11
13
|
* > **Note:** `confluentcloud.getStreamGovernanceRegion` data source is available in **Open Preview** for early adopters. Open Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
12
14
|
* **Open Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Open Preview features. Open Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Open Preview features at any time in Confluent’s sole discretion.
|
|
13
15
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getStreamGovernanceRegion.js","sourceRoot":"","sources":["../getStreamGovernanceRegion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getStreamGovernanceRegion.js","sourceRoot":"","sources":["../getStreamGovernanceRegion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0EAA0E,EAAE;QACrG,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8DAWC;AAiCD,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAA2B;IAClH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,yBAAyB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,0EAEC"}
|
|
@@ -4,6 +4,8 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
|
|
6
6
|
*
|
|
7
|
+
* !> **WARNING:** `confluentcloud.StreamGovernanceCluster` data source is deprecated and will be removed in the next version. Use `confluentcloud.SchemaRegistryCluster` instead.
|
|
8
|
+
*
|
|
7
9
|
* > **Note:** `confluentcloud.StreamGovernanceCluster` resource is available in **Open Preview** for early adopters. Open Preview features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
8
10
|
* **Open Preview** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Open Preview features. Open Preview features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Open Preview features at any time in Confluent’s sole discretion.
|
|
9
11
|
*
|