Skip to content

Commit 9eed683

Browse files
rad-ci-botytimocin
authored andcommitted
Autogenerate reference docs (#1360)
Signed-off-by: rad-ci-bot <[email protected]> Co-authored-by: rad-ci-bot <[email protected]>
1 parent 3ed99ca commit 9eed683

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

docs/content/reference/cli/rad_resource-type.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Manage resource types
3131
### SEE ALSO
3232

3333
* [rad]({{< ref rad.md >}}) - Radius CLI
34+
* [rad resource-type create]({{< ref rad_resource-type_create.md >}}) - Create or update a resource type
3435
* [rad resource-type delete]({{< ref rad_resource-type_delete.md >}}) - Delete resource provider
3536
* [rad resource-type list]({{< ref rad_resource-type_list.md >}}) - List resource resource types
3637
* [rad resource-type show]({{< ref rad_resource-type_show.md >}}) - Show resource resource type
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
type: docs
3+
title: "rad resource-type create CLI reference"
4+
linkTitle: "rad resource-type create"
5+
slug: rad_resource-type_create
6+
url: /reference/cli/rad_resource-type_create/
7+
description: "Details on the rad resource-type create Radius CLI command"
8+
---
9+
## rad resource-type create
10+
11+
Create or update a resource type
12+
13+
### Synopsis
14+
15+
Create or update a resource type from a resource type manifest.
16+
17+
Resource types are user defined types such as 'Mycompany.Messaging/plaid'.
18+
19+
Creating a resource type defines a new type that can be used in applications.
20+
21+
Input can be passed in using a JSON or YAML file using the --from-file option.
22+
23+
24+
```
25+
rad resource-type create [input] [flags]
26+
```
27+
28+
### Examples
29+
30+
```
31+
32+
# Create a resource type from YAML file
33+
rad resource-type create myType --from-file /path/to/input.yaml
34+
35+
# Create a resource type from JSON file
36+
rad resource-type create myType --from-file /path/to/input.json
37+
38+
```
39+
40+
### Options
41+
42+
```
43+
-f, --from-file string The input file. May be an absolute path or a path relative to the current working directory
44+
-h, --help help for create
45+
-o, --output string output format (supported formats are json, table) (default "table")
46+
-w, --workspace string The workspace name
47+
```
48+
49+
### Options inherited from parent commands
50+
51+
```
52+
--config string config file (default "$HOME/.rad/config.yaml")
53+
```
54+
55+
### SEE ALSO
56+
57+
* [rad resource-type]({{< ref rad_resource-type.md >}}) - Manage resource types
58+

0 commit comments

Comments
 (0)