- HTTP 请求
- 查询参数
- 请求正文
- 响应正文
- 授权范围
- FieldLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表示法
- TextLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表示法
- LongTextLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表示法
- IntegerLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表示法
- DateLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表示法
- UserLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表示法
- ListLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表示法
- SelectionLimits
<ph type="x-smartling-placeholder">
- </ph>
- JSON 表示法
- 试试看!
获取标签结构的约束条件;例如,允许的字段数上限和标签标题的最大长度。
HTTP 请求
GET https://drivelabels.googleapis.com/v2beta/limits/label
网址采用 gRPC 转码语法。
查询参数
参数 | |
---|---|
name |
必需。标签修订版本资源名称必须为:“limits/label” |
请求正文
请求正文必须为空。
响应正文
用于控制标签结构的标签限制条件;例如,允许的字段数上限和标签标题的最大长度。
如果成功,响应正文将包含结构如下的数据:
JSON 表示法 |
---|
{
"name": string,
"maxTitleLength": integer,
"maxDescriptionLength": integer,
"maxFields": integer,
"maxDeletedFields": integer,
"maxDraftRevisions": integer,
"fieldLimits": {
object ( |
字段 | |
---|---|
name |
资源名称。 |
maxTitleLength |
标题允许的字符数上限。 |
maxDescriptionLength |
说明允许使用的字符数上限。 |
maxFields |
标签中允许的字段数量上限。 |
maxDeletedFields |
可以删除的已发布字段数量上限。 |
maxDraftRevisions |
在删除旧草稿前保留的草稿修订版本数量上限。 |
fieldLimits |
字段的限制。 |
授权范围
需要以下 OAuth 范围之一:
https://www.googleapis.com/auth/drive.labels
https://www.googleapis.com/auth/drive.labels.readonly
https://www.googleapis.com/auth/drive.admin.labels
https://www.googleapis.com/auth/drive.admin.labels.readonly
有关详情,请参阅授权指南。
FieldLimits
用于控制字段结构的字段常量;例如最大标题长度、最小和最大字段值或长度等。
JSON 表示法 |
---|
{ "maxIdLength": integer, "maxDisplayNameLength": integer, "maxDescriptionLength": integer, "textLimits": { object ( |
字段 | |
---|---|
maxIdLength |
ID 的长度上限。 |
maxDisplayNameLength |
字段标题的限制。 |
maxDescriptionLength |
字段说明(也称为帮助文本)的限制。 |
textLimits |
指定 Field.Type 的相关限制。文本字段限制。 |
longTextLimits |
长文本字段限制。 |
integerLimits |
整数字段限制。 |
dateLimits |
日期字段限制。 |
userLimits |
用户字段限制。 |
selectionLimits |
选择字段限制。 |
TextLimits
文本字段类型的限制。
JSON 表示法 |
---|
{ "minLength": integer, "maxLength": integer } |
字段 | |
---|---|
minLength |
文本字段类型允许的长度下限。 |
maxLength |
文本字段类型允许的最大长度。 |
LongTextLimits
长文本字段类型的限制。
JSON 表示法 |
---|
{ "minLength": integer, "maxLength": integer } |
字段 | |
---|---|
minLength |
长文本字段类型允许的长度下限。 |
maxLength |
长文本字段类型允许的最大长度。 |
IntegerLimits
整数字段类型的限制。
JSON 表示法 |
---|
{ "minValue": string, "maxValue": string } |
字段 | |
---|---|
minValue |
整数字段类型的最小值。 |
maxValue |
整数字段类型的最大值。 |
DateLimits
日期字段类型的限制。
JSON 表示法 |
---|
{ "minValue": { object ( |
字段 | |
---|---|
minValue |
日期字段类型的最小值。 |
maxValue |
日期字段类型的最大值。 |
UserLimits
针对 Field.Type.USER 的限制。
JSON 表示法 |
---|
{
"listLimits": {
object ( |
字段 | |
---|---|
listLimits |
针对字段类型的列表变体的限制。 |
ListLimits
针对字段类型的列表变体的限制。
JSON 表示法 |
---|
{ "maxEntries": integer } |
字段 | |
---|---|
maxEntries |
字段类型允许的值数量上限。 |
SelectionLimits
选项字段类型的限制。
JSON 表示法 |
---|
{
"listLimits": {
object ( |
字段 | |
---|---|
listLimits |
针对字段类型的列表变体的限制。 |
maxIdLength |
选项的 ID 长度上限。 |
maxDisplayNameLength |
显示名称的长度上限。 |
maxChoices |
选项数量上限。 |
maxDeletedChoices |
已删除选项的数量上限。 |