Package version:

Interface GuestAgents

Interface representing a GuestAgents.

interface GuestAgents {
    beginCreate(resourceUri, resource, options?): Promise<SimplePollerLike<OperationState<GuestAgent>, GuestAgent>>;
    beginCreateAndWait(resourceUri, resource, options?): Promise<GuestAgent>;
    delete(resourceUri, options?): Promise<void>;
    get(resourceUri, options?): Promise<GuestAgent>;
    listByVirtualMachineInstance(resourceUri, options?): PagedAsyncIterableIterator<GuestAgent>;
}

Methods