attestation_statuses
Creates, updates, deletes, gets or lists an attestation_statuses resource.
Overview
| Name | attestation_statuses |
| Type | Resource |
| Id | azure_stack.azure_stack_hci_vm.attestation_statuses |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
attestDiskSecurityEncryptionType | string | The managed disk security encryption type from attestation token. This only applies to Confidential VM. Known values are: "NonPersistedTPM" and "Unknown". (NonPersistedTPM, Unknown) |
attestHardwarePlatform | string | The hardware platform information from attestation token. This only applies to Confidential VM. Known values are: "SEVSNP" and "Unknown". (SEVSNP, Unknown) |
attestSecureBootEnabled | string | The status of whether secure boot is enabled. Known values are: "Enabled", "Disabled", and "Unknown". (Enabled, Disabled, Unknown) |
attestationCertValidated | string | The status of whether attestation certificate is validated. Known values are: "Valid", "Invalid", and "Unknown". (Valid, Invalid, Unknown) |
bootIntegrityValidated | string | The status of whether the list of boot integrity properties is validated. Known values are: "Valid", "Invalid", and "Unknown". (Valid, Invalid, Unknown) |
errorMessage | string | The error message of attestation validation and parsing. |
healthStatus | string | The health status of attestation validation and parsing. Known values are: "Pending", "Healthy", "Unhealthy", and "Unknown". (Pending, Healthy, Unhealthy, Unknown) |
linuxKernelVersion | string | kernel version string for Linux VM. |
provisioningState | string | Provisioning state of the virtual machine instance. Known values are: "Succeeded", "Failed", "InProgress", "Accepted", "Deleting", and "Canceled". (Succeeded, Failed, InProgress, Accepted, Deleting, Canceled) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
timestamp | string | The time stamp of the last time attestation token is validated by relying party service. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_uri | Implements AttestationStatus GET method. |
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 |
|---|---|---|
resource_uri | string | The fully qualified Azure Resource manager identifier of the resource. Required. |
SELECT examples
- get
Implements AttestationStatus GET method.
SELECT
id,
name,
attestDiskSecurityEncryptionType,
attestHardwarePlatform,
attestSecureBootEnabled,
attestationCertValidated,
bootIntegrityValidated,
errorMessage,
healthStatus,
linuxKernelVersion,
provisioningState,
systemData,
timestamp,
type
FROM azure_stack.azure_stack_hci_vm.attestation_statuses
WHERE resource_uri = '{{ resource_uri }}' -- required
;