Package com.google.cloud.alloydb.v1alpha
Interface Instance.QueryInsightsInstanceConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Instance.QueryInsightsInstanceConfig,Instance.QueryInsightsInstanceConfig.Builder
- Enclosing class:
- Instance
public static interface Instance.QueryInsightsInstanceConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetQueryPlansPerMinute()Number of query execution plans captured by Insights per minute for all queries combined.intgetQueryStringLength()Query string length.booleangetRecordApplicationTags()Record application tags for an instance.booleangetRecordClientAddress()Record client address for an instance.booleanhasQueryPlansPerMinute()Number of query execution plans captured by Insights per minute for all queries combined.booleanhasRecordApplicationTags()Record application tags for an instance.booleanhasRecordClientAddress()Record client address for an instance.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRecordApplicationTags
boolean hasRecordApplicationTags()
Record application tags for an instance. This flag is turned "on" by default.
optional bool record_application_tags = 2;- Returns:
- Whether the recordApplicationTags field is set.
-
getRecordApplicationTags
boolean getRecordApplicationTags()
Record application tags for an instance. This flag is turned "on" by default.
optional bool record_application_tags = 2;- Returns:
- The recordApplicationTags.
-
hasRecordClientAddress
boolean hasRecordClientAddress()
Record client address for an instance. Client address is PII information. This flag is turned "on" by default.
optional bool record_client_address = 3;- Returns:
- Whether the recordClientAddress field is set.
-
getRecordClientAddress
boolean getRecordClientAddress()
Record client address for an instance. Client address is PII information. This flag is turned "on" by default.
optional bool record_client_address = 3;- Returns:
- The recordClientAddress.
-
getQueryStringLength
int getQueryStringLength()
Query string length. The default value is 1024. Any integer between 256 and 4500 is considered valid.
uint32 query_string_length = 4;- Returns:
- The queryStringLength.
-
hasQueryPlansPerMinute
boolean hasQueryPlansPerMinute()
Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 20 is considered valid.
optional uint32 query_plans_per_minute = 5;- Returns:
- Whether the queryPlansPerMinute field is set.
-
getQueryPlansPerMinute
int getQueryPlansPerMinute()
Number of query execution plans captured by Insights per minute for all queries combined. The default value is 5. Any integer between 0 and 20 is considered valid.
optional uint32 query_plans_per_minute = 5;- Returns:
- The queryPlansPerMinute.
-
-