Movatterモバイル変換


[0]ホーム

URL:


biglake

package
v0.257.0Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 2, 2025 License:BSD-3-ClauseImports:18Imported by:0

Details

Repository

github.com/googleapis/google-api-go-client

Links

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, thislibrary is considered complete and is in maintenance mode. This meansthat we will address critical bugs and security issues but will not addany 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 forauthentication. For information on how to create and obtain ApplicationDefault Credentials, seehttps://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, usegoogle.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 APIkeys), usegoogle.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 OAuthflow, usegoogle.golang.org/api/option.WithTokenSource:

config := &oauth2.Config{...}// ...token, err := config.Exchange(ctx, ...)biglakeService, err := biglake.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))

Seegoogle.golang.org/api/option.ClientOption for details on options.

Index

Constants

View Source
const (// View and manage your data in Google BigQuery and see the email address for// your Google AccountBigqueryScope = "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

typeAuditConfigadded inv0.255.0

type AuditConfig struct {// AuditLogConfigs: The configuration for logging of each type of permission.AuditLogConfigs []*AuditLogConfig `json:"auditLogConfigs,omitempty"`// Service: Specifies a service that will be enabled for audit logging. For// example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices`// is a special value that covers all services.Servicestring `json:"service,omitempty"`// ForceSendFields is a list of field names (e.g. "AuditLogConfigs") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AuditLogConfigs") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

AuditConfig: Specifies the audit configuration for a service. Theconfiguration determines which permission types are logged, and whatidentities, if any, are exempted from logging. An AuditConfig must have oneor more AuditLogConfigs. If there are AuditConfigs for both `allServices`and a specific service, the union of the two AuditConfigs is used for thatservice: the log_types specified in each AuditConfig are enabled, and theexempted_members in each AuditLogConfig are exempted. Example Policy withmultiple AuditConfigs: { "audit_configs": [ { "service": "allServices","audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": ["user:jose@example.com" ] }, { "log_type": "DATA_WRITE" }, { "log_type":"ADMIN_READ" } ] }, { "service": "sampleservice.googleapis.com","audit_log_configs": [ { "log_type": "DATA_READ" }, { "log_type":"DATA_WRITE", "exempted_members": [ "user:aliya@example.com" ] } ] } ] } Forsampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READlogging. It also exempts `jose@example.com` from DATA_READ logging, and`aliya@example.com` from DATA_WRITE logging.

func (AuditConfig)MarshalJSONadded inv0.255.0

func (sAuditConfig) MarshalJSON() ([]byte,error)

typeAuditLogConfigadded inv0.255.0

type AuditLogConfig struct {// ExemptedMembers: Specifies the identities that do not cause logging for this// type of permission. Follows the same format of Binding.members.ExemptedMembers []string `json:"exemptedMembers,omitempty"`// LogType: The log type that this config enables.//// Possible values://   "LOG_TYPE_UNSPECIFIED" - Default case. Should never be this.//   "ADMIN_READ" - Admin reads. Example: CloudIAM getIamPolicy//   "DATA_WRITE" - Data writes. Example: CloudSQL Users create//   "DATA_READ" - Data reads. Example: CloudSQL Users listLogTypestring `json:"logType,omitempty"`// ForceSendFields is a list of field names (e.g. "ExemptedMembers") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "ExemptedMembers") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

AuditLogConfig: Provides the configuration for logging a type ofpermissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ","exempted_members": [ "user:jose@example.com" ] }, { "log_type":"DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, whileexempting jose@example.com from DATA_READ logging.

func (AuditLogConfig)MarshalJSONadded inv0.255.0

func (sAuditLogConfig) MarshalJSON() ([]byte,error)

typeBindingadded inv0.255.0

type Binding struct {// Condition: The condition that is associated with this binding. If the// condition evaluates to `true`, then this binding applies to the current// request. If the condition evaluates to `false`, then this binding does not// apply to the current request. However, a different role binding might grant// the same role to one or more of the principals in this binding. To learn// which resources support conditions in their IAM policies, see the IAM// documentation// (https://cloud.google.com/iam/help/conditions/resource-policies).Condition *Expr `json:"condition,omitempty"`// Members: Specifies the principals requesting access for a Google Cloud// resource. `members` can have the following values: * `allUsers`: A special// identifier that represents anyone who is on the internet; with or without a// Google account. * `allAuthenticatedUsers`: A special identifier that// represents anyone who is authenticated with a Google account or a service// account. Does not include identities that come from external identity// providers (IdPs) through identity federation. * `user:{emailid}`: An email// address that represents a specific Google account. For example,// `alice@example.com` . * `serviceAccount:{emailid}`: An email address that// represents a Google service account. For example,// `my-other-app@appspot.gserviceaccount.com`. *// `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An// identifier for a Kubernetes service account// (https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts).// For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. *// `group:{emailid}`: An email address that represents a Google group. For// example, `admins@example.com`. * `domain:{domain}`: The G Suite domain// (primary) that represents all the users of that domain. For example,// `google.com` or `example.com`. *// `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/sub// ject/{subject_attribute_value}`: A single identity in a workforce identity// pool. *// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/// group/{group_id}`: All workforce identities in a group. *// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/// attribute.{attribute_name}/{attribute_value}`: All workforce identities with// a specific attribute value. *// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/// *`: All identities in a workforce identity pool. *// `principal://iam.googleapis.com/projects/{project_number}/locations/global/wo// rkloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single// identity in a workload identity pool. *// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global// /workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool// group. *// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global// /workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}// `: All identities in a workload identity pool with a certain attribute. *// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global// /workloadIdentityPools/{pool_id}/*`: All identities in a workload identity// pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus// unique identifier) representing a user that has been recently deleted. For// example, `alice@example.com?uid=123456789012345678901`. If the user is// recovered, this value reverts to `user:{emailid}` and the recovered user// retains the role in the binding. *// `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus// unique identifier) representing a service account that has been recently// deleted. For example,// `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the// service account is undeleted, this value reverts to// `serviceAccount:{emailid}` and the undeleted service account retains the// role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email// address (plus unique identifier) representing a Google group that has been// recently deleted. For example,// `admins@example.com?uid=123456789012345678901`. If the group is recovered,// this value reverts to `group:{emailid}` and the recovered group retains the// role in the binding. *// `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool// _id}/subject/{subject_attribute_value}`: Deleted single identity in a// workforce identity pool. For example,// `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-po// ol-id/subject/my-subject-attribute-value`.Members []string `json:"members,omitempty"`// Role: Role that is assigned to the list of `members`, or principals. For// example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview// of the IAM roles and permissions, see the IAM documentation// (https://cloud.google.com/iam/docs/roles-overview). For a list of the// available pre-defined roles, see here// (https://cloud.google.com/iam/docs/understanding-roles).Rolestring `json:"role,omitempty"`// ForceSendFields is a list of field names (e.g. "Condition") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Condition") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Binding: Associates `members`, or principals, with a `role`.

func (Binding)MarshalJSONadded inv0.255.0

func (sBinding) MarshalJSON() ([]byte,error)

typeCatalog

type Catalog struct {// CreateTime: Output only. The creation time of the catalog.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. The deletion time of the catalog. Only set after// the catalog is deleted.DeleteTimestring `json:"deleteTime,omitempty"`// ExpireTime: Output only. The time when this catalog is considered expired.// Only set after the catalog is deleted.ExpireTimestring `json:"expireTime,omitempty"`// Name: Output only. The resource name. Format:// projects/{project_id_or_number}/locations/{location_id}/catalogs/{catalog_id}Namestring `json:"name,omitempty"`// UpdateTime: Output only. The last modification time of the catalog.UpdateTimestring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Catalog: Catalog is the container of databases.

func (Catalog)MarshalJSON

func (sCatalog) MarshalJSON() ([]byte,error)

typeDatabase

type Database struct {// CreateTime: Output only. The creation time of the database.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. The deletion time of the database. Only set after// the database is deleted.DeleteTimestring `json:"deleteTime,omitempty"`// ExpireTime: Output only. The time when this database is considered expired.// Only set after the database is deleted.ExpireTimestring `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/{catalog_id}// /databases/{database_id}Namestring `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.Typestring `json:"type,omitempty"`// UpdateTime: Output only. The last modification time of the database.UpdateTimestring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Database: Database is the container of tables.

func (Database)MarshalJSON

func (sDatabase) MarshalJSON() ([]byte,error)

typeExpradded inv0.255.0

type Expr struct {// Description: Optional. Description of the expression. This is a longer text// which describes the expression, e.g. when hovered over it in a UI.Descriptionstring `json:"description,omitempty"`// Expression: Textual representation of an expression in Common Expression// Language syntax.Expressionstring `json:"expression,omitempty"`// Location: Optional. String indicating the location of the expression for// error reporting, e.g. a file name and a position in the file.Locationstring `json:"location,omitempty"`// Title: Optional. Title for the expression, i.e. a short string describing// its purpose. This can be used e.g. in UIs which allow to enter the// expression.Titlestring `json:"title,omitempty"`// ForceSendFields is a list of field names (e.g. "Description") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Description") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Expr: Represents a textual expression in the Common Expression Language(CEL) syntax. CEL is a C-like expression language. The syntax and semanticsof CEL are documented athttps://github.com/google/cel-spec. Example(Comparison): title: "Summary size limit" description: "Determines if asummary is less than 100 chars" expression: "document.summary.size() < 100"Example (Equality): title: "Requestor is owner" description: "Determines ifrequestor is the document owner" expression: "document.owner ==request.auth.claims.email" Example (Logic): title: "Public documents"description: "Determine whether the document should be publicly visible"expression: "document.type != 'private' && document.type != 'internal'"Example (Data Manipulation): title: "Notification string" description:"Create a notification string with a timestamp." expression: "'New messagereceived at ' + string(document.create_time)" The exact variables andfunctions that may be referenced within an expression are determined by theservice that evaluates it. See the service documentation for additionalinformation.

func (Expr)MarshalJSONadded inv0.255.0

func (sExpr) MarshalJSON() ([]byte,error)

typeHiveDatabaseOptions

type HiveDatabaseOptions struct {// LocationUri: Cloud Storage folder URI where the database data is stored,// starting with "gs://".LocationUristring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

HiveDatabaseOptions: Options of a Hive database.

func (HiveDatabaseOptions)MarshalJSON

func (sHiveDatabaseOptions) MarshalJSON() ([]byte,error)

typeHiveTableOptions

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.TableTypestring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

HiveTableOptions: Options of a Hive table.

func (HiveTableOptions)MarshalJSON

func (sHiveTableOptions) MarshalJSON() ([]byte,error)

typeListCatalogsResponse

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.NextPageTokenstring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListCatalogsResponse: Response message for the ListCatalogs method.

func (ListCatalogsResponse)MarshalJSON

func (sListCatalogsResponse) MarshalJSON() ([]byte,error)

typeListDatabasesResponse

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.NextPageTokenstring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListDatabasesResponse: Response message for the ListDatabases method.

func (ListDatabasesResponse)MarshalJSON

func (sListDatabasesResponse) MarshalJSON() ([]byte,error)

typeListTablesResponse

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.NextPageTokenstring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

ListTablesResponse: Response message for the ListTables method.

func (ListTablesResponse)MarshalJSON

func (sListTablesResponse) MarshalJSON() ([]byte,error)

typePolicyadded inv0.255.0

type Policy struct {// AuditConfigs: Specifies cloud audit logging configuration for this policy.AuditConfigs []*AuditConfig `json:"auditConfigs,omitempty"`// Bindings: Associates a list of `members`, or principals, with a `role`.// Optionally, may specify a `condition` that determines how and when the// `bindings` are applied. Each of the `bindings` must contain at least one// principal. The `bindings` in a `Policy` can refer to up to 1,500 principals;// up to 250 of these principals can be Google groups. Each occurrence of a// principal counts towards these limits. For example, if the `bindings` grant// 50 different roles to `user:alice@example.com`, and not to any other// principal, then you can add another 1,450 principals to the `bindings` in// the `Policy`.Bindings []*Binding `json:"bindings,omitempty"`// Etag: `etag` is used for optimistic concurrency control as a way to help// prevent simultaneous updates of a policy from overwriting each other. It is// strongly suggested that systems make use of the `etag` in the// read-modify-write cycle to perform policy updates in order to avoid race// conditions: An `etag` is returned in the response to `getIamPolicy`, and// systems are expected to put that etag in the request to `setIamPolicy` to// ensure that their change will be applied to the same version of the policy.// **Important:** If you use IAM Conditions, you must include the `etag` field// whenever you call `setIamPolicy`. If you omit this field, then IAM allows// you to overwrite a version `3` policy with a version `1` policy, and all of// the conditions in the version `3` policy are lost.Etagstring `json:"etag,omitempty"`// Version: Specifies the format of the policy. Valid values are `0`, `1`, and// `3`. Requests that specify an invalid value are rejected. Any operation that// affects conditional role bindings must specify version `3`. This requirement// applies to the following operations: * Getting a policy that includes a// conditional role binding * Adding a conditional role binding to a policy *// Changing a conditional role binding in a policy * Removing any role binding,// with or without a condition, from a policy that includes conditions// **Important:** If you use IAM Conditions, you must include the `etag` field// whenever you call `setIamPolicy`. If you omit this field, then IAM allows// you to overwrite a version `3` policy with a version `1` policy, and all of// the conditions in the version `3` policy are lost. If a policy does not// include any conditions, operations on that policy may specify any valid// version or leave the field unset. To learn which resources support// conditions in their IAM policies, see the IAM documentation// (https://cloud.google.com/iam/help/conditions/resource-policies).Versionint64 `json:"version,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AuditConfigs") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AuditConfigs") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Policy: An Identity and Access Management (IAM) policy, which specifiesaccess controls for Google Cloud resources. A `Policy` is a collection of`bindings`. A `binding` binds one or more `members`, or principals, to asingle `role`. Principals can be user accounts, service accounts, Googlegroups, and domains (such as G Suite). A `role` is a named list ofpermissions; each `role` can be an IAM predefined role or a user-createdcustom role. For some types of Google Cloud resources, a `binding` can alsospecify a `condition`, which is a logical expression that allows access to aresource only if the expression evaluates to `true`. A condition can addconstraints based on attributes of the request, the resource, or both. Tolearn which resources support conditions in their IAM policies, see the IAMdocumentation(https://cloud.google.com/iam/help/conditions/resource-policies). **JSONexample:** ``` { "bindings": [ { "role":"roles/resourcemanager.organizationAdmin", "members": ["user:mike@example.com", "group:admins@example.com", "domain:google.com","serviceAccount:my-project-id@appspot.gserviceaccount.com" ] }, { "role":"roles/resourcemanager.organizationViewer", "members": ["user:eve@example.com" ], "condition": { "title": "expirable access","description": "Does not grant access after Sep 2020", "expression":"request.time < timestamp('2020-10-01T00:00:00.000Z')", } } ], "etag":"BwWWja0YfJA=", "version": 3 } ``` **YAML example:** ``` bindings: -members: - user:mike@example.com - group:admins@example.com -domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.comrole: roles/resourcemanager.organizationAdmin - members: -user:eve@example.com role: roles/resourcemanager.organizationViewercondition: title: expirable access description: Does not grant access afterSep 2020 expression: request.time < timestamp('2020-10-01T00:00:00.000Z')etag: BwWWja0YfJA= version: 3 ``` For a description of IAM and its features,see the IAM documentation (https://cloud.google.com/iam/docs/).

func (Policy)MarshalJSONadded inv0.255.0

func (sPolicy) MarshalJSON() ([]byte,error)

typeProjectsCatalogsGetIamPolicyCalladded inv0.255.0

type ProjectsCatalogsGetIamPolicyCall struct {// contains filtered or unexported fields}

func (*ProjectsCatalogsGetIamPolicyCall)Contextadded inv0.255.0

Context sets the context to be used in this call's Do method.

func (*ProjectsCatalogsGetIamPolicyCall)Doadded inv0.255.0

Do executes the "biglake.projects.catalogs.getIamPolicy" call.Any non-2xx status code is an error. Response headers are in either*Policy.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsCatalogsGetIamPolicyCall)Fieldsadded inv0.255.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsCatalogsGetIamPolicyCall)Headeradded inv0.255.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsCatalogsGetIamPolicyCall)IfNoneMatchadded inv0.255.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsCatalogsGetIamPolicyCall)OptionsRequestedPolicyVersionadded inv0.255.0

func (c *ProjectsCatalogsGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersionint64) *ProjectsCatalogsGetIamPolicyCall

OptionsRequestedPolicyVersion sets the optional parameter"options.requestedPolicyVersion": The maximum policy version that will beused to format the policy. Valid values are 0, 1, and 3. Requests specifyingan invalid value will be rejected. Requests for policies with anyconditional role bindings must specify version 3. Policies with noconditional role bindings may specify any valid value or leave the fieldunset. The policy in the response might use the policy version that youspecified, or it might use a lower policy version. For example, if youspecify version 3, but the policy has no conditional role bindings, theresponse uses version 1. To learn which resources support conditions intheir IAM policies, see the IAM documentation(https://cloud.google.com/iam/help/conditions/resource-policies).

typeProjectsCatalogsNamespacesGetIamPolicyCalladded inv0.255.0

type ProjectsCatalogsNamespacesGetIamPolicyCall struct {// contains filtered or unexported fields}

func (*ProjectsCatalogsNamespacesGetIamPolicyCall)Contextadded inv0.255.0

Context sets the context to be used in this call's Do method.

func (*ProjectsCatalogsNamespacesGetIamPolicyCall)Doadded inv0.255.0

Do executes the "biglake.projects.catalogs.namespaces.getIamPolicy" call.Any non-2xx status code is an error. Response headers are in either*Policy.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsCatalogsNamespacesGetIamPolicyCall)Fieldsadded inv0.255.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsCatalogsNamespacesGetIamPolicyCall)Headeradded inv0.255.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsCatalogsNamespacesGetIamPolicyCall)IfNoneMatchadded inv0.255.0

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsCatalogsNamespacesGetIamPolicyCall)OptionsRequestedPolicyVersionadded inv0.255.0

func (c *ProjectsCatalogsNamespacesGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersionint64) *ProjectsCatalogsNamespacesGetIamPolicyCall

OptionsRequestedPolicyVersion sets the optional parameter"options.requestedPolicyVersion": The maximum policy version that will beused to format the policy. Valid values are 0, 1, and 3. Requests specifyingan invalid value will be rejected. Requests for policies with anyconditional role bindings must specify version 3. Policies with noconditional role bindings may specify any valid value or leave the fieldunset. The policy in the response might use the policy version that youspecified, or it might use a lower policy version. For example, if youspecify version 3, but the policy has no conditional role bindings, theresponse uses version 1. To learn which resources support conditions intheir IAM policies, see the IAM documentation(https://cloud.google.com/iam/help/conditions/resource-policies).

typeProjectsCatalogsNamespacesServiceadded inv0.255.0

type ProjectsCatalogsNamespacesService struct {// contains filtered or unexported fields}

funcNewProjectsCatalogsNamespacesServiceadded inv0.255.0

func NewProjectsCatalogsNamespacesService(s *Service) *ProjectsCatalogsNamespacesService

func (*ProjectsCatalogsNamespacesService)GetIamPolicyadded inv0.255.0

GetIamPolicy: Gets the IAM policy for the specified Catalog.

func (*ProjectsCatalogsNamespacesService)SetIamPolicyadded inv0.255.0

SetIamPolicy: Sets the IAM policy for the specified catalog.

typeProjectsCatalogsNamespacesSetIamPolicyCalladded inv0.255.0

type ProjectsCatalogsNamespacesSetIamPolicyCall struct {// contains filtered or unexported fields}

func (*ProjectsCatalogsNamespacesSetIamPolicyCall)Contextadded inv0.255.0

Context sets the context to be used in this call's Do method.

func (*ProjectsCatalogsNamespacesSetIamPolicyCall)Doadded inv0.255.0

Do executes the "biglake.projects.catalogs.namespaces.setIamPolicy" call.Any non-2xx status code is an error. Response headers are in either*Policy.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsCatalogsNamespacesSetIamPolicyCall)Fieldsadded inv0.255.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsCatalogsNamespacesSetIamPolicyCall)Headeradded inv0.255.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsCatalogsServiceadded inv0.255.0

type ProjectsCatalogsService struct {Namespaces *ProjectsCatalogsNamespacesService// contains filtered or unexported fields}

funcNewProjectsCatalogsServiceadded inv0.255.0

func NewProjectsCatalogsService(s *Service) *ProjectsCatalogsService

func (*ProjectsCatalogsService)GetIamPolicyadded inv0.255.0

GetIamPolicy: Gets the IAM policy for the specified Catalog.

func (*ProjectsCatalogsService)SetIamPolicyadded inv0.255.0

func (r *ProjectsCatalogsService) SetIamPolicy(resourcestring, setiampolicyrequest *SetIamPolicyRequest) *ProjectsCatalogsSetIamPolicyCall

SetIamPolicy: Sets the IAM policy for the specified catalog.

typeProjectsCatalogsSetIamPolicyCalladded inv0.255.0

type ProjectsCatalogsSetIamPolicyCall struct {// contains filtered or unexported fields}

func (*ProjectsCatalogsSetIamPolicyCall)Contextadded inv0.255.0

Context sets the context to be used in this call's Do method.

func (*ProjectsCatalogsSetIamPolicyCall)Doadded inv0.255.0

Do executes the "biglake.projects.catalogs.setIamPolicy" call.Any non-2xx status code is an error. Response headers are in either*Policy.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsCatalogsSetIamPolicyCall)Fieldsadded inv0.255.0

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsCatalogsSetIamPolicyCall)Headeradded inv0.255.0

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsCatalogsCreateCall

type ProjectsLocationsCatalogsCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsCreateCall)CatalogId

CatalogId sets the optional parameter "catalogId": Required. The ID to usefor the catalog, which will become the final component of the catalog'sresource name.

func (*ProjectsLocationsCatalogsCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsCreateCall)Do

Do executes the "biglake.projects.locations.catalogs.create" call.Any non-2xx status code is an error. Response headers are in either*Catalog.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsCatalogsDatabasesCreateCall

type ProjectsLocationsCatalogsDatabasesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesCreateCall)DatabaseId

DatabaseId sets the optional parameter "databaseId": Required. The ID to usefor the database, which will become the final component of the database'sresource name.

func (*ProjectsLocationsCatalogsDatabasesCreateCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.create" call.Any non-2xx status code is an error. Response headers are in either*Database.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsDatabasesCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsCatalogsDatabasesDeleteCall

type ProjectsLocationsCatalogsDatabasesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesDeleteCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.delete" call.Any non-2xx status code is an error. Response headers are in either*Database.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsDatabasesDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsCatalogsDatabasesGetCall

type ProjectsLocationsCatalogsDatabasesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesGetCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.get" call.Any non-2xx status code is an error. Response headers are in either*Database.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsDatabasesGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsCatalogsDatabasesGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsCatalogsDatabasesListCall

type ProjectsLocationsCatalogsDatabasesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesListCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.list" call.Any non-2xx status code is an error. Response headers are in either*ListDatabasesResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsCatalogsDatabasesListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsCatalogsDatabasesListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsCatalogsDatabasesListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number ofdatabases to return. The service may return fewer than this value. Ifunspecified, at most 50 databases will be returned. The maximum value is1000; values above 1000 will be coerced to 1000.

func (*ProjectsLocationsCatalogsDatabasesListCall)PageToken

PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListDatabases` call. Provide this to retrieve thesubsequent page. When paginating, all other parameters provided to`ListDatabases` must match the call that provided the page token.

func (*ProjectsLocationsCatalogsDatabasesListCall)Pages

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.

typeProjectsLocationsCatalogsDatabasesPatchCall

type ProjectsLocationsCatalogsDatabasesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesPatchCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.patch" call.Any non-2xx status code is an error. Response headers are in either*Database.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsDatabasesPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsCatalogsDatabasesPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The list of fields toupdate. For the `FieldMask` definition, seehttps://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmaskIf not set, defaults to all of the fields that are allowed to update.

typeProjectsLocationsCatalogsDatabasesService

type ProjectsLocationsCatalogsDatabasesService struct {Tables *ProjectsLocationsCatalogsDatabasesTablesService// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesService)Create

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/{catalog_id}.

func (*ProjectsLocationsCatalogsDatabasesService)Delete

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/{catalog_id}/databases/{database_id}.

func (*ProjectsLocationsCatalogsDatabasesService)Get

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/{catalog_id}/databases/{database_id}.

func (*ProjectsLocationsCatalogsDatabasesService)List

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/{catalog_id}.

func (*ProjectsLocationsCatalogsDatabasesService)Patch

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/{catalog_id}/databases/{database_id}.

typeProjectsLocationsCatalogsDatabasesTablesCreateCall

type ProjectsLocationsCatalogsDatabasesTablesCreateCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesTablesCreateCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesTablesCreateCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.tables.create" call.Any non-2xx status code is an error. Response headers are in either*Table.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsDatabasesTablesCreateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesTablesCreateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsCatalogsDatabasesTablesCreateCall)TableId

TableId sets the optional parameter "tableId": Required. The ID to use forthe table, which will become the final component of the table's resourcename.

typeProjectsLocationsCatalogsDatabasesTablesDeleteCall

type ProjectsLocationsCatalogsDatabasesTablesDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesTablesDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesTablesDeleteCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.tables.delete" call.Any non-2xx status code is an error. Response headers are in either*Table.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsDatabasesTablesDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesTablesDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsCatalogsDatabasesTablesGetCall

type ProjectsLocationsCatalogsDatabasesTablesGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesTablesGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesTablesGetCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.tables.get" call.Any non-2xx status code is an error. Response headers are in either*Table.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsDatabasesTablesGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesTablesGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsCatalogsDatabasesTablesGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsCatalogsDatabasesTablesListCall

type ProjectsLocationsCatalogsDatabasesTablesListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesTablesListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesTablesListCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.tables.list" call.Any non-2xx status code is an error. Response headers are in either*ListTablesResponse.ServerResponse.Header or (if a response was returned atall) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsCatalogsDatabasesTablesListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesTablesListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsCatalogsDatabasesTablesListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsCatalogsDatabasesTablesListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number oftables to return. The service may return fewer than this value. Ifunspecified, at most 50 tables will be returned. The maximum value is 1000;values above 1000 will be coerced to 1000.

func (*ProjectsLocationsCatalogsDatabasesTablesListCall)PageToken

PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListTables` call. Provide this to retrieve the subsequentpage. When paginating, all other parameters provided to `ListTables` mustmatch the call that provided the page token.

func (*ProjectsLocationsCatalogsDatabasesTablesListCall)Pages

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

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.

typeProjectsLocationsCatalogsDatabasesTablesPatchCall

type ProjectsLocationsCatalogsDatabasesTablesPatchCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesTablesPatchCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesTablesPatchCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.tables.patch" call.Any non-2xx status code is an error. Response headers are in either*Table.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsDatabasesTablesPatchCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesTablesPatchCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsCatalogsDatabasesTablesPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": The list of fields toupdate. For the `FieldMask` definition, seehttps://developers.google.com/protocol-buffers/docs/reference/google.protobuf#fieldmaskIf not set, defaults to all of the fields that are allowed to update.

typeProjectsLocationsCatalogsDatabasesTablesRenameCall

type ProjectsLocationsCatalogsDatabasesTablesRenameCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesTablesRenameCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDatabasesTablesRenameCall)Do

Do executes the "biglake.projects.locations.catalogs.databases.tables.rename" call.Any non-2xx status code is an error. Response headers are in either*Table.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsDatabasesTablesRenameCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDatabasesTablesRenameCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsCatalogsDatabasesTablesService

type ProjectsLocationsCatalogsDatabasesTablesService struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDatabasesTablesService)Create

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/{catalog_id}/databases/{database_id}.

func (*ProjectsLocationsCatalogsDatabasesTablesService)Delete

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/{catalog_id}/databases/{database_id}/tables/{table_id}.

func (*ProjectsLocationsCatalogsDatabasesTablesService)Get

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/{catalog_id}/databases/{database_id}/tables/{table_id}.

func (*ProjectsLocationsCatalogsDatabasesTablesService)List

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/{catalog_id}/databases/{database_id}.

func (*ProjectsLocationsCatalogsDatabasesTablesService)Patch

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/{catalog_id}/databases/{database_id}/tables/{table_id}.

func (*ProjectsLocationsCatalogsDatabasesTablesService)Rename

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/{catalog_id}/databases/{database_id}/tables/{table_id}.

typeProjectsLocationsCatalogsDeleteCall

type ProjectsLocationsCatalogsDeleteCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsDeleteCall)Do

Do executes the "biglake.projects.locations.catalogs.delete" call.Any non-2xx status code is an error. Response headers are in either*Catalog.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeProjectsLocationsCatalogsGetCall

type ProjectsLocationsCatalogsGetCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsGetCall)Do

Do executes the "biglake.projects.locations.catalogs.get" call.Any non-2xx status code is an error. Response headers are in either*Catalog.ServerResponse.Header or (if a response was returned at all) inerror.(*googleapi.Error).Header. Use googleapi.IsNotModified to checkwhether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsCatalogsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsCatalogsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeProjectsLocationsCatalogsListCall

type ProjectsLocationsCatalogsListCall struct {// contains filtered or unexported fields}

func (*ProjectsLocationsCatalogsListCall)Context

Context sets the context to be used in this call's Do method.

func (*ProjectsLocationsCatalogsListCall)Do

Do executes the "biglake.projects.locations.catalogs.list" call.Any non-2xx status code is an error. Response headers are in either*ListCatalogsResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*ProjectsLocationsCatalogsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*ProjectsLocationsCatalogsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*ProjectsLocationsCatalogsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*ProjectsLocationsCatalogsListCall)PageSize

PageSize sets the optional parameter "pageSize": The maximum number ofcatalogs to return. The service may return fewer than this value. Ifunspecified, at most 50 catalogs will be returned. The maximum value is1000; values above 1000 will be coerced to 1000.

func (*ProjectsLocationsCatalogsListCall)PageToken

PageToken sets the optional parameter "pageToken": A page token, receivedfrom a previous `ListCatalogs` call. Provide this to retrieve the subsequentpage. When paginating, all other parameters provided to `ListCatalogs` mustmatch the call that provided the page token.

func (*ProjectsLocationsCatalogsListCall)Pages

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.

typeProjectsLocationsCatalogsService

type ProjectsLocationsCatalogsService struct {Databases *ProjectsLocationsCatalogsDatabasesService// contains filtered or unexported fields}

funcNewProjectsLocationsCatalogsService

func NewProjectsLocationsCatalogsService(s *Service) *ProjectsLocationsCatalogsService

func (*ProjectsLocationsCatalogsService)Create

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

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/{catalog_id}.

func (*ProjectsLocationsCatalogsService)Get

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/{catalog_id}.

func (*ProjectsLocationsCatalogsService)List

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}.

typeProjectsLocationsService

type ProjectsLocationsService struct {Catalogs *ProjectsLocationsCatalogsService// contains filtered or unexported fields}

funcNewProjectsLocationsService

func NewProjectsLocationsService(s *Service) *ProjectsLocationsService

typeProjectsService

type ProjectsService struct {Catalogs *ProjectsCatalogsServiceLocations *ProjectsLocationsService// contains filtered or unexported fields}

funcNewProjectsService

func NewProjectsService(s *Service) *ProjectsService

typeRenameTableRequest

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/{catalog_id}// /databases/{database_id}/tables/{table_id}NewNamestring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

RenameTableRequest: Request message for the RenameTable method inMetastoreService

func (RenameTableRequest)MarshalJSON

func (sRenameTableRequest) MarshalJSON() ([]byte,error)

typeSerDeInfo

type SerDeInfo struct {// SerializationLib: The fully qualified Java class name of the serialization// library.SerializationLibstring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

SerDeInfo: Serializer and deserializer information.

func (SerDeInfo)MarshalJSON

func (sSerDeInfo) MarshalJSON() ([]byte,error)

typeService

type Service struct {BasePathstring// API endpoint base URLUserAgentstring// optional additional User-Agent fragmentProjects *ProjectsService// contains filtered or unexported fields}

funcNewdeprecated

func New(client *http.Client) (*Service,error)

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.

funcNewService

func NewService(ctxcontext.Context, opts ...option.ClientOption) (*Service,error)

NewService creates a new Service.

typeSetIamPolicyRequestadded inv0.255.0

type SetIamPolicyRequest struct {// Policy: REQUIRED: The complete policy to be applied to the `resource`. The// size of the policy is limited to a few 10s of KB. An empty policy is a valid// policy but certain Google Cloud services (such as Projects) might reject// them.Policy *Policy `json:"policy,omitempty"`// UpdateMask: OPTIONAL: A FieldMask specifying which fields of the policy to// modify. Only the fields in the mask will be modified. If no mask is// provided, the following default mask is used: `paths: "bindings, etag"UpdateMaskstring `json:"updateMask,omitempty"`// ForceSendFields is a list of field names (e.g. "Policy") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Policy") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

SetIamPolicyRequest: Request message for `SetIamPolicy` method.

func (SetIamPolicyRequest)MarshalJSONadded inv0.255.0

func (sSetIamPolicyRequest) MarshalJSON() ([]byte,error)

typeStorageDescriptor

type StorageDescriptor struct {// InputFormat: The fully qualified Java class name of the input format.InputFormatstring `json:"inputFormat,omitempty"`// LocationUri: Cloud Storage folder URI where the table data is stored,// starting with "gs://".LocationUristring `json:"locationUri,omitempty"`// OutputFormat: The fully qualified Java class name of the output format.OutputFormatstring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

StorageDescriptor: Stores physical storage information of the data.

func (StorageDescriptor)MarshalJSON

func (sStorageDescriptor) MarshalJSON() ([]byte,error)

typeTable

type Table struct {// CreateTime: Output only. The creation time of the table.CreateTimestring `json:"createTime,omitempty"`// DeleteTime: Output only. The deletion time of the table. Only set after the// table is deleted.DeleteTimestring `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.Etagstring `json:"etag,omitempty"`// ExpireTime: Output only. The time when this table is considered expired.// Only set after the table is deleted.ExpireTimestring `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/{catalog_id}// /databases/{database_id}/tables/{table_id}Namestring `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.Typestring `json:"type,omitempty"`// UpdateTime: Output only. The last modification time of the table.UpdateTimestring `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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

Table: Represents a table.

func (Table)MarshalJSON

func (sTable) MarshalJSON() ([]byte,error)

Source Files

View all Source files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f orF : Jump to
y orY : Canonical URL
go.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic.Learn more.

[8]ページ先頭

©2009-2025 Movatter.jp