Class: Google::Cloud::Dataplex::V1::Content::Notebook

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/dataplex/v1/analyze.rb

Overview

Configuration for Notebook content.

Defined Under Namespace

Modules: KernelType

Instance Attribute Summary collapse

Instance Attribute Details

#kernel_type::Google::Cloud::Dataplex::V1::Content::Notebook::KernelType

Returns Required. Kernel Type of the notebook.

Returns:



245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'proto_docs/google/cloud/dataplex/v1/analyze.rb', line 245

class Notebook
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Kernel Type of the Jupyter notebook.
  module KernelType
    # Kernel Type unspecified.
    KERNEL_TYPE_UNSPECIFIED = 0

    # Python 3 Kernel.
    PYTHON3 = 1
  end
end