Class: Google::Cloud::Dataplex::V1::StorageAccess

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

Overview

Describes the access mechanism of the data within its storage location.

Defined Under Namespace

Modules: AccessMode

Instance Attribute Summary collapse

Instance Attribute Details

#read::Google::Cloud::Dataplex::V1::StorageAccess::AccessMode (readonly)

Returns Output only. Describes the read access mechanism of the data. Not user settable.

Returns:



700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
# File 'proto_docs/google/cloud/dataplex/v1/metadata.rb', line 700

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

  # Access Mode determines how data stored within the Entity is read.
  module AccessMode
    # Access mode unspecified.
    ACCESS_MODE_UNSPECIFIED = 0

    # Default. Data is accessed directly using storage APIs.
    DIRECT = 1

    # Data is accessed through a managed interface using BigQuery APIs.
    MANAGED = 2
  end
end