Compartilhar via


ExportTemplateRequest Constructors

Definition

Overloads

ExportTemplateRequest()

Initializes a new instance of the ExportTemplateRequest class.

ExportTemplateRequest(IList<String>, String)

Initializes a new instance of the ExportTemplateRequest class.

ExportTemplateRequest(IList<String>, String, String)

Initializes a new instance of the ExportTemplateRequest class.

ExportTemplateRequest()

Initializes a new instance of the ExportTemplateRequest class.

public ExportTemplateRequest ();
Public Sub New ()

Applies to

ExportTemplateRequest(IList<String>, String)

Initializes a new instance of the ExportTemplateRequest class.

public ExportTemplateRequest (System.Collections.Generic.IList<string> resources = default, string options = default);
new Microsoft.Azure.Management.Resources.Models.ExportTemplateRequest : System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.Resources.Models.ExportTemplateRequest
Public Sub New (Optional resources As IList(Of String) = Nothing, Optional options As String = Nothing)

Parameters

resources
IList<String>

The IDs of the resources to filter the export by. To export all resources, supply an array with single entry '*'.

options
String

The export template options. A CSV-formatted list containing zero or more of the following: 'IncludeParameterDefaultValue', 'IncludeComments', 'SkipResourceNameParameterization', 'SkipAllParameterization'

Applies to

ExportTemplateRequest(IList<String>, String, String)

Initializes a new instance of the ExportTemplateRequest class.

public ExportTemplateRequest (System.Collections.Generic.IList<string> resources = default, string options = default, string outputFormat = default);
new Microsoft.Azure.Management.Resources.Models.ExportTemplateRequest : System.Collections.Generic.IList<string> * string * string -> Microsoft.Azure.Management.Resources.Models.ExportTemplateRequest
Public Sub New (Optional resources As IList(Of String) = Nothing, Optional options As String = Nothing, Optional outputFormat As String = Nothing)

Parameters

resources
IList<String>

The IDs of the resources to filter the export by. To export all resources, supply an array with single entry '*'.

options
String

The export template options. A CSV-formatted list containing zero or more of the following: 'IncludeParameterDefaultValue', 'IncludeComments', 'SkipResourceNameParameterization', 'SkipAllParameterization'

outputFormat
String

The output format for the exported resources. Possible values include: 'Json', 'Bicep'

Applies to