This guide tells you how to generate code from your OpenAPI definition using AutoRest. We’ll take this incrementally, working on first how to generate a single file, then how to generate with a configuration file, and keep taking it from there.
The command line usage of AutoRest boils down to the following:
autorest [config-file.md | config-file.json | config-file.yaml] [additional options]
We’ll be building upon this in our individual sections.
AutoRest has varying levels of support for the following languages. When generating code, we always want to specify what language we want our generated code to have, and we specify our language through a command line flag
Language | Description |
---|---|
--python |
Python |
--csharp |
C# / .NET code |
--java |
Java |
--typescript |
Typescript |
--go |
Golang |
--powershell |
powershell |
No flag yet | Swift |
For a full-set of flags, go to our flag index
Option | Description |
---|---|
--input-file=FILENAME |
Adds the given file to the list of input files for generation process |
--output-folder=DIRECTORY |
The location for generated files. If not specified, uses ./generated as the default |
--clear-output-folder |
Clear all contents from our output folder before outputting your newly generated code into that folder |
--namespace=NAMESPACE |
sets the namespace to use for the generated code |
--add-credential |
If specified, the generated client will require a credential to make network calls. See our language docs for information on how to authenticate to our generated clients. |
--tag=VALUE |
Preferred way to have conditional configurations. I.e., in my configuration file, I can set the input-file equal to different values depending on the VALUE passed through the tag flag. See our Adding Tags When Generating section for more information |
The first step in an AutoRest journey usually starts with generating a single OpenAPI file. We will also show how to set options during generation by building up our command-line step-by-step.
The first step here is to have your OpenAPI file definition of your client (docs on how to do that).
This example will use an example OpenAPI definition found here, so feel free to follow along with
our sample code. To get things started, the command that starts AutoRest on the command line is autorest
, so this is what our command line
looks like to start with:
autorest
Next, we want to tell AutoRest which swagger file to generate. We do this by passing our swagger file through the --input-file
flag, see common
flags for a description of its uses. Adding this to our command, we have
autorest --input-file=pets.json
We also need to tell AutoRest what language we want our SDK to be in, which we specify using our language flags. For the sake of this example, let’s say we want to generate Python code. Adding this to our command line, we get
autorest --input-file=pets.json --python
In our final step, we can tell AutoRest where to output the generated SDK. By default AutoRest generates files in output folder ./generated
. However, we can
modify the output folder using flag --output-folder
(once again, see common
flags for more information). Putting this all together, we have:
autorest --input-file=pets.json --python --output-folder=myFolder/
There are many other flags you can specify when generating. As an add-on, let’s say we want to generate our code under the namespace pets
. This gives us:
autorest --input-file=pets.json --python --output-folder=myFolder/ --namespace=pets
And this concludes our basic example of generating with AutoRest. Continue reading to the next section to see our recommend way of generating AutoRest.
This section goes over the most common, and the preferred way of generating with AutoRest: that is, generating with a configuration file. With a configuration file, we can move most of our flags from the command line into our configuration file, while still allowing us the ability to override the configuration file settings from the command line. This both simplifies our command line for generation, and allows us to have a standardized set of flags to generate your OpenAPI documents with.
As you can see in the above example, having to include these flags (i.e. --input-file
, --output-folder
etc) every time you generate can be cumbersome,
and if you’re trying to have every AutoRest generation standardized, a tiny typo can make a big difference. This is where a configuration file comes in.
With a configuration file, we can add most, if not all of these flags into one file, where they can persist.
Lets start with our command line from the previous example, and work on moving these flags into a config file.
autorest --input-file=pets.json --python --output-folder=myFolder/ --namespace=pets
First step is to create our configuration file. The preferred name for a configuration file is readme.md
, so you may hear these terms interchangeably.
Once your configuration file is created, we can work on moving our flags into the config file. We tell AutoRest what flags we want using yaml
code chunks in the
readme.
We start building up the skeleton of our configuration file by adding our yaml
code block.
```yaml
```
Now, we’ll start moving the flags into the yaml
code block. Adding the input file becomes
```yaml
input-file: pets.json
```
We also want our code to be generated in python, so let’s add that to the config as well.
```yaml
input-file: pets.json
python: true
```
Finally, let’s add our remaining 2 flags.
```yaml
input-file: pets.json
python: true
output-folder: myFolder/
namespace: azure-pets
```
Now, all of our flags are transferred into our configuration file! We’ve also included this final config file in our examples.
Having a configuration file doesn’t mean you aren’t allowed to specify flags on the command line, however, we recommend moving all flags into the config file, and only specifying flags on the command line if you’re looking to override the values in the config file.
Your command line is now just
autorest readme.md
And that’s it!
Say you only want certain configurations if a specific tag is included on the command line. The most common use case for this is having different versions of swagger files, and wanting to toggle between generating both versions.
Let’s start by examining what behavior we want to have when generating. The suggested way of toggling between versions on the command line is to specify a value in the tag
flag.
Let’s say we want to generate our first pets.json if you specify --tag=v1
, and we want to generate our second petsv2.json
if --tag=v2
is specified on the command line. Let’s go about putting in the markdown code to make this possible.
Starting with the flags we want in both cases, we add in a yaml
code block with no condition for entry.
### General settings
```yaml
python: true
package-name: azure-pets
```
In the yaml
code blocks we have in our markdown file, we can add conditional blocks, which we only enter if a specific value is passed for a specific flag. In this case, we want our input-file
to be pets.json
, if --tag=v1
is specified on the command line, and if --tag=v2
is specified, we want our input-file
to be petsv2.json
. Finally, we also want different namespaces for each
of these versions, and different output folders, so both can be allowed to persist at the same time.
Our code block for tag=v1
thus looks like this
### Tag: v1
These settings apply only when `--tag=v1` is specified on the command line.
```yaml $(tag) == 'v1'
input-file: pets.json
namespace: azure.pets.v1
output-folder: $(python-sdks-folder)/pets/azure-pets/azure/pets/v1
```
Note: It is highly recommended to comment your conditional
yaml
blocks with the conditions required to enter. This is because theyaml
conditionals don’t show up in rendered markdown, so comments are needed for visibility.
Similarly, our tag=v2
code block will look like:
### Tag: v2
These settings apply only when `--tag=v2` is specified on the command line.
```yaml $(tag) == 'v2'
input-file: petsv2.json
namespace: azure.pets.v2
output-folder: $(python-sdks-folder)/pets/azure-pets/azure/pets/v2
```
Finally, let us say we want v2
to be generated by default, and v1
only to be generating if --tag=v1
is specified on the command line. We can add into our General settings
tag: v2
. This way,
unless we override the value of tag
by specifying --tag=v1
on the command line, tag
will be v2
, and we will enter that conditional yaml
code block by default. Updating our General settings
, we get
### General settings
```yaml
python: true
output-folder: myFolder/
tag: v2
```
Putting this all together, we get the following config file, and to generate v1, our command line is autorest readme.md --tag=v1 --python-sdks-folder={path to local clone of azure-sdk-for-python/sdk}
, while generating v2, our command line
is just autorest readme.md --python-sdks-folder={path to local clone of azure-sdk-for-python/sdk}
since tag
’s default value is v2
.
A common occurrence is wanting to generate your SDK in multiple languages. Since flags can vary across languages (i.e., certain flags are specific to certain languages), we commonly add conditional sections
for each language. In this example, we will show how to generate in both Java and Python. In situations like this, it is preferred to have one main
language agnostic configuration file titled readme.md
, where you list the configuration you want regardless of language. Then, you create a configuration file for every language you want with the language name in the path. In this case, we would create a readme.java.md
, and a readme.python.md
. These configuration files will be linked to from the main readme.md
.
Let’s start with the configurations we want in the main readme.md
. Following from the previous example, we want to generate pets.json if --tag=v1
is specified on the command line, and petsv2.json if --tag=v2
is specified, regardless of which language we’re generating in. We also need to link to our readme.python.md
and readme.java.md
from this main readme.
This gives us the following readme.md
:
### General settings
```yaml
tag: v2
license-header: MICROSOFT_MIT_NO_VERSION
```
### Tag: v1
These settings apply only when `--tag=v1` is specified on the command line.
```yaml $(tag) == 'v1'
input-file: pets.json
```
### Tag: v2
These settings apply only when `--tag=v2` is specified on the command line.
```yaml $(tag) == 'v2'
input-file: petsv2.json
```
## Python
See configuration in [readme.python.md](./readme.python.md)
## Java
See configuration in [readme.java.md](./readme.java.md)
Let’s now discuss what’s going to be different between the two languages.
v1
or v2
(since we want both versions to exist), so we need individual conditional yaml blocks.Note: If you’re developing with our Azure SDK repos, you can follow these steps:
- We would want our Python sdk to go into
azure-sdk-for-python
, and our Java sdk to go intoazure-sdk-for-java
.- For Python, we use the flag
--python-sdks-folder
to indicate the location of our localazure-sdk-for-python
clone. Your output folder would be relative topython-sdks-folder
, the location of which you would pass on the command line. I.e., youroutput-folder
would look like{python-sdks-folder}/pets/azure-pets
.- For Java, we indicate the location of our local
azure-sdk-for-java
clone with the flag--azure-libraries-for-java-folder
. Your output folder would be relative toazure-libraries-for-java-folder
, the location of which you would pass on the command line. I.e., youroutput-folder
would look like{azure-libraries-for-java-folder}/pets
.
azure.pets
, while we want our Java namespace to be com.microsoft.azure.pets
. We want different namespaces based off of whether we’re generating v1
or v2
as well.package-name
fluent
Let’s put all of this information into our Python readme, readme.python.md
:
# Python
These settings apply only when `--python` is specified on the command line.
``` yaml
package-name: azure-pets
```
## Tag: v1
These settings apply only when `--tag=v1` is specified on the command line.
```yaml $(tag) == 'v1'
namespace: azure.pets.v1
output-folder: python/pets/azure-pets/azure/pets/v1
```
## Tag: v2
These settings apply only when `--tag=v2` is specified on the command line.
```yaml $(tag) == 'v2'
namespace: azure.pets.v2
output-folder: python/pets/azure-pets/azure/pets/v2
```
Similarly, we have our Java readme, readme.java.md
:
# Java
These settings apply only when `--java` is specified on the command line.
``` yaml
fluent: true
```
## Tag: v1
These settings apply only when `--tag=v1` is specified on the command line.
```yaml $(tag) == 'v1'
namespace: com.microsoft.azure.pets.v1
output-folder: java/pets/v1
```
## Tag: v2
These settings apply only when `--tag=v2` is specified on the command line.
```yaml $(tag) == 'v2'
namespace: azure.pets.v2
output-folder: java/pets/v2
```
Now, when generating v2
code in Python, our command line looks like
autorest readme.md --python
while our Java command looks like
autorest readme.md --java
If we want to generate v1
code in either language, all that’s needed is to tack --tag=v1
on the command line.
There are a couple of steps that are more management-plane specific, which this section will go into.
The biggest thing to keep in mind when generating management plane code is using the flag --azure-arm
. This tells the language generators you want management plane code. Since management plane code is more standardized, we are able to generate more specialized code. Setting this azure-arm
flag also has implications for other flags (i.e., it forces head-as-boolean
to be true). See our flag index for more information.
The OpenAPI definitions for management plane code also live in the resource-manager
folder for services in the azure-rest-api-specs repo (see here the location of management storage). You will need to also have your readme.md
on this level (complete with language-specific readmes if necessary, see the previous section for how to do this.)
Directives are used to change the code generated from your OpenAPI definition. For example, if you want to change the name of a parameter in an operation without changing the swagger. See our directives section if this is something you’re interested in.
Only Python supports generating multiapi code, see the Python docs for how to generate.
See here for a complete index of flags.
AutoRest supports generating from private GitHub repositories. There are multiple options:
token
query parameter: Pass the token
query parameter you get when clicking “Raw” on a file of a private repo, i.e. https://github.com/<path-on-some-private-repo>/readme.md?token=<token>
.
When such a URI is passed to AutoRest, it will automatically reuse that token for subsequent requests (e.g. querying referenced OpenAPI definitions).
This is a quick and easy solution if you manually want to run AutoRest against private bits from time to time.Settings -> Personal access tokens
.
Create one with repo
scope.
It can be passed to AutoRest using --github-auth-token=<token>
or by setting the environment variable GITHUB_AUTH_TOKEN
.
This is the way to go for all scripts and automation.
Needless to say, do not put this token into scripts directly, use Azure KeyVault or similar.
Note: If the repository is in an organization it might require the Github Token to be given explicit permission to that organization.(Next to the token Enable SSO > Click Authorize for the relevant organization)See here
For language-specific information about generation, please refer to our language-specific documentation: