limits_label
Creates, updates, deletes, gets or lists a limits_label resource.
Overview
| Name | limits_label |
| Type | Resource |
| Id | googleworkspace.drivelabelsv2.limits_label |
Fields
The following fields are returned by SELECT queries:
- get_label
| Name | Datatype | Description |
|---|---|---|
name | string | Resource name. |
fieldLimits | object | The limits for fields. (id: GoogleAppsDriveLabelsV2FieldLimits) |
maxDeletedFields | integer (int32) | The maximum number of published fields that can be deleted. |
maxDescriptionLength | integer (int32) | The maximum number of characters allowed for the description. |
maxDraftRevisions | integer (int32) | The maximum number of draft revisions that will be kept before deleting old drafts. |
maxFields | integer (int32) | The maximum number of fields allowed within the label. |
maxTitleLength | integer (int32) | The maximum number of characters allowed for the title. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_label | select | name | Get 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.
| Name | Datatype | Description |
|---|---|---|
name | string |
SELECT examples
- get_label
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 }}'
;