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.batchai;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
Workspace update parameters.
/**
* Workspace update parameters.
*/
public class WorkspaceUpdateParameters {
Tags.
The user specified tags associated with the Workspace.
/**
* Tags.
* The user specified tags associated with the Workspace.
*/
@JsonProperty(value = "tags")
private Map<String, String> tags;
Get the user specified tags associated with the Workspace.
Returns: the tags value
/**
* Get the user specified tags associated with the Workspace.
*
* @return the tags value
*/
public Map<String, String> tags() {
return this.tags;
}
Set the user specified tags associated with the Workspace.
Params: - tags – the tags value to set
Returns: the WorkspaceUpdateParameters object itself.
/**
* Set the user specified tags associated with the Workspace.
*
* @param tags the tags value to set
* @return the WorkspaceUpdateParameters object itself.
*/
public WorkspaceUpdateParameters withTags(Map<String, String> tags) {
this.tags = tags;
return this;
}
}