@pulumi/confluentcloud 2.56.0-alpha.1770097527 → 2.56.0-alpha.1770177625

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/accessPoint.d.ts CHANGED
@@ -14,7 +14,7 @@ import * as outputs from "./types/output";
14
14
  *
15
15
  * const development = new confluentcloud.Environment("development", {displayName: "Development"});
16
16
  * const aws = new confluentcloud.AccessPoint("aws", {
17
- * displayName: "access_point",
17
+ * displayName: "access_point_egress",
18
18
  * environment: {
19
19
  * id: development.id,
20
20
  * },
@@ -26,7 +26,7 @@ import * as outputs from "./types/output";
26
26
  * },
27
27
  * });
28
28
  * const azure = new confluentcloud.AccessPoint("azure", {
29
- * displayName: "access_point",
29
+ * displayName: "access_point_egress",
30
30
  * environment: {
31
31
  * id: development.id,
32
32
  * },
@@ -51,7 +51,7 @@ import * as outputs from "./types/output";
51
51
  * },
52
52
  * });
53
53
  * const pni = new confluentcloud.AccessPoint("pni", {
54
- * displayName: "access_point",
54
+ * displayName: "access_point_egress",
55
55
  * environment: {
56
56
  * id: development.id,
57
57
  * },
@@ -65,6 +65,18 @@ import * as outputs from "./types/output";
65
65
  * }, {
66
66
  * dependsOn: [mainAwsNetworkInterfacePermission],
67
67
  * });
68
+ * const awsIngress = new confluentcloud.AccessPoint("aws_ingress", {
69
+ * displayName: "access_point_ingress",
70
+ * environment: {
71
+ * id: development.id,
72
+ * },
73
+ * gateway: {
74
+ * id: ingress.id,
75
+ * },
76
+ * awsIngressPrivateLinkEndpoint: {
77
+ * vpcEndpointId: "vpce-00000000000000000",
78
+ * },
79
+ * });
68
80
  * ```
69
81
  *
70
82
  * ## Getting Started
@@ -107,6 +119,10 @@ export declare class AccessPoint extends pulumi.CustomResource {
107
119
  * (Optional Configuration Block) supports the following:
108
120
  */
109
121
  readonly awsEgressPrivateLinkEndpoint: pulumi.Output<outputs.AccessPointAwsEgressPrivateLinkEndpoint | undefined>;
122
+ /**
123
+ * (Optional Configuration Block) supports the following:
124
+ */
125
+ readonly awsIngressPrivateLinkEndpoint: pulumi.Output<outputs.AccessPointAwsIngressPrivateLinkEndpoint | undefined>;
110
126
  /**
111
127
  * (Optional Configuration Block) supports the following:
112
128
  */
@@ -145,6 +161,10 @@ export interface AccessPointState {
145
161
  * (Optional Configuration Block) supports the following:
146
162
  */
147
163
  awsEgressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAwsEgressPrivateLinkEndpoint>;
164
+ /**
165
+ * (Optional Configuration Block) supports the following:
166
+ */
167
+ awsIngressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAwsIngressPrivateLinkEndpoint>;
148
168
  /**
149
169
  * (Optional Configuration Block) supports the following:
150
170
  */
@@ -175,6 +195,10 @@ export interface AccessPointArgs {
175
195
  * (Optional Configuration Block) supports the following:
176
196
  */
177
197
  awsEgressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAwsEgressPrivateLinkEndpoint>;
198
+ /**
199
+ * (Optional Configuration Block) supports the following:
200
+ */
201
+ awsIngressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAwsIngressPrivateLinkEndpoint>;
178
202
  /**
179
203
  * (Optional Configuration Block) supports the following:
180
204
  */
package/accessPoint.js CHANGED
@@ -18,7 +18,7 @@ const utilities = require("./utilities");
18
18
  *
19
19
  * const development = new confluentcloud.Environment("development", {displayName: "Development"});
20
20
  * const aws = new confluentcloud.AccessPoint("aws", {
21
- * displayName: "access_point",
21
+ * displayName: "access_point_egress",
22
22
  * environment: {
23
23
  * id: development.id,
24
24
  * },
@@ -30,7 +30,7 @@ const utilities = require("./utilities");
30
30
  * },
31
31
  * });
32
32
  * const azure = new confluentcloud.AccessPoint("azure", {
33
- * displayName: "access_point",
33
+ * displayName: "access_point_egress",
34
34
  * environment: {
35
35
  * id: development.id,
36
36
  * },
@@ -55,7 +55,7 @@ const utilities = require("./utilities");
55
55
  * },
56
56
  * });
57
57
  * const pni = new confluentcloud.AccessPoint("pni", {
58
- * displayName: "access_point",
58
+ * displayName: "access_point_egress",
59
59
  * environment: {
60
60
  * id: development.id,
61
61
  * },
@@ -69,6 +69,18 @@ const utilities = require("./utilities");
69
69
  * }, {
70
70
  * dependsOn: [mainAwsNetworkInterfacePermission],
71
71
  * });
72
+ * const awsIngress = new confluentcloud.AccessPoint("aws_ingress", {
73
+ * displayName: "access_point_ingress",
74
+ * environment: {
75
+ * id: development.id,
76
+ * },
77
+ * gateway: {
78
+ * id: ingress.id,
79
+ * },
80
+ * awsIngressPrivateLinkEndpoint: {
81
+ * vpcEndpointId: "vpce-00000000000000000",
82
+ * },
83
+ * });
72
84
  * ```
73
85
  *
74
86
  * ## Getting Started
@@ -120,6 +132,7 @@ class AccessPoint extends pulumi.CustomResource {
120
132
  if (opts.id) {
121
133
  const state = argsOrState;
122
134
  resourceInputs["awsEgressPrivateLinkEndpoint"] = state?.awsEgressPrivateLinkEndpoint;
135
+ resourceInputs["awsIngressPrivateLinkEndpoint"] = state?.awsIngressPrivateLinkEndpoint;
123
136
  resourceInputs["awsPrivateNetworkInterface"] = state?.awsPrivateNetworkInterface;
124
137
  resourceInputs["azureEgressPrivateLinkEndpoint"] = state?.azureEgressPrivateLinkEndpoint;
125
138
  resourceInputs["displayName"] = state?.displayName;
@@ -136,6 +149,7 @@ class AccessPoint extends pulumi.CustomResource {
136
149
  throw new Error("Missing required property 'gateway'");
137
150
  }
138
151
  resourceInputs["awsEgressPrivateLinkEndpoint"] = args?.awsEgressPrivateLinkEndpoint;
152
+ resourceInputs["awsIngressPrivateLinkEndpoint"] = args?.awsIngressPrivateLinkEndpoint;
139
153
  resourceInputs["awsPrivateNetworkInterface"] = args?.awsPrivateNetworkInterface;
140
154
  resourceInputs["azureEgressPrivateLinkEndpoint"] = args?.azureEgressPrivateLinkEndpoint;
141
155
  resourceInputs["displayName"] = args?.displayName;
@@ -1 +1 @@
1
- {"version":3,"file":"accessPoint.js","sourceRoot":"","sources":["../accessPoint.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqFG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;IAoCD,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,8BAA8B,CAAC,GAAG,KAAK,EAAE,4BAA4B,CAAC;YACrF,cAAc,CAAC,4BAA4B,CAAC,GAAG,KAAK,EAAE,0BAA0B,CAAC;YACjF,cAAc,CAAC,gCAAgC,CAAC,GAAG,KAAK,EAAE,8BAA8B,CAAC;YACzF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,wCAAwC,CAAC,GAAG,KAAK,EAAE,sCAAsC,CAAC;SAC5G;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,IAAI,EAAE,OAAO,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1C,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,8BAA8B,CAAC,GAAG,IAAI,EAAE,4BAA4B,CAAC;YACpF,cAAc,CAAC,4BAA4B,CAAC,GAAG,IAAI,EAAE,0BAA0B,CAAC;YAChF,cAAc,CAAC,gCAAgC,CAAC,GAAG,IAAI,EAAE,8BAA8B,CAAC;YACxF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,wCAAwC,CAAC,GAAG,IAAI,EAAE,sCAAsC,CAAC;SAC3G;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;;AA5FL,kCA6FC;AA/EG,gBAAgB;AACO,wBAAY,GAAG,8CAA8C,CAAC"}
1
+ {"version":3,"file":"accessPoint.js","sourceRoot":"","sources":["../accessPoint.ts"],"names":[],"mappings":"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"}
package/gateway.d.ts CHANGED
@@ -14,7 +14,7 @@ import * as outputs from "./types/output";
14
14
  *
15
15
  * const development = new confluentcloud.Environment("development", {displayName: "Development"});
16
16
  * const main = new confluentcloud.Gateway("main", {
17
- * displayName: "my_gateway",
17
+ * displayName: "my_egress_gateway",
18
18
  * environment: {
19
19
  * id: development.id,
20
20
  * },
@@ -64,6 +64,10 @@ export declare class Gateway extends pulumi.CustomResource {
64
64
  * (Optional Configuration Block) supports the following:
65
65
  */
66
66
  readonly awsEgressPrivateLinkGateway: pulumi.Output<outputs.GatewayAwsEgressPrivateLinkGateway>;
67
+ /**
68
+ * (Optional Configuration Block) supports the following:
69
+ */
70
+ readonly awsIngressPrivateLinkGateway: pulumi.Output<outputs.GatewayAwsIngressPrivateLinkGateway>;
67
71
  /**
68
72
  * (Optional Configuration Block) supports the following:
69
73
  */
@@ -97,6 +101,10 @@ export interface GatewayState {
97
101
  * (Optional Configuration Block) supports the following:
98
102
  */
99
103
  awsEgressPrivateLinkGateway?: pulumi.Input<inputs.GatewayAwsEgressPrivateLinkGateway>;
104
+ /**
105
+ * (Optional Configuration Block) supports the following:
106
+ */
107
+ awsIngressPrivateLinkGateway?: pulumi.Input<inputs.GatewayAwsIngressPrivateLinkGateway>;
100
108
  /**
101
109
  * (Optional Configuration Block) supports the following:
102
110
  */
@@ -122,6 +130,10 @@ export interface GatewayArgs {
122
130
  * (Optional Configuration Block) supports the following:
123
131
  */
124
132
  awsEgressPrivateLinkGateway?: pulumi.Input<inputs.GatewayAwsEgressPrivateLinkGateway>;
133
+ /**
134
+ * (Optional Configuration Block) supports the following:
135
+ */
136
+ awsIngressPrivateLinkGateway?: pulumi.Input<inputs.GatewayAwsIngressPrivateLinkGateway>;
125
137
  /**
126
138
  * (Optional Configuration Block) supports the following:
127
139
  */
package/gateway.js CHANGED
@@ -18,7 +18,7 @@ const utilities = require("./utilities");
18
18
  *
19
19
  * const development = new confluentcloud.Environment("development", {displayName: "Development"});
20
20
  * const main = new confluentcloud.Gateway("main", {
21
- * displayName: "my_gateway",
21
+ * displayName: "my_egress_gateway",
22
22
  * environment: {
23
23
  * id: development.id,
24
24
  * },
@@ -77,6 +77,7 @@ class Gateway extends pulumi.CustomResource {
77
77
  if (opts.id) {
78
78
  const state = argsOrState;
79
79
  resourceInputs["awsEgressPrivateLinkGateway"] = state?.awsEgressPrivateLinkGateway;
80
+ resourceInputs["awsIngressPrivateLinkGateway"] = state?.awsIngressPrivateLinkGateway;
80
81
  resourceInputs["awsPrivateNetworkInterfaceGateway"] = state?.awsPrivateNetworkInterfaceGateway;
81
82
  resourceInputs["azureEgressPrivateLinkGateway"] = state?.azureEgressPrivateLinkGateway;
82
83
  resourceInputs["displayName"] = state?.displayName;
@@ -91,6 +92,7 @@ class Gateway extends pulumi.CustomResource {
91
92
  throw new Error("Missing required property 'environment'");
92
93
  }
93
94
  resourceInputs["awsEgressPrivateLinkGateway"] = args?.awsEgressPrivateLinkGateway;
95
+ resourceInputs["awsIngressPrivateLinkGateway"] = args?.awsIngressPrivateLinkGateway;
94
96
  resourceInputs["awsPrivateNetworkInterfaceGateway"] = args?.awsPrivateNetworkInterfaceGateway;
95
97
  resourceInputs["azureEgressPrivateLinkGateway"] = args?.azureEgressPrivateLinkGateway;
96
98
  resourceInputs["displayName"] = args?.displayName;
package/gateway.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"gateway.js","sourceRoot":"","sources":["../gateway.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAwC,EAAE,IAAmC;QACnG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuC,CAAC;YACtD,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,EAAE,2BAA2B,CAAC;YACnF,cAAc,CAAC,mCAAmC,CAAC,GAAG,KAAK,EAAE,iCAAiC,CAAC;YAC/F,cAAc,CAAC,+BAA+B,CAAC,GAAG,KAAK,EAAE,6BAA6B,CAAC;YACvF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;SACtD;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,EAAE,2BAA2B,CAAC;YAClF,cAAc,CAAC,mCAAmC,CAAC,GAAG,IAAI,EAAE,iCAAiC,CAAC;YAC9F,cAAc,CAAC,+BAA+B,CAAC,GAAG,IAAI,EAAE,6BAA6B,CAAC;YACtF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;SACrD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;;AAnFL,0BAoFC;AAtEG,gBAAgB;AACO,oBAAY,GAAG,sCAAsC,CAAC"}
1
+ {"version":3,"file":"gateway.js","sourceRoot":"","sources":["../gateway.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAwC,EAAE,IAAmC;QACnG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuC,CAAC;YACtD,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,EAAE,2BAA2B,CAAC;YACnF,cAAc,CAAC,8BAA8B,CAAC,GAAG,KAAK,EAAE,4BAA4B,CAAC;YACrF,cAAc,CAAC,mCAAmC,CAAC,GAAG,KAAK,EAAE,iCAAiC,CAAC;YAC/F,cAAc,CAAC,+BAA+B,CAAC,GAAG,KAAK,EAAE,6BAA6B,CAAC;YACvF,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;SACtD;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,EAAE,2BAA2B,CAAC;YAClF,cAAc,CAAC,8BAA8B,CAAC,GAAG,IAAI,EAAE,4BAA4B,CAAC;YACpF,cAAc,CAAC,mCAAmC,CAAC,GAAG,IAAI,EAAE,iCAAiC,CAAC;YAC9F,cAAc,CAAC,+BAA+B,CAAC,GAAG,IAAI,EAAE,6BAA6B,CAAC;YACtF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;SACrD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;;AAzFL,0BA0FC;AA5EG,gBAAgB;AACO,oBAAY,GAAG,sCAAsC,CAAC"}
@@ -44,6 +44,10 @@ export interface GetAccessPointResult {
44
44
  * (Optional Configuration Block) supports the following:
45
45
  */
46
46
  readonly awsEgressPrivateLinkEndpoints: outputs.GetAccessPointAwsEgressPrivateLinkEndpoint[];
47
+ /**
48
+ * (Optional Configuration Block) supports the following:
49
+ */
50
+ readonly awsIngressPrivateLinkEndpoints: outputs.GetAccessPointAwsIngressPrivateLinkEndpoint[];
47
51
  /**
48
52
  * (Optional Configuration Block) Supports the following:
49
53
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getAccessPoint.js","sourceRoot":"","sources":["../getAccessPoint.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yCAAyC,EAAE,IAAI,CAAC,uCAAuC;QACvF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AAmDD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oDAAoD,EAAE;QACrF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yCAAyC,EAAE,IAAI,CAAC,uCAAuC;QACvF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC"}
1
+ {"version":3,"file":"getAccessPoint.js","sourceRoot":"","sources":["../getAccessPoint.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yCAAyC,EAAE,IAAI,CAAC,uCAAuC;QACvF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AAuDD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oDAAoD,EAAE;QACrF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yCAAyC,EAAE,IAAI,CAAC,uCAAuC;QACvF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC"}
@@ -0,0 +1,85 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
6
+ *
7
+ * `confluentcloud.getEndpoint` describes an Endpoint data source.
8
+ *
9
+ * An Endpoint object represents a Fully Qualified Domain Name (FQDN) for a Confluent service resource via a specific networking solution for a given Confluent Cloud environment. Endpoints can be filtered by service, cloud provider, region, etc.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as confluentcloud from "@pulumi/confluentcloud";
16
+ *
17
+ * const main = confluentcloud.getEndpoint({
18
+ * filter: {
19
+ * environment: {
20
+ * id: "env-123abc",
21
+ * },
22
+ * service: "KAFKA",
23
+ * resource: "lkc-abc123",
24
+ * cloud: "AWS",
25
+ * region: "us-west-2",
26
+ * },
27
+ * });
28
+ * export const endpoints = main.then(main => main.endpoints);
29
+ * ```
30
+ */
31
+ export declare function getEndpoint(args: GetEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetEndpointResult>;
32
+ /**
33
+ * A collection of arguments for invoking getEndpoint.
34
+ */
35
+ export interface GetEndpointArgs {
36
+ filter: inputs.GetEndpointFilter;
37
+ }
38
+ /**
39
+ * A collection of values returned by getEndpoint.
40
+ */
41
+ export interface GetEndpointResult {
42
+ /**
43
+ * (Computed List) List of endpoints matching the filter criteria. Each endpoint object contains:
44
+ */
45
+ readonly endpoints: outputs.GetEndpointEndpoint[];
46
+ readonly filter: outputs.GetEndpointFilter;
47
+ /**
48
+ * The provider-assigned unique ID for this managed resource.
49
+ */
50
+ readonly id: string;
51
+ }
52
+ /**
53
+ * [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
54
+ *
55
+ * `confluentcloud.getEndpoint` describes an Endpoint data source.
56
+ *
57
+ * An Endpoint object represents a Fully Qualified Domain Name (FQDN) for a Confluent service resource via a specific networking solution for a given Confluent Cloud environment. Endpoints can be filtered by service, cloud provider, region, etc.
58
+ *
59
+ * ## Example Usage
60
+ *
61
+ * ```typescript
62
+ * import * as pulumi from "@pulumi/pulumi";
63
+ * import * as confluentcloud from "@pulumi/confluentcloud";
64
+ *
65
+ * const main = confluentcloud.getEndpoint({
66
+ * filter: {
67
+ * environment: {
68
+ * id: "env-123abc",
69
+ * },
70
+ * service: "KAFKA",
71
+ * resource: "lkc-abc123",
72
+ * cloud: "AWS",
73
+ * region: "us-west-2",
74
+ * },
75
+ * });
76
+ * export const endpoints = main.then(main => main.endpoints);
77
+ * ```
78
+ */
79
+ export declare function getEndpointOutput(args: GetEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEndpointResult>;
80
+ /**
81
+ * A collection of arguments for invoking getEndpoint.
82
+ */
83
+ export interface GetEndpointOutputArgs {
84
+ filter: pulumi.Input<inputs.GetEndpointFilterArgs>;
85
+ }
package/getEndpoint.js ADDED
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.getEndpointOutput = exports.getEndpoint = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
10
+ *
11
+ * `confluentcloud.getEndpoint` describes an Endpoint data source.
12
+ *
13
+ * An Endpoint object represents a Fully Qualified Domain Name (FQDN) for a Confluent service resource via a specific networking solution for a given Confluent Cloud environment. Endpoints can be filtered by service, cloud provider, region, etc.
14
+ *
15
+ * ## Example Usage
16
+ *
17
+ * ```typescript
18
+ * import * as pulumi from "@pulumi/pulumi";
19
+ * import * as confluentcloud from "@pulumi/confluentcloud";
20
+ *
21
+ * const main = confluentcloud.getEndpoint({
22
+ * filter: {
23
+ * environment: {
24
+ * id: "env-123abc",
25
+ * },
26
+ * service: "KAFKA",
27
+ * resource: "lkc-abc123",
28
+ * cloud: "AWS",
29
+ * region: "us-west-2",
30
+ * },
31
+ * });
32
+ * export const endpoints = main.then(main => main.endpoints);
33
+ * ```
34
+ */
35
+ function getEndpoint(args, opts) {
36
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
37
+ return pulumi.runtime.invoke("confluentcloud:index/getEndpoint:getEndpoint", {
38
+ "filter": args.filter,
39
+ }, opts);
40
+ }
41
+ exports.getEndpoint = getEndpoint;
42
+ /**
43
+ * [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
44
+ *
45
+ * `confluentcloud.getEndpoint` describes an Endpoint data source.
46
+ *
47
+ * An Endpoint object represents a Fully Qualified Domain Name (FQDN) for a Confluent service resource via a specific networking solution for a given Confluent Cloud environment. Endpoints can be filtered by service, cloud provider, region, etc.
48
+ *
49
+ * ## Example Usage
50
+ *
51
+ * ```typescript
52
+ * import * as pulumi from "@pulumi/pulumi";
53
+ * import * as confluentcloud from "@pulumi/confluentcloud";
54
+ *
55
+ * const main = confluentcloud.getEndpoint({
56
+ * filter: {
57
+ * environment: {
58
+ * id: "env-123abc",
59
+ * },
60
+ * service: "KAFKA",
61
+ * resource: "lkc-abc123",
62
+ * cloud: "AWS",
63
+ * region: "us-west-2",
64
+ * },
65
+ * });
66
+ * export const endpoints = main.then(main => main.endpoints);
67
+ * ```
68
+ */
69
+ function getEndpointOutput(args, opts) {
70
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
71
+ return pulumi.runtime.invokeOutput("confluentcloud:index/getEndpoint:getEndpoint", {
72
+ "filter": args.filter,
73
+ }, opts);
74
+ }
75
+ exports.getEndpointOutput = getEndpointOutput;
76
+ //# sourceMappingURL=getEndpoint.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getEndpoint.js","sourceRoot":"","sources":["../getEndpoint.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kCAKC;AAuBD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC"}
package/getGateway.d.ts CHANGED
@@ -40,6 +40,10 @@ export interface GetGatewayResult {
40
40
  * (Optional Configuration Block) supports the following:
41
41
  */
42
42
  readonly awsEgressPrivateLinkGateways: outputs.GetGatewayAwsEgressPrivateLinkGateway[];
43
+ /**
44
+ * (Optional Configuration Block) supports the following:
45
+ */
46
+ readonly awsIngressPrivateLinkGateways: outputs.GetGatewayAwsIngressPrivateLinkGateway[];
43
47
  /**
44
48
  * (Optional Configuration Block) supports the following:
45
49
  */
package/getGateway.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getGateway.js","sourceRoot":"","sources":["../getGateway.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AAoDD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAAiC;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4CAMC"}
1
+ {"version":3,"file":"getGateway.js","sourceRoot":"","sources":["../getGateway.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AAwDD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAAiC;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4CAMC"}
@@ -0,0 +1,110 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
6
+ *
7
+ * `confluentcloud.getGateways` describes a Gateways data source that allows you to filter and list multiple Gateways.
8
+ *
9
+ * ## Example Usage
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as confluentcloud from "@pulumi/confluentcloud";
14
+ *
15
+ * const all = confluentcloud.getGateways({
16
+ * environment: {
17
+ * id: "env-123abc",
18
+ * },
19
+ * });
20
+ * const readyIngress = confluentcloud.getGateways({
21
+ * environment: {
22
+ * id: "env-123abc",
23
+ * },
24
+ * filter: {
25
+ * gatewayTypes: ["AwsIngressPrivateLink"],
26
+ * phases: ["READY"],
27
+ * },
28
+ * });
29
+ * const usEast = confluentcloud.getGateways({
30
+ * environment: {
31
+ * id: "env-123abc",
32
+ * },
33
+ * filter: {
34
+ * regions: ["us-east-1"],
35
+ * displayNames: ["prod-gateway-ingress-use1"],
36
+ * },
37
+ * });
38
+ * export const allGateways = all.then(all => all.gateways);
39
+ * export const readyIngressGateways = readyIngress.then(readyIngress => readyIngress.gateways);
40
+ * ```
41
+ */
42
+ export declare function getGateways(args: GetGatewaysArgs, opts?: pulumi.InvokeOptions): Promise<GetGatewaysResult>;
43
+ /**
44
+ * A collection of arguments for invoking getGateways.
45
+ */
46
+ export interface GetGatewaysArgs {
47
+ environment: inputs.GetGatewaysEnvironment;
48
+ filter?: inputs.GetGatewaysFilter;
49
+ }
50
+ /**
51
+ * A collection of values returned by getGateways.
52
+ */
53
+ export interface GetGatewaysResult {
54
+ readonly environment: outputs.GetGatewaysEnvironment;
55
+ readonly filter?: outputs.GetGatewaysFilter;
56
+ /**
57
+ * (List of Object) List of Gateways. Each gateway object exports the following attributes:
58
+ */
59
+ readonly gateways: outputs.GetGatewaysGateway[];
60
+ /**
61
+ * The provider-assigned unique ID for this managed resource.
62
+ */
63
+ readonly id: string;
64
+ }
65
+ /**
66
+ * [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
67
+ *
68
+ * `confluentcloud.getGateways` describes a Gateways data source that allows you to filter and list multiple Gateways.
69
+ *
70
+ * ## Example Usage
71
+ *
72
+ * ```typescript
73
+ * import * as pulumi from "@pulumi/pulumi";
74
+ * import * as confluentcloud from "@pulumi/confluentcloud";
75
+ *
76
+ * const all = confluentcloud.getGateways({
77
+ * environment: {
78
+ * id: "env-123abc",
79
+ * },
80
+ * });
81
+ * const readyIngress = confluentcloud.getGateways({
82
+ * environment: {
83
+ * id: "env-123abc",
84
+ * },
85
+ * filter: {
86
+ * gatewayTypes: ["AwsIngressPrivateLink"],
87
+ * phases: ["READY"],
88
+ * },
89
+ * });
90
+ * const usEast = confluentcloud.getGateways({
91
+ * environment: {
92
+ * id: "env-123abc",
93
+ * },
94
+ * filter: {
95
+ * regions: ["us-east-1"],
96
+ * displayNames: ["prod-gateway-ingress-use1"],
97
+ * },
98
+ * });
99
+ * export const allGateways = all.then(all => all.gateways);
100
+ * export const readyIngressGateways = readyIngress.then(readyIngress => readyIngress.gateways);
101
+ * ```
102
+ */
103
+ export declare function getGatewaysOutput(args: GetGatewaysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGatewaysResult>;
104
+ /**
105
+ * A collection of arguments for invoking getGateways.
106
+ */
107
+ export interface GetGatewaysOutputArgs {
108
+ environment: pulumi.Input<inputs.GetGatewaysEnvironmentArgs>;
109
+ filter?: pulumi.Input<inputs.GetGatewaysFilterArgs>;
110
+ }
package/getGateways.js ADDED
@@ -0,0 +1,100 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.getGatewaysOutput = exports.getGateways = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
10
+ *
11
+ * `confluentcloud.getGateways` describes a Gateways data source that allows you to filter and list multiple Gateways.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as confluentcloud from "@pulumi/confluentcloud";
18
+ *
19
+ * const all = confluentcloud.getGateways({
20
+ * environment: {
21
+ * id: "env-123abc",
22
+ * },
23
+ * });
24
+ * const readyIngress = confluentcloud.getGateways({
25
+ * environment: {
26
+ * id: "env-123abc",
27
+ * },
28
+ * filter: {
29
+ * gatewayTypes: ["AwsIngressPrivateLink"],
30
+ * phases: ["READY"],
31
+ * },
32
+ * });
33
+ * const usEast = confluentcloud.getGateways({
34
+ * environment: {
35
+ * id: "env-123abc",
36
+ * },
37
+ * filter: {
38
+ * regions: ["us-east-1"],
39
+ * displayNames: ["prod-gateway-ingress-use1"],
40
+ * },
41
+ * });
42
+ * export const allGateways = all.then(all => all.gateways);
43
+ * export const readyIngressGateways = readyIngress.then(readyIngress => readyIngress.gateways);
44
+ * ```
45
+ */
46
+ function getGateways(args, opts) {
47
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
48
+ return pulumi.runtime.invoke("confluentcloud:index/getGateways:getGateways", {
49
+ "environment": args.environment,
50
+ "filter": args.filter,
51
+ }, opts);
52
+ }
53
+ exports.getGateways = getGateways;
54
+ /**
55
+ * [![General Availability](https://img.shields.io/badge/Lifecycle%20Stage-General%20Availability-%2345c6e8)](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy)
56
+ *
57
+ * `confluentcloud.getGateways` describes a Gateways data source that allows you to filter and list multiple Gateways.
58
+ *
59
+ * ## Example Usage
60
+ *
61
+ * ```typescript
62
+ * import * as pulumi from "@pulumi/pulumi";
63
+ * import * as confluentcloud from "@pulumi/confluentcloud";
64
+ *
65
+ * const all = confluentcloud.getGateways({
66
+ * environment: {
67
+ * id: "env-123abc",
68
+ * },
69
+ * });
70
+ * const readyIngress = confluentcloud.getGateways({
71
+ * environment: {
72
+ * id: "env-123abc",
73
+ * },
74
+ * filter: {
75
+ * gatewayTypes: ["AwsIngressPrivateLink"],
76
+ * phases: ["READY"],
77
+ * },
78
+ * });
79
+ * const usEast = confluentcloud.getGateways({
80
+ * environment: {
81
+ * id: "env-123abc",
82
+ * },
83
+ * filter: {
84
+ * regions: ["us-east-1"],
85
+ * displayNames: ["prod-gateway-ingress-use1"],
86
+ * },
87
+ * });
88
+ * export const allGateways = all.then(all => all.gateways);
89
+ * export const readyIngressGateways = readyIngress.then(readyIngress => readyIngress.gateways);
90
+ * ```
91
+ */
92
+ function getGatewaysOutput(args, opts) {
93
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
94
+ return pulumi.runtime.invokeOutput("confluentcloud:index/getGateways:getGateways", {
95
+ "environment": args.environment,
96
+ "filter": args.filter,
97
+ }, opts);
98
+ }
99
+ exports.getGatewaysOutput = getGatewaysOutput;
100
+ //# sourceMappingURL=getGateways.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getGateways.js","sourceRoot":"","sources":["../getGateways.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kCAMC;AAyBD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC"}