status
Creates, updates, deletes, gets or lists a status
resource.
Overview
Name | status |
Type | Resource |
Id | google.contentwarehouse.status |
Fields
Name | Datatype | Description |
---|---|---|
accessControlMode | string | Access control mode. |
databaseType | string | Database type. |
documentCreatorDefaultRole | string | The default role for the person who create a document. |
location | string | The location of the queried project. |
qaEnabled | boolean | If the qa is enabled on this project. |
state | string | State of the project. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_status | SELECT | locationsId, projectsId | Get the project status. |
SELECT
examples
Get the project status.
SELECT
accessControlMode,
databaseType,
documentCreatorDefaultRole,
location,
qaEnabled,
state
FROM google.contentwarehouse.status
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';