@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.
Files changed (73) hide show
  1. package/apiKey.js +22 -22
  2. package/apiKey.js.map +1 -1
  3. package/clusterLink.js +22 -22
  4. package/clusterLink.js.map +1 -1
  5. package/connector.js +22 -22
  6. package/connector.js.map +1 -1
  7. package/environment.js +16 -16
  8. package/environment.js.map +1 -1
  9. package/getKafkaClientQuota.d.ts +1 -1
  10. package/getKsqlCluster.d.ts +7 -5
  11. package/getKsqlCluster.js.map +1 -1
  12. package/getSchemaRegistryCluster.d.ts +96 -0
  13. package/getSchemaRegistryCluster.js +54 -0
  14. package/getSchemaRegistryCluster.js.map +1 -0
  15. package/getSchemaRegistryRegion.d.ts +71 -0
  16. package/getSchemaRegistryRegion.js +46 -0
  17. package/getSchemaRegistryRegion.js.map +1 -0
  18. package/getStreamGovernanceRegion.d.ts +2 -0
  19. package/getStreamGovernanceRegion.js +2 -0
  20. package/getStreamGovernanceRegion.js.map +1 -1
  21. package/getStreatGovernanceCluster.d.ts +2 -0
  22. package/getStreatGovernanceCluster.js +2 -0
  23. package/getStreatGovernanceCluster.js.map +1 -1
  24. package/getUser.d.ts +1 -1
  25. package/getUser.js +1 -1
  26. package/identityPool.js +22 -22
  27. package/identityPool.js.map +1 -1
  28. package/identityProvider.js +22 -22
  29. package/identityProvider.js.map +1 -1
  30. package/index.d.ts +30 -21
  31. package/index.js +13 -2
  32. package/index.js.map +1 -1
  33. package/kafkaAcl.js +22 -22
  34. package/kafkaAcl.js.map +1 -1
  35. package/kafkaClientQuota.d.ts +3 -3
  36. package/kafkaClientQuota.js +22 -22
  37. package/kafkaClientQuota.js.map +1 -1
  38. package/kafkaCluster.d.ts +6 -6
  39. package/kafkaCluster.js +26 -26
  40. package/kafkaCluster.js.map +1 -1
  41. package/kafkaClusterConfig.d.ts +1 -4
  42. package/kafkaClusterConfig.js +23 -26
  43. package/kafkaClusterConfig.js.map +1 -1
  44. package/kafkaMirrorTopic.js +22 -22
  45. package/kafkaMirrorTopic.js.map +1 -1
  46. package/kafkaTopic.js +22 -22
  47. package/kafkaTopic.js.map +1 -1
  48. package/ksqlCluster.d.ts +8 -8
  49. package/ksqlCluster.js +24 -24
  50. package/ksqlCluster.js.map +1 -1
  51. package/network.js +22 -22
  52. package/network.js.map +1 -1
  53. package/package.json +2 -2
  54. package/package.json.dev +2 -2
  55. package/peering.js +22 -22
  56. package/peering.js.map +1 -1
  57. package/privateLinkAccess.js +22 -22
  58. package/privateLinkAccess.js.map +1 -1
  59. package/provider.js +10 -10
  60. package/provider.js.map +1 -1
  61. package/roleBinding.js +22 -22
  62. package/roleBinding.js.map +1 -1
  63. package/schemaRegistryCluster.d.ts +139 -0
  64. package/schemaRegistryCluster.js +106 -0
  65. package/schemaRegistryCluster.js.map +1 -0
  66. package/serviceAccount.js +20 -20
  67. package/serviceAccount.js.map +1 -1
  68. package/streamGovernanceCluster.js +22 -22
  69. package/streamGovernanceCluster.js.map +1 -1
  70. package/transitGatewayAttachment.js +22 -22
  71. package/transitGatewayAttachment.js.map +1 -1
  72. package/types/input.d.ts +38 -14
  73. package/types/output.d.ts +24 -0
@@ -40,6 +40,28 @@ const utilities = require("./utilities");
40
40
  * !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
41
41
  */
42
42
  class StreamGovernanceCluster extends pulumi.CustomResource {
43
+ /**
44
+ * Get an existing StreamGovernanceCluster 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 StreamGovernanceCluster(name, state, Object.assign(Object.assign({}, opts), { id: id }));
54
+ }
55
+ /**
56
+ * Returns true if the given object is an instance of StreamGovernanceCluster. 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'] === StreamGovernanceCluster.__pulumiType;
64
+ }
43
65
  constructor(name, argsOrState, opts) {
44
66
  let resourceInputs = {};
45
67
  opts = opts || {};
@@ -77,28 +99,6 @@ class StreamGovernanceCluster extends pulumi.CustomResource {
77
99
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
78
100
  super(StreamGovernanceCluster.__pulumiType, name, resourceInputs, opts);
79
101
  }
80
- /**
81
- * Get an existing StreamGovernanceCluster resource's state with the given name, ID, and optional extra
82
- * properties used to qualify the lookup.
83
- *
84
- * @param name The _unique_ name of the resulting resource.
85
- * @param id The _unique_ provider ID of the resource to lookup.
86
- * @param state Any extra arguments used during the lookup.
87
- * @param opts Optional settings to control the behavior of the CustomResource.
88
- */
89
- static get(name, id, state, opts) {
90
- return new StreamGovernanceCluster(name, state, Object.assign(Object.assign({}, opts), { id: id }));
91
- }
92
- /**
93
- * Returns true if the given object is an instance of StreamGovernanceCluster. This is designed to work even
94
- * when multiple copies of the Pulumi SDK have been loaded into the same process.
95
- */
96
- static isInstance(obj) {
97
- if (obj === undefined || obj === null) {
98
- return false;
99
- }
100
- return obj['__pulumiType'] === StreamGovernanceCluster.__pulumiType;
101
- }
102
102
  }
103
103
  exports.StreamGovernanceCluster = StreamGovernanceCluster;
104
104
  /** @internal */
@@ -1 +1 @@
1
- {"version":3,"file":"streamGovernanceCluster.js","sourceRoot":"","sources":["../streamGovernanceCluster.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"streamGovernanceCluster.js","sourceRoot":"","sources":["../streamGovernanceCluster.ts"],"names":[],"mappings":"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"}
@@ -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 TransitGatewayAttachment extends pulumi.CustomResource {
20
+ /**
21
+ * Get an existing TransitGatewayAttachment 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 TransitGatewayAttachment(name, state, Object.assign(Object.assign({}, opts), { id: id }));
31
+ }
32
+ /**
33
+ * Returns true if the given object is an instance of TransitGatewayAttachment. 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'] === TransitGatewayAttachment.__pulumiType;
41
+ }
20
42
  constructor(name, argsOrState, opts) {
21
43
  let resourceInputs = {};
22
44
  opts = opts || {};
@@ -43,28 +65,6 @@ class TransitGatewayAttachment extends pulumi.CustomResource {
43
65
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
44
66
  super(TransitGatewayAttachment.__pulumiType, name, resourceInputs, opts);
45
67
  }
46
- /**
47
- * Get an existing TransitGatewayAttachment 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 TransitGatewayAttachment(name, state, Object.assign(Object.assign({}, opts), { id: id }));
57
- }
58
- /**
59
- * Returns true if the given object is an instance of TransitGatewayAttachment. 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'] === TransitGatewayAttachment.__pulumiType;
67
- }
68
68
  }
69
69
  exports.TransitGatewayAttachment = TransitGatewayAttachment;
70
70
  /** @internal */
@@ -1 +1 @@
1
- {"version":3,"file":"transitGatewayAttachment.js","sourceRoot":"","sources":["../transitGatewayAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAsD/D,YAAY,IAAY,EAAE,WAA0E,EAAE,IAAmC;QACrI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwD,CAAC;YACvE,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAAuD,CAAC;YACrE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,wBAAwB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7E,CAAC;IA7ED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,OAAO,IAAI,wBAAwB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/E,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,wBAAwB,CAAC,YAAY,CAAC;IACzE,CAAC;;AA1BL,4DA+EC;AAjEG,gBAAgB;AACO,qCAAY,GAAG,wEAAwE,CAAC"}
1
+ {"version":3,"file":"transitGatewayAttachment.js","sourceRoot":"","sources":["../transitGatewayAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAC/D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,OAAO,IAAI,wBAAwB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/E,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,wBAAwB,CAAC,YAAY,CAAC;IACzE,CAAC;IA4BD,YAAY,IAAY,EAAE,WAA0E,EAAE,IAAmC;QACrI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwD,CAAC;YACvE,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAAuD,CAAC;YACrE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,wBAAwB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7E,CAAC;;AA9EL,4DA+EC;AAjEG,gBAAgB;AACO,qCAAY,GAAG,wEAAwE,CAAC"}
package/types/input.d.ts CHANGED
@@ -109,10 +109,10 @@ export interface GetIdentityPoolIdentityProvider {
109
109
  */
110
110
  id: string;
111
111
  }
112
- export interface GetKafkaClusterBasic {
113
- }
114
112
  export interface GetKafkaClusterBasicArgs {
115
113
  }
114
+ export interface GetKafkaClusterBasic {
115
+ }
116
116
  export interface GetKafkaClusterDedicated {
117
117
  /**
118
118
  * (Required Number) The number of Confluent Kafka Units (CKUs) for Dedicated cluster types. The minimum number of CKUs for `SINGLE_ZONE` dedicated clusters is `1` whereas `MULTI_ZONE` dedicated clusters must have more than `2` CKUs.
@@ -169,17 +169,17 @@ export interface GetKafkaTopicCredentials {
169
169
  */
170
170
  secret: string;
171
171
  }
172
- export interface GetKafkaTopicKafkaClusterArgs {
172
+ export interface GetKafkaTopicKafkaCluster {
173
173
  /**
174
174
  * The ID of the Kafka cluster, for example, `lkc-abc123`.
175
175
  */
176
- id: pulumi.Input<string>;
176
+ id: string;
177
177
  }
178
- export interface GetKafkaTopicKafkaCluster {
178
+ export interface GetKafkaTopicKafkaClusterArgs {
179
179
  /**
180
180
  * The ID of the Kafka cluster, for example, `lkc-abc123`.
181
181
  */
182
- id: string;
182
+ id: pulumi.Input<string>;
183
183
  }
184
184
  export interface GetKsqlClusterEnvironment {
185
185
  /**
@@ -221,14 +221,6 @@ export interface GetNetworkAwArgs {
221
221
  */
222
222
  vpc?: pulumi.Input<string>;
223
223
  }
224
- export interface GetNetworkAzureArgs {
225
- /**
226
- * (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zones and values are [Azure Private Link Service Aliases](https://docs.microsoft.com/en-us/azure/private-link/private-link-service-overview#share-your-service).
227
- */
228
- privateLinkServiceAliases?: pulumi.Input<{
229
- [key: string]: pulumi.Input<string>;
230
- }>;
231
- }
232
224
  export interface GetNetworkAzure {
233
225
  /**
234
226
  * (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zones and values are [Azure Private Link Service Aliases](https://docs.microsoft.com/en-us/azure/private-link/private-link-service-overview#share-your-service).
@@ -237,6 +229,14 @@ export interface GetNetworkAzure {
237
229
  [key: string]: string;
238
230
  };
239
231
  }
232
+ export interface GetNetworkAzureArgs {
233
+ /**
234
+ * (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zones and values are [Azure Private Link Service Aliases](https://docs.microsoft.com/en-us/azure/private-link/private-link-service-overview#share-your-service).
235
+ */
236
+ privateLinkServiceAliases?: pulumi.Input<{
237
+ [key: string]: pulumi.Input<string>;
238
+ }>;
239
+ }
240
240
  export interface GetNetworkEnvironment {
241
241
  /**
242
242
  * The ID of the Environment that the Network belongs to, for example, `env-xyz456`.
@@ -305,6 +305,18 @@ export interface GetPrivateLinkAccessEnvironmentArgs {
305
305
  */
306
306
  id: pulumi.Input<string>;
307
307
  }
308
+ export interface GetSchemaRegistryClusterEnvironmentArgs {
309
+ /**
310
+ * The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
311
+ */
312
+ id: pulumi.Input<string>;
313
+ }
314
+ export interface GetSchemaRegistryClusterEnvironment {
315
+ /**
316
+ * The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
317
+ */
318
+ id: string;
319
+ }
308
320
  export interface GetStreatGovernanceClusterEnvironment {
309
321
  /**
310
322
  * The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
@@ -614,6 +626,18 @@ export interface PrivateLinkAccessNetwork {
614
626
  */
615
627
  id: pulumi.Input<string>;
616
628
  }
629
+ export interface SchemaRegistryClusterEnvironment {
630
+ /**
631
+ * The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example, `sgreg-1`. See [Schema Registry Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
632
+ */
633
+ id: pulumi.Input<string>;
634
+ }
635
+ export interface SchemaRegistryClusterRegion {
636
+ /**
637
+ * The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example, `sgreg-1`. See [Schema Registry Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
638
+ */
639
+ id: pulumi.Input<string>;
640
+ }
617
641
  export interface StreamGovernanceClusterEnvironment {
618
642
  /**
619
643
  * The ID of the Stream Governance region that the Stream Governance cluster belongs to, for example, `sgreg-1`. See [Stream Governance Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
package/types/output.d.ts CHANGED
@@ -316,6 +316,18 @@ export interface GetPrivateLinkAccessNetwork {
316
316
  */
317
317
  id: string;
318
318
  }
319
+ export interface GetSchemaRegistryClusterEnvironment {
320
+ /**
321
+ * The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
322
+ */
323
+ id: string;
324
+ }
325
+ export interface GetSchemaRegistryClusterRegion {
326
+ /**
327
+ * The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
328
+ */
329
+ id: string;
330
+ }
319
331
  export interface GetStreatGovernanceClusterEnvironment {
320
332
  /**
321
333
  * The ID of the Environment that the Stream Governance cluster belongs to, for example, `env-xyz456`.
@@ -647,6 +659,18 @@ export interface PrivateLinkAccessNetwork {
647
659
  */
648
660
  id: string;
649
661
  }
662
+ export interface SchemaRegistryClusterEnvironment {
663
+ /**
664
+ * The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example, `sgreg-1`. See [Schema Registry Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
665
+ */
666
+ id: string;
667
+ }
668
+ export interface SchemaRegistryClusterRegion {
669
+ /**
670
+ * The ID of the Schema Registry region that the Schema Registry cluster belongs to, for example, `sgreg-1`. See [Schema Registry Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.
671
+ */
672
+ id: string;
673
+ }
650
674
  export interface StreamGovernanceClusterEnvironment {
651
675
  /**
652
676
  * The ID of the Stream Governance region that the Stream Governance cluster belongs to, for example, `sgreg-1`. See [Stream Governance Regions](https://docs.confluent.io/cloud/current/stream-governance/packages.html#stream-governance-regions) to find a corresponding region ID based on desired cloud provider region and types of the billing package.