Microsoft.Automation automationAccounts/compilationjobs

Bicep resource definition

The automationAccounts/compilationjobs resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Automation/automationAccounts/compilationjobs resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Automation/automationAccounts/compilationjobs@2023-05-15-preview' = {
  parent: resourceSymbolicName
  location: 'string'
  name: 'string'
  properties: {
    configuration: {
      name: 'string'
    }
    incrementNodeConfigurationBuild: bool
    parameters: {
      {customized property}: 'string'
    }
  }
  tags: {
    {customized property}: 'string'
  }
}

Property Values

Microsoft.Automation/automationAccounts/compilationjobs

Name Description Value
location Gets or sets the location of the resource. string
name The resource name string (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: automationAccounts
properties Gets or sets the list of compilation job properties. DscCompilationJobCreatePropertiesOrDscCompilationJobProperties (required)
tags Resource tags Dictionary of tag names and values. See Tags in templates

DscCompilationJobCreateParametersTags

Name Description Value

DscCompilationJobCreatePropertiesOrDscCompilationJobProperties

Name Description Value
configuration Gets or sets the configuration. DscConfigurationAssociationProperty (required)
incrementNodeConfigurationBuild If a new build version of NodeConfiguration is required. bool
parameters Gets or sets the parameters of the job. DscCompilationJobCreatePropertiesParameters

DscCompilationJobCreatePropertiesParameters

Name Description Value

DscConfigurationAssociationProperty

Name Description Value
name Gets or sets the name of the Dsc configuration. string

ARM template resource definition

The automationAccounts/compilationjobs resource type can be deployed with operations that target:

Usage Examples

Resource format

To create a Microsoft.Automation/automationAccounts/compilationjobs resource, add the following JSON to your template.

{
  "type": "Microsoft.Automation/automationAccounts/compilationjobs",
  "apiVersion": "2023-05-15-preview",
  "name": "string",
  "location": "string",
  "properties": {
    "configuration": {
      "name": "string"
    },
    "incrementNodeConfigurationBuild": "bool",
    "parameters": {
      "{customized property}": "string"
    }
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.Automation/automationAccounts/compilationjobs

Name Description Value
apiVersion The api version '2023-05-15-preview'
location Gets or sets the location of the resource. string
name The resource name string (required)
properties Gets or sets the list of compilation job properties. DscCompilationJobCreatePropertiesOrDscCompilationJobProperties (required)
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.Automation/automationAccounts/compilationjobs'

DscCompilationJobCreateParametersTags

Name Description Value

DscCompilationJobCreatePropertiesOrDscCompilationJobProperties

Name Description Value
configuration Gets or sets the configuration. DscConfigurationAssociationProperty (required)
incrementNodeConfigurationBuild If a new build version of NodeConfiguration is required. bool
parameters Gets or sets the parameters of the job. DscCompilationJobCreatePropertiesParameters

DscCompilationJobCreatePropertiesParameters

Name Description Value

DscConfigurationAssociationProperty

Name Description Value
name Gets or sets the name of the Dsc configuration. string

Terraform (AzAPI provider) resource definition

The automationAccounts/compilationjobs resource type can be deployed with operations that target:

  • Resource groups For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Automation/automationAccounts/compilationjobs resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Automation/automationAccounts/compilationjobs@2023-05-15-preview"
  name = "string"
  parent_id = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
      configuration = {
        name = "string"
      }
      incrementNodeConfigurationBuild = bool
      parameters = {
        {customized property} = "string"
      }
    }
  }
}

Property Values

Microsoft.Automation/automationAccounts/compilationjobs

Name Description Value
location Gets or sets the location of the resource. string
name The resource name string (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: automationAccounts
properties Gets or sets the list of compilation job properties. DscCompilationJobCreatePropertiesOrDscCompilationJobProperties (required)
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Automation/automationAccounts/compilationjobs@2023-05-15-preview"

DscCompilationJobCreateParametersTags

Name Description Value

DscCompilationJobCreatePropertiesOrDscCompilationJobProperties

Name Description Value
configuration Gets or sets the configuration. DscConfigurationAssociationProperty (required)
incrementNodeConfigurationBuild If a new build version of NodeConfiguration is required. bool
parameters Gets or sets the parameters of the job. DscCompilationJobCreatePropertiesParameters

DscCompilationJobCreatePropertiesParameters

Name Description Value

DscConfigurationAssociationProperty

Name Description Value
name Gets or sets the name of the Dsc configuration. string