Skip to content
Closed
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 @@ -180,9 +180,10 @@ def __init__(self, **kwargs):


class ErrorResponse(Model):
"""Describe the format of an Error response.
"""Error response indicates Insights service is not able to process the
incoming request. The reason is provided in the error message.

:param code: Error code
:param code: Error code.
:type code: str
:param message: Error message indicating why the operation failed.
:type message: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,10 @@ def __init__(self, *, linked_storage_account: str=None, **kwargs) -> None:


class ErrorResponse(Model):
"""Describe the format of an Error response.
"""Error response indicates Insights service is not able to process the
incoming request. The reason is provided in the error message.

:param code: Error code
:param code: Error code.
:type code: str
:param message: Error message indicating why the operation failed.
:type message: str
Expand Down