UpdateBulkProblemStatusDetails¶
-
class
oci.cloud_guard.models.
UpdateBulkProblemStatusDetails
(**kwargs)¶ Bases:
object
List of problem IDs to be passed in to update problem status.
Attributes
STATUS_DELETED
A constant which can be used with the status property of a UpdateBulkProblemStatusDetails. STATUS_DISMISSED
A constant which can be used with the status property of a UpdateBulkProblemStatusDetails. STATUS_OPEN
A constant which can be used with the status property of a UpdateBulkProblemStatusDetails. STATUS_RESOLVED
A constant which can be used with the status property of a UpdateBulkProblemStatusDetails. comment
Gets the comment of this UpdateBulkProblemStatusDetails. problem_ids
[Required] Gets the problem_ids of this UpdateBulkProblemStatusDetails. status
[Required] Gets the status of this UpdateBulkProblemStatusDetails. Methods
__init__
(**kwargs)Initializes a new UpdateBulkProblemStatusDetails object with values from keyword arguments. -
STATUS_DELETED
= 'DELETED'¶ A constant which can be used with the status property of a UpdateBulkProblemStatusDetails. This constant has a value of “DELETED”
-
STATUS_DISMISSED
= 'DISMISSED'¶ A constant which can be used with the status property of a UpdateBulkProblemStatusDetails. This constant has a value of “DISMISSED”
-
STATUS_OPEN
= 'OPEN'¶ A constant which can be used with the status property of a UpdateBulkProblemStatusDetails. This constant has a value of “OPEN”
-
STATUS_RESOLVED
= 'RESOLVED'¶ A constant which can be used with the status property of a UpdateBulkProblemStatusDetails. This constant has a value of “RESOLVED”
-
__init__
(**kwargs)¶ Initializes a new UpdateBulkProblemStatusDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - status (str) – The value to assign to the status property of this UpdateBulkProblemStatusDetails. Allowed values for this property are: “OPEN”, “RESOLVED”, “DISMISSED”, “DELETED”
- problem_ids (list[str]) – The value to assign to the problem_ids property of this UpdateBulkProblemStatusDetails.
- comment (str) – The value to assign to the comment property of this UpdateBulkProblemStatusDetails.
-
comment
¶ Gets the comment of this UpdateBulkProblemStatusDetails. User-defined comment to be passed in to update the problem
Returns: The comment of this UpdateBulkProblemStatusDetails. Return type: str
-
problem_ids
¶ [Required] Gets the problem_ids of this UpdateBulkProblemStatusDetails. List of problem IDs to be passed in to update the problem status
Returns: The problem_ids of this UpdateBulkProblemStatusDetails. Return type: list[str]
-
status
¶ [Required] Gets the status of this UpdateBulkProblemStatusDetails. Action taken by user
Allowed values for this property are: “OPEN”, “RESOLVED”, “DISMISSED”, “DELETED”
Returns: The status of this UpdateBulkProblemStatusDetails. Return type: str
-