Skip to main content

attestation_statuses

Creates, updates, deletes, gets or lists an attestation_statuses resource.

Overview

Nameattestation_statuses
TypeResource
Idazure_stack.azure_stack_hci_vm.attestation_statuses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
attestDiskSecurityEncryptionTypestringThe managed disk security encryption type from attestation token. This only applies to Confidential VM. Known values are: "NonPersistedTPM" and "Unknown". (NonPersistedTPM, Unknown)
attestHardwarePlatformstringThe hardware platform information from attestation token. This only applies to Confidential VM. Known values are: "SEVSNP" and "Unknown". (SEVSNP, Unknown)
attestSecureBootEnabledstringThe status of whether secure boot is enabled. Known values are: "Enabled", "Disabled", and "Unknown". (Enabled, Disabled, Unknown)
attestationCertValidatedstringThe status of whether attestation certificate is validated. Known values are: "Valid", "Invalid", and "Unknown". (Valid, Invalid, Unknown)
bootIntegrityValidatedstringThe status of whether the list of boot integrity properties is validated. Known values are: "Valid", "Invalid", and "Unknown". (Valid, Invalid, Unknown)
errorMessagestringThe error message of attestation validation and parsing.
healthStatusstringThe health status of attestation validation and parsing. Known values are: "Pending", "Healthy", "Unhealthy", and "Unknown". (Pending, Healthy, Unhealthy, Unknown)
linuxKernelVersionstringkernel version string for Linux VM.
provisioningStatestringProvisioning state of the virtual machine instance. Known values are: "Succeeded", "Failed", "InProgress", "Accepted", "Deleting", and "Canceled". (Succeeded, Failed, InProgress, Accepted, Deleting, Canceled)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
timestampstringThe time stamp of the last time attestation token is validated by relying party service.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_uriImplements 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.

NameDatatypeDescription
resource_uristringThe fully qualified Azure Resource manager identifier of the resource. Required.

SELECT examples

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
;