Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing operation name #15125

Merged
merged 3 commits into from
Jul 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10782,7 +10782,7 @@
"x-ms-pageable": {
"nextLinkName": "odata.nextLink"
},
"operationId": "ComputeNodeExtensions_List",
"operationId": "ComputeNodeExtension_List",
"x-ms-examples": {
"List compute node extensions": {
"$ref": "./examples/ComputeNodeExtensionList.json"
Expand Down Expand Up @@ -14088,7 +14088,7 @@
},
"type": {
"type": "string",
"title": "The type of the extensions."
"title": "The type of the extension."
},
"typeHandlerVersion": {
"type": "string",
Expand Down Expand Up @@ -14202,11 +14202,11 @@
},
"vmExtension": {
"$ref": "#/definitions/VMExtension",
"title": "The name of the extension handler publisher."
"title": "The virtual machine extension"
},
"instanceView": {
"$ref": "#/definitions/VMExtensionInstanceView",
"title": "The type of the extensions."
"title": "The vm extension instance view."
}
},
"title": "The configuration for virtual machine extension instance view."
Expand Down
20 changes: 10 additions & 10 deletions specification/batch/data-plane/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ To see additional help and options, run:
These are the global settings for the Batch API.

``` yaml
title: BatchServiceClient
openapi-type: data-plane
tag: package-2021-06.14.0
```
Expand Down Expand Up @@ -371,30 +372,29 @@ See configuration in [readme.go.md](./readme.go.md)
## Java

These settings apply only when `--java` is specified on the command line.
Please also specify `--node-sdks-folder=<path to root folder of your azure-batch-sdk-for-java clone>`.
Please also specify `--java-sdks-folder=<path to root folder of your azure-sdk-for-java repo>`.

``` yaml $(java)
nodejs:
``` yaml $(java) && $(openapi-type) == 'management-plane'
java:
azure-arm: true
license-header: MICROSOFT_MIT_NO_VERSION
namespace: com.microsoft.azure.batch.protocol
output-folder: $(node-sdks-folder)/src/main/java
namespace: com.microsoft.azure.batch
output-folder: $(java-sdks-folder)/sdk/batch/azure-resourcemanager-batch
payload-flattening-threshold: 1
generate-license-txt: true
clear-output-folder: true
```

These settings apply only when `--java` is specified on the command line.
Please also specify `--azure-libraries-for-java-folder=<path to the root directory of your azure-libraries-for-java clone>`.
Please also specify `--java-sdks-folder=<path to root folder of your azure-sdk-for-java repo>`.

``` yaml $(java)
``` yaml $(java) && $(openapi-type) == 'data-plane'
java:
azure-arm: true
fluent: true
namespace: com.microsoft.azure.batch
namespace: com.microsoft.azure.batch.protocol
license-header: MICROSOFT_MIT_NO_CODEGEN
payload-flattening-threshold: 1
output-folder: $(azure-libraries-for-java-folder)/azure-batch
output-folder: $(java-sdks-folder)/sdk/batch/microsoft-azure-batch
```

## Multi-API/Profile support for AutoRest v3 generators
Expand Down