Class: Google::Cloud::Bigtable::Admin::V2::Type::Bytes

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/bigtable/admin/v2/types.rb

Overview

Bytes Values of type Bytes are stored in Value.bytes_value.

Defined Under Namespace

Classes: Encoding

Instance Attribute Summary collapse

Instance Attribute Details

#encoding::Google::Cloud::Bigtable::Admin::V2::Type::Bytes::Encoding

Returns The encoding to use when converting to/from lower level types.

Returns:



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'proto_docs/google/bigtable/admin/v2/types.rb', line 72

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

  # Rules used to convert to/from lower level types.
  # @!attribute [rw] raw
  #   @return [::Google::Cloud::Bigtable::Admin::V2::Type::Bytes::Encoding::Raw]
  #     Use `Raw` encoding.
  class Encoding
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Leaves the value "as-is"
    # * Natural sort? Yes
    # * Self-delimiting? No
    # * Compatibility? N/A
    class Raw
      include ::Google::Protobuf::MessageExts
      extend ::Google::Protobuf::MessageExts::ClassMethods
    end
  end
end