Skip to main content

cloud_manifest_files

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

Overview

Namecloud_manifest_files
TypeResource
Idazure_stack.azure_stack.cloud_manifest_files

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of the resource.
namestringName of the resource.
etagstringThe entity tag used for optimistic concurrency when modifying the resource.
propertiesobjectCloud specific manifest data.
typestringType of Resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectverificationVersionversionCreationDateReturns a cloud specific manifest JSON file.
listselectReturns a cloud specific manifest JSON file with latest version.

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
verificationVersionstringSigning verification key version.
versionCreationDatestringSigning verification key version creation date.

SELECT examples

Returns a cloud specific manifest JSON file.

SELECT
id,
name,
etag,
properties,
type
FROM azure_stack.azure_stack.cloud_manifest_files
WHERE verificationVersion = '{{ verificationVersion }}' -- required
AND versionCreationDate = '{{ versionCreationDate }}'
;