0.1.dev2192+g7c539c3.d20250403
flytekit.interactive.vscode_lib.config
Directory
Classes
Class |
Description |
VscodeConfig |
VscodeConfig is the config contains default URLs of the VSCode server and extension remote paths. |
Variables
Property |
Type |
Description |
DEFAULT_CODE_SERVER_DIR_NAMES |
dict |
|
DEFAULT_CODE_SERVER_EXTENSIONS |
list |
|
DEFAULT_CODE_SERVER_REMOTE_PATHS |
dict |
|
flytekit.interactive.vscode_lib.config.VscodeConfig
VscodeConfig is the config contains default URLs of the VSCode server and extension remote paths.
class VscodeConfig(
code_server_remote_paths: typing.Optional[typing.Dict[str, str]],
code_server_dir_names: typing.Optional[typing.Dict[str, str]],
extension_remote_paths: typing.Optional[typing.List[str]],
)
Parameter |
Type |
code_server_remote_paths |
typing.Optional[typing.Dict[str, str]] |
code_server_dir_names |
typing.Optional[typing.Dict[str, str]] |
extension_remote_paths |
typing.Optional[typing.List[str]] |
Methods
Method |
Description |
add_extensions() |
Add additional extensions to the extension_remote_paths list. |
add_extensions()
def add_extensions(
extensions: typing.Union[str, typing.List[str]],
)
Add additional extensions to the extension_remote_paths list.
Parameter |
Type |
extensions |
typing.Union[str, typing.List[str]] |