Class: Google::Cloud::Firestore::Admin::V1::FieldOperationMetadata::TtlConfigDelta

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/firestore/admin/v1/operation.rb

Overview

Information about a TTL configuration change.

Defined Under Namespace

Modules: ChangeType

Instance Attribute Summary collapse

Instance Attribute Details

#change_type::Google::Cloud::Firestore::Admin::V1::FieldOperationMetadata::TtlConfigDelta::ChangeType

Returns Specifies how the TTL configuration is changing.

Returns:



116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'proto_docs/google/firestore/admin/v1/operation.rb', line 116

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

  # Specifies how the TTL config is changing.
  module ChangeType
    # The type of change is not specified or known.
    CHANGE_TYPE_UNSPECIFIED = 0

    # The TTL config is being added.
    ADD = 1

    # The TTL config is being removed.
    REMOVE = 2
  end
end