Skip to main content

liens

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

Overview

Nameliens
TypeResource
Idgoogle.cloudresourcemanager.liens

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringA system-generated unique identifier for this Lien. Example: liens/1234abcd
createTimestring (google-datetime)The creation time of this Lien.
originstringA stable, user-visible/meaningful string identifying the origin of the Lien, intended to be inspected programmatically. Maximum length of 200 characters. Example: 'compute.googleapis.com'
parentstringA reference to the resource this Lien is attached to. The server will validate the parent against those for which Liens are supported. Example: projects/1234
reasonstringConcise user-visible strings indicating why an action cannot be performed on a resource. Maximum length of 200 characters. Example: 'Holds production API key'
restrictionsarrayThe types of operations which should be blocked as a result of this Lien. Each value should correspond to an IAM permission. The server will validate the permissions against those for which Liens are supported. An empty list is meaningless and will be rejected. Example: ['resourcemanager.projects.delete']

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectliensIdRetrieve a Lien by name. Callers of this method will require permission on the parent resource. For example, a Lien with a parent of projects/1234 requires permission resourcemanager.projects.get
listselectparent, pageSize, pageTokenList all Liens applied to the parent resource. Callers of this method will require permission on the parent resource. For example, a Lien with a parent of projects/1234 requires permission resourcemanager.projects.get.
createinsertCreate a Lien which applies to the resource denoted by the parent field. Callers of this method will require permission on the parent resource. For example, applying to projects/1234 requires permission resourcemanager.projects.updateLiens. NOTE: Some resources may limit the number of Liens which may be applied.
deletedeleteliensIdDelete a Lien by name. Callers of this method will require permission on the parent resource. For example, a Lien with a parent of projects/1234 requires permission resourcemanager.projects.updateLiens.

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
liensIdstring
pageSizeinteger (int32)
pageTokenstring
parentstring

SELECT examples

Retrieve a Lien by name. Callers of this method will require permission on the parent resource. For example, a Lien with a parent of projects/1234 requires permission resourcemanager.projects.get

SELECT
name,
createTime,
origin,
parent,
reason,
restrictions
FROM google.cloudresourcemanager.liens
WHERE liensId = '{{ liensId }}' -- required;

INSERT examples

Create a Lien which applies to the resource denoted by the parent field. Callers of this method will require permission on the parent resource. For example, applying to projects/1234 requires permission resourcemanager.projects.updateLiens. NOTE: Some resources may limit the number of Liens which may be applied.

INSERT INTO google.cloudresourcemanager.liens (
data__name,
data__parent,
data__restrictions,
data__reason,
data__origin,
data__createTime
)
SELECT
'{{ name }}',
'{{ parent }}',
'{{ restrictions }}',
'{{ reason }}',
'{{ origin }}',
'{{ createTime }}'
RETURNING
name,
createTime,
origin,
parent,
reason,
restrictions
;

DELETE examples

Delete a Lien by name. Callers of this method will require permission on the parent resource. For example, a Lien with a parent of projects/1234 requires permission resourcemanager.projects.updateLiens.

DELETE FROM google.cloudresourcemanager.liens
WHERE liensId = '{{ liensId }}' --required;