@pulumi/confluentcloud 1.42.0-alpha.1713461132 → 1.42.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.
|
@@ -14,6 +14,12 @@ import * as outputs from "./types/output";
|
|
|
14
14
|
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
15
15
|
*
|
|
16
16
|
* export = async () => {
|
|
17
|
+
* // Loads the only Schema Registry cluster in the target environment
|
|
18
|
+
* const exampleUsingEnvId = await confluentcloud.getSchemaRegistryCluster({
|
|
19
|
+
* environment: {
|
|
20
|
+
* id: "env-xyz456",
|
|
21
|
+
* },
|
|
22
|
+
* });
|
|
17
23
|
* const exampleUsingId = await confluentcloud.getSchemaRegistryCluster({
|
|
18
24
|
* id: "lsrc-abc123",
|
|
19
25
|
* environment: {
|
|
@@ -27,6 +33,7 @@ import * as outputs from "./types/output";
|
|
|
27
33
|
* },
|
|
28
34
|
* });
|
|
29
35
|
* return {
|
|
36
|
+
* exampleUsingEnvId: exampleUsingEnvId,
|
|
30
37
|
* exampleUsingId: exampleUsingId,
|
|
31
38
|
* exampleUsingName: exampleUsingName,
|
|
32
39
|
* };
|
|
@@ -46,8 +53,6 @@ export interface GetSchemaRegistryClusterArgs {
|
|
|
46
53
|
environment: inputs.GetSchemaRegistryClusterEnvironment;
|
|
47
54
|
/**
|
|
48
55
|
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
49
|
-
*
|
|
50
|
-
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
51
56
|
*/
|
|
52
57
|
id?: string;
|
|
53
58
|
}
|
|
@@ -102,6 +107,12 @@ export interface GetSchemaRegistryClusterResult {
|
|
|
102
107
|
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
103
108
|
*
|
|
104
109
|
* export = async () => {
|
|
110
|
+
* // Loads the only Schema Registry cluster in the target environment
|
|
111
|
+
* const exampleUsingEnvId = await confluentcloud.getSchemaRegistryCluster({
|
|
112
|
+
* environment: {
|
|
113
|
+
* id: "env-xyz456",
|
|
114
|
+
* },
|
|
115
|
+
* });
|
|
105
116
|
* const exampleUsingId = await confluentcloud.getSchemaRegistryCluster({
|
|
106
117
|
* id: "lsrc-abc123",
|
|
107
118
|
* environment: {
|
|
@@ -115,6 +126,7 @@ export interface GetSchemaRegistryClusterResult {
|
|
|
115
126
|
* },
|
|
116
127
|
* });
|
|
117
128
|
* return {
|
|
129
|
+
* exampleUsingEnvId: exampleUsingEnvId,
|
|
118
130
|
* exampleUsingId: exampleUsingId,
|
|
119
131
|
* exampleUsingName: exampleUsingName,
|
|
120
132
|
* };
|
|
@@ -134,8 +146,6 @@ export interface GetSchemaRegistryClusterOutputArgs {
|
|
|
134
146
|
environment: pulumi.Input<inputs.GetSchemaRegistryClusterEnvironmentArgs>;
|
|
135
147
|
/**
|
|
136
148
|
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
137
|
-
*
|
|
138
|
-
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
139
149
|
*/
|
|
140
150
|
id?: pulumi.Input<string>;
|
|
141
151
|
}
|
|
@@ -18,6 +18,12 @@ const utilities = require("./utilities");
|
|
|
18
18
|
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
19
19
|
*
|
|
20
20
|
* export = async () => {
|
|
21
|
+
* // Loads the only Schema Registry cluster in the target environment
|
|
22
|
+
* const exampleUsingEnvId = await confluentcloud.getSchemaRegistryCluster({
|
|
23
|
+
* environment: {
|
|
24
|
+
* id: "env-xyz456",
|
|
25
|
+
* },
|
|
26
|
+
* });
|
|
21
27
|
* const exampleUsingId = await confluentcloud.getSchemaRegistryCluster({
|
|
22
28
|
* id: "lsrc-abc123",
|
|
23
29
|
* environment: {
|
|
@@ -31,6 +37,7 @@ const utilities = require("./utilities");
|
|
|
31
37
|
* },
|
|
32
38
|
* });
|
|
33
39
|
* return {
|
|
40
|
+
* exampleUsingEnvId: exampleUsingEnvId,
|
|
34
41
|
* exampleUsingId: exampleUsingId,
|
|
35
42
|
* exampleUsingName: exampleUsingName,
|
|
36
43
|
* };
|
|
@@ -60,6 +67,12 @@ exports.getSchemaRegistryCluster = getSchemaRegistryCluster;
|
|
|
60
67
|
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
61
68
|
*
|
|
62
69
|
* export = async () => {
|
|
70
|
+
* // Loads the only Schema Registry cluster in the target environment
|
|
71
|
+
* const exampleUsingEnvId = await confluentcloud.getSchemaRegistryCluster({
|
|
72
|
+
* environment: {
|
|
73
|
+
* id: "env-xyz456",
|
|
74
|
+
* },
|
|
75
|
+
* });
|
|
63
76
|
* const exampleUsingId = await confluentcloud.getSchemaRegistryCluster({
|
|
64
77
|
* id: "lsrc-abc123",
|
|
65
78
|
* environment: {
|
|
@@ -73,6 +86,7 @@ exports.getSchemaRegistryCluster = getSchemaRegistryCluster;
|
|
|
73
86
|
* },
|
|
74
87
|
* });
|
|
75
88
|
* return {
|
|
89
|
+
* exampleUsingEnvId: exampleUsingEnvId,
|
|
76
90
|
* exampleUsingId: exampleUsingId,
|
|
77
91
|
* exampleUsingName: exampleUsingName,
|
|
78
92
|
* };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSchemaRegistryCluster.js","sourceRoot":"","sources":["../getSchemaRegistryCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getSchemaRegistryCluster.js","sourceRoot":"","sources":["../getSchemaRegistryCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IAEpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,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;AARD,4DAQC;AAuDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,wBAAwB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnF,CAAC;AAFD,wEAEC"}
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -985,16 +985,12 @@ export interface GetSchemaRegistryClusterConfigSchemaRegistryClusterArgs {
|
|
|
985
985
|
export interface GetSchemaRegistryClusterEnvironment {
|
|
986
986
|
/**
|
|
987
987
|
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
988
|
-
*
|
|
989
|
-
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
990
988
|
*/
|
|
991
989
|
id: string;
|
|
992
990
|
}
|
|
993
991
|
export interface GetSchemaRegistryClusterEnvironmentArgs {
|
|
994
992
|
/**
|
|
995
993
|
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
996
|
-
*
|
|
997
|
-
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
998
994
|
*/
|
|
999
995
|
id: pulumi.Input<string>;
|
|
1000
996
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -1063,8 +1063,6 @@ export interface GetSchemaRegistryClusterConfigSchemaRegistryCluster {
|
|
|
1063
1063
|
export interface GetSchemaRegistryClusterEnvironment {
|
|
1064
1064
|
/**
|
|
1065
1065
|
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
1066
|
-
*
|
|
1067
|
-
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
1068
1066
|
*/
|
|
1069
1067
|
id: string;
|
|
1070
1068
|
}
|
|
@@ -1089,8 +1087,6 @@ export interface GetSchemaRegistryClusterModeSchemaRegistryCluster {
|
|
|
1089
1087
|
export interface GetSchemaRegistryClusterRegion {
|
|
1090
1088
|
/**
|
|
1091
1089
|
* The ID of the Environment that the Schema Registry cluster belongs to, for example, `env-xyz456`.
|
|
1092
|
-
*
|
|
1093
|
-
* > **Note:** Exactly one from the `id` and `displayName` attributes must be specified.
|
|
1094
1090
|
*/
|
|
1095
1091
|
id: string;
|
|
1096
1092
|
}
|