GoogleApi.Spanner.V1.Model.SplitPoints (google_api_spanner v0.48.0)
View SourceThe split points of a table/index.
Attributes
-
expireTime
(type:DateTime.t
, default:nil
) - Optional. The expiration timestamp of the split points. A timestamp in the past means immediate expiration. The maximum value can be 30 days in the future. Defaults to 10 days in the future if not specified. -
index
(type:String.t
, default:nil
) - The index to split. If specified, thetable
field must refer to the index's base table. -
keys
(type:list(GoogleApi.Spanner.V1.Model.Key.t)
, default:nil
) - Required. The list of split keys, i.e., the split boundaries. -
table
(type:String.t
, default:nil
) - The table to split.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Spanner.V1.Model.SplitPoints{ expireTime: DateTime.t() | nil, index: String.t() | nil, keys: [GoogleApi.Spanner.V1.Model.Key.t()] | nil, table: String.t() | nil }