Class: Google::Apis::SecuritycenterV1::TicketInfo
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::TicketInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/representations.rb
Overview
Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding.
Instance Attribute Summary collapse
-
#assignee ⇒ String
The assignee of the ticket in the ticket system.
-
#description ⇒ String
The description of the ticket in the ticket system.
-
#id ⇒ String
The identifier of the ticket in the ticket system.
-
#status ⇒ String
The latest status of the ticket, as reported by the ticket system.
-
#update_time ⇒ String
The time when the ticket was last updated, as reported by the ticket system.
-
#uri ⇒ String
The link to the ticket in the ticket system.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TicketInfo
constructor
A new instance of TicketInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TicketInfo
Returns a new instance of TicketInfo.
6133 6134 6135 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6133 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assignee ⇒ String
The assignee of the ticket in the ticket system.
Corresponds to the JSON property assignee
6106 6107 6108 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6106 def assignee @assignee end |
#description ⇒ String
The description of the ticket in the ticket system.
Corresponds to the JSON property description
6111 6112 6113 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6111 def description @description end |
#id ⇒ String
The identifier of the ticket in the ticket system.
Corresponds to the JSON property id
6116 6117 6118 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6116 def id @id end |
#status ⇒ String
The latest status of the ticket, as reported by the ticket system.
Corresponds to the JSON property status
6121 6122 6123 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6121 def status @status end |
#update_time ⇒ String
The time when the ticket was last updated, as reported by the ticket system.
Corresponds to the JSON property updateTime
6126 6127 6128 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6126 def update_time @update_time end |
#uri ⇒ String
The link to the ticket in the ticket system.
Corresponds to the JSON property uri
6131 6132 6133 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6131 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6138 6139 6140 6141 6142 6143 6144 6145 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 6138 def update!(**args) @assignee = args[:assignee] if args.key?(:assignee) @description = args[:description] if args.key?(:description) @id = args[:id] if args.key?(:id) @status = args[:status] if args.key?(:status) @update_time = args[:update_time] if args.key?(:update_time) @uri = args[:uri] if args.key?(:uri) end |