-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.json
More file actions
81 lines (81 loc) · 2.61 KB
/
strings.json
File metadata and controls
81 lines (81 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"config": {
"abort": {
"single_instance_allowed": "Only a single instance of SSH Command is allowed."
},
"step": {}
},
"services": {
"execute": {
"name": "Execute SSH Command",
"description": "Executes a specified command on a remote machine via SSH.",
"fields": {
"host": {
"name": "Host",
"description": "Hostname or IP address of the remote machine."
},
"username": {
"name": "Username",
"description": "Username for SSH authentication."
},
"password": {
"name": "Password",
"description": "Password for SSH authentication (optional if using key-based authentication)."
},
"key_file": {
"name": "Key File",
"description": "Path to the SSH private key file for key-based authentication."
},
"command": {
"name": "Command",
"description": "The command to execute on the machine."
},
"input": {
"name": "Input",
"description": "Input to send to the standard input of the remote process."
},
"check_known_hosts": {
"name": "Check Known Hosts",
"description": "Whether to verify the machine against the known_hosts file."
},
"known_hosts": {
"name": "Known Hosts",
"description": "Known hosts in a valid format for asyncssh."
},
"timeout": {
"name": "Timeout",
"description": "Maximum time to wait for the command to complete (in seconds)."
}
}
}
},
"exceptions": {
"password_or_key_file_required": {
"message": "Either password or key file must be provided."
},
"command_or_input": {
"message": "Either command or input must be provided."
},
"key_file_not_found": {
"message": "Could not find key file."
},
"known_hosts_with_check_disabled": {
"message": "Known hosts provided while check known hosts is disabled."
},
"integration_not_set_up": {
"message": "SSH Command integration is not set up."
},
"host_key_not_verifiable": {
"message": "The host could not be verified."
},
"login_failed": {
"message": "SSH login failed."
},
"host_not_reachable": {
"message": "Host is not reachable."
},
"connection_timed_out": {
"message": "Connection to the host timed out."
}
}
}