settings
Creates, updates, deletes, gets or lists a settings
resource.
Overview
Name | settings |
Type | Resource |
Id | azure.cost_management.settings |
Fields
Name | Datatype | Description |
---|---|---|
kind | string | Specifies the kind of settings. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_by_scope | SELECT | scope, type | Get the setting from the given scope by name. |
list | SELECT | scope | List all cost management settings in the requested scope. |
delete_by_scope | DELETE | scope, type | Delete a setting within the given scope. |
SELECT
examples
List all cost management settings in the requested scope.
SELECT
kind
FROM azure.cost_management.settings
WHERE scope = '{{ scope }}';
DELETE
example
Deletes the specified settings
resource.
/*+ delete */
DELETE FROM azure.cost_management.settings
WHERE scope = '{{ scope }}'
AND type = '{{ type }}';