billing_containers
Creates, updates, deletes, gets or lists a billing_containers
resource.
Overview
Name | billing_containers |
Type | Resource |
Id | azure.device_registry.billing_containers |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_subscription
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
etag | string | Resource ETag |
properties | object | The resource-specific properties for this resource. |
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
etag | string | Resource ETag |
properties | object | The resource-specific properties for this resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , billingContainerName | Get a BillingContainer | |
list_by_subscription | select | subscriptionId | List BillingContainer resources by subscription ID |
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 |
---|---|---|
billingContainerName | string | Name of the billing container. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list_by_subscription
Get a BillingContainer
SELECT
etag,
properties
FROM azure.device_registry.billing_containers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND billingContainerName = '{{ billingContainerName }}' -- required
;
List BillingContainer resources by subscription ID
SELECT
etag,
properties
FROM azure.device_registry.billing_containers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;