Package version:

Interface ShareCreateIfNotExistsResponse

Contains response data for the ShareClient.createIfNotExists operation.

interface ShareCreateIfNotExistsResponse {
    _response: HttpResponse & {
        parsedHeaders: ShareCreateHeaders;
    };
    date?: Date;
    errorCode?: string;
    etag?: string;
    lastModified?: Date;
    maxBurstCreditsForIops?: number;
    quota?: number;
    requestId?: string;
    shareIncludedBurstIops?: number;
    shareProvisionedBandwidthMibps?: number;
    shareProvisionedIops?: number;
    succeeded: boolean;
    version?: string;
}

Hierarchy (view full)

Properties

_response: HttpResponse & {
    parsedHeaders: ShareCreateHeaders;
}

The underlying HTTP response.

Type declaration

date?: Date

A UTC date/time value generated by the service that indicates the time at which the response was initiated.

errorCode?: string

Error Code

etag?: string

The ETag contains a value which represents the version of the share, in quotes.

lastModified?: Date

Returns the date and time the share was last modified. Any operation that modifies the share or its properties or metadata updates the last modified time. Operations on files do not affect the last modified time of the share.

maxBurstCreditsForIops?: number

Returned the calculated maximum burst credits.

quota?: number

Returns the current share quota in GB.

requestId?: string

This header uniquely identifies the request that was made and can be used for troubleshooting the request.

shareIncludedBurstIops?: number

Returns the calculated burst IOPS of the share.

shareProvisionedBandwidthMibps?: number

The provisioned throughput of the share.

shareProvisionedIops?: number

The provisioned IOPS of the share.

succeeded: boolean

Indicate whether the share is successfully created. Is false when the share is not changed as it already exists.

version?: string

Indicates the version of the File service used to execute the request.