Class: Google::Apis::SecuritycenterV1::Notebook
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::Notebook
- 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
Represents a Jupyter notebook IPYNB file, such as a Colab Enterprise notebook file, that is associated with a finding.
Instance Attribute Summary collapse
-
#last_author ⇒ String
The user ID of the latest author to modify the notebook.
-
#name ⇒ String
The name of the notebook.
-
#notebook_update_time ⇒ String
The most recent time the notebook was updated.
-
#service ⇒ String
The source notebook service, for example, "Colab Enterprise".
Instance Method Summary collapse
-
#initialize(**args) ⇒ Notebook
constructor
A new instance of Notebook.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Notebook
Returns a new instance of Notebook.
10121 10122 10123 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10121 def initialize(**args) update!(**args) end |
Instance Attribute Details
#last_author ⇒ String
The user ID of the latest author to modify the notebook.
Corresponds to the JSON property lastAuthor
10104 10105 10106 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10104 def @last_author end |
#name ⇒ String
The name of the notebook.
Corresponds to the JSON property name
10109 10110 10111 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10109 def name @name end |
#notebook_update_time ⇒ String
The most recent time the notebook was updated.
Corresponds to the JSON property notebookUpdateTime
10114 10115 10116 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10114 def notebook_update_time @notebook_update_time end |
#service ⇒ String
The source notebook service, for example, "Colab Enterprise".
Corresponds to the JSON property service
10119 10120 10121 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10119 def service @service end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10126 10127 10128 10129 10130 10131 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 10126 def update!(**args) @last_author = args[:last_author] if args.key?(:last_author) @name = args[:name] if args.key?(:name) @notebook_update_time = args[:notebook_update_time] if args.key?(:notebook_update_time) @service = args[:service] if args.key?(:service) end |