Version 4.0.24.14
Search all key/value pairs in a namespace for matching criteria.
Returns an array of artifacts matching the specified search criteria.
Key search patterns use case-insensitive matching and can contain %
and _
as SQL LIKE pattern match wildcard expressions.
The parameters min_size
and max_size
can be used individually or together.
min_size
finds artifacts with sizes greater than or equal to its value
max_size
finds artifacts with sizes less than or equal to its value
- using both parameters restricts the minimum and maximum size range for artifacts
NOTE: Artifacts are always returned in alphanumeric order by key.
Get a single artifact by namespace and key with artifact
Note: The artifact storage API can only be used by Looker-built extensions.
Request
GET
/artifact/{namespace}/search
Expand HTTP Path definition...
namespace
string
Artifact storage namespace
Expand HTTP Query definition...
fields
string
Comma-delimited names of fields to return in responses. Omit for all fields
key
string
Key pattern to match
user_ids
string
Ids of users who created or updated the artifact (comma-delimited list)
min_size
integer
Minimum storage size of the artifact
max_size
integer
Maximum storage size of the artifact
limit
integer
Number of results to return. (used with offset)
offset
integer
Number of results to skip before returning any. (used with limit)
Response
200: Artifacts
key
string
Key of value to store. Namespace + Key must be unique.
value
string
Value to store.
content_type
string
MIME type of content. This can only be used to override content that is detected as text/plain. Needed to set application/json content types, which are analyzed as plain text.
version
lock
integer
Version number of the stored value. The version must be provided for any updates to an existing artifact.
namespace
lock
string
Artifact storage namespace.
created_at
lock
string
Timestamp when this artifact was created.
updated_at
lock
string
Timestamp when this artifact was updated.
value_size
lock
integer
Size (in bytes) of the stored value.
created_by_userid
lock
string
User id of the artifact creator.
updated_by_userid
lock
string
User id of the artifact updater.
400: Bad Request
message
lock
string
Error details
documentation_url
lock
string
Documentation link
404: Not Found
message
lock
string
Error details
documentation_url
lock
string
Documentation link
422: Validation Error
message
lock
string
Error details
Expand ValidationErrorDetail definition...
field
lock
string
Field with error
code
lock
string
Error code
message
lock
string
Error info message
documentation_url
lock
string
Documentation link
documentation_url
lock
string
Documentation link
429: Too Many Requests
message
lock
string
Error details
documentation_url
lock
string
Documentation link