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.appservice; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty;
Object with a list of the resources that need to be moved and the resource group they should be moved to.
/** * Object with a list of the resources that need to be moved and the resource * group they should be moved to. */
public class CsmMoveResourceEnvelope {
The targetResourceGroup property.
/** * The targetResourceGroup property. */
@JsonProperty(value = "targetResourceGroup") private String targetResourceGroup;
The resources property.
/** * The resources property. */
@JsonProperty(value = "resources") private List<String> resources;
Get the targetResourceGroup value.
Returns:the targetResourceGroup value
/** * Get the targetResourceGroup value. * * @return the targetResourceGroup value */
public String targetResourceGroup() { return this.targetResourceGroup; }
Set the targetResourceGroup value.
Params:
  • targetResourceGroup – the targetResourceGroup value to set
Returns:the CsmMoveResourceEnvelope object itself.
/** * Set the targetResourceGroup value. * * @param targetResourceGroup the targetResourceGroup value to set * @return the CsmMoveResourceEnvelope object itself. */
public CsmMoveResourceEnvelope withTargetResourceGroup(String targetResourceGroup) { this.targetResourceGroup = targetResourceGroup; return this; }
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 CsmMoveResourceEnvelope object itself.
/** * Set the resources value. * * @param resources the resources value to set * @return the CsmMoveResourceEnvelope object itself. */
public CsmMoveResourceEnvelope withResources(List<String> resources) { this.resources = resources; return this; } }