Skip to main content

network_endpoint_groups

Creates, updates, deletes, gets or lists a network_endpoint_groups resource.

Overview

Namenetwork_endpoint_groups
TypeResource
Idgoogle.compute.network_endpoint_groups

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
idstring (uint64)[Output Only] The unique identifier for the resource. This identifier is defined by the server.
namestringName of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
annotationsobjectOptional. Metadata defined as annotations on the network endpoint group.
appEngineobjectOptional. Only valid when networkEndpointType is SERVERLESS. Only one of cloudRun, appEngine or cloudFunction may be set. (id: NetworkEndpointGroupAppEngine)
cloudFunctionobjectOptional. Only valid when networkEndpointType is SERVERLESS. Only one of cloudRun, appEngine or cloudFunction may be set. (id: NetworkEndpointGroupCloudFunction)
cloudRunobjectOptional. Only valid when networkEndpointType is SERVERLESS. Only one of cloudRun, appEngine or cloudFunction may be set. (id: NetworkEndpointGroupCloudRun)
creationTimestampstring[Output Only] Creation timestamp in RFC3339 text format.
defaultPortinteger (int32)The default port used if the port number is not specified in the network endpoint. Optional. If the network endpoint type is either GCE_VM_IP, SERVERLESS or PRIVATE_SERVICE_CONNECT, this field must not be specified.
descriptionstringAn optional description of this resource. Provide this property when you create the resource.
kindstring[Output Only] Type of the resource. Always compute#networkEndpointGroup for network endpoint group. (default: compute#networkEndpointGroup)
networkstringThe URL of the network to which all network endpoints in the NEG belong. Uses default project network if unspecified.
networkEndpointTypestringType of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT, GCE_VM_IP_PORTMAP.
pscDataobjectOptional. Only valid when networkEndpointType is PRIVATE_SERVICE_CONNECT. (id: NetworkEndpointGroupPscData)
pscTargetServicestringThe target service url used to set up private service connection to a Google API or a PSC Producer Service Attachment. An example value is: asia-northeast3-cloudkms.googleapis.com. Optional. Only valid when networkEndpointType is PRIVATE_SERVICE_CONNECT.
regionstring[Output Only] The URL of the region where the network endpoint group is located.
selfLinkstring[Output Only] Server-defined URL for the resource.
sizeinteger (int32)[Output only] Number of network endpoints in the network endpoint group.
subnetworkstringOptional URL of the subnetwork to which all network endpoints in the NEG belong.
zonestring[Output Only] The URL of the zone where the network endpoint group is located.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectproject, region, networkEndpointGroupReturns the specified network endpoint group.
listselectproject, regionfilter, maxResults, orderBy, pageToken, returnPartialSuccessRetrieves the list of regional network endpoint groups available to the specified project in the given region.
aggregated_listselectprojectfilter, includeAllScopes, maxResults, orderBy, pageToken, returnPartialSuccess, serviceProjectNumberRetrieves the list of network endpoint groups and sorts them by zone. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.
insertinsertproject, regionrequestIdCreates a network endpoint group in the specified project using the parameters that are included in the request.
deletedeleteproject, region, networkEndpointGrouprequestIdDeletes the specified network endpoint group. Note that the NEG cannot be deleted if it is configured as a backend of a backend service.
attach_network_endpointsexecproject, region, networkEndpointGrouprequestIdAttach a list of network endpoints to the specified network endpoint group.
detach_network_endpointsexecproject, region, networkEndpointGrouprequestIdDetach the network endpoint from the specified network endpoint group.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
networkEndpointGroupstring
projectstring
regionstring
filterstring
includeAllScopesboolean
maxResultsinteger (uint32)
orderBystring
pageTokenstring
requestIdstring
returnPartialSuccessboolean
serviceProjectNumberstring (int64)

SELECT examples

Returns the specified network endpoint group.

SELECT
id,
name,
annotations,
appEngine,
cloudFunction,
cloudRun,
creationTimestamp,
defaultPort,
description,
kind,
network,
networkEndpointType,
pscData,
pscTargetService,
region,
selfLink,
size,
subnetwork,
zone
FROM google.compute.network_endpoint_groups
WHERE project = '{{ project }}' -- required
AND region = '{{ region }}' -- required
AND networkEndpointGroup = '{{ networkEndpointGroup }}' -- required;

INSERT examples

Creates a network endpoint group in the specified project using the parameters that are included in the request.

INSERT INTO google.compute.network_endpoint_groups (
data__kind,
data__id,
data__creationTimestamp,
data__selfLink,
data__name,
data__description,
data__networkEndpointType,
data__size,
data__region,
data__zone,
data__network,
data__subnetwork,
data__defaultPort,
data__annotations,
data__cloudRun,
data__appEngine,
data__cloudFunction,
data__pscTargetService,
data__pscData,
project,
region,
requestId
)
SELECT
'{{ kind }}',
'{{ id }}',
'{{ creationTimestamp }}',
'{{ selfLink }}',
'{{ name }}',
'{{ description }}',
'{{ networkEndpointType }}',
{{ size }},
'{{ region }}',
'{{ zone }}',
'{{ network }}',
'{{ subnetwork }}',
{{ defaultPort }},
'{{ annotations }}',
'{{ cloudRun }}',
'{{ appEngine }}',
'{{ cloudFunction }}',
'{{ pscTargetService }}',
'{{ pscData }}',
'{{ project }}',
'{{ region }}',
'{{ requestId }}'
RETURNING
id,
name,
clientOperationId,
creationTimestamp,
description,
endTime,
error,
httpErrorMessage,
httpErrorStatusCode,
insertTime,
instancesBulkInsertOperationMetadata,
kind,
operationGroupId,
operationType,
progress,
region,
selfLink,
setCommonInstanceMetadataOperationMetadata,
startTime,
status,
statusMessage,
targetId,
targetLink,
user,
warnings,
zone
;

DELETE examples

Deletes the specified network endpoint group. Note that the NEG cannot be deleted if it is configured as a backend of a backend service.

DELETE FROM google.compute.network_endpoint_groups
WHERE project = '{{ project }}' --required
AND region = '{{ region }}' --required
AND networkEndpointGroup = '{{ networkEndpointGroup }}' --required
AND requestId = '{{ requestId }}';

Lifecycle Methods

Attach a list of network endpoints to the specified network endpoint group.

EXEC google.compute.network_endpoint_groups.attach_network_endpoints 
@project='{{ project }}' --required,
@region='{{ region }}' --required,
@networkEndpointGroup='{{ networkEndpointGroup }}' --required,
@requestId='{{ requestId }}'
@@json=
'{
"networkEndpoints": "{{ networkEndpoints }}"
}';