Skip to main content

specs_additional_spec_content

Creates, updates, deletes, gets or lists a specs_additional_spec_content resource.

Overview

Namespecs_additional_spec_content
TypeResource
Idgoogle.apihub.specs_additional_spec_content

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
additionalSpecContentobjectThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
fetch_additional_spec_contentselectprojectsId, locationsId, apisId, versionsId, specsIdspecContentTypeFetch 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.

NameDatatypeDescription
apisIdstring
locationsIdstring
projectsIdstring
specsIdstring
versionsIdstring
specContentTypestring

SELECT examples

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 }}'
;