Skip to main content

target_grpc_proxies

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

Overview

Nametarget_grpc_proxies
TypeResource
Idgoogle.compute.target_grpc_proxies

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
idstring (uint64)[Output Only] The unique identifier for the resource type. The server generates this identifier.
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. (pattern: a-z?)
creationTimestampstring[Output Only] Creation timestamp in RFC3339 text format.
descriptionstringAn optional description of this resource. Provide this property when you create the resource.
fingerprintstring (byte)Fingerprint of this resource. A hash of the contents stored in this object. This field is used in optimistic locking. This field will be ignored when inserting a TargetGrpcProxy. An up-to-date fingerprint must be provided in order to patch/update the TargetGrpcProxy; otherwise, the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve the TargetGrpcProxy.
kindstring[Output Only] Type of the resource. Always compute#targetGrpcProxy for target grpc proxies. (default: compute#targetGrpcProxy)
selfLinkstring[Output Only] Server-defined URL for the resource.
selfLinkWithIdstring[Output Only] Server-defined URL with id for the resource.
urlMapstringURL to the UrlMap resource that defines the mapping from URL to the BackendService. The protocol field in the BackendService must be set to GRPC.
validateForProxylessbooleanIf true, indicates that the BackendServices referenced by the urlMap may be accessed by gRPC applications without using a sidecar proxy. This will enable configuration checks on urlMap and its referenced BackendServices to not allow unsupported features. A gRPC application must use "xds:///" scheme in the target URI of the service it is connecting to. If false, indicates that the BackendServices referenced by the urlMap will be accessed by gRPC applications via a sidecar proxy. In this case, a gRPC application must not use "xds:///" scheme in the target URI of the service it is connecting to

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectproject, targetGrpcProxyReturns the specified TargetGrpcProxy resource in the given scope.
listselectprojectfilter, maxResults, orderBy, pageToken, returnPartialSuccessLists the TargetGrpcProxies for a project in the given scope.
insertinsertprojectrequestIdCreates a TargetGrpcProxy in the specified project in the given scope using the parameters that are included in the request.
patchupdateproject, targetGrpcProxyrequestIdPatches the specified TargetGrpcProxy resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.
deletedeleteproject, targetGrpcProxyrequestIdDeletes the specified TargetGrpcProxy in the given scope

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
projectstring
targetGrpcProxystring
filterstring
maxResultsinteger (uint32)
orderBystring
pageTokenstring
requestIdstring
returnPartialSuccessboolean

SELECT examples

Returns the specified TargetGrpcProxy resource in the given scope.

SELECT
id,
name,
creationTimestamp,
description,
fingerprint,
kind,
selfLink,
selfLinkWithId,
urlMap,
validateForProxyless
FROM google.compute.target_grpc_proxies
WHERE project = '{{ project }}' -- required
AND targetGrpcProxy = '{{ targetGrpcProxy }}' -- required;

INSERT examples

Creates a TargetGrpcProxy in the specified project in the given scope using the parameters that are included in the request.

INSERT INTO google.compute.target_grpc_proxies (
data__kind,
data__id,
data__creationTimestamp,
data__name,
data__description,
data__selfLink,
data__selfLinkWithId,
data__urlMap,
data__validateForProxyless,
data__fingerprint,
project,
requestId
)
SELECT
'{{ kind }}',
'{{ id }}',
'{{ creationTimestamp }}',
'{{ name }}',
'{{ description }}',
'{{ selfLink }}',
'{{ selfLinkWithId }}',
'{{ urlMap }}',
{{ validateForProxyless }},
'{{ fingerprint }}',
'{{ project }}',
'{{ 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
;

UPDATE examples

Patches the specified TargetGrpcProxy resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

UPDATE google.compute.target_grpc_proxies
SET
data__kind = '{{ kind }}',
data__id = '{{ id }}',
data__creationTimestamp = '{{ creationTimestamp }}',
data__name = '{{ name }}',
data__description = '{{ description }}',
data__selfLink = '{{ selfLink }}',
data__selfLinkWithId = '{{ selfLinkWithId }}',
data__urlMap = '{{ urlMap }}',
data__validateForProxyless = {{ validateForProxyless }},
data__fingerprint = '{{ fingerprint }}'
WHERE
project = '{{ project }}' --required
AND targetGrpcProxy = '{{ targetGrpcProxy }}' --required
AND requestId = '{{ 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 TargetGrpcProxy in the given scope

DELETE FROM google.compute.target_grpc_proxies
WHERE project = '{{ project }}' --required
AND targetGrpcProxy = '{{ targetGrpcProxy }}' --required
AND requestId = '{{ requestId }}';