Skip to main content

cloud_manifest_file

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

Overview

Namecloud_manifest_file
TypeResource
Idazure_stack.azure_stack.cloud_manifest_file

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectverification_versionversionCreationDateReturns 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
verification_versionstringSigning verification key version. Required.
versionCreationDatestringSigning verification key version creation date. Default value is None.

SELECT examples

Returns a cloud specific manifest JSON file.

SELECT
id,
name,
deploymentData,
etag,
signature,
type
FROM azure_stack.azure_stack.cloud_manifest_file
WHERE verification_version = '{{ verification_version }}' -- required
AND versionCreationDate = '{{ versionCreationDate }}'
;