Skip to content
Closed
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 @@ -574,22 +574,22 @@
"in": "path",
"required": true,
"type": "string",
"description": "Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call."
"description": "The workspace's resource subscription ID."
},
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "Client Api Version."
"description": "The client API version."
},
"ResourceGroupNameParameter": {
"name": "resourceGroupName",
"in": "path",
"required": true,
"type": "string",
"x-ms-parameter-location": "method",
"description": "The name of the resource group to get. The name is case insensitive.",
"description": "The workspace's resource group name.",
"pattern": "^[-\\w\\._\\(\\)]+$",
"minLength": 1,
"maxLength": 90
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,22 +302,22 @@
"in": "path",
"required": true,
"type": "string",
"description": "Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call."
"description": "The workspace's resource subscription ID."
},
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "Client Api Version."
"description": "The client API version."
},
"ResourceGroupNameParameter": {
"name": "resourceGroupName",
"in": "path",
"required": true,
"type": "string",
"x-ms-parameter-location": "method",
"description": "The name of the resource group to get. The name is case insensitive.",
"description": "The workspace's resource group name.",
"pattern": "^[-\\w\\._\\(\\)]+$",
"minLength": 1,
"maxLength": 90
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/LinkedStorageAccounts"
"$ref": "#/definitions/LinkedStorageAccountList"
},
"description": "The parameters required to create or update linked storage accounts."
},
Expand All @@ -293,7 +293,7 @@
"200": {
"description": "OK response definition.",
"schema": {
"$ref": "#/definitions/LinkedStorageAccounts"
"$ref": "#/definitions/LinkedStorageAccountList"
}
}
}
Expand Down Expand Up @@ -372,7 +372,7 @@
"200": {
"description": "OK response definition.",
"schema": {
"$ref": "#/definitions/LinkedStorageAccounts"
"$ref": "#/definitions/LinkedStorageAccountList"
}
}
}
Expand Down Expand Up @@ -599,7 +599,7 @@
}
}
},
"LinkedStorageAccounts": {
"LinkedStorageAccountList": {
"properties": {
"properties": {
"x-ms-client-flatten": true,
Expand All @@ -623,7 +623,7 @@
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/LinkedStorageAccounts"
"$ref": "#/definitions/LinkedStorageAccountList"
},
"description": "A list of linked storage accounts instances."
}
Expand Down
14 changes: 14 additions & 0 deletions specification/operationalinsights/resource-manager/readme.java.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ directive:
batch:
- tag: package-2015-03
- tag: package-2015-11-preview
- tag: package-2019-08-preview
- tag: package-2020-03-preview
- tag: package-2020-08
```
Expand Down Expand Up @@ -56,6 +57,19 @@ regenerate-manager: true
generate-interface: true
```

### Tag: package-2019-08-preview and java

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

``` yaml $(tag) == 'package-2019-08-preview' && $(java) && $(multiapi)
java:
namespace: com.microsoft.azure.management.loganalytics.v2019_08_01_preview
output-folder: $(azure-libraries-for-java-folder)/sdk/loganalytics/mgmt-v2019_08_01_preview
regenerate-manager: true
generate-interface: true
```

### Tag: package-2015-03 and java

These settings apply only when `--tag=package-2015-03 --java` is specified on the command line.
Expand Down