Skip to content
Merged
Show file tree
Hide file tree
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 @@ -496,6 +496,10 @@
"description": "Network injection configuration"
}
}
},
"healthStatus": {
"description": "The health status of the resource.",
"$ref": "#/definitions/HealthStatus"
}
}
},
Expand Down Expand Up @@ -639,6 +643,19 @@
}
},
"description": "The response of the list EnterprisePolicy operation."
},
"HealthStatus": {
"type": "string",
"description": "The health status of the resource.",
"x-ms-enum": {
"name": "HealthStatus",
"modelAsString": true
},
"enum": [
"Undetermined",
"Healthy",
"Unhealthy"
]
}
},
"parameters": {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
},
"responses": {
"200": {},
"202": {},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z"
}
}
},
"202": {}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
}
}
]
}
},
"healthStatus": "Undetermined"
},
"systemData": {
"createdBy": "user1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,17 +167,14 @@
"$ref": "#/definitions/PrivateEndpointConnection"
}
},
"202": {
"description": "Accepted. The private endpoint connection update will complete asynchronously."
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation": false,
"x-ms-examples": {
"Approve or reject a private endpoint connection with a given name.": {
"$ref": "./examples/PrivateEndpointConnectionUpdate.json"
Expand Down Expand Up @@ -217,9 +214,6 @@
"200": {
"description": "The private endpoint connection was successfully deleted."
},
"202": {
"description": "Accepted. The private endpoint connection delete will complete asynchronously."
},
"204": {
"description": "Private endpoint connection does not exist."
},
Expand All @@ -230,7 +224,7 @@
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation": false,
"x-ms-examples": {
"Deletes a private endpoint connection with a given name.": {
"$ref": "./examples/PrivateEndpointConnectionDelete.json"
Expand Down