Skip to content

Commit 714ef41

Browse files
committed
Short name for single-sign-on and readme updated
1 parent 755aca8 commit 714ef41

2 files changed

Lines changed: 23 additions & 2 deletions

File tree

  • src/lambda-test

src/lambda-test/README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,25 @@
22
This is an extension to Azure CLI to manage LambdaTest resources.
33

44
## How to use ##
5-
Please add commands usage here.
5+
#### Install the extension ####
6+
Install this extension using the below CLI command
7+
```
8+
az extension add --name lambda-test
9+
```
10+
#### Check the version ####
11+
```
12+
az extension show --name lambda-test --query version
13+
```
14+
#### Connect to Azure subscription ####
15+
```
16+
az login
17+
az account set -s {subs_id}
18+
```
19+
#### List an weights-and-biases instance ####
20+
```
21+
az lambda-test hyper-execute organization list --resource-group jawt-rg
22+
```
23+
#### Get a weights-and-biases instance resource ####
24+
```
25+
az lambda-test hyper-execute organization show --resource-group jawt-rg --organizationname wnb-test-org-5
26+
```

src/lambda-test/azext_lambda_test/aaz/latest/lambda_test/hyper_execute/organization/_create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
9292
help="partner properties",
9393
)
9494
_args_schema.single_sign_on_properties = AAZObjectArg(
95-
options=["--single-sign-on-properties"],
95+
options=["--sso-properties", "--single-sign-on-properties"],
9696
arg_group="Properties",
9797
help="Single sign-on properties",
9898
)

0 commit comments

Comments
 (0)