cloud_manifest_files
Creates, updates, deletes, gets or lists a cloud_manifest_files
resource.
Overview
Name | cloud_manifest_files |
Type | Resource |
Id | azure_stack.azure_stack.cloud_manifest_files |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
etag | string | The entity tag used for optimistic concurrency when modifying the resource. |
properties | object | Cloud specific manifest data. |
type | string | Type of Resource. |
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
etag | string | The entity tag used for optimistic concurrency when modifying the resource. |
properties | object | Cloud specific manifest data. |
type | string | Type of Resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | verificationVersion | versionCreationDate | Returns a cloud specific manifest JSON file. |
list | select | Returns 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.
Name | Datatype | Description |
---|---|---|
verificationVersion | string | Signing verification key version. |
versionCreationDate | string | Signing verification key version creation date. |
SELECT
examples
- get
- list
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 }}'
;
Returns a cloud specific manifest JSON file with latest version.
SELECT
id,
name,
etag,
properties,
type
FROM azure_stack.azure_stack.cloud_manifest_files
;