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

com.microsoft.azure.management.resources.AliasPath Maven / Gradle / Ivy

There is a newer version: 1.41.4
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.resources;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * The type of the paths for alias.
 */
public class AliasPath {
    /**
     * The path of an alias.
     */
    @JsonProperty(value = "path")
    private String path;

    /**
     * The API versions.
     */
    @JsonProperty(value = "apiVersions")
    private List apiVersions;

    /**
     * The pattern for an alias path.
     */
    @JsonProperty(value = "pattern")
    private AliasPattern pattern;

    /**
     * Get the path of an alias.
     *
     * @return the path value
     */
    public String path() {
        return this.path;
    }

    /**
     * Set the path of an alias.
     *
     * @param path the path value to set
     * @return the AliasPath object itself.
     */
    public AliasPath withPath(String path) {
        this.path = path;
        return this;
    }

    /**
     * Get the API versions.
     *
     * @return the apiVersions value
     */
    public List apiVersions() {
        return this.apiVersions;
    }

    /**
     * Set the API versions.
     *
     * @param apiVersions the apiVersions value to set
     * @return the AliasPath object itself.
     */
    public AliasPath withApiVersions(List apiVersions) {
        this.apiVersions = apiVersions;
        return this;
    }

    /**
     * Get the pattern for an alias path.
     *
     * @return the pattern value
     */
    public AliasPattern pattern() {
        return this.pattern;
    }

    /**
     * Set the pattern for an alias path.
     *
     * @param pattern the pattern value to set
     * @return the AliasPath object itself.
     */
    public AliasPath withPattern(AliasPattern pattern) {
        this.pattern = pattern;
        return this;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy