public_maintenance_configurations
Creates, updates, deletes, gets or lists a public_maintenance_configurations
resource.
Overview
Name | public_maintenance_configurations |
Type | Resource |
Id | azure.maintenance.public_maintenance_configurations |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
location | string | Gets or sets location of the resource |
properties | object | Gets or sets properties of the resource |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Gets or sets tags of the resource |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
location | string | Gets or sets location of the resource |
properties | object | Gets or sets properties of the resource |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Gets or sets tags of the resource |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceName | ||
list | select | subscriptionId |
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 |
---|---|---|
resourceName | string | Maintenance Configuration Name |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list
OK
SELECT
id,
name,
location,
properties,
systemData,
tags,
type
FROM azure.maintenance.public_maintenance_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;
OK
SELECT
id,
name,
location,
properties,
systemData,
tags,
type
FROM azure.maintenance.public_maintenance_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;