Skip to main content

settings_by_scopes

Creates, updates, deletes, gets or lists a settings_by_scopes resource.

Overview

Namesettings_by_scopes
TypeResource
Idazure.cost_management.settings_by_scopes

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
create_or_updateINSERTscope, type, data__kindCreate or update a setting within the given scope.

INSERT example

Use the following StackQL query and manifest file to create a new settings_by_scopes resource.

/*+ create */
INSERT INTO azure.cost_management.settings_by_scopes (
scope,
type,
data__kind,
kind
)
SELECT
'{{ scope }}',
'{{ type }}',
'{{ data__kind }}',
'{{ kind }}'
;