requests
Creates, updates, deletes, gets or lists a requests
resource.
Overview
Name | requests |
Type | Resource |
Id | azure.customer_lockbox.requests |
Fields
- vw_requests
- requests
Name | Datatype | Description |
---|---|---|
id | text | The Arm resource id of the Lockbox request. |
name | text | The name of the Lockbox request. |
access_level | text | field from the properties object |
created_date_time | text | field from the properties object |
duration | text | field from the properties object |
expiration_date_time | text | field from the properties object |
justification | text | field from the properties object |
requestId | text | field from the properties object |
request_id | text | field from the properties object |
resource_ids | text | field from the properties object |
resource_type | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
subscription_id | text | field from the properties object |
support_case_url | text | field from the properties object |
support_request | text | field from the properties object |
type | text | The type of the Lockbox request. |
workitemsource | text | field from the properties object |
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | requestId, subscriptionId | Get Customer Lockbox request |
list | SELECT | subscriptionId | Lists all of the Lockbox requests in the given subscription. |
SELECT
examples
Lists all of the Lockbox requests in the given subscription.
- vw_requests
- requests
SELECT
id,
name,
access_level,
created_date_time,
duration,
expiration_date_time,
justification,
requestId,
request_id,
resource_ids,
resource_type,
status,
subscriptionId,
subscription_id,
support_case_url,
support_request,
type,
workitemsource
FROM azure.customer_lockbox.vw_requests
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.customer_lockbox.requests
WHERE subscriptionId = '{{ subscriptionId }}';