Skip to main content

status

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

Overview

Namestatus
TypeResource
Idgoogle.contentwarehouse.status

Fields

NameDatatypeDescription
accessControlModestringAccess control mode.
databaseTypestringDatabase type.
documentCreatorDefaultRolestringThe default role for the person who create a document.
locationstringThe location of the queried project.
qaEnabledbooleanIf the qa is enabled on this project.
statestringState of the project.

Methods

NameAccessible byRequired ParamsDescription
get_statusSELECTlocationsId, projectsIdGet 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 }}';