Interface DeleteContainerOptions

interface DeleteContainerOptions {
    comment?: string;
    containerPath?: string;
    failure?: RequestFailure<any>;
    scope?: any;
    success?: RequestSuccess<any>;
}

Hierarchy (view full)

Properties

comment?: string

A comment which will appear in the audit log on the reason for deletion.

containerPath?: string

The container which should be deleted. If not specified the current container path will be deleted.

failure?: RequestFailure<any>

This will be called upon failure to complete a request.

scope?: any

A scoping object for the success and failure callback functions (default to this).

success?: RequestSuccess<any>

This will be called upon successfully completing a request.

Generated using TypeDoc