mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Add help text to mount HDFS dialog (#7865)
This commit is contained in:
@@ -12,7 +12,7 @@ import { HdfsDialogBase, HdfsDialogModelBase, HdfsDialogProperties } from './hdf
|
|||||||
const localize = nls.loadMessageBundle();
|
const localize = nls.loadMessageBundle();
|
||||||
|
|
||||||
const mountConfigutationTitle = localize('mount.main.section', "Mount Configuration");
|
const mountConfigutationTitle = localize('mount.main.section', "Mount Configuration");
|
||||||
const hdfsPathTitle = localize('mount.hdfsPath', "HDFS Path");
|
const hdfsPathTitle = localize('mount.hdfsPath.title', "HDFS Path");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Converts a comma-delimited set of key value pair credentials to a JSON object.
|
* Converts a comma-delimited set of key value pair credentials to a JSON object.
|
||||||
@@ -178,15 +178,24 @@ export class MountHdfsDialog extends HdfsDialogBase<MountHdfsProperties, void> {
|
|||||||
{
|
{
|
||||||
component: this.pathInputBox,
|
component: this.pathInputBox,
|
||||||
title: hdfsPathTitle,
|
title: hdfsPathTitle,
|
||||||
required: true
|
required: true,
|
||||||
|
layout: {
|
||||||
|
info: localize('mount.hdfsPath.info', "Path to a new (non-existing) directory which you want to associate with the mount")
|
||||||
|
}
|
||||||
}, {
|
}, {
|
||||||
component: this.remoteUriInputBox,
|
component: this.remoteUriInputBox,
|
||||||
title: localize('mount.remoteUri', "Remote URI"),
|
title: localize('mount.remoteUri.title', "Remote URI"),
|
||||||
required: true
|
required: true,
|
||||||
|
layout: {
|
||||||
|
info: localize('mount.remoteUri.info', "The URI to the remote data source. Example for ADLS: abfs://fs@saccount.dfs.core.windows.net/")
|
||||||
|
}
|
||||||
}, {
|
}, {
|
||||||
component: this.credentialsInputBox,
|
component: this.credentialsInputBox,
|
||||||
title: localize('mount.credentials', "Credentials"),
|
title: localize('mount.credentials.title', "Credentials"),
|
||||||
required: false
|
required: false,
|
||||||
|
layout: {
|
||||||
|
info: localize('mount.credentials.info', "Mount credentials for authentication to remote data source for reads")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
title: mountConfigutationTitle
|
title: mountConfigutationTitle
|
||||||
|
|||||||
Reference in New Issue
Block a user