Class: Google::Apis::NotebooksV1::DiagnosticConfig
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::DiagnosticConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb more...
Overview
Defines flags that are used to run the diagnostic tool
Instance Attribute Summary collapse
-
#copy_home_files_flag_enabled ⇒ Boolean
(also: #copy_home_files_flag_enabled?)
Optional.
-
#gcs_bucket ⇒ String
Required.
-
#packet_capture_flag_enabled ⇒ Boolean
(also: #packet_capture_flag_enabled?)
Optional.
-
#relative_path ⇒ String
Optional.
-
#repair_flag_enabled ⇒ Boolean
(also: #repair_flag_enabled?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DiagnosticConfig
constructor
A new instance of DiagnosticConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DiagnosticConfig
Returns a new instance of DiagnosticConfig.
320 321 322 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 320 def initialize(**args) update!(**args) end |
Instance Attribute Details
#copy_home_files_flag_enabled ⇒ Boolean Also known as: copy_home_files_flag_enabled?
Optional. Enables flag to copy all /home/jupyter
folder contents
Corresponds to the JSON property copyHomeFilesFlagEnabled
286 287 288 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 286 def copy_home_files_flag_enabled @copy_home_files_flag_enabled end |
#gcs_bucket ⇒ String
Required. User Cloud Storage bucket location (REQUIRED). Must be formatted
with path prefix (gs://$GCS_BUCKET
). Permissions: User Managed Notebooks: -
storage.buckets.writer: Must be given to the project's service account
attached to VM. Google Managed Notebooks: - storage.buckets.writer: Must be
given to the project's service account or user credentials attached to VM
depending on authentication mode. Cloud Storage bucket Log file will be
written to gs://$GCS_BUCKET/$RELATIVE_PATH/$VM_DATE_$TIME.tar.gz
Corresponds to the JSON property gcsBucket
298 299 300 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 298 def gcs_bucket @gcs_bucket end |
#packet_capture_flag_enabled ⇒ Boolean Also known as: packet_capture_flag_enabled?
Optional. Enables flag to capture packets from the instance for 30 seconds
Corresponds to the JSON property packetCaptureFlagEnabled
303 304 305 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 303 def packet_capture_flag_enabled @packet_capture_flag_enabled end |
#relative_path ⇒ String
Optional. Defines the relative storage path in the Cloud Storage bucket where
the diagnostic logs will be written: Default path will be the root directory
of the Cloud Storage bucket (gs://$GCS_BUCKET/$DATE_$TIME.tar.gz
) Example of
full path where Log file will be written: gs://$GCS_BUCKET/$RELATIVE_PATH/
Corresponds to the JSON property relativePath
312 313 314 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 312 def relative_path @relative_path end |
#repair_flag_enabled ⇒ Boolean Also known as: repair_flag_enabled?
Optional. Enables flag to repair service for instance
Corresponds to the JSON property repairFlagEnabled
317 318 319 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 317 def repair_flag_enabled @repair_flag_enabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
325 326 327 328 329 330 331 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 325 def update!(**args) @copy_home_files_flag_enabled = args[:copy_home_files_flag_enabled] if args.key?(:copy_home_files_flag_enabled) @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket) @packet_capture_flag_enabled = args[:packet_capture_flag_enabled] if args.key?(:packet_capture_flag_enabled) @relative_path = args[:relative_path] if args.key?(:relative_path) @repair_flag_enabled = args[:repair_flag_enabled] if args.key?(:repair_flag_enabled) end |