@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
16 lines (14 loc) • 550 B
JavaScript
import { RpcInboundClient } from '../rpc-inbound-client';
import { RpcAzureRequestKey } from './rpc-azure-model';
export class RpcAzureRequestClient {
/**
* The azure request client call.
*
* @param data the RpcLogRecord object.
* @return Promise<RpcAzureOperationResult> the promise object with operation result.
*/
static azureRequest(rpc, data) {
return RpcInboundClient.call(rpc, RpcAzureRequestKey.command, RpcAzureRequestKey.version, data);
}
}
//# sourceMappingURL=rpc-azure-request-client.js.map