settings_by_scopes
Creates, updates, deletes, gets or lists a settings_by_scopes
resource.
Overview
Name | settings_by_scopes |
Type | Resource |
Id | azure.cost_management.settings_by_scopes |
Fields
The following fields are returned by SELECT
queries:
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
create_or_update | insert | scope , type , data__kind | Create or update a setting within the given scope. |
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 |
---|---|---|
scope | string | The scope associated with this setting. This includes 'subscriptions/{subscriptionId}' for subscription scope, 'providers/Microsoft.Billing/billingAccounts/{billingAccountId}' for Billing Account scope, 'providers/Microsoft.Billing/billingAccounts/{billingAccountId}/billingProfiles/{billingProfileId}' for billing profile scope. |
type | string | Setting type. |
INSERT
examples
- create_or_update
- Manifest
Create or update a setting within the given scope.
INSERT INTO azure.cost_management.settings_by_scopes (
data__kind,
scope,
type
)
SELECT
'{{ kind }}' /* required */,
'{{ scope }}',
'{{ type }}'
RETURNING
kind
;
# Description fields are for documentation purposes
- name: settings_by_scopes
props:
- name: scope
value: string
description: Required parameter for the settings_by_scopes resource.
- name: type
value: string
description: Required parameter for the settings_by_scopes resource.
- name: kind
value: string
description: |
Specifies the kind of settings.
valid_values: ['taginheritance']