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 (int64) | 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 | vaultName , resourceGroupName , subscriptionId | api-version , 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 |
---|---|---|
resourceGroupName | string | The name of the resource group where the recovery services vault is present. |
subscriptionId | string | The subscription Id. |
vaultName | string | The name of the recovery services vault. |
api-version | string | Client Api Version. |
x-ms-authorization-auxiliary | string |
SELECT
examples
- get
Get the security PIN.
SELECT
expiryTimeInUtcTicks,
securityPIN,
token
FROM azure.recovery_services_backup.security_pi_ns
WHERE vaultName = '{{ vaultName }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
AND x-ms-authorization-auxiliary = '{{ x-ms-authorization-auxiliary }}'
;