videosdkagent-cli 0.0.1__py2.py3-none-any.whl → 0.0.5__py2.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.
@@ -1,82 +0,0 @@
1
-
2
- import click
3
- from rich.console import Console
4
- import asyncio
5
- from videosdk_cli.utils.manager.agent_manager import secret_set_manager,list_secret_manager,remove_secret_set,describe_secret_set,add_secret_set,remove_secret_set_key
6
- console = Console()
7
-
8
- @click.group(name="secret-set")
9
- def secret_set():
10
- """Manage secrets"""
11
- pass
12
-
13
-
14
-
15
- @secret_set.command(name="create")
16
- @click.option("--name",required=True,help='Secret name (lowercase, no spaces)')
17
- @click.option('--file','-f',required=False,help='Secret file path')
18
- def secret_set_create(name,file):
19
- try:
20
- console.print("[bold blue]Setting Secret...[/bold blue]")
21
-
22
- asyncio.run(
23
- secret_set_manager(name,file)
24
- )
25
- except click.Abort:
26
- console.print("\nCancelled. No secrets were saved.")
27
- except Exception as e:
28
- console.print(f"[bold red]Error:[/bold red] {e}")
29
-
30
- @secret_set.command(name="list")
31
- def secret_set_list():
32
- try:
33
- console.print("[bold blue]Getting Secret...[/bold blue]")
34
- asyncio.run(
35
- list_secret_manager()
36
- )
37
-
38
- except Exception as e:
39
- console.print(f"[bold red]Error:[/bold red] {e}")
40
-
41
- @secret_set.command(name="delete")
42
- @click.option("--name",required=True,help='Secret name (lowercase, no spaces)')
43
- def secret_set_delete(name):
44
- try:
45
- asyncio.run(
46
- remove_secret_set(name)
47
- )
48
- except Exception as e:
49
- console.print(f"[bold red]Error:[/bold red] {e}")
50
-
51
- @secret_set.command(name="describe")
52
- @click.option("--name",required=True,help='Secret name (lowercase, no spaces)')
53
- def secret_set_describe(name):
54
- try:
55
- asyncio.run(
56
- describe_secret_set(name)
57
- )
58
- except Exception as e:
59
- console.print(f"[bold red]Error:[/bold red] {e}")
60
-
61
- @secret_set.command(name="add")
62
- @click.option("--name",required=True,help='Secret name (lowercase, no spaces)')
63
- def secret_set_add(name):
64
- try:
65
- console.print("[bold blue]Setting Secret...[/bold blue]")
66
-
67
- asyncio.run(
68
- add_secret_set(name)
69
- )
70
- console.print(f"[bold green]Secret set successfully.[/bold green]")
71
- except Exception as e:
72
- console.print(f"[bold red]Error:[/bold red] {e}")
73
-
74
- @secret_set.command(name="remove")
75
- @click.option("--name",required=True,help='Secret name (lowercase, no spaces)')
76
- def secret_set_remove_key(name):
77
- try:
78
- asyncio.run(
79
- remove_secret_set_key(name)
80
- )
81
- except Exception as e:
82
- console.print(f"[bold red]Error:[/bold red] {e}")
@@ -1,28 +0,0 @@
1
- videosdk_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- videosdk_cli/auth.py,sha256=2xMKx_oWKZN-jxhvL8fHJ1MoYO9OuIFZ2MmYRJ2i-sg,1872
3
- videosdk_cli/build.py,sha256=KW6nDFI0cTuQjCzP4gtS4SdMnZjT9poLJdffq-9R5Ko,16202
4
- videosdk_cli/main.py,sha256=PYjRDxGtL3rmDEaN3pkYoEprAfwWxTSdBi-niZXoisE,2452
5
- videosdk_cli/projects.py,sha256=DG83uO0gUjkMHNhaJ6WjCKTsWfJeDc4g85igo_9YIQM,4314
6
- videosdk_cli/run_agent.py,sha256=3Rlki35Q3cTnJnYCbFiCE9EoHfLnQCq79skH-JCA-oA,3205
7
- videosdk_cli/secret_set.py,sha256=1sVQxuPAcplDWJGM5Jm9mo5gNHBaaV9u0T9HDq6F0iM,2539
8
- videosdk_cli/templates.py,sha256=ph9zsROqp5HUM_N-YzXeGvUxyT10Q0XsUQfTpQvJj6g,6564
9
- videosdk_cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- videosdk_cli/utils/analytics.py,sha256=7qrVEVi2rU9Runz2CZrtJA5PlrjQJLiTvGfgn83YSog,1968
11
- videosdk_cli/utils/api_client.py,sha256=JKfVBc2QaC0tffnloTRnijaa3Z2EaSS8LkAVXxJ5EgE,3533
12
- videosdk_cli/utils/auth_api_client.py,sha256=5dp2gibuC7YEczeWDjbLKGRQxOTQK3QeMea3LCO0yx8,1379
13
- videosdk_cli/utils/config_manager.py,sha256=yygGOp-CaU1KINClLZC7nFKI8Ob7vzuL-7cBP20dNEU,1893
14
- videosdk_cli/utils/exceptions.py,sha256=1Tjxxmw8Ts8DOQEZqnJBmNAFgJ0CpcHkAQ95RLQs4iw,133
15
- videosdk_cli/utils/project_config.py,sha256=X-jro6nUDkZ1ZTdJ324JfqE8_0MCZMyGqGUDhM_e0Rs,3141
16
- videosdk_cli/utils/template_helper.py,sha256=eVMhgWnASNqRB5hkKrefG3yM3jlLb4Duxx8x8B4u2MM,8220
17
- videosdk_cli/utils/template_options.py,sha256=BFNCmn6lLUCJ-eZ9TkhVbRtMNTP89EVm8MHhZQv61Q0,1872
18
- videosdk_cli/utils/videosdk_yaml_helper.py,sha256=kXdO5ZkEyV_OptCOd_NFNSGCZKv_J8nAwIXwFtxXbkc,2303
19
- videosdk_cli/utils/apis/deployment_client.py,sha256=KyScSq6CGm1fX2vus7hS1_whSCfYFkyk0ItRNBYq6dY,6359
20
- videosdk_cli/utils/apis/error.py,sha256=UgJI1a0ZU1ZYKAxz01pOKhFYP1XrIsz8JQVVv7XwgDc,248
21
- videosdk_cli/utils/apis/videosdk_auth_api_client.py,sha256=_yJg4nE6WQ9s1mKvYCS0EdHz7kbrXVJabQ30VFcMSo8,1896
22
- videosdk_cli/utils/manager/agent_manager.py,sha256=Yf7hjn_2krpYl01kwL-T9rRPRRF7ay0nI4dZRHrB1TE,12142
23
- videosdk_cli/utils/ui/kv_blocks.py,sha256=_KJZ0_q7AbaIDIh9kx6VvHuSQ3AN5fYo-vsMjYIBbFM,288
24
- videosdk_cli/utils/ui/progress_runner.py,sha256=UhXgoQGDOKW3bSZuXy8BxCfFy_g9QpYOijeO3xJq_8Y,1380
25
- videosdkagent_cli-0.0.1.dist-info/METADATA,sha256=Jpm5Rm-EhOF6nW0fAMfQtmxL0_i48Ru5zCfJA1aryuc,449
26
- videosdkagent_cli-0.0.1.dist-info/WHEEL,sha256=aha0VrrYvgDJ3Xxl3db_g_MDIW-ZexDdrc_m-Hk8YY4,105
27
- videosdkagent_cli-0.0.1.dist-info/entry_points.txt,sha256=7qv3V6B64WCwEshsIsTUc3fYcg6iNbnVJJOc6WE4U1E,51
28
- videosdkagent_cli-0.0.1.dist-info/RECORD,,