Skip to main content

limits_label

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

Overview

Namelimits_label
TypeResource
Idgoogleworkspace.drivelabelsv2.limits_label

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringResource name.
fieldLimitsobjectThe limits for fields. (id: GoogleAppsDriveLabelsV2FieldLimits)
maxDeletedFieldsinteger (int32)The maximum number of published fields that can be deleted.
maxDescriptionLengthinteger (int32)The maximum number of characters allowed for the description.
maxDraftRevisionsinteger (int32)The maximum number of draft revisions that will be kept before deleting old drafts.
maxFieldsinteger (int32)The maximum number of fields allowed within the label.
maxTitleLengthinteger (int32)The maximum number of characters allowed for the title.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_labelselectnameGet the constraints on the structure of a label; such as, the maximum number of fields allowed and maximum length of the label title.

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
namestring

SELECT examples

Get the constraints on the structure of a label; such as, the maximum number of fields allowed and maximum length of the label title.

SELECT
name,
fieldLimits,
maxDeletedFields,
maxDescriptionLength,
maxDraftRevisions,
maxFields,
maxTitleLength
FROM googleworkspace.drivelabelsv2.limits_label
WHERE name = '{{ name }}'
;