You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: google-beta/services/compute/resource_compute_region_network_endpoint_group.go
+69
Original file line number
Diff line number
Diff line change
@@ -222,6 +222,26 @@ The URL of the network to which all network endpoints in the NEG belong. Uses
222
222
Description: `Type of network endpoints in this network endpoint group. Defaults to SERVERLESS. Default value: "SERVERLESS" Possible values: ["SERVERLESS", "PRIVATE_SERVICE_CONNECT", "INTERNET_IP_PORT", "INTERNET_FQDN_PORT", "GCE_VM_IP_PORTMAP"]`,
223
223
Default: "SERVERLESS",
224
224
},
225
+
"psc_data": {
226
+
Type: schema.TypeList,
227
+
Optional: true,
228
+
ForceNew: true,
229
+
Description: `This field is only used for PSC NEGs.`,
230
+
MaxItems: 1,
231
+
Elem: &schema.Resource{
232
+
Schema: map[string]*schema.Schema{
233
+
"producer_port": {
234
+
Type: schema.TypeString,
235
+
Optional: true,
236
+
ForceNew: true,
237
+
Description: `The PSC producer port to use when consumer PSC NEG connects to a producer. If
238
+
this flag isn't specified for a PSC NEG with endpoint type
239
+
private-service-connect, then PSC NEG will be connected to a first port in the
240
+
available PSC producer port range.`,
241
+
},
242
+
},
243
+
},
244
+
},
225
245
"psc_target_service": {
226
246
Type: schema.TypeString,
227
247
Optional: true,
@@ -344,6 +364,12 @@ func resourceComputeRegionNetworkEndpointGroupCreate(d *schema.ResourceData, met
0 commit comments