All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.management.powerbi.implementation.CreateWorkspaceCollectionRequestInner Maven / Gradle / Ivy

There is a newer version: 1.10.0-beta
Show newest version
/**
 * 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.implementation;

import java.util.Map;
import com.microsoft.azure.management.powerbi.AzureSku;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * The CreateWorkspaceCollectionRequestInner model.
 */
public class CreateWorkspaceCollectionRequestInner {
    /**
     * Azure location.
     */
    @JsonProperty(value = "location")
    private String location;

    /**
     * The tags property.
     */
    @JsonProperty(value = "tags")
    private Map tags;

    /**
     * The sku property.
     */
    @JsonProperty(value = "sku")
    private AzureSku sku;

    /**
     * Creates an instance of CreateWorkspaceCollectionRequestInner class.
     */
    public CreateWorkspaceCollectionRequestInner() {
        sku = new AzureSku();
    }

    /**
     * Get the location value.
     *
     * @return the location value
     */
    public String location() {
        return this.location;
    }

    /**
     * Set the location value.
     *
     * @param location the location value to set
     * @return the CreateWorkspaceCollectionRequestInner object itself.
     */
    public CreateWorkspaceCollectionRequestInner withLocation(String location) {
        this.location = location;
        return this;
    }

    /**
     * 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 CreateWorkspaceCollectionRequestInner object itself.
     */
    public CreateWorkspaceCollectionRequestInner 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 CreateWorkspaceCollectionRequestInner object itself.
     */
    public CreateWorkspaceCollectionRequestInner withSku(AzureSku sku) {
        this.sku = sku;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy