kaqing 2.0.174__py3-none-any.whl → 2.0.188__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of kaqing might be problematic. Click here for more details.
- adam/app_session.py +2 -2
- adam/apps.py +18 -4
- adam/batch.py +1 -1
- adam/checks/check_utils.py +3 -1
- adam/commands/__init__.py +4 -2
- adam/commands/app/__init__.py +0 -0
- adam/commands/app/app.py +38 -0
- adam/commands/app/app_ping.py +38 -0
- adam/commands/app/show_app_actions.py +49 -0
- adam/commands/app/show_app_id.py +44 -0
- adam/commands/app/show_app_queues.py +38 -0
- adam/commands/app/utils_app.py +106 -0
- adam/commands/audit/audit.py +9 -27
- adam/commands/audit/audit_repair_tables.py +5 -7
- adam/commands/audit/audit_run.py +1 -1
- adam/commands/audit/completions_l.py +15 -0
- adam/commands/audit/show_last10.py +2 -14
- adam/commands/audit/show_slow10.py +2 -13
- adam/commands/audit/show_top10.py +2 -11
- adam/commands/audit/utils_show_top10.py +14 -1
- adam/commands/bash/bash.py +1 -1
- adam/commands/cat.py +3 -7
- adam/commands/check.py +2 -2
- adam/commands/cli_commands.py +6 -1
- adam/commands/{cp.py → clipboard_copy.py} +18 -12
- adam/commands/code.py +2 -2
- adam/commands/command.py +61 -11
- adam/commands/commands_utils.py +19 -12
- adam/commands/cql/completions_c.py +28 -0
- adam/commands/cql/cqlsh.py +3 -7
- adam/commands/cql/utils_cql.py +22 -58
- adam/commands/deploy/deploy_pg_agent.py +2 -2
- adam/commands/deploy/undeploy_pg_agent.py +2 -2
- adam/commands/devices/device.py +39 -8
- adam/commands/devices/device_app.py +18 -28
- adam/commands/devices/device_auit_log.py +3 -3
- adam/commands/devices/device_cass.py +16 -22
- adam/commands/devices/device_export.py +6 -3
- adam/commands/devices/device_postgres.py +79 -63
- adam/commands/download_file.py +47 -0
- adam/commands/export/clean_up_all_export_sessions.py +3 -3
- adam/commands/export/clean_up_export_sessions.py +5 -10
- adam/commands/export/completions_x.py +11 -0
- adam/commands/export/download_export_session.py +40 -0
- adam/commands/export/export.py +0 -16
- adam/commands/export/export_databases.py +26 -9
- adam/commands/export/export_select.py +9 -58
- adam/commands/export/export_sessions.py +90 -5
- adam/commands/export/export_use.py +13 -10
- adam/commands/export/export_x_select.py +48 -0
- adam/commands/export/exporter.py +60 -22
- adam/commands/export/import_files.py +44 -0
- adam/commands/export/import_session.py +8 -4
- adam/commands/export/importer.py +7 -0
- adam/commands/export/importer_athena.py +101 -34
- adam/commands/export/importer_sqlite.py +30 -5
- adam/commands/export/show_column_counts.py +11 -11
- adam/commands/export/show_export_databases.py +5 -3
- adam/commands/export/show_export_session.py +5 -6
- adam/commands/export/show_export_sessions.py +4 -11
- adam/commands/export/utils_export.py +42 -14
- adam/commands/find_files.py +51 -0
- adam/commands/find_processes.py +76 -0
- adam/commands/head.py +36 -0
- adam/commands/help.py +2 -2
- adam/commands/intermediate_command.py +6 -3
- adam/commands/ls.py +1 -1
- adam/commands/medusa/medusa_backup.py +12 -14
- adam/commands/medusa/medusa_restore.py +20 -15
- adam/commands/medusa/medusa_show_backupjobs.py +6 -4
- adam/commands/medusa/medusa_show_restorejobs.py +5 -3
- adam/commands/medusa/utils_medusa.py +15 -0
- adam/commands/nodetool.py +3 -8
- adam/commands/param_get.py +2 -3
- adam/commands/param_set.py +1 -1
- adam/commands/postgres/completions_p.py +22 -0
- adam/commands/postgres/postgres.py +14 -21
- adam/commands/postgres/postgres_databases.py +270 -0
- adam/commands/postgres/utils_postgres.py +29 -20
- adam/commands/preview_table.py +3 -1
- adam/commands/pwd.py +3 -3
- adam/commands/reaper/reaper_forward.py +2 -2
- adam/commands/reaper/reaper_runs.py +3 -3
- adam/commands/reaper/reaper_schedule_activate.py +6 -2
- adam/commands/reaper/reaper_schedule_start.py +1 -2
- adam/commands/reaper/reaper_schedule_stop.py +1 -2
- adam/commands/reaper/utils_reaper.py +13 -6
- adam/commands/repair/repair_scan.py +0 -2
- adam/commands/repair/repair_stop.py +0 -1
- adam/commands/shell.py +7 -5
- adam/commands/show/show.py +1 -1
- adam/commands/show/show_adam.py +3 -3
- adam/commands/show/show_cassandra_repairs.py +5 -3
- adam/commands/show/show_cassandra_status.py +27 -20
- adam/commands/show/{show_commands.py → show_cli_commands.py} +2 -2
- adam/commands/show/show_login.py +2 -2
- adam/commands/show/show_params.py +2 -5
- adam/commands/show/show_processes.py +15 -14
- adam/commands/show/show_storage.py +9 -8
- adam/config.py +1 -0
- adam/embedded_params.py +1 -1
- adam/repl.py +16 -9
- adam/repl_commands.py +16 -9
- adam/repl_session.py +8 -1
- adam/repl_state.py +33 -10
- adam/sql/lark_completer.py +284 -0
- adam/sql/lark_parser.py +604 -0
- adam/sql/sql_state_machine.py +8 -2
- adam/utils.py +116 -29
- adam/utils_athena.py +7 -8
- adam/utils_issues.py +2 -2
- adam/utils_k8s/app_clusters.py +2 -2
- adam/utils_k8s/app_pods.py +5 -2
- adam/utils_k8s/cassandra_clusters.py +11 -3
- adam/utils_k8s/cassandra_nodes.py +2 -2
- adam/utils_k8s/k8s.py +9 -0
- adam/utils_k8s/kube_context.py +2 -2
- adam/utils_k8s/pods.py +23 -5
- adam/utils_k8s/statefulsets.py +5 -2
- adam/utils_local.py +4 -0
- adam/utils_repl/appendable_completer.py +6 -0
- adam/utils_repl/repl_completer.py +128 -2
- adam/utils_sqlite.py +2 -2
- adam/version.py +1 -1
- {kaqing-2.0.174.dist-info → kaqing-2.0.188.dist-info}/METADATA +1 -1
- kaqing-2.0.188.dist-info/RECORD +253 -0
- kaqing-2.0.188.dist-info/top_level.txt +2 -0
- teddy/__init__.py +0 -0
- teddy/lark_parser.py +436 -0
- teddy/lark_parser2.py +618 -0
- adam/commands/cql/cql_completions.py +0 -32
- adam/commands/export/export_select_x.py +0 -54
- adam/commands/postgres/postgres_context.py +0 -272
- adam/commands/postgres/psql_completions.py +0 -10
- kaqing-2.0.174.dist-info/RECORD +0 -230
- kaqing-2.0.174.dist-info/top_level.txt +0 -1
- {kaqing-2.0.174.dist-info → kaqing-2.0.188.dist-info}/WHEEL +0 -0
- {kaqing-2.0.174.dist-info → kaqing-2.0.188.dist-info}/entry_points.txt +0 -0
|
@@ -1,272 +0,0 @@
|
|
|
1
|
-
from datetime import datetime
|
|
2
|
-
import functools
|
|
3
|
-
import re
|
|
4
|
-
import subprocess
|
|
5
|
-
|
|
6
|
-
from adam.config import Config
|
|
7
|
-
from adam.repl_session import ReplSession
|
|
8
|
-
from adam.utils_k8s.kube_context import KubeContext
|
|
9
|
-
from adam.utils_k8s.pods import Pods
|
|
10
|
-
from adam.utils_k8s.secrets import Secrets
|
|
11
|
-
from adam.utils import log2, log_exc
|
|
12
|
-
|
|
13
|
-
class PostgresContext:
|
|
14
|
-
def apply(namespace: str, path: str, arg: str = None) -> 'PostgresContext':
|
|
15
|
-
context = PostgresContext(namespace, path)
|
|
16
|
-
|
|
17
|
-
if arg:
|
|
18
|
-
if arg == '..':
|
|
19
|
-
if context.db:
|
|
20
|
-
context.db = None
|
|
21
|
-
else:
|
|
22
|
-
context.host = None
|
|
23
|
-
else:
|
|
24
|
-
tks = arg.split('@')
|
|
25
|
-
if not context.host:
|
|
26
|
-
context.host = tks[0]
|
|
27
|
-
else:
|
|
28
|
-
context.db = tks[0]
|
|
29
|
-
|
|
30
|
-
if not namespace and tks[1]:
|
|
31
|
-
context.namespace = tks[1]
|
|
32
|
-
|
|
33
|
-
return context
|
|
34
|
-
|
|
35
|
-
def __init__(self, ns: str, path: str):
|
|
36
|
-
self.namespace = ns
|
|
37
|
-
self.conn_details = None
|
|
38
|
-
self.host = None
|
|
39
|
-
self.db = None
|
|
40
|
-
|
|
41
|
-
if path:
|
|
42
|
-
tks = path.split('/')
|
|
43
|
-
hn = tks[0].split('@')
|
|
44
|
-
self.host = hn[0]
|
|
45
|
-
if len(hn) > 1 and not ns:
|
|
46
|
-
self.namespace = hn[1]
|
|
47
|
-
|
|
48
|
-
if len(tks) > 1:
|
|
49
|
-
self.db = tks[1]
|
|
50
|
-
|
|
51
|
-
def path(self):
|
|
52
|
-
if not self.host:
|
|
53
|
-
return None
|
|
54
|
-
|
|
55
|
-
d = self.host
|
|
56
|
-
if not self.db:
|
|
57
|
-
return d
|
|
58
|
-
|
|
59
|
-
return f'{self.host}/{self.db}'
|
|
60
|
-
|
|
61
|
-
def hosts(ns: str):
|
|
62
|
-
return PostgresContext.hosts_for_namespace(ns)
|
|
63
|
-
|
|
64
|
-
@functools.lru_cache()
|
|
65
|
-
def hosts_for_namespace(ns: str):
|
|
66
|
-
ss = Secrets.list_secrets(ns, name_pattern=Config().get('pg.name-pattern', '^{namespace}.*k8spg.*'))
|
|
67
|
-
|
|
68
|
-
def excludes(name: str):
|
|
69
|
-
exs = Config().get('pg.excludes', '.helm., -admin-secret')
|
|
70
|
-
if exs:
|
|
71
|
-
for ex in exs.split(','):
|
|
72
|
-
if ex.strip(' ') in name:
|
|
73
|
-
return True
|
|
74
|
-
|
|
75
|
-
return False
|
|
76
|
-
|
|
77
|
-
return [s for s in ss if not excludes(s)]
|
|
78
|
-
|
|
79
|
-
def databases(self):
|
|
80
|
-
dbs = []
|
|
81
|
-
# List of databases
|
|
82
|
-
# Name | Owner | Encoding | Collate | Ctype | ICU Locale | Locale Provider | Access privileges
|
|
83
|
-
# ---------------------------------------+----------+----------+-------------+-------------+------------+-----------------+-----------------------
|
|
84
|
-
# postgres | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | | libc |
|
|
85
|
-
# stgawsscpsr_c3_c3 | postgres | UTF8 | C | C | | libc |
|
|
86
|
-
# template1 | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | | libc | =c/postgres +
|
|
87
|
-
# | | | | | | | postgres=CTc/postgres
|
|
88
|
-
# (48 rows)
|
|
89
|
-
if r := self.run_sql('\l', show_out=False):
|
|
90
|
-
s = 0
|
|
91
|
-
for line in r.stdout.split('\n'):
|
|
92
|
-
line: str = line.strip(' \r')
|
|
93
|
-
if s == 0:
|
|
94
|
-
if 'List of databases' in line:
|
|
95
|
-
s = 1
|
|
96
|
-
elif s == 1:
|
|
97
|
-
if 'Name' in line and 'Owner' in line and 'Encoding' in line:
|
|
98
|
-
s = 2
|
|
99
|
-
elif s == 2:
|
|
100
|
-
if line.startswith('---------'):
|
|
101
|
-
s = 3
|
|
102
|
-
elif s == 3:
|
|
103
|
-
groups = re.match(r'^\s*(\S*)\s*\|\s*(\S*)\s*\|.*', line)
|
|
104
|
-
if groups and groups[1] != '|':
|
|
105
|
-
dbs.append({'name': groups[1], 'owner': groups[2]})
|
|
106
|
-
|
|
107
|
-
return dbs
|
|
108
|
-
|
|
109
|
-
def tables(self):
|
|
110
|
-
dbs = []
|
|
111
|
-
# List of relations
|
|
112
|
-
# Schema | Name | Type | Owner
|
|
113
|
-
# ----------+------------------------------------------------------------+-------+---------------
|
|
114
|
-
# postgres | c3_2_admin_aclpriv | table | postgres
|
|
115
|
-
# postgres | c3_2_admin_aclpriv_a | table | postgres
|
|
116
|
-
if r := self.run_sql('\dt', show_out=False):
|
|
117
|
-
s = 0
|
|
118
|
-
for line in r.stdout.split('\n'):
|
|
119
|
-
line: str = line.strip(' \r')
|
|
120
|
-
if s == 0:
|
|
121
|
-
if 'List of relations' in line:
|
|
122
|
-
s = 1
|
|
123
|
-
elif s == 1:
|
|
124
|
-
if 'Schema' in line and 'Name' in line and 'Type' in line:
|
|
125
|
-
s = 2
|
|
126
|
-
elif s == 2:
|
|
127
|
-
if line.startswith('---------'):
|
|
128
|
-
s = 3
|
|
129
|
-
elif s == 3:
|
|
130
|
-
groups = re.match(r'^\s*(\S*)\s*\|\s*(\S*)\s*\|.*', line)
|
|
131
|
-
if groups and groups[1] != '|':
|
|
132
|
-
dbs.append({'schema': groups[1], 'name': groups[2]})
|
|
133
|
-
|
|
134
|
-
return dbs
|
|
135
|
-
|
|
136
|
-
def run_sql(self, sql: str, show_out = True, background = False):
|
|
137
|
-
db = self.db if self.db else PostgresContext.default_db()
|
|
138
|
-
|
|
139
|
-
if KubeContext.in_cluster():
|
|
140
|
-
cmd1 = f'env PGPASSWORD={self.password()} psql -h {self.endpoint()} -p {self.port()} -U {self.username()} {db} --pset pager=off -c'
|
|
141
|
-
log2(f'{cmd1} "{sql}"')
|
|
142
|
-
# remove double quotes from the sql argument
|
|
143
|
-
cmd = cmd1.split(' ') + [sql]
|
|
144
|
-
|
|
145
|
-
r = subprocess.run(cmd, capture_output=not background, text=True)
|
|
146
|
-
if show_out:
|
|
147
|
-
log2(r.stdout)
|
|
148
|
-
log2(r.stderr)
|
|
149
|
-
|
|
150
|
-
return r
|
|
151
|
-
else:
|
|
152
|
-
pod_name, container_name = PostgresContext.pod_and_container(self.namespace)
|
|
153
|
-
if not pod_name:
|
|
154
|
-
return
|
|
155
|
-
|
|
156
|
-
# ns = self.namespace
|
|
157
|
-
# pod_name = Config().get('pg.agent.name', 'ops-pg-agent')
|
|
158
|
-
|
|
159
|
-
# if Config().get('pg.agent.just-in-time', False):
|
|
160
|
-
# if not PostgresContext.deploy_pg_agent(pod_name, ns):
|
|
161
|
-
# return
|
|
162
|
-
|
|
163
|
-
# real_pod_name = pod_name
|
|
164
|
-
# try:
|
|
165
|
-
# # try with dedicated pg agent pod name configured
|
|
166
|
-
# Pods.get(ns, pod_name)
|
|
167
|
-
# except:
|
|
168
|
-
# try:
|
|
169
|
-
# # try with the ops pod
|
|
170
|
-
# pod_name = Config().get('pod.name', 'ops')
|
|
171
|
-
# real_pod_name = Pods.get_with_selector(ns, label_selector = Config().get('pod.label-selector', 'run=ops')).metadata.name
|
|
172
|
-
# except:
|
|
173
|
-
# log2(f"Could not locate {pod_name} pod.")
|
|
174
|
-
# return None
|
|
175
|
-
|
|
176
|
-
cmd = f'psql -h {self.endpoint()} -p {self.port()} -U {self.username()} {db} --pset pager=off -c "{sql}"'
|
|
177
|
-
env_prefix = f'PGPASSWORD="{self.password()}"'
|
|
178
|
-
|
|
179
|
-
r = Pods.exec(pod_name, container_name, self.namespace, cmd, show_out=show_out, background=background, env_prefix=env_prefix)
|
|
180
|
-
if r and Config().get('repl.history.push-cat-remote-log-file', True):
|
|
181
|
-
if r.log_file and ReplSession().prompt_session:
|
|
182
|
-
ReplSession().prompt_session.history.append_string(f'@{r.pod} cat {r.log_file}')
|
|
183
|
-
|
|
184
|
-
return r
|
|
185
|
-
|
|
186
|
-
def pod_and_container(ns: str):
|
|
187
|
-
container_name = Config().get('pg.agent.name', 'ops-pg-agent')
|
|
188
|
-
|
|
189
|
-
if Config().get('pg.agent.just-in-time', False):
|
|
190
|
-
if not PostgresContext.deploy_pg_agent(container_name, ns):
|
|
191
|
-
return None
|
|
192
|
-
|
|
193
|
-
pod_name = container_name
|
|
194
|
-
try:
|
|
195
|
-
# try with dedicated pg agent pod name configured
|
|
196
|
-
Pods.get(ns, container_name)
|
|
197
|
-
except:
|
|
198
|
-
try:
|
|
199
|
-
# try with the ops pod
|
|
200
|
-
container_name = Config().get('pod.name', 'ops')
|
|
201
|
-
pod_name = Pods.get_with_selector(ns, label_selector = Config().get('pod.label-selector', 'run=ops')).metadata.name
|
|
202
|
-
except:
|
|
203
|
-
log2(f"Could not locate {container_name} pod.")
|
|
204
|
-
return None
|
|
205
|
-
|
|
206
|
-
return pod_name, container_name
|
|
207
|
-
|
|
208
|
-
def deploy_pg_agent(pod_name: str, ns: str) -> str:
|
|
209
|
-
image = Config().get('pg.agent.image', 'seanahnsf/kaqing')
|
|
210
|
-
timeout = Config().get('pg.agent.timeout', 3600)
|
|
211
|
-
try:
|
|
212
|
-
Pods.create(ns, pod_name, image, ['sleep', f'{timeout}'], env={'NAMESPACE': ns}, sa_name='c3')
|
|
213
|
-
except Exception as e:
|
|
214
|
-
if e.status == 409:
|
|
215
|
-
if Pods.completed(ns, pod_name):
|
|
216
|
-
with log_exc(lambda e2: "Exception when calling BatchV1Api->create_pod: %s\n" % e2):
|
|
217
|
-
Pods.delete(pod_name, ns)
|
|
218
|
-
Pods.create(ns, pod_name, image, ['sleep', f'{timeout}'], env={'NAMESPACE': ns}, sa_name='c3')
|
|
219
|
-
|
|
220
|
-
return
|
|
221
|
-
else:
|
|
222
|
-
log2("Exception when calling BatchV1Api->create_pod: %s\n" % e)
|
|
223
|
-
|
|
224
|
-
return
|
|
225
|
-
|
|
226
|
-
Pods.wait_for_running(ns, pod_name)
|
|
227
|
-
|
|
228
|
-
return pod_name
|
|
229
|
-
|
|
230
|
-
def undeploy_pg_agent(pod_name: str, ns: str):
|
|
231
|
-
Pods.delete(pod_name, ns, grace_period_seconds=0)
|
|
232
|
-
|
|
233
|
-
def endpoint(self):
|
|
234
|
-
if not self.conn_details:
|
|
235
|
-
self.conn_details = Secrets.get_data(self.namespace, self.host)
|
|
236
|
-
|
|
237
|
-
endpoint_key = Config().get('pg.secret.endpoint-key', 'postgres-db-endpoint')
|
|
238
|
-
|
|
239
|
-
return self.conn_details[endpoint_key] if endpoint_key in self.conn_details else ''
|
|
240
|
-
|
|
241
|
-
def port(self):
|
|
242
|
-
if not self.conn_details:
|
|
243
|
-
self.conn_details = Secrets.get_data(self.namespace, self.host)
|
|
244
|
-
|
|
245
|
-
port_key = Config().get('pg.secret.port-key', 'postgres-db-port')
|
|
246
|
-
|
|
247
|
-
return self.conn_details[port_key] if port_key in self.conn_details else ''
|
|
248
|
-
|
|
249
|
-
def username(self):
|
|
250
|
-
if not self.conn_details:
|
|
251
|
-
self.conn_details = Secrets.get_data(self.namespace, self.host)
|
|
252
|
-
|
|
253
|
-
username_key = Config().get('pg.secret.username-key', 'postgres-admin-username')
|
|
254
|
-
|
|
255
|
-
return self.conn_details[username_key] if username_key in self.conn_details else ''
|
|
256
|
-
|
|
257
|
-
def password(self):
|
|
258
|
-
if not self.conn_details:
|
|
259
|
-
self.conn_details = Secrets.get_data(self.namespace, self.host)
|
|
260
|
-
|
|
261
|
-
password_key = Config().get('pg.secret.password-key', 'postgres-admin-password')
|
|
262
|
-
|
|
263
|
-
return self.conn_details[password_key] if password_key in self.conn_details else ''
|
|
264
|
-
|
|
265
|
-
def default_db():
|
|
266
|
-
return Config().get('pg.default-db', 'postgres')
|
|
267
|
-
|
|
268
|
-
def default_owner():
|
|
269
|
-
return Config().get('pg.default-owner', 'postgres')
|
|
270
|
-
|
|
271
|
-
def default_schema():
|
|
272
|
-
return Config().get('pg.default-schema', 'postgres')
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
from adam.commands.postgres.utils_postgres import pg_table_names
|
|
2
|
-
from adam.sql.sql_completer import SqlCompleter
|
|
3
|
-
|
|
4
|
-
def psql_completions(ns: str, pg_path: str):
|
|
5
|
-
return {
|
|
6
|
-
'\h': None,
|
|
7
|
-
'\d': None,
|
|
8
|
-
'\dt': None,
|
|
9
|
-
'\du': None
|
|
10
|
-
} | SqlCompleter(lambda: pg_table_names(ns, pg_path)).completions_for_nesting()
|
kaqing-2.0.174.dist-info/RECORD
DELETED
|
@@ -1,230 +0,0 @@
|
|
|
1
|
-
adam/__init__.py,sha256=is7iqn2nhRzPymhTEajITEFVyvROZ9GWfNsZX3L5g_o,45
|
|
2
|
-
adam/app_session.py,sha256=mRJWsSDCUlpKfW91UtYCvofZdquayUJANYabP6mA5V0,6862
|
|
3
|
-
adam/apps.py,sha256=okYibOEiCVoM5zsPUKaLJZlwlnvWSHKL7U2J1Yk3-Aw,6701
|
|
4
|
-
adam/batch.py,sha256=i63DTlmgNmA7OMCeIR3-iIJGa3kBuGIvRtWlxi475ko,24029
|
|
5
|
-
adam/cli.py,sha256=03pIZdomAu7IL-GSP6Eun_PKwwISShRAmfx6eVRPGC0,458
|
|
6
|
-
adam/cli_group.py,sha256=W3zy1BghCtVcEXizq8fBH-93ZRVVwgAyGPzy0sHno1Y,593
|
|
7
|
-
adam/config.py,sha256=LJWT9eiKhNj6qYDKx8TAkCmlBsxXTxLbYuSppnP5SGA,2697
|
|
8
|
-
adam/embedded_apps.py,sha256=lKPx63mKzJbNmwz0rgL4gF76M9fDGxraYTtNAIGnZ_s,419
|
|
9
|
-
adam/embedded_params.py,sha256=4q3Sc8tmlWyY5Yyfpqatl9urorJ_rW6KGxr_LCiQ5RI,5724
|
|
10
|
-
adam/log.py,sha256=vcJ1Q8LLnt3NSXqpVcKjAI2OZE6KaD3PEi1kfu_D8qs,1156
|
|
11
|
-
adam/pod_exec_result.py,sha256=85jy_5dS6TEEk5ijU0B62YfUycxmD3dG8mhIHFPipc8,1260
|
|
12
|
-
adam/repl.py,sha256=iQ16-x2kS-6Sak4CjqUE41-Af-MApGjPka4qPzKkhQc,7459
|
|
13
|
-
adam/repl_commands.py,sha256=vCKee-0smNPTK_SMegU-6GR4ShTh_nY_Ac3fFIdCMqc,6440
|
|
14
|
-
adam/repl_session.py,sha256=uIogcvWBh7wd8QQ-p_JgLsyJ8YJgINw5vOd6JIsd7Vo,472
|
|
15
|
-
adam/repl_state.py,sha256=ckyoj6j17cxQy0h1jVyxAgDvRRAzJeOS0SV01gzbEs0,15532
|
|
16
|
-
adam/utils.py,sha256=oOS86FBhiII5om4n8gMuRbHi58vtDnTF3wOc9llTGNk,19566
|
|
17
|
-
adam/utils_athena.py,sha256=vIcOPMtDrgA2SM2a2VpOVOjTJ2_Hss63lwlSgG3kuLM,5409
|
|
18
|
-
adam/utils_audits.py,sha256=lZ2U1AcROxLB4652auG091QFTPs_YNzbtdXBiK6bY_Y,4063
|
|
19
|
-
adam/utils_issues.py,sha256=XDiHDxQcYEvIxwL-fOeIXDRPpKinnggB5sSM3Yo2P-I,1458
|
|
20
|
-
adam/utils_net.py,sha256=byEtNVr8iG9UaD7dM77dN2WEBClB7YNKult7LKFTCOc,428
|
|
21
|
-
adam/utils_sqlite.py,sha256=kF1zTCJE_aIEhgbCDOIUH23XvnLufKpHiiyhkKqH6is,4340
|
|
22
|
-
adam/version.py,sha256=htfdPUqia9L7LzWep3oJtMmkyNtuf9mKyjtJsHQfT7g,140
|
|
23
|
-
adam/checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
-
adam/checks/check.py,sha256=Qopr3huYcMu2bzQgb99dEUYjFzkjKHRI76S6KA9b9Rk,702
|
|
25
|
-
adam/checks/check_context.py,sha256=FEHkQ32jY1EDopQ2uYWqy9v7aEEX1orLpJWhopwAlh4,402
|
|
26
|
-
adam/checks/check_result.py,sha256=5_DVNgkCC9t7xFJYNsjd9bfXA1I4vYb6K3kmN8cdMrA,669
|
|
27
|
-
adam/checks/check_utils.py,sha256=Oo7Ps0g4n5BfZbOZgeWqHNAaypidWGkK1ITA_kzs0bc,2694
|
|
28
|
-
adam/checks/compactionstats.py,sha256=NFi9RcRImZqCJBZs3LH851RHmlu4BO0s_QOsvkdUxKQ,2304
|
|
29
|
-
adam/checks/cpu.py,sha256=j1CFzDO77uTpnYW7xUbx0OzHkQksc2IEXLPXenDo2wE,2978
|
|
30
|
-
adam/checks/cpu_metrics.py,sha256=ymDxof0l4PdRp527nFAJae7Yzn7zjAOvDMZiBwS50QY,2023
|
|
31
|
-
adam/checks/disk.py,sha256=pmjNUEF4rrYtQGcHfv9K78q8cCbAsZeg6qE3KN-IbBU,5215
|
|
32
|
-
adam/checks/gossip.py,sha256=60PeVkhtMWziiYILPwMKfesFjOanIn-nxeZZL5nUHQs,3119
|
|
33
|
-
adam/checks/issue.py,sha256=u3E6yCpDGGJiveKXdpkrKq7HQRTrG7aR2XLCoO-ys7U,498
|
|
34
|
-
adam/checks/memory.py,sha256=1TPoC_eL7QmMMJfaclW3hoSxudsUc4qvrzzb0Z4f5Kw,3056
|
|
35
|
-
adam/checks/status.py,sha256=4IFCesrovCbGKgbJxLr0VxjGGWmmF23ZQNfHUFb5Kyg,2140
|
|
36
|
-
adam/columns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
adam/columns/column.py,sha256=O_5ptfx136BKdLo8enDvSL3HlId1dkjMM2XUumg1tNA,956
|
|
38
|
-
adam/columns/columns.py,sha256=AqUhIdu8dlaZuA96rWW3TBnR6SdbvQkr02ZGyHZKKmU,1708
|
|
39
|
-
adam/columns/compactions.py,sha256=ybIEYTkDuRTBLIUNurGhu1jhVnf1UEpJ0abo3GTgmKw,928
|
|
40
|
-
adam/columns/cpu.py,sha256=b_kFLUwBFxAkZXmqu-L7stuJDT_5bbEUZPLiTOQaBKg,585
|
|
41
|
-
adam/columns/cpu_metrics.py,sha256=4CWz-hwJhAW00Yd-7jKWRYIPviyjY4THp_FulMW6otc,711
|
|
42
|
-
adam/columns/dir_data.py,sha256=gDLcrwMZ6dEVTmpvc35yX3iNY97mQ5q0eQojm8tZ2so,545
|
|
43
|
-
adam/columns/dir_snapshots.py,sha256=OSseuf7gAvT-_ujLvGt43jF-q7QVJNDcvqOK47QSJbk,451
|
|
44
|
-
adam/columns/gossip.py,sha256=KKUycFG-8YxMh9VYUrYOFwPVvnh-0i19k---DrpW93g,656
|
|
45
|
-
adam/columns/host_id.py,sha256=oqesvFCzUu0utkcH5mhYg0vx7lAW2EIDoezgY_CCP_Y,350
|
|
46
|
-
adam/columns/memory.py,sha256=yUjHcdhoiivJQB2kVimCSuzkhZTiPSugwtJ8invoub0,706
|
|
47
|
-
adam/columns/node_address.py,sha256=PqSm2FtR0NAhc-R17sPRJJ3c6eWlJLHPctu8RsCslcM,355
|
|
48
|
-
adam/columns/node_load.py,sha256=Oc-kdfezYBP5eWDug-ijgM48x6XRNjwxxoQDZt_MbQc,349
|
|
49
|
-
adam/columns/node_owns.py,sha256=Iv5FDYV0m3ZM2JK05Fl485ZxDgOxZHDIN9KYNJc6Zdg,349
|
|
50
|
-
adam/columns/node_status.py,sha256=im52GfdETXVJVM00fU5OjJM2FvLZrgqpLkWKCwWhjAs,353
|
|
51
|
-
adam/columns/node_tokens.py,sha256=38D9xJ3uA48gzEYBtIiIUbZJcteM1H4KryzJNn01uZ8,353
|
|
52
|
-
adam/columns/node_utils.py,sha256=ql2StXmASC7equuabZVZEQ_BPTu2KkS99gY_3JXpIvU,774
|
|
53
|
-
adam/columns/pod_name.py,sha256=IYw0ZKA7Fb9LaGXENqzZTiTgL98tahwFRtfy0KkKh2Q,280
|
|
54
|
-
adam/columns/volume_cassandra.py,sha256=9KRNOzjNYganI9avN6zaA5_-7yxD4rV-KNxro9CSUg4,753
|
|
55
|
-
adam/columns/volume_root.py,sha256=29ujLoCAf9LO75u62LxEaPD58s6ihV-tcK17OeLSOM0,556
|
|
56
|
-
adam/commands/__init__.py,sha256=6MGdr7yYIzW-igcxq44jZRVuKaoIhbaOOqdEiSyElbM,1173
|
|
57
|
-
adam/commands/alter_tables.py,sha256=yNqIYDoZd2xZEl3hc8E6V1Br6_BEM3X7DCnXFGuR1pQ,3216
|
|
58
|
-
adam/commands/cat.py,sha256=-Xx04XCYDVszR68IrJRnGbeu6RC1YRc_bnrY87xqkr4,1295
|
|
59
|
-
adam/commands/cd.py,sha256=g6GGHqg72pfxjVL_s5KFne2GL8taikWRWgCEU1nDRqg,1338
|
|
60
|
-
adam/commands/check.py,sha256=Hf2ukd2DDuWkfCpGYQFENZwQuPfuMqA_silmTVEfaQ0,2334
|
|
61
|
-
adam/commands/cli_commands.py,sha256=TGnm2uxtuDRmkNNMlPOpYAXJkgDQEuhDeimBcwsEtC8,3574
|
|
62
|
-
adam/commands/code.py,sha256=8SwSYuMx2QNFB3RUfVPfYVUAf_unEjADx4xvrstepJc,1906
|
|
63
|
-
adam/commands/command.py,sha256=AO9y4D00Ho8ThC8PQV53wUHm01w3ox3d3UXrooySwNw,7931
|
|
64
|
-
adam/commands/command_helpers.py,sha256=leOJJK1UXczNTJHN9TGMCbIpUpmpreULvQ-TvnsYS7w,1134
|
|
65
|
-
adam/commands/commands_utils.py,sha256=PjhJqqGdKNsUYry4ZU53tlR_NVwc0Fb8J-ZarN0uiD0,2856
|
|
66
|
-
adam/commands/cp.py,sha256=qYntAdgs5aUg9-_EXT6ngz4dxyzcsfGR8vkrFrs6hag,2879
|
|
67
|
-
adam/commands/exit.py,sha256=T7bCEShd6MXQ8rXak7vGZTvqEOejPOUPtbdfy7d8WWA,753
|
|
68
|
-
adam/commands/help.py,sha256=v8VPGfnMC_PY_oqJUlwdAqIeJ9-EicvMEVT1RDKSmyI,1907
|
|
69
|
-
adam/commands/intermediate_command.py,sha256=HBSV0tdocHtpe4g3BDagEp55SpDdMAtOVb_ZWVh8v78,1755
|
|
70
|
-
adam/commands/issues.py,sha256=5evrVBzc4sCMHwQ9LmuGAgoPBINr-OCa9FZMJVJDwH8,1431
|
|
71
|
-
adam/commands/kubectl.py,sha256=kCXIl_9vNDW6CBirCeowQjJ2UhidlCEDBP8XOVIloF8,993
|
|
72
|
-
adam/commands/login.py,sha256=rY8P3wpWZOBN-68QRZfDfBvd0wjLUkwbTNPduqAOoVA,2073
|
|
73
|
-
adam/commands/logs.py,sha256=CS4eh5JWzoXboYSXXpiE6CDsky1Jsu61Q1MZAqGjOB8,1142
|
|
74
|
-
adam/commands/ls.py,sha256=b6EBzjXdlagOkpD_OM77I_n18ikGub5obtuerruA9yA,1298
|
|
75
|
-
adam/commands/nodetool.py,sha256=QUgKWjtPCuoA2vsip7naaf-5XGqHVinhWjsxmIxd8AA,2161
|
|
76
|
-
adam/commands/nodetool_commands.py,sha256=5IgWC3rmeDD1cgwqQjiiWzi-wJpJ3n_8pAzz_9phXuk,2635
|
|
77
|
-
adam/commands/param_get.py,sha256=LOCjvqbfSYGOhX4p4I6kj2H6PFvmDyUiaRm28AOxH4w,1408
|
|
78
|
-
adam/commands/param_set.py,sha256=GMvd38jGBcjH1ElcpHmdKwuTvvGanm_CNZ8hJJRFXss,1358
|
|
79
|
-
adam/commands/preview_table.py,sha256=TfSipKOrd1avGQ4Au09wh0FkMKKRuHYqfShHHbTbe-w,1165
|
|
80
|
-
adam/commands/pwd.py,sha256=cdnmJv3-9uRtN-GFlqlktdWNKZLdKCTD55DAkSa065I,1441
|
|
81
|
-
adam/commands/report.py,sha256=IESGEq6akUY2IznKUZV90_5s2gRM4npexFQH7Pa3rAI,2086
|
|
82
|
-
adam/commands/restart.py,sha256=CUjHxdWznqgY2BdYcHHKH2eolj3cPeE5xbMjkIiyJ2A,2202
|
|
83
|
-
adam/commands/rollout.py,sha256=BmlvnVffPGCERfXxdJJFnxtU3yDILp5016N7C-EWCOE,3032
|
|
84
|
-
adam/commands/shell.py,sha256=PIDwnwYaXti3PM7RvLvRdyLMHIHdQdb9VJsMSNFrmWA,1028
|
|
85
|
-
adam/commands/watch.py,sha256=q3kJd6YSO_ZxQ107EeIWZsW8m2X7YIGT3QPXjKloTIo,2459
|
|
86
|
-
adam/commands/audit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
-
adam/commands/audit/audit.py,sha256=aWwQubA8M2smErneoRgGkoz2YCF7c_IYf26zq1140NU,3190
|
|
88
|
-
adam/commands/audit/audit_repair_tables.py,sha256=zM9euuedjSoZ4adczijdj95EgNzyp0qyY7xxy8RkG-g,2536
|
|
89
|
-
adam/commands/audit/audit_run.py,sha256=yFrLGRYblEwOgB2nxEjicSVD3ZzcYV4hmH0AoB7u8OE,1698
|
|
90
|
-
adam/commands/audit/show_last10.py,sha256=Jd0YUTPntkLh6YDK6pS-ZIaK2twkRkQCTGfrIe2J63c,1425
|
|
91
|
-
adam/commands/audit/show_slow10.py,sha256=10gI7kJhozSjl0OoqHFHkh0OjwoXV6z5-Iow6rWbMIU,1444
|
|
92
|
-
adam/commands/audit/show_top10.py,sha256=HiwrYtKBwQWwleJZaVn2bhOjfPDSs11R_ivbRWzyMuw,1475
|
|
93
|
-
adam/commands/audit/utils_show_top10.py,sha256=HrbDnHl6FHVdflXMW5jqf7gYZbHz4agFNyVmI8wuDnY,1874
|
|
94
|
-
adam/commands/bash/__init__.py,sha256=K4BBF_T-6czi7uqBN-WQg3eNvG-ePJF3IPp8eyGyqmk,163
|
|
95
|
-
adam/commands/bash/bash.py,sha256=AvXehWWltrT9sXttpeGFhRoNO0PAjyNEiqnbxSiNpZI,1168
|
|
96
|
-
adam/commands/bash/bash_completer.py,sha256=IStUg5LLTqc3vjupw33WtXUG9zRQ37BctjDYGDyYEXU,3883
|
|
97
|
-
adam/commands/bash/utils_bash.py,sha256=LmpTVPaM0aEMDqKPFnyEp5EidAyQQiiUkcvRjvOu-20,433
|
|
98
|
-
adam/commands/cql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
-
adam/commands/cql/cql_completions.py,sha256=Wr37WHWO4-zAYMRlG38GpfxFAIFHlmBUKSAHHsx7ftU,1465
|
|
100
|
-
adam/commands/cql/cqlsh.py,sha256=ddb1JBdCs8sMHt8L-1gDHIir9hbjxP0gJKpKCBFPFuM,2381
|
|
101
|
-
adam/commands/cql/utils_cql.py,sha256=H3XmGATVUfANhejwgPU1BoAcvRbq1Z0zpDeZXSp9g7M,12776
|
|
102
|
-
adam/commands/deploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
|
-
adam/commands/deploy/code_start.py,sha256=0h8AIPjThC7uxa4HVkYMdC-7qCNXk0QXO1zDrzIOA4s,1335
|
|
104
|
-
adam/commands/deploy/code_stop.py,sha256=R9zvNVD4NLUD3J6ktZ53Rsalzn-t0ZxEpeyOoiizfgU,1153
|
|
105
|
-
adam/commands/deploy/code_utils.py,sha256=H0XgKxVV1Rt3JRjZlssUHwkttuRQ0n6JjjsYw-jn5kI,3285
|
|
106
|
-
adam/commands/deploy/deploy.py,sha256=TmJbWS6JPts8mfPakguTMA88xjstdiUgYfA2aacLA2E,821
|
|
107
|
-
adam/commands/deploy/deploy_frontend.py,sha256=msfDZW8aAlL8E5ve36VkWthuqmXONGRVe7djqLo3i7g,1689
|
|
108
|
-
adam/commands/deploy/deploy_pg_agent.py,sha256=WGFvoYBUbtnbXHROlRUGenYMtb5EZYU3q1Kr3HQNjp8,1144
|
|
109
|
-
adam/commands/deploy/deploy_pod.py,sha256=as7E-2bO1v7IY_3G8iOhrGajFxrGQFYfWebJKMWx16s,4541
|
|
110
|
-
adam/commands/deploy/deploy_utils.py,sha256=P_Z-8tY_ZZuucsHL-8r5rt1c0LfIM-CYpvPsTiM4oe8,1241
|
|
111
|
-
adam/commands/deploy/undeploy.py,sha256=QblQDQOjesNbMfi0Rx_D3oxC93LEPfTVqDj5sLAc84g,873
|
|
112
|
-
adam/commands/deploy/undeploy_frontend.py,sha256=khgxZ94bXlQ8c737B_J-gE0pNBA0GaIQmxCapnkI98c,1210
|
|
113
|
-
adam/commands/deploy/undeploy_pg_agent.py,sha256=t9l9XJiChiH61Z7Zc967b3zH_Tsj7Grntx-8op0wWmY,1253
|
|
114
|
-
adam/commands/deploy/undeploy_pod.py,sha256=Pc5xpU4z5_CHrtz3cAzReT4Qxyks2kQ-uWSRUnAYiJ4,1907
|
|
115
|
-
adam/commands/devices/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
|
-
adam/commands/devices/device.py,sha256=UPqHLQXar5a3ENQDaqimcX2DrX3OPILrbBTTfIB39F4,3336
|
|
117
|
-
adam/commands/devices/device_app.py,sha256=Wik6s_RB6vtCsQQvIEK6PelnAvutzQrzWewLiMvqCiw,6811
|
|
118
|
-
adam/commands/devices/device_auit_log.py,sha256=PaniVrADdqQM0xAkXtT3w5MFkERKWH0wdHl3mXnlMpo,1587
|
|
119
|
-
adam/commands/devices/device_cass.py,sha256=GlbjnEu92hKFOls-jLqMJ0y6y5WPk5KV9CQqvf72hDE,7059
|
|
120
|
-
adam/commands/devices/device_export.py,sha256=yROeaNC1e0HkUuXlPy_v1MUi9CmoDIta8KNVohzuVBI,2946
|
|
121
|
-
adam/commands/devices/device_postgres.py,sha256=Iriz4m3fKSbyk2CuLYIxZuNE60fGnkSLhHtzrEx8jNQ,5791
|
|
122
|
-
adam/commands/devices/devices.py,sha256=-VV8nU-Qcebx2g2ftOywmgrn8wW7-teCpxFQjU9wBR4,965
|
|
123
|
-
adam/commands/export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
|
-
adam/commands/export/clean_up_all_export_sessions.py,sha256=yWDC9ts2HYachcfffqhbXwAIi5xwvsE3m7XNNFk-xLQ,1221
|
|
125
|
-
adam/commands/export/clean_up_export_sessions.py,sha256=ERLcGgzY5j3GoqkGJy-THYDgJLANAlpWnCnZ4vkH-y0,1600
|
|
126
|
-
adam/commands/export/drop_export_database.py,sha256=3S6yj0OuMknPZ1MpPad7eCm1V6BdDn6enHcjRC_fjek,1232
|
|
127
|
-
adam/commands/export/drop_export_databases.py,sha256=WzOm4Ykf1O_ZRjF8oZn_PaKTuIzxFeRJhqWfsENCstg,1095
|
|
128
|
-
adam/commands/export/export.py,sha256=l-3dSKXVdAteicfQvkLmELRJ42LBmCAqhOqL0uthrJA,2105
|
|
129
|
-
adam/commands/export/export_databases.py,sha256=aZogr6UZsSjvqTkPemF-pdscMZMDkwx3JXOAspmlmS4,7626
|
|
130
|
-
adam/commands/export/export_select.py,sha256=wVkw7Th3Abs-zRJO0Rk310GUl8nEOyWLbXNLaBZ3Mq8,3113
|
|
131
|
-
adam/commands/export/export_select_x.py,sha256=WuSkuhB4yfz0IVt3-Dd42GG7FTWoNzBhVsfieEN51W0,2020
|
|
132
|
-
adam/commands/export/export_sessions.py,sha256=vaT3o8K9uOXvJ5jzTxZONm6QcEAbhgCNqdK0-GXiY9s,4623
|
|
133
|
-
adam/commands/export/export_use.py,sha256=j7eNmlnNtyTrk3AyAZzA8kkU2C7e1pmAmNFwIMdDSA0,1354
|
|
134
|
-
adam/commands/export/exporter.py,sha256=qj0b6gXCmj7k0cCQFShHde54_l4n0zVhPCHkO559034,13858
|
|
135
|
-
adam/commands/export/import_session.py,sha256=tb_ybcQbUN4kbc7MuUqsg75NY9tXzXdJSh1zcXs0ILQ,1393
|
|
136
|
-
adam/commands/export/importer.py,sha256=V4EbanV-rEmbqP43u8_07YY98A7wdbwjo1j7BMNzfOU,2450
|
|
137
|
-
adam/commands/export/importer_athena.py,sha256=zNKWFi90wACmOgVEfzMyEt6V4yF1Hl7uo6wYOwIh84k,3373
|
|
138
|
-
adam/commands/export/importer_sqlite.py,sha256=0hvo3MoIs_J9vjsO0iCMRcYOzR7GpRx9Law7CVP5arQ,1720
|
|
139
|
-
adam/commands/export/show_column_counts.py,sha256=zsECHmHgwFATmsyshLbDgG2uBgAosGEwPmwhB_RJF04,1638
|
|
140
|
-
adam/commands/export/show_export_databases.py,sha256=G1Ue-c_fKs_xEesCZV7gVdPY6w-AbJ_M6jWSw-hf73Q,1229
|
|
141
|
-
adam/commands/export/show_export_session.py,sha256=Gzrj87PZDwevACL17P7dH2a91QYkSwFezguAfMdtv0Q,1481
|
|
142
|
-
adam/commands/export/show_export_sessions.py,sha256=xyuDu8oUkTdMKfBHhAUOcwIQdZWcl0ePkSM27wuomIA,1599
|
|
143
|
-
adam/commands/export/utils_export.py,sha256=5TUHfkt4Lx5iO6OizSBxiJxyNgAVDAslUaVMX2dKkF0,11311
|
|
144
|
-
adam/commands/medusa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
|
-
adam/commands/medusa/medusa.py,sha256=Ey2kJpoKqPFP6m623B3ciMoLur5SVcHEBYsvW7G7aAY,958
|
|
146
|
-
adam/commands/medusa/medusa_backup.py,sha256=1yWMGEipdZ_2vALAYdmyPjZWrX6kY7E0OuPxiBv0tfw,1759
|
|
147
|
-
adam/commands/medusa/medusa_restore.py,sha256=_v5-d_yAjvpTivpROS51IV95Jj0WE1qZvDkY_kczQrw,3271
|
|
148
|
-
adam/commands/medusa/medusa_show_backupjobs.py,sha256=rAlhpXH2mhY-1ScSGm32llLh5_fNbHS2wLR0pdi6LBw,1761
|
|
149
|
-
adam/commands/medusa/medusa_show_restorejobs.py,sha256=KxPgUOHGqik4G7B4GnsX9Ogr1yDIR5k1lf4fkJXPjwM,1556
|
|
150
|
-
adam/commands/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
-
adam/commands/postgres/postgres.py,sha256=1QCgDe_8b6-z02XoUpk9wbQ2j5ZMi6rRiZ_bXElE6K8,3478
|
|
152
|
-
adam/commands/postgres/postgres_context.py,sha256=y_3n5kWBT_XFFCdPS8qYm5_2v4bJ-PuwH2EO_-IZUiQ,10784
|
|
153
|
-
adam/commands/postgres/postgres_ls.py,sha256=yT-V1mGnvImaIr4s75FUsV5klcrOB7HHJwWbY6h1Kpk,1111
|
|
154
|
-
adam/commands/postgres/postgres_preview.py,sha256=Bmw3YC98tFdjUx2CRHOakcvLHCOLtEiKxvNDjlDoRo0,1174
|
|
155
|
-
adam/commands/postgres/psql_completions.py,sha256=LVw7LvKSRh61Dfqxh_FZp7wmIeejHjK_V6QGwUrePfw,336
|
|
156
|
-
adam/commands/postgres/utils_postgres.py,sha256=omriBzuW0NQ16IF1Hy6FeVLvfGSWJeTMk34jwigDxrw,2108
|
|
157
|
-
adam/commands/reaper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
158
|
-
adam/commands/reaper/reaper.py,sha256=Xrfjvqtn5txnaMwofBb77yEsmSYLO_-Bi43ABq2ZmaQ,1398
|
|
159
|
-
adam/commands/reaper/reaper_forward.py,sha256=Su3tFrx2MTTXvaPC0EsmCnTKDuUjziyED583IX2UJ84,3326
|
|
160
|
-
adam/commands/reaper/reaper_forward_session.py,sha256=CfKMYQPDZYQBtYQjxcPs7ns5e8AGZj9Q0LD8dOxvLl0,160
|
|
161
|
-
adam/commands/reaper/reaper_forward_stop.py,sha256=a8i6Zp4rYKFt6qC7iqpf57gDZTMAtZy1H1PXq5tTOHM,1375
|
|
162
|
-
adam/commands/reaper/reaper_restart.py,sha256=Ms3OWhV6pqEtmQiupvKO9ArTVBPlniPtg4BwPCgaFq8,1173
|
|
163
|
-
adam/commands/reaper/reaper_run_abort.py,sha256=f3D2EhtiPiLXBOx0vY-XmBivDrgLbppb4dgnStucNVk,1276
|
|
164
|
-
adam/commands/reaper/reaper_runs.py,sha256=hXfGdtlRyf6jOyoILGFEec_lL4RWn_Eqiw69Zge9SLo,3065
|
|
165
|
-
adam/commands/reaper/reaper_runs_abort.py,sha256=ykY8D5fcZwqMRebM2JxFClVksjeDIBTIQe5nSk5oyp0,2058
|
|
166
|
-
adam/commands/reaper/reaper_schedule_activate.py,sha256=PELW78_kblgGegyRFXtIOMf3eIHxJt2D3jNEYITwHFw,1485
|
|
167
|
-
adam/commands/reaper/reaper_schedule_start.py,sha256=VjZ2E-pm8QpnVuMYw53VhfXUgfORC-DjJoDiERKqxYM,1472
|
|
168
|
-
adam/commands/reaper/reaper_schedule_stop.py,sha256=FWaUF3j8R6v57bNQm2np96QwsvBUS3Ee7TDDl5avbRM,1464
|
|
169
|
-
adam/commands/reaper/reaper_schedules.py,sha256=vbvt0JojQecWCo5i4M-3HenWSnJU68F1MAoWcPhp8bo,1071
|
|
170
|
-
adam/commands/reaper/reaper_status.py,sha256=IuRbQwlZB4pDZu4iuPk5TXdTqvzBTMtAl68tHiiPZM0,1801
|
|
171
|
-
adam/commands/reaper/utils_reaper.py,sha256=jQIjpBfQxCPfD_63RpbRZ_tbW2335mBaYiBHalhijSc,7541
|
|
172
|
-
adam/commands/repair/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
-
adam/commands/repair/repair.py,sha256=tNNJk01Bo8KYeogoUO0oGzwErCfFZz_aW7CmzP81Fs4,830
|
|
174
|
-
adam/commands/repair/repair_log.py,sha256=UCdcTE_4gdZxgQ-suDPk5uKMEDytubzucT_zEMUQ6Ck,1063
|
|
175
|
-
adam/commands/repair/repair_run.py,sha256=l78BWpa8wcuSPvYoweVDko57e2fFP6u0ZYbMHQE4FsM,2560
|
|
176
|
-
adam/commands/repair/repair_scan.py,sha256=-7dS9i-_5WO9uHW_PhA0Wi0bY1RvP5sHeQJXl5VB6Ps,2424
|
|
177
|
-
adam/commands/repair/repair_stop.py,sha256=J-IMeQCDo9bA6GbY98rM4456uAMtezX40zVIECEMjws,1097
|
|
178
|
-
adam/commands/show/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
|
-
adam/commands/show/show.py,sha256=0kBGHeSNdnRsIarZO-MmNhYFARUoCONZlDLbX4OOfZk,1724
|
|
180
|
-
adam/commands/show/show_adam.py,sha256=osuafMipN2My4O7bLdukBLsDHtTKguDfTagmgz7aZvw,1314
|
|
181
|
-
adam/commands/show/show_cassandra_repairs.py,sha256=wmv_fOKr_SwZnMCFDjtRBNEFuXoQNbCSAxoxgPknDhA,1129
|
|
182
|
-
adam/commands/show/show_cassandra_status.py,sha256=rYM0qkNJBwKKBI3MS-6yKcP_jO-DfnRcFwwtJ5AxGPA,4742
|
|
183
|
-
adam/commands/show/show_cassandra_version.py,sha256=O-vTwnK5mSyhFNRDGQ2c-3YNAbW0TZo1pndvD6kMRMo,1144
|
|
184
|
-
adam/commands/show/show_commands.py,sha256=ShPz8Vk90Bc_MsjhFQL147T7H67mZQf-IGRizCOB9dY,1905
|
|
185
|
-
adam/commands/show/show_host.py,sha256=b7UrC_n9qRp9jHuQqint1YDEmBbC2dZUjHr59Wff-nM,868
|
|
186
|
-
adam/commands/show/show_login.py,sha256=WL5Voj3IN_K4oB1c3UUFjRywTd4HGbp3O0mNCe2E03Y,1837
|
|
187
|
-
adam/commands/show/show_params.py,sha256=LoBj_ScmtsPrXSUH59p3IYAlmL-0Q_Gb01bp_7zrwQA,1008
|
|
188
|
-
adam/commands/show/show_processes.py,sha256=Qh0R_fC4QfkC6B9mLeeiReZDmFCNf5emxdYAlztdQjw,2075
|
|
189
|
-
adam/commands/show/show_storage.py,sha256=RUG91-ae6yr1BVb8QOrvaM3pPp38255mIF1rkG2OmlQ,1561
|
|
190
|
-
adam/sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
-
adam/sql/sql_completer.py,sha256=RO-S4OiBuDPUL8EWiymB8JexIwgwNXx1QzErDxuL3y4,3939
|
|
192
|
-
adam/sql/sql_state_machine.py,sha256=2qTp3AfzuaGyNP1JbaC1RlV3eRZM9v2f4xSwpZ_Y-i0,38618
|
|
193
|
-
adam/sql/term_completer.py,sha256=HZjOV4fEV9LraoMjkk8lHxNvzRtSIYsGUJhSMOhuoHY,2599
|
|
194
|
-
adam/sso/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
|
-
adam/sso/authenticator.py,sha256=BCm16L9zf5aLU47-sTCnudn2zLPwd8M2wwRminJfsqw,615
|
|
196
|
-
adam/sso/authn_ad.py,sha256=FQbOJOT_goH7YSr2iqnHh8Ao-WL0jPaE3KyIe3T7g7Y,5786
|
|
197
|
-
adam/sso/authn_okta.py,sha256=e4DjNvCDw646L0SM0aWt_lT2q69MqtzTJiYQpo_EuAQ,4505
|
|
198
|
-
adam/sso/cred_cache.py,sha256=9c-Cdz4xlJ3FakqVmVkBVfQ0XLweDivdlu3kdIMLbFs,2039
|
|
199
|
-
adam/sso/id_token.py,sha256=wmVZ8S0sjScnOxmSvOKlIEKgnvdWqhsgq9XjFe355O4,744
|
|
200
|
-
adam/sso/idp.py,sha256=Fml1IwP2n3e-j3SFtH3uqL8h9dhQ62J3oM4d37svIu8,5775
|
|
201
|
-
adam/sso/idp_login.py,sha256=QAtCUeDTVWliJy40RK_oac8Vgybr13xH8wzeBoxPaa8,1754
|
|
202
|
-
adam/sso/idp_session.py,sha256=9BUHNRf70u4rVKrVY1HKPOEmOviXvkjam8WJxmXSKIM,1735
|
|
203
|
-
adam/sso/sso_config.py,sha256=5N8WZgIJQBtHUy585XLRWKjpU87_v6QluyNK9E27D5s,2459
|
|
204
|
-
adam/utils_k8s/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
205
|
-
adam/utils_k8s/app_clusters.py,sha256=czH5UUu_nRzU-3i_KZl2sq4AKdBO8sXzC-mCMQNAKfA,1216
|
|
206
|
-
adam/utils_k8s/app_pods.py,sha256=ztPxQci2bwOiylaWtzb-lrQTIYOtlCOa6PEb_AmP8Cg,1479
|
|
207
|
-
adam/utils_k8s/cassandra_clusters.py,sha256=Hn5k7rFA5kgBHosp-htul0s8CIzmBxdMLmC6O56u5a0,1572
|
|
208
|
-
adam/utils_k8s/cassandra_nodes.py,sha256=SPYWPkjB3ETVcdFveLvvFAGYrrt6K_D6R_XB7Lpd0-k,1550
|
|
209
|
-
adam/utils_k8s/config_maps.py,sha256=vc9A-2D1-1mindCMFL1wuysDOXb0RCl4BdjC6B6usXI,1194
|
|
210
|
-
adam/utils_k8s/custom_resources.py,sha256=95zVZchFtFWGZ_P-jLaSMl6WYTObn7PqeTLxZ_HKoEo,7599
|
|
211
|
-
adam/utils_k8s/deployment.py,sha256=SLhnMm5GMXwEldj2OupSFBUsvNjynwSNrv5tIDvLMrc,2921
|
|
212
|
-
adam/utils_k8s/ingresses.py,sha256=q8nJTIoxa_dVrGMl1HS5yTS_11jLNBAnWlc2ZishMEE,3458
|
|
213
|
-
adam/utils_k8s/jobs.py,sha256=HbUBNXcKcuXaNzc8NmqR_Sq35yHQ_qeQtiQFFM-J2QY,2534
|
|
214
|
-
adam/utils_k8s/k8s.py,sha256=hq3kPTdDB9Fyny64mFLepOgtqpEEVw6wm6IveWzBRfY,3133
|
|
215
|
-
adam/utils_k8s/kube_context.py,sha256=xJF_72vUJu-X9MpIYzOIfnj7KEWU7a_sLBR-H3994Y0,3311
|
|
216
|
-
adam/utils_k8s/pods.py,sha256=Y3FnAxnmNJwpvUaIkXf2Wkdq2iSpw5AU2aJMKRLf9AQ,10865
|
|
217
|
-
adam/utils_k8s/secrets.py,sha256=xnqRSumCIcPaASDcErzxjx1BCE-qJkPoG5wIP7YHzIo,2430
|
|
218
|
-
adam/utils_k8s/service_accounts.py,sha256=OF1-UwWupUAvn_rqNNTWsF3BWYgaLiGTJfinn8sreog,6342
|
|
219
|
-
adam/utils_k8s/services.py,sha256=7K6CxvYntbCsRjTZVcuYiBb5WPH7A5CTWTlUGvaVDRg,3154
|
|
220
|
-
adam/utils_k8s/statefulsets.py,sha256=06ccJhkkFQekIG8gIS9BicMZV1FVX_FKZOOxzdaTUcA,4097
|
|
221
|
-
adam/utils_k8s/volumes.py,sha256=RIBmlOSWM3V3QVXLCFT0owVOyh4rGG1ETp521a-6ndo,1137
|
|
222
|
-
adam/utils_repl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
|
-
adam/utils_repl/automata_completer.py,sha256=LJP_2WHHR7AtjX00MJ59VGQEL3t0XS-qYnDmMaZe-Tk,1641
|
|
224
|
-
adam/utils_repl/repl_completer.py,sha256=lsu0vWFdTs8SSSY9gxHN-fQSap-Wqz1QhMF4FqGf7qA,1722
|
|
225
|
-
adam/utils_repl/state_machine.py,sha256=kO4_oSi_M53f3QQjINzzb2VFptjbnqX3KRC0G8LqqeA,5426
|
|
226
|
-
kaqing-2.0.174.dist-info/METADATA,sha256=RW9iMrX4oWDyFahuaYLnN--UVcZfqK3SP-x_1xgVR60,133
|
|
227
|
-
kaqing-2.0.174.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
228
|
-
kaqing-2.0.174.dist-info/entry_points.txt,sha256=SkzhuQJUWsXOzHeZ5TgQ2c3_g53UGK23zzJU_JTZOZI,39
|
|
229
|
-
kaqing-2.0.174.dist-info/top_level.txt,sha256=8_2PZkwBb-xDcnc8a2rAbQeJhXKXskc7zTP7pSPa1fw,5
|
|
230
|
-
kaqing-2.0.174.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
adam
|
|
File without changes
|
|
File without changes
|