Skip to main content

scheduled_actions_by_scopes

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

Overview

Namescheduled_actions_by_scopes
TypeResource
Idazure.cost_management.scheduled_actions_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_updateINSERTname, scopeCreate or update a shared scheduled action within the given scope.

INSERT example

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

/*+ create */
INSERT INTO azure.cost_management.scheduled_actions_by_scopes (
name,
scope,
kind,
systemData,
properties
)
SELECT
'{{ name }}',
'{{ scope }}',
'{{ kind }}',
'{{ systemData }}',
'{{ properties }}'
;