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

com.azure.resourcemanager.storage.fluent.models.LeaseShareResponseInner Maven / Gradle / Ivy

There is a newer version: 2.44.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.storage.fluent.models;

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

/**
 * Lease Share response schema.
 */
@Fluent
public final class LeaseShareResponseInner {
    /*
     * Returned unique lease ID that must be included with any request to delete the share, or to renew, change, or
     * release the lease.
     */
    @JsonProperty(value = "leaseId")
    private String leaseId;

    /*
     * Approximate time remaining in the lease period, in seconds.
     */
    @JsonProperty(value = "leaseTimeSeconds")
    private String leaseTimeSeconds;

    /**
     * Creates an instance of LeaseShareResponseInner class.
     */
    public LeaseShareResponseInner() {
    }

    /**
     * Get the leaseId property: Returned unique lease ID that must be included with any request to delete the share, or
     * to renew, change, or release the lease.
     * 
     * @return the leaseId value.
     */
    public String leaseId() {
        return this.leaseId;
    }

    /**
     * Set the leaseId property: Returned unique lease ID that must be included with any request to delete the share, or
     * to renew, change, or release the lease.
     * 
     * @param leaseId the leaseId value to set.
     * @return the LeaseShareResponseInner object itself.
     */
    public LeaseShareResponseInner withLeaseId(String leaseId) {
        this.leaseId = leaseId;
        return this;
    }

    /**
     * Get the leaseTimeSeconds property: Approximate time remaining in the lease period, in seconds.
     * 
     * @return the leaseTimeSeconds value.
     */
    public String leaseTimeSeconds() {
        return this.leaseTimeSeconds;
    }

    /**
     * Set the leaseTimeSeconds property: Approximate time remaining in the lease period, in seconds.
     * 
     * @param leaseTimeSeconds the leaseTimeSeconds value to set.
     * @return the LeaseShareResponseInner object itself.
     */
    public LeaseShareResponseInner withLeaseTimeSeconds(String leaseTimeSeconds) {
        this.leaseTimeSeconds = leaseTimeSeconds;
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy