vmware-archive/admiral

Update Configuration guide

jpsider opened this issue · 1 comments

Morning!
I am attempting to use PowerShell to interact with the Rest API for Admiral and not having much luck.

I tried following the guide located here: https://github.com/vmware/admiral/wiki/Configuration-guide

However, it seems to be a little dated. I am able to log in to the Swagger-UI in my environment 'http://:8282/api/ui' but I do not see any way to create a session.

The older Swagger page has tons of options (https://192.168.2.225:8282/discovery/swagger/ui/) some of which I would like to take advantage of.

If there is any way to prioritize the documentation to get started with the Rest API's, specifically around programatically creating a session, that would be fantastic. Please let me know if I can provide additional information.

"microsoft.graph.geoCoordinates": {
"title": "geoCoordinates",
"type": "object",
"properties": {
"altitude": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
},
{
"enum": [
"-INF",
"INF",
NaN
]
}
],
"format": "double",
"nullable": true
},
"latitude": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
},
{
"enum": [
"-INF",
"INF",
NaN
]
}
],
"format": "double",
"nullable": true
},
"longitude": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
},
{
"enum": [
"-INF",
"INF",
NaN
]
}
],
"format": "double",
"nullable": true
}
},
"example": {
"altitude": "Double",
"latitude": "Double",
"longitude": "Double"
}
},