Skip to content

Commit

Permalink
resolving correctness error in private branch (#4479)
Browse files Browse the repository at this point in the history
* resolving correctness error in private branch

* go sdk error fix

Co-authored-by: Gaurav Bang <gauravbang@microsoft.com>
  • Loading branch information
banggaurav and Gaurav Bang authored Aug 11, 2021
1 parent 6a5d1e9 commit f334fbe
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
"tags": [
"Monitors"
],
"summary": "Create a monitor resource.",
"summary": "Create a monitor resource. This create operation can take upto 10 minutes to complete.",
"operationId": "Monitors_Create",
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
Expand Down Expand Up @@ -359,7 +359,7 @@
"tags": [
"Monitors"
],
"summary": "Delete a monitor resource.",
"summary": "Delete a monitor resource. This delete operation can take upto 10 minutes to complete.",
"operationId": "Monitors_Delete",
"produces": [
"application/json"
Expand Down Expand Up @@ -681,7 +681,7 @@
"tags": [
"SingleSignOn"
],
"summary": "Configures single-sign-on for this resource.",
"summary": "Configures single-sign-on for this resource. This operation can take upto 10 minutes to complete.",
"operationId": "SingleSignOn_CreateOrUpdate",
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
Expand Down Expand Up @@ -849,7 +849,7 @@
"tags": [
"SubAccount"
],
"summary": "Create sub account under a given monitor resource.",
"summary": "Create sub account under a given monitor resource. This create operation can take upto 10 minutes to complete.",
"operationId": "SubAccount_Create",
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
Expand Down Expand Up @@ -1849,6 +1849,7 @@
"Disabled"
],
"type": "string",
"default": "Enabled",
"x-ms-enum": {
"modelAsString": true,
"name": "MonitoringStatus"
Expand All @@ -1861,6 +1862,7 @@
"Suspended"
],
"type": "string",
"default": "Active",
"x-ms-enum": {
"modelAsString": true,
"name": "MarketplaceSubscriptionStatus"
Expand Down
13 changes: 10 additions & 3 deletions specification/logz/resource-manager/readme.go.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,23 @@ These settings apply only when `--go` is specified on the command line.

```yaml $(go)
go:
license-header: MICROSOFT_APACHE_NO_VERSION
license-header: MICROSOFT_MIT_NO_VERSION
namespace: logz
clear-output-folder: true
```
### Go multi-api
``` yaml $(go) && $(multiapi)
batch:
- tag: package-2020-10-01-preview
```
### Tag: package-2020-10-01-preview and go
These settings apply only when `--tag=package-2020-10-01-preview --go` is specified on the command line.
Please also specify `--go-sdks-folder=<path to the root directory of your azure-sdk-for-go clone>`.
Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.

```yaml $(tag) == 'package-2020-10-01-preview' && $(go)
output-folder: $(go-sdk-folder)/services/preview/$(namespace)/mgmt/2020-10-01-preview/$(namespace)
```
```

0 comments on commit f334fbe

Please sign in to comment.