public interface ExecuteSqlRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
String |
getDatabase()
Required.
|
com.google.protobuf.ByteString |
getDatabaseBytes()
Required.
|
String |
getInstance()
Required.
|
com.google.protobuf.ByteString |
getInstanceBytes()
Required.
|
String |
getPassword()
Optional.
|
com.google.protobuf.ByteString |
getPasswordBytes()
Optional.
|
String |
getSqlStatement()
Required.
|
com.google.protobuf.ByteString |
getSqlStatementBytes()
Required.
|
String |
getUser()
Required.
|
com.google.protobuf.ByteString |
getUserBytes()
Required.
|
ExecuteSqlRequest.UserCredentialCase |
getUserCredentialCase() |
boolean |
hasPassword()
Optional.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofboolean hasPassword()
Optional. The database native user’s password.
string password = 5 [(.google.api.field_behavior) = OPTIONAL];String getPassword()
Optional. The database native user’s password.
string password = 5 [(.google.api.field_behavior) = OPTIONAL];com.google.protobuf.ByteString getPasswordBytes()
Optional. The database native user’s password.
string password = 5 [(.google.api.field_behavior) = OPTIONAL];String getInstance()
Required. The instance where the SQL will be executed. For the required format, see the comment on the Instance.name field.
string instance = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
com.google.protobuf.ByteString getInstanceBytes()
Required. The instance where the SQL will be executed. For the required format, see the comment on the Instance.name field.
string instance = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
String getDatabase()
Required. Name of the database where the query will be executed. Note - Value provided should be the same as expected from `SELECT current_database();` and NOT as a resource reference.
string database = 2 [(.google.api.field_behavior) = REQUIRED];com.google.protobuf.ByteString getDatabaseBytes()
Required. Name of the database where the query will be executed. Note - Value provided should be the same as expected from `SELECT current_database();` and NOT as a resource reference.
string database = 2 [(.google.api.field_behavior) = REQUIRED];String getUser()
Required. Database user to be used for executing the SQL. Note - Value provided should be the same as expected from `SELECT current_user;` and NOT as a resource reference.
string user = 3 [(.google.api.field_behavior) = OPTIONAL];com.google.protobuf.ByteString getUserBytes()
Required. Database user to be used for executing the SQL. Note - Value provided should be the same as expected from `SELECT current_user;` and NOT as a resource reference.
string user = 3 [(.google.api.field_behavior) = OPTIONAL];String getSqlStatement()
Required. SQL statement to execute on database. Any valid statement is permitted, including DDL, DML, DQL statements.
string sql_statement = 4 [(.google.api.field_behavior) = REQUIRED];com.google.protobuf.ByteString getSqlStatementBytes()
Required. SQL statement to execute on database. Any valid statement is permitted, including DDL, DML, DQL statements.
string sql_statement = 4 [(.google.api.field_behavior) = REQUIRED];ExecuteSqlRequest.UserCredentialCase getUserCredentialCase()
Copyright © 2025 Google LLC. All rights reserved.