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()

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.ResourceManager.Models.ExportTemplateRequest : System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.ResourceManager.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