requests
Creates, updates, deletes, gets or lists a requests
resource.
Overview
Name | requests |
Type | Resource |
Id | azure.customer_lockbox.requests |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Retrieval of Customer Lockbox request successful.
Name | Datatype | Description |
---|---|---|
id | string | The Arm resource id of the Lockbox request. |
name | string | The name of the Lockbox request. |
properties | object | The properties that are associated with a lockbox request. |
type | string | The type of the Lockbox request. |
Successfully listed the Lockbox requests under the given subscription.
Name | Datatype | Description |
---|---|---|
id | string | The Arm resource id of the Lockbox request. |
name | string | The name of the Lockbox request. |
properties | object | The properties that are associated with a lockbox request. |
type | string | The type of the Lockbox request. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | requestId , subscriptionId | Get Customer Lockbox request | |
list | select | subscriptionId | $filter | Lists all of the Lockbox requests in the given subscription. |
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 |
---|---|---|
requestId | string | The Lockbox request ID. |
subscriptionId | string | The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000) |
$filter | string | The $filter OData query parameter. Only filter by request status is supported, e.g $filter=properties/status eq 'Pending' |
SELECT
examples
- get
- list
Get Customer Lockbox request
SELECT
id,
name,
properties,
type
FROM azure.customer_lockbox.requests
WHERE requestId = '{{ requestId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Lists all of the Lockbox requests in the given subscription.
SELECT
id,
name,
properties,
type
FROM azure.customer_lockbox.requests
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND $filter = '{{ $filter }}'
;