Cloud Trace V2 API - Class Google::Cloud::Trace::V2::TruncatableString (v0.9.0)

Reference documentation and code samples for the Cloud Trace V2 API class Google::Cloud::Trace::V2::TruncatableString.

Represents a string that might be shortened to a specified length.

Inherits

  • Object

Extended By

  • Google::Protobuf::MessageExts::ClassMethods

Includes

  • Google::Protobuf::MessageExts

Methods

#truncated_byte_count

def truncated_byte_count() -> ::Integer
Returns
  • (::Integer) — The number of bytes removed from the original string. If this value is 0, then the string was not shortened.

#truncated_byte_count=

def truncated_byte_count=(value) -> ::Integer
Parameter
  • value (::Integer) — The number of bytes removed from the original string. If this value is 0, then the string was not shortened.
Returns
  • (::Integer) — The number of bytes removed from the original string. If this value is 0, then the string was not shortened.

#value

def value() -> ::String
Returns
  • (::String) — The shortened string. For example, if the original string is 500 bytes long and the limit of the string is 128 bytes, then value contains the first 128 bytes of the 500-byte string.

    Truncation always happens on a UTF8 character boundary. If there are multi-byte characters in the string, then the length of the shortened string might be less than the size limit.

#value=

def value=(value) -> ::String
Parameter
  • value (::String) — The shortened string. For example, if the original string is 500 bytes long and the limit of the string is 128 bytes, then value contains the first 128 bytes of the 500-byte string.

    Truncation always happens on a UTF8 character boundary. If there are multi-byte characters in the string, then the length of the shortened string might be less than the size limit.

Returns
  • (::String) — The shortened string. For example, if the original string is 500 bytes long and the limit of the string is 128 bytes, then value contains the first 128 bytes of the 500-byte string.

    Truncation always happens on a UTF8 character boundary. If there are multi-byte characters in the string, then the length of the shortened string might be less than the size limit.