Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.resources.implementation; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty;
Export resource group template request parameters.
/** * Export resource group template request parameters. */
public class ExportTemplateRequestInner {
The IDs of the resources. The only supported string currently is '*' (all resources). Future updates will support exporting specific resources.
/** * The IDs of the resources. The only supported string currently is '*' * (all resources). Future updates will support exporting specific * resources. */
@JsonProperty(value = "resources") private List<String> resources;
The export template options. Supported values include 'IncludeParameterDefaultValue', 'IncludeComments' or 'IncludeParameterDefaultValue, IncludeComments.
/** * The export template options. Supported values include * 'IncludeParameterDefaultValue', 'IncludeComments' or * 'IncludeParameterDefaultValue, IncludeComments. */
@JsonProperty(value = "options") private String options;
Get the resources value.
Returns:the resources value
/** * Get the resources value. * * @return the resources value */
public List<String> resources() { return this.resources; }
Set the resources value.
Params:
  • resources – the resources value to set
Returns:the ExportTemplateRequestInner object itself.
/** * Set the resources value. * * @param resources the resources value to set * @return the ExportTemplateRequestInner object itself. */
public ExportTemplateRequestInner withResources(List<String> resources) { this.resources = resources; return this; }
Get the options value.
Returns:the options value
/** * Get the options value. * * @return the options value */
public String options() { return this.options; }
Set the options value.
Params:
  • options – the options value to set
Returns:the ExportTemplateRequestInner object itself.
/** * Set the options value. * * @param options the options value to set * @return the ExportTemplateRequestInner object itself. */
public ExportTemplateRequestInner withOptions(String options) { this.options = options; return this; } }