Skip to content

Azure/autorest.java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

This is the next gen (v4) of AutoRest Java generator. It's built on AutoRest v3, written in Java, and supports OpenAPI3. It generates clients that work with com.azure:azure-core.

Prerequisites

You need to have the following installed on your machine:

  • Node.JS v12+
  • Java 11+
  • Maven 3

You need to have autorest installed through NPM:

npm install -g autorest

Usage

To use the latest released preview(https://github.com/Azure/autorest.java/releases), run

autorest --java
    --use:@autorest/[email protected]
    --input-file:path/to/specs.json
    --output-folder:where/to/generate/java/files
    --namespace:specified.java.package

The first time running it will take a little longer to download and install all the components.

To build from source code, clone this repo and checkout to main branch. Make sure all prerequisites are met, and run

mvn package -P local

This will build a file javagen-jar-with-dependencies.jar under javagen module, a preprocess-jar-with-dependencies.jar under preprocessor module, a fluentgen-jar-with-dependencies.jar under fluentgen module, and a fluentnamer-jar-with-dependencies.jar under fluentnamer module.

And then run AutoRest

autorest --java
    --use:where/this/repo/is/cloned/autorest.java
    --input-file:path/to/specs.json
    --output-folder:where/to/generate/java/files
    --namespace:specified.java.package

Java files will be generated under where/to/generate/java/files/src/main/java/specified/java/package.

To debug, add --java.debugger to the argument list. The JVM will suspend at the beginning of the execution. Then attach a remote debugger in your IDE to localhost:5005. Make sure you detach the debugger before killing the AutoRest process. Otherwise it will fail to shutdown the JVM and leave it orphaned. (which can be killed in the Task Manager)

Recommended Settings

  • use-default-http-status-code-to-exception-type-mapping: true, use subclass of HttpResponseException defined in azure-core, when service returns unexpected status code.

  • generic-response-type: true, use ResponseBase<>, instead a subclass of ResponseBase<>, for response with HTTP headers. Performance and reflective access improvement.

  • no-custom-headers: true, generates overloads of interface methods that exclude typed headers. Performance improvement by removing the need to convert header strings to Java types.

  • required-fields-as-ctor-args, create a constructor taking required properties, for model classes. The correctness of this constructor highly depends on the correctness of Swagger.

  • output-model-immutable: true, make model classes immutable, if model is used only in response.

  • enable-sync-stack: true, let sync method invoke sync RestProxy method.

  • enable-page-size: true, let maxpagesize query parameter be supplied via byPage API in PagedFlux or PagedIterable.

  • use-key-credential: true, use KeyCredential in builder for API key.

  • generate-client-as-impl: true, generate Client in implementation package, for customization.

  • models-subpackage: implementation.models, generate model classes in implementation package.

  • custom-types-subpackage: models, generate selected model classes in models package.

Settings

Settings can be provided on the command line through --name:value or in a README file through name: value. The list of settings for AutoRest in general can be found at https://github.com/Azure/autorest/blob/main/docs/user/command-line-interface.md. The list of settings for AutoRest.Java specifically are listed below:

Option   Description
--client-side-validations Generate validations for required parameters and required model properties. Default is false.
--generate-client-as-impl Append "Impl" to the names of service clients and method groups and place them in the implementation sub-package. Default is false.
--generate-client-interfaces Implies --generate-client-as-impl and generates interfaces for all the "Impl"s. Default is false.
--generate-sync-async-clients Implies --generate-client-as-impl and generates sync and async convenience layer clients for all the "Impl"s. Default is false.
--generate-builder-per-client Requires --generate-sync-async-clients, and generates one ClientBuilder for each Client. Default is false.
--implementation-subpackage=STRING The sub-package that the Service client and Method Group client implementation classes will be put into. Default is implementation.
--models-subpackage=STRING The sub-package that Enums, Exceptions, and Model types will be put into. Default is models.
--sync-methods=all|essential|none Specifies mode for generating sync wrappers. Supported value are
  essential - generates only one sync returning body or header (default)
  all - generates one sync method for each async method
  none - does not generate any sync methods
--required-parameter-client-methods Indicates whether client method overloads with only required parameters should be generated. Default is false.
--custom-types=COMMA,SEPARATED,STRINGS Specifies a list of files to put in the package specified in --custom-types-subpackage.
--custom-types-subpackage=STRING The sub-package that the custom types should be generated in. The types that custom types reference, or inherit from will also be automatically moved to this sub-package. Recommended usage: You can set this value to models and set --models-subpackage=implementation.modelsto generate models to implementation.models by default and pick specific models to be public through --custom-types=.
--client-type-prefix=STRING The prefix that will be added to each generated client type.
--service-interface-as-public Indicates whether to generate service interfaces as public. This resolves SecurityManager issues to prevent reflectively access non-public APIs. Default is true.
--client-flattened-annotation-target=TYPE,FIELD,NONE,DISABLED Indicates the target of @JsonFlatten annotation for x-ms-client-flatten. Default is TYPE.
--disable-client-builder Indicates whether to disable generating the ClientBuilder class. This is for SDK that already contains a hand-written ClientBuilder class. Default is false.
--polling Configures how to generate long running operations. See Polling Configuration to see more details on how to use this flag.
--service-name Service name used in Client class and other documentations. If not provided, service name is deduced from title configure (from swagger or readme).
--partial-update Indicates whether to support partial update for Client/AsyncClient classes and ClientBuilder class.
--default-http-exception-type The fully-qualified class name that should be used as the default HTTP exception type. The class must extend from HttpResponseException.
--use-default-http-status-code-to-exception-type-mapping Indicates whether a default HTTP status code to exception mapping should be used if one isn't provided.
--http-status-code-to-exception-type-mapping The HTTP status code to exception mapping that should be used. All exception types must be fully-qualified and extend from HttpResponseException.
--generic-response-type Indicates that generic response types are used instead of named response types that extend the generic type.
--no-custom-headers Indicates that overloads of interface methods that exclude typed headers are generated.
--enable-sync-stack Indicates that sync method invokes sync RestProxy method. By default, sync method invokes async RestProxy method.
--required-fields-as-ctor-args Indicates that class models have constructor taking required properties.
--output-model-immutable Indicates that output-only models be generated as immutable, and without public constructor.
--use-input-stream-for-binary Indicates that InputStream is used for binary response body. By default, BinaryData is used.
--enable-page-size Indicates that maxpagesize query parameter be supplied via byPage API in PagedFlux or PagedIterable, instead of via client method parameter.
--use-key-credential Indicates that builder uses KeyCredential for API key.
--graal-vm-config Generates GraalVM config under resources/META-INF/native-image.

Settings for minimal data-plane clients

data-plane option enables the generator to generate code for minimal data-plane clients.

data-plane option will change the default value for some vanilla options. For example, generate-client-interfaces, generate-client-as-impl, generate-sync-async-clients, generate-builder-per-client, enable-sync-stack, required-fields-as-ctor-args option is by default true. polling is by default enabled as default settings globally (polling={}).

sdk-integration option can be used for integrating to azure-sdk-for-java.

generate-samples option can be used for generating samples for client. generate-tests option can be used for generating tests for client.

See documentation for frequently used options, and their effect on generated clients.

Additional settings for Fluent

fluent option enables the generator extension for Azure Management Libraries for Java.

Following settings only works when fluent option is specified.

Option Description
--fluent Enum. LITE for Fluent Lite; PREMIUM for Fluent Premium. Case insensitive. Default is PREMIUM if provided as other values.
--fluent-subpackage String. The sub-package that vanilla client and builder will be put into. Default is fluent.
--pom-file String. Name for Maven POM file. Default is pom.xml.
--package-version String. Version number for Maven artifact. Default is 1.0.0-beta.1.
--service-name String. Service name used in Manager class and other documentations. If not provided, service name is deduced from title configure (from swagger or readme).
--sdk-integration Boolean. Integrate to azure-sdk-for-java. Default is false. Provide output-folder as absolute path for best performance.
--generate-samples Boolean. Generate samples from x-ms-examples in swagger. Default is false.
--add-inner CSV. Treat as inner class (move to fluent.models namespace, append Inner to class name).
--remove-inner CSV. Exclude from inner classes.
--rename-model CSV. Rename classes. Each item is of pattern from:to.
--remove-model CSV. Remove classes.
--preserve-model CSV. Preserve classes from clean-up.
--remove-operation-group CSV. Remove operation groups.
--name-for-ungrouped-operations String. Name for ungrouped operation group. Default to ResourceProviders for Lite.
--resource-collection-associations Array. Prioritized association from resource model to resource collection.

fluent option will change the default value for some vanilla options. For example, generate-client-interfaces, required-parameter-client-methods option is by default true.

The code formatter would require Java 11+ runtime.

Polling configuration

Polling configurations can be set through --polling setting globally or for each operation. The format is a key value map specified below:

polling:
  {operationId}:
    strategy: {strategy}
    sync-strategy: {sync-strategy}
    intermediate-type: {intermediate-type}
    final-type: {final-type}
    poll-interval: {poll-interval}

With the fields specified below:

Field Type Required Description Example
operationId String true The operationId of the operation. For global polling configuration, use default. Case insensitive. Pets_put
strategy String false The invocation to construct a polling strategy. Use fully qualified class name if outside the implementation subpackage specified in namespace & implementation-subpackage. Use dynamic literals {httpPipeline}, {context}, {serializerAdapter}, {endpoint}, {serviceVersion}, {intermediate-type}, {final-type} if these components are required to construct the polling strategy. Default is new DefaultPollingStrategy<>(new PollingStrategyOptions({httpPipeline}).setEndpoint({endpoint}).setContext({context}).setServiceVersion({serviceVersion})). new com.azure.core.util.polling.OperationResourcePollingStrategy<>({httpPipeline}, {context})
sync-strategy String false Similar to strategy. It refers to the synchronous operation resource polling strategy.
intermediate-type String false The type of the polling intermediate type. Use fully qualified class name if outside the base package specified in namespace. Default is the return type specified on the operation in Swagger, or BinaryData if the operation returns void. PollResult,com.azure.core.util.BinaryData
final-type String false The type of the final result type. Use fully qualified class name if outside the base package specified in namespace. Default is the return type specified on the operation in Swagger, or BinaryData if the operation returns void. Pet,com.azure.core.util.BinaryData
poll-interval integer false The default interval in seconds to poll with (can be modified by users in PollerFlux and SyncPoller. Default is 1. 30

To use default settings globally, use --polling={}.

HTTP Status Code to Exception Type Handling

By default, Swagger definitions will contain an exception type to be thrown when any error HTTP status code is seen. Swaggers may also define the error HTTP status code to exception type mapping, but isn't always the case. Or, it may be needed to change the default exception type to a custom type. In these cases it is possible to configure the error HTTP status code to exception type handling by using the configurations --default-http-exception-type, --use-default-http-status-code-to-exception-type-mapping, and --http-status-code-to-exception-type-mapping.

NOTE: Using the configurations on an already shipped library will likely result in runtime breaking changes as most libraries are already using a sub-class type of HttpResponseException and changing sub-types is a breaking change.

Default Http Exception Type

The default exception type is used for all error HTTP response status codes that do not have an explicit exception type configured. Generally, there is no error HTTP response status code to exception type mapping, so this will become your general exception type. The following is an example of configuring com.azure.core.exception.HttpResponseException as the default exception type:

autorest --default-http-exception-type=com.azure.core.exception.HttpResponseException

or in the Swagger README configuration:

default-http-exception-type: com.azure.core.exception.HttpResponseException

If this configuration isn't used the default exception type will be based on the Swagger definition.

Use Default HTTP Status Code to Exception Type Mapping

The default error HTTP status code to exception type map is the following:

Status Code Exception Type
401 com.azure.core.exception.ClientAuthenticationException
404 com.azure.core.exception.ResourceNotFoundException
409 com.azure.core.exception.ResourceModifiedException

By default, this mapping isn't used, to use it pass the --use-default-http-status-code-to-exception-type-mapping to the generator or in the Swagger README configuration:

use-default-http-status-code-to-exception-type-mapping: true

Custom HTTP Status Code to Exception Type Mapping

If you need to have a custom mapping it is possible to do so by using --http-status-code-to-exception-type-mapping. This requires additional configuration in the Swagger README definition as it is a mapping of HTTP status code to exception. The following is an example:

http-status-code-to-exception-type-mapping:
  404: com.azure.core.exception.ResourceNotFoundException
  412: com.azure.core.exception.ResourceExistsException

Example

The HTTP status code to exception type handling configurations can be used together to offer a nice baseline default with additional customizations as need. For example, if you wanted to configure the default exception type, use most of the default error HTTP status code to exception type, and customize one error HTTP status code exception type the following configurations can be used.

default-http-exception-type: com.azure.core.exception.HttpResponseException
use-default-http-status-code-to-exception-type-mapping: true
http-status-code-to-exception-type-mapping:
  404: com.azure.core.exception.ResourceExistsException

This results in the following error HTTP response to exception type mapping:

Status Code Exception Type
401 com.azure.core.exception.ClientAuthenticationException
404 com.azure.core.exception.ResourceExistsException
409 com.azure.core.exception.ResourceModifiedException
* com.azure.core.exception.HttpResponseException

Notices how 404 changes from the default com.azure.core.exception.ResourceNotFoundException to com.azure.core.exception.ResourceExistsException.

Minimal Data-Plane Clients

You can generate the output as minimal data-plane clients with --data-plane flag. The models will not be generated and the methods in the clients will be generated as protocol methods.

The generated code has the following structure:

- pom.xml
- /src/main/java
  |
  - module-info.java
  - /com/azure/<group>/<service>
    |
    - <Service>Builder.java
    - <Service>Client.java
    - <Service>AsyncClient.java
    - /implementation
      |
      - <Service>ClientImpl.java

and requires latest azure-core as a dependency.

Customizations

For guidance on using the post-code generation customization framework see its documentation.

Project structure

extension-base

This contains the base classes and utilities for creating an AutoRest extension in Java. It handles the JSON RPC communications with AutoRest core, provides JSON and YAML parsers, and provides the POJO models for the code model output from modelerfour.

Extend from NewPlugin.java class if you are writing a new extension in Java.

javagen

This contains the actual generator extension, including mappers that maps a code model to a Java client model, and templates that writes the Java client models into .java files.

fluentgen

This contains the generator extension for Azure Management Libraries.

tests

This contains the generated classes from the test swaggers in src/main. The code here should always be kept up-to-date with the output of the generator in javagen.

This also contains test code for these generated code under src/test. Running the tests will hit the test server running locally (see https://github.com/Azure/autorest.testserver for instructions) and verify the correctness of the generated code.

Working with the core submodule

This repository uses a git submodule for the TypeSpec OSS core.

This section covers some basic everyday tasks for working with it. The steps below are are really just one possible workflow. There's more than one way to accomplish these tasks and if you prefer to do it differently, that's fine too!

Configuring git to recurse submodules automatically for most commands

Run the following command:

git config --global submodule.recurse true

This will effectively pass --recurse-submodules for you to git commands that accept it. It should eliminate some of the common pain points around submodules.

NOTE: git clone is exceptional, see below.

Cloning recursively

git clone does not recurse submodules automatically, even with submodule.recurse=true as configured above.

Fork the repo, then clone recursively as follows:

git clone --recurse-submodules https://github.com/(your_username)/autorest.java

Updating and initializing the submodule

In some situations, even with the above setting, you may still end up with the core/ folder being uninitialized and not having a good clone of microsoft/typespec, or with the core/ folder initialized, but checked out to the wrong commit for the current branch. To fix this, run the following command to update and initialize the submodule:

git submodule update --init

Point the submodule origin remote to your fork

You can change the remotes of the submodule so that origin is your fork of microsoft/typespec rather than microsoft/typespec itself, and microsoft/typespec is upstream:

cd [repo_root]
cd core
git remote remove origin
git remote add origin https://github.com/(your_username)/typespec
git remote add upstream https://github.com/microsoft/typespec

Build

Run "Build-TypeSpec.ps1" script to build @azure-tools/typespec-java as TypeSpec emitter.

The TypeSpec emitter can be installed via e.g.

npm install [repo_root]/typespec-extension/azure-tools-typespec-java-[version].tgz

Run "Build-AutoRest.ps1" script to build @autorest/java as Autorest extension.

The AutoRest extension can be used via e.g.

autorest --use="[repo_root]" --java [readme.md]

Before building Maven project and packaging NPM package, the script does 3 things:

  1. Apply a patch to code in "core", mainly for switching to azure-autorest-customization as customization lib. -- This is the only step that affect AutoRest extension.
  2. Build the JAR for core/packages/http-client-java/generator/http-client-generator module (with the patch to code in step 1), and copy it to typespec-extension/generator/http-client-generator.
  3. Copy the source from core/packages/http-client-java/emitter (with the patch to code in step 1) to typespec-extension.

If you do not plan to modify these patched files in your PR, you can use "assume-unchanged" to ignore the changes on these files:

git update-index --assume-unchanged packages/http-client-java/emitter/src/code-model-builder.ts packages/http-client-java/emitter/src/emitter.ts packages/http-client-java/generator/http-client-generator-core/pom.xml packages/http-client-java/generator/http-client-generator-core/src/main/java/com/microsoft/typespec/http/client/generator/core/postprocessor/Postprocessor.java packages/http-client-java/generator/http-client-generator/src/main/resources/readme/pom.xml

"no-assume-unchanged" would unset the files marked by "assume-unchanged".

Alternatively, you can commit the patched files, and revert this commit before creating the pull request for review.

Making a cross-cutting change across both repos

  1. Make matching branches:
cd core
git checkout -b featurebranch

cd ..
git checkout -b featurebranch
  1. Make your changes as needed to both repos.

  2. Commit changes to both repos:

cd core
git commit -a -m "Core part of my change"

cd ..
git commit -a -m "Azure-specific part of my change"
  1. Push
git push origin featurebranch

NOTE: If you configured submodule.recurse=true as shown above, this will automatically push the submodule typespec branch along with the autorest.java branch. If you prefer not to use that, then cd core and push that too.

  1. Create 2 PRs from the two branches that were pushed to your microsoft/typespec and Azure/autorest.java forks. Start with the microsoft/typespec PR, then follow up with the Azure/autorest.java PR that depends on it.

  2. Get approval for both PRs before merging either of them.

  3. Merge the microsoft/typespec PR first.

  4. Update the submodule to point to the actual commit you merged to microsoft/typespec main:

cd core
git fetch --all
git checkout upstream/main

cd ..
git commit -a -m "Update submodule"
git push origin featurebranch
  1. Merge the autorest.java PR and you're done.

Note that you only need to do all of the above when your changes span both repos. If you are only changing one repo or the other, then just work in each individual repo as you would any other.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

Autorest plugin configuration

Javagen

use: $(this-folder)/javagen
use: $(this-folder)/fluentgen
use: $(this-folder)/javagen

Help

help-content:
  java:
    activationScope: java
    categoryFriendlyName: Java Generator
    settings:
      - key: client-side-validations
        type: bool
        description: Generate validations for required parameters and required model properties. Default is false.
      - key: generate-client-as-impl
        type: bool
        description: Append "Impl" to the names of service clients and method groups and place them in the `implementation` sub-package. Default is false.
      - key: generate-client-interfaces
        type: bool
        description: Implies `--generate-client-as-impl` and generates interfaces for all the "Impl"s. Default is false.
      - key: generate-sync-async-clients
        type: bool
        description: Implies `--generate-client-as-impl` and generates sync and async convenience layer clients for all the "Impl"s. Default is false.
      - key: generate-builder-per-client
        type: bool
        description: Requires `--generate-sync-async-clients`, and generates one ClientBuilder for each Client. Default is false.
      - key: implementation-subpackage=STRING
        type: string
        description: The sub-package that the Service client and Method Group client implementation classes will be put into. Default is `implementation`.
      - key: models-subpackage=STRING
        type: string
        description: The sub-package that Enums, Exceptions, and Model types will be put into. Default is `models`.
      - key: sync-methods
        type: string
        description: \[all|essential|none] Specifies mode for generating sync wrappers. Supported value are <br>&nbsp;&nbsp;`essential` - generates only one sync returning body or header (default) <br>&nbsp;&nbsp;`all` - generates one sync method for each async method<br>&nbsp;&nbsp;`none` - does not generate any sync methods
      - key: required-parameter-client-methods
        type: bool
        description: Indicates whether client method overloads with only required parameters should be generated. Default is false.
      - key: custom-types
        type: string
        description: \[COMMA,SEPARATED,STRINGS] Specifies a list of files to put in the package specified in `--custom-types-subpackage`.
      - key: custom-types-subpackage
        type: string
        description: The sub-package that the custom types should be generated in. The types that custom types reference, or inherit from will also be automatically moved to this sub-package. **Recommended usage** You can set this value to `models` and set `--models-subpackage=implementation.models`to generate models to `implementation.models` by default and pick specific models to be public through `--custom-types=`.
      - key: client-type-prefix
        type: string
        description: The prefix that will be added to each generated client type.
      - key: client-flattened-annotation-target
        type: string
        description: \[TYPE,FIELD,NONE,DISABLED] Indicates the target of `@JsonFlatten` annotation for `x-ms-client-flatten`. Default is `TYPE`.
      - key: disable-client-builder
        type: bool
        description: Indicates whether to disable generating the `ClientBuilder` class. This is for SDK that already contains a hand-written `ClientBuilder` class. Default is false.
      - key: polling
        type: string
        description: Configures how to generate long running operations. See [Polling Configuration](https://github.com/Azure/autorest.java#polling-configuration) to see more details on how to use this flag.
      - key: service-name
        type: string
        description: Service name used in Client class and other documentations. If not provided, service name is deduced from `title` configure (from swagger or readme).
      - key: partial-update
        type: bool
        description: Indicates whether to support partial update for `Client`/`AsyncClient` classes and `ClientBuilder` class. Default is false.
      - key: enable-sync-stack
        type: bool
        description: Indicates that sync method invokes sync RestProxy method. By default, sync method invokes async RestProxy method.
      - key: required-fields-as-ctor-args
        type: bool
        description: Indicates that class models have constructor taking required properties.
      - key: output-model-immutable
        type: bool
        description: Indicates that output-only models be generated as immutable, and without public constructor. Default is false.
      - key: data-plane
        type: bool
        description:  Indicates whether to generate code for minimal clients. Default is false.

  javafluent:
    activationScope: fluent
    categoryFriendlyName: Java fluent Generator
    settings:
      - key: fluent
        type: string
        description: Enum. `LITE` for Fluent Lite; `PREMIUM` for Fluent Premium. Case insensitive. Default is `PREMIUM` if provided as other values.
      - key: fluent-subpackage
        type: string
        description: String. The sub-package that vanilla client and builder will be put into. Default is `fluent`.
      - key: pom-file
        type: string
        description: String. Name for Maven POM file. Default is `pom.xml`.
      - key: package-version
        type: string
        description: String. Version number for Maven artifact. Default is `1.0.0-beta.1`.
      - key: service-name
        type: string
        description: String. Service name used in Manager class and other documentations. If not provided, service name is deduced from `title` configure (from swagger or readme).
      - key: sdk-integration
        type: bool
        description: Boolean. Integrate to [azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java/). Default is `false`. Provide `output-folder` as absolute path for best performance.
      - key: generate-samples
        type: bool
        description: Boolean. Generate samples from `x-ms-examples` in swagger. Default is `false`.
      - key: add-inner
        type: string
        description: CSV. Treat as inner class (move to `fluent.models` namespace, append `Inner` to class name).
      - key: remove-inner
        type: string
        description: CSV. Exclude from inner classes.
      - key: rename-model
        type: string
        description: CSV. Rename classes. Each item is of pattern `from:to`.
      - key: remove-model
        type: string
        description: CSV. Remove classes.
      - key: preserve-model
        type: string
        description: CSV. Preserve classes from clean-up.
      - key: remove-operation-group
        type: string
        description: CSV. Remove operation groups.
      - key: name-for-ungrouped-operations
        type: string
        description: String. Name for ungrouped operation group. Default to `ResourceProviders` for Lite.