mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
More arc controller dashboard updates (#10949)
This commit is contained in:
@@ -6,7 +6,8 @@
|
||||
import * as vscode from 'vscode';
|
||||
import { Authentication } from '../controller/auth';
|
||||
import { EndpointsRouterApi, EndpointModel, RegistrationRouterApi, RegistrationResponse, TokenRouterApi, SqlInstanceRouterApi } from '../controller/generated/v1/api';
|
||||
import { ResourceType, parseEndpoint } from '../common/utils';
|
||||
import { parseEndpoint } from '../common/utils';
|
||||
import { ResourceType } from '../constants';
|
||||
|
||||
export interface Registration extends RegistrationResponse {
|
||||
externalIp?: string;
|
||||
|
||||
@@ -108,7 +108,7 @@ export class PostgresModel {
|
||||
|
||||
/** Creates a SQL database in the service */
|
||||
public async createDatabase(db: DuskyObjectModelsDatabase): Promise<DuskyObjectModelsDatabase> {
|
||||
return await (await this._databaseRouter.createDuskyDatabase(this.namespace, this.name, db)).body;
|
||||
return (await this._databaseRouter.createDuskyDatabase(this.namespace, this.name, db)).body;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user