ExportTemplateRequest Class

  • java.lang.Object
    • com.microsoft.azure.management.resources.ExportTemplateRequest

public class ExportTemplateRequest

Export resource group template request parameters.

Constructor Summary

Constructor Description
ExportTemplateRequest()

Method Summary

Modifier and Type Method and Description
java.lang.String options()

Get the export template options.

java.util.List<java.lang.String> resources()

Get the IDs of the resources to filter the export by.

ExportTemplateRequest withOptions(String options)

Set the export template options.

ExportTemplateRequest withResources(List<String> resources)

Set the IDs of the resources to filter the export by.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

ExportTemplateRequest

public ExportTemplateRequest()

Method Details

options

public String options()

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

Returns:

the options value

resources

public List resources()

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

Returns:

the resources value

withOptions

public ExportTemplateRequest withOptions(String options)

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

Parameters:

options - the options value to set

Returns:

the ExportTemplateRequest object itself.

withResources

public ExportTemplateRequest withResources(List resources)

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

Parameters:

resources - the resources value to set

Returns:

the ExportTemplateRequest object itself.

Applies to