-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
[HDInsight] - Swagger based job SDK #4489
Conversation
If you're a MSFT employee, click this link |
Automation for azure-sdk-for-rubyNothing to generate for azure-sdk-for-ruby |
Automation for azure-sdk-for-jsA PR has been created for you: |
Automation for azure-sdk-for-pythonA PR has been created for you: |
Automation for azure-sdk-for-nodeA PR has been created for you: |
Automation for azure-sdk-for-goEncountered a Subprocess error: (azure-sdk-for-go)
Command: dep ensure grouped write of manifest, lock and vendor: error while writing out vendor tree: failed to write dep tree: failed to export golang.org/x/net: failed to fetch source for https://go.googlesource.com/net: unable to get repository: Cloning into '/tmp/tmpjczzrsbq/pkg/dep/sources/https---go.googlesource.com-net'...
POST git-upload-pack (441 bytes)
error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502 Bad Gateway
fatal: The remote end hung up unexpectedly
: command failed: [git clone --recursive -v --progress https://go.googlesource.com/net /tmp/tmpjczzrsbq/pkg/dep/sources/https---go.googlesource.com-net]: exit status 128 |
Automation for azure-sdk-for-javaA PR has been created for you: |
Can one of the admins verify this patch? |
8e49e15
to
cb404e0
Compare
} | ||
} | ||
}, | ||
"parameters": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these parameters on the client? Are they not expected to change across API calls?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The behavior comes from Hyak-based Job SDK. You can refer code here. The user name is used for authorization.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, so this is to keep parity with the older SDK.
@idear1203 have these changes been through an API review? |
Hi @praries880 , could you please give me some guide on the process of the API review? Thanks! |
Here are Microsoft REST guidelines: https://github.com/Microsoft/api-guidelines Here are the validation rules and Guildlines that our reviewers follow as mentioned in the begining of the PR: |
As for the review it self schedule time with this alias\DG "Azure API Review Board Core", they usually do Tuesdays 3-5 pm PST |
Hi, I think there is a misunderstanding. This swagger spec does not describe a new API we made, but rather describes the existing Apache Templeton API that we have no control over. HDInsight clusters use Templeton for job submission, so we created a swagger spec in order to be able to generate SDKs. |
"description": "The State of the application.", | ||
"properties": { | ||
"state": { | ||
"type": "string", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this is a well-defined set of values that will not change, it should be modeled as an enum.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea. Will update the state as an enum in the next iteration
In reply to: 237731666 [](ancestors = 237731666)
"properties": { | ||
"error": { | ||
"description": "Error message indicating why the operation failed.", | ||
"type": "string" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the set of possible error messages? Is this a human-readable string or is the expectation that an application should be able to act based on the value of error?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They are human-readable strings. I am not sure about possible values.
In reply to: 237731777 [](ancestors = 237731777)
"description": "The object containing the job details.", | ||
"properties": { | ||
"callback": { | ||
"type": "object", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this is a URL, shouldn't the type be a string?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"type": "string", | ||
"description": "The full ID of the job." | ||
}, | ||
"jobID": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a jobId and a jobID attribute? Or is this a typo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"cleanupProgress": { | ||
"type": "number", | ||
"format": "double", | ||
"x-nullable": false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no need to specify x-nullable false. This is the default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not default for basic types in the generated C# code . As we disscussed offline, I will remove all "x-nullable": false
in the next iteration.
In reply to: 237732181 [](ancestors = 237732181)
"type": "integer", | ||
"format": "int64", | ||
"x-nullable": false, | ||
"description": "The time at which the job completed." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the format of the time? Ticks since 1970? Something else?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is epoch timestamp in milliseconds. Comments will be updated in the next iteration.
In reply to: 237732234 [](ancestors = 237732234)
}, | ||
"jobComplete": { | ||
"type": "boolean", | ||
"x-nullable": false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
x-nullable false is not necessary. This is the default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
x-nullable
for basic types will be removed in the next iteration
In reply to: 237732282 [](ancestors = 237732282)
"x-nullable": false, | ||
"description": "The number of slots used for the job." | ||
}, | ||
"priority": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the difference between jobPriority and priority?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They seem like same thing. However, the server side returns both. See HDI_Job_Get.json
In reply to: 237732337 [](ancestors = 237732337)
"type": "integer", | ||
"format": "int64", | ||
"x-nullable": false, | ||
"description": "The amount of memory reserved for the job." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the unit?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"type": "integer", | ||
"format": "int32", | ||
"x-nullable": false, | ||
"description": "The current state of the job." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this an enum? Is there a set of predefined value? What would runState == 4711 mean?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
}, | ||
"schedulingInfo": { | ||
"type": "string", | ||
"description": "The information about the scheduling of the" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Truncated description...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AutorestCI regenerate azure-sdk-for-go |
Encountered a Subprocess error
Command: go generate ./profiles/generate.go [STATUS] Output-Location set to: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/storage/mgmt/storage/storageapi/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/subscriptions/subscriptionsapi/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/compute/mgmt/compute/computeapi/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/keyvault/mgmt/keyvault/keyvaultapi/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/keyvault/keyvault/keyvaultapi/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/locks/locksapi/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/locks/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/links/linksapi/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/subscriptions/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/links/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/features/featuresapi/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/network/mgmt/network/networkapi/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/storage/mgmt/storage/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/resources/resourcesapi/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/keyvault/mgmt/keyvault/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/features/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/policy/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/keyvault/keyvault/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/resources/mgmt/resources/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/compute/mgmt/compute/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/2017-03-09/network/mgmt/network/models.go
[STATUS] 21 packages generated.
[STATUS] Output-Location set to: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/marketplaceordering/mgmt/marketplaceordering/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/powerbidedicated/mgmt/powerbidedicated/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/appinsights/insights/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/resources/mgmt/subscriptions/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/resources/mgmt/links/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/servicefabric/mgmt/servicefabric/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/videosearch/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/containerservice/mgmt/containerservice/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/customsearch/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/entitysearch/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/resourcehealth/mgmt/resourcehealth/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/operationalinsights/operationalinsights/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/reservations/mgmt/reservations/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/textanalytics/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/keyvault/keyvault/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/resources/mgmt/features/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/imagesearch/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/notificationhubs/mgmt/notificationhubs/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/resources/mgmt/locks/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/eventgrid/mgmt/eventgrid/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/analysisservices/mgmt/analysisservices/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/computervision/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/datalake/analytics/catalog/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/recoveryservices/mgmt/recoveryservices/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/machinelearning/mgmt/webservices/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/datacatalog/mgmt/datacatalog/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/operationalinsights/mgmt/operationalinsights/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/spellcheck/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/luis/runtime/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/keyvault/mgmt/keyvault/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/eventgrid/eventgrid/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/domainservices/mgmt/aad/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/powerbiembedded/mgmt/powerbiembedded/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/storageimportexport/mgmt/storageimportexport/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/provisioningservices/mgmt/iothub/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/storage/mgmt/storage/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/relay/mgmt/relay/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/dns/mgmt/dns/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/mediaservices/mgmt/media/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/advisor/mgmt/advisor/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/datalake/store/filesystem/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/mobileengagement/mgmt/mobileengagement/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/trafficmanager/mgmt/trafficmanager/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/websearch/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/search/mgmt/search/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/newssearch/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/mgmt/cognitiveservices/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/scheduler/mgmt/scheduler/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/datalake/store/mgmt/account/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/batchai/mgmt/batchai/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/sql/mgmt/sql/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/resources/mgmt/resources/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/contentmoderator/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/iothub/mgmt/devices/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/datalake/analytics/job/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/datalake/analytics/mgmt/account/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/resources/mgmt/policy/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/face/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/batch/mgmt/batch/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/azsadmin/mgmt/infrastructureinsights/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/redis/mgmt/redis/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/eventhub/mgmt/eventhub/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cognitiveservices/luis/programmatic/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/postgresql/mgmt/postgresql/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/containerregistry/mgmt/containerregistry/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/authorization/mgmt/authorization/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/timeseriesinsights/mgmt/timeseriesinsights/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/servicebus/mgmt/servicebus/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/mysql/mgmt/mysql/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/consumption/mgmt/consumption/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/streamanalytics/mgmt/streamanalytics/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/cosmos-db/mgmt/documentdb/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/appinsights/mgmt/insights/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/batch/batch/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/graphrbac/graphrbac/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/customerinsights/mgmt/customerinsights/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/logic/mgmt/logic/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/storsimple8000series/mgmt/storsimple/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/web/mgmt/web/models.go
[STATUS] Writing File: /tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/compute/mgmt/compute/models.go
[ERROR] error formatting profile '/tmp/tmp0la0046g/src/github.com/Azure/azure-sdk-for-go/profiles/latest/streamanalytics/mgmt/streamanalytics/models.go': exit status 2
exit status 1
latest/generate.go:17: running "go": exit status 1
profiles/generate.go:18: running "go": exit status 1 |
166a97b
to
0ab9f31
Compare
* Adds base for updating Microsoft.Network from version stable/2018-08-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes * Added example files * Update manage service identity api version (#4492) * directly copy swagger folder from old api version * update Managed Service Identity api version to 2018-11-30, the differnt from previous api-version is the clientSecretUrl can be null if identity is user assigned * feedback * typo: Fix AppServiceCertificateOrders.json (#4502) - Double word "to" - Successully -> Successfully - certitificate -> certificate * chore: Remove outdated VS files (#4593) The layout doesn't match the repo structure anymore and hasn't been updated in 2 years * Updates to the 2018-07-01 version of the MediaServices API (#4483) All enums, use 'modelAsString' instead of 'modelAsExtensible' streamingservice, add "Standard" to LiveEncoding.encodingType encoding, remove top and skip from query parms and add orderby accountfilters and aasetsandassefilters, remove required attribute for PresentationTimeRange properties Updated readme.md to add "opt-in-extensible-enums: true" to csharp build * Fix the error The 200 response model for an ARM PUT operation must have x-ms-azure-resource extension set to true in its hierarchy. Operation: 'Tags_CreateOrUpdate' Model: 'TagDetails' (#4600) Merging this Pull request but it might cause breaking changes on some of the SDKs * OAV 0.9.5 better error handling (#4606) * Adding ARM section to the template (#4569) This will help service teams be better informed about the ARM API review process and add the required labels. * Add Node.js and JavaScript configuration for sqlvirtualmachine (#4603) * typo: Microsoft.Fabric.Admin (#4612) - requestd -> requested - visiblity -> visibility - sftware -> software * Adding new resource type name Forecast to Microsoft.CostManagment RP (#4558) * Add a new preview api-version for Time Series Insights (#4599) * Fix or suppress spec violations Fix R2016 by making PATCH body properties optional. Suppress the remaining 4 violations that are confirmed as false positives. * Try removing 2nd top-level heading, which _may_ have been causing a linter warning. * Fix extra indention which prevented linter from running. * Added dataStringComparisonBehavior parameter to reference data put/update spec. * Fixed grammar. * adding partitionkeyProperty to environmentInfo * changing property name * changing modelAsString * Initial checkin of spec. Unchanged from GA release other than version. * Remove .orig files * Fix validation error by removing IoTHub ES from List ES example response * Add extra example that was missing from preview spec. * Add long-term environment to resource hierarchy, and update examples. * Switch to model-as-string for enums. Restore EnvironmentResource's inheritance from TrackedResource. * Upsate sku description * Add new TSI preview api-version to readme.md. * Add suppressions for false-positive linter failures. * Test suppression failures * Adding preview package tag to several other places in readme.md * Add preview package to the readme.go.md file * Remove invalid required property from EnvironmentCreateOrUpdateParameters * typo: Microsoft.Compute.Admin (#4610) - cancallation -> cancellation * Revert "Fix the ARM R2062 error for Microsoft.Resources" (#4618) * typo: Microsoft.Storage.Admin (#4613) - Storag -> Storage - Maxium -> Maximum * typo: Microsoft.ApiManagement (#4596) - reponse -> response - succesfully -> successfully - Successfull -> Successful - Double word "the" - GeoGraphy -> geography - secconds -> seconds - agregation -> aggregation - succesful -> successful - HttpStatusCode.Unauthorize -> HttpStatusCode.Unauthorized - fullfilled -> fulfilled - specificied -> specified - productid -> productId - appplying -> applying - assosiated -> associated - Storename -> StoreName - Managemet -> Management - outcoming -> outgoing - queruering -> querying - Countery -> Counter - Subsctions -> Subscriptions - groupid -> groupId - subid -> subscriptionId - dignostic -> diagnostic - settigs -> settings - concent -> consent - fescription -> description - Reconect -> Reconnect * Update OAV to 0.9.6 (#4624) * Generate README.md for JavaScript @azure/arm-network package (#4623) * typo: Microsoft.Cdn (#4635) - subscitption -> subscription - consoto -> contoso - adress -> address * typo: azsadmin/resource-manager/gallery/Microsoft.Gallery.Admin (#4614) - Double word "gallery" - metdata -> metadata * typo: Microsoft.Batch (#4631) - coordianation -> coordination - updateable -> updatable - behaviour -> behavior - performExitOptionsJobAction camelcase - noAction camel case - terminateJob camel case - taskwithin -> task within - erro -> error - VNETs -> VNets * Suppress the error because TagDetails is not an Azure resource (#4630) * typo: Microsoft.BotService (#4634) - Diplay -> Display * Add network rule set properties, empty resource group validation (#4506) * Added example for template params (#4602) * typo: Microsoft.Subscriptions (#4616) - specifed -> specified * typo: Microsoft.Automation (#4608) - specifc -> specific - theresource -> the resource - detailes -> Details - souce -> source - occured -> occurred - cerdential -> credential - madatory -> mandatory - infomration -> information - runas -> RunAs - dratft -. draft - varible -> variable * typo: Microsoft.Blueprint (#4633) - fullfillment -> fulfillment - deinition -> definition - policyAssginment -> policyAssignment * Add offlineDataTransferStatus (#4598) * typo: network/resource-manager/Microsoft.Network/expressRouteCircuit (#4530) - opertion -> operation - ExpressRouteServiceProdiver -> ExpressRouteServiceProvider - Spepcified -> Specified - Succeded -> Succeeded * updated Reimage API documentation in compute json for ephemeral os disks (#4644) * Added diffDiskSettings property as part of Swagger changes needed for Ephemeral VM\VMSS * updated comment * updated swagger specs for diffdisksettings property * updated swagger spec comments for diff disk settings [property * added example to create Diff OS disk scaleset * updated 2018-10-01 version specs with diffdisk property * added example file for creating VM with diffdisksettings property * updated swagger changes for reimage operation in single vm * update examples * udpated examples * fixed validation errors * updated comments for reimage operation documentation * typo: monitor/resource-manager/microsoft.insights (#4717) - datatimes ->datetimes - calcualte -> calculate - timezones -> time zones - blongs -> belongs - defintions -> definitions - definitons -> definitions - defitinitons -> definitions - Speficies -> Specifies - webook -> webhook - Acount -> Account - scheduledquery -> scheduled query - Frequnecy -> Frequency - Specifiy -> Specify * typo: machinelearningcompute/resource-manager/Microsoft.MachineLearningCompute (#4707) - Operationalizaton -> Operationalization - configuartion -> configuration - Trim trailing whitespace * typo: Microsoft.HDInsight (#4697) - compatibilty -> compatibility - capabilty -> capability * typo: Microsoft.EventGrid (#4690) - Double word "key" - eventtime -> eventTime - upto -> up to * typo: Microsoft.DataMigration (#4681) - exising -> existing - capabilites -> capabilities - eligiblity -> eligibility - propery -> property - ertificate -> certificate * typo: Microsoft.DataBox (#4672) - consitent use of "DataBox", "DataBoxHeavy", and "DataBoxDisk" - hasnt -> hasn't - transfered -> transferred - Storsimple -> StorSimple * typo: Microsoft.ContainerService (#4659) - FDQN -> FQDN * typo: ContentModerator (#4650) - classication -> classification * Update RHEL and CentOS to latest versions (#4640) * typo: operationalinsights/resource-manager/Microsoft.OperationalInsights (#4723) - managmement -> management - Searchs -> Searches - lanuage -> language - occurences -> occurrences - Trim trailing space * typo: marketplaceordering/resource-manager/Microsoft.MarketplaceOrdering (#4711) - reponse -> response * typo: resource-manager/Microsoft.KeyVault (#4701) - Double word "the" - availabity -> availability - accesibility -> accessibility - Decription -> Description * typo: graphrbac (#4693) - otherwsie -> otherwise - Objectit -> Object - Reqired -> Required * typo: Microsoft.DocumentDB (#4665) - defintions -> definitions - Trim trailing whitespace * typo: coginitiveservices/data-plane/LocalSearch (#4655) - delimiated -> delimited - countr -> country * typo: Microsoft.Update.Admin (#4615) - Inforamtion -> Information * typo: Microsoft.Compute (#4658) - incremental -> Incremental - setings -> settings - maintainance -> maintenance - UppercaseThumbpring -> UppercaseThumbprint - SubcriptionId -> SubscriptionId - Resoure -> Resource - capabilites -> capabilities - stictly -> strictly - VM's -> VMs - Double word "by" - Paramaters -> Parameters - Double word "be" - updateable -> updatable * typo: Microsoft.DeploymentManager (#4683) - Individial -> Individual * Migration APIs (#4425) * Migration APIs * Taken ARM review feedback * [HDInsight] - Initial commit for Swagger-based Job SDK (#4489) * typo: powerbiembedded/resource-manager/Microsoft.PowerBI (#4729) - defintion -> definition * typo: policyinsights/resource-manager/Microsoft.PolicyInsights (#4726) - paramters -> parameters - deplyoments -> deployments * typo: logic/resource-manager/Microsoft.Logic (#4708) - conetnt -> content * typo: Microsoft.HardwareSecurityModules (#4696) - SubcriptionId -> SubscriptionId * typo: Microsoft.DevTestLab (#4685) - Reponse -> Response - notificationchannels -> notification channels - GibiBytes -> Gibibytes * typo: Microsoft.DataCatalog (#4674) - catlog -> catalog * typo: Microsoft.Consumption (#4660) - perdiod -> period - scenarion -> scenario - servicetype -> serviceType - additoinalinfo -> additional info - reservationid -> reservationId - subscripotionId -> subscriptionId - recomendations -> recommendations - assiciated -> associated - Recomended -> Recommended - Departmentt -> Department - Trim trailing whitespace * typo: cognitiveservices/data-plane/EntitySearch (#4651) - countr -> country * chore: Format BlobServicesGet.json (#4641) - Remove trailing comma that failed the JSON.parse in semantic validation - Tabs -> spaces * typo: Microsoft.Billing (#4632) - perdiod -> period - prouct -> product - setion -> section * typo: Microsoft.AzureStack (#4611) - concurency -> concurrency - subcription -> subscription - inclided -> included - regstration -> registration * chore: Add vscode-docs-authoring suggestion (#4568) * Support DataLakeStorage 11-09-18 Version. (#4639) * Copy DataLakeStorage 06-17-18 Version * Support DataLakeStorage 11-09-18 Version * Fix missing input section and add resolve comments * Fix folder structure * Changes to move from preview to stable and remove duplicate tag * Further fixes * Fix the tag name for go * Fix the tag name for python * Fix the tag name for python * fix: NetworkWatcherConnectivityCheck examples (#4645) - Remove trailing comma - VirtualNetwor -> VirtualNetwork * typo: cognitiveservices/data-plane/ImageSearch (#4652) - Inisghts -> Insights * typo: Microsoft.ContainerRegistry (#4662) - manfests -> manifests - Everyting -> Everything - respositories -> repositories - previou -> previous - repoisotry -> repository - apline -> alpine - repoistory -> repository * typo: iothub/Microsoft.Devices (#4698) - Double word "the" - avrodeflate -> avroDeflate - Thehub -> The hub - Double word "state" - Trim trailing whitespace * typo: migrate/resource-manager/Microsoft.Migrate (#4716) - Wheter -> Whether - assesment -> assessment - identiefier -> identifier - estimnate -> estimate * typo: recoveryservices/resource-manager/Microsoft.RecoveryServices (#4730) - polymorhpic -> polymorphic - friendlyname -> friendly name - operationss -> operations - upgradation -> upgrade * typo: dns/Microsoft.Network (#4686) - Double word "this" - temrinating -> terminating - overwritting -> overwriting - Trim trailing whitespace * typo: recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices (#4731) - polymorhpic -> polymorphic - managmement -> management - managemenent -> management - propertes -> properties - Encrpytion -> Encryption - specifc -> specific - operationss -> operations - DB's -> DBs - recoverypoint -> recovery point - specifcally -> specifically - encaspulates -> encapsulates - alongwith -> along with - backupengine -> backup engine - Diskspace -> Disk space - follwing -> following - potentiallty -> potentially - exteded -> extended - Exoprt -> Export - transfered -> transferred * typo: operationsmanagement/resource-manager/Microsoft.OperationsManagement (#4725) - properites -> properties - Associatons -> Associations * fix: Rename applicationinsights/data-plane/Microsoft.Insights (#4736) * fix: Rename applicationinsights/data-plane/Microsoft.Insights Folders in the repo use uppercase for the namespace * fix: Casing on applicationinsights/data-plane/Microsoft.Insights YAML * fix: Microsoft.Relay\stable\2017-04-01\examples (#4646) - "rights" is supposed to be an array - right -> rights - "path" was null in the previous version and a ":," isn't valid json * typo: cognitiveservices/data-plane/QnAMaker (#4653) - knowlegebases -> knowledgebases * typo: Microsoft.ConainterInstance (#4661) - contaienr -> container * typo: Microsoft.Media (#4687) - Double word "event" * typo: data-plane/Microsoft.KeyVault (#4700) - workign -> working - renawal -> renewal - encypt -> encrypt - Setsecret -> SetSecret - ceritifcate -> certificate - addresss -> address - defintions -> definitions - priveleged -> privileged * typo: mariadb/resource-manager/Microsoft.DBforMariaDB (#4710) - allowd -> allowed - Trim trailing spaces * typo: netapp/resource-manager/Microsoft.NetApp (#4719) - possiblly -> possibly - targets's -> target's * Add first GA LabServices API (#4621) * Add first GA LabServices API * Add Example for Labs_List * Update specification/labservices/resource-manager/readme.nodejs.md Co-Authored-By: ianhays <ianha@microsoft.com> * Update specification/labservices/resource-manager/readme.typescript.md Co-Authored-By: ianhays <ianha@microsoft.com> * Update specification/labservices/resource-manager/readme.typescript.md Co-Authored-By: ianhays <ianha@microsoft.com> * typo: Microsoft.DataLakeAnalytics (#4676) - partion -> partition - formatxii -> format - occured -> occurred - underying -> underlying - Double word "delete" - Asunc -> Async * typo: Microsoft.CognitiveServices (#4657) - Serices -> Services - Congitive -> Cognitive - proprties -> properties * typo: notificationhubs/resource-manager/Microsoft.NotificationHubs (#4722) - Aauthorization -> Authorization - Availibility -> Availability - availabile -> available - Pproperties -> Properties - APNS capitalization - MPNS capitalization - Regenrate -> Regenerate - notificationhub -> NotificationHub - reponse -> response * typo: machinelearningservices/resource-manager/Microsoft.MachineLearningServices (#4706) - SSL capitalization - configugation -> configuration - creadentials -> credentials * typo: Microsoft.GuestConfiguration (#4694) - implmented -> implemented - assingment -> assignment - configuation -> configuration - trim trailing whitespace * typo: Microsoft.CostManagement (#4668) - acount -> account - dategory -> category - upto -> up to - atleast -> at least - comaprison -> comparison - exeuction -> execution - occuring -> occurring - overriden -> overridden - managment -. management * API Management service SKU API documentation (#4466) * added API management SKUS API documentation * added API management SKUS API documentation * added consumption sku definition as well in preview api version * added consumption sku definition as well in preview api version * added example * PR comments addressed * more PR comment fixes * correct casing * Changed machinelearning swagger for new AMLCompute type (#4344) * Adding new GA version 2018-12-01 * Changed machinelearning swagger for new AMLCompute for 1RP changes * Added Supported VMSize List API * replacing tabs with spaces * removing batchai reference from examples * renaming example files from batchai to amlcompute * missed adding renamed files in previous commit * Added remaining examples * removed tabs * adding more swagger improvements * removing resource id * added usage api swagger changes * CR feedbacks * CR feedbacks, examples corrected * autorest fixes * Adding patchAMLCompute.json * build fix for patch operation * AML GA Swagger updates: Changed machinelearning swagger for new AMLCompute type for GA version * updated api version to 2018-11-19 * CR feedbacks readonly * adding missing computes * removing deprecated api * version change * changing version * make patch compute long running operation * Add underlyingResourceAction and isAttachedCompute in machineLearningServices.json * Update deleteCompute.json sample * add enum and x-ms-enum for UnderlyingResourceAction * Update Delete/Detach casing just to be safe (although case doesn't matter) * Fixing AmlCompute * renaming files * renaming * adding properties for aks vnet support * patch swagger update * Added useraccount settings and list remote login info API for aml compute * remove unused param * list nodes * swagger build fixes * updated swagger for listnodes response simplification * rename to user account credentials * Changing vmPriority and allocationState to match MLC and other conventions * typo: Microsoft.DataLakeStore (#4677) - lexographical -> lexicographical - tooid -> tooId * typo: cognitiveservices/data-plane/NewsSearch (#4654) - Double word "lets" * typo: resources/resource-manager/Microsoft.Resources (#4755) - paramaters -> parameters - deploymentoutput -> deployment output - targetid -> targetId - informaton -> information - rsources -> resources - muct -> must * typo: resources/resource-manager/Microsoft.Features (#4754) - registerd -> registered * Fix machinelearning generation for Node.js (#4739) * typo: search/resource-manager/Microsoft.Search (#4758) - programatically -> programmatically - Trim trailing space * fix Go SDK codegen for labservices (#4767) Package name can't be upper-case characters. Make package name uniform with other SDKs. * typo: search/data-plane/Microsoft.Azure.Search.Data (#4757) - Autocomlete -> Autocomplete - Trim trailing space * typo: redis/resource-manager/Microsoft.Cache (#4751) - subid -> subscriptionId - properites -> properties - occured -> occurred - Trim trailing space * chore: Add initial EditorConfig (#4742) * chore: Add initial EditorConfig * chore: Add EditorConfig VS Code suggestion * chore: Rename microsoft.workloadmanager -> Microsoft.WorkloadMonitor (#4734) * chore: Rename microsoft.workloadmanager -> Microsoft.WorkloadMonitor Lower case is inconsistent with other API folders * fix: Metadata casing for Microsoft.WorkloadMonitor * typo: mysql/resource-manager/Microsoft.DBforMySQL (#4718) - allowd -> allowed - relica -> replica - Trim trailing spaces * typo: postgresql/resource-manager/Microsoft.DBforPostgreSQL (#4727) - allowd -> allowed - Trim trailing space * typo: managementgroups/resource-manager/Microsoft.Management (#4709) - Resurse -> Recurse - Managment -> Management - Double word "the" * typo: Microsoft.HanaOnAzure (#4695) - interaface -> interface * typo: reservations/resource-manager/Microsoft.Capacity (#4753) - AutofitGroup -> Autofit group - Seperator -> Separator * typo: Microsoft.DataFactory (#4675) - azure-mgmt-dafactory -> azure-mgmt-datafactory - arbitary -> arbitrary - requries -> requires - Fitler -> Filter * typo: recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices (#4749) - vCeneter -> vCenter - classfication -> classification - indentifier -> identifier - Recoery -> Recovery - proprties -> properties - occurence -> occurrence - Overriden -> Overridden - upto -> up to - exensions -> extensions - updation -> update - mappping -> mapping - reveived -> received - priviliges -> privileges - umber -> under - behaviour -> behavior - datastore -> data store - Onprem -> On-prem - inidicating -> indicating - Entites -> Entities - migraton -> migration - accerated -> accelerated - RunAs capitialization * typo: frontdoor/Microsoft.Network (#4692) - FrontDoor casing - double word "the" - reponse -> response - ruleset -> rule set - thresold -> threshold - overrideruleGroup -> override rule group * typo: Microsoft.Devices (#4684) - provisoning -> provisioning - assosiated -> associated - SKU's -> SKUs - etailed -> detailed - whitespace trimming * typo: cognitiveservices/data-plane/LUIS (#4656) - Double word "in" - explict -> explicit - resopnse -> response - idenfied -> identified - idenfitied -> identified - Objet -> Object - analized -> analyzed * Adds base for updating Microsoft.Network from version stable/2018-10-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples
* Adds base for updating Microsoft.Network from version stable/2018-10-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes for App Gw Server Variables APIs (#4345) * Adds base for updating Microsoft.Network from version stable/2018-08-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes * Added example files * Update manage service identity api version (#4492) * directly copy swagger folder from old api version * update Managed Service Identity api version to 2018-11-30, the differnt from previous api-version is the clientSecretUrl can be null if identity is user assigned * feedback * typo: Fix AppServiceCertificateOrders.json (#4502) - Double word "to" - Successully -> Successfully - certitificate -> certificate * chore: Remove outdated VS files (#4593) The layout doesn't match the repo structure anymore and hasn't been updated in 2 years * Updates to the 2018-07-01 version of the MediaServices API (#4483) All enums, use 'modelAsString' instead of 'modelAsExtensible' streamingservice, add "Standard" to LiveEncoding.encodingType encoding, remove top and skip from query parms and add orderby accountfilters and aasetsandassefilters, remove required attribute for PresentationTimeRange properties Updated readme.md to add "opt-in-extensible-enums: true" to csharp build * Fix the error The 200 response model for an ARM PUT operation must have x-ms-azure-resource extension set to true in its hierarchy. Operation: 'Tags_CreateOrUpdate' Model: 'TagDetails' (#4600) Merging this Pull request but it might cause breaking changes on some of the SDKs * OAV 0.9.5 better error handling (#4606) * Adding ARM section to the template (#4569) This will help service teams be better informed about the ARM API review process and add the required labels. * Add Node.js and JavaScript configuration for sqlvirtualmachine (#4603) * typo: Microsoft.Fabric.Admin (#4612) - requestd -> requested - visiblity -> visibility - sftware -> software * Adding new resource type name Forecast to Microsoft.CostManagment RP (#4558) * Add a new preview api-version for Time Series Insights (#4599) * Fix or suppress spec violations Fix R2016 by making PATCH body properties optional. Suppress the remaining 4 violations that are confirmed as false positives. * Try removing 2nd top-level heading, which _may_ have been causing a linter warning. * Fix extra indention which prevented linter from running. * Added dataStringComparisonBehavior parameter to reference data put/update spec. * Fixed grammar. * adding partitionkeyProperty to environmentInfo * changing property name * changing modelAsString * Initial checkin of spec. Unchanged from GA release other than version. * Remove .orig files * Fix validation error by removing IoTHub ES from List ES example response * Add extra example that was missing from preview spec. * Add long-term environment to resource hierarchy, and update examples. * Switch to model-as-string for enums. Restore EnvironmentResource's inheritance from TrackedResource. * Upsate sku description * Add new TSI preview api-version to readme.md. * Add suppressions for false-positive linter failures. * Test suppression failures * Adding preview package tag to several other places in readme.md * Add preview package to the readme.go.md file * Remove invalid required property from EnvironmentCreateOrUpdateParameters * typo: Microsoft.Compute.Admin (#4610) - cancallation -> cancellation * Revert "Fix the ARM R2062 error for Microsoft.Resources" (#4618) * typo: Microsoft.Storage.Admin (#4613) - Storag -> Storage - Maxium -> Maximum * typo: Microsoft.ApiManagement (#4596) - reponse -> response - succesfully -> successfully - Successfull -> Successful - Double word "the" - GeoGraphy -> geography - secconds -> seconds - agregation -> aggregation - succesful -> successful - HttpStatusCode.Unauthorize -> HttpStatusCode.Unauthorized - fullfilled -> fulfilled - specificied -> specified - productid -> productId - appplying -> applying - assosiated -> associated - Storename -> StoreName - Managemet -> Management - outcoming -> outgoing - queruering -> querying - Countery -> Counter - Subsctions -> Subscriptions - groupid -> groupId - subid -> subscriptionId - dignostic -> diagnostic - settigs -> settings - concent -> consent - fescription -> description - Reconect -> Reconnect * Update OAV to 0.9.6 (#4624) * Generate README.md for JavaScript @azure/arm-network package (#4623) * typo: Microsoft.Cdn (#4635) - subscitption -> subscription - consoto -> contoso - adress -> address * typo: azsadmin/resource-manager/gallery/Microsoft.Gallery.Admin (#4614) - Double word "gallery" - metdata -> metadata * typo: Microsoft.Batch (#4631) - coordianation -> coordination - updateable -> updatable - behaviour -> behavior - performExitOptionsJobAction camelcase - noAction camel case - terminateJob camel case - taskwithin -> task within - erro -> error - VNETs -> VNets * Suppress the error because TagDetails is not an Azure resource (#4630) * typo: Microsoft.BotService (#4634) - Diplay -> Display * Add network rule set properties, empty resource group validation (#4506) * Added example for template params (#4602) * typo: Microsoft.Subscriptions (#4616) - specifed -> specified * typo: Microsoft.Automation (#4608) - specifc -> specific - theresource -> the resource - detailes -> Details - souce -> source - occured -> occurred - cerdential -> credential - madatory -> mandatory - infomration -> information - runas -> RunAs - dratft -. draft - varible -> variable * typo: Microsoft.Blueprint (#4633) - fullfillment -> fulfillment - deinition -> definition - policyAssginment -> policyAssignment * Add offlineDataTransferStatus (#4598) * typo: network/resource-manager/Microsoft.Network/expressRouteCircuit (#4530) - opertion -> operation - ExpressRouteServiceProdiver -> ExpressRouteServiceProvider - Spepcified -> Specified - Succeded -> Succeeded * updated Reimage API documentation in compute json for ephemeral os disks (#4644) * Added diffDiskSettings property as part of Swagger changes needed for Ephemeral VM\VMSS * updated comment * updated swagger specs for diffdisksettings property * updated swagger spec comments for diff disk settings [property * added example to create Diff OS disk scaleset * updated 2018-10-01 version specs with diffdisk property * added example file for creating VM with diffdisksettings property * updated swagger changes for reimage operation in single vm * update examples * udpated examples * fixed validation errors * updated comments for reimage operation documentation * typo: monitor/resource-manager/microsoft.insights (#4717) - datatimes ->datetimes - calcualte -> calculate - timezones -> time zones - blongs -> belongs - defintions -> definitions - definitons -> definitions - defitinitons -> definitions - Speficies -> Specifies - webook -> webhook - Acount -> Account - scheduledquery -> scheduled query - Frequnecy -> Frequency - Specifiy -> Specify * typo: machinelearningcompute/resource-manager/Microsoft.MachineLearningCompute (#4707) - Operationalizaton -> Operationalization - configuartion -> configuration - Trim trailing whitespace * typo: Microsoft.HDInsight (#4697) - compatibilty -> compatibility - capabilty -> capability * typo: Microsoft.EventGrid (#4690) - Double word "key" - eventtime -> eventTime - upto -> up to * typo: Microsoft.DataMigration (#4681) - exising -> existing - capabilites -> capabilities - eligiblity -> eligibility - propery -> property - ertificate -> certificate * typo: Microsoft.DataBox (#4672) - consitent use of "DataBox", "DataBoxHeavy", and "DataBoxDisk" - hasnt -> hasn't - transfered -> transferred - Storsimple -> StorSimple * typo: Microsoft.ContainerService (#4659) - FDQN -> FQDN * typo: ContentModerator (#4650) - classication -> classification * Update RHEL and CentOS to latest versions (#4640) * typo: operationalinsights/resource-manager/Microsoft.OperationalInsights (#4723) - managmement -> management - Searchs -> Searches - lanuage -> language - occurences -> occurrences - Trim trailing space * typo: marketplaceordering/resource-manager/Microsoft.MarketplaceOrdering (#4711) - reponse -> response * typo: resource-manager/Microsoft.KeyVault (#4701) - Double word "the" - availabity -> availability - accesibility -> accessibility - Decription -> Description * typo: graphrbac (#4693) - otherwsie -> otherwise - Objectit -> Object - Reqired -> Required * typo: Microsoft.DocumentDB (#4665) - defintions -> definitions - Trim trailing whitespace * typo: coginitiveservices/data-plane/LocalSearch (#4655) - delimiated -> delimited - countr -> country * typo: Microsoft.Update.Admin (#4615) - Inforamtion -> Information * typo: Microsoft.Compute (#4658) - incremental -> Incremental - setings -> settings - maintainance -> maintenance - UppercaseThumbpring -> UppercaseThumbprint - SubcriptionId -> SubscriptionId - Resoure -> Resource - capabilites -> capabilities - stictly -> strictly - VM's -> VMs - Double word "by" - Paramaters -> Parameters - Double word "be" - updateable -> updatable * typo: Microsoft.DeploymentManager (#4683) - Individial -> Individual * Migration APIs (#4425) * Migration APIs * Taken ARM review feedback * [HDInsight] - Initial commit for Swagger-based Job SDK (#4489) * typo: powerbiembedded/resource-manager/Microsoft.PowerBI (#4729) - defintion -> definition * typo: policyinsights/resource-manager/Microsoft.PolicyInsights (#4726) - paramters -> parameters - deplyoments -> deployments * typo: logic/resource-manager/Microsoft.Logic (#4708) - conetnt -> content * typo: Microsoft.HardwareSecurityModules (#4696) - SubcriptionId -> SubscriptionId * typo: Microsoft.DevTestLab (#4685) - Reponse -> Response - notificationchannels -> notification channels - GibiBytes -> Gibibytes * typo: Microsoft.DataCatalog (#4674) - catlog -> catalog * typo: Microsoft.Consumption (#4660) - perdiod -> period - scenarion -> scenario - servicetype -> serviceType - additoinalinfo -> additional info - reservationid -> reservationId - subscripotionId -> subscriptionId - recomendations -> recommendations - assiciated -> associated - Recomended -> Recommended - Departmentt -> Department - Trim trailing whitespace * typo: cognitiveservices/data-plane/EntitySearch (#4651) - countr -> country * chore: Format BlobServicesGet.json (#4641) - Remove trailing comma that failed the JSON.parse in semantic validation - Tabs -> spaces * typo: Microsoft.Billing (#4632) - perdiod -> period - prouct -> product - setion -> section * typo: Microsoft.AzureStack (#4611) - concurency -> concurrency - subcription -> subscription - inclided -> included - regstration -> registration * chore: Add vscode-docs-authoring suggestion (#4568) * Support DataLakeStorage 11-09-18 Version. (#4639) * Copy DataLakeStorage 06-17-18 Version * Support DataLakeStorage 11-09-18 Version * Fix missing input section and add resolve comments * Fix folder structure * Changes to move from preview to stable and remove duplicate tag * Further fixes * Fix the tag name for go * Fix the tag name for python * Fix the tag name for python * fix: NetworkWatcherConnectivityCheck examples (#4645) - Remove trailing comma - VirtualNetwor -> VirtualNetwork * typo: cognitiveservices/data-plane/ImageSearch (#4652) - Inisghts -> Insights * typo: Microsoft.ContainerRegistry (#4662) - manfests -> manifests - Everyting -> Everything - respositories -> repositories - previou -> previous - repoisotry -> repository - apline -> alpine - repoistory -> repository * typo: iothub/Microsoft.Devices (#4698) - Double word "the" - avrodeflate -> avroDeflate - Thehub -> The hub - Double word "state" - Trim trailing whitespace * typo: migrate/resource-manager/Microsoft.Migrate (#4716) - Wheter -> Whether - assesment -> assessment - identiefier -> identifier - estimnate -> estimate * typo: recoveryservices/resource-manager/Microsoft.RecoveryServices (#4730) - polymorhpic -> polymorphic - friendlyname -> friendly name - operationss -> operations - upgradation -> upgrade * typo: dns/Microsoft.Network (#4686) - Double word "this" - temrinating -> terminating - overwritting -> overwriting - Trim trailing whitespace * typo: recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices (#4731) - polymorhpic -> polymorphic - managmement -> management - managemenent -> management - propertes -> properties - Encrpytion -> Encryption - specifc -> specific - operationss -> operations - DB's -> DBs - recoverypoint -> recovery point - specifcally -> specifically - encaspulates -> encapsulates - alongwith -> along with - backupengine -> backup engine - Diskspace -> Disk space - follwing -> following - potentiallty -> potentially - exteded -> extended - Exoprt -> Export - transfered -> transferred * typo: operationsmanagement/resource-manager/Microsoft.OperationsManagement (#4725) - properites -> properties - Associatons -> Associations * fix: Rename applicationinsights/data-plane/Microsoft.Insights (#4736) * fix: Rename applicationinsights/data-plane/Microsoft.Insights Folders in the repo use uppercase for the namespace * fix: Casing on applicationinsights/data-plane/Microsoft.Insights YAML * fix: Microsoft.Relay\stable\2017-04-01\examples (#4646) - "rights" is supposed to be an array - right -> rights - "path" was null in the previous version and a ":," isn't valid json * typo: cognitiveservices/data-plane/QnAMaker (#4653) - knowlegebases -> knowledgebases * typo: Microsoft.ConainterInstance (#4661) - contaienr -> container * typo: Microsoft.Media (#4687) - Double word "event" * typo: data-plane/Microsoft.KeyVault (#4700) - workign -> working - renawal -> renewal - encypt -> encrypt - Setsecret -> SetSecret - ceritifcate -> certificate - addresss -> address - defintions -> definitions - priveleged -> privileged * typo: mariadb/resource-manager/Microsoft.DBforMariaDB (#4710) - allowd -> allowed - Trim trailing spaces * typo: netapp/resource-manager/Microsoft.NetApp (#4719) - possiblly -> possibly - targets's -> target's * Add first GA LabServices API (#4621) * Add first GA LabServices API * Add Example for Labs_List * Update specification/labservices/resource-manager/readme.nodejs.md Co-Authored-By: ianhays <ianha@microsoft.com> * Update specification/labservices/resource-manager/readme.typescript.md Co-Authored-By: ianhays <ianha@microsoft.com> * Update specification/labservices/resource-manager/readme.typescript.md Co-Authored-By: ianhays <ianha@microsoft.com> * typo: Microsoft.DataLakeAnalytics (#4676) - partion -> partition - formatxii -> format - occured -> occurred - underying -> underlying - Double word "delete" - Asunc -> Async * typo: Microsoft.CognitiveServices (#4657) - Serices -> Services - Congitive -> Cognitive - proprties -> properties * typo: notificationhubs/resource-manager/Microsoft.NotificationHubs (#4722) - Aauthorization -> Authorization - Availibility -> Availability - availabile -> available - Pproperties -> Properties - APNS capitalization - MPNS capitalization - Regenrate -> Regenerate - notificationhub -> NotificationHub - reponse -> response * typo: machinelearningservices/resource-manager/Microsoft.MachineLearningServices (#4706) - SSL capitalization - configugation -> configuration - creadentials -> credentials * typo: Microsoft.GuestConfiguration (#4694) - implmented -> implemented - assingment -> assignment - configuation -> configuration - trim trailing whitespace * typo: Microsoft.CostManagement (#4668) - acount -> account - dategory -> category - upto -> up to - atleast -> at least - comaprison -> comparison - exeuction -> execution - occuring -> occurring - overriden -> overridden - managment -. management * API Management service SKU API documentation (#4466) * added API management SKUS API documentation * added API management SKUS API documentation * added consumption sku definition as well in preview api version * added consumption sku definition as well in preview api version * added example * PR comments addressed * more PR comment fixes * correct casing * Changed machinelearning swagger for new AMLCompute type (#4344) * Adding new GA version 2018-12-01 * Changed machinelearning swagger for new AMLCompute for 1RP changes * Added Supported VMSize List API * replacing tabs with spaces * removing batchai reference from examples * renaming example files from batchai to amlcompute * missed adding renamed files in previous commit * Added remaining examples * removed tabs * adding more swagger improvements * removing resource id * added usage api swagger changes * CR feedbacks * CR feedbacks, examples corrected * autorest fixes * Adding patchAMLCompute.json * build fix for patch operation * AML GA Swagger updates: Changed machinelearning swagger for new AMLCompute type for GA version * updated api version to 2018-11-19 * CR feedbacks readonly * adding missing computes * removing deprecated api * version change * changing version * make patch compute long running operation * Add underlyingResourceAction and isAttachedCompute in machineLearningServices.json * Update deleteCompute.json sample * add enum and x-ms-enum for UnderlyingResourceAction * Update Delete/Detach casing just to be safe (although case doesn't matter) * Fixing AmlCompute * renaming files * renaming * adding properties for aks vnet support * patch swagger update * Added useraccount settings and list remote login info API for aml compute * remove unused param * list nodes * swagger build fixes * updated swagger for listnodes response simplification * rename to user account credentials * Changing vmPriority and allocationState to match MLC and other conventions * typo: Microsoft.DataLakeStore (#4677) - lexographical -> lexicographical - tooid -> tooId * typo: cognitiveservices/data-plane/NewsSearch (#4654) - Double word "lets" * typo: resources/resource-manager/Microsoft.Resources (#4755) - paramaters -> parameters - deploymentoutput -> deployment output - targetid -> targetId - informaton -> information - rsources -> resources - muct -> must * typo: resources/resource-manager/Microsoft.Features (#4754) - registerd -> registered * Fix machinelearning generation for Node.js (#4739) * typo: search/resource-manager/Microsoft.Search (#4758) - programatically -> programmatically - Trim trailing space * fix Go SDK codegen for labservices (#4767) Package name can't be upper-case characters. Make package name uniform with other SDKs. * typo: search/data-plane/Microsoft.Azure.Search.Data (#4757) - Autocomlete -> Autocomplete - Trim trailing space * typo: redis/resource-manager/Microsoft.Cache (#4751) - subid -> subscriptionId - properites -> properties - occured -> occurred - Trim trailing space * chore: Add initial EditorConfig (#4742) * chore: Add initial EditorConfig * chore: Add EditorConfig VS Code suggestion * chore: Rename microsoft.workloadmanager -> Microsoft.WorkloadMonitor (#4734) * chore: Rename microsoft.workloadmanager -> Microsoft.WorkloadMonitor Lower case is inconsistent with other API folders * fix: Metadata casing for Microsoft.WorkloadMonitor * typo: mysql/resource-manager/Microsoft.DBforMySQL (#4718) - allowd -> allowed - relica -> replica - Trim trailing spaces * typo: postgresql/resource-manager/Microsoft.DBforPostgreSQL (#4727) - allowd -> allowed - Trim trailing space * typo: managementgroups/resource-manager/Microsoft.Management (#4709) - Resurse -> Recurse - Managment -> Management - Double word "the" * typo: Microsoft.HanaOnAzure (#4695) - interaface -> interface * typo: reservations/resource-manager/Microsoft.Capacity (#4753) - AutofitGroup -> Autofit group - Seperator -> Separator * typo: Microsoft.DataFactory (#4675) - azure-mgmt-dafactory -> azure-mgmt-datafactory - arbitary -> arbitrary - requries -> requires - Fitler -> Filter * typo: recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices (#4749) - vCeneter -> vCenter - classfication -> classification - indentifier -> identifier - Recoery -> Recovery - proprties -> properties - occurence -> occurrence - Overriden -> Overridden - upto -> up to - exensions -> extensions - updation -> update - mappping -> mapping - reveived -> received - priviliges -> privileges - umber -> under - behaviour -> behavior - datastore -> data store - Onprem -> On-prem - inidicating -> indicating - Entites -> Entities - migraton -> migration - accerated -> accelerated - RunAs capitialization * typo: frontdoor/Microsoft.Network (#4692) - FrontDoor casing - double word "the" - reponse -> response - ruleset -> rule set - thresold -> threshold - overrideruleGroup -> override rule group * typo: Microsoft.Devices (#4684) - provisoning -> provisioning - assosiated -> associated - SKU's -> SKUs - etailed -> detailed - whitespace trimming * typo: cognitiveservices/data-plane/LUIS (#4656) - Double word "in" - explict -> explicit - resopnse -> response - idenfied -> identified - idenfitied -> identified - Objet -> Object - analized -> analyzed * Adds base for updating Microsoft.Network from version stable/2018-10-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Revert "Swagger changes for App Gw Server Variables APIs (#4345)" (#4911) This reverts commit 1a5e0f4. * Exposing PATCH for ASGs (#4951) * Get Application Gateway Server Variables APIs (#4916) * Adds base for updating Microsoft.Network from version stable/2018-08-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes * Added example files * Update applicationGateway.json * Update applicationGateway.json * Update applicationGateway.json * fixed case of operation ID to fix docs generation and have common naming (#4972) Approving based on discussion with Code generators that changes in the first Character of an operation ID should not introduce breaking changes * Fixed tag value first letter casing (#4981) * fixed case of operation ID to fix docs generation and have common naming * fixed tage value case * December network release -- ARM feedback (#4897) * updating the directory per feedback * fixed version number * fixing examples * updates based on NRP and ARM review comments * making DDosSetting consistent * minor fix * adding definition of cloud error for error response message * Adding patch support
* Adds base for updating Microsoft.Network from version stable/2018-10-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes for App Gw Server Variables APIs (#4345) * Adds base for updating Microsoft.Network from version stable/2018-08-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes * Added example files * Update manage service identity api version (#4492) * directly copy swagger folder from old api version * update Managed Service Identity api version to 2018-11-30, the differnt from previous api-version is the clientSecretUrl can be null if identity is user assigned * feedback * typo: Fix AppServiceCertificateOrders.json (#4502) - Double word "to" - Successully -> Successfully - certitificate -> certificate * chore: Remove outdated VS files (#4593) The layout doesn't match the repo structure anymore and hasn't been updated in 2 years * Updates to the 2018-07-01 version of the MediaServices API (#4483) All enums, use 'modelAsString' instead of 'modelAsExtensible' streamingservice, add "Standard" to LiveEncoding.encodingType encoding, remove top and skip from query parms and add orderby accountfilters and aasetsandassefilters, remove required attribute for PresentationTimeRange properties Updated readme.md to add "opt-in-extensible-enums: true" to csharp build * Fix the error The 200 response model for an ARM PUT operation must have x-ms-azure-resource extension set to true in its hierarchy. Operation: 'Tags_CreateOrUpdate' Model: 'TagDetails' (#4600) Merging this Pull request but it might cause breaking changes on some of the SDKs * OAV 0.9.5 better error handling (#4606) * Adding ARM section to the template (#4569) This will help service teams be better informed about the ARM API review process and add the required labels. * Add Node.js and JavaScript configuration for sqlvirtualmachine (#4603) * typo: Microsoft.Fabric.Admin (#4612) - requestd -> requested - visiblity -> visibility - sftware -> software * Adding new resource type name Forecast to Microsoft.CostManagment RP (#4558) * Add a new preview api-version for Time Series Insights (#4599) * Fix or suppress spec violations Fix R2016 by making PATCH body properties optional. Suppress the remaining 4 violations that are confirmed as false positives. * Try removing 2nd top-level heading, which _may_ have been causing a linter warning. * Fix extra indention which prevented linter from running. * Added dataStringComparisonBehavior parameter to reference data put/update spec. * Fixed grammar. * adding partitionkeyProperty to environmentInfo * changing property name * changing modelAsString * Initial checkin of spec. Unchanged from GA release other than version. * Remove .orig files * Fix validation error by removing IoTHub ES from List ES example response * Add extra example that was missing from preview spec. * Add long-term environment to resource hierarchy, and update examples. * Switch to model-as-string for enums. Restore EnvironmentResource's inheritance from TrackedResource. * Upsate sku description * Add new TSI preview api-version to readme.md. * Add suppressions for false-positive linter failures. * Test suppression failures * Adding preview package tag to several other places in readme.md * Add preview package to the readme.go.md file * Remove invalid required property from EnvironmentCreateOrUpdateParameters * typo: Microsoft.Compute.Admin (#4610) - cancallation -> cancellation * Revert "Fix the ARM R2062 error for Microsoft.Resources" (#4618) * typo: Microsoft.Storage.Admin (#4613) - Storag -> Storage - Maxium -> Maximum * typo: Microsoft.ApiManagement (#4596) - reponse -> response - succesfully -> successfully - Successfull -> Successful - Double word "the" - GeoGraphy -> geography - secconds -> seconds - agregation -> aggregation - succesful -> successful - HttpStatusCode.Unauthorize -> HttpStatusCode.Unauthorized - fullfilled -> fulfilled - specificied -> specified - productid -> productId - appplying -> applying - assosiated -> associated - Storename -> StoreName - Managemet -> Management - outcoming -> outgoing - queruering -> querying - Countery -> Counter - Subsctions -> Subscriptions - groupid -> groupId - subid -> subscriptionId - dignostic -> diagnostic - settigs -> settings - concent -> consent - fescription -> description - Reconect -> Reconnect * Update OAV to 0.9.6 (#4624) * Generate README.md for JavaScript @azure/arm-network package (#4623) * typo: Microsoft.Cdn (#4635) - subscitption -> subscription - consoto -> contoso - adress -> address * typo: azsadmin/resource-manager/gallery/Microsoft.Gallery.Admin (#4614) - Double word "gallery" - metdata -> metadata * typo: Microsoft.Batch (#4631) - coordianation -> coordination - updateable -> updatable - behaviour -> behavior - performExitOptionsJobAction camelcase - noAction camel case - terminateJob camel case - taskwithin -> task within - erro -> error - VNETs -> VNets * Suppress the error because TagDetails is not an Azure resource (#4630) * typo: Microsoft.BotService (#4634) - Diplay -> Display * Add network rule set properties, empty resource group validation (#4506) * Added example for template params (#4602) * typo: Microsoft.Subscriptions (#4616) - specifed -> specified * typo: Microsoft.Automation (#4608) - specifc -> specific - theresource -> the resource - detailes -> Details - souce -> source - occured -> occurred - cerdential -> credential - madatory -> mandatory - infomration -> information - runas -> RunAs - dratft -. draft - varible -> variable * typo: Microsoft.Blueprint (#4633) - fullfillment -> fulfillment - deinition -> definition - policyAssginment -> policyAssignment * Add offlineDataTransferStatus (#4598) * typo: network/resource-manager/Microsoft.Network/expressRouteCircuit (#4530) - opertion -> operation - ExpressRouteServiceProdiver -> ExpressRouteServiceProvider - Spepcified -> Specified - Succeded -> Succeeded * updated Reimage API documentation in compute json for ephemeral os disks (#4644) * Added diffDiskSettings property as part of Swagger changes needed for Ephemeral VM\VMSS * updated comment * updated swagger specs for diffdisksettings property * updated swagger spec comments for diff disk settings [property * added example to create Diff OS disk scaleset * updated 2018-10-01 version specs with diffdisk property * added example file for creating VM with diffdisksettings property * updated swagger changes for reimage operation in single vm * update examples * udpated examples * fixed validation errors * updated comments for reimage operation documentation * typo: monitor/resource-manager/microsoft.insights (#4717) - datatimes ->datetimes - calcualte -> calculate - timezones -> time zones - blongs -> belongs - defintions -> definitions - definitons -> definitions - defitinitons -> definitions - Speficies -> Specifies - webook -> webhook - Acount -> Account - scheduledquery -> scheduled query - Frequnecy -> Frequency - Specifiy -> Specify * typo: machinelearningcompute/resource-manager/Microsoft.MachineLearningCompute (#4707) - Operationalizaton -> Operationalization - configuartion -> configuration - Trim trailing whitespace * typo: Microsoft.HDInsight (#4697) - compatibilty -> compatibility - capabilty -> capability * typo: Microsoft.EventGrid (#4690) - Double word "key" - eventtime -> eventTime - upto -> up to * typo: Microsoft.DataMigration (#4681) - exising -> existing - capabilites -> capabilities - eligiblity -> eligibility - propery -> property - ertificate -> certificate * typo: Microsoft.DataBox (#4672) - consitent use of "DataBox", "DataBoxHeavy", and "DataBoxDisk" - hasnt -> hasn't - transfered -> transferred - Storsimple -> StorSimple * typo: Microsoft.ContainerService (#4659) - FDQN -> FQDN * typo: ContentModerator (#4650) - classication -> classification * Update RHEL and CentOS to latest versions (#4640) * typo: operationalinsights/resource-manager/Microsoft.OperationalInsights (#4723) - managmement -> management - Searchs -> Searches - lanuage -> language - occurences -> occurrences - Trim trailing space * typo: marketplaceordering/resource-manager/Microsoft.MarketplaceOrdering (#4711) - reponse -> response * typo: resource-manager/Microsoft.KeyVault (#4701) - Double word "the" - availabity -> availability - accesibility -> accessibility - Decription -> Description * typo: graphrbac (#4693) - otherwsie -> otherwise - Objectit -> Object - Reqired -> Required * typo: Microsoft.DocumentDB (#4665) - defintions -> definitions - Trim trailing whitespace * typo: coginitiveservices/data-plane/LocalSearch (#4655) - delimiated -> delimited - countr -> country * typo: Microsoft.Update.Admin (#4615) - Inforamtion -> Information * typo: Microsoft.Compute (#4658) - incremental -> Incremental - setings -> settings - maintainance -> maintenance - UppercaseThumbpring -> UppercaseThumbprint - SubcriptionId -> SubscriptionId - Resoure -> Resource - capabilites -> capabilities - stictly -> strictly - VM's -> VMs - Double word "by" - Paramaters -> Parameters - Double word "be" - updateable -> updatable * typo: Microsoft.DeploymentManager (#4683) - Individial -> Individual * Migration APIs (#4425) * Migration APIs * Taken ARM review feedback * [HDInsight] - Initial commit for Swagger-based Job SDK (#4489) * typo: powerbiembedded/resource-manager/Microsoft.PowerBI (#4729) - defintion -> definition * typo: policyinsights/resource-manager/Microsoft.PolicyInsights (#4726) - paramters -> parameters - deplyoments -> deployments * typo: logic/resource-manager/Microsoft.Logic (#4708) - conetnt -> content * typo: Microsoft.HardwareSecurityModules (#4696) - SubcriptionId -> SubscriptionId * typo: Microsoft.DevTestLab (#4685) - Reponse -> Response - notificationchannels -> notification channels - GibiBytes -> Gibibytes * typo: Microsoft.DataCatalog (#4674) - catlog -> catalog * typo: Microsoft.Consumption (#4660) - perdiod -> period - scenarion -> scenario - servicetype -> serviceType - additoinalinfo -> additional info - reservationid -> reservationId - subscripotionId -> subscriptionId - recomendations -> recommendations - assiciated -> associated - Recomended -> Recommended - Departmentt -> Department - Trim trailing whitespace * typo: cognitiveservices/data-plane/EntitySearch (#4651) - countr -> country * chore: Format BlobServicesGet.json (#4641) - Remove trailing comma that failed the JSON.parse in semantic validation - Tabs -> spaces * typo: Microsoft.Billing (#4632) - perdiod -> period - prouct -> product - setion -> section * typo: Microsoft.AzureStack (#4611) - concurency -> concurrency - subcription -> subscription - inclided -> included - regstration -> registration * chore: Add vscode-docs-authoring suggestion (#4568) * Support DataLakeStorage 11-09-18 Version. (#4639) * Copy DataLakeStorage 06-17-18 Version * Support DataLakeStorage 11-09-18 Version * Fix missing input section and add resolve comments * Fix folder structure * Changes to move from preview to stable and remove duplicate tag * Further fixes * Fix the tag name for go * Fix the tag name for python * Fix the tag name for python * fix: NetworkWatcherConnectivityCheck examples (#4645) - Remove trailing comma - VirtualNetwor -> VirtualNetwork * typo: cognitiveservices/data-plane/ImageSearch (#4652) - Inisghts -> Insights * typo: Microsoft.ContainerRegistry (#4662) - manfests -> manifests - Everyting -> Everything - respositories -> repositories - previou -> previous - repoisotry -> repository - apline -> alpine - repoistory -> repository * typo: iothub/Microsoft.Devices (#4698) - Double word "the" - avrodeflate -> avroDeflate - Thehub -> The hub - Double word "state" - Trim trailing whitespace * typo: migrate/resource-manager/Microsoft.Migrate (#4716) - Wheter -> Whether - assesment -> assessment - identiefier -> identifier - estimnate -> estimate * typo: recoveryservices/resource-manager/Microsoft.RecoveryServices (#4730) - polymorhpic -> polymorphic - friendlyname -> friendly name - operationss -> operations - upgradation -> upgrade * typo: dns/Microsoft.Network (#4686) - Double word "this" - temrinating -> terminating - overwritting -> overwriting - Trim trailing whitespace * typo: recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices (#4731) - polymorhpic -> polymorphic - managmement -> management - managemenent -> management - propertes -> properties - Encrpytion -> Encryption - specifc -> specific - operationss -> operations - DB's -> DBs - recoverypoint -> recovery point - specifcally -> specifically - encaspulates -> encapsulates - alongwith -> along with - backupengine -> backup engine - Diskspace -> Disk space - follwing -> following - potentiallty -> potentially - exteded -> extended - Exoprt -> Export - transfered -> transferred * typo: operationsmanagement/resource-manager/Microsoft.OperationsManagement (#4725) - properites -> properties - Associatons -> Associations * fix: Rename applicationinsights/data-plane/Microsoft.Insights (#4736) * fix: Rename applicationinsights/data-plane/Microsoft.Insights Folders in the repo use uppercase for the namespace * fix: Casing on applicationinsights/data-plane/Microsoft.Insights YAML * fix: Microsoft.Relay\stable\2017-04-01\examples (#4646) - "rights" is supposed to be an array - right -> rights - "path" was null in the previous version and a ":," isn't valid json * typo: cognitiveservices/data-plane/QnAMaker (#4653) - knowlegebases -> knowledgebases * typo: Microsoft.ConainterInstance (#4661) - contaienr -> container * typo: Microsoft.Media (#4687) - Double word "event" * typo: data-plane/Microsoft.KeyVault (#4700) - workign -> working - renawal -> renewal - encypt -> encrypt - Setsecret -> SetSecret - ceritifcate -> certificate - addresss -> address - defintions -> definitions - priveleged -> privileged * typo: mariadb/resource-manager/Microsoft.DBforMariaDB (#4710) - allowd -> allowed - Trim trailing spaces * typo: netapp/resource-manager/Microsoft.NetApp (#4719) - possiblly -> possibly - targets's -> target's * Add first GA LabServices API (#4621) * Add first GA LabServices API * Add Example for Labs_List * Update specification/labservices/resource-manager/readme.nodejs.md Co-Authored-By: ianhays <ianha@microsoft.com> * Update specification/labservices/resource-manager/readme.typescript.md Co-Authored-By: ianhays <ianha@microsoft.com> * Update specification/labservices/resource-manager/readme.typescript.md Co-Authored-By: ianhays <ianha@microsoft.com> * typo: Microsoft.DataLakeAnalytics (#4676) - partion -> partition - formatxii -> format - occured -> occurred - underying -> underlying - Double word "delete" - Asunc -> Async * typo: Microsoft.CognitiveServices (#4657) - Serices -> Services - Congitive -> Cognitive - proprties -> properties * typo: notificationhubs/resource-manager/Microsoft.NotificationHubs (#4722) - Aauthorization -> Authorization - Availibility -> Availability - availabile -> available - Pproperties -> Properties - APNS capitalization - MPNS capitalization - Regenrate -> Regenerate - notificationhub -> NotificationHub - reponse -> response * typo: machinelearningservices/resource-manager/Microsoft.MachineLearningServices (#4706) - SSL capitalization - configugation -> configuration - creadentials -> credentials * typo: Microsoft.GuestConfiguration (#4694) - implmented -> implemented - assingment -> assignment - configuation -> configuration - trim trailing whitespace * typo: Microsoft.CostManagement (#4668) - acount -> account - dategory -> category - upto -> up to - atleast -> at least - comaprison -> comparison - exeuction -> execution - occuring -> occurring - overriden -> overridden - managment -. management * API Management service SKU API documentation (#4466) * added API management SKUS API documentation * added API management SKUS API documentation * added consumption sku definition as well in preview api version * added consumption sku definition as well in preview api version * added example * PR comments addressed * more PR comment fixes * correct casing * Changed machinelearning swagger for new AMLCompute type (#4344) * Adding new GA version 2018-12-01 * Changed machinelearning swagger for new AMLCompute for 1RP changes * Added Supported VMSize List API * replacing tabs with spaces * removing batchai reference from examples * renaming example files from batchai to amlcompute * missed adding renamed files in previous commit * Added remaining examples * removed tabs * adding more swagger improvements * removing resource id * added usage api swagger changes * CR feedbacks * CR feedbacks, examples corrected * autorest fixes * Adding patchAMLCompute.json * build fix for patch operation * AML GA Swagger updates: Changed machinelearning swagger for new AMLCompute type for GA version * updated api version to 2018-11-19 * CR feedbacks readonly * adding missing computes * removing deprecated api * version change * changing version * make patch compute long running operation * Add underlyingResourceAction and isAttachedCompute in machineLearningServices.json * Update deleteCompute.json sample * add enum and x-ms-enum for UnderlyingResourceAction * Update Delete/Detach casing just to be safe (although case doesn't matter) * Fixing AmlCompute * renaming files * renaming * adding properties for aks vnet support * patch swagger update * Added useraccount settings and list remote login info API for aml compute * remove unused param * list nodes * swagger build fixes * updated swagger for listnodes response simplification * rename to user account credentials * Changing vmPriority and allocationState to match MLC and other conventions * typo: Microsoft.DataLakeStore (#4677) - lexographical -> lexicographical - tooid -> tooId * typo: cognitiveservices/data-plane/NewsSearch (#4654) - Double word "lets" * typo: resources/resource-manager/Microsoft.Resources (#4755) - paramaters -> parameters - deploymentoutput -> deployment output - targetid -> targetId - informaton -> information - rsources -> resources - muct -> must * typo: resources/resource-manager/Microsoft.Features (#4754) - registerd -> registered * Fix machinelearning generation for Node.js (#4739) * typo: search/resource-manager/Microsoft.Search (#4758) - programatically -> programmatically - Trim trailing space * fix Go SDK codegen for labservices (#4767) Package name can't be upper-case characters. Make package name uniform with other SDKs. * typo: search/data-plane/Microsoft.Azure.Search.Data (#4757) - Autocomlete -> Autocomplete - Trim trailing space * typo: redis/resource-manager/Microsoft.Cache (#4751) - subid -> subscriptionId - properites -> properties - occured -> occurred - Trim trailing space * chore: Add initial EditorConfig (#4742) * chore: Add initial EditorConfig * chore: Add EditorConfig VS Code suggestion * chore: Rename microsoft.workloadmanager -> Microsoft.WorkloadMonitor (#4734) * chore: Rename microsoft.workloadmanager -> Microsoft.WorkloadMonitor Lower case is inconsistent with other API folders * fix: Metadata casing for Microsoft.WorkloadMonitor * typo: mysql/resource-manager/Microsoft.DBforMySQL (#4718) - allowd -> allowed - relica -> replica - Trim trailing spaces * typo: postgresql/resource-manager/Microsoft.DBforPostgreSQL (#4727) - allowd -> allowed - Trim trailing space * typo: managementgroups/resource-manager/Microsoft.Management (#4709) - Resurse -> Recurse - Managment -> Management - Double word "the" * typo: Microsoft.HanaOnAzure (#4695) - interaface -> interface * typo: reservations/resource-manager/Microsoft.Capacity (#4753) - AutofitGroup -> Autofit group - Seperator -> Separator * typo: Microsoft.DataFactory (#4675) - azure-mgmt-dafactory -> azure-mgmt-datafactory - arbitary -> arbitrary - requries -> requires - Fitler -> Filter * typo: recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices (#4749) - vCeneter -> vCenter - classfication -> classification - indentifier -> identifier - Recoery -> Recovery - proprties -> properties - occurence -> occurrence - Overriden -> Overridden - upto -> up to - exensions -> extensions - updation -> update - mappping -> mapping - reveived -> received - priviliges -> privileges - umber -> under - behaviour -> behavior - datastore -> data store - Onprem -> On-prem - inidicating -> indicating - Entites -> Entities - migraton -> migration - accerated -> accelerated - RunAs capitialization * typo: frontdoor/Microsoft.Network (#4692) - FrontDoor casing - double word "the" - reponse -> response - ruleset -> rule set - thresold -> threshold - overrideruleGroup -> override rule group * typo: Microsoft.Devices (#4684) - provisoning -> provisioning - assosiated -> associated - SKU's -> SKUs - etailed -> detailed - whitespace trimming * typo: cognitiveservices/data-plane/LUIS (#4656) - Double word "in" - explict -> explicit - resopnse -> response - idenfied -> identified - idenfitied -> identified - Objet -> Object - analized -> analyzed * Adds base for updating Microsoft.Network from version stable/2018-10-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Revert "Swagger changes for App Gw Server Variables APIs (#4345)" (#4911) This reverts commit 1a5e0f4. * Exposing PATCH for ASGs (#4951) * Get Application Gateway Server Variables APIs (#4916) * Adds base for updating Microsoft.Network from version stable/2018-08-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes * Added example files * Update applicationGateway.json * Update applicationGateway.json * Update applicationGateway.json * fixed case of operation ID to fix docs generation and have common naming (#4972) Approving based on discussion with Code generators that changes in the first Character of an operation ID should not introduce breaking changes * Fixed tag value first letter casing (#4981) * fixed case of operation ID to fix docs generation and have common naming * fixed tage value case * December network release -- ARM feedback (#4897) * updating the directory per feedback * fixed version number * fixing examples * updates based on NRP and ARM review comments * making DDosSetting consistent * minor fix * adding definition of cloud error for error response message * Adding patch support * fixed example according to request in #4984
* Adds base for updating Microsoft.Network from version stable/2018-10-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes for App Gw Server Variables APIs (Azure#4345) * Adds base for updating Microsoft.Network from version stable/2018-08-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes * Added example files * Update manage service identity api version (Azure#4492) * directly copy swagger folder from old api version * update Managed Service Identity api version to 2018-11-30, the differnt from previous api-version is the clientSecretUrl can be null if identity is user assigned * feedback * typo: Fix AppServiceCertificateOrders.json (Azure#4502) - Double word "to" - Successully -> Successfully - certitificate -> certificate * chore: Remove outdated VS files (Azure#4593) The layout doesn't match the repo structure anymore and hasn't been updated in 2 years * Updates to the 2018-07-01 version of the MediaServices API (Azure#4483) All enums, use 'modelAsString' instead of 'modelAsExtensible' streamingservice, add "Standard" to LiveEncoding.encodingType encoding, remove top and skip from query parms and add orderby accountfilters and aasetsandassefilters, remove required attribute for PresentationTimeRange properties Updated readme.md to add "opt-in-extensible-enums: true" to csharp build * Fix the error The 200 response model for an ARM PUT operation must have x-ms-azure-resource extension set to true in its hierarchy. Operation: 'Tags_CreateOrUpdate' Model: 'TagDetails' (Azure#4600) Merging this Pull request but it might cause breaking changes on some of the SDKs * OAV 0.9.5 better error handling (Azure#4606) * Adding ARM section to the template (Azure#4569) This will help service teams be better informed about the ARM API review process and add the required labels. * Add Node.js and JavaScript configuration for sqlvirtualmachine (Azure#4603) * typo: Microsoft.Fabric.Admin (Azure#4612) - requestd -> requested - visiblity -> visibility - sftware -> software * Adding new resource type name Forecast to Microsoft.CostManagment RP (Azure#4558) * Add a new preview api-version for Time Series Insights (Azure#4599) * Fix or suppress spec violations Fix R2016 by making PATCH body properties optional. Suppress the remaining 4 violations that are confirmed as false positives. * Try removing 2nd top-level heading, which _may_ have been causing a linter warning. * Fix extra indention which prevented linter from running. * Added dataStringComparisonBehavior parameter to reference data put/update spec. * Fixed grammar. * adding partitionkeyProperty to environmentInfo * changing property name * changing modelAsString * Initial checkin of spec. Unchanged from GA release other than version. * Remove .orig files * Fix validation error by removing IoTHub ES from List ES example response * Add extra example that was missing from preview spec. * Add long-term environment to resource hierarchy, and update examples. * Switch to model-as-string for enums. Restore EnvironmentResource's inheritance from TrackedResource. * Upsate sku description * Add new TSI preview api-version to readme.md. * Add suppressions for false-positive linter failures. * Test suppression failures * Adding preview package tag to several other places in readme.md * Add preview package to the readme.go.md file * Remove invalid required property from EnvironmentCreateOrUpdateParameters * typo: Microsoft.Compute.Admin (Azure#4610) - cancallation -> cancellation * Revert "Fix the ARM R2062 error for Microsoft.Resources" (Azure#4618) * typo: Microsoft.Storage.Admin (Azure#4613) - Storag -> Storage - Maxium -> Maximum * typo: Microsoft.ApiManagement (Azure#4596) - reponse -> response - succesfully -> successfully - Successfull -> Successful - Double word "the" - GeoGraphy -> geography - secconds -> seconds - agregation -> aggregation - succesful -> successful - HttpStatusCode.Unauthorize -> HttpStatusCode.Unauthorized - fullfilled -> fulfilled - specificied -> specified - productid -> productId - appplying -> applying - assosiated -> associated - Storename -> StoreName - Managemet -> Management - outcoming -> outgoing - queruering -> querying - Countery -> Counter - Subsctions -> Subscriptions - groupid -> groupId - subid -> subscriptionId - dignostic -> diagnostic - settigs -> settings - concent -> consent - fescription -> description - Reconect -> Reconnect * Update OAV to 0.9.6 (Azure#4624) * Generate README.md for JavaScript @azure/arm-network package (Azure#4623) * typo: Microsoft.Cdn (Azure#4635) - subscitption -> subscription - consoto -> contoso - adress -> address * typo: azsadmin/resource-manager/gallery/Microsoft.Gallery.Admin (Azure#4614) - Double word "gallery" - metdata -> metadata * typo: Microsoft.Batch (Azure#4631) - coordianation -> coordination - updateable -> updatable - behaviour -> behavior - performExitOptionsJobAction camelcase - noAction camel case - terminateJob camel case - taskwithin -> task within - erro -> error - VNETs -> VNets * Suppress the error because TagDetails is not an Azure resource (Azure#4630) * typo: Microsoft.BotService (Azure#4634) - Diplay -> Display * Add network rule set properties, empty resource group validation (Azure#4506) * Added example for template params (Azure#4602) * typo: Microsoft.Subscriptions (Azure#4616) - specifed -> specified * typo: Microsoft.Automation (Azure#4608) - specifc -> specific - theresource -> the resource - detailes -> Details - souce -> source - occured -> occurred - cerdential -> credential - madatory -> mandatory - infomration -> information - runas -> RunAs - dratft -. draft - varible -> variable * typo: Microsoft.Blueprint (Azure#4633) - fullfillment -> fulfillment - deinition -> definition - policyAssginment -> policyAssignment * Add offlineDataTransferStatus (Azure#4598) * typo: network/resource-manager/Microsoft.Network/expressRouteCircuit (Azure#4530) - opertion -> operation - ExpressRouteServiceProdiver -> ExpressRouteServiceProvider - Spepcified -> Specified - Succeded -> Succeeded * updated Reimage API documentation in compute json for ephemeral os disks (Azure#4644) * Added diffDiskSettings property as part of Swagger changes needed for Ephemeral VM\VMSS * updated comment * updated swagger specs for diffdisksettings property * updated swagger spec comments for diff disk settings [property * added example to create Diff OS disk scaleset * updated 2018-10-01 version specs with diffdisk property * added example file for creating VM with diffdisksettings property * updated swagger changes for reimage operation in single vm * update examples * udpated examples * fixed validation errors * updated comments for reimage operation documentation * typo: monitor/resource-manager/microsoft.insights (Azure#4717) - datatimes ->datetimes - calcualte -> calculate - timezones -> time zones - blongs -> belongs - defintions -> definitions - definitons -> definitions - defitinitons -> definitions - Speficies -> Specifies - webook -> webhook - Acount -> Account - scheduledquery -> scheduled query - Frequnecy -> Frequency - Specifiy -> Specify * typo: machinelearningcompute/resource-manager/Microsoft.MachineLearningCompute (Azure#4707) - Operationalizaton -> Operationalization - configuartion -> configuration - Trim trailing whitespace * typo: Microsoft.HDInsight (Azure#4697) - compatibilty -> compatibility - capabilty -> capability * typo: Microsoft.EventGrid (Azure#4690) - Double word "key" - eventtime -> eventTime - upto -> up to * typo: Microsoft.DataMigration (Azure#4681) - exising -> existing - capabilites -> capabilities - eligiblity -> eligibility - propery -> property - ertificate -> certificate * typo: Microsoft.DataBox (Azure#4672) - consitent use of "DataBox", "DataBoxHeavy", and "DataBoxDisk" - hasnt -> hasn't - transfered -> transferred - Storsimple -> StorSimple * typo: Microsoft.ContainerService (Azure#4659) - FDQN -> FQDN * typo: ContentModerator (Azure#4650) - classication -> classification * Update RHEL and CentOS to latest versions (Azure#4640) * typo: operationalinsights/resource-manager/Microsoft.OperationalInsights (Azure#4723) - managmement -> management - Searchs -> Searches - lanuage -> language - occurences -> occurrences - Trim trailing space * typo: marketplaceordering/resource-manager/Microsoft.MarketplaceOrdering (Azure#4711) - reponse -> response * typo: resource-manager/Microsoft.KeyVault (Azure#4701) - Double word "the" - availabity -> availability - accesibility -> accessibility - Decription -> Description * typo: graphrbac (Azure#4693) - otherwsie -> otherwise - Objectit -> Object - Reqired -> Required * typo: Microsoft.DocumentDB (Azure#4665) - defintions -> definitions - Trim trailing whitespace * typo: coginitiveservices/data-plane/LocalSearch (Azure#4655) - delimiated -> delimited - countr -> country * typo: Microsoft.Update.Admin (Azure#4615) - Inforamtion -> Information * typo: Microsoft.Compute (Azure#4658) - incremental -> Incremental - setings -> settings - maintainance -> maintenance - UppercaseThumbpring -> UppercaseThumbprint - SubcriptionId -> SubscriptionId - Resoure -> Resource - capabilites -> capabilities - stictly -> strictly - VM's -> VMs - Double word "by" - Paramaters -> Parameters - Double word "be" - updateable -> updatable * typo: Microsoft.DeploymentManager (Azure#4683) - Individial -> Individual * Migration APIs (Azure#4425) * Migration APIs * Taken ARM review feedback * [HDInsight] - Initial commit for Swagger-based Job SDK (Azure#4489) * typo: powerbiembedded/resource-manager/Microsoft.PowerBI (Azure#4729) - defintion -> definition * typo: policyinsights/resource-manager/Microsoft.PolicyInsights (Azure#4726) - paramters -> parameters - deplyoments -> deployments * typo: logic/resource-manager/Microsoft.Logic (Azure#4708) - conetnt -> content * typo: Microsoft.HardwareSecurityModules (Azure#4696) - SubcriptionId -> SubscriptionId * typo: Microsoft.DevTestLab (Azure#4685) - Reponse -> Response - notificationchannels -> notification channels - GibiBytes -> Gibibytes * typo: Microsoft.DataCatalog (Azure#4674) - catlog -> catalog * typo: Microsoft.Consumption (Azure#4660) - perdiod -> period - scenarion -> scenario - servicetype -> serviceType - additoinalinfo -> additional info - reservationid -> reservationId - subscripotionId -> subscriptionId - recomendations -> recommendations - assiciated -> associated - Recomended -> Recommended - Departmentt -> Department - Trim trailing whitespace * typo: cognitiveservices/data-plane/EntitySearch (Azure#4651) - countr -> country * chore: Format BlobServicesGet.json (Azure#4641) - Remove trailing comma that failed the JSON.parse in semantic validation - Tabs -> spaces * typo: Microsoft.Billing (Azure#4632) - perdiod -> period - prouct -> product - setion -> section * typo: Microsoft.AzureStack (Azure#4611) - concurency -> concurrency - subcription -> subscription - inclided -> included - regstration -> registration * chore: Add vscode-docs-authoring suggestion (Azure#4568) * Support DataLakeStorage 11-09-18 Version. (Azure#4639) * Copy DataLakeStorage 06-17-18 Version * Support DataLakeStorage 11-09-18 Version * Fix missing input section and add resolve comments * Fix folder structure * Changes to move from preview to stable and remove duplicate tag * Further fixes * Fix the tag name for go * Fix the tag name for python * Fix the tag name for python * fix: NetworkWatcherConnectivityCheck examples (Azure#4645) - Remove trailing comma - VirtualNetwor -> VirtualNetwork * typo: cognitiveservices/data-plane/ImageSearch (Azure#4652) - Inisghts -> Insights * typo: Microsoft.ContainerRegistry (Azure#4662) - manfests -> manifests - Everyting -> Everything - respositories -> repositories - previou -> previous - repoisotry -> repository - apline -> alpine - repoistory -> repository * typo: iothub/Microsoft.Devices (Azure#4698) - Double word "the" - avrodeflate -> avroDeflate - Thehub -> The hub - Double word "state" - Trim trailing whitespace * typo: migrate/resource-manager/Microsoft.Migrate (Azure#4716) - Wheter -> Whether - assesment -> assessment - identiefier -> identifier - estimnate -> estimate * typo: recoveryservices/resource-manager/Microsoft.RecoveryServices (Azure#4730) - polymorhpic -> polymorphic - friendlyname -> friendly name - operationss -> operations - upgradation -> upgrade * typo: dns/Microsoft.Network (Azure#4686) - Double word "this" - temrinating -> terminating - overwritting -> overwriting - Trim trailing whitespace * typo: recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices (Azure#4731) - polymorhpic -> polymorphic - managmement -> management - managemenent -> management - propertes -> properties - Encrpytion -> Encryption - specifc -> specific - operationss -> operations - DB's -> DBs - recoverypoint -> recovery point - specifcally -> specifically - encaspulates -> encapsulates - alongwith -> along with - backupengine -> backup engine - Diskspace -> Disk space - follwing -> following - potentiallty -> potentially - exteded -> extended - Exoprt -> Export - transfered -> transferred * typo: operationsmanagement/resource-manager/Microsoft.OperationsManagement (Azure#4725) - properites -> properties - Associatons -> Associations * fix: Rename applicationinsights/data-plane/Microsoft.Insights (Azure#4736) * fix: Rename applicationinsights/data-plane/Microsoft.Insights Folders in the repo use uppercase for the namespace * fix: Casing on applicationinsights/data-plane/Microsoft.Insights YAML * fix: Microsoft.Relay\stable\2017-04-01\examples (Azure#4646) - "rights" is supposed to be an array - right -> rights - "path" was null in the previous version and a ":," isn't valid json * typo: cognitiveservices/data-plane/QnAMaker (Azure#4653) - knowlegebases -> knowledgebases * typo: Microsoft.ConainterInstance (Azure#4661) - contaienr -> container * typo: Microsoft.Media (Azure#4687) - Double word "event" * typo: data-plane/Microsoft.KeyVault (Azure#4700) - workign -> working - renawal -> renewal - encypt -> encrypt - Setsecret -> SetSecret - ceritifcate -> certificate - addresss -> address - defintions -> definitions - priveleged -> privileged * typo: mariadb/resource-manager/Microsoft.DBforMariaDB (Azure#4710) - allowd -> allowed - Trim trailing spaces * typo: netapp/resource-manager/Microsoft.NetApp (Azure#4719) - possiblly -> possibly - targets's -> target's * Add first GA LabServices API (Azure#4621) * Add first GA LabServices API * Add Example for Labs_List * Update specification/labservices/resource-manager/readme.nodejs.md Co-Authored-By: ianhays <ianha@microsoft.com> * Update specification/labservices/resource-manager/readme.typescript.md Co-Authored-By: ianhays <ianha@microsoft.com> * Update specification/labservices/resource-manager/readme.typescript.md Co-Authored-By: ianhays <ianha@microsoft.com> * typo: Microsoft.DataLakeAnalytics (Azure#4676) - partion -> partition - formatxii -> format - occured -> occurred - underying -> underlying - Double word "delete" - Asunc -> Async * typo: Microsoft.CognitiveServices (Azure#4657) - Serices -> Services - Congitive -> Cognitive - proprties -> properties * typo: notificationhubs/resource-manager/Microsoft.NotificationHubs (Azure#4722) - Aauthorization -> Authorization - Availibility -> Availability - availabile -> available - Pproperties -> Properties - APNS capitalization - MPNS capitalization - Regenrate -> Regenerate - notificationhub -> NotificationHub - reponse -> response * typo: machinelearningservices/resource-manager/Microsoft.MachineLearningServices (Azure#4706) - SSL capitalization - configugation -> configuration - creadentials -> credentials * typo: Microsoft.GuestConfiguration (Azure#4694) - implmented -> implemented - assingment -> assignment - configuation -> configuration - trim trailing whitespace * typo: Microsoft.CostManagement (Azure#4668) - acount -> account - dategory -> category - upto -> up to - atleast -> at least - comaprison -> comparison - exeuction -> execution - occuring -> occurring - overriden -> overridden - managment -. management * API Management service SKU API documentation (Azure#4466) * added API management SKUS API documentation * added API management SKUS API documentation * added consumption sku definition as well in preview api version * added consumption sku definition as well in preview api version * added example * PR comments addressed * more PR comment fixes * correct casing * Changed machinelearning swagger for new AMLCompute type (Azure#4344) * Adding new GA version 2018-12-01 * Changed machinelearning swagger for new AMLCompute for 1RP changes * Added Supported VMSize List API * replacing tabs with spaces * removing batchai reference from examples * renaming example files from batchai to amlcompute * missed adding renamed files in previous commit * Added remaining examples * removed tabs * adding more swagger improvements * removing resource id * added usage api swagger changes * CR feedbacks * CR feedbacks, examples corrected * autorest fixes * Adding patchAMLCompute.json * build fix for patch operation * AML GA Swagger updates: Changed machinelearning swagger for new AMLCompute type for GA version * updated api version to 2018-11-19 * CR feedbacks readonly * adding missing computes * removing deprecated api * version change * changing version * make patch compute long running operation * Add underlyingResourceAction and isAttachedCompute in machineLearningServices.json * Update deleteCompute.json sample * add enum and x-ms-enum for UnderlyingResourceAction * Update Delete/Detach casing just to be safe (although case doesn't matter) * Fixing AmlCompute * renaming files * renaming * adding properties for aks vnet support * patch swagger update * Added useraccount settings and list remote login info API for aml compute * remove unused param * list nodes * swagger build fixes * updated swagger for listnodes response simplification * rename to user account credentials * Changing vmPriority and allocationState to match MLC and other conventions * typo: Microsoft.DataLakeStore (Azure#4677) - lexographical -> lexicographical - tooid -> tooId * typo: cognitiveservices/data-plane/NewsSearch (Azure#4654) - Double word "lets" * typo: resources/resource-manager/Microsoft.Resources (Azure#4755) - paramaters -> parameters - deploymentoutput -> deployment output - targetid -> targetId - informaton -> information - rsources -> resources - muct -> must * typo: resources/resource-manager/Microsoft.Features (Azure#4754) - registerd -> registered * Fix machinelearning generation for Node.js (Azure#4739) * typo: search/resource-manager/Microsoft.Search (Azure#4758) - programatically -> programmatically - Trim trailing space * fix Go SDK codegen for labservices (Azure#4767) Package name can't be upper-case characters. Make package name uniform with other SDKs. * typo: search/data-plane/Microsoft.Azure.Search.Data (Azure#4757) - Autocomlete -> Autocomplete - Trim trailing space * typo: redis/resource-manager/Microsoft.Cache (Azure#4751) - subid -> subscriptionId - properites -> properties - occured -> occurred - Trim trailing space * chore: Add initial EditorConfig (Azure#4742) * chore: Add initial EditorConfig * chore: Add EditorConfig VS Code suggestion * chore: Rename microsoft.workloadmanager -> Microsoft.WorkloadMonitor (Azure#4734) * chore: Rename microsoft.workloadmanager -> Microsoft.WorkloadMonitor Lower case is inconsistent with other API folders * fix: Metadata casing for Microsoft.WorkloadMonitor * typo: mysql/resource-manager/Microsoft.DBforMySQL (Azure#4718) - allowd -> allowed - relica -> replica - Trim trailing spaces * typo: postgresql/resource-manager/Microsoft.DBforPostgreSQL (Azure#4727) - allowd -> allowed - Trim trailing space * typo: managementgroups/resource-manager/Microsoft.Management (Azure#4709) - Resurse -> Recurse - Managment -> Management - Double word "the" * typo: Microsoft.HanaOnAzure (Azure#4695) - interaface -> interface * typo: reservations/resource-manager/Microsoft.Capacity (Azure#4753) - AutofitGroup -> Autofit group - Seperator -> Separator * typo: Microsoft.DataFactory (Azure#4675) - azure-mgmt-dafactory -> azure-mgmt-datafactory - arbitary -> arbitrary - requries -> requires - Fitler -> Filter * typo: recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices (Azure#4749) - vCeneter -> vCenter - classfication -> classification - indentifier -> identifier - Recoery -> Recovery - proprties -> properties - occurence -> occurrence - Overriden -> Overridden - upto -> up to - exensions -> extensions - updation -> update - mappping -> mapping - reveived -> received - priviliges -> privileges - umber -> under - behaviour -> behavior - datastore -> data store - Onprem -> On-prem - inidicating -> indicating - Entites -> Entities - migraton -> migration - accerated -> accelerated - RunAs capitialization * typo: frontdoor/Microsoft.Network (Azure#4692) - FrontDoor casing - double word "the" - reponse -> response - ruleset -> rule set - thresold -> threshold - overrideruleGroup -> override rule group * typo: Microsoft.Devices (Azure#4684) - provisoning -> provisioning - assosiated -> associated - SKU's -> SKUs - etailed -> detailed - whitespace trimming * typo: cognitiveservices/data-plane/LUIS (Azure#4656) - Double word "in" - explict -> explicit - resopnse -> response - idenfied -> identified - idenfitied -> identified - Objet -> Object - analized -> analyzed * Adds base for updating Microsoft.Network from version stable/2018-10-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Revert "Swagger changes for App Gw Server Variables APIs (Azure#4345)" (Azure#4911) This reverts commit 1a5e0f4. * Exposing PATCH for ASGs (Azure#4951) * Get Application Gateway Server Variables APIs (Azure#4916) * Adds base for updating Microsoft.Network from version stable/2018-08-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes * Added example files * Update applicationGateway.json * Update applicationGateway.json * Update applicationGateway.json * fixed case of operation ID to fix docs generation and have common naming (Azure#4972) Approving based on discussion with Code generators that changes in the first Character of an operation ID should not introduce breaking changes * Fixed tag value first letter casing (Azure#4981) * fixed case of operation ID to fix docs generation and have common naming * fixed tage value case * December network release -- ARM feedback (Azure#4897) * updating the directory per feedback * fixed version number * fixing examples * updates based on NRP and ARM review comments * making DDosSetting consistent * minor fix * adding definition of cloud error for error response message * Adding patch support
* Adds base for updating Microsoft.Network from version stable/2018-10-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes for App Gw Server Variables APIs (Azure#4345) * Adds base for updating Microsoft.Network from version stable/2018-08-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes * Added example files * Update manage service identity api version (Azure#4492) * directly copy swagger folder from old api version * update Managed Service Identity api version to 2018-11-30, the differnt from previous api-version is the clientSecretUrl can be null if identity is user assigned * feedback * typo: Fix AppServiceCertificateOrders.json (Azure#4502) - Double word "to" - Successully -> Successfully - certitificate -> certificate * chore: Remove outdated VS files (Azure#4593) The layout doesn't match the repo structure anymore and hasn't been updated in 2 years * Updates to the 2018-07-01 version of the MediaServices API (Azure#4483) All enums, use 'modelAsString' instead of 'modelAsExtensible' streamingservice, add "Standard" to LiveEncoding.encodingType encoding, remove top and skip from query parms and add orderby accountfilters and aasetsandassefilters, remove required attribute for PresentationTimeRange properties Updated readme.md to add "opt-in-extensible-enums: true" to csharp build * Fix the error The 200 response model for an ARM PUT operation must have x-ms-azure-resource extension set to true in its hierarchy. Operation: 'Tags_CreateOrUpdate' Model: 'TagDetails' (Azure#4600) Merging this Pull request but it might cause breaking changes on some of the SDKs * OAV 0.9.5 better error handling (Azure#4606) * Adding ARM section to the template (Azure#4569) This will help service teams be better informed about the ARM API review process and add the required labels. * Add Node.js and JavaScript configuration for sqlvirtualmachine (Azure#4603) * typo: Microsoft.Fabric.Admin (Azure#4612) - requestd -> requested - visiblity -> visibility - sftware -> software * Adding new resource type name Forecast to Microsoft.CostManagment RP (Azure#4558) * Add a new preview api-version for Time Series Insights (Azure#4599) * Fix or suppress spec violations Fix R2016 by making PATCH body properties optional. Suppress the remaining 4 violations that are confirmed as false positives. * Try removing 2nd top-level heading, which _may_ have been causing a linter warning. * Fix extra indention which prevented linter from running. * Added dataStringComparisonBehavior parameter to reference data put/update spec. * Fixed grammar. * adding partitionkeyProperty to environmentInfo * changing property name * changing modelAsString * Initial checkin of spec. Unchanged from GA release other than version. * Remove .orig files * Fix validation error by removing IoTHub ES from List ES example response * Add extra example that was missing from preview spec. * Add long-term environment to resource hierarchy, and update examples. * Switch to model-as-string for enums. Restore EnvironmentResource's inheritance from TrackedResource. * Upsate sku description * Add new TSI preview api-version to readme.md. * Add suppressions for false-positive linter failures. * Test suppression failures * Adding preview package tag to several other places in readme.md * Add preview package to the readme.go.md file * Remove invalid required property from EnvironmentCreateOrUpdateParameters * typo: Microsoft.Compute.Admin (Azure#4610) - cancallation -> cancellation * Revert "Fix the ARM R2062 error for Microsoft.Resources" (Azure#4618) * typo: Microsoft.Storage.Admin (Azure#4613) - Storag -> Storage - Maxium -> Maximum * typo: Microsoft.ApiManagement (Azure#4596) - reponse -> response - succesfully -> successfully - Successfull -> Successful - Double word "the" - GeoGraphy -> geography - secconds -> seconds - agregation -> aggregation - succesful -> successful - HttpStatusCode.Unauthorize -> HttpStatusCode.Unauthorized - fullfilled -> fulfilled - specificied -> specified - productid -> productId - appplying -> applying - assosiated -> associated - Storename -> StoreName - Managemet -> Management - outcoming -> outgoing - queruering -> querying - Countery -> Counter - Subsctions -> Subscriptions - groupid -> groupId - subid -> subscriptionId - dignostic -> diagnostic - settigs -> settings - concent -> consent - fescription -> description - Reconect -> Reconnect * Update OAV to 0.9.6 (Azure#4624) * Generate README.md for JavaScript @azure/arm-network package (Azure#4623) * typo: Microsoft.Cdn (Azure#4635) - subscitption -> subscription - consoto -> contoso - adress -> address * typo: azsadmin/resource-manager/gallery/Microsoft.Gallery.Admin (Azure#4614) - Double word "gallery" - metdata -> metadata * typo: Microsoft.Batch (Azure#4631) - coordianation -> coordination - updateable -> updatable - behaviour -> behavior - performExitOptionsJobAction camelcase - noAction camel case - terminateJob camel case - taskwithin -> task within - erro -> error - VNETs -> VNets * Suppress the error because TagDetails is not an Azure resource (Azure#4630) * typo: Microsoft.BotService (Azure#4634) - Diplay -> Display * Add network rule set properties, empty resource group validation (Azure#4506) * Added example for template params (Azure#4602) * typo: Microsoft.Subscriptions (Azure#4616) - specifed -> specified * typo: Microsoft.Automation (Azure#4608) - specifc -> specific - theresource -> the resource - detailes -> Details - souce -> source - occured -> occurred - cerdential -> credential - madatory -> mandatory - infomration -> information - runas -> RunAs - dratft -. draft - varible -> variable * typo: Microsoft.Blueprint (Azure#4633) - fullfillment -> fulfillment - deinition -> definition - policyAssginment -> policyAssignment * Add offlineDataTransferStatus (Azure#4598) * typo: network/resource-manager/Microsoft.Network/expressRouteCircuit (Azure#4530) - opertion -> operation - ExpressRouteServiceProdiver -> ExpressRouteServiceProvider - Spepcified -> Specified - Succeded -> Succeeded * updated Reimage API documentation in compute json for ephemeral os disks (Azure#4644) * Added diffDiskSettings property as part of Swagger changes needed for Ephemeral VM\VMSS * updated comment * updated swagger specs for diffdisksettings property * updated swagger spec comments for diff disk settings [property * added example to create Diff OS disk scaleset * updated 2018-10-01 version specs with diffdisk property * added example file for creating VM with diffdisksettings property * updated swagger changes for reimage operation in single vm * update examples * udpated examples * fixed validation errors * updated comments for reimage operation documentation * typo: monitor/resource-manager/microsoft.insights (Azure#4717) - datatimes ->datetimes - calcualte -> calculate - timezones -> time zones - blongs -> belongs - defintions -> definitions - definitons -> definitions - defitinitons -> definitions - Speficies -> Specifies - webook -> webhook - Acount -> Account - scheduledquery -> scheduled query - Frequnecy -> Frequency - Specifiy -> Specify * typo: machinelearningcompute/resource-manager/Microsoft.MachineLearningCompute (Azure#4707) - Operationalizaton -> Operationalization - configuartion -> configuration - Trim trailing whitespace * typo: Microsoft.HDInsight (Azure#4697) - compatibilty -> compatibility - capabilty -> capability * typo: Microsoft.EventGrid (Azure#4690) - Double word "key" - eventtime -> eventTime - upto -> up to * typo: Microsoft.DataMigration (Azure#4681) - exising -> existing - capabilites -> capabilities - eligiblity -> eligibility - propery -> property - ertificate -> certificate * typo: Microsoft.DataBox (Azure#4672) - consitent use of "DataBox", "DataBoxHeavy", and "DataBoxDisk" - hasnt -> hasn't - transfered -> transferred - Storsimple -> StorSimple * typo: Microsoft.ContainerService (Azure#4659) - FDQN -> FQDN * typo: ContentModerator (Azure#4650) - classication -> classification * Update RHEL and CentOS to latest versions (Azure#4640) * typo: operationalinsights/resource-manager/Microsoft.OperationalInsights (Azure#4723) - managmement -> management - Searchs -> Searches - lanuage -> language - occurences -> occurrences - Trim trailing space * typo: marketplaceordering/resource-manager/Microsoft.MarketplaceOrdering (Azure#4711) - reponse -> response * typo: resource-manager/Microsoft.KeyVault (Azure#4701) - Double word "the" - availabity -> availability - accesibility -> accessibility - Decription -> Description * typo: graphrbac (Azure#4693) - otherwsie -> otherwise - Objectit -> Object - Reqired -> Required * typo: Microsoft.DocumentDB (Azure#4665) - defintions -> definitions - Trim trailing whitespace * typo: coginitiveservices/data-plane/LocalSearch (Azure#4655) - delimiated -> delimited - countr -> country * typo: Microsoft.Update.Admin (Azure#4615) - Inforamtion -> Information * typo: Microsoft.Compute (Azure#4658) - incremental -> Incremental - setings -> settings - maintainance -> maintenance - UppercaseThumbpring -> UppercaseThumbprint - SubcriptionId -> SubscriptionId - Resoure -> Resource - capabilites -> capabilities - stictly -> strictly - VM's -> VMs - Double word "by" - Paramaters -> Parameters - Double word "be" - updateable -> updatable * typo: Microsoft.DeploymentManager (Azure#4683) - Individial -> Individual * Migration APIs (Azure#4425) * Migration APIs * Taken ARM review feedback * [HDInsight] - Initial commit for Swagger-based Job SDK (Azure#4489) * typo: powerbiembedded/resource-manager/Microsoft.PowerBI (Azure#4729) - defintion -> definition * typo: policyinsights/resource-manager/Microsoft.PolicyInsights (Azure#4726) - paramters -> parameters - deplyoments -> deployments * typo: logic/resource-manager/Microsoft.Logic (Azure#4708) - conetnt -> content * typo: Microsoft.HardwareSecurityModules (Azure#4696) - SubcriptionId -> SubscriptionId * typo: Microsoft.DevTestLab (Azure#4685) - Reponse -> Response - notificationchannels -> notification channels - GibiBytes -> Gibibytes * typo: Microsoft.DataCatalog (Azure#4674) - catlog -> catalog * typo: Microsoft.Consumption (Azure#4660) - perdiod -> period - scenarion -> scenario - servicetype -> serviceType - additoinalinfo -> additional info - reservationid -> reservationId - subscripotionId -> subscriptionId - recomendations -> recommendations - assiciated -> associated - Recomended -> Recommended - Departmentt -> Department - Trim trailing whitespace * typo: cognitiveservices/data-plane/EntitySearch (Azure#4651) - countr -> country * chore: Format BlobServicesGet.json (Azure#4641) - Remove trailing comma that failed the JSON.parse in semantic validation - Tabs -> spaces * typo: Microsoft.Billing (Azure#4632) - perdiod -> period - prouct -> product - setion -> section * typo: Microsoft.AzureStack (Azure#4611) - concurency -> concurrency - subcription -> subscription - inclided -> included - regstration -> registration * chore: Add vscode-docs-authoring suggestion (Azure#4568) * Support DataLakeStorage 11-09-18 Version. (Azure#4639) * Copy DataLakeStorage 06-17-18 Version * Support DataLakeStorage 11-09-18 Version * Fix missing input section and add resolve comments * Fix folder structure * Changes to move from preview to stable and remove duplicate tag * Further fixes * Fix the tag name for go * Fix the tag name for python * Fix the tag name for python * fix: NetworkWatcherConnectivityCheck examples (Azure#4645) - Remove trailing comma - VirtualNetwor -> VirtualNetwork * typo: cognitiveservices/data-plane/ImageSearch (Azure#4652) - Inisghts -> Insights * typo: Microsoft.ContainerRegistry (Azure#4662) - manfests -> manifests - Everyting -> Everything - respositories -> repositories - previou -> previous - repoisotry -> repository - apline -> alpine - repoistory -> repository * typo: iothub/Microsoft.Devices (Azure#4698) - Double word "the" - avrodeflate -> avroDeflate - Thehub -> The hub - Double word "state" - Trim trailing whitespace * typo: migrate/resource-manager/Microsoft.Migrate (Azure#4716) - Wheter -> Whether - assesment -> assessment - identiefier -> identifier - estimnate -> estimate * typo: recoveryservices/resource-manager/Microsoft.RecoveryServices (Azure#4730) - polymorhpic -> polymorphic - friendlyname -> friendly name - operationss -> operations - upgradation -> upgrade * typo: dns/Microsoft.Network (Azure#4686) - Double word "this" - temrinating -> terminating - overwritting -> overwriting - Trim trailing whitespace * typo: recoveryservicesbackup/resource-manager/Microsoft.RecoveryServices (Azure#4731) - polymorhpic -> polymorphic - managmement -> management - managemenent -> management - propertes -> properties - Encrpytion -> Encryption - specifc -> specific - operationss -> operations - DB's -> DBs - recoverypoint -> recovery point - specifcally -> specifically - encaspulates -> encapsulates - alongwith -> along with - backupengine -> backup engine - Diskspace -> Disk space - follwing -> following - potentiallty -> potentially - exteded -> extended - Exoprt -> Export - transfered -> transferred * typo: operationsmanagement/resource-manager/Microsoft.OperationsManagement (Azure#4725) - properites -> properties - Associatons -> Associations * fix: Rename applicationinsights/data-plane/Microsoft.Insights (Azure#4736) * fix: Rename applicationinsights/data-plane/Microsoft.Insights Folders in the repo use uppercase for the namespace * fix: Casing on applicationinsights/data-plane/Microsoft.Insights YAML * fix: Microsoft.Relay\stable\2017-04-01\examples (Azure#4646) - "rights" is supposed to be an array - right -> rights - "path" was null in the previous version and a ":," isn't valid json * typo: cognitiveservices/data-plane/QnAMaker (Azure#4653) - knowlegebases -> knowledgebases * typo: Microsoft.ConainterInstance (Azure#4661) - contaienr -> container * typo: Microsoft.Media (Azure#4687) - Double word "event" * typo: data-plane/Microsoft.KeyVault (Azure#4700) - workign -> working - renawal -> renewal - encypt -> encrypt - Setsecret -> SetSecret - ceritifcate -> certificate - addresss -> address - defintions -> definitions - priveleged -> privileged * typo: mariadb/resource-manager/Microsoft.DBforMariaDB (Azure#4710) - allowd -> allowed - Trim trailing spaces * typo: netapp/resource-manager/Microsoft.NetApp (Azure#4719) - possiblly -> possibly - targets's -> target's * Add first GA LabServices API (Azure#4621) * Add first GA LabServices API * Add Example for Labs_List * Update specification/labservices/resource-manager/readme.nodejs.md Co-Authored-By: ianhays <ianha@microsoft.com> * Update specification/labservices/resource-manager/readme.typescript.md Co-Authored-By: ianhays <ianha@microsoft.com> * Update specification/labservices/resource-manager/readme.typescript.md Co-Authored-By: ianhays <ianha@microsoft.com> * typo: Microsoft.DataLakeAnalytics (Azure#4676) - partion -> partition - formatxii -> format - occured -> occurred - underying -> underlying - Double word "delete" - Asunc -> Async * typo: Microsoft.CognitiveServices (Azure#4657) - Serices -> Services - Congitive -> Cognitive - proprties -> properties * typo: notificationhubs/resource-manager/Microsoft.NotificationHubs (Azure#4722) - Aauthorization -> Authorization - Availibility -> Availability - availabile -> available - Pproperties -> Properties - APNS capitalization - MPNS capitalization - Regenrate -> Regenerate - notificationhub -> NotificationHub - reponse -> response * typo: machinelearningservices/resource-manager/Microsoft.MachineLearningServices (Azure#4706) - SSL capitalization - configugation -> configuration - creadentials -> credentials * typo: Microsoft.GuestConfiguration (Azure#4694) - implmented -> implemented - assingment -> assignment - configuation -> configuration - trim trailing whitespace * typo: Microsoft.CostManagement (Azure#4668) - acount -> account - dategory -> category - upto -> up to - atleast -> at least - comaprison -> comparison - exeuction -> execution - occuring -> occurring - overriden -> overridden - managment -. management * API Management service SKU API documentation (Azure#4466) * added API management SKUS API documentation * added API management SKUS API documentation * added consumption sku definition as well in preview api version * added consumption sku definition as well in preview api version * added example * PR comments addressed * more PR comment fixes * correct casing * Changed machinelearning swagger for new AMLCompute type (Azure#4344) * Adding new GA version 2018-12-01 * Changed machinelearning swagger for new AMLCompute for 1RP changes * Added Supported VMSize List API * replacing tabs with spaces * removing batchai reference from examples * renaming example files from batchai to amlcompute * missed adding renamed files in previous commit * Added remaining examples * removed tabs * adding more swagger improvements * removing resource id * added usage api swagger changes * CR feedbacks * CR feedbacks, examples corrected * autorest fixes * Adding patchAMLCompute.json * build fix for patch operation * AML GA Swagger updates: Changed machinelearning swagger for new AMLCompute type for GA version * updated api version to 2018-11-19 * CR feedbacks readonly * adding missing computes * removing deprecated api * version change * changing version * make patch compute long running operation * Add underlyingResourceAction and isAttachedCompute in machineLearningServices.json * Update deleteCompute.json sample * add enum and x-ms-enum for UnderlyingResourceAction * Update Delete/Detach casing just to be safe (although case doesn't matter) * Fixing AmlCompute * renaming files * renaming * adding properties for aks vnet support * patch swagger update * Added useraccount settings and list remote login info API for aml compute * remove unused param * list nodes * swagger build fixes * updated swagger for listnodes response simplification * rename to user account credentials * Changing vmPriority and allocationState to match MLC and other conventions * typo: Microsoft.DataLakeStore (Azure#4677) - lexographical -> lexicographical - tooid -> tooId * typo: cognitiveservices/data-plane/NewsSearch (Azure#4654) - Double word "lets" * typo: resources/resource-manager/Microsoft.Resources (Azure#4755) - paramaters -> parameters - deploymentoutput -> deployment output - targetid -> targetId - informaton -> information - rsources -> resources - muct -> must * typo: resources/resource-manager/Microsoft.Features (Azure#4754) - registerd -> registered * Fix machinelearning generation for Node.js (Azure#4739) * typo: search/resource-manager/Microsoft.Search (Azure#4758) - programatically -> programmatically - Trim trailing space * fix Go SDK codegen for labservices (Azure#4767) Package name can't be upper-case characters. Make package name uniform with other SDKs. * typo: search/data-plane/Microsoft.Azure.Search.Data (Azure#4757) - Autocomlete -> Autocomplete - Trim trailing space * typo: redis/resource-manager/Microsoft.Cache (Azure#4751) - subid -> subscriptionId - properites -> properties - occured -> occurred - Trim trailing space * chore: Add initial EditorConfig (Azure#4742) * chore: Add initial EditorConfig * chore: Add EditorConfig VS Code suggestion * chore: Rename microsoft.workloadmanager -> Microsoft.WorkloadMonitor (Azure#4734) * chore: Rename microsoft.workloadmanager -> Microsoft.WorkloadMonitor Lower case is inconsistent with other API folders * fix: Metadata casing for Microsoft.WorkloadMonitor * typo: mysql/resource-manager/Microsoft.DBforMySQL (Azure#4718) - allowd -> allowed - relica -> replica - Trim trailing spaces * typo: postgresql/resource-manager/Microsoft.DBforPostgreSQL (Azure#4727) - allowd -> allowed - Trim trailing space * typo: managementgroups/resource-manager/Microsoft.Management (Azure#4709) - Resurse -> Recurse - Managment -> Management - Double word "the" * typo: Microsoft.HanaOnAzure (Azure#4695) - interaface -> interface * typo: reservations/resource-manager/Microsoft.Capacity (Azure#4753) - AutofitGroup -> Autofit group - Seperator -> Separator * typo: Microsoft.DataFactory (Azure#4675) - azure-mgmt-dafactory -> azure-mgmt-datafactory - arbitary -> arbitrary - requries -> requires - Fitler -> Filter * typo: recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices (Azure#4749) - vCeneter -> vCenter - classfication -> classification - indentifier -> identifier - Recoery -> Recovery - proprties -> properties - occurence -> occurrence - Overriden -> Overridden - upto -> up to - exensions -> extensions - updation -> update - mappping -> mapping - reveived -> received - priviliges -> privileges - umber -> under - behaviour -> behavior - datastore -> data store - Onprem -> On-prem - inidicating -> indicating - Entites -> Entities - migraton -> migration - accerated -> accelerated - RunAs capitialization * typo: frontdoor/Microsoft.Network (Azure#4692) - FrontDoor casing - double word "the" - reponse -> response - ruleset -> rule set - thresold -> threshold - overrideruleGroup -> override rule group * typo: Microsoft.Devices (Azure#4684) - provisoning -> provisioning - assosiated -> associated - SKU's -> SKUs - etailed -> detailed - whitespace trimming * typo: cognitiveservices/data-plane/LUIS (Azure#4656) - Double word "in" - explict -> explicit - resopnse -> response - idenfied -> identified - idenfitied -> identified - Objet -> Object - analized -> analyzed * Adds base for updating Microsoft.Network from version stable/2018-10-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Revert "Swagger changes for App Gw Server Variables APIs (Azure#4345)" (Azure#4911) This reverts commit 1a5e0f4. * Exposing PATCH for ASGs (Azure#4951) * Get Application Gateway Server Variables APIs (Azure#4916) * Adds base for updating Microsoft.Network from version stable/2018-08-01 to version 2018-11-01 * Updates readme * Updates API version in new specs and examples * Swagger changes * Added example files * Update applicationGateway.json * Update applicationGateway.json * Update applicationGateway.json * fixed case of operation ID to fix docs generation and have common naming (Azure#4972) Approving based on discussion with Code generators that changes in the first Character of an operation ID should not introduce breaking changes * Fixed tag value first letter casing (Azure#4981) * fixed case of operation ID to fix docs generation and have common naming * fixed tage value case * December network release -- ARM feedback (Azure#4897) * updating the directory per feedback * fixed version number * fixing examples * updates based on NRP and ARM review comments * making DDosSetting consistent * minor fix * adding definition of cloud error for error response message * Adding patch support * fixed example according to request in Azure#4984
Latest improvements:
MSFT employees can try out our new experience at OpenAPI Hub - one location for using our validation tools and finding your workflow.
Contribution checklist: