Method: Google::Api::LabelDescriptor#description

Defined in:
proto_docs/google/api/label.rb

#description::String

Returns A human-readable description for the label.

Returns:

  • (::String)

    A human-readable description for the label.

[View source]

32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'proto_docs/google/api/label.rb', line 32

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

  # Value types that can be used as label values.
  module ValueType
    # A variable-length string. This is the default.
    STRING = 0

    # Boolean; true or false.
    BOOL = 1

    # A 64-bit signed integer.
    INT64 = 2
  end
end