liens
Creates, updates, deletes, gets or lists a liens
resource.
Overview
Name | liens |
Type | Resource |
Id | google.cloudresourcemanager.liens |
Fields
Name | Datatype | Description |
---|---|---|
name | string | A system-generated unique identifier for this Lien. Example: liens/1234abcd |
createTime | string | The creation time of this Lien. |
origin | string | A 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' |
parent | string | A 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 |
reason | string | Concise user-visible strings indicating why an action cannot be performed on a resource. Maximum length of 200 characters. Example: 'Holds production API key' |
restrictions | array | The 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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | liensId | 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 |
list | SELECT |
| List 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 . |
create | INSERT |
| 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. |
delete | DELETE | liensId | 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 . |
SELECT
examples
List 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
.
SELECT
name,
createTime,
origin,
parent,
reason,
restrictions
FROM google.cloudresourcemanager.liens
;
INSERT
example
Use the following StackQL query and manifest file to create a new liens
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO google.cloudresourcemanager.liens (
name,
parent,
restrictions,
reason,
origin
)
SELECT
'{{ name }}',
'{{ parent }}',
'{{ restrictions }}',
'{{ reason }}',
'{{ origin }}'
;
- name: your_resource_model_name
props:
- name: name
value: string
- name: parent
value: string
- name: restrictions
value:
- string
- name: reason
value: string
- name: origin
value: string
- name: createTime
value: string
DELETE
example
Deletes the specified liens
resource.
/*+ delete */
DELETE FROM google.cloudresourcemanager.liens
WHERE liensId = '{{ liensId }}';