From 4a8534ceac3bd0241b4f61129a3b6880dac5c100 Mon Sep 17 00:00:00 2001 From: Yan Reznikov Date: Fri, 2 Oct 2020 10:07:05 -0700 Subject: [PATCH] Fixing typo from azure.com to azure.net Updating example of data plane call from blobstore.azure.com to blobstore.azure.net --- azure/Guidelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure/Guidelines.md b/azure/Guidelines.md index 7b79d817..8808e5fd 100644 --- a/azure/Guidelines.md +++ b/azure/Guidelines.md @@ -135,9 +135,9 @@ Retirement of an API version must follow the standard [_Azure Global Retirements The Microsoft REST API guidelines give two options for how services and clients communicate the version: a url segment and a query parameter. Azure services **MUST** use the api-version query parameter. For example: ```text -GET https://blobstore.azure.com/foo.com/acct1/c1/blob2?api-version=1.0 -PUT https://blobstore.azure.com/foo.com/acct1/c1/b2?api-version=2014-12-07 -POST https://blobstore.azure.com/foo.com/acct1/c1/b2?api-version=2015-12-07 +GET https://blobstore.azure.net/foo.com/acct1/c1/blob2?api-version=1.0 +PUT https://blobstore.azure.net/foo.com/acct1/c1/b2?api-version=2014-12-07 +POST https://blobstore.azure.net/foo.com/acct1/c1/b2?api-version=2015-12-07 ``` ### API Changes that require a version change