security_pi_ns
Creates, updates, deletes, gets or lists a security_pi_ns resource.
Overview
| Name | security_pi_ns |
| Type | Resource |
| Id | azure.recovery_services_backup.security_pi_ns |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
expiryTimeInUtcTicks | integer | Expiry time of token. |
securityPIN | string | Security PIN. |
token | string | Token value. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | vault_name, resource_group_name, subscription_id | x-ms-authorization-auxiliary | Get the security PIN. |
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_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
vault_name | string | The name of the recovery services vault. Required. |
x-ms-authorization-auxiliary | string | Default value is None. |
SELECT examples
- get
Get the security PIN.
SELECT
expiryTimeInUtcTicks,
securityPIN,
token
FROM azure.recovery_services_backup.security_pi_ns
WHERE vault_name = '{{ vault_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND x-ms-authorization-auxiliary = '{{ x-ms-authorization-auxiliary }}'
;