com.microsoft.azure.management.resources.implementation.ResourcesMoveInfoInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-resources Show documentation
Show all versions of azure-mgmt-resources Show documentation
This package contains Microsoft Azure Resource Management SDK.
/**
* 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;
/**
* Parameters of move resources.
*/
public class ResourcesMoveInfoInner {
/**
* The IDs of the resources.
*/
@JsonProperty(value = "resources")
private List resources;
/**
* The target resource group.
*/
@JsonProperty(value = "targetResourceGroup")
private String targetResourceGroup;
/**
* Get the resources value.
*
* @return the resources value
*/
public List resources() {
return this.resources;
}
/**
* Set the resources value.
*
* @param resources the resources value to set
* @return the ResourcesMoveInfoInner object itself.
*/
public ResourcesMoveInfoInner withResources(List resources) {
this.resources = resources;
return this;
}
/**
* Get the targetResourceGroup value.
*
* @return the targetResourceGroup value
*/
public String targetResourceGroup() {
return this.targetResourceGroup;
}
/**
* Set the targetResourceGroup value.
*
* @param targetResourceGroup the targetResourceGroup value to set
* @return the ResourcesMoveInfoInner object itself.
*/
public ResourcesMoveInfoInner withTargetResourceGroup(String targetResourceGroup) {
this.targetResourceGroup = targetResourceGroup;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy