Share via


ExportQuery Class

Definition

Export parameter for resources queried by ARG (Azure Resource Graph)

[System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Terraform.Models.ExportQueryTypeConverter))]
public class ExportQuery : Microsoft.Azure.PowerShell.Cmdlets.Terraform.Models.IExportQuery, Microsoft.Azure.PowerShell.Cmdlets.Terraform.Runtime.IValidates
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Terraform.Models.ExportQueryTypeConverter))>]
type ExportQuery = class
    interface IExportQuery
    interface IJsonSerializable
    interface IBaseExportModel
    interface IValidates
Public Class ExportQuery
Implements IExportQuery, IValidates
Inheritance
ExportQuery
Attributes
Implements

Constructors

ExportQuery()

Creates an new ExportQuery instance.

Properties

FullProperty

Whether to output all non-computed properties in the generated Terraform configuration? This probably needs manual modifications to make it valid

MaskSensitive

Mask sensitive attributes in the Terraform configuration

NamePattern

The name pattern of the Terraform resources

Query

The ARG where predicate. Note that you can combine multiple conditions in one where predicate, e.g. resourceGroup =~ "my-rg" and type =~ "microsoft.network/virtualnetworks"

Recursive

Whether to recursively list child resources of the query result

TargetProvider

The target Azure Terraform Provider

Type

The parameter type

Methods

DeserializeFromDictionary(IDictionary)

Deserializes a IDictionary into an instance of ExportQuery.

DeserializeFromPSObject(PSObject)

Deserializes a PSObject into an instance of ExportQuery.

FromJson(JsonNode)

Deserializes a JsonNode into an instance of Microsoft.Azure.PowerShell.Cmdlets.Terraform.Models.IExportQuery.

FromJsonString(String)

Creates a new instance of ExportQuery, deserializing the content from a json string.

ToJson(JsonObject, SerializationMode)

Serializes this instance of ExportQuery into a JsonNode.

ToJsonString()

Serializes this instance to a json string.

ToString()
Validate(IEventListener)

Validates that this object meets the validation criteria.

Applies to