ShareRequestConditions Class

  • java.lang.Object
    • com.azure.storage.file.share.models.ShareRequestConditions

public class ShareRequestConditions

This class contains values which will restrict the successful operation of a variety of requests to the conditions present. These conditions are entirely optional. The entire object or any of its properties may be set to null when passed to a method to indicate that those conditions are not desired. Please refer to the type of each field for more information on those particular access conditions.

Constructor Summary

Constructor Description
ShareRequestConditions()

Method Summary

Modifier and Type Method and Description
String getLeaseId()

Gets the lease ID that files and shares must match.

ShareRequestConditions setLeaseId(String leaseId)

Optionally limits requests to files and shares that match the lease ID.

Methods inherited from java.lang.Object

Constructor Details

ShareRequestConditions

public ShareRequestConditions()

Method Details

getLeaseId

public String getLeaseId()

Gets the lease ID that files and shares must match.

Returns:

The lease ID that files and shares must match.

setLeaseId

public ShareRequestConditions setLeaseId(String leaseId)

Optionally limits requests to files and shares that match the lease ID.

Parameters:

leaseId - Lease ID that files and shares must match.

Returns:

The updated ShareRequestConditions object.

Applies to