You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/30_commands.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1370,10 +1370,10 @@ Get a Catalog item
1370
1370
1371
1371
Get an Item Type Definition
1372
1372
1373
-
You need to specify the name and its tenant namespace, via the respective flags. The company-id flag can be omitted if it is already set in the context.
1373
+
You need to specify the name via the respective flag. The company-id flag can be omitted if it is already set in the context and it is used as tenantId of the item type definition.
1374
1374
1375
1375
```bash
1376
-
miactl itd get --tenantId tenantId --name name
1376
+
miactl itd get --name name
1377
1377
```
1378
1378
1379
1379
### delete
@@ -1387,7 +1387,7 @@ Delete an Item Type Definition
1387
1387
You need to specify the companyId and the item type definition name via the respective flags (recommended). The company-id flag can be omitted if it is already set in the context.
1388
1388
1389
1389
```bash
1390
-
miactl itd delete --name name --version version ...
Copy file name to clipboardExpand all lines: internal/cmd/item-type-definition/delete.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ const (
40
40
41
41
You need to specify the companyId and the item type definition name via the respective flags (recommended). The company-id flag can be omitted if it is already set in the context.
42
42
`
43
-
deleteCmdUse="delete --name name --version version"
Copy file name to clipboardExpand all lines: internal/cmd/item-type-definition/get.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,9 +32,9 @@ const (
32
32
33
33
This command get an Item Type Definitions based on its name and tenant namespace. It works with Mia-Platform Console v14.1.0 or later.
34
34
35
-
You need to specify the name and its tenant namespace, via the respective flags. The company-id flag can be omitted if it is already set in the context.
35
+
You need to specify the name via the respective flag. The company-id flag can be omitted if it is already set in the context and it is used as tenantId of the item type definition.
0 commit comments