mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
update the notebooks for the new release (#6451)
* get ready for new release * azdata * header update * comments * update text * remove kubernetes version option
This commit is contained in:
@@ -7,13 +7,13 @@ import { ToolType, ITool } from '../../interfaces';
|
||||
import * as nls from 'vscode-nls';
|
||||
const localize = nls.loadMessageBundle();
|
||||
|
||||
export class MSSQLCtlTool implements ITool {
|
||||
export class AzdataTool implements ITool {
|
||||
get name(): string {
|
||||
return 'mssqlctl';
|
||||
return 'azdata';
|
||||
}
|
||||
|
||||
get description(): string {
|
||||
return localize('resourceDeployment.MssqlCtlDescription', 'A command-line utility written in Python that enables cluster administrators to bootstrap and manage the big data cluster via REST APIs');
|
||||
return localize('resourceDeployment.AzdataDescription', 'A command-line utility written in Python that enables cluster administrators to bootstrap and manage the big data cluster via REST APIs');
|
||||
}
|
||||
|
||||
get type(): ToolType {
|
||||
@@ -21,6 +21,6 @@ export class MSSQLCtlTool implements ITool {
|
||||
}
|
||||
|
||||
get displayName(): string {
|
||||
return localize('resourceDeployment.MssqlCtlDisplayName', 'mssqlctl');
|
||||
return localize('resourceDeployment.AzdataDisplayName', 'azdata');
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,7 @@
|
||||
import { ITool } from '../interfaces';
|
||||
import { DockerTool } from './tools/dockerTool';
|
||||
import { AzCliTool } from './tools/azCliTool';
|
||||
import { MSSQLCtlTool } from './tools/mssqlCtlTool';
|
||||
import { AzdataTool } from './tools/azdataTool';
|
||||
import { KubeCtlTool } from './tools/kubeCtlTool';
|
||||
|
||||
export interface IToolsService {
|
||||
@@ -15,12 +15,12 @@ export interface IToolsService {
|
||||
|
||||
export class ToolsService implements IToolsService {
|
||||
constructor() {
|
||||
this.SupportedTools = [new DockerTool(), new AzCliTool(), new MSSQLCtlTool(), new KubeCtlTool()];
|
||||
this.supportedTools = [new DockerTool(), new AzCliTool(), new AzdataTool(), new KubeCtlTool()];
|
||||
}
|
||||
|
||||
private SupportedTools: ITool[];
|
||||
private supportedTools: ITool[];
|
||||
|
||||
getToolByName(toolName: string): ITool | undefined {
|
||||
return this.SupportedTools.find(t => t.name === toolName);
|
||||
return this.supportedTools.find(t => t.name === toolName);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user