Movatterモバイル変換


[0]ホーム

URL:


bigqueryconnection

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 bigqueryconnection provides access to the BigQuery Connection API.

For product documentation, see:https://cloud.google.com/bigquery/docs/connections-api-intro

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/bigqueryconnection/v1"...ctx := context.Background()bigqueryconnectionService, err := bigqueryconnection.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:

bigqueryconnectionService, err := bigqueryconnection.NewService(ctx, option.WithScopes(bigqueryconnection.CloudPlatformScope))

To use an API key for authentication (note: some APIs do not support APIkeys), usegoogle.golang.org/api/option.WithAPIKey:

bigqueryconnectionService, err := bigqueryconnection.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, ...)bigqueryconnectionService, err := bigqueryconnection.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

typeAuditConfig

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)MarshalJSON

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

typeAuditLogConfig

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)MarshalJSON

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

typeAwsAccessRole

type AwsAccessRole struct {// IamRoleId: The user’s AWS IAM Role that trusts the Google-owned AWS IAM// user Connection.IamRoleIdstring `json:"iamRoleId,omitempty"`// Identity: A unique Google-owned and Google-generated identity for the// Connection. This identity will be used to access the user's AWS IAM Role.Identitystring `json:"identity,omitempty"`// ForceSendFields is a list of field names (e.g. "IamRoleId") 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. "IamRoleId") 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:"-"`}

AwsAccessRole: Authentication method for Amazon Web Services (AWS) that usesGoogle owned Google service account to assume into customer's AWS IAM Role.

func (AwsAccessRole)MarshalJSON

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

typeAwsProperties

type AwsProperties struct {// AccessRole: Authentication using Google owned service account to assume into// customer's AWS IAM Role.AccessRole *AwsAccessRole `json:"accessRole,omitempty"`// ForceSendFields is a list of field names (e.g. "AccessRole") 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. "AccessRole") 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:"-"`}

AwsProperties: Connection properties specific to Amazon Web Services (AWS).

func (AwsProperties)MarshalJSON

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

typeAzureProperties

type AzureProperties struct {// Application: Output only. The name of the Azure Active Directory// Application.Applicationstring `json:"application,omitempty"`// ClientId: Output only. The client id of the Azure Active Directory// Application.ClientIdstring `json:"clientId,omitempty"`// CustomerTenantId: The id of customer's directory that host the data.CustomerTenantIdstring `json:"customerTenantId,omitempty"`// FederatedApplicationClientId: The client ID of the user's Azure Active// Directory Application used for a federated connection.FederatedApplicationClientIdstring `json:"federatedApplicationClientId,omitempty"`// Identity: Output only. A unique Google-owned and Google-generated identity// for the Connection. This identity will be used to access the user's Azure// Active Directory Application.Identitystring `json:"identity,omitempty"`// ObjectId: Output only. The object id of the Azure Active Directory// Application.ObjectIdstring `json:"objectId,omitempty"`// RedirectUri: The URL user will be redirected to after granting consent// during connection setup.RedirectUristring `json:"redirectUri,omitempty"`// ForceSendFields is a list of field names (e.g. "Application") 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. "Application") 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:"-"`}

AzureProperties: Container for connection properties specific to Azure.

func (AzureProperties)MarshalJSON

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

typeBinding

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)MarshalJSON

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

typeCloudResourceProperties

type CloudResourceProperties struct {// ServiceAccountId: Output only. The account ID of the service created for the// purpose of this connection. The service account does not have any// permissions associated with it when it is created. After creation, customers// delegate permissions to the service account. When the connection is used in// the context of an operation in BigQuery, the service account will be used to// connect to the desired resources in GCP. The account ID is in the form of:// @gcp-sa-bigquery-cloudresource.iam.gserviceaccount.comServiceAccountIdstring `json:"serviceAccountId,omitempty"`// ForceSendFields is a list of field names (e.g. "ServiceAccountId") 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. "ServiceAccountId") 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:"-"`}

CloudResourceProperties: Container for connection properties for delegationof access to GCP resources.

func (CloudResourceProperties)MarshalJSON

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

typeCloudSpannerProperties

type CloudSpannerProperties struct {// Database: Cloud Spanner database in the form `project/instance/database'Databasestring `json:"database,omitempty"`// DatabaseRole: Optional. Cloud Spanner database role for fine-grained access// control. The Cloud Spanner admin should have provisioned the database role// with appropriate permissions, such as `SELECT` and `INSERT`. Other users// should only use roles provided by their Cloud Spanner admins. For more// details, see [About fine-grained access control]// (https://cloud.google.com/spanner/docs/fgac-about). REQUIRES: The database// role name must start with a letter, and can only contain letters, numbers,// and underscores.DatabaseRolestring `json:"databaseRole,omitempty"`// MaxParallelism: Allows setting max parallelism per query when executing on// Spanner independent compute resources. If unspecified, default values of// parallelism are chosen that are dependent on the Cloud Spanner instance// configuration. REQUIRES: `use_parallelism` must be set. REQUIRES:// `use_data_boost` must be set.MaxParallelismint64 `json:"maxParallelism,omitempty"`// UseDataBoost: If set, the request will be executed via Spanner independent// compute resources. REQUIRES: `use_parallelism` must be set.UseDataBoostbool `json:"useDataBoost,omitempty"`// UseParallelism: If parallelism should be used when reading from Cloud// SpannerUseParallelismbool `json:"useParallelism,omitempty"`// UseServerlessAnalytics: Deprecated: prefer use_data_boost instead. If the// serverless analytics service should be used to read data from Cloud Spanner.// Note: `use_parallelism` must be set when using serverless analytics.UseServerlessAnalyticsbool `json:"useServerlessAnalytics,omitempty"`// ForceSendFields is a list of field names (e.g. "Database") 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. "Database") 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:"-"`}

CloudSpannerProperties: Connection properties specific to Cloud Spanner.

func (CloudSpannerProperties)MarshalJSON

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

typeCloudSqlCredential

type CloudSqlCredential struct {// Password: The password for the credential.Passwordstring `json:"password,omitempty"`// Username: The username for the credential.Usernamestring `json:"username,omitempty"`// ForceSendFields is a list of field names (e.g. "Password") 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. "Password") 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:"-"`}

CloudSqlCredential: Credential info for the Cloud SQL.

func (CloudSqlCredential)MarshalJSON

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

typeCloudSqlProperties

type CloudSqlProperties struct {// Credential: Input only. Cloud SQL credential.Credential *CloudSqlCredential `json:"credential,omitempty"`// Database: Database name.Databasestring `json:"database,omitempty"`// InstanceId: Cloud SQL instance ID in the form `project:location:instance`.InstanceIdstring `json:"instanceId,omitempty"`// ServiceAccountId: Output only. The account ID of the service used for the// purpose of this connection. When the connection is used in the context of an// operation in BigQuery, this service account will serve as the identity being// used for connecting to the CloudSQL instance specified in this connection.ServiceAccountIdstring `json:"serviceAccountId,omitempty"`// Type: Type of the Cloud SQL database.//// Possible values://   "DATABASE_TYPE_UNSPECIFIED" - Unspecified database type.//   "POSTGRES" - Cloud SQL for PostgreSQL.//   "MYSQL" - Cloud SQL for MySQL.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Credential") 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. "Credential") 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:"-"`}

CloudSqlProperties: Connection properties specific to the Cloud SQL.

func (CloudSqlProperties)MarshalJSON

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

typeConnection

type Connection struct {// Aws: Amazon Web Services (AWS) properties.Aws *AwsProperties `json:"aws,omitempty"`// Azure: Azure properties.Azure *AzureProperties `json:"azure,omitempty"`// CloudResource: Cloud Resource properties.CloudResource *CloudResourceProperties `json:"cloudResource,omitempty"`// CloudSpanner: Cloud Spanner properties.CloudSpanner *CloudSpannerProperties `json:"cloudSpanner,omitempty"`// CloudSql: Cloud SQL properties.CloudSql *CloudSqlProperties `json:"cloudSql,omitempty"`// Configuration: Optional. Connector configuration.Configuration *ConnectorConfiguration `json:"configuration,omitempty"`// CreationTime: Output only. The creation timestamp of the connection.CreationTimeint64 `json:"creationTime,omitempty,string"`// Description: User provided description.Descriptionstring `json:"description,omitempty"`// FriendlyName: User provided display name for the connection.FriendlyNamestring `json:"friendlyName,omitempty"`// HasCredential: Output only. True, if credential is configured for this// connection.HasCredentialbool `json:"hasCredential,omitempty"`// KmsKeyName: Optional. The Cloud KMS key that is used for credentials// encryption. If omitted, internal Google owned encryption keys are used.// Example:// `projects/[kms_project_id]/locations/[region]/keyRings/[key_region]/cryptoKey// s/[key]`KmsKeyNamestring `json:"kmsKeyName,omitempty"`// LastModifiedTime: Output only. The last update timestamp of the connection.LastModifiedTimeint64 `json:"lastModifiedTime,omitempty,string"`// Name: Output only. The resource name of the connection in the form of:// `projects/{project_id}/locations/{location_id}/connections/{connection_id}`Namestring `json:"name,omitempty"`// SalesforceDataCloud: Optional. Salesforce DataCloud properties. This field// is intended for use only by Salesforce partner projects. This field contains// properties for your Salesforce DataCloud connection.SalesforceDataCloud *SalesforceDataCloudProperties `json:"salesforceDataCloud,omitempty"`// Spark: Spark properties.Spark *SparkProperties `json:"spark,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Aws") 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. "Aws") 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:"-"`}

Connection: Configuration parameters to establish connection with anexternal data source, except the credential attributes.

func (Connection)MarshalJSON

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

typeConnectorConfigurationadded inv0.160.0

type ConnectorConfiguration struct {// Asset: Data asset.Asset *ConnectorConfigurationAsset `json:"asset,omitempty"`// Authentication: Client authentication.Authentication *ConnectorConfigurationAuthentication `json:"authentication,omitempty"`// ConnectorId: Required. Immutable. The ID of the Connector these parameters// are configured for.ConnectorIdstring `json:"connectorId,omitempty"`// Endpoint: Specifies how to reach the remote system this connection is// pointing to.Endpoint *ConnectorConfigurationEndpoint `json:"endpoint,omitempty"`// Network: Networking configuration.Network *ConnectorConfigurationNetwork `json:"network,omitempty"`// ForceSendFields is a list of field names (e.g. "Asset") 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. "Asset") 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:"-"`}

ConnectorConfiguration: Represents concrete parameter values for ConnectorConfiguration.

func (ConnectorConfiguration)MarshalJSONadded inv0.160.0

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

typeConnectorConfigurationAssetadded inv0.177.0

type ConnectorConfigurationAsset struct {// Database: Name of the database.Databasestring `json:"database,omitempty"`// GoogleCloudResource: Full Google Cloud resource name -//https://cloud.google.com/apis/design/resource_names#full_resource_name.// Example: `//library.googleapis.com/shelves/shelf1/books/book2`GoogleCloudResourcestring `json:"googleCloudResource,omitempty"`// ForceSendFields is a list of field names (e.g. "Database") 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. "Database") 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:"-"`}

ConnectorConfigurationAsset: Data Asset - a resource within instance of thesystem, reachable under specified endpoint. For example a database name in aSQL DB.

func (ConnectorConfigurationAsset)MarshalJSONadded inv0.177.0

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

typeConnectorConfigurationAuthenticationadded inv0.160.0

type ConnectorConfigurationAuthentication struct {// ServiceAccount: Output only. Google-managed service account associated with// this connection, e.g.,// `service-{project_number}@gcp-sa-bigqueryconnection.iam.gserviceaccount.com`.//  BigQuery jobs using this connection will act as `service_account` identity// while connecting to the datasource.ServiceAccountstring `json:"serviceAccount,omitempty"`// UsernamePassword: Username/password authentication.UsernamePassword *ConnectorConfigurationUsernamePassword `json:"usernamePassword,omitempty"`// ForceSendFields is a list of field names (e.g. "ServiceAccount") 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. "ServiceAccount") 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:"-"`}

ConnectorConfigurationAuthentication: Client authentication.

func (ConnectorConfigurationAuthentication)MarshalJSONadded inv0.160.0

typeConnectorConfigurationEndpointadded inv0.160.0

type ConnectorConfigurationEndpoint struct {// HostPort: Host and port in a format of `hostname:port` as defined in//https://www.ietf.org/rfc/rfc3986.html#section-3.2.2 and//https://www.ietf.org/rfc/rfc3986.html#section-3.2.3.HostPortstring `json:"hostPort,omitempty"`// ForceSendFields is a list of field names (e.g. "HostPort") 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. "HostPort") 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:"-"`}

ConnectorConfigurationEndpoint: Remote endpoint specification.

func (ConnectorConfigurationEndpoint)MarshalJSONadded inv0.160.0

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

typeConnectorConfigurationNetworkadded inv0.173.0

type ConnectorConfigurationNetwork struct {// PrivateServiceConnect: Private Service Connect networking configuration.PrivateServiceConnect *ConnectorConfigurationPrivateServiceConnect `json:"privateServiceConnect,omitempty"`// ForceSendFields is a list of field names (e.g. "PrivateServiceConnect") 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. "PrivateServiceConnect") 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:"-"`}

ConnectorConfigurationNetwork: Network related configuration.

func (ConnectorConfigurationNetwork)MarshalJSONadded inv0.173.0

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

typeConnectorConfigurationPrivateServiceConnectadded inv0.173.0

type ConnectorConfigurationPrivateServiceConnect struct {// NetworkAttachment: Required. Network Attachment name in the format of// `projects/{project}/regions/{region}/networkAttachments/{networkattachment}`.NetworkAttachmentstring `json:"networkAttachment,omitempty"`// ForceSendFields is a list of field names (e.g. "NetworkAttachment") 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. "NetworkAttachment") 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:"-"`}

ConnectorConfigurationPrivateServiceConnect: Private Service Connectconfiguration.

func (ConnectorConfigurationPrivateServiceConnect)MarshalJSONadded inv0.173.0

typeConnectorConfigurationSecretadded inv0.160.0

type ConnectorConfigurationSecret struct {// Plaintext: Input only. Secret as plaintext.Plaintextstring `json:"plaintext,omitempty"`// SecretType: Output only. Indicates type of secret. Can be used to check type// of stored secret value even if it's `INPUT_ONLY`.//// Possible values://   "SECRET_TYPE_UNSPECIFIED"//   "PLAINTEXT"SecretTypestring `json:"secretType,omitempty"`// ForceSendFields is a list of field names (e.g. "Plaintext") 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. "Plaintext") 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:"-"`}

ConnectorConfigurationSecret: Secret value parameter.

func (ConnectorConfigurationSecret)MarshalJSONadded inv0.160.0

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

typeConnectorConfigurationUsernamePasswordadded inv0.160.0

type ConnectorConfigurationUsernamePassword struct {// Password: Required. Password.Password *ConnectorConfigurationSecret `json:"password,omitempty"`// Username: Required. Username.Usernamestring `json:"username,omitempty"`// ForceSendFields is a list of field names (e.g. "Password") 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. "Password") 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:"-"`}

ConnectorConfigurationUsernamePassword: Username and Passwordauthentication.

func (ConnectorConfigurationUsernamePassword)MarshalJSONadded inv0.160.0

typeEmpty

type Empty struct {// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`}

Empty: A generic empty message that you can re-use to avoid definingduplicated empty messages in your APIs. A typical example is to use it asthe request or the response type of an API method. For instance: service Foo{ rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }

typeExpr

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)MarshalJSON

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

typeGetIamPolicyRequest

type GetIamPolicyRequest struct {// Options: OPTIONAL: A `GetPolicyOptions` object for specifying options to// `GetIamPolicy`.Options *GetPolicyOptions `json:"options,omitempty"`// ForceSendFields is a list of field names (e.g. "Options") 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. "Options") 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:"-"`}

GetIamPolicyRequest: Request message for `GetIamPolicy` method.

func (GetIamPolicyRequest)MarshalJSON

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

typeGetPolicyOptions

type GetPolicyOptions struct {// RequestedPolicyVersion: Optional. The maximum policy version that will be// used to format the policy. Valid values are 0, 1, and 3. Requests specifying// an invalid value will be rejected. Requests for policies with any// conditional role bindings must specify version 3. Policies with no// conditional role bindings may specify any valid value or leave the field// unset. The policy in the response might use the policy version that you// specified, or it might use a lower policy version. For example, if you// specify version 3, but the policy has no conditional role bindings, the// response uses version 1. To learn which resources support conditions in// their IAM policies, see the IAM documentation// (https://cloud.google.com/iam/help/conditions/resource-policies).RequestedPolicyVersionint64 `json:"requestedPolicyVersion,omitempty"`// ForceSendFields is a list of field names (e.g. "RequestedPolicyVersion") 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. "RequestedPolicyVersion") 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:"-"`}

GetPolicyOptions: Encapsulates settings provided to GetIamPolicy.

func (GetPolicyOptions)MarshalJSON

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

typeListConnectionsResponse

type ListConnectionsResponse struct {// Connections: List of connections.Connections []*Connection `json:"connections,omitempty"`// NextPageToken: Next page token.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. "Connections") 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. "Connections") 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:"-"`}

ListConnectionsResponse: The response for ConnectionService.ListConnections.

func (ListConnectionsResponse)MarshalJSON

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

typeMetastoreServiceConfig

type MetastoreServiceConfig struct {// MetastoreService: Optional. Resource name of an existing Dataproc Metastore// service. Example: *// `projects/[project_id]/locations/[region]/services/[service_id]`MetastoreServicestring `json:"metastoreService,omitempty"`// ForceSendFields is a list of field names (e.g. "MetastoreService") 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. "MetastoreService") 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:"-"`}

MetastoreServiceConfig: Configuration of the Dataproc Metastore Service.

func (MetastoreServiceConfig)MarshalJSON

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

typePolicy

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)MarshalJSON

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

typeProjectsLocationsConnectionsCreateCall

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

func (*ProjectsLocationsConnectionsCreateCall)ConnectionId

ConnectionId sets the optional parameter "connectionId": Connection id thatshould be assigned to the created connection.

func (*ProjectsLocationsConnectionsCreateCall)Context

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

func (*ProjectsLocationsConnectionsCreateCall)Do

Do executes the "bigqueryconnection.projects.locations.connections.create" call.Any non-2xx status code is an error. Response headers are in either*Connection.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 (*ProjectsLocationsConnectionsCreateCall)Fields

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

func (*ProjectsLocationsConnectionsCreateCall)Header

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

typeProjectsLocationsConnectionsDeleteCall

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

func (*ProjectsLocationsConnectionsDeleteCall)Context

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

func (*ProjectsLocationsConnectionsDeleteCall)Do

Do executes the "bigqueryconnection.projects.locations.connections.delete" call.Any non-2xx status code is an error. Response headers are in either*Empty.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 (*ProjectsLocationsConnectionsDeleteCall)Fields

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

func (*ProjectsLocationsConnectionsDeleteCall)Header

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

typeProjectsLocationsConnectionsGetCall

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

func (*ProjectsLocationsConnectionsGetCall)Context

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

func (*ProjectsLocationsConnectionsGetCall)Do

Do executes the "bigqueryconnection.projects.locations.connections.get" call.Any non-2xx status code is an error. Response headers are in either*Connection.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 (*ProjectsLocationsConnectionsGetCall)Fields

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

func (*ProjectsLocationsConnectionsGetCall)Header

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

func (*ProjectsLocationsConnectionsGetCall)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.

typeProjectsLocationsConnectionsGetIamPolicyCall

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

func (*ProjectsLocationsConnectionsGetIamPolicyCall)Context

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

func (*ProjectsLocationsConnectionsGetIamPolicyCall)Do

Do executes the "bigqueryconnection.projects.locations.connections.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 (*ProjectsLocationsConnectionsGetIamPolicyCall)Fields

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

func (*ProjectsLocationsConnectionsGetIamPolicyCall)Header

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

typeProjectsLocationsConnectionsListCall

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

func (*ProjectsLocationsConnectionsListCall)Context

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

func (*ProjectsLocationsConnectionsListCall)Do

Do executes the "bigqueryconnection.projects.locations.connections.list" call.Any non-2xx status code is an error. Response headers are in either*ListConnectionsResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsListCall)Fields

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

func (*ProjectsLocationsConnectionsListCall)Header

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

func (*ProjectsLocationsConnectionsListCall)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 (*ProjectsLocationsConnectionsListCall)PageSize

PageSize sets the optional parameter "pageSize": Required. Page size.

func (*ProjectsLocationsConnectionsListCall)PageToken

PageToken sets the optional parameter "pageToken": Page token.

func (*ProjectsLocationsConnectionsListCall)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.

typeProjectsLocationsConnectionsPatchCall

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

func (*ProjectsLocationsConnectionsPatchCall)Context

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

func (*ProjectsLocationsConnectionsPatchCall)Do

Do executes the "bigqueryconnection.projects.locations.connections.patch" call.Any non-2xx status code is an error. Response headers are in either*Connection.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 (*ProjectsLocationsConnectionsPatchCall)Fields

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

func (*ProjectsLocationsConnectionsPatchCall)Header

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

func (*ProjectsLocationsConnectionsPatchCall)UpdateMask

UpdateMask sets the optional parameter "updateMask": Required. Update maskfor the connection fields to be updated.

typeProjectsLocationsConnectionsService

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

func (*ProjectsLocationsConnectionsService)Create

Create: Creates a new connection.

  • parent: Parent resource name. Must be in the format`projects/{project_id}/locations/{location_id}`.

func (*ProjectsLocationsConnectionsService)Delete

Delete: Deletes connection and associated credential.

  • name: Name of the deleted connection, for example:`projects/{project_id}/locations/{location_id}/connections/{connection_id}`.

func (*ProjectsLocationsConnectionsService)Get

Get: Returns specified connection.

  • name: Name of the requested connection, for example:`projects/{project_id}/locations/{location_id}/connections/{connection_id}`.

func (*ProjectsLocationsConnectionsService)GetIamPolicy

GetIamPolicy: Gets the access control policy for a resource. Returns anempty policy if the resource exists and does not have a policy set.

func (*ProjectsLocationsConnectionsService)List

List: Returns a list of connections in the given project.

  • parent: Parent resource name. Must be in the form:`projects/{project_id}/locations/{location_id}`.

func (*ProjectsLocationsConnectionsService)Patch

Patch: Updates the specified connection. For security reasons, also resetscredential if connection properties are in the update field mask.

  • name: Name of the connection to update, for example:`projects/{project_id}/locations/{location_id}/connections/{connection_id}`.

func (*ProjectsLocationsConnectionsService)SetIamPolicy

SetIamPolicy: Sets the access control policy on the specified resource.Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`,and `PERMISSION_DENIED` errors.

func (*ProjectsLocationsConnectionsService)TestIamPermissions

TestIamPermissions: Returns permissions that a caller has on the specifiedresource. If the resource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error. Note: This operation is designed to beused for building permission-aware UIs and command-line tools, not forauthorization checking. This operation may "fail open" without warning.

typeProjectsLocationsConnectionsSetIamPolicyCall

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

func (*ProjectsLocationsConnectionsSetIamPolicyCall)Context

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

func (*ProjectsLocationsConnectionsSetIamPolicyCall)Do

Do executes the "bigqueryconnection.projects.locations.connections.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 (*ProjectsLocationsConnectionsSetIamPolicyCall)Fields

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

func (*ProjectsLocationsConnectionsSetIamPolicyCall)Header

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

typeProjectsLocationsConnectionsTestIamPermissionsCall

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

func (*ProjectsLocationsConnectionsTestIamPermissionsCall)Context

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

func (*ProjectsLocationsConnectionsTestIamPermissionsCall)Do

Do executes the "bigqueryconnection.projects.locations.connections.testIamPermissions" call.Any non-2xx status code is an error. Response headers are in either*TestIamPermissionsResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsTestIamPermissionsCall)Fields

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

func (*ProjectsLocationsConnectionsTestIamPermissionsCall)Header

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

typeProjectsLocationsService

type ProjectsLocationsService struct {Connections *ProjectsLocationsConnectionsService// contains filtered or unexported fields}

funcNewProjectsLocationsService

func NewProjectsLocationsService(s *Service) *ProjectsLocationsService

typeProjectsService

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

funcNewProjectsService

func NewProjectsService(s *Service) *ProjectsService

typeSalesforceDataCloudProperties

type SalesforceDataCloudProperties struct {// Identity: Output only. A unique Google-owned and Google-generated service// account identity for the connection.Identitystring `json:"identity,omitempty"`// InstanceUri: The URL to the user's Salesforce DataCloud instance.InstanceUristring `json:"instanceUri,omitempty"`// TenantId: The ID of the user's Salesforce tenant.TenantIdstring `json:"tenantId,omitempty"`// ForceSendFields is a list of field names (e.g. "Identity") 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. "Identity") 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:"-"`}

SalesforceDataCloudProperties: Connection properties specific to SalesforceDataCloud. This is intended for use only by Salesforce partner projects.

func (SalesforceDataCloudProperties)MarshalJSON

func (sSalesforceDataCloudProperties) 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.

typeSetIamPolicyRequest

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)MarshalJSON

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

typeSparkHistoryServerConfig

type SparkHistoryServerConfig struct {// DataprocCluster: Optional. Resource name of an existing Dataproc Cluster to// act as a Spark History Server for the connection. Example: *// `projects/[project_id]/regions/[region]/clusters/[cluster_name]`DataprocClusterstring `json:"dataprocCluster,omitempty"`// ForceSendFields is a list of field names (e.g. "DataprocCluster") 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. "DataprocCluster") 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:"-"`}

SparkHistoryServerConfig: Configuration of the Spark History Server.

func (SparkHistoryServerConfig)MarshalJSON

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

typeSparkProperties

type SparkProperties struct {// MetastoreServiceConfig: Optional. Dataproc Metastore Service configuration// for the connection.MetastoreServiceConfig *MetastoreServiceConfig `json:"metastoreServiceConfig,omitempty"`// ServiceAccountId: Output only. The account ID of the service created for the// purpose of this connection. The service account does not have any// permissions associated with it when it is created. After creation, customers// delegate permissions to the service account. When the connection is used in// the context of a stored procedure for Apache Spark in BigQuery, the service// account is used to connect to the desired resources in Google Cloud. The// account ID is in the form of:// bqcx--@gcp-sa-bigquery-consp.iam.gserviceaccount.comServiceAccountIdstring `json:"serviceAccountId,omitempty"`// SparkHistoryServerConfig: Optional. Spark History Server configuration for// the connection.SparkHistoryServerConfig *SparkHistoryServerConfig `json:"sparkHistoryServerConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "MetastoreServiceConfig") 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. "MetastoreServiceConfig") 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:"-"`}

SparkProperties: Container for connection properties to execute storedprocedures for Apache Spark.

func (SparkProperties)MarshalJSON

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

typeTestIamPermissionsRequest

type TestIamPermissionsRequest struct {// Permissions: The set of permissions to check for the `resource`. Permissions// with wildcards (such as `*` or `storage.*`) are not allowed. For more// information see IAM Overview// (https://cloud.google.com/iam/docs/overview#permissions).Permissions []string `json:"permissions,omitempty"`// ForceSendFields is a list of field names (e.g. "Permissions") 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. "Permissions") 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:"-"`}

TestIamPermissionsRequest: Request message for `TestIamPermissions` method.

func (TestIamPermissionsRequest)MarshalJSON

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

typeTestIamPermissionsResponse

type TestIamPermissionsResponse struct {// Permissions: A subset of `TestPermissionsRequest.permissions` that the// caller is allowed.Permissions []string `json:"permissions,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Permissions") 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. "Permissions") 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:"-"`}

TestIamPermissionsResponse: Response message for `TestIamPermissions`method.

func (TestIamPermissionsResponse)MarshalJSON

func (sTestIamPermissionsResponse) 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