Skip to content

Commit

Permalink
Added new properties to ConnectivityHop (#9386)
Browse files Browse the repository at this point in the history
* Added new properties to ConnectivityHop

* Fixed spelling

* added x-ms-client-flatten to HopLink.properties.properties
  • Loading branch information
irrogozh authored May 27, 2020
1 parent 1c5b662 commit 1553c58
Showing 1 changed file with 85 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3335,13 +3335,98 @@
"type": "string"
}
},
"previousHopIds": {
"readOnly": true,
"type": "array",
"description": "List of previous hop identifiers.",
"items": {
"type": "string"
}
},
"links": {
"readOnly": true,
"type": "array",
"description": "List of hop links.",
"items": {
"$ref": "#/definitions/HopLink"
}
},
"previousLinks": {
"readOnly": true,
"type": "array",
"description": "List of previous hop links.",
"items": {
"$ref": "#/definitions/HopLink"
}
},
"issues": {
"readOnly": true,
"type": "array",
"description": "List of issues.",
"items": {
"$ref": "#/definitions/ConnectivityIssue"
}
}
}
},
"HopLink": {
"description": "Hop link.",
"properties": {
"nextHopId": {
"description": "The ID of the next hop.",
"readOnly": true,
"type": "string"
},
"linkType": {
"description": "Link type.",
"readOnly": true,
"type": "string"
},
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/HopLinkProperties",
"description": "Hop link properties."
},
"issues": {
"readOnly": true,
"type": "array",
"description": "List of issues.",
"items": {
"$ref": "#/definitions/ConnectivityIssue"
}
},
"context": {
"readOnly": true,
"type": "array",
"description": "Provides additional context on the issue.",
"items": {
"$ref": "#/definitions/IssueContext"
}
},
"resourceId": {
"description": "Resource ID.",
"readOnly": true,
"type": "string"
}
}
},
"HopLinkProperties": {
"description": "Hop link properties.",
"properties": {
"roundTripTimeMin": {
"description": "Minimum roundtrip time in milliseconds.",
"readOnly": true,
"type": "integer"
},
"roundTripTimeAvg": {
"description": "Average roundtrip time in milliseconds.",
"readOnly": true,
"type": "integer"
},
"roundTripTimeMax": {
"description": "Maximum roundtrip time in milliseconds.",
"readOnly": true,
"type": "integer"
}
}
},
Expand Down

0 comments on commit 1553c58

Please sign in to comment.