LibraryResourceProperties.java

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.analytics.synapse.artifacts.models;

import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;

/** Library/package properties. */
@Immutable
public final class LibraryResourceProperties {
    /*
     * Name of the library/package.
     */
    @JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
    private String name;

    /*
     * Location of library/package in storage account.
     */
    @JsonProperty(value = "path", access = JsonProperty.Access.WRITE_ONLY)
    private String path;

    /*
     * Container name of the library/package.
     */
    @JsonProperty(value = "containerName", access = JsonProperty.Access.WRITE_ONLY)
    private String containerName;

    /*
     * The last update time of the library/package.
     */
    @JsonProperty(value = "uploadedTimestamp", access = JsonProperty.Access.WRITE_ONLY)
    private String uploadedTimestamp;

    /*
     * Type of the library/package.
     */
    @JsonProperty(value = "type", access = JsonProperty.Access.WRITE_ONLY)
    private String type;

    /*
     * Provisioning status of the library/package.
     */
    @JsonProperty(value = "provisioningStatus", access = JsonProperty.Access.WRITE_ONLY)
    private String provisioningStatus;

    /*
     * Creator Id of the library/package.
     */
    @JsonProperty(value = "creatorId", access = JsonProperty.Access.WRITE_ONLY)
    private String creatorId;

    /**
     * Get the name property: Name of the library/package.
     *
     * @return the name value.
     */
    public String getName() {
        return this.name;
    }

    /**
     * Get the path property: Location of library/package in storage account.
     *
     * @return the path value.
     */
    public String getPath() {
        return this.path;
    }

    /**
     * Get the containerName property: Container name of the library/package.
     *
     * @return the containerName value.
     */
    public String getContainerName() {
        return this.containerName;
    }

    /**
     * Get the uploadedTimestamp property: The last update time of the library/package.
     *
     * @return the uploadedTimestamp value.
     */
    public String getUploadedTimestamp() {
        return this.uploadedTimestamp;
    }

    /**
     * Get the type property: Type of the library/package.
     *
     * @return the type value.
     */
    public String getType() {
        return this.type;
    }

    /**
     * Get the provisioningStatus property: Provisioning status of the library/package.
     *
     * @return the provisioningStatus value.
     */
    public String getProvisioningStatus() {
        return this.provisioningStatus;
    }

    /**
     * Get the creatorId property: Creator Id of the library/package.
     *
     * @return the creatorId value.
     */
    public String getCreatorId() {
        return this.creatorId;
    }
}