Skip to main content

boundary

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

Overview

Nameboundary
TypeResource
Idgoogle.apphub.boundary

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringIdentifier. The resource name of the boundary. Format: "projects/{project}/locations/{location}/boundary"
createTimestring (google-datetime)Output only. Create time.
crmNodestringOptional. The resource name of the CRM node being attached to the boundary. Format: projects/{project-number} or projects/{project-id}
typestringOutput only. Boundary type.
updateTimestring (google-datetime)Output only. Update time.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_boundaryselectprojectsId, locationsIdGets a Boundary.
update_boundaryupdateprojectsId, locationsIdrequestId, updateMaskUpdates a Boundary.

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
locationsIdstring
projectsIdstring
requestIdstring
updateMaskstring (google-fieldmask)

SELECT examples

Gets a Boundary.

SELECT
name,
createTime,
crmNode,
type,
updateTime
FROM google.apphub.boundary
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
;

UPDATE examples

Updates a Boundary.

UPDATE google.apphub.boundary
SET
data__name = '{{ name }}',
data__crmNode = '{{ crmNode }}'
WHERE
projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND requestId = '{{ requestId}}'
AND updateMask = '{{ updateMask}}'
RETURNING
name,
done,
error,
metadata,
response;