Skip to main content

object_data_types

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

Overview

Nameobject_data_types
TypeResource
Idazure.automation.object_data_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
list_fields_by_module_and_typeselectresource_group_name, automation_account_name, module_name, type_name, subscription_idRetrieve a list of fields of a given type identified by module name.
list_fields_by_typeselectresource_group_name, automation_account_name, type_name, subscription_idRetrieve 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
automation_account_namestringThe name of the automation account. Required.
module_namestringThe module name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
type_namestringThe name of type. Required.

SELECT examples

Retrieve a list of fields of a given type identified by module name.

SELECT
name,
type
FROM azure.automation.object_data_types
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND automation_account_name = '{{ automation_account_name }}' -- required
AND module_name = '{{ module_name }}' -- required
AND type_name = '{{ type_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;