Documentation ¶
Overview ¶
Package biglake provides access to the BigLake API.
For product documentation, see: https://cloud.google.com/bigquery/
Library status ¶
These client libraries are officially supported by Google. However, this library is considered complete and is in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features.
When possible, we recommend using our newer [Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go) that are still actively being worked and iterated on.
Creating a client ¶
Usage example:
import "google.golang.org/api/biglake/v1" ... ctx := context.Background() biglakeService, err := biglake.NewService(ctx)
In this example, Google Application Default Credentials are used for authentication. For information on how to create and obtain Application Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials.
Other authentication options ¶
By default, all available scopes (see "Constants") are used to authenticate. To restrict scopes, use google.golang.org/api/option.WithScopes:
biglakeService, err := biglake.NewService(ctx, option.WithScopes(biglake.CloudPlatformScope))
To use an API key for authentication (note: some APIs do not support API keys), use google.golang.org/api/option.WithAPIKey:
biglakeService, err := biglake.NewService(ctx, option.WithAPIKey("AIza..."))
To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow, use google.golang.org/api/option.WithTokenSource:
config := &oauth2.Config{...} // ... token, err := config.Exchange(ctx, ...) biglakeService, err := biglake.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
See google.golang.org/api/option.ClientOption for details on options.
Index ¶
- Constants
- type Catalog
- type Database
- type HiveDatabaseOptions
- type HiveTableOptions
- type ListCatalogsResponse
- type ListDatabasesResponse
- type ListTablesResponse
- type ProjectsLocationsCatalogsCreateCall
- func (c *ProjectsLocationsCatalogsCreateCall) CatalogId(catalogId string) *ProjectsLocationsCatalogsCreateCall
- func (c *ProjectsLocationsCatalogsCreateCall) Context(ctx context.Context) *ProjectsLocationsCatalogsCreateCall
- func (c *ProjectsLocationsCatalogsCreateCall) Do(opts ...googleapi.CallOption) (*Catalog, error)
- func (c *ProjectsLocationsCatalogsCreateCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsCreateCall
- func (c *ProjectsLocationsCatalogsCreateCall) Header() http.Header
- type ProjectsLocationsCatalogsDatabasesCreateCall
- func (c *ProjectsLocationsCatalogsDatabasesCreateCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesCreateCall
- func (c *ProjectsLocationsCatalogsDatabasesCreateCall) DatabaseId(databaseId string) *ProjectsLocationsCatalogsDatabasesCreateCall
- func (c *ProjectsLocationsCatalogsDatabasesCreateCall) Do(opts ...googleapi.CallOption) (*Database, error)
- func (c *ProjectsLocationsCatalogsDatabasesCreateCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesCreateCall
- func (c *ProjectsLocationsCatalogsDatabasesCreateCall) Header() http.Header
- type ProjectsLocationsCatalogsDatabasesDeleteCall
- func (c *ProjectsLocationsCatalogsDatabasesDeleteCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesDeleteCall
- func (c *ProjectsLocationsCatalogsDatabasesDeleteCall) Do(opts ...googleapi.CallOption) (*Database, error)
- func (c *ProjectsLocationsCatalogsDatabasesDeleteCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesDeleteCall
- func (c *ProjectsLocationsCatalogsDatabasesDeleteCall) Header() http.Header
- type ProjectsLocationsCatalogsDatabasesGetCall
- func (c *ProjectsLocationsCatalogsDatabasesGetCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesGetCall
- func (c *ProjectsLocationsCatalogsDatabasesGetCall) Do(opts ...googleapi.CallOption) (*Database, error)
- func (c *ProjectsLocationsCatalogsDatabasesGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesGetCall
- func (c *ProjectsLocationsCatalogsDatabasesGetCall) Header() http.Header
- func (c *ProjectsLocationsCatalogsDatabasesGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsDatabasesGetCall
- type ProjectsLocationsCatalogsDatabasesListCall
- func (c *ProjectsLocationsCatalogsDatabasesListCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesListCall
- func (c *ProjectsLocationsCatalogsDatabasesListCall) Do(opts ...googleapi.CallOption) (*ListDatabasesResponse, error)
- func (c *ProjectsLocationsCatalogsDatabasesListCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesListCall
- func (c *ProjectsLocationsCatalogsDatabasesListCall) Header() http.Header
- func (c *ProjectsLocationsCatalogsDatabasesListCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsDatabasesListCall
- func (c *ProjectsLocationsCatalogsDatabasesListCall) PageSize(pageSize int64) *ProjectsLocationsCatalogsDatabasesListCall
- func (c *ProjectsLocationsCatalogsDatabasesListCall) PageToken(pageToken string) *ProjectsLocationsCatalogsDatabasesListCall
- func (c *ProjectsLocationsCatalogsDatabasesListCall) Pages(ctx context.Context, f func(*ListDatabasesResponse) error) error
- type ProjectsLocationsCatalogsDatabasesPatchCall
- func (c *ProjectsLocationsCatalogsDatabasesPatchCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesPatchCall
- func (c *ProjectsLocationsCatalogsDatabasesPatchCall) Do(opts ...googleapi.CallOption) (*Database, error)
- func (c *ProjectsLocationsCatalogsDatabasesPatchCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesPatchCall
- func (c *ProjectsLocationsCatalogsDatabasesPatchCall) Header() http.Header
- func (c *ProjectsLocationsCatalogsDatabasesPatchCall) UpdateMask(updateMask string) *ProjectsLocationsCatalogsDatabasesPatchCall
- type ProjectsLocationsCatalogsDatabasesService
- func (r *ProjectsLocationsCatalogsDatabasesService) Create(parent string, database *Database) *ProjectsLocationsCatalogsDatabasesCreateCall
- func (r *ProjectsLocationsCatalogsDatabasesService) Delete(name string) *ProjectsLocationsCatalogsDatabasesDeleteCall
- func (r *ProjectsLocationsCatalogsDatabasesService) Get(name string) *ProjectsLocationsCatalogsDatabasesGetCall
- func (r *ProjectsLocationsCatalogsDatabasesService) List(parent string) *ProjectsLocationsCatalogsDatabasesListCall
- func (r *ProjectsLocationsCatalogsDatabasesService) Patch(name string, database *Database) *ProjectsLocationsCatalogsDatabasesPatchCall
- type ProjectsLocationsCatalogsDatabasesTablesCreateCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesCreateCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesCreateCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesCreateCall) Do(opts ...googleapi.CallOption) (*Table, error)
- func (c *ProjectsLocationsCatalogsDatabasesTablesCreateCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesCreateCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesCreateCall) Header() http.Header
- func (c *ProjectsLocationsCatalogsDatabasesTablesCreateCall) TableId(tableId string) *ProjectsLocationsCatalogsDatabasesTablesCreateCall
- type ProjectsLocationsCatalogsDatabasesTablesDeleteCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesDeleteCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Do(opts ...googleapi.CallOption) (*Table, error)
- func (c *ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesDeleteCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Header() http.Header
- type ProjectsLocationsCatalogsDatabasesTablesGetCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesGetCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesGetCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesGetCall) Do(opts ...googleapi.CallOption) (*Table, error)
- func (c *ProjectsLocationsCatalogsDatabasesTablesGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesGetCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesGetCall) Header() http.Header
- func (c *ProjectsLocationsCatalogsDatabasesTablesGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsDatabasesTablesGetCall
- type ProjectsLocationsCatalogsDatabasesTablesListCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesListCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) Do(opts ...googleapi.CallOption) (*ListTablesResponse, error)
- func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesListCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) Header() http.Header
- func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsDatabasesTablesListCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) PageSize(pageSize int64) *ProjectsLocationsCatalogsDatabasesTablesListCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) PageToken(pageToken string) *ProjectsLocationsCatalogsDatabasesTablesListCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) Pages(ctx context.Context, f func(*ListTablesResponse) error) error
- func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) View(view string) *ProjectsLocationsCatalogsDatabasesTablesListCall
- type ProjectsLocationsCatalogsDatabasesTablesPatchCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesPatchCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesPatchCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesPatchCall) Do(opts ...googleapi.CallOption) (*Table, error)
- func (c *ProjectsLocationsCatalogsDatabasesTablesPatchCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesPatchCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesPatchCall) Header() http.Header
- func (c *ProjectsLocationsCatalogsDatabasesTablesPatchCall) UpdateMask(updateMask string) *ProjectsLocationsCatalogsDatabasesTablesPatchCall
- type ProjectsLocationsCatalogsDatabasesTablesRenameCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesRenameCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesRenameCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesRenameCall) Do(opts ...googleapi.CallOption) (*Table, error)
- func (c *ProjectsLocationsCatalogsDatabasesTablesRenameCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesRenameCall
- func (c *ProjectsLocationsCatalogsDatabasesTablesRenameCall) Header() http.Header
- type ProjectsLocationsCatalogsDatabasesTablesService
- func (r *ProjectsLocationsCatalogsDatabasesTablesService) Create(parent string, table *Table) *ProjectsLocationsCatalogsDatabasesTablesCreateCall
- func (r *ProjectsLocationsCatalogsDatabasesTablesService) Delete(name string) *ProjectsLocationsCatalogsDatabasesTablesDeleteCall
- func (r *ProjectsLocationsCatalogsDatabasesTablesService) Get(name string) *ProjectsLocationsCatalogsDatabasesTablesGetCall
- func (r *ProjectsLocationsCatalogsDatabasesTablesService) List(parent string) *ProjectsLocationsCatalogsDatabasesTablesListCall
- func (r *ProjectsLocationsCatalogsDatabasesTablesService) Patch(name string, table *Table) *ProjectsLocationsCatalogsDatabasesTablesPatchCall
- func (r *ProjectsLocationsCatalogsDatabasesTablesService) Rename(name string, renametablerequest *RenameTableRequest) *ProjectsLocationsCatalogsDatabasesTablesRenameCall
- type ProjectsLocationsCatalogsDeleteCall
- func (c *ProjectsLocationsCatalogsDeleteCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDeleteCall
- func (c *ProjectsLocationsCatalogsDeleteCall) Do(opts ...googleapi.CallOption) (*Catalog, error)
- func (c *ProjectsLocationsCatalogsDeleteCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDeleteCall
- func (c *ProjectsLocationsCatalogsDeleteCall) Header() http.Header
- type ProjectsLocationsCatalogsGetCall
- func (c *ProjectsLocationsCatalogsGetCall) Context(ctx context.Context) *ProjectsLocationsCatalogsGetCall
- func (c *ProjectsLocationsCatalogsGetCall) Do(opts ...googleapi.CallOption) (*Catalog, error)
- func (c *ProjectsLocationsCatalogsGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsGetCall
- func (c *ProjectsLocationsCatalogsGetCall) Header() http.Header
- func (c *ProjectsLocationsCatalogsGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsGetCall
- type ProjectsLocationsCatalogsListCall
- func (c *ProjectsLocationsCatalogsListCall) Context(ctx context.Context) *ProjectsLocationsCatalogsListCall
- func (c *ProjectsLocationsCatalogsListCall) Do(opts ...googleapi.CallOption) (*ListCatalogsResponse, error)
- func (c *ProjectsLocationsCatalogsListCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsListCall
- func (c *ProjectsLocationsCatalogsListCall) Header() http.Header
- func (c *ProjectsLocationsCatalogsListCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsListCall
- func (c *ProjectsLocationsCatalogsListCall) PageSize(pageSize int64) *ProjectsLocationsCatalogsListCall
- func (c *ProjectsLocationsCatalogsListCall) PageToken(pageToken string) *ProjectsLocationsCatalogsListCall
- func (c *ProjectsLocationsCatalogsListCall) Pages(ctx context.Context, f func(*ListCatalogsResponse) error) error
- type ProjectsLocationsCatalogsService
- func (r *ProjectsLocationsCatalogsService) Create(parent string, catalog *Catalog) *ProjectsLocationsCatalogsCreateCall
- func (r *ProjectsLocationsCatalogsService) Delete(name string) *ProjectsLocationsCatalogsDeleteCall
- func (r *ProjectsLocationsCatalogsService) Get(name string) *ProjectsLocationsCatalogsGetCall
- func (r *ProjectsLocationsCatalogsService) List(parent string) *ProjectsLocationsCatalogsListCall
- type ProjectsLocationsService
- type ProjectsService
- type RenameTableRequest
- type SerDeInfo
- type Service
- type StorageDescriptor
- type Table
Constants ¶
const ( // View and manage your data in Google BigQuery and see the email // address for your Google Account BigqueryScope = "https://www.googleapis.com/auth/bigquery" // See, edit, configure, and delete your Google Cloud data and see the // email address for your Google Account. CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform" )
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Catalog ¶
type Catalog struct { // CreateTime: Output only. The creation time of the catalog. CreateTime string `json:"createTime,omitempty"` // DeleteTime: Output only. The deletion time of the catalog. Only set // after the catalog is deleted. DeleteTime string `json:"deleteTime,omitempty"` // ExpireTime: Output only. The time when this catalog is considered // expired. Only set after the catalog is deleted. ExpireTime string `json:"expireTime,omitempty"` // Name: Output only. The resource name. Format: // projects/{project_id_or_number}/locations/{location_id}/catalogs/{cata // log_id} Name string `json:"name,omitempty"` // UpdateTime: Output only. The last modification time of the catalog. UpdateTime string `json:"updateTime,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "CreateTime") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "CreateTime") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
Catalog: Catalog is the container of databases.
func (*Catalog) MarshalJSON ¶
type Database ¶
type Database struct { // CreateTime: Output only. The creation time of the database. CreateTime string `json:"createTime,omitempty"` // DeleteTime: Output only. The deletion time of the database. Only set // after the database is deleted. DeleteTime string `json:"deleteTime,omitempty"` // ExpireTime: Output only. The time when this database is considered // expired. Only set after the database is deleted. ExpireTime string `json:"expireTime,omitempty"` // HiveOptions: Options of a Hive database. HiveOptions *HiveDatabaseOptions `json:"hiveOptions,omitempty"` // Name: Output only. The resource name. Format: // projects/{project_id_or_number}/locations/{location_id}/catalogs/{cata // log_id}/databases/{database_id} Name string `json:"name,omitempty"` // Type: The database type. // // Possible values: // "TYPE_UNSPECIFIED" - The type is not specified. // "HIVE" - Represents a database storing tables compatible with Hive // Metastore tables. Type string `json:"type,omitempty"` // UpdateTime: Output only. The last modification time of the database. UpdateTime string `json:"updateTime,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "CreateTime") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "CreateTime") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
Database: Database is the container of tables.
func (*Database) MarshalJSON ¶
type HiveDatabaseOptions ¶
type HiveDatabaseOptions struct { // LocationUri: Cloud Storage folder URI where the database data is // stored, starting with "gs://". LocationUri string `json:"locationUri,omitempty"` // Parameters: Stores user supplied Hive database parameters. Parameters map[string]string `json:"parameters,omitempty"` // ForceSendFields is a list of field names (e.g. "LocationUri") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "LocationUri") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
HiveDatabaseOptions: Options of a Hive database.
func (*HiveDatabaseOptions) MarshalJSON ¶
func (s *HiveDatabaseOptions) MarshalJSON() ([]byte, error)
type HiveTableOptions ¶
type HiveTableOptions struct { // Parameters: Stores user supplied Hive table parameters. Parameters map[string]string `json:"parameters,omitempty"` // StorageDescriptor: Stores physical storage information of the data. StorageDescriptor *StorageDescriptor `json:"storageDescriptor,omitempty"` // TableType: Hive table type. For example, MANAGED_TABLE, // EXTERNAL_TABLE. TableType string `json:"tableType,omitempty"` // ForceSendFields is a list of field names (e.g. "Parameters") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Parameters") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
HiveTableOptions: Options of a Hive table.
func (*HiveTableOptions) MarshalJSON ¶
func (s *HiveTableOptions) MarshalJSON() ([]byte, error)
type ListCatalogsResponse ¶
type ListCatalogsResponse struct { // Catalogs: The catalogs from the specified project. Catalogs []*Catalog `json:"catalogs,omitempty"` // NextPageToken: A token, which can be sent as `page_token` to retrieve // the next page. If this field is omitted, there are no subsequent // pages. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Catalogs") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Catalogs") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ListCatalogsResponse: Response message for the ListCatalogs method.
func (*ListCatalogsResponse) MarshalJSON ¶
func (s *ListCatalogsResponse) MarshalJSON() ([]byte, error)
type ListDatabasesResponse ¶
type ListDatabasesResponse struct { // Databases: The databases from the specified catalog. Databases []*Database `json:"databases,omitempty"` // NextPageToken: A token, which can be sent as `page_token` to retrieve // the next page. If this field is omitted, there are no subsequent // pages. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Databases") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Databases") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ListDatabasesResponse: Response message for the ListDatabases method.
func (*ListDatabasesResponse) MarshalJSON ¶
func (s *ListDatabasesResponse) MarshalJSON() ([]byte, error)
type ListTablesResponse ¶
type ListTablesResponse struct { // NextPageToken: A token, which can be sent as `page_token` to retrieve // the next page. If this field is omitted, there are no subsequent // pages. NextPageToken string `json:"nextPageToken,omitempty"` // Tables: The tables from the specified database. Tables []*Table `json:"tables,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "NextPageToken") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "NextPageToken") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ListTablesResponse: Response message for the ListTables method.
func (*ListTablesResponse) MarshalJSON ¶
func (s *ListTablesResponse) MarshalJSON() ([]byte, error)
type ProjectsLocationsCatalogsCreateCall ¶
type ProjectsLocationsCatalogsCreateCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsCreateCall) CatalogId ¶
func (c *ProjectsLocationsCatalogsCreateCall) CatalogId(catalogId string) *ProjectsLocationsCatalogsCreateCall
CatalogId sets the optional parameter "catalogId": Required. The ID to use for the catalog, which will become the final component of the catalog's resource name.
func (*ProjectsLocationsCatalogsCreateCall) Context ¶
func (c *ProjectsLocationsCatalogsCreateCall) Context(ctx context.Context) *ProjectsLocationsCatalogsCreateCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsCreateCall) Do ¶
func (c *ProjectsLocationsCatalogsCreateCall) Do(opts ...googleapi.CallOption) (*Catalog, error)
Do executes the "biglake.projects.locations.catalogs.create" call. Exactly one of *Catalog or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Catalog.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsCreateCall) Fields ¶
func (c *ProjectsLocationsCatalogsCreateCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsCreateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsCreateCall) Header ¶
func (c *ProjectsLocationsCatalogsCreateCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type ProjectsLocationsCatalogsDatabasesCreateCall ¶
type ProjectsLocationsCatalogsDatabasesCreateCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesCreateCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesCreateCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesCreateCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesCreateCall) DatabaseId ¶
func (c *ProjectsLocationsCatalogsDatabasesCreateCall) DatabaseId(databaseId string) *ProjectsLocationsCatalogsDatabasesCreateCall
DatabaseId sets the optional parameter "databaseId": Required. The ID to use for the database, which will become the final component of the database's resource name.
func (*ProjectsLocationsCatalogsDatabasesCreateCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesCreateCall) Do(opts ...googleapi.CallOption) (*Database, error)
Do executes the "biglake.projects.locations.catalogs.databases.create" call. Exactly one of *Database or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Database.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesCreateCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesCreateCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesCreateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesCreateCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesCreateCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type ProjectsLocationsCatalogsDatabasesDeleteCall ¶
type ProjectsLocationsCatalogsDatabasesDeleteCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesDeleteCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesDeleteCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesDeleteCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesDeleteCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesDeleteCall) Do(opts ...googleapi.CallOption) (*Database, error)
Do executes the "biglake.projects.locations.catalogs.databases.delete" call. Exactly one of *Database or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Database.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesDeleteCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesDeleteCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesDeleteCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesDeleteCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type ProjectsLocationsCatalogsDatabasesGetCall ¶
type ProjectsLocationsCatalogsDatabasesGetCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesGetCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesGetCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesGetCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesGetCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesGetCall) Do(opts ...googleapi.CallOption) (*Database, error)
Do executes the "biglake.projects.locations.catalogs.databases.get" call. Exactly one of *Database or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Database.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesGetCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesGetCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesGetCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*ProjectsLocationsCatalogsDatabasesGetCall) IfNoneMatch ¶
func (c *ProjectsLocationsCatalogsDatabasesGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsDatabasesGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type ProjectsLocationsCatalogsDatabasesListCall ¶
type ProjectsLocationsCatalogsDatabasesListCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesListCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesListCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesListCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesListCall) Do(opts ...googleapi.CallOption) (*ListDatabasesResponse, error)
Do executes the "biglake.projects.locations.catalogs.databases.list" call. Exactly one of *ListDatabasesResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListDatabasesResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesListCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesListCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesListCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*ProjectsLocationsCatalogsDatabasesListCall) IfNoneMatch ¶
func (c *ProjectsLocationsCatalogsDatabasesListCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsDatabasesListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*ProjectsLocationsCatalogsDatabasesListCall) PageSize ¶
func (c *ProjectsLocationsCatalogsDatabasesListCall) PageSize(pageSize int64) *ProjectsLocationsCatalogsDatabasesListCall
PageSize sets the optional parameter "pageSize": The maximum number of databases to return. The service may return fewer than this value. If unspecified, at most 50 databases will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
func (*ProjectsLocationsCatalogsDatabasesListCall) PageToken ¶
func (c *ProjectsLocationsCatalogsDatabasesListCall) PageToken(pageToken string) *ProjectsLocationsCatalogsDatabasesListCall
PageToken sets the optional parameter "pageToken": A page token, received from a previous `ListDatabases` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListDatabases` must match the call that provided the page token.
func (*ProjectsLocationsCatalogsDatabasesListCall) Pages ¶
func (c *ProjectsLocationsCatalogsDatabasesListCall) Pages(ctx context.Context, f func(*ListDatabasesResponse) error) error
Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.
type ProjectsLocationsCatalogsDatabasesPatchCall ¶
type ProjectsLocationsCatalogsDatabasesPatchCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesPatchCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesPatchCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesPatchCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesPatchCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesPatchCall) Do(opts ...googleapi.CallOption) (*Database, error)
Do executes the "biglake.projects.locations.catalogs.databases.patch" call. Exactly one of *Database or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Database.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesPatchCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesPatchCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesPatchCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesPatchCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesPatchCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*ProjectsLocationsCatalogsDatabasesPatchCall) UpdateMask ¶
func (c *ProjectsLocationsCatalogsDatabasesPatchCall) UpdateMask(updateMask string) *ProjectsLocationsCatalogsDatabasesPatchCall
UpdateMask sets the optional parameter "updateMask": The list of fields to update. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask If not set, defaults to all of the fields that are allowed to update.
type ProjectsLocationsCatalogsDatabasesService ¶
type ProjectsLocationsCatalogsDatabasesService struct { Tables *ProjectsLocationsCatalogsDatabasesTablesService // contains filtered or unexported fields }
func NewProjectsLocationsCatalogsDatabasesService ¶
func NewProjectsLocationsCatalogsDatabasesService(s *Service) *ProjectsLocationsCatalogsDatabasesService
func (*ProjectsLocationsCatalogsDatabasesService) Create ¶
func (r *ProjectsLocationsCatalogsDatabasesService) Create(parent string, database *Database) *ProjectsLocationsCatalogsDatabasesCreateCall
Create: Creates a new database.
- parent: The parent resource where this database will be created. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}.
func (*ProjectsLocationsCatalogsDatabasesService) Delete ¶
func (r *ProjectsLocationsCatalogsDatabasesService) Delete(name string) *ProjectsLocationsCatalogsDatabasesDeleteCall
Delete: Deletes an existing database specified by the database ID.
- name: The name of the database to delete. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}/databases/{database_id}.
func (*ProjectsLocationsCatalogsDatabasesService) Get ¶
func (r *ProjectsLocationsCatalogsDatabasesService) Get(name string) *ProjectsLocationsCatalogsDatabasesGetCall
Get: Gets the database specified by the resource name.
- name: The name of the database to retrieve. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}/databases/{database_id}.
func (*ProjectsLocationsCatalogsDatabasesService) List ¶
func (r *ProjectsLocationsCatalogsDatabasesService) List(parent string) *ProjectsLocationsCatalogsDatabasesListCall
List: List all databases in a specified catalog.
- parent: The parent, which owns this collection of databases. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}.
func (*ProjectsLocationsCatalogsDatabasesService) Patch ¶
func (r *ProjectsLocationsCatalogsDatabasesService) Patch(name string, database *Database) *ProjectsLocationsCatalogsDatabasesPatchCall
Patch: Updates an existing database specified by the database ID.
- name: Output only. The resource name. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}/databases/{database_id}.
type ProjectsLocationsCatalogsDatabasesTablesCreateCall ¶
type ProjectsLocationsCatalogsDatabasesTablesCreateCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesTablesCreateCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesCreateCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesCreateCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesTablesCreateCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesCreateCall) Do(opts ...googleapi.CallOption) (*Table, error)
Do executes the "biglake.projects.locations.catalogs.databases.tables.create" call. Exactly one of *Table or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Table.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesTablesCreateCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesCreateCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesCreateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesTablesCreateCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesCreateCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*ProjectsLocationsCatalogsDatabasesTablesCreateCall) TableId ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesCreateCall) TableId(tableId string) *ProjectsLocationsCatalogsDatabasesTablesCreateCall
TableId sets the optional parameter "tableId": Required. The ID to use for the table, which will become the final component of the table's resource name.
type ProjectsLocationsCatalogsDatabasesTablesDeleteCall ¶
type ProjectsLocationsCatalogsDatabasesTablesDeleteCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesDeleteCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Do(opts ...googleapi.CallOption) (*Table, error)
Do executes the "biglake.projects.locations.catalogs.databases.tables.delete" call. Exactly one of *Table or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Table.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesDeleteCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type ProjectsLocationsCatalogsDatabasesTablesGetCall ¶
type ProjectsLocationsCatalogsDatabasesTablesGetCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesTablesGetCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesGetCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesGetCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesTablesGetCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesGetCall) Do(opts ...googleapi.CallOption) (*Table, error)
Do executes the "biglake.projects.locations.catalogs.databases.tables.get" call. Exactly one of *Table or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Table.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesTablesGetCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesTablesGetCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesGetCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*ProjectsLocationsCatalogsDatabasesTablesGetCall) IfNoneMatch ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsDatabasesTablesGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type ProjectsLocationsCatalogsDatabasesTablesListCall ¶
type ProjectsLocationsCatalogsDatabasesTablesListCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesTablesListCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesTablesListCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) Do(opts ...googleapi.CallOption) (*ListTablesResponse, error)
Do executes the "biglake.projects.locations.catalogs.databases.tables.list" call. Exactly one of *ListTablesResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListTablesResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesTablesListCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesTablesListCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*ProjectsLocationsCatalogsDatabasesTablesListCall) IfNoneMatch ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsDatabasesTablesListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*ProjectsLocationsCatalogsDatabasesTablesListCall) PageSize ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) PageSize(pageSize int64) *ProjectsLocationsCatalogsDatabasesTablesListCall
PageSize sets the optional parameter "pageSize": The maximum number of tables to return. The service may return fewer than this value. If unspecified, at most 50 tables will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
func (*ProjectsLocationsCatalogsDatabasesTablesListCall) PageToken ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) PageToken(pageToken string) *ProjectsLocationsCatalogsDatabasesTablesListCall
PageToken sets the optional parameter "pageToken": A page token, received from a previous `ListTables` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListTables` must match the call that provided the page token.
func (*ProjectsLocationsCatalogsDatabasesTablesListCall) Pages ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) Pages(ctx context.Context, f func(*ListTablesResponse) error) error
Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.
func (*ProjectsLocationsCatalogsDatabasesTablesListCall) View ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesListCall) View(view string) *ProjectsLocationsCatalogsDatabasesTablesListCall
View sets the optional parameter "view": The view for the returned tables.
Possible values:
"TABLE_VIEW_UNSPECIFIED" - Default value. The API will default to
the BASIC view.
"BASIC" - Include only table names. This is the default value. "FULL" - Include everything.
type ProjectsLocationsCatalogsDatabasesTablesPatchCall ¶
type ProjectsLocationsCatalogsDatabasesTablesPatchCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesTablesPatchCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesPatchCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesPatchCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesTablesPatchCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesPatchCall) Do(opts ...googleapi.CallOption) (*Table, error)
Do executes the "biglake.projects.locations.catalogs.databases.tables.patch" call. Exactly one of *Table or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Table.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesTablesPatchCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesPatchCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesPatchCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesTablesPatchCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesPatchCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*ProjectsLocationsCatalogsDatabasesTablesPatchCall) UpdateMask ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesPatchCall) UpdateMask(updateMask string) *ProjectsLocationsCatalogsDatabasesTablesPatchCall
UpdateMask sets the optional parameter "updateMask": The list of fields to update. For the `FieldMask` definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmask If not set, defaults to all of the fields that are allowed to update.
type ProjectsLocationsCatalogsDatabasesTablesRenameCall ¶
type ProjectsLocationsCatalogsDatabasesTablesRenameCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDatabasesTablesRenameCall) Context ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesRenameCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDatabasesTablesRenameCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDatabasesTablesRenameCall) Do ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesRenameCall) Do(opts ...googleapi.CallOption) (*Table, error)
Do executes the "biglake.projects.locations.catalogs.databases.tables.rename" call. Exactly one of *Table or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Table.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDatabasesTablesRenameCall) Fields ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesRenameCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDatabasesTablesRenameCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDatabasesTablesRenameCall) Header ¶
func (c *ProjectsLocationsCatalogsDatabasesTablesRenameCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type ProjectsLocationsCatalogsDatabasesTablesService ¶
type ProjectsLocationsCatalogsDatabasesTablesService struct {
// contains filtered or unexported fields
}
func NewProjectsLocationsCatalogsDatabasesTablesService ¶
func NewProjectsLocationsCatalogsDatabasesTablesService(s *Service) *ProjectsLocationsCatalogsDatabasesTablesService
func (*ProjectsLocationsCatalogsDatabasesTablesService) Create ¶
func (r *ProjectsLocationsCatalogsDatabasesTablesService) Create(parent string, table *Table) *ProjectsLocationsCatalogsDatabasesTablesCreateCall
Create: Creates a new table.
- parent: The parent resource where this table will be created. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}/databases/{database_id}.
func (*ProjectsLocationsCatalogsDatabasesTablesService) Delete ¶
func (r *ProjectsLocationsCatalogsDatabasesTablesService) Delete(name string) *ProjectsLocationsCatalogsDatabasesTablesDeleteCall
Delete: Deletes an existing table specified by the table ID.
- name: The name of the table to delete. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}/databases/{database_id}/tables/{table_id}.
func (*ProjectsLocationsCatalogsDatabasesTablesService) Get ¶
func (r *ProjectsLocationsCatalogsDatabasesTablesService) Get(name string) *ProjectsLocationsCatalogsDatabasesTablesGetCall
Get: Gets the table specified by the resource name.
- name: The name of the table to retrieve. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}/databases/{database_id}/tables/{table_id}.
func (*ProjectsLocationsCatalogsDatabasesTablesService) List ¶
func (r *ProjectsLocationsCatalogsDatabasesTablesService) List(parent string) *ProjectsLocationsCatalogsDatabasesTablesListCall
List: List all tables in a specified database.
- parent: The parent, which owns this collection of tables. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}/databases/{database_id}.
func (*ProjectsLocationsCatalogsDatabasesTablesService) Patch ¶
func (r *ProjectsLocationsCatalogsDatabasesTablesService) Patch(name string, table *Table) *ProjectsLocationsCatalogsDatabasesTablesPatchCall
Patch: Updates an existing table specified by the table ID.
- name: Output only. The resource name. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}/databases/{database_id}/tables/{table_id}.
func (*ProjectsLocationsCatalogsDatabasesTablesService) Rename ¶
func (r *ProjectsLocationsCatalogsDatabasesTablesService) Rename(name string, renametablerequest *RenameTableRequest) *ProjectsLocationsCatalogsDatabasesTablesRenameCall
Rename: Renames an existing table specified by the table ID.
- name: The table's `name` field is used to identify the table to rename. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}/databases/{database_id}/tables/{table_id}.
type ProjectsLocationsCatalogsDeleteCall ¶
type ProjectsLocationsCatalogsDeleteCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsDeleteCall) Context ¶
func (c *ProjectsLocationsCatalogsDeleteCall) Context(ctx context.Context) *ProjectsLocationsCatalogsDeleteCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsDeleteCall) Do ¶
func (c *ProjectsLocationsCatalogsDeleteCall) Do(opts ...googleapi.CallOption) (*Catalog, error)
Do executes the "biglake.projects.locations.catalogs.delete" call. Exactly one of *Catalog or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Catalog.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsDeleteCall) Fields ¶
func (c *ProjectsLocationsCatalogsDeleteCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsDeleteCall) Header ¶
func (c *ProjectsLocationsCatalogsDeleteCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type ProjectsLocationsCatalogsGetCall ¶
type ProjectsLocationsCatalogsGetCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsGetCall) Context ¶
func (c *ProjectsLocationsCatalogsGetCall) Context(ctx context.Context) *ProjectsLocationsCatalogsGetCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsGetCall) Do ¶
func (c *ProjectsLocationsCatalogsGetCall) Do(opts ...googleapi.CallOption) (*Catalog, error)
Do executes the "biglake.projects.locations.catalogs.get" call. Exactly one of *Catalog or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Catalog.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsGetCall) Fields ¶
func (c *ProjectsLocationsCatalogsGetCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsGetCall) Header ¶
func (c *ProjectsLocationsCatalogsGetCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*ProjectsLocationsCatalogsGetCall) IfNoneMatch ¶
func (c *ProjectsLocationsCatalogsGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type ProjectsLocationsCatalogsListCall ¶
type ProjectsLocationsCatalogsListCall struct {
// contains filtered or unexported fields
}
func (*ProjectsLocationsCatalogsListCall) Context ¶
func (c *ProjectsLocationsCatalogsListCall) Context(ctx context.Context) *ProjectsLocationsCatalogsListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ProjectsLocationsCatalogsListCall) Do ¶
func (c *ProjectsLocationsCatalogsListCall) Do(opts ...googleapi.CallOption) (*ListCatalogsResponse, error)
Do executes the "biglake.projects.locations.catalogs.list" call. Exactly one of *ListCatalogsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListCatalogsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ProjectsLocationsCatalogsListCall) Fields ¶
func (c *ProjectsLocationsCatalogsListCall) Fields(s ...googleapi.Field) *ProjectsLocationsCatalogsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ProjectsLocationsCatalogsListCall) Header ¶
func (c *ProjectsLocationsCatalogsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*ProjectsLocationsCatalogsListCall) IfNoneMatch ¶
func (c *ProjectsLocationsCatalogsListCall) IfNoneMatch(entityTag string) *ProjectsLocationsCatalogsListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*ProjectsLocationsCatalogsListCall) PageSize ¶
func (c *ProjectsLocationsCatalogsListCall) PageSize(pageSize int64) *ProjectsLocationsCatalogsListCall
PageSize sets the optional parameter "pageSize": The maximum number of catalogs to return. The service may return fewer than this value. If unspecified, at most 50 catalogs will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
func (*ProjectsLocationsCatalogsListCall) PageToken ¶
func (c *ProjectsLocationsCatalogsListCall) PageToken(pageToken string) *ProjectsLocationsCatalogsListCall
PageToken sets the optional parameter "pageToken": A page token, received from a previous `ListCatalogs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListCatalogs` must match the call that provided the page token.
func (*ProjectsLocationsCatalogsListCall) Pages ¶
func (c *ProjectsLocationsCatalogsListCall) Pages(ctx context.Context, f func(*ListCatalogsResponse) error) error
Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.
type ProjectsLocationsCatalogsService ¶
type ProjectsLocationsCatalogsService struct { Databases *ProjectsLocationsCatalogsDatabasesService // contains filtered or unexported fields }
func NewProjectsLocationsCatalogsService ¶
func NewProjectsLocationsCatalogsService(s *Service) *ProjectsLocationsCatalogsService
func (*ProjectsLocationsCatalogsService) Create ¶
func (r *ProjectsLocationsCatalogsService) Create(parent string, catalog *Catalog) *ProjectsLocationsCatalogsCreateCall
Create: Creates a new catalog.
- parent: The parent resource where this catalog will be created. Format: projects/{project_id_or_number}/locations/{location_id}.
func (*ProjectsLocationsCatalogsService) Delete ¶
func (r *ProjectsLocationsCatalogsService) Delete(name string) *ProjectsLocationsCatalogsDeleteCall
Delete: Deletes an existing catalog specified by the catalog ID.
- name: The name of the catalog to delete. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}.
func (*ProjectsLocationsCatalogsService) Get ¶
func (r *ProjectsLocationsCatalogsService) Get(name string) *ProjectsLocationsCatalogsGetCall
Get: Gets the catalog specified by the resource name.
- name: The name of the catalog to retrieve. Format: projects/{project_id_or_number}/locations/{location_id}/catalogs/{ca talog_id}.
func (*ProjectsLocationsCatalogsService) List ¶
func (r *ProjectsLocationsCatalogsService) List(parent string) *ProjectsLocationsCatalogsListCall
List: List all catalogs in a specified project.
- parent: The parent, which owns this collection of catalogs. Format: projects/{project_id_or_number}/locations/{location_id}.
type ProjectsLocationsService ¶
type ProjectsLocationsService struct { Catalogs *ProjectsLocationsCatalogsService // contains filtered or unexported fields }
func NewProjectsLocationsService ¶
func NewProjectsLocationsService(s *Service) *ProjectsLocationsService
type ProjectsService ¶
type ProjectsService struct { Locations *ProjectsLocationsService // contains filtered or unexported fields }
func NewProjectsService ¶
func NewProjectsService(s *Service) *ProjectsService
type RenameTableRequest ¶
type RenameTableRequest struct { // NewName: Required. The new `name` for the specified table, must be in // the same database. Format: // projects/{project_id_or_number}/locations/{location_id}/catalogs/{cata // log_id}/databases/{database_id}/tables/{table_id} NewName string `json:"newName,omitempty"` // ForceSendFields is a list of field names (e.g. "NewName") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "NewName") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
RenameTableRequest: Request message for the RenameTable method in MetastoreService
func (*RenameTableRequest) MarshalJSON ¶
func (s *RenameTableRequest) MarshalJSON() ([]byte, error)
type SerDeInfo ¶
type SerDeInfo struct { // SerializationLib: The fully qualified Java class name of the // serialization library. SerializationLib string `json:"serializationLib,omitempty"` // ForceSendFields is a list of field names (e.g. "SerializationLib") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "SerializationLib") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` }
SerDeInfo: Serializer and deserializer information.
func (*SerDeInfo) MarshalJSON ¶
type Service ¶
type Service struct { BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Projects *ProjectsService // contains filtered or unexported fields }
func New
deprecated
New creates a new Service. It uses the provided http.Client for requests.
Deprecated: please use NewService instead. To provide a custom HTTP client, use option.WithHTTPClient. If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.
func NewService ¶
NewService creates a new Service.
type StorageDescriptor ¶
type StorageDescriptor struct { // InputFormat: The fully qualified Java class name of the input format. InputFormat string `json:"inputFormat,omitempty"` // LocationUri: Cloud Storage folder URI where the table data is stored, // starting with "gs://". LocationUri string `json:"locationUri,omitempty"` // OutputFormat: The fully qualified Java class name of the output // format. OutputFormat string `json:"outputFormat,omitempty"` // SerdeInfo: Serializer and deserializer information. SerdeInfo *SerDeInfo `json:"serdeInfo,omitempty"` // ForceSendFields is a list of field names (e.g. "InputFormat") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "InputFormat") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
StorageDescriptor: Stores physical storage information of the data.
func (*StorageDescriptor) MarshalJSON ¶
func (s *StorageDescriptor) MarshalJSON() ([]byte, error)
type Table ¶
type Table struct { // CreateTime: Output only. The creation time of the table. CreateTime string `json:"createTime,omitempty"` // DeleteTime: Output only. The deletion time of the table. Only set // after the table is deleted. DeleteTime string `json:"deleteTime,omitempty"` // Etag: The checksum of a table object computed by the server based on // the value of other fields. It may be sent on update requests to // ensure the client has an up-to-date value before proceeding. It is // only checked for update table operations. Etag string `json:"etag,omitempty"` // ExpireTime: Output only. The time when this table is considered // expired. Only set after the table is deleted. ExpireTime string `json:"expireTime,omitempty"` // HiveOptions: Options of a Hive table. HiveOptions *HiveTableOptions `json:"hiveOptions,omitempty"` // Name: Output only. The resource name. Format: // projects/{project_id_or_number}/locations/{location_id}/catalogs/{cata // log_id}/databases/{database_id}/tables/{table_id} Name string `json:"name,omitempty"` // Type: The table type. // // Possible values: // "TYPE_UNSPECIFIED" - The type is not specified. // "HIVE" - Represents a table compatible with Hive Metastore tables. Type string `json:"type,omitempty"` // UpdateTime: Output only. The last modification time of the table. UpdateTime string `json:"updateTime,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "CreateTime") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "CreateTime") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
Table: Represents a table.