@pulumi/confluentcloud 2.68.0-alpha.1778135055 → 2.68.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.
package/accessPoint.d.ts CHANGED
@@ -81,6 +81,30 @@ import * as outputs from "./types/output";
81
81
  * vpcEndpointId: "vpce-00000000000000000",
82
82
  * },
83
83
  * });
84
+ * const azureIngress = new confluentcloud.AccessPoint("azure_ingress", {
85
+ * displayName: "access_point_ingress",
86
+ * environment: {
87
+ * id: development.id,
88
+ * },
89
+ * gateway: {
90
+ * id: ingress.id,
91
+ * },
92
+ * azureIngressPrivateLinkEndpoint: {
93
+ * privateEndpointResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup/providers/Microsoft.Network/privateEndpoints/my-private-endpoint",
94
+ * },
95
+ * });
96
+ * const gcpIngress = new confluentcloud.AccessPoint("gcp_ingress", {
97
+ * displayName: "access_point_ingress",
98
+ * environment: {
99
+ * id: development.id,
100
+ * },
101
+ * gateway: {
102
+ * id: ingress.id,
103
+ * },
104
+ * gcpIngressPrivateServiceConnectEndpoint: {
105
+ * privateServiceConnectConnectionId: "12345678",
106
+ * },
107
+ * });
84
108
  * ```
85
109
  *
86
110
  * ## Getting Started
@@ -135,6 +159,10 @@ export declare class AccessPoint extends pulumi.CustomResource {
135
159
  * (Optional Configuration Block) supports the following:
136
160
  */
137
161
  readonly azureEgressPrivateLinkEndpoint: pulumi.Output<outputs.AccessPointAzureEgressPrivateLinkEndpoint | undefined>;
162
+ /**
163
+ * (Optional Configuration Block) supports the following:
164
+ */
165
+ readonly azureIngressPrivateLinkEndpoint: pulumi.Output<outputs.AccessPointAzureIngressPrivateLinkEndpoint | undefined>;
138
166
  /**
139
167
  * The name of the Access Point.
140
168
  */
@@ -148,6 +176,10 @@ export declare class AccessPoint extends pulumi.CustomResource {
148
176
  * (Optional Configuration Block) supports the following:
149
177
  */
150
178
  readonly gcpEgressPrivateServiceConnectEndpoint: pulumi.Output<outputs.AccessPointGcpEgressPrivateServiceConnectEndpoint | undefined>;
179
+ /**
180
+ * (Optional Configuration Block) supports the following:
181
+ */
182
+ readonly gcpIngressPrivateServiceConnectEndpoint: pulumi.Output<outputs.AccessPointGcpIngressPrivateServiceConnectEndpoint | undefined>;
151
183
  /**
152
184
  * Create a AccessPoint resource with the given unique name, arguments, and options.
153
185
  *
@@ -177,6 +209,10 @@ export interface AccessPointState {
177
209
  * (Optional Configuration Block) supports the following:
178
210
  */
179
211
  azureEgressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAzureEgressPrivateLinkEndpoint>;
212
+ /**
213
+ * (Optional Configuration Block) supports the following:
214
+ */
215
+ azureIngressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAzureIngressPrivateLinkEndpoint>;
180
216
  /**
181
217
  * The name of the Access Point.
182
218
  */
@@ -190,6 +226,10 @@ export interface AccessPointState {
190
226
  * (Optional Configuration Block) supports the following:
191
227
  */
192
228
  gcpEgressPrivateServiceConnectEndpoint?: pulumi.Input<inputs.AccessPointGcpEgressPrivateServiceConnectEndpoint>;
229
+ /**
230
+ * (Optional Configuration Block) supports the following:
231
+ */
232
+ gcpIngressPrivateServiceConnectEndpoint?: pulumi.Input<inputs.AccessPointGcpIngressPrivateServiceConnectEndpoint>;
193
233
  }
194
234
  /**
195
235
  * The set of arguments for constructing a AccessPoint resource.
@@ -211,6 +251,10 @@ export interface AccessPointArgs {
211
251
  * (Optional Configuration Block) supports the following:
212
252
  */
213
253
  azureEgressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAzureEgressPrivateLinkEndpoint>;
254
+ /**
255
+ * (Optional Configuration Block) supports the following:
256
+ */
257
+ azureIngressPrivateLinkEndpoint?: pulumi.Input<inputs.AccessPointAzureIngressPrivateLinkEndpoint>;
214
258
  /**
215
259
  * The name of the Access Point.
216
260
  */
@@ -224,4 +268,8 @@ export interface AccessPointArgs {
224
268
  * (Optional Configuration Block) supports the following:
225
269
  */
226
270
  gcpEgressPrivateServiceConnectEndpoint?: pulumi.Input<inputs.AccessPointGcpEgressPrivateServiceConnectEndpoint>;
271
+ /**
272
+ * (Optional Configuration Block) supports the following:
273
+ */
274
+ gcpIngressPrivateServiceConnectEndpoint?: pulumi.Input<inputs.AccessPointGcpIngressPrivateServiceConnectEndpoint>;
227
275
  }
package/accessPoint.js CHANGED
@@ -85,6 +85,30 @@ const utilities = require("./utilities");
85
85
  * vpcEndpointId: "vpce-00000000000000000",
86
86
  * },
87
87
  * });
88
+ * const azureIngress = new confluentcloud.AccessPoint("azure_ingress", {
89
+ * displayName: "access_point_ingress",
90
+ * environment: {
91
+ * id: development.id,
92
+ * },
93
+ * gateway: {
94
+ * id: ingress.id,
95
+ * },
96
+ * azureIngressPrivateLinkEndpoint: {
97
+ * privateEndpointResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup/providers/Microsoft.Network/privateEndpoints/my-private-endpoint",
98
+ * },
99
+ * });
100
+ * const gcpIngress = new confluentcloud.AccessPoint("gcp_ingress", {
101
+ * displayName: "access_point_ingress",
102
+ * environment: {
103
+ * id: development.id,
104
+ * },
105
+ * gateway: {
106
+ * id: ingress.id,
107
+ * },
108
+ * gcpIngressPrivateServiceConnectEndpoint: {
109
+ * privateServiceConnectConnectionId: "12345678",
110
+ * },
111
+ * });
88
112
  * ```
89
113
  *
90
114
  * ## Getting Started
@@ -139,10 +163,12 @@ class AccessPoint extends pulumi.CustomResource {
139
163
  resourceInputs["awsIngressPrivateLinkEndpoint"] = state?.awsIngressPrivateLinkEndpoint;
140
164
  resourceInputs["awsPrivateNetworkInterface"] = state?.awsPrivateNetworkInterface;
141
165
  resourceInputs["azureEgressPrivateLinkEndpoint"] = state?.azureEgressPrivateLinkEndpoint;
166
+ resourceInputs["azureIngressPrivateLinkEndpoint"] = state?.azureIngressPrivateLinkEndpoint;
142
167
  resourceInputs["displayName"] = state?.displayName;
143
168
  resourceInputs["environment"] = state?.environment;
144
169
  resourceInputs["gateway"] = state?.gateway;
145
170
  resourceInputs["gcpEgressPrivateServiceConnectEndpoint"] = state?.gcpEgressPrivateServiceConnectEndpoint;
171
+ resourceInputs["gcpIngressPrivateServiceConnectEndpoint"] = state?.gcpIngressPrivateServiceConnectEndpoint;
146
172
  }
147
173
  else {
148
174
  const args = argsOrState;
@@ -156,10 +182,12 @@ class AccessPoint extends pulumi.CustomResource {
156
182
  resourceInputs["awsIngressPrivateLinkEndpoint"] = args?.awsIngressPrivateLinkEndpoint;
157
183
  resourceInputs["awsPrivateNetworkInterface"] = args?.awsPrivateNetworkInterface;
158
184
  resourceInputs["azureEgressPrivateLinkEndpoint"] = args?.azureEgressPrivateLinkEndpoint;
185
+ resourceInputs["azureIngressPrivateLinkEndpoint"] = args?.azureIngressPrivateLinkEndpoint;
159
186
  resourceInputs["displayName"] = args?.displayName;
160
187
  resourceInputs["environment"] = args?.environment;
161
188
  resourceInputs["gateway"] = args?.gateway;
162
189
  resourceInputs["gcpEgressPrivateServiceConnectEndpoint"] = args?.gcpEgressPrivateServiceConnectEndpoint;
190
+ resourceInputs["gcpIngressPrivateServiceConnectEndpoint"] = args?.gcpIngressPrivateServiceConnectEndpoint;
163
191
  }
164
192
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
165
193
  super(AccessPoint.__pulumiType, name, resourceInputs, opts);
@@ -1 +1 @@
1
- {"version":3,"file":"accessPoint.js","sourceRoot":"","sources":["../accessPoint.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"accessPoint.js","sourceRoot":"","sources":["../accessPoint.ts"],"names":[],"mappings":"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"}
package/gateway.d.ts CHANGED
@@ -76,6 +76,10 @@ export declare class Gateway extends pulumi.CustomResource {
76
76
  * (Optional Configuration Block) supports the following:
77
77
  */
78
78
  readonly azureEgressPrivateLinkGateway: pulumi.Output<outputs.GatewayAzureEgressPrivateLinkGateway>;
79
+ /**
80
+ * (Optional Configuration Block) supports the following:
81
+ */
82
+ readonly azureIngressPrivateLinkGateway: pulumi.Output<outputs.GatewayAzureIngressPrivateLinkGateway>;
79
83
  /**
80
84
  * The name of the Gateway.
81
85
  */
@@ -84,6 +88,10 @@ export declare class Gateway extends pulumi.CustomResource {
84
88
  * Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
85
89
  */
86
90
  readonly environment: pulumi.Output<outputs.GatewayEnvironment>;
91
+ /**
92
+ * (Optional Configuration Block) supports the following:
93
+ */
94
+ readonly gcpIngressPrivateServiceConnectGateway: pulumi.Output<outputs.GatewayGcpIngressPrivateServiceConnectGateway>;
87
95
  /**
88
96
  * Create a Gateway resource with the given unique name, arguments, and options.
89
97
  *
@@ -113,6 +121,10 @@ export interface GatewayState {
113
121
  * (Optional Configuration Block) supports the following:
114
122
  */
115
123
  azureEgressPrivateLinkGateway?: pulumi.Input<inputs.GatewayAzureEgressPrivateLinkGateway>;
124
+ /**
125
+ * (Optional Configuration Block) supports the following:
126
+ */
127
+ azureIngressPrivateLinkGateway?: pulumi.Input<inputs.GatewayAzureIngressPrivateLinkGateway>;
116
128
  /**
117
129
  * The name of the Gateway.
118
130
  */
@@ -121,6 +133,10 @@ export interface GatewayState {
121
133
  * Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
122
134
  */
123
135
  environment?: pulumi.Input<inputs.GatewayEnvironment>;
136
+ /**
137
+ * (Optional Configuration Block) supports the following:
138
+ */
139
+ gcpIngressPrivateServiceConnectGateway?: pulumi.Input<inputs.GatewayGcpIngressPrivateServiceConnectGateway>;
124
140
  }
125
141
  /**
126
142
  * The set of arguments for constructing a Gateway resource.
@@ -142,6 +158,10 @@ export interface GatewayArgs {
142
158
  * (Optional Configuration Block) supports the following:
143
159
  */
144
160
  azureEgressPrivateLinkGateway?: pulumi.Input<inputs.GatewayAzureEgressPrivateLinkGateway>;
161
+ /**
162
+ * (Optional Configuration Block) supports the following:
163
+ */
164
+ azureIngressPrivateLinkGateway?: pulumi.Input<inputs.GatewayAzureIngressPrivateLinkGateway>;
145
165
  /**
146
166
  * The name of the Gateway.
147
167
  */
@@ -150,4 +170,8 @@ export interface GatewayArgs {
150
170
  * Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
151
171
  */
152
172
  environment: pulumi.Input<inputs.GatewayEnvironment>;
173
+ /**
174
+ * (Optional Configuration Block) supports the following:
175
+ */
176
+ gcpIngressPrivateServiceConnectGateway?: pulumi.Input<inputs.GatewayGcpIngressPrivateServiceConnectGateway>;
153
177
  }
package/gateway.js CHANGED
@@ -80,8 +80,10 @@ class Gateway extends pulumi.CustomResource {
80
80
  resourceInputs["awsIngressPrivateLinkGateway"] = state?.awsIngressPrivateLinkGateway;
81
81
  resourceInputs["awsPrivateNetworkInterfaceGateway"] = state?.awsPrivateNetworkInterfaceGateway;
82
82
  resourceInputs["azureEgressPrivateLinkGateway"] = state?.azureEgressPrivateLinkGateway;
83
+ resourceInputs["azureIngressPrivateLinkGateway"] = state?.azureIngressPrivateLinkGateway;
83
84
  resourceInputs["displayName"] = state?.displayName;
84
85
  resourceInputs["environment"] = state?.environment;
86
+ resourceInputs["gcpIngressPrivateServiceConnectGateway"] = state?.gcpIngressPrivateServiceConnectGateway;
85
87
  }
86
88
  else {
87
89
  const args = argsOrState;
@@ -95,8 +97,10 @@ class Gateway extends pulumi.CustomResource {
95
97
  resourceInputs["awsIngressPrivateLinkGateway"] = args?.awsIngressPrivateLinkGateway;
96
98
  resourceInputs["awsPrivateNetworkInterfaceGateway"] = args?.awsPrivateNetworkInterfaceGateway;
97
99
  resourceInputs["azureEgressPrivateLinkGateway"] = args?.azureEgressPrivateLinkGateway;
100
+ resourceInputs["azureIngressPrivateLinkGateway"] = args?.azureIngressPrivateLinkGateway;
98
101
  resourceInputs["displayName"] = args?.displayName;
99
102
  resourceInputs["environment"] = args?.environment;
103
+ resourceInputs["gcpIngressPrivateServiceConnectGateway"] = args?.gcpIngressPrivateServiceConnectGateway;
100
104
  }
101
105
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
102
106
  super(Gateway.__pulumiType, name, resourceInputs, opts);
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;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"}
1
+ {"version":3,"file":"gateway.js","sourceRoot":"","sources":["../gateway.ts"],"names":[],"mappings":"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"}
@@ -56,6 +56,10 @@ export interface GetAccessPointResult {
56
56
  * (Optional Configuration Block) supports the following:
57
57
  */
58
58
  readonly azureEgressPrivateLinkEndpoints: outputs.GetAccessPointAzureEgressPrivateLinkEndpoint[];
59
+ /**
60
+ * (Optional Configuration Block) supports the following:
61
+ */
62
+ readonly azureIngressPrivateLinkEndpoints: outputs.GetAccessPointAzureIngressPrivateLinkEndpoint[];
59
63
  /**
60
64
  * (Required String) A human-readable name for the Access Point.
61
65
  */
@@ -69,6 +73,10 @@ export interface GetAccessPointResult {
69
73
  * (Optional Configuration Block) supports the following:
70
74
  */
71
75
  readonly gcpEgressPrivateServiceConnectEndpoints?: outputs.GetAccessPointGcpEgressPrivateServiceConnectEndpoint[];
76
+ /**
77
+ * (Optional Configuration Block) supports the following:
78
+ */
79
+ readonly gcpIngressPrivateServiceConnectEndpoints: outputs.GetAccessPointGcpIngressPrivateServiceConnectEndpoint[];
72
80
  /**
73
81
  * (Required String) The ID of the gateway to which the Access Point belongs, for example, `gw-abc123`.
74
82
  */
@@ -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;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"}
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;AA+DD;;;;;;;;;;;;;;;;;;;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"}
package/getGateway.d.ts CHANGED
@@ -56,6 +56,10 @@ export interface GetGatewayResult {
56
56
  * (Optional Configuration Block) supports the following:
57
57
  */
58
58
  readonly azureEgressPrivateLinkGateways: outputs.GetGatewayAzureEgressPrivateLinkGateway[];
59
+ /**
60
+ * (Optional Configuration Block) supports the following:
61
+ */
62
+ readonly azureIngressPrivateLinkGateways: outputs.GetGatewayAzureIngressPrivateLinkGateway[];
59
63
  /**
60
64
  * (Optional Configuration Block) supports the following:
61
65
  */
@@ -69,6 +73,10 @@ export interface GetGatewayResult {
69
73
  * (Optional Configuration Block) supports the following:
70
74
  */
71
75
  readonly gcpEgressPrivateServiceConnectGateways: outputs.GetGatewayGcpEgressPrivateServiceConnectGateway[];
76
+ /**
77
+ * (Optional Configuration Block) supports the following:
78
+ */
79
+ readonly gcpIngressPrivateServiceConnectGateways: outputs.GetGatewayGcpIngressPrivateServiceConnectGateway[];
72
80
  /**
73
81
  * (Optional Configuration Block) supports the following:
74
82
  */
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;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"}
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;AAgED;;;;;;;;;;;;;;;;;;;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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/confluentcloud",
3
- "version": "2.68.0-alpha.1778135055",
3
+ "version": "2.68.0",
4
4
  "description": "A Pulumi package for creating and managing Confluent cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -24,6 +24,6 @@
24
24
  "pulumi": {
25
25
  "resource": true,
26
26
  "name": "confluentcloud",
27
- "version": "2.68.0-alpha.1778135055"
27
+ "version": "2.68.0"
28
28
  }
29
29
  }
package/types/input.d.ts CHANGED
@@ -20,7 +20,7 @@ export interface AccessPointAwsEgressPrivateLinkEndpoint {
20
20
  }
21
21
  export interface AccessPointAwsIngressPrivateLinkEndpoint {
22
22
  /**
23
- * (Required String) DNS domain name used to configure the Private Hosted Zone for the Access Point, for example, `ap123abc.us-west-2.aws.accesspoint.confluent.cloud`.
23
+ * (Optional String) DNS domain name used to configure the DNS Zone for the Access Point.
24
24
  */
25
25
  dnsDomain?: pulumi.Input<string>;
26
26
  /**
@@ -72,6 +72,24 @@ export interface AccessPointAzureEgressPrivateLinkEndpoint {
72
72
  */
73
73
  privateLinkSubresourceName?: pulumi.Input<string>;
74
74
  }
75
+ export interface AccessPointAzureIngressPrivateLinkEndpoint {
76
+ /**
77
+ * (Optional String) DNS domain name used to configure the DNS Zone for the Access Point.
78
+ */
79
+ dnsDomain?: pulumi.Input<string>;
80
+ /**
81
+ * Resource ID of a Private Endpoint that will be connected to the Private Link service.
82
+ */
83
+ privateEndpointResourceId: pulumi.Input<string>;
84
+ /**
85
+ * (Required String) Alias of the Confluent Cloud Private Link Service.
86
+ */
87
+ privateLinkServiceAlias?: pulumi.Input<string>;
88
+ /**
89
+ * (Required String) Resource ID of the Confluent Cloud Private Link Service.
90
+ */
91
+ privateLinkServiceResourceId?: pulumi.Input<string>;
92
+ }
75
93
  export interface AccessPointEnvironment {
76
94
  /**
77
95
  * The ID of the Environment that the Access Point belongs to, for example, `env-abc123`.
@@ -102,6 +120,20 @@ export interface AccessPointGcpEgressPrivateServiceConnectEndpoint {
102
120
  */
103
121
  privateServiceConnectEndpointTarget: pulumi.Input<string>;
104
122
  }
123
+ export interface AccessPointGcpIngressPrivateServiceConnectEndpoint {
124
+ /**
125
+ * (Optional String) DNS domain name used to configure the DNS Zone for the Access Point.
126
+ */
127
+ dnsDomain?: pulumi.Input<string>;
128
+ /**
129
+ * The ID of the Private Service Connect connection. Must be quoted in HCL to avoid numeric precision loss, for example, `privateServiceConnectConnectionId = "116002050319319045"`.
130
+ */
131
+ privateServiceConnectConnectionId: pulumi.Input<string>;
132
+ /**
133
+ * (Required String) URI of the Private Service Connect Service Attachment in Confluent Cloud.
134
+ */
135
+ privateServiceConnectServiceAttachment?: pulumi.Input<string>;
136
+ }
105
137
  export interface ApiKeyManagedResource {
106
138
  /**
107
139
  * The API group and version of the managed resource that the API Key associated with, for example, `cmk/v2`.
@@ -856,12 +888,36 @@ export interface GatewayAzureEgressPrivateLinkGateway {
856
888
  */
857
889
  subscription?: pulumi.Input<string>;
858
890
  }
891
+ export interface GatewayAzureIngressPrivateLinkGateway {
892
+ /**
893
+ * (Required String) Alias of the Confluent Cloud Private Link Service.
894
+ */
895
+ privateLinkServiceAlias?: pulumi.Input<string>;
896
+ /**
897
+ * (Required String) Resource ID of the Confluent Cloud Private Link Service.
898
+ */
899
+ privateLinkServiceResourceId?: pulumi.Input<string>;
900
+ /**
901
+ * Azure region of the Ingress Private Link Gateway, for example, `centralus`.
902
+ */
903
+ region: pulumi.Input<string>;
904
+ }
859
905
  export interface GatewayEnvironment {
860
906
  /**
861
907
  * The ID of the Environment that the Gateway belongs to, for example, `env-abc123`.
862
908
  */
863
909
  id: pulumi.Input<string>;
864
910
  }
911
+ export interface GatewayGcpIngressPrivateServiceConnectGateway {
912
+ /**
913
+ * (Required String) URI of the Private Service Connect Service Attachment in Confluent Cloud.
914
+ */
915
+ privateServiceConnectServiceAttachment?: pulumi.Input<string>;
916
+ /**
917
+ * GCP region of the Ingress Private Service Connect Gateway, for example, `us-central1`.
918
+ */
919
+ region: pulumi.Input<string>;
920
+ }
865
921
  export interface GetAccessPointEnvironment {
866
922
  /**
867
923
  * The ID of the Environment that the Access Point belongs to, for example, `env-123abc`.
@@ -1444,7 +1500,7 @@ export interface GetGatewaysFilter {
1444
1500
  */
1445
1501
  displayNames?: string[];
1446
1502
  /**
1447
- * Filter the results by exact match for gateway_type. Pass multiple times to see results matching any of the values. Valid values are: `AwsEgressPrivateLink`, `AwsIngressPrivateLink`, `AwsPeering`, `AwsPrivateNetworkInterface`, `AzureEgressPrivateLink`, `AzurePeering`, `GcpEgressPrivateServiceConnect`, `GcpPeering`.
1503
+ * Filter the results by exact match for gateway_type. Pass multiple times to see results matching any of the values. Valid values are: `AwsEgressPrivateLink`, `AwsIngressPrivateLink`, `AwsPeering`, `AwsPrivateNetworkInterface`, `AzureEgressPrivateLink`, `AzureIngressPrivateLink`, `AzurePeering`, `GcpEgressPrivateServiceConnect`, `GcpIngressPrivateServiceConnect`, `GcpPeering`.
1448
1504
  */
1449
1505
  gatewayTypes?: string[];
1450
1506
  /**
@@ -1466,7 +1522,7 @@ export interface GetGatewaysFilterArgs {
1466
1522
  */
1467
1523
  displayNames?: pulumi.Input<pulumi.Input<string>[]>;
1468
1524
  /**
1469
- * Filter the results by exact match for gateway_type. Pass multiple times to see results matching any of the values. Valid values are: `AwsEgressPrivateLink`, `AwsIngressPrivateLink`, `AwsPeering`, `AwsPrivateNetworkInterface`, `AzureEgressPrivateLink`, `AzurePeering`, `GcpEgressPrivateServiceConnect`, `GcpPeering`.
1525
+ * Filter the results by exact match for gateway_type. Pass multiple times to see results matching any of the values. Valid values are: `AwsEgressPrivateLink`, `AwsIngressPrivateLink`, `AwsPeering`, `AwsPrivateNetworkInterface`, `AzureEgressPrivateLink`, `AzureIngressPrivateLink`, `AzurePeering`, `GcpEgressPrivateServiceConnect`, `GcpIngressPrivateServiceConnect`, `GcpPeering`.
1470
1526
  */
1471
1527
  gatewayTypes?: pulumi.Input<pulumi.Input<string>[]>;
1472
1528
  /**
package/types/output.d.ts CHANGED
@@ -19,7 +19,7 @@ export interface AccessPointAwsEgressPrivateLinkEndpoint {
19
19
  }
20
20
  export interface AccessPointAwsIngressPrivateLinkEndpoint {
21
21
  /**
22
- * (Required String) DNS domain name used to configure the Private Hosted Zone for the Access Point, for example, `ap123abc.us-west-2.aws.accesspoint.confluent.cloud`.
22
+ * (Optional String) DNS domain name used to configure the DNS Zone for the Access Point.
23
23
  */
24
24
  dnsDomain: string;
25
25
  /**
@@ -71,6 +71,24 @@ export interface AccessPointAzureEgressPrivateLinkEndpoint {
71
71
  */
72
72
  privateLinkSubresourceName?: string;
73
73
  }
74
+ export interface AccessPointAzureIngressPrivateLinkEndpoint {
75
+ /**
76
+ * (Optional String) DNS domain name used to configure the DNS Zone for the Access Point.
77
+ */
78
+ dnsDomain: string;
79
+ /**
80
+ * Resource ID of a Private Endpoint that will be connected to the Private Link service.
81
+ */
82
+ privateEndpointResourceId: string;
83
+ /**
84
+ * (Required String) Alias of the Confluent Cloud Private Link Service.
85
+ */
86
+ privateLinkServiceAlias: string;
87
+ /**
88
+ * (Required String) Resource ID of the Confluent Cloud Private Link Service.
89
+ */
90
+ privateLinkServiceResourceId: string;
91
+ }
74
92
  export interface AccessPointEnvironment {
75
93
  /**
76
94
  * The ID of the Environment that the Access Point belongs to, for example, `env-abc123`.
@@ -101,6 +119,20 @@ export interface AccessPointGcpEgressPrivateServiceConnectEndpoint {
101
119
  */
102
120
  privateServiceConnectEndpointTarget: string;
103
121
  }
122
+ export interface AccessPointGcpIngressPrivateServiceConnectEndpoint {
123
+ /**
124
+ * (Optional String) DNS domain name used to configure the DNS Zone for the Access Point.
125
+ */
126
+ dnsDomain: string;
127
+ /**
128
+ * The ID of the Private Service Connect connection. Must be quoted in HCL to avoid numeric precision loss, for example, `privateServiceConnectConnectionId = "116002050319319045"`.
129
+ */
130
+ privateServiceConnectConnectionId: string;
131
+ /**
132
+ * (Required String) URI of the Private Service Connect Service Attachment in Confluent Cloud.
133
+ */
134
+ privateServiceConnectServiceAttachment: string;
135
+ }
104
136
  export interface ApiKeyManagedResource {
105
137
  /**
106
138
  * The API group and version of the managed resource that the API Key associated with, for example, `cmk/v2`.
@@ -855,12 +887,36 @@ export interface GatewayAzureEgressPrivateLinkGateway {
855
887
  */
856
888
  subscription: string;
857
889
  }
890
+ export interface GatewayAzureIngressPrivateLinkGateway {
891
+ /**
892
+ * (Required String) Alias of the Confluent Cloud Private Link Service.
893
+ */
894
+ privateLinkServiceAlias: string;
895
+ /**
896
+ * (Required String) Resource ID of the Confluent Cloud Private Link Service.
897
+ */
898
+ privateLinkServiceResourceId: string;
899
+ /**
900
+ * Azure region of the Ingress Private Link Gateway, for example, `centralus`.
901
+ */
902
+ region: string;
903
+ }
858
904
  export interface GatewayEnvironment {
859
905
  /**
860
906
  * The ID of the Environment that the Gateway belongs to, for example, `env-abc123`.
861
907
  */
862
908
  id: string;
863
909
  }
910
+ export interface GatewayGcpIngressPrivateServiceConnectGateway {
911
+ /**
912
+ * (Required String) URI of the Private Service Connect Service Attachment in Confluent Cloud.
913
+ */
914
+ privateServiceConnectServiceAttachment: string;
915
+ /**
916
+ * GCP region of the Ingress Private Service Connect Gateway, for example, `us-central1`.
917
+ */
918
+ region: string;
919
+ }
864
920
  export interface GetAccessPointAwsEgressPrivateLinkEndpoint {
865
921
  /**
866
922
  * (Required Boolean) Whether a resource should be provisioned with high availability. Endpoints deployed with high availability have network interfaces deployed in multiple AZs. Defaults to `false`.
@@ -881,7 +937,7 @@ export interface GetAccessPointAwsEgressPrivateLinkEndpoint {
881
937
  }
882
938
  export interface GetAccessPointAwsIngressPrivateLinkEndpoint {
883
939
  /**
884
- * (Required String) DNS domain name used to configure the Private Hosted Zone for the Access Point, for example, `ap123abc.us-west-2.aws.accesspoint.confluent.cloud`.
940
+ * (Optional String) DNS domain name used to configure the DNS Zone for the Access Point.
885
941
  */
886
942
  dnsDomain: string;
887
943
  /**
@@ -921,11 +977,11 @@ export interface GetAccessPointAzureEgressPrivateLinkEndpoint {
921
977
  */
922
978
  privateEndpointIpAddress: string;
923
979
  /**
924
- * (Required String) Resource ID of the Private Endpoint (if any) that is connected to the Private Link service.
980
+ * (Required String) Resource ID of a Private Endpoint that will be connected to the Private Link service.
925
981
  */
926
982
  privateEndpointResourceId: string;
927
983
  /**
928
- * (Required String) Resource ID of the Azure Private Link service.
984
+ * (Required String) Resource ID of the Confluent Cloud Private Link Service.
929
985
  */
930
986
  privateLinkServiceResourceId: string;
931
987
  /**
@@ -933,6 +989,24 @@ export interface GetAccessPointAzureEgressPrivateLinkEndpoint {
933
989
  */
934
990
  privateLinkSubresourceName: string;
935
991
  }
992
+ export interface GetAccessPointAzureIngressPrivateLinkEndpoint {
993
+ /**
994
+ * (Optional String) DNS domain name used to configure the DNS Zone for the Access Point.
995
+ */
996
+ dnsDomain: string;
997
+ /**
998
+ * (Required String) Resource ID of a Private Endpoint that will be connected to the Private Link service.
999
+ */
1000
+ privateEndpointResourceId: string;
1001
+ /**
1002
+ * (Required String) Alias of the Confluent Cloud Private Link Service.
1003
+ */
1004
+ privateLinkServiceAlias: string;
1005
+ /**
1006
+ * (Required String) Resource ID of the Confluent Cloud Private Link Service.
1007
+ */
1008
+ privateLinkServiceResourceId: string;
1009
+ }
936
1010
  export interface GetAccessPointEnvironment {
937
1011
  /**
938
1012
  * The ID of the Environment that the Access Point belongs to, for example, `env-123abc`.
@@ -963,6 +1037,20 @@ export interface GetAccessPointGcpEgressPrivateServiceConnectEndpoint {
963
1037
  */
964
1038
  privateServiceConnectEndpointTarget: string;
965
1039
  }
1040
+ export interface GetAccessPointGcpIngressPrivateServiceConnectEndpoint {
1041
+ /**
1042
+ * (Optional String) DNS domain name used to configure the DNS Zone for the Access Point.
1043
+ */
1044
+ dnsDomain: string;
1045
+ /**
1046
+ * (Required String) The ID of the Private Service Connect connection. Must be quoted in HCL to avoid numeric precision loss, for example, `privateServiceConnectConnectionId = "116002050319319045"`.
1047
+ */
1048
+ privateServiceConnectConnectionId: string;
1049
+ /**
1050
+ * (Required String) URI of the Private Service Connect Service Attachment in Confluent Cloud.
1051
+ */
1052
+ privateServiceConnectServiceAttachment: string;
1053
+ }
966
1054
  export interface GetBusinessMetadataAttributeDefinition {
967
1055
  /**
968
1056
  * (Optional String) The default value of this attribute.
@@ -1591,6 +1679,20 @@ export interface GetGatewayAzureEgressPrivateLinkGateway {
1591
1679
  */
1592
1680
  subscription: string;
1593
1681
  }
1682
+ export interface GetGatewayAzureIngressPrivateLinkGateway {
1683
+ /**
1684
+ * (Required String) Alias of the Confluent Cloud Private Link Service.
1685
+ */
1686
+ privateLinkServiceAlias: string;
1687
+ /**
1688
+ * (Required String) Resource ID of the Confluent Cloud Private Link Service.
1689
+ */
1690
+ privateLinkServiceResourceId: string;
1691
+ /**
1692
+ * (Required String) GCP region of the Peering Gateway.
1693
+ */
1694
+ region: string;
1695
+ }
1594
1696
  export interface GetGatewayAzurePeeringGateway {
1595
1697
  /**
1596
1698
  * (Required String) GCP region of the Peering Gateway.
@@ -1613,6 +1715,16 @@ export interface GetGatewayGcpEgressPrivateServiceConnectGateway {
1613
1715
  */
1614
1716
  region: string;
1615
1717
  }
1718
+ export interface GetGatewayGcpIngressPrivateServiceConnectGateway {
1719
+ /**
1720
+ * (Required String) URI of the Private Service Connect Service Attachment in Confluent Cloud.
1721
+ */
1722
+ privateServiceConnectServiceAttachment: string;
1723
+ /**
1724
+ * (Required String) GCP region of the Peering Gateway.
1725
+ */
1726
+ region: string;
1727
+ }
1616
1728
  export interface GetGatewayGcpPeeringGateway {
1617
1729
  /**
1618
1730
  * (Required String) The IAM principal used by the GCP Peering Gateway.
@@ -1635,7 +1747,7 @@ export interface GetGatewaysFilter {
1635
1747
  */
1636
1748
  displayNames?: string[];
1637
1749
  /**
1638
- * Filter the results by exact match for gateway_type. Pass multiple times to see results matching any of the values. Valid values are: `AwsEgressPrivateLink`, `AwsIngressPrivateLink`, `AwsPeering`, `AwsPrivateNetworkInterface`, `AzureEgressPrivateLink`, `AzurePeering`, `GcpEgressPrivateServiceConnect`, `GcpPeering`.
1750
+ * Filter the results by exact match for gateway_type. Pass multiple times to see results matching any of the values. Valid values are: `AwsEgressPrivateLink`, `AwsIngressPrivateLink`, `AwsPeering`, `AwsPrivateNetworkInterface`, `AzureEgressPrivateLink`, `AzureIngressPrivateLink`, `AzurePeering`, `GcpEgressPrivateServiceConnect`, `GcpIngressPrivateServiceConnect`, `GcpPeering`.
1639
1751
  */
1640
1752
  gatewayTypes?: string[];
1641
1753
  /**
@@ -1672,6 +1784,10 @@ export interface GetGatewaysGateway {
1672
1784
  * (Optional Configuration Block) supports the following:
1673
1785
  */
1674
1786
  azureEgressPrivateLinkGateways: outputs.GetGatewaysGatewayAzureEgressPrivateLinkGateway[];
1787
+ /**
1788
+ * (Optional Configuration Block) supports the following:
1789
+ */
1790
+ azureIngressPrivateLinkGateways: outputs.GetGatewaysGatewayAzureIngressPrivateLinkGateway[];
1675
1791
  /**
1676
1792
  * (Optional Configuration Block) supports the following:
1677
1793
  */
@@ -1684,6 +1800,10 @@ export interface GetGatewaysGateway {
1684
1800
  * (Optional Configuration Block) supports the following:
1685
1801
  */
1686
1802
  gcpEgressPrivateServiceConnectGateways: outputs.GetGatewaysGatewayGcpEgressPrivateServiceConnectGateway[];
1803
+ /**
1804
+ * (Optional Configuration Block) supports the following:
1805
+ */
1806
+ gcpIngressPrivateServiceConnectGateways: outputs.GetGatewaysGatewayGcpIngressPrivateServiceConnectGateway[];
1687
1807
  /**
1688
1808
  * (Optional Configuration Block) supports the following:
1689
1809
  */
@@ -1743,6 +1863,20 @@ export interface GetGatewaysGatewayAzureEgressPrivateLinkGateway {
1743
1863
  */
1744
1864
  subscription: string;
1745
1865
  }
1866
+ export interface GetGatewaysGatewayAzureIngressPrivateLinkGateway {
1867
+ /**
1868
+ * (Required String) Alias of the Confluent Cloud Private Link Service.
1869
+ */
1870
+ privateLinkServiceAlias: string;
1871
+ /**
1872
+ * (Required String) Resource ID of the Confluent Cloud Private Link Service.
1873
+ */
1874
+ privateLinkServiceResourceId: string;
1875
+ /**
1876
+ * (Required String) GCP region of the Peering Gateway.
1877
+ */
1878
+ region: string;
1879
+ }
1746
1880
  export interface GetGatewaysGatewayAzurePeeringGateway {
1747
1881
  /**
1748
1882
  * (Required String) GCP region of the Peering Gateway.
@@ -1759,6 +1893,16 @@ export interface GetGatewaysGatewayGcpEgressPrivateServiceConnectGateway {
1759
1893
  */
1760
1894
  region: string;
1761
1895
  }
1896
+ export interface GetGatewaysGatewayGcpIngressPrivateServiceConnectGateway {
1897
+ /**
1898
+ * (Required String) URI of the Private Service Connect Service Attachment in Confluent Cloud.
1899
+ */
1900
+ privateServiceConnectServiceAttachment: string;
1901
+ /**
1902
+ * (Required String) GCP region of the Peering Gateway.
1903
+ */
1904
+ region: string;
1905
+ }
1762
1906
  export interface GetGatewaysGatewayGcpPeeringGateway {
1763
1907
  /**
1764
1908
  * (Required String) The IAM principal used by the GCP Peering Gateway.