Skip to main content

check_resource_names

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

Overview

Namecheck_resource_names
TypeResource
Idazure.resource.check_resource_names

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringName of Resource.
statusstringIs the resource name Allowed or Reserved. Known values are: "Allowed" and "Reserved". (Allowed, Reserved)
typestringType of Resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
check_resource_nameselectChecks resource name validity. A resource name is valid if it is not a reserved word, does not contains a reserved word and does not start with a reserved word.

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.

NameDatatypeDescription

SELECT examples

Checks resource name validity. A resource name is valid if it is not a reserved word, does not contains a reserved word and does not start with a reserved word.

SELECT
name,
status,
type
FROM azure.resource.check_resource_names
;