shelves
Creates, updates, deletes, gets or lists a shelves
resource.
Overview
Name | shelves |
Type | Resource |
Id | google.libraryagent.shelves |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. The resource name of the shelf. Shelf names have the form shelves/{shelf_id} . The name is ignored when creating a shelf. |
theme | string | The theme of the shelf |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | shelvesId | Gets a shelf. Returns NOT_FOUND if the shelf does not exist. |
list | SELECT |
| Lists shelves. The order is unspecified but deterministic. Newly created shelves will not necessarily be added to the end of this list. |
SELECT
examples
Lists shelves. The order is unspecified but deterministic. Newly created shelves will not necessarily be added to the end of this list.
SELECT
name,
theme
FROM google.libraryagent.shelves
;