Enum value maps for CloudSqlProperties_DatabaseType.
var ( CloudSqlProperties_DatabaseType_name = map[int32]string{ 0: "DATABASE_TYPE_UNSPECIFIED", 1: "POSTGRES", 2: "MYSQL", } CloudSqlProperties_DatabaseType_value = map[string]int32{ "DATABASE_TYPE_UNSPECIFIED": 0, "POSTGRES": 1, "MYSQL": 2, } )
var File_google_cloud_bigquery_connection_v1beta1_connection_proto protoreflect.FileDescriptor
func RegisterConnectionServiceServer(s *grpc.Server, srv ConnectionServiceServer)
Credential info for the Cloud SQL.
type CloudSqlCredential struct { // The username for the credential. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` // The password for the credential. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` // contains filtered or unexported fields }
func (*CloudSqlCredential) Descriptor() ([]byte, []int)
Deprecated: Use CloudSqlCredential.ProtoReflect.Descriptor instead.
func (x *CloudSqlCredential) GetPassword() string
func (x *CloudSqlCredential) GetUsername() string
func (*CloudSqlCredential) ProtoMessage()
func (x *CloudSqlCredential) ProtoReflect() protoreflect.Message
func (x *CloudSqlCredential) Reset()
func (x *CloudSqlCredential) String() string
Connection properties specific to the Cloud SQL.
type CloudSqlProperties struct { // Cloud SQL instance ID in the form `project:location:instance`. InstanceId string `protobuf:"bytes,1,opt,name=instance_id,json=instanceId,proto3" json:"instance_id,omitempty"` // Database name. Database string `protobuf:"bytes,2,opt,name=database,proto3" json:"database,omitempty"` // Type of the Cloud SQL database. Type CloudSqlProperties_DatabaseType `protobuf:"varint,3,opt,name=type,proto3,enum=google.cloud.bigquery.connection.v1beta1.CloudSqlProperties_DatabaseType" json:"type,omitempty"` // Input only. Cloud SQL credential. Credential *CloudSqlCredential `protobuf:"bytes,4,opt,name=credential,proto3" json:"credential,omitempty"` // Output only. The account ID of the service used for the purpose of this // connection. // // When the connection is used in the context of an operation in // BigQuery, this service account will serve as the identity being used for // connecting to the CloudSQL instance specified in this connection. ServiceAccountId string `protobuf:"bytes,5,opt,name=service_account_id,json=serviceAccountId,proto3" json:"service_account_id,omitempty"` // contains filtered or unexported fields }
func (*CloudSqlProperties) Descriptor() ([]byte, []int)
Deprecated: Use CloudSqlProperties.ProtoReflect.Descriptor instead.
func (x *CloudSqlProperties) GetCredential() *CloudSqlCredential
func (x *CloudSqlProperties) GetDatabase() string
func (x *CloudSqlProperties) GetInstanceId() string
func (x *CloudSqlProperties) GetServiceAccountId() string
func (x *CloudSqlProperties) GetType() CloudSqlProperties_DatabaseType
func (*CloudSqlProperties) ProtoMessage()
func (x *CloudSqlProperties) ProtoReflect() protoreflect.Message
func (x *CloudSqlProperties) Reset()
func (x *CloudSqlProperties) String() string
Supported Cloud SQL database types.
type CloudSqlProperties_DatabaseType int32
const ( // Unspecified database type. CloudSqlProperties_DATABASE_TYPE_UNSPECIFIED CloudSqlProperties_DatabaseType = 0 // Cloud SQL for PostgreSQL. CloudSqlProperties_POSTGRES CloudSqlProperties_DatabaseType = 1 // Cloud SQL for MySQL. CloudSqlProperties_MYSQL CloudSqlProperties_DatabaseType = 2 )
func (CloudSqlProperties_DatabaseType) Descriptor() protoreflect.EnumDescriptor
func (x CloudSqlProperties_DatabaseType) Enum() *CloudSqlProperties_DatabaseType
func (CloudSqlProperties_DatabaseType) EnumDescriptor() ([]byte, []int)
Deprecated: Use CloudSqlProperties_DatabaseType.Descriptor instead.
func (x CloudSqlProperties_DatabaseType) Number() protoreflect.EnumNumber
func (x CloudSqlProperties_DatabaseType) String() string
func (CloudSqlProperties_DatabaseType) Type() protoreflect.EnumType
Configuration parameters to establish connection with an external data source, except the credential attributes.
type Connection struct { // The resource name of the connection in the form of: // `projects/{project_id}/locations/{location_id}/connections/{connection_id}` Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // User provided display name for the connection. FriendlyName string `protobuf:"bytes,2,opt,name=friendly_name,json=friendlyName,proto3" json:"friendly_name,omitempty"` // User provided description. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` // Properties specific to the underlying data source. // // Types that are assignable to Properties: // // *Connection_CloudSql Properties isConnection_Properties `protobuf_oneof:"properties"` // Output only. The creation timestamp of the connection. CreationTime int64 `protobuf:"varint,5,opt,name=creation_time,json=creationTime,proto3" json:"creation_time,omitempty"` // Output only. The last update timestamp of the connection. LastModifiedTime int64 `protobuf:"varint,6,opt,name=last_modified_time,json=lastModifiedTime,proto3" json:"last_modified_time,omitempty"` // Output only. True, if credential is configured for this connection. HasCredential bool `protobuf:"varint,7,opt,name=has_credential,json=hasCredential,proto3" json:"has_credential,omitempty"` // contains filtered or unexported fields }
func (*Connection) Descriptor() ([]byte, []int)
Deprecated: Use Connection.ProtoReflect.Descriptor instead.
func (x *Connection) GetCloudSql() *CloudSqlProperties
func (x *Connection) GetCreationTime() int64
func (x *Connection) GetDescription() string
func (x *Connection) GetFriendlyName() string
func (x *Connection) GetHasCredential() bool
func (x *Connection) GetLastModifiedTime() int64
func (x *Connection) GetName() string
func (m *Connection) GetProperties() isConnection_Properties
func (*Connection) ProtoMessage()
func (x *Connection) ProtoReflect() protoreflect.Message
func (x *Connection) Reset()
func (x *Connection) String() string
Credential to use with a connection.
type ConnectionCredential struct { // Credential specific to the underlying data source. // // Types that are assignable to Credential: // // *ConnectionCredential_CloudSql Credential isConnectionCredential_Credential `protobuf_oneof:"credential"` // contains filtered or unexported fields }
func (*ConnectionCredential) Descriptor() ([]byte, []int)
Deprecated: Use ConnectionCredential.ProtoReflect.Descriptor instead.
func (x *ConnectionCredential) GetCloudSql() *CloudSqlCredential
func (m *ConnectionCredential) GetCredential() isConnectionCredential_Credential
func (*ConnectionCredential) ProtoMessage()
func (x *ConnectionCredential) ProtoReflect() protoreflect.Message
func (x *ConnectionCredential) Reset()
func (x *ConnectionCredential) String() string
type ConnectionCredential_CloudSql struct { // Credential for Cloud SQL database. CloudSql *CloudSqlCredential `protobuf:"bytes,1,opt,name=cloud_sql,json=cloudSql,proto3,oneof"` }
ConnectionServiceClient is the client API for ConnectionService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type ConnectionServiceClient interface { // Creates a new connection. CreateConnection(ctx context.Context, in *CreateConnectionRequest, opts ...grpc.CallOption) (*Connection, error) // Returns specified connection. GetConnection(ctx context.Context, in *GetConnectionRequest, opts ...grpc.CallOption) (*Connection, error) // Returns a list of connections in the given project. ListConnections(ctx context.Context, in *ListConnectionsRequest, opts ...grpc.CallOption) (*ListConnectionsResponse, error) // Updates the specified connection. For security reasons, also resets // credential if connection properties are in the update field mask. UpdateConnection(ctx context.Context, in *UpdateConnectionRequest, opts ...grpc.CallOption) (*Connection, error) // Sets the credential for the specified connection. UpdateConnectionCredential(ctx context.Context, in *UpdateConnectionCredentialRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Deletes connection and associated credential. DeleteConnection(ctx context.Context, in *DeleteConnectionRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Gets the access control policy for a resource. // Returns an empty policy if the resource exists and does not have a policy // set. GetIamPolicy(ctx context.Context, in *iampb.GetIamPolicyRequest, opts ...grpc.CallOption) (*iampb.Policy, error) // Sets the access control policy on the specified resource. Replaces any // existing policy. // // Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. SetIamPolicy(ctx context.Context, in *iampb.SetIamPolicyRequest, opts ...grpc.CallOption) (*iampb.Policy, error) // Returns permissions that a caller has on the specified resource. // If the resource does not exist, this will return an empty set of // permissions, not a `NOT_FOUND` error. // // Note: This operation is designed to be used for building permission-aware // UIs and command-line tools, not for authorization checking. This operation // may "fail open" without warning. TestIamPermissions(ctx context.Context, in *iampb.TestIamPermissionsRequest, opts ...grpc.CallOption) (*iampb.TestIamPermissionsResponse, error) }
func NewConnectionServiceClient(cc grpc.ClientConnInterface) ConnectionServiceClient
ConnectionServiceServer is the server API for ConnectionService service.
type ConnectionServiceServer interface { // Creates a new connection. CreateConnection(context.Context, *CreateConnectionRequest) (*Connection, error) // Returns specified connection. GetConnection(context.Context, *GetConnectionRequest) (*Connection, error) // Returns a list of connections in the given project. ListConnections(context.Context, *ListConnectionsRequest) (*ListConnectionsResponse, error) // Updates the specified connection. For security reasons, also resets // credential if connection properties are in the update field mask. UpdateConnection(context.Context, *UpdateConnectionRequest) (*Connection, error) // Sets the credential for the specified connection. UpdateConnectionCredential(context.Context, *UpdateConnectionCredentialRequest) (*emptypb.Empty, error) // Deletes connection and associated credential. DeleteConnection(context.Context, *DeleteConnectionRequest) (*emptypb.Empty, error) // Gets the access control policy for a resource. // Returns an empty policy if the resource exists and does not have a policy // set. GetIamPolicy(context.Context, *iampb.GetIamPolicyRequest) (*iampb.Policy, error) // Sets the access control policy on the specified resource. Replaces any // existing policy. // // Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. SetIamPolicy(context.Context, *iampb.SetIamPolicyRequest) (*iampb.Policy, error) // Returns permissions that a caller has on the specified resource. // If the resource does not exist, this will return an empty set of // permissions, not a `NOT_FOUND` error. // // Note: This operation is designed to be used for building permission-aware // UIs and command-line tools, not for authorization checking. This operation // may "fail open" without warning. TestIamPermissions(context.Context, *iampb.TestIamPermissionsRequest) (*iampb.TestIamPermissionsResponse, error) }
type Connection_CloudSql struct { // Cloud SQL properties. CloudSql *CloudSqlProperties `protobuf:"bytes,4,opt,name=cloud_sql,json=cloudSql,proto3,oneof"` }
The request for [ConnectionService.CreateConnection][google.cloud.bigquery.connection.v1beta1.ConnectionService.CreateConnection].
type CreateConnectionRequest struct { // Required. Parent resource name. // Must be in the format `projects/{project_id}/locations/{location_id}` Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` // Optional. Connection id that should be assigned to the created connection. ConnectionId string `protobuf:"bytes,2,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"` // Required. Connection to create. Connection *Connection `protobuf:"bytes,3,opt,name=connection,proto3" json:"connection,omitempty"` // contains filtered or unexported fields }
func (*CreateConnectionRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateConnectionRequest.ProtoReflect.Descriptor instead.
func (x *CreateConnectionRequest) GetConnection() *Connection
func (x *CreateConnectionRequest) GetConnectionId() string
func (x *CreateConnectionRequest) GetParent() string
func (*CreateConnectionRequest) ProtoMessage()
func (x *CreateConnectionRequest) ProtoReflect() protoreflect.Message
func (x *CreateConnectionRequest) Reset()
func (x *CreateConnectionRequest) String() string
The request for [ConnectionService.DeleteConnectionRequest][].
type DeleteConnectionRequest struct { // Required. Name of the deleted connection, for example: // `projects/{project_id}/locations/{location_id}/connections/{connection_id}` Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
func (*DeleteConnectionRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteConnectionRequest.ProtoReflect.Descriptor instead.
func (x *DeleteConnectionRequest) GetName() string
func (*DeleteConnectionRequest) ProtoMessage()
func (x *DeleteConnectionRequest) ProtoReflect() protoreflect.Message
func (x *DeleteConnectionRequest) Reset()
func (x *DeleteConnectionRequest) String() string
The request for [ConnectionService.GetConnection][google.cloud.bigquery.connection.v1beta1.ConnectionService.GetConnection].
type GetConnectionRequest struct { // Required. Name of the requested connection, for example: // `projects/{project_id}/locations/{location_id}/connections/{connection_id}` Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
func (*GetConnectionRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetConnectionRequest.ProtoReflect.Descriptor instead.
func (x *GetConnectionRequest) GetName() string
func (*GetConnectionRequest) ProtoMessage()
func (x *GetConnectionRequest) ProtoReflect() protoreflect.Message
func (x *GetConnectionRequest) Reset()
func (x *GetConnectionRequest) String() string
The request for [ConnectionService.ListConnections][google.cloud.bigquery.connection.v1beta1.ConnectionService.ListConnections].
type ListConnectionsRequest struct { // Required. Parent resource name. // Must be in the form: `projects/{project_id}/locations/{location_id}` Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` // Required. Maximum number of results per page. MaxResults *wrapperspb.UInt32Value `protobuf:"bytes,2,opt,name=max_results,json=maxResults,proto3" json:"max_results,omitempty"` // Page token. PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // contains filtered or unexported fields }
func (*ListConnectionsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListConnectionsRequest.ProtoReflect.Descriptor instead.
func (x *ListConnectionsRequest) GetMaxResults() *wrapperspb.UInt32Value
func (x *ListConnectionsRequest) GetPageToken() string
func (x *ListConnectionsRequest) GetParent() string
func (*ListConnectionsRequest) ProtoMessage()
func (x *ListConnectionsRequest) ProtoReflect() protoreflect.Message
func (x *ListConnectionsRequest) Reset()
func (x *ListConnectionsRequest) String() string
The response for [ConnectionService.ListConnections][google.cloud.bigquery.connection.v1beta1.ConnectionService.ListConnections].
type ListConnectionsResponse struct { // Next page token. NextPageToken string `protobuf:"bytes,1,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // List of connections. Connections []*Connection `protobuf:"bytes,2,rep,name=connections,proto3" json:"connections,omitempty"` // contains filtered or unexported fields }
func (*ListConnectionsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListConnectionsResponse.ProtoReflect.Descriptor instead.
func (x *ListConnectionsResponse) GetConnections() []*Connection
func (x *ListConnectionsResponse) GetNextPageToken() string
func (*ListConnectionsResponse) ProtoMessage()
func (x *ListConnectionsResponse) ProtoReflect() protoreflect.Message
func (x *ListConnectionsResponse) Reset()
func (x *ListConnectionsResponse) String() string
UnimplementedConnectionServiceServer can be embedded to have forward compatible implementations.
type UnimplementedConnectionServiceServer struct { }
func (*UnimplementedConnectionServiceServer) CreateConnection(context.Context, *CreateConnectionRequest) (*Connection, error)
func (*UnimplementedConnectionServiceServer) DeleteConnection(context.Context, *DeleteConnectionRequest) (*emptypb.Empty, error)
func (*UnimplementedConnectionServiceServer) GetConnection(context.Context, *GetConnectionRequest) (*Connection, error)
func (*UnimplementedConnectionServiceServer) GetIamPolicy(context.Context, *iampb.GetIamPolicyRequest) (*iampb.Policy, error)
func (*UnimplementedConnectionServiceServer) ListConnections(context.Context, *ListConnectionsRequest) (*ListConnectionsResponse, error)
func (*UnimplementedConnectionServiceServer) SetIamPolicy(context.Context, *iampb.SetIamPolicyRequest) (*iampb.Policy, error)
func (*UnimplementedConnectionServiceServer) TestIamPermissions(context.Context, *iampb.TestIamPermissionsRequest) (*iampb.TestIamPermissionsResponse, error)
func (*UnimplementedConnectionServiceServer) UpdateConnection(context.Context, *UpdateConnectionRequest) (*Connection, error)
func (*UnimplementedConnectionServiceServer) UpdateConnectionCredential(context.Context, *UpdateConnectionCredentialRequest) (*emptypb.Empty, error)
The request for [ConnectionService.UpdateConnectionCredential][google.cloud.bigquery.connection.v1beta1.ConnectionService.UpdateConnectionCredential].
type UpdateConnectionCredentialRequest struct { // Required. Name of the connection, for example: // `projects/{project_id}/locations/{location_id}/connections/{connection_id}/credential` Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Required. Credential to use with the connection. Credential *ConnectionCredential `protobuf:"bytes,2,opt,name=credential,proto3" json:"credential,omitempty"` // contains filtered or unexported fields }
func (*UpdateConnectionCredentialRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateConnectionCredentialRequest.ProtoReflect.Descriptor instead.
func (x *UpdateConnectionCredentialRequest) GetCredential() *ConnectionCredential
func (x *UpdateConnectionCredentialRequest) GetName() string
func (*UpdateConnectionCredentialRequest) ProtoMessage()
func (x *UpdateConnectionCredentialRequest) ProtoReflect() protoreflect.Message
func (x *UpdateConnectionCredentialRequest) Reset()
func (x *UpdateConnectionCredentialRequest) String() string
The request for [ConnectionService.UpdateConnection][google.cloud.bigquery.connection.v1beta1.ConnectionService.UpdateConnection].
type UpdateConnectionRequest struct { // Required. Name of the connection to update, for example: // `projects/{project_id}/locations/{location_id}/connections/{connection_id}` Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Required. Connection containing the updated fields. Connection *Connection `protobuf:"bytes,2,opt,name=connection,proto3" json:"connection,omitempty"` // Required. Update mask for the connection fields to be updated. UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,3,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` // contains filtered or unexported fields }
func (*UpdateConnectionRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateConnectionRequest.ProtoReflect.Descriptor instead.
func (x *UpdateConnectionRequest) GetConnection() *Connection
func (x *UpdateConnectionRequest) GetName() string
func (x *UpdateConnectionRequest) GetUpdateMask() *fieldmaskpb.FieldMask
func (*UpdateConnectionRequest) ProtoMessage()
func (x *UpdateConnectionRequest) ProtoReflect() protoreflect.Message
func (x *UpdateConnectionRequest) Reset()
func (x *UpdateConnectionRequest) String() string