Skip to content
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

Added new properties to ConnectivityHop #9386

Merged
merged 3 commits into from
May 27, 2020
Merged
Changes from all commits
Commits
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
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