File tree Expand file tree Collapse file tree 3 files changed +3
-20
lines changed Expand file tree Collapse file tree 3 files changed +3
-20
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
authors = [" Brian Caswell <bcaswell@gmail.com>" ]
3
3
name = " azure-pim-cli"
4
+ description = " CLI to list and enable Azure Privileged Identity Management roles"
4
5
version = " 0.0.1"
5
6
edition = " 2021"
6
7
license = " MIT"
Original file line number Diff line number Diff line change 1
1
# Azure PIM CLI
2
2
3
- ```
4
3
CLI to list and enable Azure Privileged Identity Management roles
5
4
5
+ ```
6
6
Usage: az-pim <COMMAND>
7
7
8
8
Commands:
@@ -14,9 +14,6 @@ Options:
14
14
-h, --help
15
15
Print help
16
16
17
- -V, --version
18
- Print version
19
-
20
17
```
21
18
## az-pim list
22
19
@@ -29,9 +26,6 @@ Options:
29
26
-h, --help
30
27
Print help
31
28
32
- -V, --version
33
- Print version
34
-
35
29
```
36
30
## az-pim activate <ROLE > <SCOPE > <JUSTIFICATION >
37
31
@@ -59,9 +53,6 @@ Options:
59
53
-h, --help
60
54
Print help
61
55
62
- -V, --version
63
- Print version
64
-
65
56
```
66
57
## az-pim activate-set <JUSTIFICATION >
67
58
@@ -95,7 +86,4 @@ Options:
95
86
-h, --help
96
87
Print help (see a summary with '-h')
97
88
98
- -V, --version
99
- Print version
100
-
101
89
```
Original file line number Diff line number Diff line change @@ -9,13 +9,7 @@ use std::{
9
9
use tracing:: { error, info} ;
10
10
11
11
#[ derive( Parser ) ]
12
- #[ command(
13
- author,
14
- version,
15
- propagate_version = true ,
16
- disable_help_subcommand = true
17
- ) ]
18
- /// CLI to list and enable Azure Privileged Identity Management roles
12
+ #[ command( disable_help_subcommand = true ) ]
19
13
struct Cmd {
20
14
#[ clap( subcommand) ]
21
15
commands : SubCommand ,
You can’t perform that action at this time.
0 commit comments