management_configurations
Creates, updates, deletes, gets or lists a management_configurations
resource.
Overview
Name | management_configurations |
Type | Resource |
Id | azure.operations_management.management_configurations |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_subscription
OK response definition.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
location | string | Resource location |
properties | object | Properties for ManagementConfiguration object supported by the OperationsManagement resource provider. |
type | string | Resource type. |
OK response definition.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
location | string | Resource location |
properties | object | Properties for ManagementConfiguration object supported by the OperationsManagement resource provider. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , managementConfigurationName | Retrieves the user ManagementConfiguration. | |
list_by_subscription | select | subscriptionId | Retrieves the ManagementConfigurations list. | |
create_or_update | insert | subscriptionId , resourceGroupName , managementConfigurationName | Creates or updates the ManagementConfiguration. | |
delete | delete | subscriptionId , resourceGroupName , managementConfigurationName | Deletes the ManagementConfiguration in the 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 |
---|---|---|
managementConfigurationName | string | User Management Configuration Name. |
resourceGroupName | string | The name of the resource group to get. The name is case insensitive. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
- list_by_subscription
Retrieves the user ManagementConfiguration.
SELECT
id,
name,
location,
properties,
type
FROM azure.operations_management.management_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managementConfigurationName = '{{ managementConfigurationName }}' -- required
;
Retrieves the ManagementConfigurations list.
SELECT
id,
name,
location,
properties,
type
FROM azure.operations_management.management_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT
examples
- create_or_update
- Manifest
Creates or updates the ManagementConfiguration.
INSERT INTO azure.operations_management.management_configurations (
data__location,
data__properties,
subscriptionId,
resourceGroupName,
managementConfigurationName
)
SELECT
'{{ location }}',
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ managementConfigurationName }}'
RETURNING
id,
name,
location,
properties,
type
;
# Description fields are for documentation purposes
- name: management_configurations
props:
- name: subscriptionId
value: string
description: Required parameter for the management_configurations resource.
- name: resourceGroupName
value: string
description: Required parameter for the management_configurations resource.
- name: managementConfigurationName
value: string
description: Required parameter for the management_configurations resource.
- name: location
value: string
description: |
Resource location
- name: properties
value: object
description: |
Properties for ManagementConfiguration object supported by the OperationsManagement resource provider.
DELETE
examples
- delete
Deletes the ManagementConfiguration in the subscription.
DELETE FROM azure.operations_management.management_configurations
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND managementConfigurationName = '{{ managementConfigurationName }}' --required
;