specs_additional_spec_content
Creates, updates, deletes, gets or lists a specs_additional_spec_content resource.
Overview
| Name | specs_additional_spec_content |
| Type | Resource |
| Id | google.apihub.specs_additional_spec_content |
Fields
The following fields are returned by SELECT queries:
- fetch_additional_spec_content
| Name | Datatype | Description |
|---|---|---|
additionalSpecContent | object | The additional spec content for the spec. This contains the metadata and the last update time for the additional spec content. (id: GoogleCloudApihubV1AdditionalSpecContent) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
fetch_additional_spec_content | select | projectsId, locationsId, apisId, versionsId, specsId | specContentType | Fetch additional spec content. |
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 |
|---|---|---|
apisId | string | |
locationsId | string | |
projectsId | string | |
specsId | string | |
versionsId | string | |
specContentType | string |
SELECT examples
- fetch_additional_spec_content
Fetch additional spec content.
SELECT
additionalSpecContent
FROM google.apihub.specs_additional_spec_content
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND apisId = '{{ apisId }}' -- required
AND versionsId = '{{ versionsId }}' -- required
AND specsId = '{{ specsId }}' -- required
AND specContentType = '{{ specContentType }}'
;