tagged_objects
Creates, updates, deletes, gets or lists a tagged_objects
resource.
Overview
Name | tagged_objects |
Type | Resource |
Id | linode.tags.tagged_objects |
Fields
The following fields are returned by SELECT
queries:
- get_tagged_objects
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_tagged_objects | select | page , page_size | Returns a paginated list of all objects you've tagged with the specified tag. The response includes a mixed collection of all object types. > 📘 > > This operation can only be accessed by account users with unrestricted access. OAuth scopes. <br /> account:read_only<br /> Learn more... |
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 |
---|---|---|
page | integer | The page of a collection to return. |
page_size | integer | The number of items to return per page. |
SELECT
examples
- get_tagged_objects
Returns a paginated list of all objects you've tagged with the specified tag. The response includes a mixed collection of all object types.
> 📘
>
> This operation can only be accessed by account users with unrestricted access. OAuth scopes.
<br /> account:read_only<br />
Learn more...
SELECT
data,
page,
pages,
results
FROM linode.tags.tagged_objects
WHERE page = '{{ page }}'
AND page_size = '{{ page_size }}';