public interface DataTableOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getApproximateRowCount()
public abstract long getApproximateRowCount()Output only. The count of rows in the data table.
int64 approximate_row_count = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
long |
The approximateRowCount. |
getColumnInfo(int index)
public abstract DataTableColumnInfo getColumnInfo(int index)Immutable. Details of all the columns in the table
repeated .google.cloud.chronicle.v1.DataTableColumnInfo column_info = 6 [(.google.api.field_behavior) = IMMUTABLE];
| Parameter | |
|---|---|
| Name | Description |
index |
int |
| Returns | |
|---|---|
| Type | Description |
DataTableColumnInfo |
|
getColumnInfoCount()
public abstract int getColumnInfoCount()Immutable. Details of all the columns in the table
repeated .google.cloud.chronicle.v1.DataTableColumnInfo column_info = 6 [(.google.api.field_behavior) = IMMUTABLE];
| Returns | |
|---|---|
| Type | Description |
int |
|
getColumnInfoList()
public abstract List<DataTableColumnInfo> getColumnInfoList()Immutable. Details of all the columns in the table
repeated .google.cloud.chronicle.v1.DataTableColumnInfo column_info = 6 [(.google.api.field_behavior) = IMMUTABLE];
| Returns | |
|---|---|
| Type | Description |
List<DataTableColumnInfo> |
|
getColumnInfoOrBuilder(int index)
public abstract DataTableColumnInfoOrBuilder getColumnInfoOrBuilder(int index)Immutable. Details of all the columns in the table
repeated .google.cloud.chronicle.v1.DataTableColumnInfo column_info = 6 [(.google.api.field_behavior) = IMMUTABLE];
| Parameter | |
|---|---|
| Name | Description |
index |
int |
| Returns | |
|---|---|
| Type | Description |
DataTableColumnInfoOrBuilder |
|
getColumnInfoOrBuilderList()
public abstract List<? extends DataTableColumnInfoOrBuilder> getColumnInfoOrBuilderList()Immutable. Details of all the columns in the table
repeated .google.cloud.chronicle.v1.DataTableColumnInfo column_info = 6 [(.google.api.field_behavior) = IMMUTABLE];
| Returns | |
|---|---|
| Type | Description |
List<? extends com.google.cloud.chronicle.v1.DataTableColumnInfoOrBuilder> |
|
getCreateTime()
public abstract Timestamp getCreateTime()Output only. Table create time
.google.protobuf.Timestamp create_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
Timestamp |
The createTime. |
getCreateTimeOrBuilder()
public abstract TimestampOrBuilder getCreateTimeOrBuilder()Output only. Table create time
.google.protobuf.Timestamp create_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
TimestampOrBuilder |
|
getDataTableUuid()
public abstract String getDataTableUuid()Output only. Data table unique id
string data_table_uuid = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
String |
The dataTableUuid. |
getDataTableUuidBytes()
public abstract ByteString getDataTableUuidBytes()Output only. Data table unique id
string data_table_uuid = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for dataTableUuid. |
getDescription()
public abstract String getDescription()Required. A user-provided description of the data table.
string description = 3 [(.google.api.field_behavior) = REQUIRED];
| Returns | |
|---|---|
| Type | Description |
String |
The description. |
getDescriptionBytes()
public abstract ByteString getDescriptionBytes()Required. A user-provided description of the data table.
string description = 3 [(.google.api.field_behavior) = REQUIRED];
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for description. |
getDisplayName()
public abstract String getDisplayName()Output only. The unique display name of the data table.
string display_name = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
String |
The displayName. |
getDisplayNameBytes()
public abstract ByteString getDisplayNameBytes()Output only. The unique display name of the data table.
string display_name = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for displayName. |
getName()
public abstract String getName()Identifier. The resource name of the data table Format: "{project}/locations/{location}/instances/{instance}/dataTables/{data_table}"
string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
| Returns | |
|---|---|
| Type | Description |
String |
The name. |
getNameBytes()
public abstract ByteString getNameBytes()Identifier. The resource name of the data table Format: "{project}/locations/{location}/instances/{instance}/dataTables/{data_table}"
string name = 1 [(.google.api.field_behavior) = IDENTIFIER];
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for name. |
getRowTimeToLive()
public abstract String getRowTimeToLive()Optional. User-provided TTL of the data table.
string row_time_to_live = 10 [(.google.api.field_behavior) = OPTIONAL];
| Returns | |
|---|---|
| Type | Description |
String |
The rowTimeToLive. |
getRowTimeToLiveBytes()
public abstract ByteString getRowTimeToLiveBytes()Optional. User-provided TTL of the data table.
string row_time_to_live = 10 [(.google.api.field_behavior) = OPTIONAL];
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for rowTimeToLive. |
getRowTimeToLiveUpdateTime()
public abstract Timestamp getRowTimeToLiveUpdateTime()Output only. Last update time of the TTL of the data table.
.google.protobuf.Timestamp row_time_to_live_update_time = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
Timestamp |
The rowTimeToLiveUpdateTime. |
getRowTimeToLiveUpdateTimeOrBuilder()
public abstract TimestampOrBuilder getRowTimeToLiveUpdateTimeOrBuilder()Output only. Last update time of the TTL of the data table.
.google.protobuf.Timestamp row_time_to_live_update_time = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
TimestampOrBuilder |
|
getRuleAssociationsCount()
public abstract int getRuleAssociationsCount()Output only. The count of rules using the data table.
int32 rule_associations_count = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
int |
The ruleAssociationsCount. |
getRules(int index)
public abstract String getRules(int index)Output only. The resource names for the associated Rules that use this data table. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}. {rule} here refers to the rule id.
repeated string rules = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Parameter | |
|---|---|
| Name | Description |
index |
intThe index of the element to return. |
| Returns | |
|---|---|
| Type | Description |
String |
The rules at the given index. |
getRulesBytes(int index)
public abstract ByteString getRulesBytes(int index)Output only. The resource names for the associated Rules that use this data table. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}. {rule} here refers to the rule id.
repeated string rules = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Parameter | |
|---|---|
| Name | Description |
index |
intThe index of the value to return. |
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes of the rules at the given index. |
getRulesCount()
public abstract int getRulesCount()Output only. The resource names for the associated Rules that use this data table. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}. {rule} here refers to the rule id.
repeated string rules = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
int |
The count of rules. |
getRulesList()
public abstract List<String> getRulesList()Output only. The resource names for the associated Rules that use this data table. Format: projects/{project}/locations/{location}/instances/{instance}/rules/{rule}. {rule} here refers to the rule id.
repeated string rules = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
List<String> |
A list containing the rules. |
getScopeInfo()
public abstract DataTableScopeInfo getScopeInfo()Optional. The scope info of the data table. During data table creation, if this field is not set, the data table without scopes (an unscoped table) will be created for a global user. For a scoped user, this field must be set. During data table update, if scope_info is requested to be updated, this field must be set.
.google.cloud.chronicle.v1.DataTableScopeInfo scope_info = 12 [(.google.api.field_behavior) = OPTIONAL];
| Returns | |
|---|---|
| Type | Description |
DataTableScopeInfo |
The scopeInfo. |
getScopeInfoOrBuilder()
public abstract DataTableScopeInfoOrBuilder getScopeInfoOrBuilder()Optional. The scope info of the data table. During data table creation, if this field is not set, the data table without scopes (an unscoped table) will be created for a global user. For a scoped user, this field must be set. During data table update, if scope_info is requested to be updated, this field must be set.
.google.cloud.chronicle.v1.DataTableScopeInfo scope_info = 12 [(.google.api.field_behavior) = OPTIONAL];
| Returns | |
|---|---|
| Type | Description |
DataTableScopeInfoOrBuilder |
|
getUpdateSource()
public abstract DataTableUpdateSource getUpdateSource()Output only. Source of the data table update.
.google.cloud.chronicle.v1.DataTableUpdateSource update_source = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
DataTableUpdateSource |
The updateSource. |
getUpdateSourceValue()
public abstract int getUpdateSourceValue()Output only. Source of the data table update.
.google.cloud.chronicle.v1.DataTableUpdateSource update_source = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
int |
The enum numeric value on the wire for updateSource. |
getUpdateTime()
public abstract Timestamp getUpdateTime()Output only. Table update time
.google.protobuf.Timestamp update_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
Timestamp |
The updateTime. |
getUpdateTimeOrBuilder()
public abstract TimestampOrBuilder getUpdateTimeOrBuilder()Output only. Table update time
.google.protobuf.Timestamp update_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
TimestampOrBuilder |
|
hasCreateTime()
public abstract boolean hasCreateTime()Output only. Table create time
.google.protobuf.Timestamp create_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
boolean |
Whether the createTime field is set. |
hasRowTimeToLiveUpdateTime()
public abstract boolean hasRowTimeToLiveUpdateTime()Output only. Last update time of the TTL of the data table.
.google.protobuf.Timestamp row_time_to_live_update_time = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
boolean |
Whether the rowTimeToLiveUpdateTime field is set. |
hasScopeInfo()
public abstract boolean hasScopeInfo()Optional. The scope info of the data table. During data table creation, if this field is not set, the data table without scopes (an unscoped table) will be created for a global user. For a scoped user, this field must be set. During data table update, if scope_info is requested to be updated, this field must be set.
.google.cloud.chronicle.v1.DataTableScopeInfo scope_info = 12 [(.google.api.field_behavior) = OPTIONAL];
| Returns | |
|---|---|
| Type | Description |
boolean |
Whether the scopeInfo field is set. |
hasUpdateTime()
public abstract boolean hasUpdateTime()Output only. Table update time
.google.protobuf.Timestamp update_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns | |
|---|---|
| Type | Description |
boolean |
Whether the updateTime field is set. |