artifacts_contents
Creates, updates, deletes, gets or lists a artifacts_contents
resource.
Overview
Name | artifacts_contents |
Type | Resource |
Id | google.apigeeregistry.artifacts_contents |
Fields
Name | Datatype | Description |
---|---|---|
contentType | string | The HTTP Content-Type header value specifying the content type of the body. |
data | string | The HTTP request/response body as raw binary. |
extensions | array | Application specific response metadata. Must be set in the first response for streaming APIs. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_apis_artifacts_get_contents | SELECT | apisId, artifactsId, locationsId, projectsId | Returns the contents of a specified artifact. If artifacts are stored with GZip compression, the default behavior is to return the artifact uncompressed (the mime_type response field indicates the exact format returned). |
projects_locations_apis_deployments_artifacts_get_contents | SELECT | apisId, artifactsId, deploymentsId, locationsId, projectsId | Returns the contents of a specified artifact. If artifacts are stored with GZip compression, the default behavior is to return the artifact uncompressed (the mime_type response field indicates the exact format returned). |
projects_locations_apis_versions_artifacts_get_contents | SELECT | apisId, artifactsId, locationsId, projectsId, versionsId | Returns the contents of a specified artifact. If artifacts are stored with GZip compression, the default behavior is to return the artifact uncompressed (the mime_type response field indicates the exact format returned). |
projects_locations_apis_versions_specs_artifacts_get_contents | SELECT | apisId, artifactsId, locationsId, projectsId, specsId, versionsId | Returns the contents of a specified artifact. If artifacts are stored with GZip compression, the default behavior is to return the artifact uncompressed (the mime_type response field indicates the exact format returned). |
projects_locations_artifacts_get_contents | SELECT | artifactsId, locationsId, projectsId | Returns the contents of a specified artifact. If artifacts are stored with GZip compression, the default behavior is to return the artifact uncompressed (the mime_type response field indicates the exact format returned). |
SELECT
examples
Returns the contents of a specified artifact. If artifacts are stored with GZip compression, the default behavior is to return the artifact uncompressed (the mime_type response field indicates the exact format returned).
SELECT
contentType,
data,
extensions
FROM google.apigeeregistry.artifacts_contents
WHERE artifactsId = '{{ artifactsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';