Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
3201913
Copy Creator API 1.0 to 2.0
JCookit Mar 3, 2021
2fcf0f6
draft of planB
JCookit Mar 9, 2021
38224c1
adding ontology properties; adding DataUpload
JCookit Mar 10, 2021
14e01c3
updated alias apis
JCookit Mar 10, 2021
7b01345
put v1 API back so diffing is easier
JCookit Mar 10, 2021
6df71a3
reapplying v2 so diffs are easier
JCookit Mar 10, 2021
d663c7c
remove type from datasetsources
JCookit Mar 11, 2021
c6b56b5
incorporate suggestions from review board
JCookit Mar 19, 2021
f2a89e4
adding ontology field
JCookit Mar 24, 2021
e3ee703
Update alias v2 apis.
rojohn-ms Mar 30, 2021
071aca8
fix conversion descriptions, update alias
JCookit Mar 31, 2021
155583e
Merge master
rojohn-ms Mar 31, 2021
c0c6045
Fix the alias file.
rojohn-ms Mar 31, 2021
9f05840
Add get details example.
rojohn-ms Mar 31, 2021
568192d
fix casing on headers; mapData more consistent
JCookit Apr 8, 2021
236dfd9
minor comment and linting fixes
JCookit Apr 12, 2021
6813382
Adds base for updating Microsoft.Maps/Alias from version preview/1.0 …
JCookit Apr 13, 2021
c42b105
Updates readme
JCookit Apr 13, 2021
1e229ca
Updates API version in new specs and examples
JCookit Apr 13, 2021
e0c3f7d
Add baseline from preview/1.0
JCookit Apr 13, 2021
ef57559
Merge branch 'dev-maps-Microsoft-Maps-1.0.PlanB' into dev-maps-Micros…
JCookit Apr 13, 2021
c0ccaec
update api-version in examples
JCookit Apr 14, 2021
37ef296
add v2 files to readme
JCookit Apr 15, 2021
70be3ef
fix avacado errors
JCookit Apr 15, 2021
7eef688
Adding string length limit to the descriptions for feature state.
Apr 15, 2021
b6d5b6f
Adding ontology element to the WFS resopnse examples.
Apr 15, 2021
43aae4f
Merge branch 'dev-maps-Microsoft.Maps-2.0' of https://github.com/JCoo…
Apr 15, 2021
76a8953
Updating length to 1000 from 1024.
Apr 15, 2021
fccba92
Update dataset v2 descriptions and examples.
rojohn-ms Apr 19, 2021
cffbd83
Merge branch 'dev-maps-Microsoft.Maps-2.0' of https://github.com/JCoo…
rojohn-ms Apr 19, 2021
c9948c0
Update the examples to have the right details.
rojohn-ms Apr 19, 2021
7b42804
reran linter; added spellcheck words
JCookit Apr 20, 2021
ba125ba
more linting: 202 description alignment
JCookit Apr 20, 2021
c4c5443
fixed example linting for alias, data, dataset
JCookit Apr 21, 2021
fdd5b16
example linting changes for conv, fs, tileset
JCookit Apr 22, 2021
f056190
change featurestateset patch to put
JCookit Apr 22, 2021
675e9c5
autorest linting fixes
JCookit Apr 22, 2021
2e3beab
Reverting FeatureState body to include array to match V1 body and res…
Apr 22, 2021
2f24c21
adding missing operationIds
JCookit Apr 23, 2021
d716e4d
added examples; more linting
JCookit Apr 23, 2021
2e671bb
remove x-ms-long-running
JCookit Apr 23, 2021
4531f12
Merge branch 'master' into dev-maps-Microsoft.Maps-2.0
JCookit Apr 26, 2021
339cec5
Update alias documentation for resourceId -> creatorDataItemId change
rojohn-ms Apr 29, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,7 @@ Dsms
DTDL
Dtus
duration'PT
dwgzippackage
dynamicpersongroups
EAPMSCHA
EAPMSCHAP
Expand Down Expand Up @@ -664,6 +665,7 @@ fconfig
FDID
fearthecowboy
featurecapabilities
featurestate
Featurization
featurized
Featurizer
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"parameters": {
"api-version": "2.0",
"subscription-key": "[subscription-key]",
"aliasId": "[aliasId]",
"creatorDataItemId": "[creatorDataItemId]"
},
"responses": {
"200": {
"body": {
"createdTimestamp": "2021-05-01T01:02:03.456Z",
"aliasId": "25084fb7-307a-4720-8f91-7952a0b91012",
"creatorDataItemId": "633a009a-dfa2-4d51-a419-420122e11c94",
"lastUpdatedTimestamp": "2021-05-01T01:02:03.456Z"
}
},
"400": {
"headers": {},
"body": {
"error": {
"code": "400 BadRequest",
"message": "Bad request - Error message."
}
}
},
"401": {
"headers": {},
"body": {
"error": {
"code": "401 Unauthorized",
"message": "Access denied due to invalid subscription key. Make sure to provide a valid key for an active subscription."
}
}
},
"403": {
"headers": {},
"body": {
"error": {
"code": "403 Forbidden",
"message": "Permission, capacity, or authentication issues."
}
}
},
"404": {
"headers": {},
"body": {
"error": {
"code": "404 NotFound",
"message": "Not Found - The requested resource could not be found, but it may be available again in the future."
}
}
},
"500": {
"headers": {},
"body": {
"error": {
"code": "500 InternalServerError",
"message": "Unknown error - An error occurred while processing the request. Please try again later."
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"parameters": {
"api-version": "2.0",
"subscription-key": "[subscription-key]"
},
"responses": {
"201": {
"headers": {},
"body": {
"createdTimestamp": "2021-05-01T01:02:03.456Z",
"aliasId": "25084fb7-307a-4720-8f91-7952a0b91012",
"creatorDataItemId": null,
"lastUpdatedTimestamp": "2021-05-01T01:02:03.456Z"
}
},
"400": {
"headers": {},
"body": {
"error": {
"code": "400 BadRequest",
"message": "Bad request - Error message."
}
}
},
"401": {
"headers": {},
"body": {
"error": {
"code": "401 Unauthorized",
"message": "Access denied due to invalid subscription key. Make sure to provide a valid key for an active subscription."
}
}
},
"403": {
"headers": {},
"body": {
"error": {
"code": "403 Forbidden",
"message": "Permission, capacity, or authentication issues."
}
}
},
"404": {
"headers": {},
"body": {
"error": {
"code": "404 NotFound",
"message": "Not Found - The requested resource could not be found, but it may be available again in the future."
}
}
},
"500": {
"headers": {},
"body": {
"error": {
"code": "500 InternalServerError",
"message": "Unknown error - An error occurred while processing the request. Please try again later."
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"parameters": {
"api-version": "2.0",
"subscription-key": "[subscription-key]",
"aliasId": "[aliasId]"
},
"responses": {
"204": {},
"400": {
"headers": {},
"body": {
"error": {
"code": "400 BadRequest",
"message": "Bad request - One or more parameters were incorrectly specified or are mutually exclusive."
}
}
},
"401": {
"headers": {},
"body": {
"error": {
"code": "401 Unauthorized",
"message": "Access denied due to invalid subscription key. Make sure to provide a valid key for an active subscription."
}
}
},
"403": {
"headers": {},
"body": {
"error": {
"code": "403 Forbidden",
"message": "Permission, capacity, or authentication issues."
}
}
},
"404": {
"headers": {},
"body": {
"error": {
"code": "404 NotFound",
"message": "Not Found - The requested resource could not be found, but it may be available again in the future."
}
}
},
"500": {
"headers": {},
"body": {
"error": {
"code": "500 InternalServerError",
"message": "Unknown error - An error occurred while processing the request. Please try again later."
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"parameters": {
"api-version": "2.0",
"subscription-key": "[subscription-key]",
"aliasId": "[aliasId]"
},
"responses": {
"200": {
"body": {
"createdTimestamp": "2020-02-13T21:19:11+00:00",
"aliasId": "a8a4b8bb-ecf4-fb27-a618-f41721552766",
"creatorDataItemId": "e89aebb9-70a3-8fe1-32bb-1fbd0c725f14",
"lastUpdatedTimestamp": "2020-02-13T21:19:22+00:00"
}
},
"400": {
"headers": {},
"body": {
"error": {
"code": "400 BadRequest",
"message": "Bad request - One or more parameters were incorrectly specified or are mutually exclusive."
}
}
},
"401": {
"headers": {},
"body": {
"error": {
"code": "401 Unauthorized",
"message": "Access denied due to invalid subscription key. Make sure to provide a valid key for an active subscription."
}
}
},
"403": {
"headers": {},
"body": {
"error": {
"code": "403 Forbidden",
"message": "Permission, capacity, or authentication issues."
}
}
},
"404": {
"headers": {},
"body": {
"error": {
"code": "404 NotFound",
"message": "Not Found - The requested resource could not be found, but it may be available again in the future."
}
}
},
"500": {
"headers": {},
"body": {
"error": {
"code": "500 InternalServerError",
"message": "Unknown error - An error occurred while processing the request. Please try again later."
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{
"parameters": {
"api-version": "2.0",
"subscription-key": "[subscription-key]"
},
"responses": {
"200": {
"body": {
"aliases": [
{
"createdTimestamp": "2020-02-13T21:19:11+00:00",
"aliasId": "a8a4b8bb-ecf4-fb27-a618-f41721552766",
"creatorDataItemId": "e89aebb9-70a3-8fe1-32bb-1fbd0c725f14",
"lastUpdatedTimestamp": "2020-02-13T21:19:22+00:00"
},
{
"createdTimestamp": "2020-02-13T21:19:11+00:00",
"aliasId": "1856dbfc-7a66-ee5a-bf8d-51dbfe1906f6",
"creatorDataItemId": null,
"lastUpdatedTimestamp": "2020-02-13T21:19:11+00:00"
}
]
}
},
"400": {
"headers": {},
"body": {
"error": {
"code": "400 BadRequest",
"message": "Bad request - One or more parameters were incorrectly specified or are mutually exclusive."
}
}
},
"401": {
"headers": {},
"body": {
"error": {
"code": "401 Unauthorized",
"message": "Access denied due to invalid subscription key. Make sure to provide a valid key for an active subscription."
}
}
},
"403": {
"headers": {},
"body": {
"error": {
"code": "403 Forbidden",
"message": "Permission, capacity, or authentication issues."
}
}
},
"404": {
"headers": {},
"body": {
"error": {
"code": "404 NotFound",
"message": "Not Found - The requested resource could not be found, but it may be available again in the future."
}
}
},
"500": {
"headers": {},
"body": {
"error": {
"code": "500 InternalServerError",
"message": "Unknown error - An error occurred while processing the request. Please try again later."
}
}
}
}
}
Loading