├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── THIRD_PARTY_LICENSES.txt ├── media └── images │ ├── oracle.png │ └── readme │ ├── apm_tree_view.png │ ├── app_right_click_options.png │ ├── apply_job.png │ ├── artifact_node_actions.png │ ├── cancel_job_run.png │ ├── cancel_option.png │ ├── choose_script_type.png │ ├── configuration_button.png │ ├── create_monitor.png │ ├── create_monitor_command.png │ ├── create_new_job.png │ ├── create_script.png │ ├── create_type_function.png │ ├── data_science.png │ ├── delete_job_run_confirmation_message.png │ ├── delete_monitor.png │ ├── delete_monitor_confirmation.png │ ├── delete_script.png │ ├── delete_script_confirmation.png │ ├── deploy_form.png │ ├── download_script.png │ ├── edit_config.png │ ├── edit_config_webview.png │ ├── edit_existing_config_parameter.png │ ├── edit_function_settings_form.png │ ├── edit_monitor.png │ ├── edit_script.png │ ├── folder options.png │ ├── func_right_click_options.png │ ├── get_execution_results.png │ ├── git_based_password_screen.png │ ├── git_based_save_stack.png │ ├── git_based_stack_clone.png │ ├── git_based_stack_menu.png │ ├── initial-screen.png │ ├── job_artifact_actions.png │ ├── job_run_actions.png │ ├── job_run_notification_message.png │ ├── jobrunsAndArtifacts.png │ ├── jobs.png │ ├── list_vantage_points.png │ ├── non_git_download_conf.png │ ├── non_git_stack_menu.png │ ├── oci_rms.gif │ ├── open_in_terminal.png │ ├── plan_job.png │ ├── projects.png │ ├── python-hello-world.png │ ├── right_click_deploy_option.png │ ├── right_click_option_edit_function_settings.png │ ├── run_job.png │ ├── run_now_monitor.png │ ├── save job.png │ ├── save_config.png │ ├── sign_in_workflow.gif │ ├── sign_in_workflow_a.gif │ ├── stacks-hierarchy.png │ ├── switch-region.gif │ ├── terraform-edit.png │ ├── update_config_deploy.png │ ├── view_monitor_details.png │ ├── view_monitor_in_browser.png │ └── view_script_details.png ├── package.json ├── src ├── apm-vscode-plugin │ ├── .eslintrc.json │ ├── .gitignore │ ├── .mocharc.json │ ├── .prettierrc │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── THIRD_PARTY_LICENSES.txt │ ├── gulpfile.js │ ├── i18n │ │ ├── ces │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── chs │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── cht │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── dan │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── deu │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── ell │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── fin │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── fra │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── frc │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── hrv │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── hun │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── ita │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── jpn │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── kor │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── nld │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── nor │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── pol │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── ptb │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── ptg │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── ron │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── rus │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── slk │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── slv │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── spa │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── srb │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── srl │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── swe │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ ├── tha │ │ │ ├── api │ │ │ │ ├── apmsynthetics.i18n.json │ │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ │ └── commands │ │ │ │ ├── monitorOperations │ │ │ │ └── monitor-operations.i18n.json │ │ │ │ ├── opvpOperations │ │ │ │ └── opvp-operations.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ ├── resources.i18n.json │ │ │ │ ├── scriptOperations │ │ │ │ └── script-operations.i18n.json │ │ │ │ └── workerOperations │ │ │ │ └── worker-operations.i18n.json │ │ └── tur │ │ │ ├── api │ │ │ ├── apmsynthetics.i18n.json │ │ │ └── telemetry.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui-helpers │ │ │ └── ui-helpers.i18n.json │ │ │ └── ui │ │ │ └── commands │ │ │ ├── monitorOperations │ │ │ └── monitor-operations.i18n.json │ │ │ ├── opvpOperations │ │ │ └── opvp-operations.i18n.json │ │ │ ├── register-commands.i18n.json │ │ │ ├── resources.i18n.json │ │ │ ├── scriptOperations │ │ │ └── script-operations.i18n.json │ │ │ └── workerOperations │ │ │ └── worker-operations.i18n.json │ ├── media │ │ ├── css │ │ │ └── synthetics.css │ │ ├── images │ │ │ └── readme │ │ │ │ ├── apm_tree_view.png │ │ │ │ ├── choose_script_type.png │ │ │ │ ├── create_monitor.png │ │ │ │ ├── create_monitor_command.png │ │ │ │ ├── create_script.png │ │ │ │ ├── delete_monitor.png │ │ │ │ ├── delete_monitor_confirmation.png │ │ │ │ ├── delete_script.png │ │ │ │ ├── delete_script_confirmation.png │ │ │ │ ├── download_script.png │ │ │ │ ├── edit_monitor.png │ │ │ │ ├── edit_script.png │ │ │ │ ├── get_execution_results.png │ │ │ │ ├── list_vantage_points.png │ │ │ │ ├── run_now_monitor.png │ │ │ │ ├── sign_in_workflow.gif │ │ │ │ ├── view_monitor_details.png │ │ │ │ ├── view_monitor_in_browser.png │ │ │ │ └── view_script_details.png │ │ └── js │ │ │ ├── download │ │ │ ├── download.js │ │ │ └── script.js │ │ │ ├── executions │ │ │ ├── execution.js │ │ │ └── viewExecutionResults.js │ │ │ ├── monitor │ │ │ ├── createForm.js │ │ │ ├── downloadForm.js │ │ │ ├── editForm.js │ │ │ ├── logs.js │ │ │ ├── populateDropdownFiles.js │ │ │ ├── populateScript.js │ │ │ ├── populateVPs.js │ │ │ └── viewResults.js │ │ │ └── script │ │ │ ├── createForm.js │ │ │ ├── decodeScriptContent.js │ │ │ ├── editForm.js │ │ │ └── scriptConstants.js │ ├── package.json │ ├── package.nls.json │ ├── resources │ │ ├── dark │ │ │ ├── apmdomain-dark.svg │ │ │ ├── compartment-dark.svg │ │ │ ├── error.svg │ │ │ ├── info.svg │ │ │ ├── link-external-dark.svg │ │ │ ├── monitor-dark.svg │ │ │ ├── opvp-dark.svg │ │ │ ├── opvp-worker-dark.svg │ │ │ ├── script-dark.svg │ │ │ └── tooltip.svg │ │ ├── light │ │ │ ├── apmdomain-light.svg │ │ │ ├── compartment-light.svg │ │ │ ├── link-external-light.svg │ │ │ ├── monitor-light.svg │ │ │ ├── opvp-light.svg │ │ │ ├── opvp-worker-light.svg │ │ │ └── script-light.svg │ │ └── oracle-icon.png │ ├── settings.json │ ├── src │ │ ├── api │ │ │ ├── apmdomain.ts │ │ │ ├── apmsynthetics.ts │ │ │ ├── common.ts │ │ │ ├── identity.ts │ │ │ ├── objectStorage.ts │ │ │ ├── search.ts │ │ │ └── telemetry.ts │ │ ├── common │ │ │ ├── fileSystem │ │ │ │ └── local-artifact.ts │ │ │ ├── git │ │ │ │ ├── git-clone.ts │ │ │ │ ├── parse-git-url.ts │ │ │ │ └── unit-tests │ │ │ │ │ └── validatingRepoNameFromURl.ts │ │ │ ├── monitor.ts │ │ │ ├── shell │ │ │ │ └── exec-shell-commands.ts │ │ │ └── validations │ │ │ │ ├── launchPayload.ts │ │ │ │ └── unit-tests │ │ │ │ └── validatePayloadValidator.ts │ │ ├── extension.ts │ │ ├── extensionVars.ts │ │ ├── git.d.ts │ │ ├── oci-api.d.ts │ │ ├── resourceinterfaces │ │ │ ├── ioci-compartment.ts │ │ │ ├── ioci-metric-data-time-range-info.ts │ │ │ ├── ioci-monitor-create-info.ts │ │ │ ├── ioci-monitor-result-info.ts │ │ │ ├── ioci-monitor-update-info.ts │ │ │ ├── ioci-opvp-create-info.ts │ │ │ ├── ioci-resource-node.ts │ │ │ ├── ioci-resource.ts │ │ │ ├── ioci-script-create-info.ts │ │ │ ├── ioci-script-update-info.ts │ │ │ ├── ioci-tenancy.ts │ │ │ ├── ioci-user.ts │ │ │ ├── ioci-worker-create-info.ts │ │ │ └── ioci-worker-update-info.ts │ │ ├── test │ │ │ └── unit-tests │ │ │ │ └── validatate-monitor.test.ts │ │ ├── ui-helpers │ │ │ └── ui-helpers.ts │ │ ├── ui-test │ │ │ ├── .mocharc-debug.js │ │ │ └── extensionsView-test.ts │ │ ├── ui │ │ │ ├── commands │ │ │ │ ├── launchWorkflow │ │ │ │ │ └── launch.ts │ │ │ │ ├── monitorOperations │ │ │ │ │ └── monitor-operations.ts │ │ │ │ ├── opvpOperations │ │ │ │ │ └── opvp-operations.ts │ │ │ │ ├── register-commands.ts │ │ │ │ ├── resources.ts │ │ │ │ ├── scriptOperations │ │ │ │ │ └── script-operations.ts │ │ │ │ ├── ui │ │ │ │ │ ├── get-monitor-info.ts │ │ │ │ │ ├── get-opvp-info.ts │ │ │ │ │ ├── get-script-info.ts │ │ │ │ │ ├── get-worker-info.ts │ │ │ │ │ └── list-recent-commands.ts │ │ │ │ └── workerOperations │ │ │ │ │ └── worker-operations.ts │ │ │ └── tree │ │ │ │ └── nodes │ │ │ │ ├── apmdomains-node.ts │ │ │ │ ├── base-node.ts │ │ │ │ ├── documentation-node.ts │ │ │ │ ├── monitors-node.ts │ │ │ │ ├── oci-apm-syn-monitor-summary-node.ts │ │ │ │ ├── oci-apm-syn-script-summary-node.ts │ │ │ │ ├── oci-apm-syn-worker-summary-node.ts │ │ │ │ ├── oci-apmSynOpvp-node.ts │ │ │ │ ├── oci-apmdomain-node.ts │ │ │ │ ├── oci-compartment-node.ts │ │ │ │ ├── ociNode.ts │ │ │ │ ├── opvps-node.ts │ │ │ │ ├── rootNode.ts │ │ │ │ ├── scripts-node.ts │ │ │ │ ├── unit-tests │ │ │ │ └── oci-apm-syn-monitor-summary-node.test.ts │ │ │ │ └── workers-node.ts │ │ ├── utils │ │ │ ├── actionResult.ts │ │ │ ├── get-logger.ts │ │ │ ├── getUri.ts │ │ │ ├── path-utils.ts │ │ │ ├── unit-tests │ │ │ │ └── validator.test.ts │ │ │ └── validators.ts │ │ ├── validation │ │ │ └── validator.js │ │ └── webViews │ │ │ ├── CreateMonitor.ts │ │ │ ├── CreateScript.ts │ │ │ ├── Download.ts │ │ │ ├── DownloadLogs.ts │ │ │ ├── DownloadScript.ts │ │ │ ├── EditMonitor.ts │ │ │ ├── EditScript.ts │ │ │ ├── ExecutionResults.ts │ │ │ ├── GetLogs.ts │ │ │ ├── ViewExecutionResults.ts │ │ │ ├── ViewHar.ts │ │ │ ├── ViewLogs.ts │ │ │ ├── ViewOutput.ts │ │ │ ├── ViewResultsMonitorWebView.ts │ │ │ └── ViewScreenshots.ts │ ├── tsconfig.json │ └── webpack │ │ ├── common.js │ │ ├── dev.js │ │ └── prod.js ├── faas-vscode-plugin │ ├── .eslintrc.json │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── checkstyle-idea.xml │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── faas-vscode-plugin.iml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ ├── runConfigurations │ │ │ ├── ALL_Tests.xml │ │ │ ├── Build__vsix.xml │ │ │ ├── Install_prerequisites.xml │ │ │ ├── Integration_Tests___Authenticated.xml │ │ │ ├── Integration_Tests___Local.xml │ │ │ ├── Launch_VSCode_w__latest__vsix.xml │ │ │ └── Unit_Tests.xml │ │ └── vcs.xml │ ├── .mocharc.json │ ├── .prettierrc │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── gulpfile.js │ ├── i18n │ │ ├── ces │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── chs │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── cht │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── dan │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── deu │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── ell │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── fin │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── fra │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── frc │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── hrv │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── hun │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── ita │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── jpn │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── kor │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── nld │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── nor │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── pol │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── ptb │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── ptg │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── ron │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── rus │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── slk │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── slv │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── spa │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── srb │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── srl │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── swe │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ ├── tha │ │ │ ├── commands │ │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ ├── createFunction │ │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ │ └── show-message.i18n.json │ │ │ │ │ ├── deployFunction │ │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ │ ├── register-commands.i18n.json │ │ │ │ │ └── resources.i18n.json │ │ │ │ └── tree │ │ │ │ │ └── nodes │ │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ │ └── EditFunctionSettingsPanel.i18n.json │ │ └── tur │ │ │ ├── commands │ │ │ └── install-oci-fn-cli.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── ui │ │ │ ├── commands │ │ │ │ ├── createFunction │ │ │ │ │ ├── create-fn-repo.i18n.json │ │ │ │ │ └── show-message.i18n.json │ │ │ │ ├── deployFunction │ │ │ │ │ └── deploy-fn.i18n.json │ │ │ │ ├── edit-fn.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ └── tree │ │ │ │ └── nodes │ │ │ │ ├── oci-configuration-node.i18n.json │ │ │ │ └── oci-new-function-node.i18n.json │ │ │ └── webViews │ │ │ ├── EditConfigurationPanel.i18n.json │ │ │ └── EditFunctionSettingsPanel.i18n.json │ ├── media │ │ ├── css │ │ │ ├── common.css │ │ │ ├── deployFunction │ │ │ │ └── deployFunction.css │ │ │ ├── editFunctionConfig │ │ │ │ └── editFunctionConfig.css │ │ │ └── editFunctionSettings │ │ │ │ └── editFunctionSettings.css │ │ ├── images │ │ │ └── readme │ │ │ │ ├── app_right_click_options.png │ │ │ │ ├── configuration_button.png │ │ │ │ ├── create_type_function.png │ │ │ │ ├── deploy_form.png │ │ │ │ ├── edit_config.png │ │ │ │ ├── edit_config_webview.png │ │ │ │ ├── edit_existing_config_parameter.png │ │ │ │ ├── edit_function_settings_form.png │ │ │ │ ├── func_right_click_options.png │ │ │ │ ├── python-hello-world.png │ │ │ │ ├── right_click_deploy_option.png │ │ │ │ ├── right_click_option_edit_function_settings.png │ │ │ │ ├── save_config.png │ │ │ │ ├── sign_in_workflow.gif │ │ │ │ └── update_config_deploy.png │ │ └── js │ │ │ ├── DeployFunction │ │ │ ├── populateDropdown.js │ │ │ └── submitForm.js │ │ │ ├── editFunctionConfig │ │ │ ├── addKeyValue.js │ │ │ ├── cancelKeyValue.js │ │ │ ├── deleteKeyValue.js │ │ │ ├── editKeyValue.js │ │ │ ├── keyValueTable.js │ │ │ ├── savekeyvalue.js │ │ │ └── updateKeyValuePairs.js │ │ │ └── editFunctionSettings │ │ │ ├── populateDropdown.js │ │ │ └── validateForm.js │ ├── package.json │ ├── package.nls.json │ ├── resources │ │ ├── dark │ │ │ ├── application-dark.svg │ │ │ ├── compartment-dark.svg │ │ │ ├── function-dark.svg │ │ │ ├── gear-dark.svg │ │ │ └── link-external-dark.svg │ │ ├── dockerfiles │ │ │ ├── go │ │ │ │ └── Dockerfile │ │ │ ├── java │ │ │ │ └── Dockerfile │ │ │ ├── java11 │ │ │ │ └── Dockerfile │ │ │ ├── java8 │ │ │ │ └── Dockerfile │ │ │ ├── kotlin │ │ │ │ └── Dockerfile │ │ │ ├── node │ │ │ │ └── Dockerfile │ │ │ ├── python │ │ │ │ └── Dockerfile │ │ │ ├── python36 │ │ │ │ └── Dockerfile │ │ │ ├── python371 │ │ │ │ └── Dockerfile │ │ │ ├── python385 │ │ │ │ └── Dockerfile │ │ │ └── ruby │ │ │ │ └── Dockerfile │ │ ├── icons │ │ │ ├── default_file.svg │ │ │ ├── file_type_config.svg │ │ │ ├── file_type_docker.svg │ │ │ ├── file_type_go.svg │ │ │ ├── file_type_image.svg │ │ │ ├── file_type_java.svg │ │ │ ├── file_type_js.svg │ │ │ ├── file_type_json.svg │ │ │ ├── file_type_kotlin.svg │ │ │ ├── file_type_light_js.svg │ │ │ ├── file_type_light_json.svg │ │ │ ├── file_type_light_yaml.svg │ │ │ ├── file_type_markdown.svg │ │ │ ├── file_type_python.svg │ │ │ ├── file_type_ruby.svg │ │ │ ├── file_type_svg.svg │ │ │ ├── file_type_text.svg │ │ │ ├── file_type_xml.svg │ │ │ └── file_type_yaml.svg │ │ ├── light │ │ │ ├── application-light.svg │ │ │ ├── compartment-light.svg │ │ │ ├── function-light.svg │ │ │ ├── gear-light.svg │ │ │ └── link-external-light.svg │ │ ├── oracle_faas.png │ │ ├── samples │ │ │ ├── basic-observability │ │ │ │ ├── README.md │ │ │ │ ├── functions.md │ │ │ │ ├── notifications.md │ │ │ │ └── service-connector-hub.md │ │ │ ├── hello-java │ │ │ │ ├── README.md │ │ │ │ ├── func.yaml │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── fn │ │ │ │ │ │ └── HelloFunction.java │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── HelloFunctionTest.java │ │ │ ├── hello-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ └── requirements.txt │ │ │ ├── imagedims-python │ │ │ │ ├── 3x3.jpg │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-adb-client-runsql-python │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── ADB-create.png │ │ │ │ │ ├── Download_wallet.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-adb-ords-runsql-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── ADB-ORDS-URL.png │ │ │ │ │ ├── ADB-create.png │ │ │ │ │ ├── ADB-serviceconsole.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-apigw-apikey-validation-python │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── apigw-create.png │ │ │ │ │ ├── apigw-deployment-create-2.png │ │ │ │ │ ├── apigw-deployment-create.png │ │ │ │ │ ├── apigw-deployment-endpoint.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-apigw-authorizer-idcs-java │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── IDCS-appcreate1.png │ │ │ │ │ ├── IDCS-appcreate2.png │ │ │ │ │ ├── IDCS-appcreate3.png │ │ │ │ │ ├── IDCS-appcreate4.png │ │ │ │ │ ├── IDCS-appcreate5.png │ │ │ │ │ ├── IDCS-appcreate6.png │ │ │ │ │ ├── apigw-create.png │ │ │ │ │ ├── apigw-deployment-create-1.png │ │ │ │ │ ├── apigw-deployment-create-2.png │ │ │ │ │ ├── apigw-deployment-endpoint.png │ │ │ │ │ └── userinput.png │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ ├── fn │ │ │ │ │ │ └── AuthFunction.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ ├── AccessTokenValidator.java │ │ │ │ │ │ ├── InvalidTokenException.java │ │ │ │ │ │ ├── JWKUtil.java │ │ │ │ │ │ ├── ResourceServerConfig.java.template │ │ │ │ │ │ └── Response.java │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── AuthFunctionTest.java.optional │ │ │ ├── oci-apigw-display-httprequest-info-python │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── apigw-create.png │ │ │ │ │ ├── apigw-deployment-create.png │ │ │ │ │ ├── apigw-deployment-endpoint.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-apigw-idcs-auth-basic │ │ │ │ ├── README.md │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── IDCS-appcreate0.png │ │ │ │ │ ├── IDCS-appcreate1.png │ │ │ │ │ ├── IDCS-appcreate2.png │ │ │ │ │ ├── IDCS-appcreate3.png │ │ │ │ │ ├── IDCS-appcreate4.png │ │ │ │ │ ├── IDCS-appcreate5.png │ │ │ │ │ ├── IDCS-appcreate6.png │ │ │ │ │ ├── IDCS-appcreate7.png │ │ │ │ │ ├── IDCS-appcreate8.png │ │ │ │ │ ├── apigw-create.png │ │ │ │ │ ├── apigw-deployment-create-route.png │ │ │ │ │ ├── apigw-deployment-create.png │ │ │ │ │ ├── apigw-deployment-endpoint.png │ │ │ │ │ └── userinput.png │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── fn │ │ │ │ │ │ ├── BasicAuth.java │ │ │ │ │ │ └── ResourceServerConfig.java │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── BasicAuthTest.java │ │ │ ├── oci-compute-control-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-cross-tenancy-policies-java │ │ │ │ ├── README.md │ │ │ │ └── images │ │ │ │ │ ├── create-destination-policies.png │ │ │ │ │ ├── create-source-policies.png │ │ │ │ │ ├── cross-tenancy-usecase.png │ │ │ │ │ └── userinput.png │ │ │ ├── oci-email-send-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── create_approved_sender-1.png │ │ │ │ │ ├── create_approved_sender-2.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-event-display-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── 1-create_event_rule.png │ │ │ │ │ ├── 2-create_event_rule.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-invoke-function-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── function-information.png │ │ │ │ │ └── userinput.png │ │ │ │ ├── requirements.txt │ │ │ │ └── test.json │ │ │ ├── oci-list-compartments-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-list-instances-java │ │ │ │ ├── README.md │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── ComputeInstancesList.java │ │ │ ├── oci-list-instances-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-load-file-into-adw-python │ │ │ │ ├── README.md │ │ │ │ ├── file1.csv │ │ │ │ ├── file2.csv │ │ │ │ ├── file3.csv │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── 1-create_event_rule.png │ │ │ │ │ ├── 2-create_event_rule.png │ │ │ │ │ ├── ADB-ORDS-URL.png │ │ │ │ │ ├── ADB-create.png │ │ │ │ │ ├── ADB-serviceconsole.png │ │ │ │ │ ├── create-bucket.png │ │ │ │ │ ├── userinput.png │ │ │ │ │ └── workflow.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-logs-datadog │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── userinput.png │ │ │ │ │ └── workflow.png │ │ │ │ ├── requirements.txt │ │ │ │ └── test.json │ │ │ ├── oci-monitoring-metric-export-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── Export-Function.1.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-notification-syniverse │ │ │ │ ├── README.md │ │ │ │ ├── alert-python │ │ │ │ │ ├── README.md │ │ │ │ │ ├── func.py │ │ │ │ │ ├── func.yaml │ │ │ │ │ ├── images │ │ │ │ │ │ ├── userinput.png │ │ │ │ │ │ └── workflow_alert.png │ │ │ │ │ ├── requirements.txt │ │ │ │ │ └── test-alert.json │ │ │ │ ├── images │ │ │ │ │ ├── userinput.png │ │ │ │ │ └── workflow.png │ │ │ │ ├── logs-python │ │ │ │ │ ├── README.md │ │ │ │ │ ├── func.py │ │ │ │ │ ├── func.yaml │ │ │ │ │ ├── images │ │ │ │ │ │ ├── userinput.png │ │ │ │ │ │ └── workflow_log.png │ │ │ │ │ ├── requirements.txt │ │ │ │ │ └── test-logs.json │ │ │ │ └── numbers.txt │ │ │ ├── oci-objectstorage-copy-objects-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── create_rule.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-objectstorage-create-par-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-objectstorage-custom-cert-put-object-go │ │ │ │ ├── README.md │ │ │ │ ├── func.go │ │ │ │ ├── func.yaml │ │ │ │ ├── go.mod │ │ │ │ └── images │ │ │ │ │ └── userinput.png │ │ │ ├── oci-objectstorage-custom-cert-put-object-java │ │ │ │ ├── README.md │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── ObjectStorageCustomCertPutObject.java │ │ │ ├── oci-objectstorage-custom-cert-put-object-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-objectstorage-custom-cert-put-object-ruby │ │ │ │ ├── Gemfile │ │ │ │ ├── README.md │ │ │ │ ├── func.rb │ │ │ │ ├── func.yaml │ │ │ │ └── images │ │ │ │ │ └── userinput.png │ │ │ ├── oci-objectstorage-get-object-java │ │ │ │ ├── README.md │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── ObjectStorageGetObject.java │ │ │ ├── oci-objectstorage-get-object-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-objectstorage-list-objects-java │ │ │ │ ├── README.md │ │ │ │ ├── func-jdk11.yaml │ │ │ │ ├── func-jdk8.yaml │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ ├── pom-jdk11.xml │ │ │ │ ├── pom-jdk8.xml │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── fn │ │ │ │ │ │ └── ObjectStorageListObjects.java │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── ObjectStoreListTest.java │ │ │ ├── oci-objectstorage-list-objects-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-objectstorage-put-object-java │ │ │ │ ├── README.md │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── ObjectStoragePutObject.java │ │ │ ├── oci-objectstorage-put-object-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-oic-hcm-object-upload │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── images │ │ │ │ │ ├── configure-oic-payload-definition.png │ │ │ │ │ ├── configure-oic-request-payload-option.png │ │ │ │ │ ├── function-payload.png │ │ │ │ │ └── userinput.png │ │ │ │ └── processEmployee │ │ │ │ │ ├── func.py │ │ │ │ │ ├── func.yaml │ │ │ │ │ └── requirements.txt │ │ │ ├── oci-ons-compute-shape-increase-python │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ ├── list_vm_shapes.py │ │ │ │ ├── requirements.txt │ │ │ │ └── test-alarm.json │ │ │ ├── oci-ons-publish-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── ons-create-email-subscription.png │ │ │ │ │ ├── ons-create-topic.png │ │ │ │ │ ├── ons-topic.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-serviceconnector-streaming-json-to-csv-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ ├── requirements.txt │ │ │ │ └── test.json │ │ │ ├── oci-serviceconnector-streaming-json-to-parquet-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ └── userinput.png │ │ │ │ ├── requirements.txt │ │ │ │ └── test.json │ │ │ ├── oci-stop-untagged-instance-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── event_rule.png │ │ │ │ │ ├── event_service.png │ │ │ │ │ ├── launch_instance_start.png │ │ │ │ │ ├── launch_instance_stopped.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-vault-decrypt-python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── userinput.png │ │ │ │ │ └── vault.png │ │ │ │ └── requirements.txt │ │ │ ├── oci-vault-get-secret-python │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ ├── images │ │ │ │ │ ├── secret-create.png │ │ │ │ │ ├── secret-ocid.png │ │ │ │ │ └── userinput.png │ │ │ │ └── requirements.txt │ │ │ └── trace-functions-with-apm │ │ │ │ ├── README.md │ │ │ │ ├── images │ │ │ │ └── userinput.png │ │ │ │ └── python │ │ │ │ ├── README.md │ │ │ │ ├── func.py │ │ │ │ ├── func.yaml │ │ │ │ └── requirements.txt │ │ └── templates │ │ │ ├── go │ │ │ ├── .gitkeep │ │ │ ├── func.go │ │ │ ├── func.yaml │ │ │ └── go.mod │ │ │ ├── java │ │ │ ├── .gitkeep │ │ │ ├── func.yaml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── HelloFunction.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── fn │ │ │ │ └── HelloFunctionTest.java │ │ │ ├── java11 │ │ │ ├── func.yaml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── HelloFunction.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── fn │ │ │ │ └── HelloFunctionTest.java │ │ │ ├── java8 │ │ │ ├── .gitkeep │ │ │ ├── func.yaml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── fn │ │ │ │ │ └── HelloFunction.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── fn │ │ │ │ └── HelloFunctionTest.java │ │ │ ├── kotlin │ │ │ ├── .gitkeep │ │ │ ├── func.yaml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── kotlin │ │ │ │ │ └── HelloFunction.kt │ │ │ │ └── test │ │ │ │ └── kotlin │ │ │ │ └── HelloFunctionTest.kt │ │ │ ├── node │ │ │ ├── func.js │ │ │ ├── func.yaml │ │ │ └── package.json │ │ │ ├── python │ │ │ ├── .gitkeep │ │ │ ├── func.py │ │ │ ├── func.yaml │ │ │ └── requirements.txt │ │ │ ├── python36 │ │ │ ├── .gitkeep │ │ │ ├── func.py │ │ │ ├── func.yaml │ │ │ └── requirements.txt │ │ │ ├── python371 │ │ │ ├── .gitkeep │ │ │ ├── func.py │ │ │ ├── func.yaml │ │ │ └── requirements.txt │ │ │ ├── python385 │ │ │ ├── func.py │ │ │ ├── func.yaml │ │ │ └── requirements.txt │ │ │ └── ruby │ │ │ ├── .gitkeep │ │ │ ├── Gemfile │ │ │ ├── func.rb │ │ │ └── func.yaml │ ├── settings.json │ ├── src │ │ ├── api │ │ │ ├── common.ts │ │ │ ├── function.ts │ │ │ ├── identity.ts │ │ │ ├── objectStorage.ts │ │ │ ├── search.ts │ │ │ ├── types.ts │ │ │ └── vcn.ts │ │ ├── commands │ │ │ └── install-oci-fn-cli.ts │ │ ├── common │ │ │ ├── fileSystem │ │ │ │ └── local-artifact.ts │ │ │ ├── git │ │ │ │ ├── git-clone.ts │ │ │ │ ├── parse-git-url.ts │ │ │ │ └── unit-tests │ │ │ │ │ └── validatingRepoNameFromURl.ts │ │ │ ├── monitor.ts │ │ │ ├── shell │ │ │ │ ├── docker-manager.ts │ │ │ │ ├── exec-shell-commands.ts │ │ │ │ └── fn-client-manager.ts │ │ │ └── validations │ │ │ │ ├── launchPayload.ts │ │ │ │ └── unit-tests │ │ │ │ └── validatePayloadValidator.ts │ │ ├── extension.ts │ │ ├── extensionVars.ts │ │ ├── git.d.ts │ │ ├── oci-api.d.ts │ │ ├── resourceinterfaces │ │ │ ├── ioci-compartment.ts │ │ │ ├── ioci-fn-app-create-info.ts │ │ │ ├── ioci-resource-node.ts │ │ │ ├── ioci-resource.ts │ │ │ ├── ioci-tenancy.ts │ │ │ └── ioci-user.ts │ │ ├── ui-helpers │ │ │ └── ui-helpers.ts │ │ ├── ui-test │ │ │ ├── .mocharc-debug.js │ │ │ └── extensionsView-test.ts │ │ ├── ui │ │ │ ├── commands │ │ │ │ ├── createApplication │ │ │ │ │ └── create-new-oci-application.ts │ │ │ │ ├── createFunction │ │ │ │ │ ├── create-fn-repo.ts │ │ │ │ │ ├── create-fn-sample.ts │ │ │ │ │ ├── create-fn-template.ts │ │ │ │ │ └── show-message.ts │ │ │ │ ├── deployFunction │ │ │ │ │ ├── check-git-repo.ts │ │ │ │ │ ├── deploy-fn.ts │ │ │ │ │ └── get-deploy-repo.ts │ │ │ │ ├── edit-fn.ts │ │ │ │ ├── launchWorkflow │ │ │ │ │ └── launch.ts │ │ │ │ ├── register-commands.ts │ │ │ │ ├── resources.ts │ │ │ │ └── ui │ │ │ │ │ ├── create-new-application.ts │ │ │ │ │ └── list-recent-commands.ts │ │ │ └── tree │ │ │ │ └── nodes │ │ │ │ ├── applications-node.ts │ │ │ │ ├── base-node.ts │ │ │ │ ├── documentation-node.ts │ │ │ │ ├── oci-application-node.ts │ │ │ │ ├── oci-compartment-node.ts │ │ │ │ ├── oci-configuration-node.ts │ │ │ │ ├── oci-function-node.ts │ │ │ │ ├── oci-new-function-node.ts │ │ │ │ ├── ociNode.ts │ │ │ │ └── rootNode.ts │ │ ├── utils │ │ │ ├── actionResult.ts │ │ │ ├── functionTemplate.ts │ │ │ ├── get-logger.ts │ │ │ ├── getUri.ts │ │ │ ├── parsers.ts │ │ │ ├── path-utils.ts │ │ │ ├── sampleGithubMappings.ts │ │ │ ├── streamUtils.ts │ │ │ ├── templateMappings.ts │ │ │ ├── unit-tests │ │ │ │ └── validator.test.ts │ │ │ └── validators.ts │ │ └── webViews │ │ │ ├── DeployFunction.ts │ │ │ ├── EditConfigurationPanel.ts │ │ │ └── EditFunctionSettingsPanel.ts │ ├── tsconfig.json │ ├── vsc-extension-quickstart.md │ └── webpack │ │ ├── common.js │ │ ├── dev.js │ │ └── prod.js ├── oci-core │ ├── .eslintignore │ ├── .vscode │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── gulpfile.js │ ├── i18n │ │ ├── ces │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── chs │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── cht │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── dan │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── deu │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── ell │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── fin │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── fra │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── frc │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── hrv │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── hun │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── ita │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── jpn │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── kor │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── nld │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── nor │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── pol │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── ptb │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── ptg │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── ron │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── rus │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── slk │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── slv │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── spa │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── srb │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── srl │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── swe │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ ├── tha │ │ │ ├── api │ │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ │ ├── oci-api-helper.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ │ ├── install-oci-cli.i18n.json │ │ │ │ ├── switch-profile.i18n.json │ │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ │ └── fileSystem │ │ │ │ │ ├── filesystem.i18n.json │ │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ │ ├── profile-config.i18n.json │ │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ │ ├── oci-profile-node.i18n.json │ │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ │ ├── commands │ │ │ │ │ └── register-commands.i18n.json │ │ │ │ ├── status-bar.i18n.json │ │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ │ ├── assert.i18n.json │ │ │ │ ├── file-utils.i18n.json │ │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ │ └── create-webview.i18n.json │ │ └── tur │ │ │ ├── api │ │ │ ├── compartments-with-resource-search.i18n.json │ │ │ ├── oci-api-helper.i18n.json │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── commands │ │ │ ├── install-oci-cli.i18n.json │ │ │ ├── switch-profile.i18n.json │ │ │ └── switch-region.i18n.json │ │ │ ├── common │ │ │ └── fileSystem │ │ │ │ ├── filesystem.i18n.json │ │ │ │ └── sandbox-folder.i18n.json │ │ │ ├── errorhandler │ │ │ └── service-error-handler.i18n.json │ │ │ ├── package.i18n.json │ │ │ ├── profilemanager │ │ │ ├── profile-config.i18n.json │ │ │ └── profile-manager.i18n.json │ │ │ ├── regions │ │ │ └── fetch-regions.i18n.json │ │ │ ├── tree │ │ │ ├── oci-profile-node.i18n.json │ │ │ └── oci-profile-tree-data-provider.i18n.json │ │ │ ├── ui │ │ │ ├── commands │ │ │ │ └── register-commands.i18n.json │ │ │ ├── status-bar.i18n.json │ │ │ └── tree-view.i18n.json │ │ │ ├── userinterface │ │ │ └── ui-helpers.i18n.json │ │ │ ├── util │ │ │ ├── assert.i18n.json │ │ │ ├── file-utils.i18n.json │ │ │ └── validators.i18n.json │ │ │ └── webviews │ │ │ └── create-webview.i18n.json │ ├── media │ │ └── images │ │ │ └── readme │ │ │ └── switch-region.gif │ ├── package.json │ ├── package.nls.json │ ├── resources │ │ ├── activity-bar-icon.png │ │ ├── apigateway-dark.svg │ │ ├── apigateway-light.svg │ │ ├── autonomousdb-dark.svg │ │ ├── autonomousdb-light.svg │ │ ├── bucket-dark.svg │ │ ├── bucket-light.svg │ │ ├── command-pallete.png │ │ ├── compartment-dark.svg │ │ ├── compartment-light.svg │ │ ├── edit.svg │ │ ├── email-sender-dark.svg │ │ ├── email-sender-light.svg │ │ ├── extension-icon.png │ │ ├── file_type_light_ini.svg │ │ ├── file_type_scala.svg │ │ ├── fs-dark.svg │ │ ├── fs-light.svg │ │ ├── function-dark.svg │ │ ├── function-light.svg │ │ ├── icons │ │ │ ├── default_file.svg │ │ │ ├── file_type_config.svg │ │ │ ├── file_type_docker.svg │ │ │ ├── file_type_go.svg │ │ │ ├── file_type_image.svg │ │ │ ├── file_type_jar.svg │ │ │ ├── file_type_java.svg │ │ │ ├── file_type_js.svg │ │ │ ├── file_type_json.svg │ │ │ ├── file_type_kotlin.svg │ │ │ ├── file_type_light_js.svg │ │ │ ├── file_type_light_json.svg │ │ │ ├── file_type_light_yaml.svg │ │ │ ├── file_type_markdown.svg │ │ │ ├── file_type_python.svg │ │ │ ├── file_type_ruby.svg │ │ │ ├── file_type_shell.svg │ │ │ ├── file_type_svg.svg │ │ │ ├── file_type_terraform.svg │ │ │ ├── file_type_text.svg │ │ │ ├── file_type_xml.svg │ │ │ ├── file_type_yaml.svg │ │ │ └── file_type_zip.svg │ │ ├── instance-dark.svg │ │ ├── instance-light.svg │ │ ├── lb-dark.svg │ │ ├── lb-light.svg │ │ ├── output-channel.png │ │ ├── profile-dark.svg │ │ ├── profile-light.svg │ │ ├── resource-manager-dark.svg │ │ ├── resource-manager-light.svg │ │ ├── signIn.png │ │ ├── stream-dark.svg │ │ ├── stream-light.svg │ │ ├── toolkit-documentation.png │ │ ├── vcn-dark.svg │ │ ├── vcn-light.svg │ │ └── view-resources.png │ ├── src │ │ ├── api │ │ │ ├── compartments-with-resource-search.ts │ │ │ ├── index.ts │ │ │ ├── oci-api-helper.ts │ │ │ ├── oci-api.ts │ │ │ ├── oci-sdk-client.ts │ │ │ └── oci │ │ │ │ └── local-artifact.ts │ │ ├── commands │ │ │ ├── copy-ocid.ts │ │ │ ├── filter-resources.ts │ │ │ ├── install-oci-cli.ts │ │ │ ├── sign-in-command.ts │ │ │ ├── switch-profile.ts │ │ │ ├── switch-region.ts │ │ │ └── walkthrough.ts │ │ ├── common │ │ │ ├── fileSystem │ │ │ │ ├── file-types.ts │ │ │ │ ├── filesystem.ts │ │ │ │ ├── sandbox-folder.ts │ │ │ │ ├── unit-tests │ │ │ │ │ └── detectingFileTypes.ts │ │ │ │ └── zip.ts │ │ │ └── git │ │ │ │ ├── git-clone.ts │ │ │ │ ├── parse-git-url.ts │ │ │ │ └── unit-tests │ │ │ │ └── validatingRepoNameFromURl.ts │ │ ├── errorhandler │ │ │ ├── index.ts │ │ │ ├── oci-plugin-error.ts │ │ │ └── service-error-handler.ts │ │ ├── extension-vars.ts │ │ ├── extension.ts │ │ ├── git.d.ts │ │ ├── index.d.ts │ │ ├── keypair │ │ │ ├── index.ts │ │ │ ├── jwk-keypair.ts │ │ │ └── keypair.ts │ │ ├── logger │ │ │ ├── index.ts │ │ │ ├── logger.ts │ │ │ └── logging.ts │ │ ├── profilemanager │ │ │ ├── index.ts │ │ │ ├── profile-config.ts │ │ │ ├── profile-manager.ts │ │ │ └── profile.ts │ │ ├── regions │ │ │ ├── fetch-regions.ts │ │ │ ├── index.ts │ │ │ └── region.ts │ │ ├── test │ │ │ └── run-test.ts │ │ ├── tree │ │ │ ├── oci-basic-resource.ts │ │ │ ├── oci-file-explorer-node.ts │ │ │ ├── oci-profile-node.ts │ │ │ └── oci-profile-tree-data-provider.ts │ │ ├── ui │ │ │ ├── commands │ │ │ │ └── register-commands.ts │ │ │ ├── status-bar.ts │ │ │ └── tree-view.ts │ │ ├── userinterface │ │ │ ├── base-node.ts │ │ │ ├── basic-resource.ts │ │ │ ├── compartment.ts │ │ │ ├── index.ts │ │ │ ├── oci-compartment-node.ts │ │ │ ├── oci-root-node.ts │ │ │ ├── profile-node.ts │ │ │ ├── profile-tree-data-provider.ts │ │ │ ├── resource-mapping.ts │ │ │ ├── resource.ts │ │ │ ├── root-node.ts │ │ │ └── ui-helpers.ts │ │ ├── util │ │ │ ├── assert.ts │ │ │ ├── auth-server.ts │ │ │ ├── file-utils.ts │ │ │ ├── fileExplorer.ts │ │ │ ├── key-fingerprint.ts │ │ │ ├── path-utils.ts │ │ │ ├── resources.ts │ │ │ ├── token.ts │ │ │ └── validators.ts │ │ └── webviews │ │ │ ├── create-webview.ts │ │ │ ├── index.ts │ │ │ └── webview-interface.ts │ ├── tsconfig.json │ ├── typings │ │ └── index.d.ts │ └── webpack │ │ ├── common.js │ │ ├── dev.js │ │ └── prod.js ├── odsc-vscode-plugin │ ├── .env │ ├── .eslintrc.json │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── checkstyle-idea.xml │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── odsc-vscode-plugin.iml │ │ ├── runConfigurations.xml │ │ ├── runConfigurations │ │ │ ├── ALL_Tests.xml │ │ │ ├── Build__vsix.xml │ │ │ ├── Install_prerequisites.xml │ │ │ ├── Integration_Tests___Authenticated.xml │ │ │ ├── Integration_Tests___Local.xml │ │ │ ├── Launch_VSCode_w__latest__vsix.xml │ │ │ └── Unit_Tests.xml │ │ └── vcs.xml │ ├── .mocharc.js │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── gulpfile.js │ ├── i18n │ │ ├── ces │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── chs │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── cht │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── dan │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── deu │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── ell │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── fin │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── fra │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── frc │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── hrv │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── hun │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── ita │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── jpn │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── kor │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── nld │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── nor │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── pol │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── ptb │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── ptg │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── ron │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── rus │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── slk │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── slv │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── spa │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── srb │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── srl │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── swe │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ ├── tha │ │ │ ├── api │ │ │ │ └── oci │ │ │ │ │ ├── data-science.i18n.json │ │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ │ ├── commands │ │ │ │ ├── launch-workflow.i18n.json │ │ │ │ ├── register-commands.i18n.json │ │ │ │ └── resources.i18n.json │ │ │ │ └── treeNodes │ │ │ │ ├── logic │ │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ │ ├── oci-job-node.i18n.json │ │ │ │ └── oci-job-run-node.i18n.json │ │ └── tur │ │ │ ├── api │ │ │ └── oci │ │ │ │ ├── data-science.i18n.json │ │ │ │ └── oci-sdk-client.i18n.json │ │ │ ├── extension.i18n.json │ │ │ ├── package.i18n.json │ │ │ └── ui │ │ │ ├── commands │ │ │ ├── launch-workflow.i18n.json │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ │ └── treeNodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ ├── oci-job-node.i18n.json │ │ │ └── oci-job-run-node.i18n.json │ ├── media │ │ ├── css │ │ │ └── common.css │ │ ├── images │ │ │ └── readme │ │ │ │ ├── artifact_node_actions.png │ │ │ │ ├── cancel_job_run.png │ │ │ │ ├── cancel_option.png │ │ │ │ ├── create_new_job.png │ │ │ │ ├── data_science.png │ │ │ │ ├── delete_job_run_confirmation_message.png │ │ │ │ ├── job_artifact_actions.png │ │ │ │ ├── job_run_actions.png │ │ │ │ ├── job_run_notification_message.png │ │ │ │ ├── jobrunsAndArtifacts.png │ │ │ │ ├── jobs.png │ │ │ │ ├── open_in_terminal.png │ │ │ │ ├── projects.png │ │ │ │ ├── run_job.png │ │ │ │ └── sign_in_workflow.gif │ │ └── js │ │ │ └── run-job.js │ ├── package.json │ ├── package.nls.json │ ├── resources │ │ ├── dark │ │ │ ├── compartment-dark.svg │ │ │ ├── each-artifact-dark.svg │ │ │ ├── each-project-dark.svg │ │ │ ├── job-file-node-dark.svg │ │ │ ├── job-run-dark.svg │ │ │ ├── job-run-states │ │ │ │ ├── job-run-dark-green.svg │ │ │ │ ├── job-run-dark-neutral.svg │ │ │ │ └── job-run-dark-red.svg │ │ │ ├── jobs-dark.svg │ │ │ └── link-external-dark.svg │ │ ├── html │ │ │ └── run-job.html │ │ ├── icons │ │ │ ├── default_file.svg │ │ │ ├── file_type_config.svg │ │ │ ├── file_type_docker.svg │ │ │ ├── file_type_go.svg │ │ │ ├── file_type_image.svg │ │ │ ├── file_type_jar.svg │ │ │ ├── file_type_java.svg │ │ │ ├── file_type_js.svg │ │ │ ├── file_type_json.svg │ │ │ ├── file_type_kotlin.svg │ │ │ ├── file_type_light_js.svg │ │ │ ├── file_type_light_json.svg │ │ │ ├── file_type_light_yaml.svg │ │ │ ├── file_type_markdown.svg │ │ │ ├── file_type_python.svg │ │ │ ├── file_type_ruby.svg │ │ │ ├── file_type_shell.svg │ │ │ ├── file_type_svg.svg │ │ │ ├── file_type_text.svg │ │ │ ├── file_type_xml.svg │ │ │ ├── file_type_yaml.svg │ │ │ └── file_type_zip.svg │ │ ├── light │ │ │ ├── compartment-light.svg │ │ │ ├── each-artifact-light.svg │ │ │ ├── each-project-light.svg │ │ │ ├── job-file-node-light.svg │ │ │ ├── job-run-light.svg │ │ │ ├── job-run-states │ │ │ │ ├── job-run-light-green.svg │ │ │ │ ├── job-run-light-neutral.svg │ │ │ │ └── job-run-light-red.svg │ │ │ ├── jobs-light.svg │ │ │ └── link-external-light.svg │ │ └── oracle.data_science.png │ ├── settings.json │ ├── src │ │ ├── api │ │ │ └── oci │ │ │ │ ├── clients.ts │ │ │ │ ├── data-science-artifacts.ts │ │ │ │ ├── data-science.ts │ │ │ │ ├── local-artifact.ts │ │ │ │ ├── oci-sdk-client.ts │ │ │ │ ├── resourceinterfaces │ │ │ │ ├── ioci-compartment.ts │ │ │ │ ├── ioci-resource-node.ts │ │ │ │ └── ioci-resource.ts │ │ │ │ └── types.ts │ │ ├── common │ │ │ ├── ReadMe.md │ │ │ ├── actionResult.ts │ │ │ ├── monitor.ts │ │ │ ├── time-intervals.ts │ │ │ ├── unit-tests │ │ │ │ └── validatingStrings.ts │ │ │ └── validators.ts │ │ ├── extension.ts │ │ ├── extensionVars.ts │ │ ├── oci-api.d.ts │ │ ├── ui │ │ │ ├── commands │ │ │ │ ├── launch-workflow.ts │ │ │ │ ├── list-recent-commands.ts │ │ │ │ ├── register-commands.ts │ │ │ │ └── resources.ts │ │ │ ├── treeNodes │ │ │ │ ├── base-node.ts │ │ │ │ ├── builders │ │ │ │ │ └── node-builder.ts │ │ │ │ ├── documentation-node.ts │ │ │ │ ├── logic │ │ │ │ │ ├── job-run-lifecycle-state-properties.ts │ │ │ │ │ └── unit-tests │ │ │ │ │ │ └── job-run-lifecycle-state-properties-test.ts │ │ │ │ ├── oci-compartment-node.ts │ │ │ │ ├── oci-job-node.ts │ │ │ │ ├── oci-job-run-node.ts │ │ │ │ ├── oci-project-node.ts │ │ │ │ ├── ociNode.ts │ │ │ │ ├── rootNode.ts │ │ │ │ ├── static-node.ts │ │ │ │ └── static-projects-node.ts │ │ │ └── vscode_ext.ts │ │ └── validations │ │ │ ├── payload-validator.ts │ │ │ └── unit-tests │ │ │ └── validating-payload.ts │ ├── tsconfig.json │ ├── vsc-extension-quickstart.md │ └── webpack │ │ ├── common.js │ │ ├── dev.js │ │ └── prod.js └── orm-vscode-plugin │ ├── .eslintrc.json │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── checkstyle-idea.xml │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── misc.xml │ ├── modules.xml │ ├── orm.iml │ ├── runConfigurations.xml │ ├── runConfigurations │ │ ├── ALL_Tests.xml │ │ ├── Build__vsix.xml │ │ ├── Install_prerequisites.xml │ │ ├── Integration_Tests___Authenticated.xml │ │ ├── Integration_Tests___Local.xml │ │ ├── Launch_VSCode_w__latest__vsix.xml │ │ └── Unit_Tests.xml │ └── vcs.xml │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── gulpfile.js │ ├── i18n │ ├── ces │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── chs │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── cht │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── dan │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── deu │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── ell │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── fin │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── fra │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── frc │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── hrv │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── hun │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── ita │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── jpn │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── kor │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── nld │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── nor │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── pol │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── ptb │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── ptg │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── ron │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── rus │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── slk │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── slv │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── spa │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── srb │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── srl │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── swe │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ ├── tha │ │ ├── commands │ │ │ ├── register-commands.i18n.json │ │ │ └── resources.i18n.json │ │ ├── common │ │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ │ ├── download-stack.i18n.json │ │ │ ├── plan-apply-stack.i18n.json │ │ │ └── upload-stack.i18n.json │ │ └── tree │ │ │ └── nodes │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ │ └── oci-stack-node.i18n.json │ └── tur │ │ ├── commands │ │ ├── register-commands.i18n.json │ │ └── resources.i18n.json │ │ ├── common │ │ └── launch-workflow.i18n.json │ │ ├── extension.i18n.json │ │ ├── package.i18n.json │ │ ├── stack-manager │ │ ├── download-stack.i18n.json │ │ ├── plan-apply-stack.i18n.json │ │ └── upload-stack.i18n.json │ │ └── tree │ │ └── nodes │ │ ├── logic │ │ └── job-run-lifecycle-state-properties.i18n.json │ │ └── oci-stack-node.i18n.json │ ├── media │ └── images │ │ └── readme │ │ ├── apply_job.png │ │ ├── folder options.png │ │ ├── git_based_password_screen.png │ │ ├── git_based_save_stack.png │ │ ├── git_based_stack_clone.png │ │ ├── git_based_stack_menu.png │ │ ├── initial-screen.png │ │ ├── non_git_download_conf.png │ │ ├── non_git_stack_menu.png │ │ ├── plan_job.png │ │ ├── save job.png │ │ ├── sign_in_workflow.gif │ │ ├── stacks-hierarchy.png │ │ └── terraform-edit.png │ ├── package.json │ ├── package.nls.json │ ├── resources │ ├── dark │ │ ├── compartment-node-dark.svg │ │ ├── each-stack-dark-green.svg │ │ ├── each-stack-dark-neutral.svg │ │ ├── each-stack-dark-red.svg │ │ ├── each-stack-dark.svg │ │ ├── link-external-dark.svg │ │ ├── resource-manager-dark.svg │ │ ├── single-compartment-dark.svg │ │ └── terraform-file-node-dark.svg │ ├── icons │ │ ├── default_file.svg │ │ ├── file_type_config.svg │ │ ├── file_type_docker.svg │ │ ├── file_type_go.svg │ │ ├── file_type_image.svg │ │ ├── file_type_java.svg │ │ ├── file_type_js.svg │ │ ├── file_type_json.svg │ │ ├── file_type_kotlin.svg │ │ ├── file_type_light_js.svg │ │ ├── file_type_light_json.svg │ │ ├── file_type_light_yaml.svg │ │ ├── file_type_markdown.svg │ │ ├── file_type_python.svg │ │ ├── file_type_ruby.svg │ │ ├── file_type_svg.svg │ │ ├── file_type_terraform.svg │ │ ├── file_type_text.svg │ │ ├── file_type_xml.svg │ │ └── file_type_yaml.svg │ ├── light │ │ ├── compartment-node-light.svg │ │ ├── each-stack-light-green.svg │ │ ├── each-stack-light-neutral.svg │ │ ├── each-stack-light-red.svg │ │ ├── each-stack-light.svg │ │ ├── link-external-light.svg │ │ ├── resource-manager-light.svg │ │ ├── single-compartment-light.svg │ │ └── terraform-file-node-light.svg │ └── oracle_rms.png │ ├── src │ ├── api │ │ ├── client-configurations.ts │ │ ├── identity-client.ts │ │ ├── objectstore-client.ts │ │ └── orm-client.ts │ ├── commands │ │ ├── list-recent-commands.ts │ │ ├── register-commands.ts │ │ └── resources.ts │ ├── common │ │ ├── fileSystem │ │ │ ├── file-system.ts │ │ │ ├── local-terraform-config.ts │ │ │ └── zip.ts │ │ ├── launch-workflow.ts │ │ └── monitor.ts │ ├── extension.ts │ ├── extensionVars.ts │ ├── git.d.ts │ ├── oci-api.d.ts │ ├── resourceinterfaces │ │ ├── ioci-compartment.ts │ │ ├── ioci-resource-node.ts │ │ └── ioci-resource.ts │ ├── stack-manager │ │ ├── download-stack.ts │ │ ├── plan-apply-stack.ts │ │ └── upload-stack.ts │ ├── test │ │ └── unit-tests │ │ │ ├── job-run-lifecycle-state-properties.ts │ │ │ └── payload-validation.ts │ ├── tree │ │ └── nodes │ │ │ ├── base-node.ts │ │ │ ├── builders │ │ │ └── node-builder.ts │ │ │ ├── documentation-node.ts │ │ │ ├── logic │ │ │ └── job-run-lifecycle-state-properties.ts │ │ │ ├── oci-compartment-node.ts │ │ │ ├── oci-stack-node.ts │ │ │ ├── ociNode.ts │ │ │ ├── rootNode.ts │ │ │ ├── static-node.ts │ │ │ └── static-stacks-node.ts │ ├── utils │ │ ├── actionResult.ts │ │ ├── get-logger.ts │ │ └── path-utils.ts │ └── validations │ │ └── payload-validator.ts │ ├── tsconfig.json │ ├── vsc-extension-quickstart.md │ └── webpack │ ├── common.js │ ├── dev.js │ └── prod.js ├── tsconfig.json └── vsc-extension-quickstart.md /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "oci.defaultProfileName": "DEFAULT", 3 | } -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | media/images/readme/* -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /media/images/oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/oracle.png -------------------------------------------------------------------------------- /media/images/readme/apm_tree_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/apm_tree_view.png -------------------------------------------------------------------------------- /media/images/readme/app_right_click_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/app_right_click_options.png -------------------------------------------------------------------------------- /media/images/readme/apply_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/apply_job.png -------------------------------------------------------------------------------- /media/images/readme/artifact_node_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/artifact_node_actions.png -------------------------------------------------------------------------------- /media/images/readme/cancel_job_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/cancel_job_run.png -------------------------------------------------------------------------------- /media/images/readme/cancel_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/cancel_option.png -------------------------------------------------------------------------------- /media/images/readme/choose_script_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/choose_script_type.png -------------------------------------------------------------------------------- /media/images/readme/configuration_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/configuration_button.png -------------------------------------------------------------------------------- /media/images/readme/create_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/create_monitor.png -------------------------------------------------------------------------------- /media/images/readme/create_monitor_command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/create_monitor_command.png -------------------------------------------------------------------------------- /media/images/readme/create_new_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/create_new_job.png -------------------------------------------------------------------------------- /media/images/readme/create_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/create_script.png -------------------------------------------------------------------------------- /media/images/readme/create_type_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/create_type_function.png -------------------------------------------------------------------------------- /media/images/readme/data_science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/data_science.png -------------------------------------------------------------------------------- /media/images/readme/delete_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/delete_monitor.png -------------------------------------------------------------------------------- /media/images/readme/delete_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/delete_script.png -------------------------------------------------------------------------------- /media/images/readme/deploy_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/deploy_form.png -------------------------------------------------------------------------------- /media/images/readme/download_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/download_script.png -------------------------------------------------------------------------------- /media/images/readme/edit_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/edit_config.png -------------------------------------------------------------------------------- /media/images/readme/edit_config_webview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/edit_config_webview.png -------------------------------------------------------------------------------- /media/images/readme/edit_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/edit_monitor.png -------------------------------------------------------------------------------- /media/images/readme/edit_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/edit_script.png -------------------------------------------------------------------------------- /media/images/readme/folder options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/folder options.png -------------------------------------------------------------------------------- /media/images/readme/func_right_click_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/func_right_click_options.png -------------------------------------------------------------------------------- /media/images/readme/get_execution_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/get_execution_results.png -------------------------------------------------------------------------------- /media/images/readme/git_based_password_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/git_based_password_screen.png -------------------------------------------------------------------------------- /media/images/readme/git_based_save_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/git_based_save_stack.png -------------------------------------------------------------------------------- /media/images/readme/git_based_stack_clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/git_based_stack_clone.png -------------------------------------------------------------------------------- /media/images/readme/git_based_stack_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/git_based_stack_menu.png -------------------------------------------------------------------------------- /media/images/readme/initial-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/initial-screen.png -------------------------------------------------------------------------------- /media/images/readme/job_artifact_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/job_artifact_actions.png -------------------------------------------------------------------------------- /media/images/readme/job_run_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/job_run_actions.png -------------------------------------------------------------------------------- /media/images/readme/jobrunsAndArtifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/jobrunsAndArtifacts.png -------------------------------------------------------------------------------- /media/images/readme/jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/jobs.png -------------------------------------------------------------------------------- /media/images/readme/list_vantage_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/list_vantage_points.png -------------------------------------------------------------------------------- /media/images/readme/non_git_download_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/non_git_download_conf.png -------------------------------------------------------------------------------- /media/images/readme/non_git_stack_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/non_git_stack_menu.png -------------------------------------------------------------------------------- /media/images/readme/oci_rms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/oci_rms.gif -------------------------------------------------------------------------------- /media/images/readme/open_in_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/open_in_terminal.png -------------------------------------------------------------------------------- /media/images/readme/plan_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/plan_job.png -------------------------------------------------------------------------------- /media/images/readme/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/projects.png -------------------------------------------------------------------------------- /media/images/readme/python-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/python-hello-world.png -------------------------------------------------------------------------------- /media/images/readme/right_click_deploy_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/right_click_deploy_option.png -------------------------------------------------------------------------------- /media/images/readme/run_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/run_job.png -------------------------------------------------------------------------------- /media/images/readme/run_now_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/run_now_monitor.png -------------------------------------------------------------------------------- /media/images/readme/save job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/save job.png -------------------------------------------------------------------------------- /media/images/readme/save_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/save_config.png -------------------------------------------------------------------------------- /media/images/readme/sign_in_workflow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/sign_in_workflow.gif -------------------------------------------------------------------------------- /media/images/readme/sign_in_workflow_a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/sign_in_workflow_a.gif -------------------------------------------------------------------------------- /media/images/readme/stacks-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/stacks-hierarchy.png -------------------------------------------------------------------------------- /media/images/readme/switch-region.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/switch-region.gif -------------------------------------------------------------------------------- /media/images/readme/terraform-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/terraform-edit.png -------------------------------------------------------------------------------- /media/images/readme/update_config_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/update_config_deploy.png -------------------------------------------------------------------------------- /media/images/readme/view_monitor_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/view_monitor_details.png -------------------------------------------------------------------------------- /media/images/readme/view_monitor_in_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/view_monitor_in_browser.png -------------------------------------------------------------------------------- /media/images/readme/view_script_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/media/images/readme/view_script_details.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/.eslintrc.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/.gitignore -------------------------------------------------------------------------------- /src/apm-vscode-plugin/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/.mocharc.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/.prettierrc -------------------------------------------------------------------------------- /src/apm-vscode-plugin/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/.vscode/extensions.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/.vscode/launch.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/.vscode/settings.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/.vscode/tasks.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/.vscodeignore -------------------------------------------------------------------------------- /src/apm-vscode-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /src/apm-vscode-plugin/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/LICENSE.txt -------------------------------------------------------------------------------- /src/apm-vscode-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/README.md -------------------------------------------------------------------------------- /src/apm-vscode-plugin/THIRD_PARTY_LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/THIRD_PARTY_LICENSES.txt -------------------------------------------------------------------------------- /src/apm-vscode-plugin/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/gulpfile.js -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/ces/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/ces/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/chs/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/chs/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/cht/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/cht/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/dan/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/dan/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/deu/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/deu/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/ell/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/ell/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/fin/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/fin/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/fra/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/fra/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/frc/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/frc/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/hrv/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/hrv/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/hun/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/hun/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/ita/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/ita/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/jpn/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/jpn/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/kor/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/kor/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/nld/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/nld/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/nor/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/nor/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/pol/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/pol/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/ptb/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/ptb/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/ptg/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/ptg/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/ron/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/ron/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/rus/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/rus/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/slk/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/slk/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/slv/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/slv/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/spa/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/spa/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/srb/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/srb/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/srl/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/srl/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/swe/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/swe/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/tha/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/tha/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/i18n/tur/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/i18n/tur/package.i18n.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/media/css/synthetics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/media/css/synthetics.css -------------------------------------------------------------------------------- /src/apm-vscode-plugin/media/js/download/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/media/js/download/script.js -------------------------------------------------------------------------------- /src/apm-vscode-plugin/media/js/monitor/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/media/js/monitor/logs.js -------------------------------------------------------------------------------- /src/apm-vscode-plugin/media/js/script/editForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/media/js/script/editForm.js -------------------------------------------------------------------------------- /src/apm-vscode-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/package.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/package.nls.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/resources/dark/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/resources/dark/error.svg -------------------------------------------------------------------------------- /src/apm-vscode-plugin/resources/dark/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/resources/dark/info.svg -------------------------------------------------------------------------------- /src/apm-vscode-plugin/resources/dark/tooltip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/resources/dark/tooltip.svg -------------------------------------------------------------------------------- /src/apm-vscode-plugin/resources/oracle-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/resources/oracle-icon.png -------------------------------------------------------------------------------- /src/apm-vscode-plugin/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/settings.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/api/apmdomain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/api/apmdomain.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/api/apmsynthetics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/api/apmsynthetics.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/api/common.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/api/identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/api/identity.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/api/objectStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/api/objectStorage.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/api/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/api/search.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/api/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/api/telemetry.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/common/git/git-clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/common/git/git-clone.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/common/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/common/monitor.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/extension.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/extensionVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/extensionVars.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/git.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/git.d.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/oci-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/oci-api.d.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/utils/actionResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/utils/actionResult.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/utils/get-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/utils/get-logger.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/utils/getUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/utils/getUri.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/utils/path-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/utils/path-utils.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/utils/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/utils/validators.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/validation/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/validation/validator.js -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/webViews/Download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/webViews/Download.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/webViews/EditMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/webViews/EditMonitor.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/webViews/EditScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/webViews/EditScript.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/webViews/GetLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/webViews/GetLogs.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/webViews/ViewHar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/webViews/ViewHar.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/webViews/ViewLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/webViews/ViewLogs.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/src/webViews/ViewOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/src/webViews/ViewOutput.ts -------------------------------------------------------------------------------- /src/apm-vscode-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/tsconfig.json -------------------------------------------------------------------------------- /src/apm-vscode-plugin/webpack/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/webpack/common.js -------------------------------------------------------------------------------- /src/apm-vscode-plugin/webpack/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/webpack/dev.js -------------------------------------------------------------------------------- /src/apm-vscode-plugin/webpack/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/apm-vscode-plugin/webpack/prod.js -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.eslintrc.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.gitignore -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.idea/.gitignore -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.idea/checkstyle-idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.idea/checkstyle-idea.xml -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.idea/misc.xml -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.idea/modules.xml -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.idea/vcs.xml -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.mocharc.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.prettierrc -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.vscode/extensions.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.vscode/launch.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.vscode/settings.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.vscode/tasks.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/.vscodeignore -------------------------------------------------------------------------------- /src/faas-vscode-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /src/faas-vscode-plugin/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/LICENSE.txt -------------------------------------------------------------------------------- /src/faas-vscode-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/README.md -------------------------------------------------------------------------------- /src/faas-vscode-plugin/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/gulpfile.js -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ces/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Načtení rozšíření kompartmentu selhalo."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ces/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/ces/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/chs/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"无法加载区间扩展。"} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/chs/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/chs/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/chs/ui/tree/nodes/oci-configuration-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"staticConfigurationNodeLabel":"配置"} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/cht/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"無法載入區間擴充功能."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/cht/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/cht/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/cht/ui/tree/nodes/oci-configuration-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"staticConfigurationNodeLabel":"組態"} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/dan/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Kunne ikke indlæse udvidelsen Rum."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/dan/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/dan/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/deu/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/deu/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ell/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/ell/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ell/ui/tree/nodes/oci-configuration-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"staticConfigurationNodeLabel":"Διαμόρφωση"} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/fin/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Compartments-laajennuksen lataus epäonnistui."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/fin/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/fin/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/fin/ui/tree/nodes/oci-configuration-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"staticConfigurationNodeLabel":"Kokoonpano"} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/fra/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/fra/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/frc/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/frc/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/hrv/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Nije uspjelo učitavanje proširenja odjeljka."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/hrv/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/hrv/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/hun/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Az Útválasztási szegmens bővítmény betöltése sikertelen."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/hun/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/hun/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ita/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/ita/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/jpn/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/jpn/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/jpn/ui/tree/nodes/oci-configuration-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"staticConfigurationNodeLabel":"構成"} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/kor/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"구획 확장 로드를 실패했습니다."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/kor/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/kor/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/kor/ui/tree/nodes/oci-configuration-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"staticConfigurationNodeLabel":"구성"} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/nld/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/nld/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/nor/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Kan ikke laste seksjonsutvidelsen."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/nor/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/nor/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/pol/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/pol/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ptb/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Falha ao carregar a extensão de Compartimentos."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ptb/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/ptb/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ptg/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Falha ao carregar a extensão dos Compartimentos."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ptg/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/ptg/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ron/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Eşec la încărcarea extensiei pentru compartimente."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/ron/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/ron/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/rus/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/rus/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/rus/ui/tree/nodes/oci-configuration-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"staticConfigurationNodeLabel":"Конфигурация"} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/slk/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Nepodarilo sa načítať rozšírenie Kompartmenty."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/slk/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/slk/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/slv/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/slv/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/spa/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Fallo al cargar la extensión de compartimentos."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/spa/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/spa/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/srb/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/srb/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/srb/ui/tree/nodes/oci-configuration-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"staticConfigurationNodeLabel":"Конфигурација"} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/srl/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Nije uspelo učitavanje proširenja Odeljci."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/srl/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/i18n/srl/package.i18n.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/swe/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Kunde inte ladda tillägget för delområden."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/i18n/tur/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Bölmeler uzantısı yüklenemedi."} -------------------------------------------------------------------------------- /src/faas-vscode-plugin/media/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/media/css/common.css -------------------------------------------------------------------------------- /src/faas-vscode-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/package.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/package.nls.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/hello-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/imagedims-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | wand -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-adb-client-runsql-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | cx_oracle 3 | oci 4 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-adb-ords-runsql-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | requests -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-apigw-apikey-validation-python/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | test.py -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-apigw-apikey-validation-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-apigw-authorizer-idcs-java/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ResourceServerConfig.java -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-apigw-display-httprequest-info-python/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | test.py -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-apigw-display-httprequest-info-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-compute-control-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-email-send-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-event-display-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-invoke-function-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-list-compartments-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci>=2.2.18 3 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-list-instances-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci>=2.2.18 3 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-load-file-into-adw-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci 3 | requests -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-logs-datadog/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | requests 3 | oci 4 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-monitoring-metric-export-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci 3 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-notification-syniverse/alert-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | requests 3 | oci -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-notification-syniverse/logs-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | requests 3 | oci -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-objectstorage-copy-objects-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk>=0.1.40 2 | oci>=2.49.1 -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-objectstorage-create-par-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-objectstorage-custom-cert-put-object-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk>=0.1.35 2 | oci==2.43.0 3 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-objectstorage-get-object-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci>=2.2.18 3 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-objectstorage-list-objects-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci>=2.2.18 3 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-objectstorage-put-object-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci>=2.2.18 3 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-oic-hcm-object-upload/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | test.py -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-oic-hcm-object-upload/processEmployee/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | requests 3 | oci -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-ons-compute-shape-increase-python/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | test.py 4 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-ons-compute-shape-increase-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-ons-publish-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci 3 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-serviceconnector-streaming-json-to-csv-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | requests 3 | oci 4 | pandas 5 | pyarrow 6 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-serviceconnector-streaming-json-to-parquet-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | requests 3 | oci 4 | pandas 5 | pyarrow -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-vault-decrypt-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-vault-get-secret-python/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | test.py -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/oci-vault-get-secret-python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | oci -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/samples/trace-functions-with-apm/python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk 2 | requests 3 | py_zipkin 4 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/go/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/go/go.mod: -------------------------------------------------------------------------------- 1 | 2 | module func 3 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/java/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/java8/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/kotlin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/python/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/python/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/python36/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/python36/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/python371/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/python371/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/python385/requirements.txt: -------------------------------------------------------------------------------- 1 | fdk -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/ruby/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/resources/templates/ruby/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' do 2 | gem 'fdk', '>= 0.0.20' 3 | end 4 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/settings.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/api/common.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/api/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/api/function.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/api/identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/api/identity.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/api/objectStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/api/objectStorage.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/api/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/api/search.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/api/types.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/api/vcn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/api/vcn.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/common/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/common/monitor.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/extension.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/extensionVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/extensionVars.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/git.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/git.d.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/oci-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/oci-api.d.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/utils/get-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/utils/get-logger.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/utils/getUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/utils/getUri.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/utils/parsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/utils/parsers.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/utils/path-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/utils/path-utils.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/utils/streamUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/utils/streamUtils.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/src/utils/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/src/utils/validators.ts -------------------------------------------------------------------------------- /src/faas-vscode-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/tsconfig.json -------------------------------------------------------------------------------- /src/faas-vscode-plugin/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/faas-vscode-plugin/webpack/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/webpack/common.js -------------------------------------------------------------------------------- /src/faas-vscode-plugin/webpack/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/webpack/dev.js -------------------------------------------------------------------------------- /src/faas-vscode-plugin/webpack/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/faas-vscode-plugin/webpack/prod.js -------------------------------------------------------------------------------- /src/oci-core/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/.eslintignore -------------------------------------------------------------------------------- /src/oci-core/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/.vscode/launch.json -------------------------------------------------------------------------------- /src/oci-core/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/.vscode/settings.json -------------------------------------------------------------------------------- /src/oci-core/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/.vscode/tasks.json -------------------------------------------------------------------------------- /src/oci-core/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/.vscodeignore -------------------------------------------------------------------------------- /src/oci-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/CHANGELOG.md -------------------------------------------------------------------------------- /src/oci-core/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/LICENSE.txt -------------------------------------------------------------------------------- /src/oci-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/README.md -------------------------------------------------------------------------------- /src/oci-core/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/gulpfile.js -------------------------------------------------------------------------------- /src/oci-core/i18n/ces/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ces/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ces/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ces/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ces/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/ces/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ces/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ces/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ces/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ces/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ces/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ces/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Zadejte platný HTML obsah k načtení"} -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"选择 OCI 概要信息"} -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/common/fileSystem/sandbox-folder.i18n.json: -------------------------------------------------------------------------------- 1 | {"absolutePathErrorMsg":"应为以存储根 ({0}) 开头的绝对路径。"} -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/errorhandler/service-error-handler.i18n.json: -------------------------------------------------------------------------------- 1 | {"checkPolicyMessage":"请检查租户下是否存在资源且具有正确的策略设置"} -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/chs/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/tree/oci-profile-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"tenancyErrorMsg":"如果在 vscode 中运行,则租户不能为空值。请在配置文件中输入有效租户,并点击“刷新树”。"} -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/tree/oci-profile-tree-data-provider.i18n.json: -------------------------------------------------------------------------------- 1 | {"profileNamePlaceHolderText":"请登录","findTreeItemErrorMsg":"搜索树项目时出错"} -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/chs/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/chs/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/chs/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/chs/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/chs/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"请提供有效的 HTML 内容以进行加载"} -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"選取 OCI 設定檔"} -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/common/fileSystem/sandbox-folder.i18n.json: -------------------------------------------------------------------------------- 1 | {"absolutePathErrorMsg":"應為以儲存根目錄為開頭的絕對路徑 ({0})."} -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/errorhandler/service-error-handler.i18n.json: -------------------------------------------------------------------------------- 1 | {"checkPolicyMessage":"請檢查租用戶是否有資源存在且已設定適當的原則"} -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/cht/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/tree/oci-profile-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"tenancyErrorMsg":"若是在 vscode 執行, 租用戶不可為空值. 請在組態檔中輸入有效的租用戶, 然後按「重新整理樹狀結構」."} -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/tree/oci-profile-tree-data-provider.i18n.json: -------------------------------------------------------------------------------- 1 | {"profileNamePlaceHolderText":"請登入","findTreeItemErrorMsg":"搜尋樹狀結構項目時發生錯誤 "} -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/cht/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/cht/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/cht/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/cht/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/cht/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"請提供有效的 HTML 內容以進行載入"} -------------------------------------------------------------------------------- /src/oci-core/i18n/dan/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/dan/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/dan/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/dan/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/dan/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/dan/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/dan/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/dan/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/dan/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/dan/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/dan/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/dan/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Angiv gyldigt HTML-indhold for at indlæse"} -------------------------------------------------------------------------------- /src/oci-core/i18n/deu/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/deu/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/deu/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/deu/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/deu/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/deu/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/deu/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/deu/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/deu/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/deu/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/deu/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/deu/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Geben Sie gültigen HTML-Inhalt zum Laden an"} -------------------------------------------------------------------------------- /src/oci-core/i18n/ell/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"Επιλέξτε ένα προφίλ OCI"} -------------------------------------------------------------------------------- /src/oci-core/i18n/ell/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ell/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ell/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ell/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ell/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/ell/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ell/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ell/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ell/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ell/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ell/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ell/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Παράσχετε έγκυρο περιεχόμενο HTML για φόρτωση"} -------------------------------------------------------------------------------- /src/oci-core/i18n/fin/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/fin/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/fin/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/fin/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/fin/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/fin/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/fin/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/fin/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/fin/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/fin/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/fin/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/fin/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Anna sallittu HTML-sisältö lataamista varten"} -------------------------------------------------------------------------------- /src/oci-core/i18n/fra/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/fra/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/fra/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/fra/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/fra/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/fra/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/fra/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/fra/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/fra/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/fra/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/fra/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/fra/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Fournissez du contenu HTML valide à charger"} -------------------------------------------------------------------------------- /src/oci-core/i18n/frc/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/frc/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/frc/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/frc/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/frc/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/frc/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/frc/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/frc/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/frc/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/frc/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/frc/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/frc/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Indiquez un contenu HTML valide à charger"} -------------------------------------------------------------------------------- /src/oci-core/i18n/hrv/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/hrv/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/hrv/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/hrv/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/hrv/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/hrv/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/hrv/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/hrv/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/hrv/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/hrv/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/hrv/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/hrv/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Navedite valjani HTML sadržaj za učitavanje"} -------------------------------------------------------------------------------- /src/oci-core/i18n/hun/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/hun/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/hun/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/hun/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/hun/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/hun/util/assert.i18n.json: -------------------------------------------------------------------------------- 1 | {"assertErrorMsg":"állítás: meg kell adni az értéket: {0}"} -------------------------------------------------------------------------------- /src/oci-core/i18n/hun/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/hun/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/hun/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/hun/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/hun/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"A betöltéshez adjon meg egy érvényes HTML-tartalmat"} -------------------------------------------------------------------------------- /src/oci-core/i18n/ita/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ita/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ita/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ita/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ita/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/ita/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ita/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ita/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ita/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ita/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ita/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/jpn/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"OCIプロファイルを選択します"} -------------------------------------------------------------------------------- /src/oci-core/i18n/jpn/common/fileSystem/sandbox-folder.i18n.json: -------------------------------------------------------------------------------- 1 | {"absolutePathErrorMsg":"ストレージ・ルート({0})で始まる絶対パスが必要です。"} -------------------------------------------------------------------------------- /src/oci-core/i18n/jpn/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/jpn/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/jpn/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/jpn/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/jpn/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/jpn/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/jpn/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/jpn/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/jpn/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/jpn/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/jpn/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/jpn/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"ロードする有効なHTMLコンテンツを指定してください"} -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"OCI 프로파일 선택"} -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/common/fileSystem/sandbox-folder.i18n.json: -------------------------------------------------------------------------------- 1 | {"absolutePathErrorMsg":"스토리지 루트({0})로 시작하는 절대 경로가 필요합니다."} -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/errorhandler/service-error-handler.i18n.json: -------------------------------------------------------------------------------- 1 | {"checkPolicyMessage":"리소스가 존재하고 테넌시에 적절한 정책 설정이 있는지 확인하십시오."} -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/kor/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/tree/oci-profile-tree-data-provider.i18n.json: -------------------------------------------------------------------------------- 1 | {"profileNamePlaceHolderText":"사인인하십시오.","findTreeItemErrorMsg":"트리 항목을 검색하는 중 오류가 발생했습니다. "} -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/kor/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/kor/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/kor/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/kor/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/kor/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"로드할 적합한 HTML 콘텐츠를 제공하십시오."} -------------------------------------------------------------------------------- /src/oci-core/i18n/nld/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/nld/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/nld/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/nld/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/nld/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/nld/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/nld/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/nld/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/nld/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/nld/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/nld/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/nld/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Geef geldige HTML-inhoud op om te laden."} -------------------------------------------------------------------------------- /src/oci-core/i18n/nor/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/nor/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/nor/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/nor/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/nor/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/nor/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/nor/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/nor/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/nor/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/nor/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/nor/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/nor/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Angi gyldig HTML-innhold som skal lastes"} -------------------------------------------------------------------------------- /src/oci-core/i18n/pol/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/pol/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/pol/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/pol/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/pol/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/pol/util/assert.i18n.json: -------------------------------------------------------------------------------- 1 | {"assertErrorMsg":"asercja: trzeba zdefiniować wartość: {0}"} -------------------------------------------------------------------------------- /src/oci-core/i18n/pol/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/pol/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/pol/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/pol/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptb/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"Selecione um perfil do OCI"} -------------------------------------------------------------------------------- /src/oci-core/i18n/ptb/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ptb/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptb/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ptb/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptb/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/ptb/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ptb/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptb/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ptb/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptb/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ptb/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptb/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Forneça um conteúdo HTML válido para carregar"} -------------------------------------------------------------------------------- /src/oci-core/i18n/ptg/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"Selecionar um perfil do OCI"} -------------------------------------------------------------------------------- /src/oci-core/i18n/ptg/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ptg/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptg/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ptg/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptg/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/ptg/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ptg/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptg/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ptg/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptg/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ptg/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ptg/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Forneça um conteúdo HTML válido para carregar"} -------------------------------------------------------------------------------- /src/oci-core/i18n/ron/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ron/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ron/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ron/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ron/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/ron/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ron/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ron/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ron/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ron/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/ron/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/ron/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Introduceţi un conţinut HTML valid de încărcat"} -------------------------------------------------------------------------------- /src/oci-core/i18n/rus/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"Выберите профиль OCI"} -------------------------------------------------------------------------------- /src/oci-core/i18n/rus/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/rus/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/rus/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/rus/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/rus/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/rus/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/rus/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/rus/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/rus/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/rus/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/rus/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slk/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/slk/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slk/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/slk/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slk/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/slk/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/slk/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slk/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/slk/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slk/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/slk/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slk/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Zadajte platný obsah HTML, ktorý sa má načítať"} -------------------------------------------------------------------------------- /src/oci-core/i18n/slv/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/slv/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slv/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/slv/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slv/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/slv/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/slv/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slv/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/slv/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slv/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/slv/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/slv/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Navedite veljavno vsebino HTML za nalaganje"} -------------------------------------------------------------------------------- /src/oci-core/i18n/spa/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"Seleccione un perfil de OCI"} -------------------------------------------------------------------------------- /src/oci-core/i18n/spa/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/spa/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/spa/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/spa/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/spa/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/spa/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/spa/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/spa/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/spa/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/spa/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/spa/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/spa/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Proporcione un contenido HTML válido para cargar"} -------------------------------------------------------------------------------- /src/oci-core/i18n/srb/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"Изаберите OCI профил"} -------------------------------------------------------------------------------- /src/oci-core/i18n/srb/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/srb/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/srb/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/srb/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/srb/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/srb/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/srb/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/srb/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/srb/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/srb/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/srb/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/srl/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/srl/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/srl/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/srl/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/srl/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/srl/util/assert.i18n.json: -------------------------------------------------------------------------------- 1 | {"assertErrorMsg":"potvrda: mora da se definiše vrednost: {0}"} -------------------------------------------------------------------------------- /src/oci-core/i18n/srl/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/srl/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/srl/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/srl/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/srl/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Navedite važeći HTML sadržaj za učitavanje"} -------------------------------------------------------------------------------- /src/oci-core/i18n/swe/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/swe/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/swe/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/swe/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/swe/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/swe/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/swe/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/swe/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/swe/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/swe/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/swe/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/swe/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Ange giltigt HTML-innehåll att ladda"} -------------------------------------------------------------------------------- /src/oci-core/i18n/tha/commands/switch-profile.i18n.json: -------------------------------------------------------------------------------- 1 | {"profilePlaceHolderText":"เลือกโปรไฟล์ OCI"} -------------------------------------------------------------------------------- /src/oci-core/i18n/tha/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/tha/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/tha/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/tha/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/tha/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/tha/util/assert.i18n.json: -------------------------------------------------------------------------------- 1 | {"assertErrorMsg":"รักษาสิทธิ์: ต้องกำหนดค่า: {0}"} -------------------------------------------------------------------------------- /src/oci-core/i18n/tha/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/tha/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/tha/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/tha/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/tur/common/fileSystem/sandbox-folder.i18n.json: -------------------------------------------------------------------------------- 1 | {"absolutePathErrorMsg":"Depolama köküyle ({0}) başlayan mutlak bir yol bekleniyordu."} -------------------------------------------------------------------------------- /src/oci-core/i18n/tur/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/tur/package.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/tur/ui/status-bar.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/tur/ui/status-bar.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/tur/ui/tree-view.i18n.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/oci-core/i18n/tur/util/assert.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/tur/util/assert.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/tur/util/file-utils.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/tur/util/file-utils.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/tur/util/validators.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/i18n/tur/util/validators.i18n.json -------------------------------------------------------------------------------- /src/oci-core/i18n/tur/webviews/create-webview.i18n.json: -------------------------------------------------------------------------------- 1 | {"createWebViewWarningMsg":"Lütfen yüklenecek geçerli HTML içeriğini sağlayın"} -------------------------------------------------------------------------------- /src/oci-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/package.json -------------------------------------------------------------------------------- /src/oci-core/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/package.nls.json -------------------------------------------------------------------------------- /src/oci-core/resources/activity-bar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/activity-bar-icon.png -------------------------------------------------------------------------------- /src/oci-core/resources/apigateway-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/apigateway-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/apigateway-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/apigateway-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/autonomousdb-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/autonomousdb-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/autonomousdb-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/autonomousdb-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/bucket-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/bucket-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/bucket-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/bucket-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/command-pallete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/command-pallete.png -------------------------------------------------------------------------------- /src/oci-core/resources/compartment-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/compartment-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/compartment-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/compartment-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/edit.svg -------------------------------------------------------------------------------- /src/oci-core/resources/email-sender-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/email-sender-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/email-sender-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/email-sender-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/extension-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/extension-icon.png -------------------------------------------------------------------------------- /src/oci-core/resources/file_type_light_ini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/file_type_light_ini.svg -------------------------------------------------------------------------------- /src/oci-core/resources/file_type_scala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/file_type_scala.svg -------------------------------------------------------------------------------- /src/oci-core/resources/fs-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/fs-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/fs-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/fs-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/function-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/function-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/function-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/function-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/default_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/default_file.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_go.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_jar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_jar.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_java.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_js.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_json.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_ruby.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_svg.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_text.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_xml.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_yaml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_yaml.svg -------------------------------------------------------------------------------- /src/oci-core/resources/icons/file_type_zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/icons/file_type_zip.svg -------------------------------------------------------------------------------- /src/oci-core/resources/instance-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/instance-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/instance-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/instance-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/lb-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/lb-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/lb-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/lb-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/output-channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/output-channel.png -------------------------------------------------------------------------------- /src/oci-core/resources/profile-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/profile-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/profile-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/profile-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/signIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/signIn.png -------------------------------------------------------------------------------- /src/oci-core/resources/stream-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/stream-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/stream-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/stream-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/vcn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/vcn-dark.svg -------------------------------------------------------------------------------- /src/oci-core/resources/vcn-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/vcn-light.svg -------------------------------------------------------------------------------- /src/oci-core/resources/view-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/resources/view-resources.png -------------------------------------------------------------------------------- /src/oci-core/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/api/index.ts -------------------------------------------------------------------------------- /src/oci-core/src/api/oci-api-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/api/oci-api-helper.ts -------------------------------------------------------------------------------- /src/oci-core/src/api/oci-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/api/oci-api.ts -------------------------------------------------------------------------------- /src/oci-core/src/api/oci-sdk-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/api/oci-sdk-client.ts -------------------------------------------------------------------------------- /src/oci-core/src/api/oci/local-artifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/api/oci/local-artifact.ts -------------------------------------------------------------------------------- /src/oci-core/src/commands/copy-ocid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/commands/copy-ocid.ts -------------------------------------------------------------------------------- /src/oci-core/src/commands/filter-resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/commands/filter-resources.ts -------------------------------------------------------------------------------- /src/oci-core/src/commands/install-oci-cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/commands/install-oci-cli.ts -------------------------------------------------------------------------------- /src/oci-core/src/commands/sign-in-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/commands/sign-in-command.ts -------------------------------------------------------------------------------- /src/oci-core/src/commands/switch-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/commands/switch-profile.ts -------------------------------------------------------------------------------- /src/oci-core/src/commands/switch-region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/commands/switch-region.ts -------------------------------------------------------------------------------- /src/oci-core/src/commands/walkthrough.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/commands/walkthrough.ts -------------------------------------------------------------------------------- /src/oci-core/src/common/fileSystem/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/common/fileSystem/zip.ts -------------------------------------------------------------------------------- /src/oci-core/src/common/git/git-clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/common/git/git-clone.ts -------------------------------------------------------------------------------- /src/oci-core/src/common/git/parse-git-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/common/git/parse-git-url.ts -------------------------------------------------------------------------------- /src/oci-core/src/errorhandler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/errorhandler/index.ts -------------------------------------------------------------------------------- /src/oci-core/src/extension-vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/extension-vars.ts -------------------------------------------------------------------------------- /src/oci-core/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/extension.ts -------------------------------------------------------------------------------- /src/oci-core/src/git.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/git.d.ts -------------------------------------------------------------------------------- /src/oci-core/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/index.d.ts -------------------------------------------------------------------------------- /src/oci-core/src/keypair/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/keypair/index.ts -------------------------------------------------------------------------------- /src/oci-core/src/keypair/jwk-keypair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/keypair/jwk-keypair.ts -------------------------------------------------------------------------------- /src/oci-core/src/keypair/keypair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/keypair/keypair.ts -------------------------------------------------------------------------------- /src/oci-core/src/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/logger/index.ts -------------------------------------------------------------------------------- /src/oci-core/src/logger/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/logger/logger.ts -------------------------------------------------------------------------------- /src/oci-core/src/logger/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/logger/logging.ts -------------------------------------------------------------------------------- /src/oci-core/src/profilemanager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/profilemanager/index.ts -------------------------------------------------------------------------------- /src/oci-core/src/profilemanager/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/profilemanager/profile.ts -------------------------------------------------------------------------------- /src/oci-core/src/regions/fetch-regions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/regions/fetch-regions.ts -------------------------------------------------------------------------------- /src/oci-core/src/regions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/regions/index.ts -------------------------------------------------------------------------------- /src/oci-core/src/regions/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/regions/region.ts -------------------------------------------------------------------------------- /src/oci-core/src/test/run-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/test/run-test.ts -------------------------------------------------------------------------------- /src/oci-core/src/tree/oci-basic-resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/tree/oci-basic-resource.ts -------------------------------------------------------------------------------- /src/oci-core/src/tree/oci-file-explorer-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/tree/oci-file-explorer-node.ts -------------------------------------------------------------------------------- /src/oci-core/src/tree/oci-profile-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/tree/oci-profile-node.ts -------------------------------------------------------------------------------- /src/oci-core/src/ui/status-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/ui/status-bar.ts -------------------------------------------------------------------------------- /src/oci-core/src/ui/tree-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/ui/tree-view.ts -------------------------------------------------------------------------------- /src/oci-core/src/userinterface/base-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/userinterface/base-node.ts -------------------------------------------------------------------------------- /src/oci-core/src/userinterface/compartment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/userinterface/compartment.ts -------------------------------------------------------------------------------- /src/oci-core/src/userinterface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/userinterface/index.ts -------------------------------------------------------------------------------- /src/oci-core/src/userinterface/oci-root-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/userinterface/oci-root-node.ts -------------------------------------------------------------------------------- /src/oci-core/src/userinterface/profile-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/userinterface/profile-node.ts -------------------------------------------------------------------------------- /src/oci-core/src/userinterface/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/userinterface/resource.ts -------------------------------------------------------------------------------- /src/oci-core/src/userinterface/root-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/userinterface/root-node.ts -------------------------------------------------------------------------------- /src/oci-core/src/userinterface/ui-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/userinterface/ui-helpers.ts -------------------------------------------------------------------------------- /src/oci-core/src/util/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/util/assert.ts -------------------------------------------------------------------------------- /src/oci-core/src/util/auth-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/util/auth-server.ts -------------------------------------------------------------------------------- /src/oci-core/src/util/file-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/util/file-utils.ts -------------------------------------------------------------------------------- /src/oci-core/src/util/fileExplorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/util/fileExplorer.ts -------------------------------------------------------------------------------- /src/oci-core/src/util/key-fingerprint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/util/key-fingerprint.ts -------------------------------------------------------------------------------- /src/oci-core/src/util/path-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/util/path-utils.ts -------------------------------------------------------------------------------- /src/oci-core/src/util/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/util/resources.ts -------------------------------------------------------------------------------- /src/oci-core/src/util/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/util/token.ts -------------------------------------------------------------------------------- /src/oci-core/src/util/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/util/validators.ts -------------------------------------------------------------------------------- /src/oci-core/src/webviews/create-webview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/webviews/create-webview.ts -------------------------------------------------------------------------------- /src/oci-core/src/webviews/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/webviews/index.ts -------------------------------------------------------------------------------- /src/oci-core/src/webviews/webview-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/src/webviews/webview-interface.ts -------------------------------------------------------------------------------- /src/oci-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/tsconfig.json -------------------------------------------------------------------------------- /src/oci-core/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/typings/index.d.ts -------------------------------------------------------------------------------- /src/oci-core/webpack/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/webpack/common.js -------------------------------------------------------------------------------- /src/oci-core/webpack/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/webpack/dev.js -------------------------------------------------------------------------------- /src/oci-core/webpack/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/oci-core/webpack/prod.js -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.env -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.eslintrc.json -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.gitignore -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.idea/.gitignore -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.idea/misc.xml -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.idea/modules.xml -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.idea/vcs.xml -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.mocharc.js -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.vscode/extensions.json -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.vscode/launch.json -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.vscode/settings.json -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.vscode/tasks.json -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/.vscodeignore -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/LICENSE.txt -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/README.md -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/gulpfile.js -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/ces/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Nelze načíst položky pro: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/ces/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Načtení rozšíření kompartmentu selhalo."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/ces/ui/commands/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"Chyba při rozšiřování stromové hierarchie pro datovou část:"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/chs/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"无法提取以下项的项目:{0},{1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/chs/api/oci/oci-sdk-client.i18n.json: -------------------------------------------------------------------------------- 1 | {"getCompartmentsErrorMsg":"提取根 ID 对应的区间时出错"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/chs/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"无法加载区间扩展。"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/chs/ui/commands/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"展开有效负载的树层次时出错:"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/cht/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"無法擷取右列內容的項目: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/cht/api/oci/oci-sdk-client.i18n.json: -------------------------------------------------------------------------------- 1 | {"getCompartmentsErrorMsg":"擷取根 ID 的區間時發生錯誤 "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/cht/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"無法載入區間擴充功能."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/cht/ui/commands/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"展開有效負載的樹狀結構階層時發生錯誤: "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/dan/api/oci/oci-sdk-client.i18n.json: -------------------------------------------------------------------------------- 1 | {"getCompartmentsErrorMsg":"Fejl i hentning af rum til rod-id "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/dan/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Kunne ikke indlæse udvidelsen Rum."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/dan/ui/commands/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"Fejl i udvidelse af træhierarki for payload: "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/deu/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Elemente können nicht abgerufen werden für: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/fin/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Nimikkeitä ei voi hakea seuraaville: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/fin/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Compartments-laajennuksen lataus epäonnistui."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/fra/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Impossible d'extraire les éléments pour : {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/frc/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Impossible d'extraire les éléments pour : {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/hrv/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Ne mogu se dohvatiti stavke za: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/hrv/api/oci/oci-sdk-client.i18n.json: -------------------------------------------------------------------------------- 1 | {"getCompartmentsErrorMsg":"Pogreška u dohvaćanju odjeljaka za root ID "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/hrv/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Nije uspjelo učitavanje proširenja odjeljka."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/hun/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Nem hívható be elem ehhez: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/hun/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Az Útválasztási szegmens bővítmény betöltése sikertelen."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/ita/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Impossibile recuperare elementi per: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/jpn/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"アイテムをフェッチできません: {0}、{1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/kor/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"항목을 인출할 수 없음: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/kor/api/oci/oci-sdk-client.i18n.json: -------------------------------------------------------------------------------- 1 | {"getCompartmentsErrorMsg":"루트 ID의 구획을 인출하는 중 오류 발생 "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/kor/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"구획 확장 로드를 실패했습니다."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/kor/ui/commands/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"페이로드의 트리 계층을 확장하는 중 오류 발생: "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/nor/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Feil ved henting av elementer for: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/nor/api/oci/oci-sdk-client.i18n.json: -------------------------------------------------------------------------------- 1 | {"getCompartmentsErrorMsg":"Feil ved henting av seksjoner for rot-ID "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/nor/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Kan ikke laste seksjonsutvidelsen."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/pol/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Nie można pobrać elementów dla: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/ptb/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Não é possível extrair itens para: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/ptb/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Falha ao carregar a extensão de Compartimentos."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/ptg/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Não é possível extrair itens para: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/ptg/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Falha ao carregar a extensão dos Compartimentos."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/ron/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Eşec la încărcarea extensiei pentru compartimente."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/rus/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Невозможно извлечь элементы для {0}, {1}."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/slk/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Nepodarilo sa vyvolať položky pre: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/slk/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Nepodarilo sa načítať rozšírenie Kompartmenty."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/slk/ui/commands/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"Chyba pri rozbaľovaní hierarchie stromu pre payload: "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/slv/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Ni mogoče pridobiti elementov za: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/spa/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Fallo al cargar la extensión de compartimentos."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/srb/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Није могуће добављање ставки за: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/srl/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Nije moguće dobavljanje stavki za: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/srl/api/oci/oci-sdk-client.i18n.json: -------------------------------------------------------------------------------- 1 | {"getCompartmentsErrorMsg":"Greška prilikom dobavljanja odeljaka za ID korena "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/srl/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Nije uspelo učitavanje proširenja Odeljci."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/swe/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Kunde inte hämta objekt för: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/swe/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Kunde inte ladda tillägget för delområden."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/tur/api/oci/data-science.i18n.json: -------------------------------------------------------------------------------- 1 | {"listItemsErrorMsg":"Şunun için öğeler getirilemiyor: {0}, {1}"} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/tur/api/oci/oci-sdk-client.i18n.json: -------------------------------------------------------------------------------- 1 | {"getCompartmentsErrorMsg":"Kök no'su için bölmeler getirilirken hata oluştu "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/tur/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Bölmeler uzantısı yüklenemedi."} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/i18n/tur/ui/commands/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"Veri yükü için ağaç hiyerarşisini genişletme hatası: "} -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/media/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/media/css/common.css -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/media/js/run-job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/media/js/run-job.js -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/package.json -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/package.nls.json -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/settings.json -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/src/api/oci/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/src/api/oci/clients.ts -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/src/api/oci/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/src/api/oci/types.ts -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/src/common/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/src/common/ReadMe.md -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/src/common/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/src/common/monitor.ts -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/src/common/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/src/common/validators.ts -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/src/extension.ts -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/src/extensionVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/src/extensionVars.ts -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/src/oci-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/src/oci-api.d.ts -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/src/ui/vscode_ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/src/ui/vscode_ext.ts -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/tsconfig.json -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/webpack/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/webpack/common.js -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/webpack/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/webpack/dev.js -------------------------------------------------------------------------------- /src/odsc-vscode-plugin/webpack/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/odsc-vscode-plugin/webpack/prod.js -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.eslintrc.json -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.gitignore -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.idea/.gitignore -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.idea/checkstyle-idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.idea/checkstyle-idea.xml -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.idea/misc.xml -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.idea/modules.xml -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.idea/orm.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.idea/orm.iml -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.idea/vcs.xml -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.vscode/extensions.json -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.vscode/launch.json -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.vscode/settings.json -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.vscode/tasks.json -------------------------------------------------------------------------------- /src/orm-vscode-plugin/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/.vscodeignore -------------------------------------------------------------------------------- /src/orm-vscode-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /src/orm-vscode-plugin/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/LICENSE.txt -------------------------------------------------------------------------------- /src/orm-vscode-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/README.md -------------------------------------------------------------------------------- /src/orm-vscode-plugin/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/gulpfile.js -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/ces/common/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"Chyba při rozšiřování stromové hierarchie pro datovou část: "} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/ces/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Načtení rozšíření kompartmentu selhalo."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/chs/common/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"展开有效负载的树层次时出错:"} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/chs/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"无法加载区间扩展。"} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/chs/tree/nodes/oci-stack-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"downloadTFConfigMsg":"正在下载 Terraform 配置…"} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/cht/common/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"展開有效負載的樹狀結構階層時發生錯誤: "} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/cht/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"無法載入區間擴充功能."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/cht/tree/nodes/oci-stack-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"downloadTFConfigMsg":"正在下載 Terraform 組態…"} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/dan/common/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"Fejl i udvidelse af træhierarki for payload: "} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/dan/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Kunne ikke indlæse udvidelsen Rum."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/ell/tree/nodes/oci-stack-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"downloadTFConfigMsg":"Λήψη της διαμόρφωσης Terraform…"} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/fin/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Compartments-laajennuksen lataus epäonnistui."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/fin/tree/nodes/oci-stack-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"downloadTFConfigMsg":"Noudetaan Terraform-kokoonpanoa…"} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/hrv/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Nije uspjelo učitavanje proširenja odjeljka."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/hun/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Az Útválasztási szegmens bővítmény betöltése sikertelen."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/hun/tree/nodes/oci-stack-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"downloadTFConfigMsg":"A Terraform konfiguráció letöltése folyamatban..."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/jpn/tree/nodes/oci-stack-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"downloadTFConfigMsg":"Terraform構成のダウンロード中…"} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/kor/common/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"페이로드의 트리 계층을 확장하는 중 오류 발생: "} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/kor/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"구획 확장 로드를 실패했습니다."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/kor/tree/nodes/oci-stack-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"downloadTFConfigMsg":"Terraform 구성을 다운로드하는 중…"} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/nor/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Kan ikke laste seksjonsutvidelsen."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/ptb/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Falha ao carregar a extensão de Compartimentos."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/ptg/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Falha ao carregar a extensão dos Compartimentos."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/ron/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Eşec la încărcarea extensiei pentru compartimente."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/rus/tree/nodes/oci-stack-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"downloadTFConfigMsg":"Выполняется загрузка конфигурации Terraform..."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/slk/common/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"Chyba pri rozbaľovaní hierarchie stromu pre payload: "} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/slk/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Nepodarilo sa načítať rozšírenie Kompartmenty."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/spa/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Fallo al cargar la extensión de compartimentos."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/srb/tree/nodes/oci-stack-node.i18n.json: -------------------------------------------------------------------------------- 1 | {"downloadTFConfigMsg":"Преузима се Terraform конфигурација…"} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/srl/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Nije uspelo učitavanje proširenja Odeljci."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/swe/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Kunde inte ladda tillägget för delområden."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/tur/common/launch-workflow.i18n.json: -------------------------------------------------------------------------------- 1 | {"launchWorkflowErrorMsg":"Veri yükü için ağaç hiyerarşisini genişletme hatası: "} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/i18n/tur/extension.i18n.json: -------------------------------------------------------------------------------- 1 | {"ociCoreNotLoadedErrorMsg":"Bölmeler uzantısı yüklenemedi."} -------------------------------------------------------------------------------- /src/orm-vscode-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/package.json -------------------------------------------------------------------------------- /src/orm-vscode-plugin/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/package.nls.json -------------------------------------------------------------------------------- /src/orm-vscode-plugin/resources/oracle_rms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/resources/oracle_rms.png -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/api/orm-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/api/orm-client.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/commands/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/commands/resources.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/common/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/common/monitor.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/extension.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/extensionVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/extensionVars.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/git.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/git.d.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/oci-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/oci-api.d.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/tree/nodes/ociNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/tree/nodes/ociNode.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/utils/actionResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/utils/actionResult.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/utils/get-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/utils/get-logger.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/src/utils/path-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/src/utils/path-utils.ts -------------------------------------------------------------------------------- /src/orm-vscode-plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/tsconfig.json -------------------------------------------------------------------------------- /src/orm-vscode-plugin/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/orm-vscode-plugin/webpack/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/webpack/common.js -------------------------------------------------------------------------------- /src/orm-vscode-plugin/webpack/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/webpack/dev.js -------------------------------------------------------------------------------- /src/orm-vscode-plugin/webpack/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/src/orm-vscode-plugin/webpack/prod.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-samples/oci-vscode-toolkit/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------