Skip to main content

object_data_types_fields_by_types

Creates, updates, deletes, gets or lists an object_data_types_fields_by_types resource.

Overview

Nameobject_data_types_fields_by_types
TypeResource
Idazure.automation.object_data_types_fields_by_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringGets or sets the name of the field.
typestringGets or sets the type of the field.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, automationAccountName, typeName, subscriptionIdRetrieve a list of fields of a given type across all accessible modules.

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
automationAccountNamestringThe name of the automation account.
resourceGroupNamestringName of an Azure Resource group.
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
typeNamestringThe name of type.

SELECT examples

Retrieve a list of fields of a given type across all accessible modules.

SELECT
name,
type
FROM azure.automation.object_data_types_fields_by_types
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND typeName = '{{ typeName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;