com.microsoft.azure.management.powerbi.UpdateWorkspaceCollectionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-powerbi Show documentation
Show all versions of azure-mgmt-powerbi Show documentation
This package contains Microsoft PowerBI 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.powerbi;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The UpdateWorkspaceCollectionRequest model.
*/
public class UpdateWorkspaceCollectionRequest {
/**
* The tags property.
*/
@JsonProperty(value = "tags")
private Map tags;
/**
* The sku property.
*/
@JsonProperty(value = "sku")
private AzureSku sku;
/**
* Creates an instance of UpdateWorkspaceCollectionRequest class.
*/
public UpdateWorkspaceCollectionRequest() {
sku = new AzureSku();
}
/**
* Get the tags value.
*
* @return the tags value
*/
public Map tags() {
return this.tags;
}
/**
* Set the tags value.
*
* @param tags the tags value to set
* @return the UpdateWorkspaceCollectionRequest object itself.
*/
public UpdateWorkspaceCollectionRequest withTags(Map tags) {
this.tags = tags;
return this;
}
/**
* Get the sku value.
*
* @return the sku value
*/
public AzureSku sku() {
return this.sku;
}
/**
* Set the sku value.
*
* @param sku the sku value to set
* @return the UpdateWorkspaceCollectionRequest object itself.
*/
public UpdateWorkspaceCollectionRequest withSku(AzureSku sku) {
this.sku = sku;
return this;
}
}