Movatterモバイル変換


[0]ホーム

URL:


connectors

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 connectors provides access to the Connectors API.

For product documentation, see:https://cloud.google.com/apigee/docs/api-platform/connectors/about-connectors

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

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

connectorsService, err := connectors.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, ...)connectorsService, err := connectors.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))

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

Index

Constants

View Source
const (// 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)

typeAuthConfig

type AuthConfig struct {// AdditionalVariables: Optional. List containing additional auth configs.AdditionalVariables []*ConfigVariable `json:"additionalVariables,omitempty"`// AuthKey: Optional. Identifier key for auth configAuthKeystring `json:"authKey,omitempty"`// AuthType: Optional. The type of authentication configured.//// Possible values://   "AUTH_TYPE_UNSPECIFIED" - Authentication type not specified.//   "USER_PASSWORD" - Username and Password Authentication.//   "OAUTH2_JWT_BEARER" - JSON Web Token (JWT) Profile for Oauth 2.0// Authorization Grant based authentication//   "OAUTH2_CLIENT_CREDENTIALS" - Oauth 2.0 Client Credentials Grant// Authentication//   "SSH_PUBLIC_KEY" - SSH Public Key Authentication//   "OAUTH2_AUTH_CODE_FLOW" - Oauth 2.0 Authorization Code Flow//   "GOOGLE_AUTHENTICATION" - Google authentication//   "OAUTH2_AUTH_CODE_FLOW_GOOGLE_MANAGED" - Oauth 2.0 Authorization Code Flow// with Google Provided OAuth ClientAuthTypestring `json:"authType,omitempty"`// Oauth2AuthCodeFlow: Oauth2AuthCodeFlow.Oauth2AuthCodeFlow *Oauth2AuthCodeFlow `json:"oauth2AuthCodeFlow,omitempty"`// Oauth2AuthCodeFlowGoogleManaged: Oauth2AuthCodeFlowGoogleManaged.Oauth2AuthCodeFlowGoogleManaged *Oauth2AuthCodeFlowGoogleManaged `json:"oauth2AuthCodeFlowGoogleManaged,omitempty"`// Oauth2ClientCredentials: Oauth2ClientCredentials.Oauth2ClientCredentials *Oauth2ClientCredentials `json:"oauth2ClientCredentials,omitempty"`// Oauth2JwtBearer: Oauth2JwtBearer.Oauth2JwtBearer *Oauth2JwtBearer `json:"oauth2JwtBearer,omitempty"`// SshPublicKey: SSH Public Key.SshPublicKey *SshPublicKey `json:"sshPublicKey,omitempty"`// UserPassword: UserPassword.UserPassword *UserPassword `json:"userPassword,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalVariables") 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. "AdditionalVariables") 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:"-"`}

AuthConfig: AuthConfig defines details of a authentication type.

func (AuthConfig)MarshalJSON

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

typeAuthConfigTemplate

type AuthConfigTemplate struct {// AuthKey: Identifier key for auth configAuthKeystring `json:"authKey,omitempty"`// AuthType: The type of authentication configured.//// Possible values://   "AUTH_TYPE_UNSPECIFIED" - Authentication type not specified.//   "USER_PASSWORD" - Username and Password Authentication.//   "OAUTH2_JWT_BEARER" - JSON Web Token (JWT) Profile for Oauth 2.0// Authorization Grant based authentication//   "OAUTH2_CLIENT_CREDENTIALS" - Oauth 2.0 Client Credentials Grant// Authentication//   "SSH_PUBLIC_KEY" - SSH Public Key Authentication//   "OAUTH2_AUTH_CODE_FLOW" - Oauth 2.0 Authorization Code Flow//   "GOOGLE_AUTHENTICATION" - Google authentication//   "OAUTH2_AUTH_CODE_FLOW_GOOGLE_MANAGED" - Oauth 2.0 Authorization Code Flow// with Google Provided OAuth ClientAuthTypestring `json:"authType,omitempty"`// ConfigVariableTemplates: Config variables to describe an `AuthConfig` for a// `Connection`.ConfigVariableTemplates []*ConfigVariableTemplate `json:"configVariableTemplates,omitempty"`// Description: Connector specific description for an authentication template.Descriptionstring `json:"description,omitempty"`// DisplayName: Display name for authentication template.DisplayNamestring `json:"displayName,omitempty"`// IsDefault: Whether the auth config is the default one.IsDefaultbool `json:"isDefault,omitempty"`// ForceSendFields is a list of field names (e.g. "AuthKey") 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. "AuthKey") 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:"-"`}

AuthConfigTemplate: AuthConfigTemplate defines required field over anauthentication type.

func (AuthConfigTemplate)MarshalJSON

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

typeAuthFieldadded inv0.197.0

type AuthField struct {// DataType: Data type of the field.DataTypestring `json:"dataType,omitempty"`// Description: Description of the field.Descriptionstring `json:"description,omitempty"`// Key: Key of the field.Keystring `json:"key,omitempty"`// ForceSendFields is a list of field names (e.g. "DataType") 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. "DataType") 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:"-"`}

AuthField: AuthField defines a field in an authentication type.

func (AuthField)MarshalJSONadded inv0.197.0

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

typeAuthObjectadded inv0.197.0

type AuthObject struct {// AdditionalProperties: Whether the object has additional properties.AdditionalPropertiesbool `json:"additionalProperties,omitempty"`// AuthKey: Auth key of the object.AuthKeystring `json:"authKey,omitempty"`// AuthType: Auth type of the object.AuthTypestring `json:"authType,omitempty"`// Description: Description of the object.Descriptionstring `json:"description,omitempty"`// IsDefault: Whether the object is the default one.IsDefaultbool `json:"isDefault,omitempty"`// Properties: Properties of the object.Properties map[string]AuthProperty `json:"properties,omitempty"`// Type: Type of the object.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalProperties") 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. "AdditionalProperties") 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:"-"`}

AuthObject: AuthObject defines a JSON schema of an authentication type.

func (AuthObject)MarshalJSONadded inv0.197.0

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

typeAuthPropertyadded inv0.197.0

type AuthProperty struct {// Description: Description of the property.Descriptionstring `json:"description,omitempty"`// Type: Type of the property.Typestring `json:"type,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:"-"`}

AuthProperty: AuthProperty defines a property of an authentication type.

func (AuthProperty)MarshalJSONadded inv0.197.0

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

typeAuthSchemaadded inv0.197.0

type AuthSchema struct {// AuthFields: List of AuthFields.AuthFields []*AuthField `json:"authFields,omitempty"`// AuthKey: Auth key of the schema.AuthKeystring `json:"authKey,omitempty"`// AuthType: Auth type of the schema.//// Possible values://   "AUTH_TYPE_UNSPECIFIED" - Authentication type not specified.//   "USER_PASSWORD" - Username and Password Authentication.//   "OAUTH2_JWT_BEARER" - JSON Web Token (JWT) Profile for Oauth 2.0// Authorization Grant based authentication//   "OAUTH2_CLIENT_CREDENTIALS" - Oauth 2.0 Client Credentials Grant// Authentication//   "SSH_PUBLIC_KEY" - SSH Public Key Authentication//   "OAUTH2_AUTH_CODE_FLOW" - Oauth 2.0 Authorization Code Flow//   "GOOGLE_AUTHENTICATION" - Google authentication//   "OAUTH2_AUTH_CODE_FLOW_GOOGLE_MANAGED" - Oauth 2.0 Authorization Code Flow// with Google Provided OAuth ClientAuthTypestring `json:"authType,omitempty"`// Description: Description of the schema.Descriptionstring `json:"description,omitempty"`// DisplayName: Display name of the schema.DisplayNamestring `json:"displayName,omitempty"`// IsDefault: Whether the auth schema is the default one.IsDefaultbool `json:"isDefault,omitempty"`// ForceSendFields is a list of field names (e.g. "AuthFields") 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. "AuthFields") 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:"-"`}

AuthSchema: AuthSchema defines the schema of an authentication type.

func (AuthSchema)MarshalJSONadded inv0.197.0

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

typeAuthorizationCodeLinkadded inv0.88.0

type AuthorizationCodeLink struct {// ClientId: Optional. The client ID assigned to the Google Cloud Connectors// OAuth app for the connector data source.ClientIdstring `json:"clientId,omitempty"`// ClientSecret: Optional. The client secret assigned to the Google Cloud// Connectors OAuth app for the connector data source.ClientSecret *Secret `json:"clientSecret,omitempty"`// EnablePkce: Optional. Whether to enable PKCE for the auth code flow.EnablePkcebool `json:"enablePkce,omitempty"`// OmitQueryParams: Optional. Omit query params from the redirect URI.OmitQueryParamsbool `json:"omitQueryParams,omitempty"`// Scopes: Optional. The scopes for which the user will authorize Google Cloud// Connectors on the connector data source.Scopes []string `json:"scopes,omitempty"`// Uri: Optional. The base URI the user must click to trigger the authorization// code login flow.Uristring `json:"uri,omitempty"`// ForceSendFields is a list of field names (e.g. "ClientId") 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. "ClientId") 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:"-"`}

AuthorizationCodeLink: This configuration captures the details required torender an authorization link for the OAuth Authorization Code Flow.

func (AuthorizationCodeLink)MarshalJSONadded inv0.88.0

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

typeBillingConfigadded inv0.176.0

type BillingConfig struct {// BillingCategory: Output only. Billing category for the connector.//// Possible values://   "BILLING_CATEGORY_UNSPECIFIED" - Billing category is not specified.//   "GCP_AND_TECHNICAL_CONNECTOR" - GCP/Technical connector.//   "NON_GCP_CONNECTOR" - Non-GCP connector.BillingCategorystring `json:"billingCategory,omitempty"`// ForceSendFields is a list of field names (e.g. "BillingCategory") 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. "BillingCategory") 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:"-"`}

BillingConfig: Billing config for the connection.

func (BillingConfig)MarshalJSONadded inv0.176.0

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

typeCancelOperationRequest

type CancelOperationRequest struct {}

CancelOperationRequest: The request message for Operations.CancelOperation.

typeConfigVariable

type ConfigVariable struct {// BoolValue: Value is a bool.BoolValuebool `json:"boolValue,omitempty"`// EncryptionKeyValue: Value is a Encryption Key.EncryptionKeyValue *EncryptionKey `json:"encryptionKeyValue,omitempty"`// IntValue: Value is an integerIntValueint64 `json:"intValue,omitempty,string"`// Key: Optional. Key of the config variable.Keystring `json:"key,omitempty"`// SecretValue: Value is a secret.SecretValue *Secret `json:"secretValue,omitempty"`// StringValue: Value is a string.StringValuestring `json:"stringValue,omitempty"`// ForceSendFields is a list of field names (e.g. "BoolValue") 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. "BoolValue") 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:"-"`}

ConfigVariable: ConfigVariable represents a configuration variable presentin a Connection. or AuthConfig.

func (ConfigVariable)MarshalJSON

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

typeConfigVariableTemplate

type ConfigVariableTemplate struct {// AuthorizationCodeLink: Optional. Authorization code link options. To be// populated if `ValueType` is `AUTHORIZATION_CODE`AuthorizationCodeLink *AuthorizationCodeLink `json:"authorizationCodeLink,omitempty"`// Description: Optional. Description.Descriptionstring `json:"description,omitempty"`// DisplayName: Optional. Display name of the parameter.DisplayNamestring `json:"displayName,omitempty"`// EnumOptions: Optional. Enum options. To be populated if `ValueType` is// `ENUM`EnumOptions []*EnumOption `json:"enumOptions,omitempty"`// EnumSource: Optional. enum source denotes the source of api to fill the enum// options//// Possible values://   "ENUM_SOURCE_UNSPECIFIED" - Api type unspecified.//   "EVENT_TYPES_API" - list event types.EnumSourcestring `json:"enumSource,omitempty"`// IsAdvanced: Optional. Indicates if current template is part of advanced// settingsIsAdvancedbool `json:"isAdvanced,omitempty"`// Key: Optional. Key of the config variable.Keystring `json:"key,omitempty"`// LocationType: Optional. Location Type denotes where this value should be// sent in BYOC connections.//// Possible values://   "LOCATION_TYPE_UNSPECIFIED" - Location type unspecified.//   "HEADER" - Request header.//   "PAYLOAD" - Request Payload.//   "QUERY_PARAM" - Request query param.//   "PATH_PARAM" - Request path param.LocationTypestring `json:"locationType,omitempty"`// MultipleSelectConfig: Optional. MultipleSelectConfig represents the multiple// options for a config variable.MultipleSelectConfig *MultipleSelectConfig `json:"multipleSelectConfig,omitempty"`// Required: Optional. Flag represents that this `ConfigVariable` must be// provided for a connection.Requiredbool `json:"required,omitempty"`// RequiredCondition: Optional. Condition under which a field would be// required. The condition can be represented in the form of a logical// expression.RequiredCondition *LogicalExpression `json:"requiredCondition,omitempty"`// RoleGrant: Optional. Role grant configuration for the config variable.RoleGrant *RoleGrant `json:"roleGrant,omitempty"`// State: Output only. State of the config variable.//// Possible values://   "STATE_UNSPECIFIED" - Status is unspecified.//   "ACTIVE" - Config variable is active//   "DEPRECATED" - Config variable is deprecated.Statestring `json:"state,omitempty"`// ValidationRegex: Optional. Regular expression in RE2 syntax used for// validating the `value` of a `ConfigVariable`.ValidationRegexstring `json:"validationRegex,omitempty"`// ValueType: Optional. Type of the parameter: string, int, bool etc. consider// custom type for the benefit for the validation.//// Possible values://   "VALUE_TYPE_UNSPECIFIED" - Value type is not specified.//   "STRING" - Value type is string.//   "INT" - Value type is integer.//   "BOOL" - Value type is boolean.//   "SECRET" - Value type is secret.//   "ENUM" - Value type is enum.//   "AUTHORIZATION_CODE" - Value type is authorization code.//   "ENCRYPTION_KEY" - Encryption Key.//   "MULTIPLE_SELECT" - Value type is multiple select.ValueTypestring `json:"valueType,omitempty"`// ForceSendFields is a list of field names (e.g. "AuthorizationCodeLink") 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. "AuthorizationCodeLink") 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:"-"`}

ConfigVariableTemplate: ConfigVariableTemplate provides metadata about a`ConfigVariable` that is used in a Connection.

func (ConfigVariableTemplate)MarshalJSON

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

typeConnection

type Connection struct {// AsyncOperationsEnabled: Optional. Async operations enabled for the// connection. If Async Operations is enabled, Connection allows the customers// to initiate async long running operations using the actions API.AsyncOperationsEnabledbool `json:"asyncOperationsEnabled,omitempty"`// AuthConfig: Optional. Configuration for establishing the connection's// authentication with an external system.AuthConfig *AuthConfig `json:"authConfig,omitempty"`// AuthOverrideEnabled: Optional. Auth override enabled for the connection. If// Auth Override is enabled, Connection allows the backend service auth to be// overridden in the entities/actions API.AuthOverrideEnabledbool `json:"authOverrideEnabled,omitempty"`// BillingConfig: Output only. Billing config for the connection.BillingConfig *BillingConfig `json:"billingConfig,omitempty"`// ConfigVariables: Optional. Configuration for configuring the connection with// an external system.ConfigVariables []*ConfigVariable `json:"configVariables,omitempty"`// ConnectionRevision: Output only. Connection revision. This field is only// updated when the connection is created or updated by User.ConnectionRevisionint64 `json:"connectionRevision,omitempty,string"`// ConnectorVersion: Required. Connector version on which the connection is// created. The format is:// projects/*/locations/*/providers/*/connectors/*/versions/* Only global// location is supported for ConnectorVersion resource.ConnectorVersionstring `json:"connectorVersion,omitempty"`// ConnectorVersionInfraConfig: Output only. Infra configs supported by// Connector Version.ConnectorVersionInfraConfig *ConnectorVersionInfraConfig `json:"connectorVersionInfraConfig,omitempty"`// ConnectorVersionLaunchStage: Output only. Flag to mark the version// indicating the launch stage.//// Possible values://   "LAUNCH_STAGE_UNSPECIFIED" - LAUNCH_STAGE_UNSPECIFIED.//   "PREVIEW" - PREVIEW.//   "GA" - GA.//   "DEPRECATED" - DEPRECATED.//   "TEST" - TEST.//   "PRIVATE_PREVIEW" - PRIVATE_PREVIEW.ConnectorVersionLaunchStagestring `json:"connectorVersionLaunchStage,omitempty"`// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// Description: Optional. Description of the resource.Descriptionstring `json:"description,omitempty"`// DestinationConfigs: Optional. Configuration of the Connector's destination.// Only accepted for Connectors that accepts user defined destination(s).DestinationConfigs []*DestinationConfig `json:"destinationConfigs,omitempty"`// EnvoyImageLocation: Output only. GCR location where the envoy image is// stored. formatted like: gcr.io/{bucketName}/{imageName}EnvoyImageLocationstring `json:"envoyImageLocation,omitempty"`// EuaOauthAuthConfig: Optional. Additional Oauth2.0 Auth config for EUA. If// the connection is configured using non-OAuth authentication but OAuth needs// to be used for EUA, this field can be populated with the OAuth config. This// should be a OAuth2AuthCodeFlow Auth type only.EuaOauthAuthConfig *AuthConfig `json:"euaOauthAuthConfig,omitempty"`// EventingConfig: Optional. Eventing config of a connectionEventingConfig *EventingConfig `json:"eventingConfig,omitempty"`// EventingEnablementType: Optional. Eventing enablement type. Will be nil if// eventing is not enabled.//// Possible values://   "EVENTING_ENABLEMENT_TYPE_UNSPECIFIED" - Eventing Enablement Type// Unspecifeied.//   "EVENTING_AND_CONNECTION" - Both connection and eventing.//   "ONLY_EVENTING" - Only Eventing.EventingEnablementTypestring `json:"eventingEnablementType,omitempty"`// EventingRuntimeData: Output only. Eventing Runtime Data.EventingRuntimeData *EventingRuntimeData `json:"eventingRuntimeData,omitempty"`// FallbackOnAdminCredentials: Optional. Fallback on admin credentials for the// connection. If this both auth_override_enabled and// fallback_on_admin_credentials are set to true, the connection will use the// admin credentials if the dynamic auth header is not present during auth// override.FallbackOnAdminCredentialsbool `json:"fallbackOnAdminCredentials,omitempty"`// Host: Output only. The name of the Hostname of the Service Directory service// with TLS.Hoststring `json:"host,omitempty"`// ImageLocation: Output only. GCR location where the runtime image is stored.// formatted like: gcr.io/{bucketName}/{imageName}ImageLocationstring `json:"imageLocation,omitempty"`// IsTrustedTester: Output only. Is trusted tester program enabled for the// project.IsTrustedTesterbool `json:"isTrustedTester,omitempty"`// Labels: Optional. Resource labels to represent user-provided metadata. Refer// to cloud documentation on labels for more details.//https://cloud.google.com/compute/docs/labeling-resourcesLabels map[string]string `json:"labels,omitempty"`// LockConfig: Optional. Configuration that indicates whether or not the// Connection can be edited.LockConfig *LockConfig `json:"lockConfig,omitempty"`// LogConfig: Optional. Log configuration for the connection.LogConfig *ConnectorsLogConfig `json:"logConfig,omitempty"`// Name: Output only. Resource name of the Connection. Format:// projects/{project}/locations/{location}/connections/{connection}Namestring `json:"name,omitempty"`// NodeConfig: Optional. Node configuration for the connection.NodeConfig *NodeConfig `json:"nodeConfig,omitempty"`// ServiceAccount: Optional. Service account needed for runtime plane to access// Google Cloud resources.ServiceAccountstring `json:"serviceAccount,omitempty"`// ServiceDirectory: Output only. The name of the Service Directory service// name. Used for Private Harpoon to resolve the ILB address. e.g.// "projects/cloud-connectors-e2e-testing/locations/us-central1/namespaces/istio// -system/services/istio-ingressgateway-connectors"ServiceDirectorystring `json:"serviceDirectory,omitempty"`// SslConfig: Optional. Ssl config of a connectionSslConfig *SslConfig `json:"sslConfig,omitempty"`// Status: Output only. Current status of the connection.Status *ConnectionStatus `json:"status,omitempty"`// SubscriptionType: Output only. This subscription type enum states the// subscription type of the project.//// Possible values://   "SUBSCRIPTION_TYPE_UNSPECIFIED" - Unspecified subscription type.//   "PAY_G" - PayG subscription.//   "PAID" - Paid Subscription.SubscriptionTypestring `json:"subscriptionType,omitempty"`// Suspended: Optional. Suspended indicates if a user has suspended a// connection or not.Suspendedbool `json:"suspended,omitempty"`// TlsServiceDirectory: Output only. The name of the Service Directory service// with TLS.TlsServiceDirectorystring `json:"tlsServiceDirectory,omitempty"`// TrafficShapingConfigs: Optional. Traffic shaping configuration for the// connection.TrafficShapingConfigs []*TrafficShapingConfig `json:"trafficShapingConfigs,omitempty"`// UpdateTime: Output only. Updated time.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. "AsyncOperationsEnabled") 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. "AsyncOperationsEnabled") 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: Connection represents an instance of connector.

func (Connection)MarshalJSON

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

typeConnectionSchemaMetadata

type ConnectionSchemaMetadata struct {// Actions: Output only. List of actions.Actions []string `json:"actions,omitempty"`// Entities: Output only. List of entity names.Entities []string `json:"entities,omitempty"`// ErrorMessage: Error message for users.ErrorMessagestring `json:"errorMessage,omitempty"`// Name: Output only. Resource name. Format:// projects/{project}/locations/{location}/connections/{connection}/connectionSc// hemaMetadataNamestring `json:"name,omitempty"`// RefreshTime: Output only. Timestamp when the connection runtime schema// refresh was triggered.RefreshTimestring `json:"refreshTime,omitempty"`// State: Output only. The current state of runtime schema.//// Possible values://   "STATE_UNSPECIFIED" - Default state.//   "REFRESHING" - Schema refresh is in progress.//   "UPDATED" - Schema has been updated.//   "REFRESHING_SCHEMA_METADATA" - Schema refresh for metadata is in progress.//   "UPDATED_SCHEMA_METADATA" - Schema metadata has been updated.//   "REFRESH_SCHEMA_METADATA_FAILED" - Failed to refresh schema metadata//   "REFRESHING_FULL_SCHEMA" - Triggered full schema refresh//   "UPDATED_FULL_SCHEMA" - Updated full schemaStatestring `json:"state,omitempty"`// UpdateTime: Output only. Timestamp when the connection runtime schema was// updated.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. "Actions") 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. "Actions") 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:"-"`}

ConnectionSchemaMetadata: ConnectionSchemaMetadata is the singleton resourceof each connection. It includes the entity and action names of runtimeresources exposed by a connection backend.

func (ConnectionSchemaMetadata)MarshalJSON

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

typeConnectionStatus

type ConnectionStatus struct {// Description: Description.Descriptionstring `json:"description,omitempty"`// State: State.//// Possible values://   "STATE_UNSPECIFIED" - Connection does not have a state yet.//   "CREATING" - Connection is being created.//   "ACTIVE" - Connection is running and ready for requests.//   "INACTIVE" - Connection is stopped.//   "DELETING" - Connection is being deleted.//   "UPDATING" - Connection is being updated.//   "ERROR" - Connection is not running due to an error.//   "AUTHORIZATION_REQUIRED" - Connection is not running because the// authorization configuration is not complete.Statestring `json:"state,omitempty"`// Status: Status provides detailed information for the state.Statusstring `json:"status,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:"-"`}

ConnectionStatus: ConnectionStatus indicates the state of the connection.

func (ConnectionStatus)MarshalJSON

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

typeConnector

type Connector struct {// Category: Output only. Category of the connector.Categorystring `json:"category,omitempty"`// ConnectorType: Output only. The type of the connector.//// Possible values://   "CONNECTOR_TYPE_UNSPECIFIED" - Default value.//   "CONNECTOR_TYPE_GOOGLE" - Google connectors.//   "CONNECTOR_TYPE_TECHNICAL" - Technical connectors.//   "CONNECTOR_TYPE_THIRD_PARTY" - Third Party connectors.ConnectorTypestring `json:"connectorType,omitempty"`// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// Description: Output only. Description of the resource.Descriptionstring `json:"description,omitempty"`// DisplayName: Output only. Display name.DisplayNamestring `json:"displayName,omitempty"`// DocumentationUri: Output only. Link to documentation page.DocumentationUristring `json:"documentationUri,omitempty"`// EventingDetails: Output only. Eventing details. Will be null if eventing is// not supported.EventingDetails *EventingDetails `json:"eventingDetails,omitempty"`// ExternalUri: Output only. Link to external page.ExternalUristring `json:"externalUri,omitempty"`// Labels: Output only. Resource labels to represent user-provided metadata.// Refer to cloud documentation on labels for more details.//https://cloud.google.com/compute/docs/labeling-resourcesLabels map[string]string `json:"labels,omitempty"`// LaunchStage: Output only. Flag to mark the version indicating the launch// stage.//// Possible values://   "LAUNCH_STAGE_UNSPECIFIED" - LAUNCH_STAGE_UNSPECIFIED.//   "PREVIEW" - PREVIEW.//   "GA" - GA.//   "DEPRECATED" - DEPRECATED.//   "TEST" - TEST.//   "PRIVATE_PREVIEW" - PRIVATE_PREVIEW.LaunchStagestring `json:"launchStage,omitempty"`// MarketplaceConnectorDetails: Output only. Marketplace connector details.// Will be null if the connector is not marketplace connector.MarketplaceConnectorDetails *MarketplaceConnectorDetails `json:"marketplaceConnectorDetails,omitempty"`// Name: Output only. Resource name of the Connector. Format:// projects/{project}/locations/{location}/providers/{provider}/connectors/{conn// ector} Only global location is supported for Connector resource.Namestring `json:"name,omitempty"`// Tags: Output only. Tags of the connector.Tags []string `json:"tags,omitempty"`// UpdateTime: Output only. Updated time.UpdateTimestring `json:"updateTime,omitempty"`// WebAssetsLocation: Output only. Cloud storage location of icons etc consumed// by UI.WebAssetsLocationstring `json:"webAssetsLocation,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Category") 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. "Category") 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:"-"`}

Connector: Connectors indicates a specific connector type, e.x. Salesforce,SAP etc.

func (Connector)MarshalJSON

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

typeConnectorInfraConfigadded inv0.131.0

type ConnectorInfraConfig struct {// AlwaysAllocateCpu: Indicates that the Cloud Run CPU should always be// allocated.AlwaysAllocateCpubool `json:"alwaysAllocateCpu,omitempty"`// ConnectionRatelimitWindowSeconds: The window used for ratelimiting runtime// requests to connections.ConnectionRatelimitWindowSecondsint64 `json:"connectionRatelimitWindowSeconds,omitempty,string"`// ConnectorVersioningEnabled: Indicate whether connector versioning is// enabled.ConnectorVersioningEnabledbool `json:"connectorVersioningEnabled,omitempty"`// DeploymentModel: Indicate whether connector is deployed on GKE/CloudRun//// Possible values://   "DEPLOYMENT_MODEL_UNSPECIFIED" - Deployment model is not specified.//   "GKE_MST" - Default model gke mst.//   "CLOUD_RUN_MST" - Cloud run mst.DeploymentModelstring `json:"deploymentModel,omitempty"`// HpaConfig: HPA autoscaling config.HpaConfig *HPAConfig `json:"hpaConfig,omitempty"`// InternalclientRatelimitThreshold: Max QPS supported for internal requests// originating from Connd.InternalclientRatelimitThresholdint64 `json:"internalclientRatelimitThreshold,omitempty,string"`// MaxInstanceRequestConcurrency: Max Instance Request Conncurrency for Cloud// Run service.MaxInstanceRequestConcurrencyint64 `json:"maxInstanceRequestConcurrency,omitempty"`// MigrateDeploymentModel: Indicate whether connector is being migrated to// cloud run deployment model.MigrateDeploymentModelbool `json:"migrateDeploymentModel,omitempty"`// MigrateTls: Indicate whether connector is being migrated to TLS.MigrateTlsbool `json:"migrateTls,omitempty"`// NetworkEgressModeOverride: Network egress mode override to migrate to direct// VPC egress.NetworkEgressModeOverride *NetworkEgressModeOverride `json:"networkEgressModeOverride,omitempty"`// ProvisionCloudSpanner: Indicate whether cloud spanner is required for// connector job.ProvisionCloudSpannerbool `json:"provisionCloudSpanner,omitempty"`// ProvisionMemstore: Indicate whether memstore is required for connector job.ProvisionMemstorebool `json:"provisionMemstore,omitempty"`// RatelimitThreshold: Max QPS supported by the connector version before// throttling of requests.RatelimitThresholdint64 `json:"ratelimitThreshold,omitempty,string"`// ResourceLimits: System resource limits.ResourceLimits *ResourceLimits `json:"resourceLimits,omitempty"`// ResourceRequests: System resource requests.ResourceRequests *ResourceRequests `json:"resourceRequests,omitempty"`// SharedDeployment: The name of shared connector deployment.SharedDeploymentstring `json:"sharedDeployment,omitempty"`// ForceSendFields is a list of field names (e.g. "AlwaysAllocateCpu") 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. "AlwaysAllocateCpu") 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:"-"`}

ConnectorInfraConfig: This cofiguration provides infra configs like ratelimit threshold which need to be configurable for every connector version

func (ConnectorInfraConfig)MarshalJSONadded inv0.131.0

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

typeConnectorVersion

type ConnectorVersion struct {// AuthConfigTemplates: Output only. List of auth configs supported by the// Connector Version.AuthConfigTemplates []*AuthConfigTemplate `json:"authConfigTemplates,omitempty"`// AuthOverrideEnabled: Output only. Flag to mark the dynamic auth override.AuthOverrideEnabledbool `json:"authOverrideEnabled,omitempty"`// ConfigVariableTemplates: Output only. List of config variables needed to// create a connection.ConfigVariableTemplates []*ConfigVariableTemplate `json:"configVariableTemplates,omitempty"`// ConnectorInfraConfig: Output only. Infra configs supported by Connector.ConnectorInfraConfig *ConnectorInfraConfig `json:"connectorInfraConfig,omitempty"`// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// DestinationConfigTemplates: Output only. List of destination configs needed// to create a connection.DestinationConfigTemplates []*DestinationConfigTemplate `json:"destinationConfigTemplates,omitempty"`// DisplayName: Output only. Display name.DisplayNamestring `json:"displayName,omitempty"`// EgressControlConfig: Output only. Configuration for Egress Control.EgressControlConfig *EgressControlConfig `json:"egressControlConfig,omitempty"`// EventingConfigTemplate: Output only. Eventing configuration supported by the// Connector.EventingConfigTemplate *EventingConfigTemplate `json:"eventingConfigTemplate,omitempty"`// IsCustomActionsSupported: Output only. Is custom actions supported.IsCustomActionsSupportedbool `json:"isCustomActionsSupported,omitempty"`// IsCustomEntitiesSupported: Output only. Is custom entities supported.IsCustomEntitiesSupportedbool `json:"isCustomEntitiesSupported,omitempty"`// Labels: Output only. Resource labels to represent user-provided metadata.// Refer to cloud documentation on labels for more details.//https://cloud.google.com/compute/docs/labeling-resourcesLabels map[string]string `json:"labels,omitempty"`// LaunchStage: Output only. Flag to mark the version indicating the launch// stage.//// Possible values://   "LAUNCH_STAGE_UNSPECIFIED" - LAUNCH_STAGE_UNSPECIFIED.//   "PREVIEW" - PREVIEW.//   "GA" - GA.//   "DEPRECATED" - DEPRECATED.//   "TEST" - TEST.//   "PRIVATE_PREVIEW" - PRIVATE_PREVIEW.LaunchStagestring `json:"launchStage,omitempty"`// Name: Output only. Resource name of the Version. Format:// projects/{project}/locations/{location}/providers/{provider}/connectors/{conn// ector}/versions/{version} Only global location is supported for Connector// resource.Namestring `json:"name,omitempty"`// ReleaseVersion: Output only. ReleaseVersion of the connector, for example:// "1.0.1-alpha".ReleaseVersionstring `json:"releaseVersion,omitempty"`// RoleGrant: Output only. Role grant configuration for this config variable.// It will be DEPRECATED soon.RoleGrant *RoleGrant `json:"roleGrant,omitempty"`// RoleGrants: Output only. Role grant configurations for this connector// version.RoleGrants []*RoleGrant `json:"roleGrants,omitempty"`// SchemaRefreshConfig: Connection Schema Refresh ConfigSchemaRefreshConfig *SchemaRefreshConfig `json:"schemaRefreshConfig,omitempty"`// SslConfigTemplate: Output only. Ssl configuration supported by the// Connector.SslConfigTemplate *SslConfigTemplate `json:"sslConfigTemplate,omitempty"`// SupportedRuntimeFeatures: Output only. Information about the runtime// features supported by the Connector.SupportedRuntimeFeatures *SupportedRuntimeFeatures `json:"supportedRuntimeFeatures,omitempty"`// SupportedStandardActions: Output only. Supported standard actions.SupportedStandardActions []*StandardAction `json:"supportedStandardActions,omitempty"`// SupportedStandardEntities: Output only. Supported standard entities.SupportedStandardEntities []*StandardEntity `json:"supportedStandardEntities,omitempty"`// UnsupportedConnectionTypes: Output only. Unsupported connection types.//// Possible values://   "CONNECTION_TYPE_UNSPECIFIED" - Connection type is unspecified.//   "CONNECTION_WITH_EVENTING" - Connection with eventing.//   "ONLY_CONNECTION" - Only connection.//   "ONLY_EVENTING" - Only eventing.UnsupportedConnectionTypes []string `json:"unsupportedConnectionTypes,omitempty"`// UpdateTime: Output only. Updated time.UpdateTimestring `json:"updateTime,omitempty"`// VpcscConfig: Output only. VPCSC config for the connector.VpcscConfig *VpcscConfig `json:"vpcscConfig,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AuthConfigTemplates") 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. "AuthConfigTemplates") 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:"-"`}

ConnectorVersion: ConnectorVersion indicates a specific version of aconnector.

func (ConnectorVersion)MarshalJSON

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

typeConnectorVersionInfraConfigadded inv0.131.0

type ConnectorVersionInfraConfig struct {// ConnectionRatelimitWindowSeconds: Output only. The window used for// ratelimiting runtime requests to connections.ConnectionRatelimitWindowSecondsint64 `json:"connectionRatelimitWindowSeconds,omitempty,string"`// DeploymentModel: Output only. Indicates whether connector is deployed on// GKE/CloudRun//// Possible values://   "DEPLOYMENT_MODEL_UNSPECIFIED" - Deployment model is not specified.//   "GKE_MST" - Default model gke mst.//   "CLOUD_RUN_MST" - Cloud run mst.DeploymentModelstring `json:"deploymentModel,omitempty"`// DeploymentModelMigrationState: Output only. Status of the deployment model// migration.//// Possible values://   "DEPLOYMENT_MODEL_MIGRATION_STATE_UNSPECIFIED" - Deployment model// migration state is not specified.//   "IN_PROGRESS" - Deployment model migration is in progress.//   "COMPLETED" - Deployment model migration is completed.//   "ROLLEDBACK" - Deployment model migration rolledback.//   "ROLLBACK_IN_PROGRESS" - Deployment model migration rollback in progress.DeploymentModelMigrationStatestring `json:"deploymentModelMigrationState,omitempty"`// HpaConfig: Output only. HPA autoscaling config.HpaConfig *HPAConfig `json:"hpaConfig,omitempty"`// InternalclientRatelimitThreshold: Output only. Max QPS supported for// internal requests originating from Connd.InternalclientRatelimitThresholdint64 `json:"internalclientRatelimitThreshold,omitempty,string"`// MaxInstanceRequestConcurrency: Output only. Max instance request// concurrency.MaxInstanceRequestConcurrencyint64 `json:"maxInstanceRequestConcurrency,omitempty"`// RatelimitThreshold: Output only. Max QPS supported by the connector version// before throttling of requests.RatelimitThresholdint64 `json:"ratelimitThreshold,omitempty,string"`// ResourceLimits: Output only. System resource limits.ResourceLimits *ResourceLimits `json:"resourceLimits,omitempty"`// ResourceRequests: Output only. System resource requests.ResourceRequests *ResourceRequests `json:"resourceRequests,omitempty"`// SharedDeployment: Output only. The name of shared connector deployment.SharedDeploymentstring `json:"sharedDeployment,omitempty"`// TlsMigrationState: Output only. Status of the TLS migration.//// Possible values://   "TLS_MIGRATION_STATE_UNSPECIFIED" - TLS migration state is not specified.//   "TLS_MIGRATION_NOT_STARTED" - TLS migration is in progress.//   "TLS_MIGRATION_COMPLETED" - TLS migration is completed.TlsMigrationStatestring `json:"tlsMigrationState,omitempty"`// ForceSendFields is a list of field names (e.g.// "ConnectionRatelimitWindowSeconds") 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.// "ConnectionRatelimitWindowSeconds") to include in API requests with the JSON// null value. By default, fields with empty values are omitted from API// requests. Seehttps://pkg.go.dev/google.golang.org/api#hdr-NullFields for// more details.NullFields []string `json:"-"`}

ConnectorVersionInfraConfig: This configuration provides infra configs likerate limit threshold which need to be configurable for every connectorversion

func (ConnectorVersionInfraConfig)MarshalJSONadded inv0.131.0

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

typeConnectorsLogConfigadded inv0.118.0

type ConnectorsLogConfig struct {// Enabled: Optional. Enabled represents whether logging is enabled or not for// a connection.Enabledbool `json:"enabled,omitempty"`// Level: Optional. Log configuration level.//// Possible values://   "LOG_LEVEL_UNSPECIFIED" - Log level unspecified.//   "ERROR" - Only error logs are enabled.//   "INFO" - Info and error logs are enabled.//   "DEBUG" - Debug and high verbosity logs are enabled.Levelstring `json:"level,omitempty"`// ForceSendFields is a list of field names (e.g. "Enabled") 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. "Enabled") 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:"-"`}

ConnectorsLogConfig: Log configuration for the connection.

func (ConnectorsLogConfig)MarshalJSONadded inv0.118.0

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

typeCustomConnectoradded inv0.151.0

type CustomConnector struct {// ActiveConnectorVersions: Output only. Active connector versions.ActiveConnectorVersions []string `json:"activeConnectorVersions,omitempty"`// AllConnectorVersions: Output only. All connector versions.AllConnectorVersions []string `json:"allConnectorVersions,omitempty"`// AllMarketplaceVersions: Output only. All marketplace versions.AllMarketplaceVersions []string `json:"allMarketplaceVersions,omitempty"`// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// CustomConnectorType: Required. Type of the custom connector.//// Possible values://   "CUSTOM_CONNECTOR_TYPE_UNSPECIFIED" - Connector type is not specified.//   "OPEN_API" - OpenAPI connector.//   "PROTO" - Proto connector.//   "SDK" - SDK connector.CustomConnectorTypestring `json:"customConnectorType,omitempty"`// Description: Optional. Description of the resource.Descriptionstring `json:"description,omitempty"`// DisplayName: Optional. Display name.DisplayNamestring `json:"displayName,omitempty"`// Labels: Optional. Resource labels to represent user-provided metadata. Refer// to cloud documentation on labels for more details.//https://cloud.google.com/compute/docs/labeling-resourcesLabels map[string]string `json:"labels,omitempty"`// Logo: Optional. Logo of the resource.Logostring `json:"logo,omitempty"`// Name: Identifier. Resource name of the CustomConnector. Format:// projects/{project}/locations/{location}/customConnectors/{connector}Namestring `json:"name,omitempty"`// PublishedMarketplaceVersions: Output only. Published marketplace versions.PublishedMarketplaceVersions []string `json:"publishedMarketplaceVersions,omitempty"`// UpdateTime: Output only. Updated time.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. "ActiveConnectorVersions") 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. "ActiveConnectorVersions") 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:"-"`}

CustomConnector: CustomConnector represents the custom connector defined bythe customer as part of byoc.

func (CustomConnector)MarshalJSONadded inv0.151.0

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

typeCustomConnectorVersionadded inv0.151.0

type CustomConnectorVersion struct {// AsyncOperationsSupport: Optional. Indicates if Async Operations/Connector// Job is supported. This is only available for SDK based custom connectors.AsyncOperationsSupportbool `json:"asyncOperationsSupport,omitempty"`// AuthConfig: Optional. Authentication config for accessing connector service// (facade). This is used only when enable_backend_destination_config is true.AuthConfig *AuthConfig `json:"authConfig,omitempty"`// AuthConfigTemplates: Optional. Auth Config Templates is only used when// connector backend is enabled. This is used to specify the auth configs// supported by the connector backend service to talk to the actual application// backend.AuthConfigTemplates []*AuthConfigTemplate `json:"authConfigTemplates,omitempty"`// AuthOverrideSupport: Optional. Auth override support.AuthOverrideSupportbool `json:"authOverrideSupport,omitempty"`// BackendVariableTemplates: Optional. Backend variable templates is only used// when connector backend is enabled. This is used to specify the variables// required by the connector backend service to talk to the actual application// backend. This translates to additional variable templates in the connection// config.BackendVariableTemplates []*ConfigVariableTemplate `json:"backendVariableTemplates,omitempty"`// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// DestinationConfigs: Optional. Destination config(s) for accessing connector// service (facade). This is used only when enable_backend_destination_config// is true.DestinationConfigs []*DestinationConfig `json:"destinationConfigs,omitempty"`// EnableBackendDestinationConfig: Optional. Indicates if an intermediatory// connectorservice is used as backend. When this is enabled, the connector// destination and connector auth config are required. For SDK based// connectors, this is always enabled.EnableBackendDestinationConfigbool `json:"enableBackendDestinationConfig,omitempty"`// Labels: Optional. Resource labels to represent user-provided metadata. Refer// to cloud documentation on labels for more details.//https://cloud.google.com/compute/docs/labeling-resourcesLabels map[string]string `json:"labels,omitempty"`// Name: Output only. Identifier. Resource name of the Version. Format:// projects/{project}/locations/{location}/customConnectors/{custom_connector}/c// ustomConnectorVersions/{custom_connector_version}Namestring `json:"name,omitempty"`// PartnerMetadata: Optional. Partner metadata details. This should be// populated only when publishing the custom connector to partner connector.PartnerMetadata *PartnerMetadata `json:"partnerMetadata,omitempty"`// PublishStatus: Output only. Publish status of a custom connector.PublishStatus *PublishStatus `json:"publishStatus,omitempty"`// ServiceAccount: Optional. Service account used by runtime plane to access// auth config secrets.ServiceAccountstring `json:"serviceAccount,omitempty"`// SpecLocation: Optional. Location of the custom connector spec. This is only// used for Open API based custom connectors. The location can be either a// public url like `https://public-url.com/spec` Or a Google Cloud Storage// location like `gs:///`.SpecLocationstring `json:"specLocation,omitempty"`// SpecServerUrls: Output only. Server URLs parsed from the Open API spec. This// is only used for Open API based custom connectors.SpecServerUrls []string `json:"specServerUrls,omitempty"`// State: Output only. State of the custom connector version.//// Possible values://   "STATE_UNSPECIFIED" - State Unspecified.//   "ACTIVE" - Active state. By default we set the state to Active.//   "DEPRECATED" - Deprecated state.Statestring `json:"state,omitempty"`// UpdateTime: Output only. Updated time.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. "AsyncOperationsSupport") 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. "AsyncOperationsSupport") 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:"-"`}

CustomConnectorVersion: CustomConnectorVersion indicates a specific versionof a connector.

func (CustomConnectorVersion)MarshalJSONadded inv0.151.0

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

typeDailyCycleadded inv0.155.0

type DailyCycle struct {// Duration: Output only. Duration of the time window, set by service producer.Durationstring `json:"duration,omitempty"`// StartTime: Time within the day to start the operations.StartTime *TimeOfDay `json:"startTime,omitempty"`// ForceSendFields is a list of field names (e.g. "Duration") 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. "Duration") 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:"-"`}

DailyCycle: Time window specified for daily operations.

func (DailyCycle)MarshalJSONadded inv0.155.0

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

typeDateadded inv0.155.0

type Date struct {// Day: Day of a month. Must be from 1 to 31 and valid for the year and month,// or 0 to specify a year by itself or a year and month where the day isn't// significant.Dayint64 `json:"day,omitempty"`// Month: Month of a year. Must be from 1 to 12, or 0 to specify a year without// a month and day.Monthint64 `json:"month,omitempty"`// Year: Year of the date. Must be from 1 to 9999, or 0 to specify a date// without a year.Yearint64 `json:"year,omitempty"`// ForceSendFields is a list of field names (e.g. "Day") 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. "Day") 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:"-"`}

Date: Represents a whole or partial calendar date, such as a birthday. Thetime of day and time zone are either specified elsewhere or areinsignificant. The date is relative to the Gregorian Calendar. This canrepresent one of the following: * A full date, with non-zero year, month,and day values. * A month and day, with a zero year (for example, ananniversary). * A year on its own, with a zero month and a zero day. * Ayear and month, with a zero day (for example, a credit card expirationdate). Related types: * google.type.TimeOfDay * google.type.DateTime *google.protobuf.Timestamp

func (Date)MarshalJSONadded inv0.155.0

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

typeDeadLetterConfigadded inv0.156.0

type DeadLetterConfig struct {// ProjectId: Optional. Project which has the topic given.ProjectIdstring `json:"projectId,omitempty"`// Topic: Optional. Topic to push events which couldn't be processed.Topicstring `json:"topic,omitempty"`// ForceSendFields is a list of field names (e.g. "ProjectId") 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. "ProjectId") 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:"-"`}

DeadLetterConfig: Dead Letter configuration details provided by the user.

func (DeadLetterConfig)MarshalJSONadded inv0.156.0

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

typeDenyMaintenancePeriodadded inv0.155.0

type DenyMaintenancePeriod struct {// EndDate: Deny period end date. This can be: * A full date, with non-zero// year, month and day values. * A month and day value, with a zero year.// Allows recurring deny periods each year. Date matching this period will have// to be before the end.EndDate *Date `json:"endDate,omitempty"`// StartDate: Deny period start date. This can be: * A full date, with non-zero// year, month and day values. * A month and day value, with a zero year.// Allows recurring deny periods each year. Date matching this period will have// to be the same or after the start.StartDate *Date `json:"startDate,omitempty"`// Time: Time in UTC when the Blackout period starts on start_date and ends on// end_date. This can be: * Full time. * All zeros for 00:00:00 UTCTime *TimeOfDay `json:"time,omitempty"`// ForceSendFields is a list of field names (e.g. "EndDate") 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. "EndDate") 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:"-"`}

DenyMaintenancePeriod: DenyMaintenancePeriod definition. Maintenance isforbidden within the deny period. The start_date must be less than theend_date.

func (DenyMaintenancePeriod)MarshalJSONadded inv0.155.0

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

typeDeprecateCustomConnectorVersionRequestadded inv0.181.0

type DeprecateCustomConnectorVersionRequest struct {}

DeprecateCustomConnectorVersionRequest: Request message forConnectorsService.DeprecateCustomConnectorVersion

typeDestinationadded inv0.93.0

type Destination struct {// Host: For publicly routable host.Hoststring `json:"host,omitempty"`// Port: The port is the target port number that is accepted by the// destination.Portint64 `json:"port,omitempty"`// ServiceAttachment: PSC service attachments. Format:// projects/*/regions/*/serviceAttachments/*ServiceAttachmentstring `json:"serviceAttachment,omitempty"`// ForceSendFields is a list of field names (e.g. "Host") 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. "Host") 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:"-"`}

func (Destination)MarshalJSONadded inv0.93.0

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

typeDestinationConfigadded inv0.93.0

type DestinationConfig struct {// Destinations: The destinations for the key.Destinations []*Destination `json:"destinations,omitempty"`// Key: The key is the destination identifier that is supported by the// Connector.Keystring `json:"key,omitempty"`// ForceSendFields is a list of field names (e.g. "Destinations") 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. "Destinations") 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:"-"`}

DestinationConfig: Define the Connectors target endpoint.

func (DestinationConfig)MarshalJSONadded inv0.93.0

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

typeDestinationConfigTemplateadded inv0.118.0

type DestinationConfigTemplate struct {// AutocompleteSuggestions: Autocomplete suggestions for destination URL field.AutocompleteSuggestions []string `json:"autocompleteSuggestions,omitempty"`// DefaultPort: The default port.DefaultPortint64 `json:"defaultPort,omitempty"`// Description: Description.Descriptionstring `json:"description,omitempty"`// DisplayName: Display name of the parameter.DisplayNamestring `json:"displayName,omitempty"`// IsAdvanced: Whether the current destination tempalate is part of Advanced// settingsIsAdvancedbool `json:"isAdvanced,omitempty"`// Key: Key of the destination.Keystring `json:"key,omitempty"`// Max: The maximum number of destinations supported for this key.Maxint64 `json:"max,omitempty"`// Min: The minimum number of destinations supported for this key.Minint64 `json:"min,omitempty"`// PortFieldType: Whether port number should be provided by customers.//// Possible values://   "FIELD_TYPE_UNSPECIFIED"//   "REQUIRED"//   "OPTIONAL"//   "NOT_USED"PortFieldTypestring `json:"portFieldType,omitempty"`// RegexPattern: Regex pattern for host.RegexPatternstring `json:"regexPattern,omitempty"`// ForceSendFields is a list of field names (e.g. "AutocompleteSuggestions") 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. "AutocompleteSuggestions") 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:"-"`}

DestinationConfigTemplate: DestinationConfigTemplate defines requireddestinations supported by the Connector.

func (DestinationConfigTemplate)MarshalJSONadded inv0.118.0

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

typeEUASecretadded inv0.233.0

type EUASecret struct {// SecretValue: Optional. The plain string value of the secret.SecretValuestring `json:"secretValue,omitempty"`// SecretVersion: Optional. The resource name of the secret version in the// format, format as: `projects/*/secrets/*/versions/*`.SecretVersionstring `json:"secretVersion,omitempty"`// ForceSendFields is a list of field names (e.g. "SecretValue") 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. "SecretValue") 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:"-"`}

EUASecret: EUASecret provides a reference to entries in Secret Manager.

func (EUASecret)MarshalJSONadded inv0.233.0

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

typeEgressControlConfig

type EgressControlConfig struct {// Backends: Static Comma separated backends which are common for all// Connection resources. Supported formats for each backend are host:port or// just host (host can be ip address or domain name).Backendsstring `json:"backends,omitempty"`// ExtractionRules: Extractions Rules to extract the backends from customer// provided configuration.ExtractionRules *ExtractionRules `json:"extractionRules,omitempty"`// ForceSendFields is a list of field names (e.g. "Backends") 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. "Backends") 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:"-"`}

EgressControlConfig: Egress control config for connector runtime. Theseconfigurations define the rules to identify which outbound domains/hostsneeds to be whitelisted. It may be a static information for a particularconnector version or it is derived from the configurations provided by thecustomer in Connection resource.

func (EgressControlConfig)MarshalJSON

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

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); }

typeEncryptionConfigadded inv0.150.0

type EncryptionConfig struct {// EncryptionType: Optional. Encryption type for the region.//// Possible values://   "ENCRYPTION_TYPE_UNSPECIFIED" - Encryption type unspecified.//   "GMEK" - Google managed encryption keys//   "CMEK" - Customer managed encryption keys.EncryptionTypestring `json:"encryptionType,omitempty"`// KmsKeyName: Optional. KMS crypto key. This field accepts identifiers of the// form// `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/// {crypto_key}`KmsKeyNamestring `json:"kmsKeyName,omitempty"`// ForceSendFields is a list of field names (e.g. "EncryptionType") 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. "EncryptionType") 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:"-"`}

EncryptionConfig: Regional encryption config for CMEK details.

func (EncryptionConfig)MarshalJSONadded inv0.150.0

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

typeEncryptionKeyadded inv0.127.0

type EncryptionKey struct {// KmsKeyName: Optional. The [KMS key name] with which the content of the// Operation is encrypted. The expected format:// `projects/*/locations/*/keyRings/*/cryptoKeys/*`. Will be empty string if// google managed.KmsKeyNamestring `json:"kmsKeyName,omitempty"`// Type: Type.//// Possible values://   "TYPE_UNSPECIFIED" - Value type is not specified.//   "GOOGLE_MANAGED" - Google Managed.//   "CUSTOMER_MANAGED" - Customer Managed.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "KmsKeyName") 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. "KmsKeyName") 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:"-"`}

EncryptionKey: Encryption Key value.

func (EncryptionKey)MarshalJSONadded inv0.127.0

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

typeEndPointadded inv0.131.0

type EndPoint struct {// EndpointUri: Optional. The URI of the Endpoint.EndpointUristring `json:"endpointUri,omitempty"`// Headers: Optional. List of Header to be added to the Endpoint.Headers []*Header `json:"headers,omitempty"`// ForceSendFields is a list of field names (e.g. "EndpointUri") 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. "EndpointUri") 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:"-"`}

EndPoint: Endpoint message includes details of the Destination endpoint.

func (EndPoint)MarshalJSONadded inv0.131.0

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

typeEndUserAuthenticationadded inv0.230.0

type EndUserAuthentication struct {// ConfigVariables: Optional. Config variables for the EndUserAuthentication.ConfigVariables []*EndUserAuthenticationConfigVariable `json:"configVariables,omitempty"`// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// DestinationConfigs: Optional. Destination configs for the// EndUserAuthentication.DestinationConfigs []*DestinationConfig `json:"destinationConfigs,omitempty"`// EndUserAuthenticationConfig: Optional. The EndUserAuthenticationConfig for// the EndUserAuthentication.EndUserAuthenticationConfig *EndUserAuthenticationConfig `json:"endUserAuthenticationConfig,omitempty"`// Labels: Optional. Labels for the EndUserAuthentication.Labels []string `json:"labels,omitempty"`// Name: Required. Identifier. Resource name of the EndUserAuthentication.// Format:// projects/{project}/locations/{location}/connections/{connection}/endUserAuthe// ntications/{end_user_authentication}Namestring `json:"name,omitempty"`// NotifyEndpointDestination: Optional. The destination to hit when we receive// an eventNotifyEndpointDestination *EndUserAuthenticationNotifyEndpointDestination `json:"notifyEndpointDestination,omitempty"`// Roles: Optional. Roles for the EndUserAuthentication.//// Possible values://   "ROLE_UNSPECIFIED" - Default state.//   "READER" - READER.//   "READER_DOMAIN_WIDE_ACCESSIBLE" - READER_DOMAIN_WIDE_ACCESSIBLE which has// access to only public data.Roles []string `json:"roles,omitempty"`// Status: Optional. Status of the EndUserAuthentication.Status *EndUserAuthenticationEndUserAuthenticationStatus `json:"status,omitempty"`// UpdateTime: Output only. Updated time.UpdateTimestring `json:"updateTime,omitempty"`// UserId: Optional. The user id of the user.UserIdstring `json:"userId,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "ConfigVariables") 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. "ConfigVariables") 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:"-"`}

EndUserAuthentication: AuthConfig defines details of a authentication type.

func (EndUserAuthentication)MarshalJSONadded inv0.230.0

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

typeEndUserAuthenticationConfigadded inv0.230.0

type EndUserAuthenticationConfig struct {// AdditionalVariables: Optional. List containing additional auth configs.AdditionalVariables []*EndUserAuthenticationConfigVariable `json:"additionalVariables,omitempty"`// AuthKey: Identifier key for auth configAuthKeystring `json:"authKey,omitempty"`// AuthType: The type of authentication configured.//// Possible values://   "AUTH_TYPE_UNSPECIFIED" - Authentication type not specified.//   "USER_PASSWORD" - Username and Password Authentication.//   "OAUTH2_JWT_BEARER" - JSON Web Token (JWT) Profile for Oauth 2.0// Authorization Grant based authentication//   "OAUTH2_CLIENT_CREDENTIALS" - Oauth 2.0 Client Credentials Grant// Authentication//   "SSH_PUBLIC_KEY" - SSH Public Key Authentication//   "OAUTH2_AUTH_CODE_FLOW" - Oauth 2.0 Authorization Code Flow//   "GOOGLE_AUTHENTICATION" - Google authentication//   "OAUTH2_AUTH_CODE_FLOW_GOOGLE_MANAGED" - Oauth 2.0 Authorization Code Flow// with Google Provided OAuth ClientAuthTypestring `json:"authType,omitempty"`// Oauth2AuthCodeFlow: Oauth2AuthCodeFlow.Oauth2AuthCodeFlow *EndUserAuthenticationConfigOauth2AuthCodeFlow `json:"oauth2AuthCodeFlow,omitempty"`// Oauth2AuthCodeFlowGoogleManaged: Oauth2AuthCodeFlowGoogleManaged.Oauth2AuthCodeFlowGoogleManaged *EndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManaged `json:"oauth2AuthCodeFlowGoogleManaged,omitempty"`// Oauth2ClientCredentials: Oauth2ClientCredentials.Oauth2ClientCredentials *EndUserAuthenticationConfigOauth2ClientCredentials `json:"oauth2ClientCredentials,omitempty"`// Oauth2JwtBearer: Oauth2JwtBearer.Oauth2JwtBearer *EndUserAuthenticationConfigOauth2JwtBearer `json:"oauth2JwtBearer,omitempty"`// SshPublicKey: SSH Public Key.SshPublicKey *EndUserAuthenticationConfigSshPublicKey `json:"sshPublicKey,omitempty"`// UserPassword: UserPassword.UserPassword *EndUserAuthenticationConfigUserPassword `json:"userPassword,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalVariables") 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. "AdditionalVariables") 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:"-"`}

EndUserAuthenticationConfig: EndUserAuthenticationConfig defines details ofa authentication configuration for EUC

func (EndUserAuthenticationConfig)MarshalJSONadded inv0.230.0

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

typeEndUserAuthenticationConfigOauth2AuthCodeFlowadded inv0.230.0

type EndUserAuthenticationConfigOauth2AuthCodeFlow struct {// AuthCode: Optional. Authorization code to be exchanged for access and// refresh tokens.AuthCodestring `json:"authCode,omitempty"`// AuthUri: Optional. Auth URL for Authorization Code FlowAuthUristring `json:"authUri,omitempty"`// ClientId: Optional. Client ID for user-provided OAuth app.ClientIdstring `json:"clientId,omitempty"`// ClientSecret: Optional. Client secret for user-provided OAuth app.ClientSecret *EUASecret `json:"clientSecret,omitempty"`// EnablePkce: Optional. Whether to enable PKCE when the user performs the auth// code flow.EnablePkcebool `json:"enablePkce,omitempty"`// OauthTokenData: Optional. Auth Code DataOauthTokenData *OAuthTokenData `json:"oauthTokenData,omitempty"`// PkceVerifier: Optional. PKCE verifier to be used during the auth code// exchange.PkceVerifierstring `json:"pkceVerifier,omitempty"`// RedirectUri: Optional. Redirect URI to be provided during the auth code// exchange.RedirectUristring `json:"redirectUri,omitempty"`// Scopes: Optional. Scopes the connection will request when the user performs// the auth code flow.Scopes []string `json:"scopes,omitempty"`// ForceSendFields is a list of field names (e.g. "AuthCode") 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. "AuthCode") 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:"-"`}

EndUserAuthenticationConfigOauth2AuthCodeFlow: Parameters to support Oauth2.0 Auth Code Grant Authentication. Seehttps://www.rfc-editor.org/rfc/rfc6749#section-1.3.1 for more details.

func (EndUserAuthenticationConfigOauth2AuthCodeFlow)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManagedadded inv0.230.0

type EndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManaged struct {// AuthCode: Optional. Authorization code to be exchanged for access and// refresh tokens.AuthCodestring `json:"authCode,omitempty"`// OauthTokenData: Auth Code DataOauthTokenData *OAuthTokenData `json:"oauthTokenData,omitempty"`// RedirectUri: Optional. Redirect URI to be provided during the auth code// exchange.RedirectUristring `json:"redirectUri,omitempty"`// Scopes: Required. Scopes the connection will request when the user performs// the auth code flow.Scopes []string `json:"scopes,omitempty"`// ForceSendFields is a list of field names (e.g. "AuthCode") 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. "AuthCode") 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:"-"`}

EndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManaged: Parameters tosupport Oauth 2.0 Auth Code Grant Authentication using Google Provided OAuthClient. Seehttps://tools.ietf.org/html/rfc6749#section-1.3.1 for moredetails.

func (EndUserAuthenticationConfigOauth2AuthCodeFlowGoogleManaged)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationConfigOauth2ClientCredentialsadded inv0.230.0

type EndUserAuthenticationConfigOauth2ClientCredentials struct {// ClientId: The client identifier.ClientIdstring `json:"clientId,omitempty"`// ClientSecret: Required. string value or secret version containing the client// secret.ClientSecret *EUASecret `json:"clientSecret,omitempty"`// ForceSendFields is a list of field names (e.g. "ClientId") 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. "ClientId") 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:"-"`}

EndUserAuthenticationConfigOauth2ClientCredentials: Parameters to supportOauth 2.0 Client Credentials Grant Authentication. Seehttps://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.

func (EndUserAuthenticationConfigOauth2ClientCredentials)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationConfigOauth2JwtBeareradded inv0.230.0

type EndUserAuthenticationConfigOauth2JwtBearer struct {// ClientKey: Required. secret version/value reference containing a PKCS#8// PEM-encoded private key associated with the Client Certificate. This private// key will be used to sign JWTs used for the jwt-bearer authorization grant.// Specified in the form as: `projects/*/strings/*/versions/*`.ClientKey *EUASecret `json:"clientKey,omitempty"`// JwtClaims: JwtClaims providers fields to generate the token.JwtClaims *EndUserAuthenticationConfigOauth2JwtBearerJwtClaims `json:"jwtClaims,omitempty"`// ForceSendFields is a list of field names (e.g. "ClientKey") 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. "ClientKey") 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:"-"`}

EndUserAuthenticationConfigOauth2JwtBearer: Parameters to support JSON WebToken (JWT) Profile for Oauth 2.0 Authorization Grant based authentication.Seehttps://tools.ietf.org/html/rfc7523 for more details.

func (EndUserAuthenticationConfigOauth2JwtBearer)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationConfigOauth2JwtBearerJwtClaimsadded inv0.230.0

type EndUserAuthenticationConfigOauth2JwtBearerJwtClaims struct {// Audience: Value for the "aud" claim.Audiencestring `json:"audience,omitempty"`// Issuer: Value for the "iss" claim.Issuerstring `json:"issuer,omitempty"`// Subject: Value for the "sub" claim.Subjectstring `json:"subject,omitempty"`// ForceSendFields is a list of field names (e.g. "Audience") 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. "Audience") 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:"-"`}

EndUserAuthenticationConfigOauth2JwtBearerJwtClaims: JWT claims used for thejwt-bearer authorization grant.

func (EndUserAuthenticationConfigOauth2JwtBearerJwtClaims)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationConfigSshPublicKeyadded inv0.230.0

type EndUserAuthenticationConfigSshPublicKey struct {// CertType: Format of SSH Client cert.CertTypestring `json:"certType,omitempty"`// SshClientCert: Required. SSH Client Cert. It should contain both public and// private key.SshClientCert *EUASecret `json:"sshClientCert,omitempty"`// SshClientCertPass: Required. Password (passphrase) for ssh client// certificate if it has one.SshClientCertPass *EUASecret `json:"sshClientCertPass,omitempty"`// Username: The user account used to authenticate.Usernamestring `json:"username,omitempty"`// ForceSendFields is a list of field names (e.g. "CertType") 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. "CertType") 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:"-"`}

EndUserAuthenticationConfigSshPublicKey: Parameters to support Ssh publickey Authentication.

func (EndUserAuthenticationConfigSshPublicKey)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationConfigUserPasswordadded inv0.230.0

type EndUserAuthenticationConfigUserPassword struct {// Password: Required. string value or secret version reference containing the// password.Password *EUASecret `json:"password,omitempty"`// Username: 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:"-"`}

EndUserAuthenticationConfigUserPassword: Parameters to support Username andPassword Authentication.

func (EndUserAuthenticationConfigUserPassword)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationConfigVariableadded inv0.230.0

type EndUserAuthenticationConfigVariable struct {// BoolValue: Value is a bool.BoolValuebool `json:"boolValue,omitempty"`// IntValue: Value is an integerIntValueint64 `json:"intValue,omitempty,string"`// Key: Required. Key of the config variable.Keystring `json:"key,omitempty"`// SecretValue: Value is a secretSecretValue *EUASecret `json:"secretValue,omitempty"`// StringValue: Value is a string.StringValuestring `json:"stringValue,omitempty"`// ForceSendFields is a list of field names (e.g. "BoolValue") 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. "BoolValue") 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:"-"`}

EndUserAuthenticationConfigVariable: EndUserAuthenticationConfigVariablerepresents a configuration variable present in a EndUserAuthentication.

func (EndUserAuthenticationConfigVariable)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationEndUserAuthenticationStatusadded inv0.230.0

type EndUserAuthenticationEndUserAuthenticationStatus struct {// Description: Output only. Description of the state.Descriptionstring `json:"description,omitempty"`// State: Output only. State of Event Subscription resource.//// Possible values://   "STATE_UNSPECIFIED" - Default state.//   "ACTIVE" - EndUserAuthentication is in Active state.//   "ERROR" - EndUserAuthentication is in Error state.Statestring `json:"state,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:"-"`}

EndUserAuthenticationEndUserAuthenticationStatus: EndUserAuthenticationStatus denotes the status of the EndUserAuthentication resource.

func (EndUserAuthenticationEndUserAuthenticationStatus)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationNotifyEndpointDestinationadded inv0.230.0

type EndUserAuthenticationNotifyEndpointDestination struct {// Endpoint: Optional. OPTION 1: Hit an endpoint when the refresh token is// expired.Endpoint *EndUserAuthenticationNotifyEndpointDestinationEndPoint `json:"endpoint,omitempty"`// ServiceAccount: Required. Service account needed for runtime plane to notify// the backend.ServiceAccountstring `json:"serviceAccount,omitempty"`// Type: Required. type of the destination//// Possible values://   "TYPE_UNSPECIFIED" - Default state.//   "ENDPOINT" - Endpoint - Hit the value of endpoint when event is receivedTypestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Endpoint") 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. "Endpoint") 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:"-"`}

EndUserAuthenticationNotifyEndpointDestination: Message forNotifyEndpointDestination Destination to hit when the refresh token isexpired.

func (EndUserAuthenticationNotifyEndpointDestination)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationNotifyEndpointDestinationEndPointadded inv0.230.0

type EndUserAuthenticationNotifyEndpointDestinationEndPoint struct {// EndpointUri: Required. The URI of the Endpoint.EndpointUristring `json:"endpointUri,omitempty"`// Headers: Optional. List of Header to be added to the Endpoint.Headers []*EndUserAuthenticationNotifyEndpointDestinationEndPointHeader `json:"headers,omitempty"`// ForceSendFields is a list of field names (e.g. "EndpointUri") 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. "EndpointUri") 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:"-"`}

EndUserAuthenticationNotifyEndpointDestinationEndPoint: Endpoint messageincludes details of the Destination endpoint.

func (EndUserAuthenticationNotifyEndpointDestinationEndPoint)MarshalJSONadded inv0.230.0

typeEndUserAuthenticationNotifyEndpointDestinationEndPointHeaderadded inv0.230.0

type EndUserAuthenticationNotifyEndpointDestinationEndPointHeader struct {// Key: Required. Key of Header.Keystring `json:"key,omitempty"`// Value: Required. Value of Header.Valuestring `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Key") 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. "Key") 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:"-"`}

EndUserAuthenticationNotifyEndpointDestinationEndPointHeader: Header detailsfor a given header to be added to Endpoint.

func (EndUserAuthenticationNotifyEndpointDestinationEndPointHeader)MarshalJSONadded inv0.230.0

typeEndpointAttachmentadded inv0.122.0

type EndpointAttachment struct {// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// Description: Optional. Description of the resource.Descriptionstring `json:"description,omitempty"`// EndpointGlobalAccess: Optional. The Private Service Connect Connection// Endpoint Global Access.//https://cloud.google.com/vpc/docs/about-accessing-vpc-hosted-services-endpoints#global-accessEndpointGlobalAccessbool `json:"endpointGlobalAccess,omitempty"`// EndpointIp: Output only. The Private Service Connect connection endpoint ipEndpointIpstring `json:"endpointIp,omitempty"`// Labels: Optional. Resource labels to represent user-provided metadata. Refer// to cloud documentation on labels for more details.//https://cloud.google.com/compute/docs/labeling-resourcesLabels map[string]string `json:"labels,omitempty"`// Name: Output only. Resource name of the Endpoint Attachment. Format:// projects/{project}/locations/{location}/endpointAttachments/{endpoint_attachm// ent}Namestring `json:"name,omitempty"`// ServiceAttachment: Required. The path of the service attachmentServiceAttachmentstring `json:"serviceAttachment,omitempty"`// State: Output only. The Private Service Connect Connection Endpoint State.// This value is only available in the Full view.//// Possible values://   "STATE_UNSPECIFIED" - STATE_UNSPECIFIED.//   "PENDING" - The endpoint is pending acceptance by the producer.//   "ACCEPTED" - The endpoint has been accepted by the producer.//   "REJECTED" - The endpoint has been rejected by the producer.//   "CLOSED" - The endpoint has been closed by the producer and will not serve// traffic going forward.//   "FROZEN" - The endpoint has been frozen by the producer and will not serve// traffic.//   "NEEDS_ATTENTION" - The endpoint has been accepted by the producer, but it// is not ready to serve the traffic due to producer side issues.//   "ACCEPTED_NOT_PROGRAMMED" - The endpoint has been accepted by the// producer, but it cannot be programmed to the data plane due to invariant// violation.Statestring `json:"state,omitempty"`// UpdateTime: Output only. Updated time.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:"-"`}

EndpointAttachment: represents the Connector's Endpoint Attachment resource

func (EndpointAttachment)MarshalJSONadded inv0.122.0

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

typeEnrichmentConfigadded inv0.221.0

type EnrichmentConfig struct {// AppendAcl: Optional. Append ACL to the event.AppendAclbool `json:"appendAcl,omitempty"`// ForceSendFields is a list of field names (e.g. "AppendAcl") 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. "AppendAcl") 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:"-"`}

EnrichmentConfig: Data enrichment configuration.

func (EnrichmentConfig)MarshalJSONadded inv0.221.0

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

typeEnumOptionadded inv0.82.0

type EnumOption struct {// DisplayName: Optional. Display name of the option.DisplayNamestring `json:"displayName,omitempty"`// Id: Optional. Id of the option.Idstring `json:"id,omitempty"`// ForceSendFields is a list of field names (e.g. "DisplayName") 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. "DisplayName") 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:"-"`}

EnumOption: EnumOption definition

func (EnumOption)MarshalJSONadded inv0.82.0

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

typeEventSubscriptionadded inv0.131.0

type EventSubscription struct {// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// Destinations: Optional. The destination to hit when we receive an eventDestinations *EventSubscriptionDestination `json:"destinations,omitempty"`// EventTypeId: Optional. Event type id of the event of current// EventSubscription.EventTypeIdstring `json:"eventTypeId,omitempty"`// Jms: Optional. JMS is the source for the event listener.Jms *JMS `json:"jms,omitempty"`// Name: Required. Identifier. Resource name of the EventSubscription. Format:// projects/{project}/locations/{location}/connections/{connection}/eventSubscri// ptions/{event_subscription}Namestring `json:"name,omitempty"`// Status: Optional. Status indicates the status of the event subscription// resourceStatus *EventSubscriptionStatus `json:"status,omitempty"`// Subscriber: Optional. name of the Subscriber for the current// EventSubscription.Subscriberstring `json:"subscriber,omitempty"`// SubscriberLink: Optional. Link for Subscriber of the current// EventSubscription.SubscriberLinkstring `json:"subscriberLink,omitempty"`// TriggerConfigVariables: Optional. Configuration for configuring the triggerTriggerConfigVariables []*ConfigVariable `json:"triggerConfigVariables,omitempty"`// UpdateTime: Output only. Updated time.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:"-"`}

EventSubscription: represents the Connector's EventSubscription resource

func (EventSubscription)MarshalJSONadded inv0.131.0

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

typeEventSubscriptionDestinationadded inv0.131.0

type EventSubscriptionDestination struct {// Endpoint: OPTION 1: Hit an endpoint when we receive an event.Endpoint *EndPoint `json:"endpoint,omitempty"`// Pubsub: OPTION 3: Write the event to Pub/Sub topic.Pubsub *PubSub `json:"pubsub,omitempty"`// ServiceAccount: Optional. Service account needed for runtime plane to// trigger IP workflow.ServiceAccountstring `json:"serviceAccount,omitempty"`// Type: Optional. type of the destination//// Possible values://   "TYPE_UNSPECIFIED" - Default state.//   "ENDPOINT" - Endpoint - Hit the value of endpoint when event is received//   "GCS" - Cloud Storage - Write the event to Cloud Storage bucket//   "PUBSUB" - Pub/Sub - Write the event to Pub/Sub topicTypestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Endpoint") 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. "Endpoint") 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:"-"`}

EventSubscriptionDestination: Message for EventSubscription Destination toact on receiving an event

func (EventSubscriptionDestination)MarshalJSONadded inv0.131.0

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

typeEventSubscriptionStatusadded inv0.131.0

type EventSubscriptionStatus struct {// Description: Output only. Description of the state.Descriptionstring `json:"description,omitempty"`// State: Output only. State of Event Subscription resource.//// Possible values://   "STATE_UNSPECIFIED" - Default state.//   "CREATING" - EventSubscription creation is in progress.//   "UPDATING" - EventSubscription is in Updating status.//   "ACTIVE" - EventSubscription is in Active state and is ready to receive// events.//   "SUSPENDED" - EventSubscription is currently suspended.//   "ERROR" - EventSubscription is in Error state.Statestring `json:"state,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:"-"`}

EventSubscriptionStatus: EventSubscription Status denotes the status of theEventSubscription resource.

func (EventSubscriptionStatus)MarshalJSONadded inv0.131.0

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

typeEventTypeadded inv0.131.0

type EventType struct {// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// EnrichedEventPayloadSchema: Output only. Schema of the event payload after// enriched. Will be null if read before send is not supported.EnrichedEventPayloadSchemastring `json:"enrichedEventPayloadSchema,omitempty"`// EntityType: Output only. Runtime entity type name. Will be null if entity// type map is not available. Used for read before send feature.EntityTypestring `json:"entityType,omitempty"`// EventPayloadSchema: Output only. Schema of webhook event payload.EventPayloadSchemastring `json:"eventPayloadSchema,omitempty"`// EventTypeId: Output only. Event type id. Example: `ticket.created`.EventTypeIdstring `json:"eventTypeId,omitempty"`// IdPath: Output only. Id path denotes the path of id in webhook payload.IdPathstring `json:"idPath,omitempty"`// Name: Output only. Resource name of the eventtype. Format:// projects/{project}/locations/{location}/providers/{provider}/connectors/{conn// ector}/versions/{version}/eventtypes/{eventtype} Only global location is// supported for Connector resource.Namestring `json:"name,omitempty"`// UpdateTime: Output only. Updated time.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:"-"`}

EventType: EventType includes fields.

func (EventType)MarshalJSONadded inv0.131.0

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

typeEventingConfigadded inv0.131.0

type EventingConfig struct {// AdditionalVariables: Optional. Additional eventing related field valuesAdditionalVariables []*ConfigVariable `json:"additionalVariables,omitempty"`// AuthConfig: Optional. Auth details for the webhook adapter.AuthConfig *AuthConfig `json:"authConfig,omitempty"`// DeadLetterConfig: Optional. Dead letter configuration for eventing of a// connection.DeadLetterConfig *DeadLetterConfig `json:"deadLetterConfig,omitempty"`// EnrichmentConfig: Optional. Data enrichment configuration.EnrichmentConfig *EnrichmentConfig `json:"enrichmentConfig,omitempty"`// EnrichmentEnabled: Optional. Enrichment Enabled.EnrichmentEnabledbool `json:"enrichmentEnabled,omitempty"`// EventsListenerIngressEndpoint: Optional. Ingress endpoint of the event// listener. This is used only when private connectivity is enabled.EventsListenerIngressEndpointstring `json:"eventsListenerIngressEndpoint,omitempty"`// ListenerAuthConfig: Optional. Auth details for the event listener.ListenerAuthConfig *AuthConfig `json:"listenerAuthConfig,omitempty"`// PrivateConnectivityAllowlistedProjects: Optional. List of projects to be// allowlisted for the service attachment created in the tenant project for// eventing ingress.PrivateConnectivityAllowlistedProjects []string `json:"privateConnectivityAllowlistedProjects,omitempty"`// PrivateConnectivityEnabled: Optional. Private Connectivity Enabled.PrivateConnectivityEnabledbool `json:"privateConnectivityEnabled,omitempty"`// ProxyDestinationConfig: Optional. Proxy for Eventing auto-registration.ProxyDestinationConfig *DestinationConfig `json:"proxyDestinationConfig,omitempty"`// RegistrationDestinationConfig: Optional. Registration endpoint for auto// registration.RegistrationDestinationConfig *DestinationConfig `json:"registrationDestinationConfig,omitempty"`// SslConfig: Optional. Ssl config of a connectionSslConfig *SslConfig `json:"sslConfig,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalVariables") 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. "AdditionalVariables") 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:"-"`}

EventingConfig: Eventing Configuration of a connection next: 19

func (EventingConfig)MarshalJSONadded inv0.131.0

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

typeEventingConfigTemplateadded inv0.131.0

type EventingConfigTemplate struct {// AdditionalVariables: Additional fields that need to be rendered.AdditionalVariables []*ConfigVariableTemplate `json:"additionalVariables,omitempty"`// AuthConfigTemplates: AuthConfigTemplates represents the auth values for the// webhook adapter.AuthConfigTemplates []*AuthConfigTemplate `json:"authConfigTemplates,omitempty"`// AutoRefresh: Auto refresh to extend webhook life.AutoRefreshbool `json:"autoRefresh,omitempty"`// AutoRegistrationSupported: Auto Registration supported.AutoRegistrationSupportedbool `json:"autoRegistrationSupported,omitempty"`// EncryptionKeyTemplate: Encryption key (can be either Google managed or// CMEK).EncryptionKeyTemplate *ConfigVariableTemplate `json:"encryptionKeyTemplate,omitempty"`// EnrichmentSupported: Enrichment Supported.EnrichmentSupportedbool `json:"enrichmentSupported,omitempty"`// EventListenerType: The type of the event listener for a specific connector.//// Possible values://   "EVENT_LISTENER_TYPE_UNSPECIFIED" - Default value.//   "WEBHOOK_LISTENER" - Webhook listener. e.g. Jira, Zendesk, Servicenow// etc.,//   "JMS_LISTENER" - JMS Listener. e.g. IBM MQ, Rabbit MQ etc.,EventListenerTypestring `json:"eventListenerType,omitempty"`// IsEventingSupported: Is Eventing Supported.IsEventingSupportedbool `json:"isEventingSupported,omitempty"`// ListenerAuthConfigTemplates: ListenerAuthConfigTemplates represents the auth// values for the event listener.ListenerAuthConfigTemplates []*AuthConfigTemplate `json:"listenerAuthConfigTemplates,omitempty"`// ProxyDestinationConfig: Proxy destination config template.ProxyDestinationConfig *DestinationConfigTemplate `json:"proxyDestinationConfig,omitempty"`// RegistrationDestinationConfig: Registration host destination config// template.RegistrationDestinationConfig *DestinationConfigTemplate `json:"registrationDestinationConfig,omitempty"`// SslConfigTemplate: SSL Config template for the connector version.SslConfigTemplate *SslConfigTemplate `json:"sslConfigTemplate,omitempty"`// TriggerConfigVariables: Trigger Config fields that needs to be renderedTriggerConfigVariables []*ConfigVariableTemplate `json:"triggerConfigVariables,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalVariables") 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. "AdditionalVariables") 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:"-"`}

EventingConfigTemplate: Eventing Config details of a connector version.next: 14

func (EventingConfigTemplate)MarshalJSONadded inv0.131.0

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

typeEventingDetailsadded inv0.131.0

type EventingDetails struct {// CustomEventTypes: Output only. Custom Event Types.CustomEventTypesbool `json:"customEventTypes,omitempty"`// Description: Output only. Description.Descriptionstring `json:"description,omitempty"`// DocumentationLink: Output only. Link to public documentation.DocumentationLinkstring `json:"documentationLink,omitempty"`// IconLocation: Output only. Cloud storage location of the icon.IconLocationstring `json:"iconLocation,omitempty"`// LaunchStage: Output only. Eventing Launch Stage.//// Possible values://   "LAUNCH_STAGE_UNSPECIFIED" - LAUNCH_STAGE_UNSPECIFIED.//   "PREVIEW" - PREVIEW.//   "GA" - GA.//   "DEPRECATED" - DEPRECATED.//   "TEST" - TEST.//   "PRIVATE_PREVIEW" - PRIVATE_PREVIEW.LaunchStagestring `json:"launchStage,omitempty"`// Name: Output only. Name of the Eventing trigger.Namestring `json:"name,omitempty"`// SearchTags: Output only. Array of search keywords.SearchTags []string `json:"searchTags,omitempty"`// Type: Output only. The type of the event listener for a specific connector.//// Possible values://   "TYPE_UNSPECIFIED" - Default value.//   "WEBHOOK" - Webhook listener. e.g. Jira, Zendesk, Servicenow etc.,//   "JMS" - JMS Listener. e.g. IBM MQ, Rabbit MQ etc.,Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "CustomEventTypes") 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. "CustomEventTypes") 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:"-"`}

EventingDetails: Eventing Details message.

func (EventingDetails)MarshalJSONadded inv0.131.0

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

typeEventingRuntimeDataadded inv0.131.0

type EventingRuntimeData struct {// EventsListenerEndpoint: Output only. Events listener endpoint. The value// will populated after provisioning the events listener.EventsListenerEndpointstring `json:"eventsListenerEndpoint,omitempty"`// EventsListenerPscSa: Output only. Events listener PSC Service attachment.// The value will be populated after provisioning the events listener with// private connectivity enabled.EventsListenerPscSastring `json:"eventsListenerPscSa,omitempty"`// Status: Output only. Current status of eventing.Status *EventingStatus `json:"status,omitempty"`// WebhookData: Output only. Webhook data.WebhookData *WebhookData `json:"webhookData,omitempty"`// WebhookSubscriptions: Output only. Webhook subscriptions.WebhookSubscriptions *WebhookSubscriptions `json:"webhookSubscriptions,omitempty"`// ForceSendFields is a list of field names (e.g. "EventsListenerEndpoint") 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. "EventsListenerEndpoint") 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:"-"`}

EventingRuntimeData: Eventing runtime data has the details related toeventing managed by the system.

func (EventingRuntimeData)MarshalJSONadded inv0.131.0

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

typeEventingStatusadded inv0.131.0

type EventingStatus struct {// Description: Output only. Description of error if State is set to "ERROR".Descriptionstring `json:"description,omitempty"`// State: Output only. State.//// Possible values://   "STATE_UNSPECIFIED" - Default state.//   "ACTIVE" - Eventing is enabled and ready to receive events.//   "ERROR" - Eventing is not active due to an error.//   "INGRESS_ENDPOINT_REQUIRED" - Ingress endpoint required.Statestring `json:"state,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:"-"`}

EventingStatus: EventingStatus indicates the state of eventing.

func (EventingStatus)MarshalJSONadded inv0.131.0

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

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)

typeExtractionRule

type ExtractionRule struct {// ExtractionRegex: Regex used to extract backend details from source. If// empty, whole source value will be used.ExtractionRegexstring `json:"extractionRegex,omitempty"`// Source: Source on which the rule is applied.Source *Source `json:"source,omitempty"`// ForceSendFields is a list of field names (e.g. "ExtractionRegex") 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. "ExtractionRegex") 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:"-"`}

ExtractionRule: Extraction Rule.

func (ExtractionRule)MarshalJSON

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

typeExtractionRules

type ExtractionRules struct {// ExtractionRule: Collection of Extraction Rule.ExtractionRule []*ExtractionRule `json:"extractionRule,omitempty"`// ForceSendFields is a list of field names (e.g. "ExtractionRule") 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. "ExtractionRule") 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:"-"`}

ExtractionRules: Extraction Rules to identity the backends from customerprovided configuration in Connection resource.

func (ExtractionRules)MarshalJSON

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

typeFetchAuthSchemaResponseadded inv0.197.0

type FetchAuthSchemaResponse struct {// AuthSchemas: List of AuthSchemas.AuthSchemas []*AuthSchema `json:"authSchemas,omitempty"`// JsonSchema: JSON schema of the AuthSchemas. This is only populated if the// view is JSON_SCHEMA. The schema is in draft-07 format.JsonSchema *JsonAuthSchema `json:"jsonSchema,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AuthSchemas") 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. "AuthSchemas") 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:"-"`}

FetchAuthSchemaResponse: Response message for Connectors.GetAuthSchema.

func (FetchAuthSchemaResponse)MarshalJSONadded inv0.197.0

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

typeField

type Field struct {// AdditionalDetails: The following map contains fields that are not explicitly// mentioned above,this give connectors the flexibility to add new metadata// fields.AdditionalDetailsgoogleapi.RawMessage `json:"additionalDetails,omitempty"`// DataType: The data type of the Field.//// Possible values://   "DATA_TYPE_UNSPECIFIED" - Data type is not specified.//   "DATA_TYPE_INT" - DEPRECATED! Use DATA_TYPE_INTEGER.//   "DATA_TYPE_SMALLINT" - Short integer(int16) data type.//   "DATA_TYPE_DOUBLE" - Double data type.//   "DATA_TYPE_DATE" - Date data type.//   "DATA_TYPE_DATETIME" - DEPRECATED! Use DATA_TYPE_TIMESTAMP.//   "DATA_TYPE_TIME" - Time data type.//   "DATA_TYPE_STRING" - DEPRECATED! Use DATA_TYPE_VARCHAR.//   "DATA_TYPE_LONG" - DEPRECATED! Use DATA_TYPE_BIGINT.//   "DATA_TYPE_BOOLEAN" - Boolean data type.//   "DATA_TYPE_DECIMAL" - Decimal data type.//   "DATA_TYPE_UUID" - DEPRECATED! Use DATA_TYPE_VARCHAR.//   "DATA_TYPE_BLOB" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_BIT" - Bit data type.//   "DATA_TYPE_TINYINT" - Small integer(int8) data type.//   "DATA_TYPE_INTEGER" - Integer(int32) data type.//   "DATA_TYPE_BIGINT" - Long integer(int64) data type.//   "DATA_TYPE_FLOAT" - Float data type.//   "DATA_TYPE_REAL" - Real data type.//   "DATA_TYPE_NUMERIC" - Numeric data type.//   "DATA_TYPE_CHAR" - Char data type.//   "DATA_TYPE_VARCHAR" - Varchar data type.//   "DATA_TYPE_LONGVARCHAR" - Longvarchar data type.//   "DATA_TYPE_TIMESTAMP" - Timestamp data type.//   "DATA_TYPE_NCHAR" - Nchar data type.//   "DATA_TYPE_NVARCHAR" - Nvarchar data type.//   "DATA_TYPE_LONGNVARCHAR" - Longnvarchar data type.//   "DATA_TYPE_NULL" - Null data type.//   "DATA_TYPE_OTHER" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_JAVA_OBJECT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_DISTINCT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_STRUCT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_ARRAY" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_CLOB" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_REF" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_DATALINK" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_ROWID" - UNSUPPORTED! Row id data type.//   "DATA_TYPE_BINARY" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_VARBINARY" - UNSUPPORTED! Variable binary data type.//   "DATA_TYPE_LONGVARBINARY" - UNSUPPORTED! Long variable binary data type.//   "DATA_TYPE_NCLOB" - UNSUPPORTED! NCLOB data type.//   "DATA_TYPE_SQLXML" - UNSUPPORTED! SQL XML data type is not supported.//   "DATA_TYPE_REF_CURSOR" - UNSUPPORTED! Cursor reference type is not// supported.//   "DATA_TYPE_TIME_WITH_TIMEZONE" - UNSUPPORTED! Use TIME or TIMESTAMP// instead.//   "DATA_TYPE_TIMESTAMP_WITH_TIMEZONE" - UNSUPPORTED! Use TIMESTAMP instead.DataTypestring `json:"dataType,omitempty"`// DefaultValue: The following field specifies the default value of the Field// provided by the external system if a value is not provided.DefaultValue interface{} `json:"defaultValue,omitempty"`// Description: A brief description of the Field.Descriptionstring `json:"description,omitempty"`// Field: Name of the Field.Fieldstring `json:"field,omitempty"`// JsonSchema: JsonSchema representation of this entity's schemaJsonSchema *JsonSchema `json:"jsonSchema,omitempty"`// Key: The following boolean field specifies if the current Field acts as a// primary key or id if the parent is of type entity.Keybool `json:"key,omitempty"`// Nullable: Specifies whether a null value is allowed.Nullablebool `json:"nullable,omitempty"`// Readonly: Specifies if the Field is readonly.Readonlybool `json:"readonly,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalDetails") 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. "AdditionalDetails") 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:"-"`}

Field: Metadata of an entity field.

func (Field)MarshalJSON

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

typeFieldComparisonadded inv0.128.0

type FieldComparison struct {// BoolValue: Boolean valueBoolValuebool `json:"boolValue,omitempty"`// Comparator: Optional. Comparator to use for comparing the field value.//// Possible values://   "COMPARATOR_UNSPECIFIED" - The default value.//   "EQUALS" - The field value must be equal to the specified value.//   "NOT_EQUALS" - The field value must not be equal to the specified value.Comparatorstring `json:"comparator,omitempty"`// IntValue: Integer valueIntValueint64 `json:"intValue,omitempty,string"`// Key: Optional. Key of the field.Keystring `json:"key,omitempty"`// StringValue: String valueStringValuestring `json:"stringValue,omitempty"`// ForceSendFields is a list of field names (e.g. "BoolValue") 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. "BoolValue") 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:"-"`}

FieldComparison: Field that needs to be compared.

func (FieldComparison)MarshalJSONadded inv0.128.0

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

typeHPAConfigadded inv0.139.0

type HPAConfig struct {// CpuUtilizationThreshold: Output only. Percent CPU utilization where HPA// triggers autoscaling.CpuUtilizationThresholdint64 `json:"cpuUtilizationThreshold,omitempty,string"`// MemoryUtilizationThreshold: Output only. Percent Memory utilization where// HPA triggers autoscaling.MemoryUtilizationThresholdint64 `json:"memoryUtilizationThreshold,omitempty,string"`// ForceSendFields is a list of field names (e.g. "CpuUtilizationThreshold") 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. "CpuUtilizationThreshold") 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:"-"`}

HPAConfig: Autoscaling config for connector deployment system metrics.

func (HPAConfig)MarshalJSONadded inv0.139.0

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

typeHeaderadded inv0.131.0

type Header struct {// Key: Optional. Key of Header.Keystring `json:"key,omitempty"`// Value: Optional. Value of Header.Valuestring `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Key") 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. "Key") 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:"-"`}

Header: Header details for a given header to be added to Endpoint.

func (Header)MarshalJSONadded inv0.131.0

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

typeInputParameter

type InputParameter struct {// DataType: The data type of the Parameter.//// Possible values://   "DATA_TYPE_UNSPECIFIED" - Data type is not specified.//   "DATA_TYPE_INT" - DEPRECATED! Use DATA_TYPE_INTEGER.//   "DATA_TYPE_SMALLINT" - Short integer(int16) data type.//   "DATA_TYPE_DOUBLE" - Double data type.//   "DATA_TYPE_DATE" - Date data type.//   "DATA_TYPE_DATETIME" - DEPRECATED! Use DATA_TYPE_TIMESTAMP.//   "DATA_TYPE_TIME" - Time data type.//   "DATA_TYPE_STRING" - DEPRECATED! Use DATA_TYPE_VARCHAR.//   "DATA_TYPE_LONG" - DEPRECATED! Use DATA_TYPE_BIGINT.//   "DATA_TYPE_BOOLEAN" - Boolean data type.//   "DATA_TYPE_DECIMAL" - Decimal data type.//   "DATA_TYPE_UUID" - DEPRECATED! Use DATA_TYPE_VARCHAR.//   "DATA_TYPE_BLOB" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_BIT" - Bit data type.//   "DATA_TYPE_TINYINT" - Small integer(int8) data type.//   "DATA_TYPE_INTEGER" - Integer(int32) data type.//   "DATA_TYPE_BIGINT" - Long integer(int64) data type.//   "DATA_TYPE_FLOAT" - Float data type.//   "DATA_TYPE_REAL" - Real data type.//   "DATA_TYPE_NUMERIC" - Numeric data type.//   "DATA_TYPE_CHAR" - Char data type.//   "DATA_TYPE_VARCHAR" - Varchar data type.//   "DATA_TYPE_LONGVARCHAR" - Longvarchar data type.//   "DATA_TYPE_TIMESTAMP" - Timestamp data type.//   "DATA_TYPE_NCHAR" - Nchar data type.//   "DATA_TYPE_NVARCHAR" - Nvarchar data type.//   "DATA_TYPE_LONGNVARCHAR" - Longnvarchar data type.//   "DATA_TYPE_NULL" - Null data type.//   "DATA_TYPE_OTHER" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_JAVA_OBJECT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_DISTINCT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_STRUCT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_ARRAY" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_CLOB" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_REF" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_DATALINK" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_ROWID" - UNSUPPORTED! Row id data type.//   "DATA_TYPE_BINARY" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_VARBINARY" - UNSUPPORTED! Variable binary data type.//   "DATA_TYPE_LONGVARBINARY" - UNSUPPORTED! Long variable binary data type.//   "DATA_TYPE_NCLOB" - UNSUPPORTED! NCLOB data type.//   "DATA_TYPE_SQLXML" - UNSUPPORTED! SQL XML data type is not supported.//   "DATA_TYPE_REF_CURSOR" - UNSUPPORTED! Cursor reference type is not// supported.//   "DATA_TYPE_TIME_WITH_TIMEZONE" - UNSUPPORTED! Use TIME or TIMESTAMP// instead.//   "DATA_TYPE_TIMESTAMP_WITH_TIMEZONE" - UNSUPPORTED! Use TIMESTAMP instead.DataTypestring `json:"dataType,omitempty"`// DefaultValue: The following field specifies the default value of the// Parameter provided by the external system if a value is not provided.DefaultValue interface{} `json:"defaultValue,omitempty"`// Description: A brief description of the Parameter.Descriptionstring `json:"description,omitempty"`// JsonSchema: JsonSchema representation of this action's parameterJsonSchema *JsonSchema `json:"jsonSchema,omitempty"`// Nullable: Specifies whether a null value is allowed.Nullablebool `json:"nullable,omitempty"`// Parameter: Name of the Parameter.Parameterstring `json:"parameter,omitempty"`// ForceSendFields is a list of field names (e.g. "DataType") 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. "DataType") 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:"-"`}

InputParameter: Metadata of an input parameter.

func (InputParameter)MarshalJSON

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

typeInstanceadded inv0.155.0

type Instance struct {// ConsumerDefinedName: consumer_defined_name is the name of the instance set// by the service consumers. Generally this is different from the `name` field// which reperesents the system-assigned id of the instance which the service// consumers do not recognize. This is a required field for tenants onboarding// to Maintenance Window notifications// (go/slm-rollout-maintenance-policies#prerequisites).ConsumerDefinedNamestring `json:"consumerDefinedName,omitempty"`// ConsumerProjectNumber: Optional. The consumer_project_number associated with// this Apigee instance. This field is added specifically to support Apigee// integration with SLM Rollout and UMM. It represents the numerical project ID// of the GCP project that consumes this Apigee instance. It is used for SLM// rollout notifications and UMM integration, enabling proper mapping to// customer projects and log delivery for Apigee instances. This field// complements consumer_project_id and may be used for specific Apigee// scenarios where the numerical ID is required.ConsumerProjectNumberstring `json:"consumerProjectNumber,omitempty"`// CreateTime: Output only. Timestamp when the resource was created.CreateTimestring `json:"createTime,omitempty"`// InstanceType: Optional. The instance_type of this instance of format:// projects/{project_number}/locations/{location_id}/instanceTypes/{instance_typ// e_id}. Instance Type represents a high-level tier or SKU of the service that// this instance belong to. When enabled(eg: Maintenance Rollout), Rollout uses// 'instance_type' along with 'software_versions' to determine whether instance// needs an update or not.InstanceTypestring `json:"instanceType,omitempty"`// Labels: Optional. Resource labels to represent user provided metadata. Each// label is a key-value pair, where both the key and the value are arbitrary// strings provided by the user.Labels map[string]string `json:"labels,omitempty"`// MaintenancePolicyNames: Optional. The MaintenancePolicies that have been// attached to the instance. The key must be of the type name of the oneof// policy name defined in MaintenancePolicy, and the referenced policy must// define the same policy type. For details, please refer to go/mr-user-guide.// Should not be set if maintenance_settings.maintenance_policies is set.MaintenancePolicyNames map[string]string `json:"maintenancePolicyNames,omitempty"`// MaintenanceSchedules: The MaintenanceSchedule contains the scheduling// information of published maintenance schedule with same key as// software_versions.MaintenanceSchedules map[string]MaintenanceSchedule `json:"maintenanceSchedules,omitempty"`// MaintenanceSettings: Optional. The MaintenanceSettings associated with// instance.MaintenanceSettings *MaintenanceSettings `json:"maintenanceSettings,omitempty"`// Name: Unique name of the resource. It uses the form:// `projects/{project_number}/locations/{location_id}/instances/{instance_id}`// Note: This name is passed, stored and logged across the rollout system. So// use of consumer project_id or any other consumer PII in the name is strongly// discouraged for wipeout (go/wipeout) compliance. See// go/elysium/project_ids#storage-guidance for more details.Namestring `json:"name,omitempty"`// NotificationParameters: Optional. notification_parameter are information// that service producers may like to include that is not relevant to Rollout.// This parameter will only be passed to Gamma and Cloud Logging for// notification/logging purpose.NotificationParameters map[string]NotificationParameter `json:"notificationParameters,omitempty"`// ProducerMetadata: Output only. Custom string attributes used primarily to// expose producer-specific information in monitoring dashboards. See// go/get-instance-metadata.ProducerMetadata map[string]string `json:"producerMetadata,omitempty"`// ProvisionedResources: Output only. The list of data plane resources// provisioned for this instance, e.g. compute VMs. See// go/get-instance-metadata.ProvisionedResources []*ProvisionedResource `json:"provisionedResources,omitempty"`// SlmInstanceTemplate: Link to the SLM instance template. Only populated when// updating SLM instances via SSA's Actuation service adaptor. Service// producers with custom control plane (e.g. Cloud SQL) doesn't need to// populate this field. Instead they should use software_versions.SlmInstanceTemplatestring `json:"slmInstanceTemplate,omitempty"`// SloMetadata: Output only. SLO metadata for instance classification in the// Standardized dataplane SLO platform. See go/cloud-ssa-standard-slo for// feature description.SloMetadata *SloMetadata `json:"sloMetadata,omitempty"`// SoftwareVersions: Software versions that are used to deploy this instance.// This can be mutated by rollout services.SoftwareVersions map[string]string `json:"softwareVersions,omitempty"`// State: Output only. Current lifecycle state of the resource (e.g. if it's// being created or ready to use).//// Possible values://   "STATE_UNSPECIFIED" - Unspecified state.//   "CREATING" - Instance is being created.//   "READY" - Instance has been created and is ready to use.//   "UPDATING" - Instance is being updated.//   "REPAIRING" - Instance is unheathy and under repair.//   "DELETING" - Instance is being deleted.//   "ERROR" - Instance encountered an error and is in indeterministic state.Statestring `json:"state,omitempty"`// TenantProjectId: Output only. ID of the associated GCP tenant project. See// go/get-instance-metadata.TenantProjectIdstring `json:"tenantProjectId,omitempty"`// UpdateTime: Output only. Timestamp when the resource was last modified.UpdateTimestring `json:"updateTime,omitempty"`// ForceSendFields is a list of field names (e.g. "ConsumerDefinedName") 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. "ConsumerDefinedName") 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:"-"`}

Instance: Instance represents the interface for SLM services to actuate thestate of control plane resources. Example Instance in JSON, whereconsumer-project-number=123456, producer-project-id=cloud-sql: ```jsonInstance: { "name":"projects/123456/locations/us-east1/instances/prod-instance", "create_time":{ "seconds": 1526406431, }, "labels": { "env": "prod", "foo": "bar" },"state": READY, "software_versions": { "software_update":"cloud-sql-09-28-2018", }, "maintenance_policy_names": { "UpdatePolicy":"projects/123456/locations/us-east1/maintenancePolicies/prod-update-policy",} "tenant_project_id": "cloud-sql-test-tenant", "producer_metadata": {"cloud-sql-tier": "basic", "cloud-sql-instance-size": "1G", },"provisioned_resources": [ { "resource-type": "compute-instance","resource-url":"https://www.googleapis.com/compute/v1/projects/cloud-sql/zones/us-east1-b/instances/vm-1", } ], "maintenance_schedules": { "csa_rollout": {"start_time": { "seconds": 1526406431, }, "end_time": { "seconds":1535406431, }, }, "ncsa_rollout": { "start_time": { "seconds": 1526406431,}, "end_time": { "seconds": 1535406431, }, } }, "consumer_defined_name":"my-sql-instance1", } ``` LINT.IfChange

func (Instance)MarshalJSONadded inv0.155.0

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

typeJMSadded inv0.149.0

type JMS struct {// Name: Optional. Name of the JMS source. i.e. queueName or topicNameNamestring `json:"name,omitempty"`// Type: Optional. Type of the JMS Source. i.e. Queue or Topic//// Possible values://   "TYPE_UNSPECIFIED" - Default state.//   "QUEUE" - JMS Queue.//   "TOPIC" - JMS Topic.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") 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. "Name") 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:"-"`}

JMS: JMS message denotes the source of the event

func (JMS)MarshalJSONadded inv0.149.0

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

typeJsonAuthSchemaadded inv0.197.0

type JsonAuthSchema struct {// Schema: JSON schema of the AuthSchemas.Schemastring `json:"$schema,omitempty"`// OneOf: List of AuthObjects.OneOf []*AuthObject `json:"oneOf,omitempty"`// ForceSendFields is a list of field names (e.g. "Schema") 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. "Schema") 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:"-"`}

JsonAuthSchema: JsonAuthSchema defines the JSON schema of all authenticationtypes.

func (JsonAuthSchema)MarshalJSONadded inv0.197.0

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

typeJsonSchemaadded inv0.142.0

type JsonSchema struct {// AdditionalDetails: Additional details apart from standard json schema// fields, this gives flexibility to store metadata about the schemaAdditionalDetailsgoogleapi.RawMessage `json:"additionalDetails,omitempty"`// Default: The default value of the field or object described by this schema.Default interface{} `json:"default,omitempty"`// Description: A description of this schema.Descriptionstring `json:"description,omitempty"`// Enum: Possible values for an enumeration. This works in conjunction with// `type` to represent types with a fixed set of legal valuesEnum []interface{} `json:"enum,omitempty"`// Format: Format of the value as per//https://json-schema.org/understanding-json-schema/reference/string.html#formatFormatstring `json:"format,omitempty"`// Items: Schema that applies to array values, applicable only if this is of// type `array`.Items *JsonSchema `json:"items,omitempty"`// JdbcType: JDBC datatype of the field.//// Possible values://   "DATA_TYPE_UNSPECIFIED" - Data type is not specified.//   "DATA_TYPE_INT" - DEPRECATED! Use DATA_TYPE_INTEGER.//   "DATA_TYPE_SMALLINT" - Short integer(int16) data type.//   "DATA_TYPE_DOUBLE" - Double data type.//   "DATA_TYPE_DATE" - Date data type.//   "DATA_TYPE_DATETIME" - DEPRECATED! Use DATA_TYPE_TIMESTAMP.//   "DATA_TYPE_TIME" - Time data type.//   "DATA_TYPE_STRING" - DEPRECATED! Use DATA_TYPE_VARCHAR.//   "DATA_TYPE_LONG" - DEPRECATED! Use DATA_TYPE_BIGINT.//   "DATA_TYPE_BOOLEAN" - Boolean data type.//   "DATA_TYPE_DECIMAL" - Decimal data type.//   "DATA_TYPE_UUID" - DEPRECATED! Use DATA_TYPE_VARCHAR.//   "DATA_TYPE_BLOB" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_BIT" - Bit data type.//   "DATA_TYPE_TINYINT" - Small integer(int8) data type.//   "DATA_TYPE_INTEGER" - Integer(int32) data type.//   "DATA_TYPE_BIGINT" - Long integer(int64) data type.//   "DATA_TYPE_FLOAT" - Float data type.//   "DATA_TYPE_REAL" - Real data type.//   "DATA_TYPE_NUMERIC" - Numeric data type.//   "DATA_TYPE_CHAR" - Char data type.//   "DATA_TYPE_VARCHAR" - Varchar data type.//   "DATA_TYPE_LONGVARCHAR" - Longvarchar data type.//   "DATA_TYPE_TIMESTAMP" - Timestamp data type.//   "DATA_TYPE_NCHAR" - Nchar data type.//   "DATA_TYPE_NVARCHAR" - Nvarchar data type.//   "DATA_TYPE_LONGNVARCHAR" - Longnvarchar data type.//   "DATA_TYPE_NULL" - Null data type.//   "DATA_TYPE_OTHER" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_JAVA_OBJECT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_DISTINCT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_STRUCT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_ARRAY" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_CLOB" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_REF" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_DATALINK" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_ROWID" - UNSUPPORTED! Row id data type.//   "DATA_TYPE_BINARY" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_VARBINARY" - UNSUPPORTED! Variable binary data type.//   "DATA_TYPE_LONGVARBINARY" - UNSUPPORTED! Long variable binary data type.//   "DATA_TYPE_NCLOB" - UNSUPPORTED! NCLOB data type.//   "DATA_TYPE_SQLXML" - UNSUPPORTED! SQL XML data type is not supported.//   "DATA_TYPE_REF_CURSOR" - UNSUPPORTED! Cursor reference type is not// supported.//   "DATA_TYPE_TIME_WITH_TIMEZONE" - UNSUPPORTED! Use TIME or TIMESTAMP// instead.//   "DATA_TYPE_TIMESTAMP_WITH_TIMEZONE" - UNSUPPORTED! Use TIMESTAMP instead.JdbcTypestring `json:"jdbcType,omitempty"`// Properties: The child schemas, applicable only if this is of type `object`.// The key is the name of the property and the value is the json schema that// describes that propertyProperties map[string]JsonSchema `json:"properties,omitempty"`// Required: Whether this property is required.Required []string `json:"required,omitempty"`// Type: JSON Schema Validation: A Vocabulary for Structural Validation of JSONType []string `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalDetails") 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. "AdditionalDetails") 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:"-"`}

JsonSchema: JsonSchema representation of schema metadata

func (JsonSchema)MarshalJSONadded inv0.142.0

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

typeJwtClaims

type JwtClaims struct {// Audience: Optional. Value for the "aud" claim.Audiencestring `json:"audience,omitempty"`// Issuer: Optional. Value for the "iss" claim.Issuerstring `json:"issuer,omitempty"`// Subject: Optional. Value for the "sub" claim.Subjectstring `json:"subject,omitempty"`// ForceSendFields is a list of field names (e.g. "Audience") 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. "Audience") 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:"-"`}

JwtClaims: JWT claims used for the jwt-bearer authorization grant.

func (JwtClaims)MarshalJSON

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

typeListActionsResponseadded inv0.151.0

type ListActionsResponse struct {// Actions: list of actionsActions []*RuntimeActionSchema `json:"actions,omitempty"`// NextPageToken: token for next pageNextPageTokenstring `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. "Actions") 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. "Actions") 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:"-"`}

ListActionsResponse: Response message for ListActions API

func (ListActionsResponse)MarshalJSONadded inv0.151.0

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

typeListConnectionsResponse

type ListConnectionsResponse struct {// Connections: Connections.Connections []*Connection `json:"connections,omitempty"`// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,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: Response message forConnectorsService.ListConnections

func (ListConnectionsResponse)MarshalJSON

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

typeListConnectorVersionsResponse

type ListConnectorVersionsResponse struct {// ConnectorVersions: A list of connector versions.ConnectorVersions []*ConnectorVersion `json:"connectorVersions,omitempty"`// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "ConnectorVersions") 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. "ConnectorVersions") 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:"-"`}

ListConnectorVersionsResponse: Response message forConnectors.ListConnectorVersions.

func (ListConnectorVersionsResponse)MarshalJSON

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

typeListConnectorsResponse

type ListConnectorsResponse struct {// Connectors: A list of connectors.Connectors []*Connector `json:"connectors,omitempty"`// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Connectors") 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. "Connectors") 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:"-"`}

ListConnectorsResponse: Response message for Connectors.ListConnectors.

func (ListConnectorsResponse)MarshalJSON

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

typeListCustomConnectorVersionsResponseadded inv0.151.0

type ListCustomConnectorVersionsResponse struct {// CustomConnectorVersions: A list of connector versions.CustomConnectorVersions []*CustomConnectorVersion `json:"customConnectorVersions,omitempty"`// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CustomConnectorVersions") 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. "CustomConnectorVersions") 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:"-"`}

ListCustomConnectorVersionsResponse: Response message forConnectors.ListCustomConnectorVersions.

func (ListCustomConnectorVersionsResponse)MarshalJSONadded inv0.151.0

typeListCustomConnectorsResponseadded inv0.151.0

type ListCustomConnectorsResponse struct {// CustomConnectors: A list of customConnectors.CustomConnectors []*CustomConnector `json:"customConnectors,omitempty"`// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "CustomConnectors") 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. "CustomConnectors") 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:"-"`}

ListCustomConnectorsResponse: Response message forConnectors.ListCustomConnectors.

func (ListCustomConnectorsResponse)MarshalJSONadded inv0.151.0

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

typeListEndUserAuthenticationsResponseadded inv0.230.0

type ListEndUserAuthenticationsResponse struct {// EndUserAuthentications: Subscriptions.EndUserAuthentications []*EndUserAuthentication `json:"endUserAuthentications,omitempty"`// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "EndUserAuthentications") 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. "EndUserAuthentications") 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:"-"`}

ListEndUserAuthenticationsResponse: Response message forConnectorsService.ListEndUserAuthentications

func (ListEndUserAuthenticationsResponse)MarshalJSONadded inv0.230.0

typeListEndpointAttachmentsResponseadded inv0.122.0

type ListEndpointAttachmentsResponse struct {// EndpointAttachments: EndpointAttachments.EndpointAttachments []*EndpointAttachment `json:"endpointAttachments,omitempty"`// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "EndpointAttachments") 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. "EndpointAttachments") 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:"-"`}

ListEndpointAttachmentsResponse: Response message forConnectorsService.ListEndpointAttachments

func (ListEndpointAttachmentsResponse)MarshalJSONadded inv0.122.0

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

typeListEntityTypesResponseadded inv0.151.0

type ListEntityTypesResponse struct {// EntityTypes: list of entity typesEntityTypes []*RuntimeEntitySchema `json:"entityTypes,omitempty"`// NextPageToken: token for next pageNextPageTokenstring `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. "EntityTypes") 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. "EntityTypes") 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:"-"`}

ListEntityTypesResponse: Response message for ListEntityTypes API

func (ListEntityTypesResponse)MarshalJSONadded inv0.151.0

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

typeListEventSubscriptionsResponseadded inv0.131.0

type ListEventSubscriptionsResponse struct {// EventSubscriptions: Subscriptions.EventSubscriptions []*EventSubscription `json:"eventSubscriptions,omitempty"`// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "EventSubscriptions") 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. "EventSubscriptions") 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:"-"`}

ListEventSubscriptionsResponse: Response message forConnectorsService.ListEventSubscriptions

func (ListEventSubscriptionsResponse)MarshalJSONadded inv0.131.0

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

typeListEventTypesResponseadded inv0.131.0

type ListEventTypesResponse struct {// EventTypes: A list of connector versions.EventTypes []*EventType `json:"eventTypes,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. "EventTypes") 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. "EventTypes") 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:"-"`}

ListEventTypesResponse: Response message for Connectors.ListEventTypes.

func (ListEventTypesResponse)MarshalJSONadded inv0.131.0

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

typeListLocationsResponse

type ListLocationsResponse struct {// Locations: A list of locations that matches the specified filter in the// request.Locations []*Location `json:"locations,omitempty"`// NextPageToken: The standard List 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. "Locations") 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. "Locations") 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:"-"`}

ListLocationsResponse: The response message for Locations.ListLocations.

func (ListLocationsResponse)MarshalJSON

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

typeListManagedZonesResponseadded inv0.122.0

type ListManagedZonesResponse struct {// ManagedZones: ManagedZones.ManagedZones []*ManagedZone `json:"managedZones,omitempty"`// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "ManagedZones") 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. "ManagedZones") 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:"-"`}

ListManagedZonesResponse: Response message forConnectorsService.ListManagedZones

func (ListManagedZonesResponse)MarshalJSONadded inv0.122.0

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

typeListOperationsResponse

type ListOperationsResponse struct {// NextPageToken: The standard List next-page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Operations: A list of operations that matches the specified filter in the// request.Operations []*Operation `json:"operations,omitempty"`// Unreachable: Unordered list. Unreachable resources. Populated when the// request sets `ListOperationsRequest.return_partial_success` and reads across// collections e.g. when attempting to list all resources across all supported// locations.Unreachable []string `json:"unreachable,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:"-"`}

ListOperationsResponse: The response message for Operations.ListOperations.

func (ListOperationsResponse)MarshalJSON

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

typeListProvidersResponse

type ListProvidersResponse struct {// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// Providers: A list of providers.Providers []*Provider `json:"providers,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,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:"-"`}

ListProvidersResponse: Response message for Connectors.ListProviders.

func (ListProvidersResponse)MarshalJSON

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

typeListRuntimeActionSchemasResponse

type ListRuntimeActionSchemasResponse struct {// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// RuntimeActionSchemas: Runtime action schemas.RuntimeActionSchemas []*RuntimeActionSchema `json:"runtimeActionSchemas,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:"-"`}

ListRuntimeActionSchemasResponse: Response message forConnectorsService.ListRuntimeActionSchemas.

func (ListRuntimeActionSchemasResponse)MarshalJSON

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

typeListRuntimeEntitySchemasResponse

type ListRuntimeEntitySchemasResponse struct {// NextPageToken: Next page token.NextPageTokenstring `json:"nextPageToken,omitempty"`// RuntimeEntitySchemas: Runtime entity schemas.RuntimeEntitySchemas []*RuntimeEntitySchema `json:"runtimeEntitySchemas,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:"-"`}

ListRuntimeEntitySchemasResponse: Response message forConnectorsService.ListRuntimeEntitySchemas.

func (ListRuntimeEntitySchemasResponse)MarshalJSON

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

typeListenEventRequestadded inv0.153.0

type ListenEventRequest struct {// Payload: Optional. Request payload.Payloadgoogleapi.RawMessage `json:"payload,omitempty"`// ForceSendFields is a list of field names (e.g. "Payload") 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. "Payload") 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:"-"`}

ListenEventRequest: Expected request for ListenEvent API.

func (ListenEventRequest)MarshalJSONadded inv0.153.0

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

typeListenEventResponseadded inv0.153.0

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

ListenEventResponse: Expected response for ListenEvent API.

typeLocation

type Location struct {// DisplayName: The friendly name for this location, typically a nearby city// name. For example, "Tokyo".DisplayNamestring `json:"displayName,omitempty"`// Labels: Cross-service attributes for the location. For example// {"cloud.googleapis.com/region": "us-east1"}Labels map[string]string `json:"labels,omitempty"`// LocationId: The canonical id for this location. For example: "us-east1".LocationIdstring `json:"locationId,omitempty"`// Metadata: Service-specific metadata. For example the available capacity at// the given location.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// Name: Resource name for the location, which may vary between// implementations. For example:// "projects/example-project/locations/us-east1"Namestring `json:"name,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "DisplayName") 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. "DisplayName") 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:"-"`}

Location: A resource that represents a Google Cloud location.

func (Location)MarshalJSON

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

typeLockConfig

type LockConfig struct {// Locked: Optional. Indicates whether or not the connection is locked.Lockedbool `json:"locked,omitempty"`// Reason: Optional. Describes why a connection is locked.Reasonstring `json:"reason,omitempty"`// ForceSendFields is a list of field names (e.g. "Locked") 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. "Locked") 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:"-"`}

LockConfig: Determines whether or no a connection is locked. If locked, areason must be specified.

func (LockConfig)MarshalJSON

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

typeLogicalExpressionadded inv0.128.0

type LogicalExpression struct {// FieldComparisons: Optional. A list of fields to be compared.FieldComparisons []*FieldComparison `json:"fieldComparisons,omitempty"`// LogicalExpressions: Optional. A list of nested conditions to be compared.LogicalExpressions []*LogicalExpression `json:"logicalExpressions,omitempty"`// LogicalOperator: Optional. The logical operator to use between the fields// and conditions.//// Possible values://   "OPERATOR_UNSPECIFIED" - The default value.//   "AND" - AND operator; The conditions must all be true.//   "OR" - OR operator; At least one of the conditions must be true.LogicalOperatorstring `json:"logicalOperator,omitempty"`// ForceSendFields is a list of field names (e.g. "FieldComparisons") 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. "FieldComparisons") 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:"-"`}

LogicalExpression: Struct for representing boolean expressions.

func (LogicalExpression)MarshalJSONadded inv0.128.0

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

typeMaintenancePolicyadded inv0.155.0

type MaintenancePolicy struct {// CreateTime: Output only. The time when the resource was created.CreateTimestring `json:"createTime,omitempty"`// Description: Optional. Description of what this policy is for. Create/Update// methods return INVALID_ARGUMENT if the length is greater than 512.Descriptionstring `json:"description,omitempty"`// Labels: Optional. Resource labels to represent user provided metadata. Each// label is a key-value pair, where both the key and the value are arbitrary// strings provided by the user.Labels map[string]string `json:"labels,omitempty"`// Name: Required. MaintenancePolicy name using the form:// `projects/{project_id}/locations/{location_id}/maintenancePolicies/{maintenan// ce_policy_id}` where {project_id} refers to a GCP consumer project ID,// {location_id} refers to a GCP region/zone, {maintenance_policy_id} must be// 1-63 characters long and match the regular expression// `[a-z0-9]([-a-z0-9]*[a-z0-9])?`.Namestring `json:"name,omitempty"`// State: Optional. The state of the policy.//// Possible values://   "STATE_UNSPECIFIED" - Unspecified state.//   "READY" - Resource is ready to be used.//   "DELETING" - Resource is being deleted. It can no longer be attached to// instances.Statestring `json:"state,omitempty"`// UpdatePolicy: Maintenance policy applicable to instance update.UpdatePolicy *UpdatePolicy `json:"updatePolicy,omitempty"`// UpdateTime: Output only. The time when the resource was updated.UpdateTimestring `json:"updateTime,omitempty"`// 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:"-"`}

MaintenancePolicy: Defines policies to service maintenance events.

func (MaintenancePolicy)MarshalJSONadded inv0.155.0

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

typeMaintenanceScheduleadded inv0.155.0

type MaintenanceSchedule struct {// CanReschedule: This field is deprecated, and will be always set to true// since reschedule can happen multiple times now. This field should not be// removed until all service producers remove this for their customers.CanReschedulebool `json:"canReschedule,omitempty"`// EndTime: The scheduled end time for the maintenance.EndTimestring `json:"endTime,omitempty"`// RolloutManagementPolicy: The rollout management policy this maintenance// schedule is associated with. When doing reschedule update request, the// reschedule should be against this given policy.RolloutManagementPolicystring `json:"rolloutManagementPolicy,omitempty"`// ScheduleDeadlineTime: schedule_deadline_time is the time deadline any// schedule start time cannot go beyond, including reschedule. It's normally// the initial schedule start time plus maintenance window length (1 day or 1// week). Maintenance cannot be scheduled to start beyond this deadline.ScheduleDeadlineTimestring `json:"scheduleDeadlineTime,omitempty"`// StartTime: The scheduled start time for the maintenance.StartTimestring `json:"startTime,omitempty"`// ForceSendFields is a list of field names (e.g. "CanReschedule") 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. "CanReschedule") 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:"-"`}

MaintenanceSchedule: Maintenance schedule which is exposed to customer andpotentially end user, indicating published upcoming future maintenanceschedule

func (MaintenanceSchedule)MarshalJSONadded inv0.155.0

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

typeMaintenanceSettingsadded inv0.155.0

type MaintenanceSettings struct {// Exclude: Optional. Exclude instance from maintenance. When true, rollout// service will not attempt maintenance on the instance. Rollout service will// include the instance in reported rollout progress as not attempted.Excludebool `json:"exclude,omitempty"`// IsRollback: Optional. If the update call is triggered from rollback, set the// value as true.IsRollbackbool `json:"isRollback,omitempty"`// MaintenancePolicies: Optional. The MaintenancePolicies that have been// attached to the instance. The key must be of the type name of the oneof// policy name defined in MaintenancePolicy, and the embedded policy must// define the same policy type. For details, please refer to go/mr-user-guide.// Should not be set if maintenance_policy_names is set. If only the name is// needed, then only populate MaintenancePolicy.name.MaintenancePolicies map[string]MaintenancePolicy `json:"maintenancePolicies,omitempty"`// ForceSendFields is a list of field names (e.g. "Exclude") 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. "Exclude") 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:"-"`}

MaintenanceSettings: Maintenance settings associated with instance. Allowsservice producers and end users to assign settings that controls maintenanceon this instance.

func (MaintenanceSettings)MarshalJSONadded inv0.155.0

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

typeMaintenanceWindowadded inv0.155.0

type MaintenanceWindow struct {// DailyCycle: Daily cycle.DailyCycle *DailyCycle `json:"dailyCycle,omitempty"`// WeeklyCycle: Weekly cycle.WeeklyCycle *WeeklyCycle `json:"weeklyCycle,omitempty"`// ForceSendFields is a list of field names (e.g. "DailyCycle") 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. "DailyCycle") 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:"-"`}

MaintenanceWindow: MaintenanceWindow definition.

func (MaintenanceWindow)MarshalJSONadded inv0.155.0

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

typeManagedZoneadded inv0.122.0

type ManagedZone struct {// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// Description: Optional. Description of the resource.Descriptionstring `json:"description,omitempty"`// Dns: Required. DNS Name of the resourceDnsstring `json:"dns,omitempty"`// Labels: Optional. Resource labels to represent user-provided metadata. Refer// to cloud documentation on labels for more details.//https://cloud.google.com/compute/docs/labeling-resourcesLabels map[string]string `json:"labels,omitempty"`// Name: Output only. Resource name of the Managed Zone. Format:// projects/{project}/locations/global/managedZones/{managed_zone}Namestring `json:"name,omitempty"`// TargetProject: Required. The name of the Target ProjectTargetProjectstring `json:"targetProject,omitempty"`// TargetVpc: Required. The name of the Target Project VPC NetworkTargetVpcstring `json:"targetVpc,omitempty"`// UpdateTime: Output only. Updated time.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:"-"`}

ManagedZone: represents the Connector's Managed Zone resource

func (ManagedZone)MarshalJSONadded inv0.122.0

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

typeMarketplaceConnectorDetailsadded inv0.211.0

type MarketplaceConnectorDetails struct {// MarketplaceProduct: Marketplace product name.MarketplaceProductstring `json:"marketplaceProduct,omitempty"`// MarketplaceProductId: Marketplace product ID.MarketplaceProductIdstring `json:"marketplaceProductId,omitempty"`// MarketplaceProductUri: Marketplace product URL.MarketplaceProductUristring `json:"marketplaceProductUri,omitempty"`// Partner: The name of the partner.Partnerstring `json:"partner,omitempty"`// ForceSendFields is a list of field names (e.g. "MarketplaceProduct") 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. "MarketplaceProduct") 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:"-"`}

MarketplaceConnectorDetails: Marketplace connector details.

func (MarketplaceConnectorDetails)MarshalJSONadded inv0.211.0

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

typeMultipleSelectConfigadded inv0.185.0

type MultipleSelectConfig struct {// AllowCustomValues: Optional. Allow custom values.AllowCustomValuesbool `json:"allowCustomValues,omitempty"`// MultipleSelectOptions: Required. Multiple select options.MultipleSelectOptions []*MultipleSelectOption `json:"multipleSelectOptions,omitempty"`// ValueSeparator: Required. Value separator. Only "," can be used for OAuth// auth code flow scope field.ValueSeparatorstring `json:"valueSeparator,omitempty"`// ForceSendFields is a list of field names (e.g. "AllowCustomValues") 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. "AllowCustomValues") 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:"-"`}

MultipleSelectConfig: MultipleSelectConfig represents the multiple optionsfor a config variable.

func (MultipleSelectConfig)MarshalJSONadded inv0.185.0

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

typeMultipleSelectOptionadded inv0.185.0

type MultipleSelectOption struct {// Description: Optional. Value of the option.Descriptionstring `json:"description,omitempty"`// DisplayName: Required. Display name of the option.DisplayNamestring `json:"displayName,omitempty"`// Key: Required. Key of the option.Keystring `json:"key,omitempty"`// Preselected: Optional. Indicates if the option is preselected.Preselectedbool `json:"preselected,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:"-"`}

MultipleSelectOption: MultiplSelecteOption represents the single option fora config variable.

func (MultipleSelectOption)MarshalJSONadded inv0.185.0

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

typeNetworkConfigadded inv0.148.0

type NetworkConfig struct {// EgressIps: Output only. Egress IPsEgressIps []string `json:"egressIps,omitempty"`// EgressMode: Optional. Egress mode for the network.//// Possible values://   "NETWORK_EGRESS_MODE_UNSPECIFIED" - Egress mode unspecified.//   "AUTO_IP" - Network egress through auto assigned IPs.//   "STATIC_IP" - Network egress through static IPs.EgressModestring `json:"egressMode,omitempty"`// ForceSendFields is a list of field names (e.g. "EgressIps") 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. "EgressIps") 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:"-"`}

NetworkConfig: Regional Network Config.

func (NetworkConfig)MarshalJSONadded inv0.148.0

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

typeNetworkEgressModeOverrideadded inv0.248.0

type NetworkEgressModeOverride struct {// IsEventingOverrideEnabled: boolean should be set to true to make sure only// eventing enabled connections are migrated to direct vpc egress.IsEventingOverrideEnabledbool `json:"isEventingOverrideEnabled,omitempty"`// IsJobsOverrideEnabled: boolean should be set to true to make sure only async// operations enabled connections are migrated to direct vpc egress.IsJobsOverrideEnabledbool `json:"isJobsOverrideEnabled,omitempty"`// NetworkEgressMode: Determines the VPC Egress mode for the connector.//// Possible values://   "NETWORK_EGRESS_MODE_UNSPECIFIED" - Network Egress mode is not specified.//   "SERVERLESS_VPC_ACCESS_CONNECTOR" - Default model VPC Access Connector.//   "DIRECT_VPC_EGRESS" - Direct VPC Egress.NetworkEgressModestring `json:"networkEgressMode,omitempty"`// ForceSendFields is a list of field names (e.g. "IsEventingOverrideEnabled")// 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. "IsEventingOverrideEnabled") 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:"-"`}

NetworkEgressModeOverride: NetworkEgressModeOverride provides the networkegress mode override for a connector.

func (NetworkEgressModeOverride)MarshalJSONadded inv0.248.0

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

typeNodeConfigadded inv0.93.0

type NodeConfig struct {// MaxNodeCount: Optional. Maximum number of nodes in the runtime nodes.MaxNodeCountint64 `json:"maxNodeCount,omitempty"`// MinNodeCount: Optional. Minimum number of nodes in the runtime nodes.MinNodeCountint64 `json:"minNodeCount,omitempty"`// ForceSendFields is a list of field names (e.g. "MaxNodeCount") 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. "MaxNodeCount") 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:"-"`}

NodeConfig: Node configuration for the connection.

func (NodeConfig)MarshalJSONadded inv0.93.0

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

typeNodeSloMetadataadded inv0.155.0

type NodeSloMetadata struct {// Location: The location of the node, if different from instance location.Locationstring `json:"location,omitempty"`// NodeId: The id of the node. This should be equal to// SaasInstanceNode.node_id.NodeIdstring `json:"nodeId,omitempty"`// PerSliEligibility: If present, this will override eligibility for the node// coming from instance or exclusions for specified SLIs.PerSliEligibility *PerSliSloEligibility `json:"perSliEligibility,omitempty"`// ForceSendFields is a list of field names (e.g. "Location") 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. "Location") 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:"-"`}

NodeSloMetadata: Node information for custom per-node SLO implementations.SSA does not support per-node SLO, but producers can populate per-nodeinformation in SloMetadata for custom precomputations. SSA EligibilityExporter will emit per-node metric based on this information.

func (NodeSloMetadata)MarshalJSONadded inv0.155.0

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

typeNotificationParameteradded inv0.155.0

type NotificationParameter struct {// Values: Optional. Array of string values. e.g. instance's replica// information.Values []string `json:"values,omitempty"`// ForceSendFields is a list of field names (e.g. "Values") 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. "Values") 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:"-"`}

NotificationParameter: Contains notification related data.

func (NotificationParameter)MarshalJSONadded inv0.155.0

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

typeOAuthTokenDataadded inv0.230.0

type OAuthTokenData struct {// AccessToken: Optional. Access token for the connection.AccessToken *EUASecret `json:"accessToken,omitempty"`// CreateTime: Optional. Timestamp when the access token was created.CreateTimestring `json:"createTime,omitempty"`// Expiry: Optional. Time in seconds when the access token expires.Expirystring `json:"expiry,omitempty"`// RefreshToken: Optional. Refresh token for the connection.RefreshToken *EUASecret `json:"refreshToken,omitempty"`// ForceSendFields is a list of field names (e.g. "AccessToken") 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. "AccessToken") 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:"-"`}

OAuthTokenData: pass only at create and not update using updateMask AuthCode Data

func (OAuthTokenData)MarshalJSONadded inv0.230.0

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

typeOauth2AuthCodeFlowadded inv0.118.0

type Oauth2AuthCodeFlow struct {// AuthCode: Optional. Authorization code to be exchanged for access and// refresh tokens.AuthCodestring `json:"authCode,omitempty"`// AuthUri: Optional. Auth URL for Authorization Code FlowAuthUristring `json:"authUri,omitempty"`// ClientId: Optional. Client ID for user-provided OAuth app.ClientIdstring `json:"clientId,omitempty"`// ClientSecret: Optional. Client secret for user-provided OAuth app.ClientSecret *Secret `json:"clientSecret,omitempty"`// EnablePkce: Optional. Whether to enable PKCE when the user performs the auth// code flow.EnablePkcebool `json:"enablePkce,omitempty"`// PkceVerifier: Optional. PKCE verifier to be used during the auth code// exchange.PkceVerifierstring `json:"pkceVerifier,omitempty"`// RedirectUri: Optional. Redirect URI to be provided during the auth code// exchange.RedirectUristring `json:"redirectUri,omitempty"`// Scopes: Optional. Scopes the connection will request when the user performs// the auth code flow.Scopes []string `json:"scopes,omitempty"`// ForceSendFields is a list of field names (e.g. "AuthCode") 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. "AuthCode") 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:"-"`}

Oauth2AuthCodeFlow: Parameters to support Oauth 2.0 Auth Code GrantAuthentication. Seehttps://www.rfc-editor.org/rfc/rfc6749#section-1.3.1 formore details.

func (Oauth2AuthCodeFlow)MarshalJSONadded inv0.118.0

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

typeOauth2AuthCodeFlowGoogleManagedadded inv0.197.0

type Oauth2AuthCodeFlowGoogleManaged struct {// AuthCode: Optional. Authorization code to be exchanged for access and// refresh tokens.AuthCodestring `json:"authCode,omitempty"`// RedirectUri: Optional. Redirect URI to be provided during the auth code// exchange.RedirectUristring `json:"redirectUri,omitempty"`// Scopes: Required. Scopes the connection will request when the user performs// the auth code flow.Scopes []string `json:"scopes,omitempty"`// ForceSendFields is a list of field names (e.g. "AuthCode") 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. "AuthCode") 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:"-"`}

Oauth2AuthCodeFlowGoogleManaged: Parameters to support Oauth 2.0 Auth CodeGrant Authentication using Google Provided OAuth Client. Seehttps://tools.ietf.org/html/rfc6749#section-1.3.1 for more details.

func (Oauth2AuthCodeFlowGoogleManaged)MarshalJSONadded inv0.197.0

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

typeOauth2ClientCredentials

type Oauth2ClientCredentials struct {// ClientId: Optional. The client identifier.ClientIdstring `json:"clientId,omitempty"`// ClientSecret: Optional. Secret version reference containing the client// secret.ClientSecret *Secret `json:"clientSecret,omitempty"`// ForceSendFields is a list of field names (e.g. "ClientId") 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. "ClientId") 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:"-"`}

Oauth2ClientCredentials: Parameters to support Oauth 2.0 Client CredentialsGrant Authentication. Seehttps://tools.ietf.org/html/rfc6749#section-1.3.4for more details.

func (Oauth2ClientCredentials)MarshalJSON

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

typeOauth2JwtBearer

type Oauth2JwtBearer struct {// ClientKey: Optional. Secret version reference containing a PKCS#8// PEM-encoded private key associated with the Client Certificate. This private// key will be used to sign JWTs used for the jwt-bearer authorization grant.// Specified in the form as: `projects/*/secrets/*/versions/*`.ClientKey *Secret `json:"clientKey,omitempty"`// JwtClaims: Optional. JwtClaims providers fields to generate the token.JwtClaims *JwtClaims `json:"jwtClaims,omitempty"`// ForceSendFields is a list of field names (e.g. "ClientKey") 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. "ClientKey") 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:"-"`}

Oauth2JwtBearer: Parameters to support JSON Web Token (JWT) Profile forOauth 2.0 Authorization Grant based authentication. Seehttps://tools.ietf.org/html/rfc7523 for more details.

func (Oauth2JwtBearer)MarshalJSON

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

typeOperation

type Operation struct {// Done: If the value is `false`, it means the operation is still in progress.// If `true`, the operation is completed, and either `error` or `response` is// available.Donebool `json:"done,omitempty"`// Error: The error result of the operation in case of failure or cancellation.Error *Status `json:"error,omitempty"`// Metadata: Service-specific metadata associated with the operation. It// typically contains progress information and common metadata such as create// time. Some services might not provide such metadata. Any method that returns// a long-running operation should document the metadata type, if any.Metadatagoogleapi.RawMessage `json:"metadata,omitempty"`// Name: The server-assigned name, which is only unique within the same service// that originally returns it. If you use the default HTTP mapping, the `name`// should be a resource name ending with `operations/{unique_id}`.Namestring `json:"name,omitempty"`// Response: The normal, successful response of the operation. If the original// method returns no data on success, such as `Delete`, the response is// `google.protobuf.Empty`. If the original method is standard// `Get`/`Create`/`Update`, the response should be the resource. For other// methods, the response should have the type `XxxResponse`, where `Xxx` is the// original method name. For example, if the original method name is// `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.Responsegoogleapi.RawMessage `json:"response,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Done") 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. "Done") 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:"-"`}

Operation: This resource represents a long-running operation that is theresult of a network API call.

func (Operation)MarshalJSON

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

typeOperationMetadata

type OperationMetadata struct {// ApiVersion: Output only. API version used to start the operation.ApiVersionstring `json:"apiVersion,omitempty"`// CreateTime: Output only. The time the operation was created.CreateTimestring `json:"createTime,omitempty"`// EndTime: Output only. The time the operation finished running.EndTimestring `json:"endTime,omitempty"`// RequestedCancellation: Output only. Identifies whether the user has// requested cancellation of the operation. Operations that have successfully// been cancelled have Operation.error value with a google.rpc.Status.code of// 1, corresponding to `Code.CANCELLED`.RequestedCancellationbool `json:"requestedCancellation,omitempty"`// StatusMessage: Output only. Human-readable status of the operation, if any.StatusMessagestring `json:"statusMessage,omitempty"`// Target: Output only. Server-defined resource path for the target of the// operation.Targetstring `json:"target,omitempty"`// Verb: Output only. Name of the verb executed by the operation.Verbstring `json:"verb,omitempty"`// ForceSendFields is a list of field names (e.g. "ApiVersion") 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. "ApiVersion") 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:"-"`}

OperationMetadata: Represents the metadata of the long-running operation.

func (OperationMetadata)MarshalJSON

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

typePartnerMetadataadded inv0.206.0

type PartnerMetadata struct {// AcceptGcpTos: Required. Whether the user has accepted the Google Cloud// Platform Terms of Service (https://cloud.google.com/terms/) and the Google// Cloud Marketplace Terms of Service// (https://cloud.google.com/terms/marketplace/launcher?hl=en).AcceptGcpTosbool `json:"acceptGcpTos,omitempty"`// AdditionalComments: Optional. Additional comments for the submission.AdditionalCommentsstring `json:"additionalComments,omitempty"`// ConfirmPartnerRequirements: Required. Confirmation that connector meets all// applicable requirements mentioned in the Partner Connector Publishing// requirements list and Partner onboardiong requirements list// (https://cloud.google.com/marketplace/docs/partners/get-started#requirements).ConfirmPartnerRequirementsbool `json:"confirmPartnerRequirements,omitempty"`// DemoUri: Required. Public URL for the demo video.DemoUristring `json:"demoUri,omitempty"`// HasDynamicSpecUri: Output only. Has dynamic open api spec uri.HasDynamicSpecUribool `json:"hasDynamicSpecUri,omitempty"`// IntegrationTemplates: Required. Integration example templates for the custom// connector.IntegrationTemplatesstring `json:"integrationTemplates,omitempty"`// LocalSpecPath: Output only. Local spec path. Required if// has_dynamic_spec_uri is true.LocalSpecPathstring `json:"localSpecPath,omitempty"`// MarketplaceProduct: Optional. Marketplace product name.MarketplaceProductstring `json:"marketplaceProduct,omitempty"`// MarketplaceProductId: Required. Marketplace product ID.MarketplaceProductIdstring `json:"marketplaceProductId,omitempty"`// MarketplaceProductProjectId: Optional. Marketplace product project ID.MarketplaceProductProjectIdstring `json:"marketplaceProductProjectId,omitempty"`// MarketplaceProductUri: Optional. Marketplace product URL.MarketplaceProductUristring `json:"marketplaceProductUri,omitempty"`// Partner: Required. Partner name.Partnerstring `json:"partner,omitempty"`// PartnerConnectorDisplayName: Required. Partner connector display name.PartnerConnectorDisplayNamestring `json:"partnerConnectorDisplayName,omitempty"`// PublishRequestTime: Output only. Publish request time.PublishRequestTimestring `json:"publishRequestTime,omitempty"`// TargetApplication: Required. Target application for which partner connector// is built.TargetApplicationstring `json:"targetApplication,omitempty"`// TargetCustomerSegment: Required. Target customer segment for the partner// connector.TargetCustomerSegmentstring `json:"targetCustomerSegment,omitempty"`// UseCases: Required. Details about partner connector use cases.UseCasesstring `json:"useCases,omitempty"`// ForceSendFields is a list of field names (e.g. "AcceptGcpTos") 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. "AcceptGcpTos") 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:"-"`}

PartnerMetadata: Partner metadata details. This will be populated whenpublishing the custom connector as a partner connector version. Onpublishing, parntner connector version will be created using the fields inPartnerMetadata.

func (PartnerMetadata)MarshalJSONadded inv0.206.0

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

typePerSliSloEligibilityadded inv0.155.0

type PerSliSloEligibility struct {// Eligibilities: An entry in the eligibilities map specifies an eligibility// for a particular SLI for the given instance. The SLI key in the name must be// a valid SLI name specified in the Eligibility Exporter binary flags// otherwise an error will be emitted by Eligibility Exporter and the oncaller// will be alerted. If an SLI has been defined in the binary flags but the// eligibilities map does not contain it, the corresponding SLI time series// will not be emitted by the Eligibility Exporter. This ensures a smooth// rollout and compatibility between the data produced by different versions of// the Eligibility Exporters. If eligibilities map contains a key for an SLI// which has not been declared in the binary flags, there will be an error// message emitted in the Eligibility Exporter log and the metric for the SLI// in question will not be emitted.Eligibilities map[string]SloEligibility `json:"eligibilities,omitempty"`// ForceSendFields is a list of field names (e.g. "Eligibilities") 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. "Eligibilities") 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:"-"`}

PerSliSloEligibility: PerSliSloEligibility is a mapping from an SLI name toeligibility.

func (PerSliSloEligibility)MarshalJSONadded inv0.155.0

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

typeProjectsLocationsConnectionsConnectionSchemaMetadataGetActionCalladded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetActionCall)ActionIdadded inv0.151.0

ActionId sets the optional parameter "actionId": Required. Id of the action.

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetActionCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetActionCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.connections.connectionSchemaMetadata.getAction" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetActionCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetActionCall)Headeradded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetActionCall)IfNoneMatchadded inv0.151.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.

typeProjectsLocationsConnectionsConnectionSchemaMetadataGetEntityTypeCalladded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetEntityTypeCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetEntityTypeCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.connections.connectionSchemaMetadata.getEntityType" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetEntityTypeCall)EntityIdadded inv0.151.0

EntityId sets the optional parameter "entityId": Required. Id of the entitytype.

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetEntityTypeCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetEntityTypeCall)Headeradded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataGetEntityTypeCall)IfNoneMatchadded inv0.151.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.

typeProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCalladded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.connections.connectionSchemaMetadata.listActions" call.Any non-2xx status code is an error. Response headers are in either*ListActionsResponse.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 (*ProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCall)Filteradded inv0.151.0

Filter sets the optional parameter "filter": Required. Filter Wildcards arenot supported in the filter currently.

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCall)Headeradded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCall)IfNoneMatchadded inv0.151.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 (*ProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCall)PageSizeadded inv0.151.0

PageSize sets the optional parameter "pageSize": Page size. If unspecified,at most 50 actions will be returned.

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCall)PageTokenadded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCall)Pagesadded inv0.151.0

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 (*ProjectsLocationsConnectionsConnectionSchemaMetadataListActionsCall)Viewadded inv0.151.0

View sets the optional parameter "view": Specifies which fields are returnedin response. Defaults to BASIC view.

Possible values:

"VIEW_UNSPECIFIED""BASIC"

typeProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCalladded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.connections.connectionSchemaMetadata.listEntityTypes" call.Any non-2xx status code is an error. Response headers are in either*ListEntityTypesResponse.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 (*ProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCall)Filteradded inv0.151.0

Filter sets the optional parameter "filter": Required. Filter Wildcards arenot supported in the filter currently.

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCall)Headeradded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCall)IfNoneMatchadded inv0.151.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 (*ProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCall)PageSizeadded inv0.151.0

PageSize sets the optional parameter "pageSize": Page size. If unspecified,at most 50 entity types will be returned.

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCall)PageTokenadded inv0.151.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCall)Pagesadded inv0.151.0

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 (*ProjectsLocationsConnectionsConnectionSchemaMetadataListEntityTypesCall)Viewadded inv0.151.0

View sets the optional parameter "view": Specifies which fields are returnedin response. Defaults to BASIC view.

Possible values:

"VIEW_UNSPECIFIED""BASIC"

typeProjectsLocationsConnectionsConnectionSchemaMetadataRefreshCalladded inv0.106.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataRefreshCall)Contextadded inv0.106.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataRefreshCall)Doadded inv0.106.0

Do executes the "connectors.projects.locations.connections.connectionSchemaMetadata.refresh" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsConnectionSchemaMetadataRefreshCall)Fieldsadded inv0.106.0

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

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataRefreshCall)Headeradded inv0.106.0

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

typeProjectsLocationsConnectionsConnectionSchemaMetadataServiceadded inv0.106.0

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

funcNewProjectsLocationsConnectionsConnectionSchemaMetadataServiceadded inv0.106.0

func NewProjectsLocationsConnectionsConnectionSchemaMetadataService(s *Service) *ProjectsLocationsConnectionsConnectionSchemaMetadataService

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataService)GetActionadded inv0.151.0

GetAction: Get action.

  • name: Resource name format:projects/{project}/locations/{location}/connections/{connection}/connectionSchemaMetadata.

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataService)GetEntityTypeadded inv0.151.0

GetEntityType: Get entity type.

  • name: Resource name format:projects/{project}/locations/{location}/connections/{connection}/connectionSchemaMetadata.

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataService)ListActionsadded inv0.151.0

ListActions: List actions.

  • name: Resource name format.projects/{project}/locations/{location}/connections/{connection}/connectionSchemaMetadata.

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataService)ListEntityTypesadded inv0.151.0

ListEntityTypes: List entity types.

  • name: Resource name format:projects/{project}/locations/{location}/connections/{connection}/connectionSchemaMetadata.

func (*ProjectsLocationsConnectionsConnectionSchemaMetadataService)Refreshadded inv0.106.0

Refresh: Refresh runtime schema of a connection.

  • name: Resource name. Format:projects/{project}/locations/{location}/connections/{connection}/connectionSchemaMetadata.

typeProjectsLocationsConnectionsCreateCall

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

func (*ProjectsLocationsConnectionsCreateCall)ConnectionId

ConnectionId sets the optional parameter "connectionId": Required.Identifier to assign to the Connection. Must be unique within scope of theparent resource.

func (*ProjectsLocationsConnectionsCreateCall)Context

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

func (*ProjectsLocationsConnectionsCreateCall)Do

Do executes the "connectors.projects.locations.connections.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 "connectors.projects.locations.connections.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.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)Forceadded inv0.244.0

Force sets the optional parameter "force": If set to true, any childEndUserAuthentication/EventSubscription resources will also be deleted.Otherwise, the request will fail if the connection has any children.Followed the best practice fromhttps://aip.dev/135#cascading-delete

func (*ProjectsLocationsConnectionsDeleteCall)Header

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

typeProjectsLocationsConnectionsEndUserAuthenticationsCreateCalladded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsCreateCall)Contextadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsCreateCall)Doadded inv0.230.0

Do executes the "connectors.projects.locations.connections.endUserAuthentications.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsEndUserAuthenticationsCreateCall)EndUserAuthenticationIdadded inv0.230.0

EndUserAuthenticationId sets the optional parameter"endUserAuthenticationId": Required. Identifier to assign to theEndUserAuthentication. Must be unique within scope of the parent resource.

func (*ProjectsLocationsConnectionsEndUserAuthenticationsCreateCall)Fieldsadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsCreateCall)Headeradded inv0.230.0

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

typeProjectsLocationsConnectionsEndUserAuthenticationsDeleteCalladded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsDeleteCall)Contextadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsDeleteCall)Doadded inv0.230.0

Do executes the "connectors.projects.locations.connections.endUserAuthentications.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsEndUserAuthenticationsDeleteCall)Fieldsadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsDeleteCall)Headeradded inv0.230.0

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

typeProjectsLocationsConnectionsEndUserAuthenticationsGetCalladded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsGetCall)Contextadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsGetCall)Doadded inv0.230.0

Do executes the "connectors.projects.locations.connections.endUserAuthentications.get" call.Any non-2xx status code is an error. Response headers are in either*EndUserAuthentication.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 (*ProjectsLocationsConnectionsEndUserAuthenticationsGetCall)Fieldsadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsGetCall)Headeradded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsGetCall)IfNoneMatchadded inv0.230.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 (*ProjectsLocationsConnectionsEndUserAuthenticationsGetCall)Viewadded inv0.230.0

View sets the optional parameter "view": View of the EndUserAuthenticationto return.

Possible values:

"END_USER_AUTHENTICATION_VIEW_UNSPECIFIED" -

END_USER_AUTHENTICATION_UNSPECIFIED.

"BASIC_VIEW" - Do not include secret fields."FULL_VIEW" - Include secret fields.

typeProjectsLocationsConnectionsEndUserAuthenticationsListCalladded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsListCall)Contextadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsListCall)Doadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsListCall)Fieldsadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsListCall)Filteradded inv0.230.0

Filter sets the optional parameter "filter": Filter.

func (*ProjectsLocationsConnectionsEndUserAuthenticationsListCall)Headeradded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsListCall)IfNoneMatchadded inv0.230.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 (*ProjectsLocationsConnectionsEndUserAuthenticationsListCall)OrderByadded inv0.230.0

OrderBy sets the optional parameter "orderBy": Order by parameters.

func (*ProjectsLocationsConnectionsEndUserAuthenticationsListCall)PageSizeadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsListCall)PageTokenadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsListCall)Pagesadded inv0.230.0

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.

typeProjectsLocationsConnectionsEndUserAuthenticationsPatchCalladded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsPatchCall)Contextadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsPatchCall)Doadded inv0.230.0

Do executes the "connectors.projects.locations.connections.endUserAuthentications.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsEndUserAuthenticationsPatchCall)Fieldsadded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsPatchCall)Headeradded inv0.230.0

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

func (*ProjectsLocationsConnectionsEndUserAuthenticationsPatchCall)UpdateMaskadded inv0.230.0

UpdateMask sets the optional parameter "updateMask": Required. The list offields to update. A field will be overwritten if it is in the mask. You canmodify only the fields listed below. To update the EndUserAuthenticationdetails: * `notify_endpoint_destination`

typeProjectsLocationsConnectionsEndUserAuthenticationsServiceadded inv0.230.0

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

funcNewProjectsLocationsConnectionsEndUserAuthenticationsServiceadded inv0.230.0

func NewProjectsLocationsConnectionsEndUserAuthenticationsService(s *Service) *ProjectsLocationsConnectionsEndUserAuthenticationsService

func (*ProjectsLocationsConnectionsEndUserAuthenticationsService)Createadded inv0.230.0

Create: Creates a new EndUserAuthentication in a given project,location andconnection.

  • parent: Parent resource of the EndUserAuthentication, of the form:`projects/*/locations/*/connections/*`.

func (*ProjectsLocationsConnectionsEndUserAuthenticationsService)Deleteadded inv0.230.0

Delete: Deletes a single EndUserAuthentication.

  • name: Resource name of the form:`projects/*/locations/*/connections/*/endUserAuthentication/*`.

func (*ProjectsLocationsConnectionsEndUserAuthenticationsService)Getadded inv0.230.0

Get: Gets details of a single EndUserAuthentication.

  • name: Resource name of the form:`projects/*/locations/*/connections/*/EndUserAuthentications/*`.

func (*ProjectsLocationsConnectionsEndUserAuthenticationsService)Listadded inv0.230.0

List: List EndUserAuthentications in a given project,location andconnection.

  • parent: Parent resource of the EndUserAuthentication, of the form:`projects/*/locations/*/connections/*`.

func (*ProjectsLocationsConnectionsEndUserAuthenticationsService)Patchadded inv0.230.0

Patch: Updates the parameters of a single EndUserAuthentication.

  • name: Identifier. Resource name of the EndUserAuthentication. Format:projects/{project}/locations/{location}/connections/{connection}/endUserAuthentications/{end_user_authentication}.

typeProjectsLocationsConnectionsEventSubscriptionsCreateCalladded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsCreateCall)Contextadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsCreateCall)Doadded inv0.131.0

Do executes the "connectors.projects.locations.connections.eventSubscriptions.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsEventSubscriptionsCreateCall)EventSubscriptionIdadded inv0.131.0

EventSubscriptionId sets the optional parameter "eventSubscriptionId":Required. Identifier to assign to the Event Subscription. Must be uniquewithin scope of the parent resource.

func (*ProjectsLocationsConnectionsEventSubscriptionsCreateCall)Fieldsadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsCreateCall)Headeradded inv0.131.0

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

typeProjectsLocationsConnectionsEventSubscriptionsDeleteCalladded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsDeleteCall)Contextadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsDeleteCall)Doadded inv0.131.0

Do executes the "connectors.projects.locations.connections.eventSubscriptions.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsEventSubscriptionsDeleteCall)Fieldsadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsDeleteCall)Headeradded inv0.131.0

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

typeProjectsLocationsConnectionsEventSubscriptionsGetCalladded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsGetCall)Contextadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsGetCall)Doadded inv0.131.0

Do executes the "connectors.projects.locations.connections.eventSubscriptions.get" call.Any non-2xx status code is an error. Response headers are in either*EventSubscription.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 (*ProjectsLocationsConnectionsEventSubscriptionsGetCall)Fieldsadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsGetCall)Headeradded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsGetCall)IfNoneMatchadded inv0.131.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.

typeProjectsLocationsConnectionsEventSubscriptionsListCalladded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsListCall)Contextadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsListCall)Doadded inv0.131.0

Do executes the "connectors.projects.locations.connections.eventSubscriptions.list" call.Any non-2xx status code is an error. Response headers are in either*ListEventSubscriptionsResponse.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 (*ProjectsLocationsConnectionsEventSubscriptionsListCall)Fieldsadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsListCall)Filteradded inv0.131.0

Filter sets the optional parameter "filter": Filter.

func (*ProjectsLocationsConnectionsEventSubscriptionsListCall)Headeradded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsListCall)IfNoneMatchadded inv0.131.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 (*ProjectsLocationsConnectionsEventSubscriptionsListCall)OrderByadded inv0.131.0

OrderBy sets the optional parameter "orderBy": Order by parameters.

func (*ProjectsLocationsConnectionsEventSubscriptionsListCall)PageSizeadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsListCall)PageTokenadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsListCall)Pagesadded inv0.131.0

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.

typeProjectsLocationsConnectionsEventSubscriptionsPatchCalladded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsPatchCall)Contextadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsPatchCall)Doadded inv0.131.0

Do executes the "connectors.projects.locations.connections.eventSubscriptions.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsEventSubscriptionsPatchCall)Fieldsadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsPatchCall)Headeradded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsPatchCall)UpdateMaskadded inv0.131.0

UpdateMask sets the optional parameter "updateMask": Required. The list offields to update. Fields are specified relative to the Subscription. A fieldwill be overwritten if it is in the mask. You can modify only the fieldslisted below. To update the EventSubscription details: * `serviceAccount`

typeProjectsLocationsConnectionsEventSubscriptionsRetryCalladded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsRetryCall)Contextadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsRetryCall)Doadded inv0.131.0

Do executes the "connectors.projects.locations.connections.eventSubscriptions.retry" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsEventSubscriptionsRetryCall)Fieldsadded inv0.131.0

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

func (*ProjectsLocationsConnectionsEventSubscriptionsRetryCall)Headeradded inv0.131.0

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

typeProjectsLocationsConnectionsEventSubscriptionsServiceadded inv0.131.0

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

funcNewProjectsLocationsConnectionsEventSubscriptionsServiceadded inv0.131.0

func NewProjectsLocationsConnectionsEventSubscriptionsService(s *Service) *ProjectsLocationsConnectionsEventSubscriptionsService

func (*ProjectsLocationsConnectionsEventSubscriptionsService)Createadded inv0.131.0

Create: Creates a new EventSubscription in a given project,location andconnection.

  • parent: Parent resource of the EventSubscription, of the form:`projects/*/locations/*/connections/*`.

func (*ProjectsLocationsConnectionsEventSubscriptionsService)Deleteadded inv0.131.0

Delete: Deletes a single EventSubscription.

  • name: Resource name of the form:`projects/*/locations/*/connections/*/eventsubscriptions/*`.

func (*ProjectsLocationsConnectionsEventSubscriptionsService)Getadded inv0.131.0

Get: Gets details of a single EventSubscription.

  • name: Resource name of the form:`projects/*/locations/*/connections/*/eventSubscriptions/*`.

func (*ProjectsLocationsConnectionsEventSubscriptionsService)Listadded inv0.131.0

List: List EventSubscriptions in a given project,location and connection.

  • parent: Parent resource of the EventSubscription, of the form:`projects/*/locations/*/connections/*`.

func (*ProjectsLocationsConnectionsEventSubscriptionsService)Patchadded inv0.131.0

Patch: Updates the parameters of a single EventSubscription.

  • name: Identifier. Resource name of the EventSubscription. Format:projects/{project}/locations/{location}/connections/{connection}/eventSubscriptions/{event_subscription}.

func (*ProjectsLocationsConnectionsEventSubscriptionsService)Retryadded inv0.131.0

Retry: RetryEventSubscription retries the registration of Subscription.

  • name: Resource name of the form:`projects/*/locations/*/connections/*/eventSubscriptions/*`.

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 "connectors.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.

func (*ProjectsLocationsConnectionsGetCall)View

View sets the optional parameter "view": Specifies which fields of theConnection are returned in the response. Defaults to `BASIC` view.

Possible values:

"CONNECTION_VIEW_UNSPECIFIED" - CONNECTION_UNSPECIFIED."BASIC" - Do not include runtime required configs."FULL" - Include runtime required configs.

typeProjectsLocationsConnectionsGetConnectionSchemaMetadataCall

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

func (*ProjectsLocationsConnectionsGetConnectionSchemaMetadataCall)Context

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

func (*ProjectsLocationsConnectionsGetConnectionSchemaMetadataCall)Do

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

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

func (*ProjectsLocationsConnectionsGetConnectionSchemaMetadataCall)Header

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

func (*ProjectsLocationsConnectionsGetConnectionSchemaMetadataCall)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 "connectors.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.

func (*ProjectsLocationsConnectionsGetIamPolicyCall)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 (*ProjectsLocationsConnectionsGetIamPolicyCall)OptionsRequestedPolicyVersion

func (c *ProjectsLocationsConnectionsGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersionint64) *ProjectsLocationsConnectionsGetIamPolicyCall

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

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 "connectors.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)Filter

Filter sets the optional parameter "filter": Filter.

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

OrderBy sets the optional parameter "orderBy": Order by parameters.

func (*ProjectsLocationsConnectionsListCall)PageSize

PageSize sets the optional parameter "pageSize": 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.

func (*ProjectsLocationsConnectionsListCall)View

View sets the optional parameter "view": Specifies which fields of theConnection are returned in the response. Defaults to `BASIC` view.

Possible values:

"CONNECTION_VIEW_UNSPECIFIED" - CONNECTION_UNSPECIFIED."BASIC" - Do not include runtime required configs."FULL" - Include runtime required configs.

typeProjectsLocationsConnectionsListenEventCalladded inv0.153.0

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

func (*ProjectsLocationsConnectionsListenEventCall)Contextadded inv0.153.0

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

func (*ProjectsLocationsConnectionsListenEventCall)Doadded inv0.153.0

Do executes the "connectors.projects.locations.connections.listenEvent" call.Any non-2xx status code is an error. Response headers are in either*ListenEventResponse.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 (*ProjectsLocationsConnectionsListenEventCall)Fieldsadded inv0.153.0

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

func (*ProjectsLocationsConnectionsListenEventCall)Headeradded inv0.153.0

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

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 "connectors.projects.locations.connections.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.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. The list offields to update. Fields are specified relative to the connection. A fieldwill be overwritten if it is in the mask. The field mask must not be empty,and it must not contain fields that are immutable or only set by the server.You can modify only the fields listed below. To lock/unlock a connection: *`lock_config` To suspend/resume a connection: * `suspended` To update theconnection details: * `description` * `labels` * `connector_version` *`config_variables` * `auth_config` * `destination_configs` * `node_config` *`log_config` * `ssl_config` * `eventing_enablement_type` * `eventing_config`* `auth_override_enabled` * `async_operations_enabled`

typeProjectsLocationsConnectionsRepairEventingCalladded inv0.131.0

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

func (*ProjectsLocationsConnectionsRepairEventingCall)Contextadded inv0.131.0

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

func (*ProjectsLocationsConnectionsRepairEventingCall)Doadded inv0.131.0

Do executes the "connectors.projects.locations.connections.repairEventing" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsConnectionsRepairEventingCall)Fieldsadded inv0.131.0

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

func (*ProjectsLocationsConnectionsRepairEventingCall)Headeradded inv0.131.0

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

typeProjectsLocationsConnectionsRuntimeActionSchemasListCall

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

func (*ProjectsLocationsConnectionsRuntimeActionSchemasListCall)Context

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

func (*ProjectsLocationsConnectionsRuntimeActionSchemasListCall)Do

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

func (*ProjectsLocationsConnectionsRuntimeActionSchemasListCall)Fields

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

func (*ProjectsLocationsConnectionsRuntimeActionSchemasListCall)Filter

Filter sets the optional parameter "filter": Required. Filter Format:action="{actionId}" Only action field is supported with literal equalityoperator. Accepted filter example: action="CancelOrder" Wildcards are notsupported in the filter currently.

func (*ProjectsLocationsConnectionsRuntimeActionSchemasListCall)Header

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

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

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

func (*ProjectsLocationsConnectionsRuntimeActionSchemasListCall)PageToken

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

func (*ProjectsLocationsConnectionsRuntimeActionSchemasListCall)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 (*ProjectsLocationsConnectionsRuntimeActionSchemasListCall)SchemaAsStringadded inv0.204.0

SchemaAsString sets the optional parameter "schemaAsString": Flag toindicate if schema should be returned as string or not

typeProjectsLocationsConnectionsRuntimeActionSchemasService

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

func (*ProjectsLocationsConnectionsRuntimeActionSchemasService)List

List: List schema of a runtime actions filtered by action name.

  • parent: Parent resource of RuntimeActionSchema Format:projects/{project}/locations/{location}/connections/{connection}.

typeProjectsLocationsConnectionsRuntimeEntitySchemasListCall

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

func (*ProjectsLocationsConnectionsRuntimeEntitySchemasListCall)Context

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

func (*ProjectsLocationsConnectionsRuntimeEntitySchemasListCall)Do

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

func (*ProjectsLocationsConnectionsRuntimeEntitySchemasListCall)Fields

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

func (*ProjectsLocationsConnectionsRuntimeEntitySchemasListCall)Filter

Filter sets the optional parameter "filter": Required. Filter Format:entity="{entityId}" Only entity field is supported with literal equalityoperator. Accepted filter example: entity="Order" Wildcards are notsupported in the filter currently.

func (*ProjectsLocationsConnectionsRuntimeEntitySchemasListCall)Header

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

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

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

func (*ProjectsLocationsConnectionsRuntimeEntitySchemasListCall)PageToken

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

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

typeProjectsLocationsConnectionsRuntimeEntitySchemasService

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

func (*ProjectsLocationsConnectionsRuntimeEntitySchemasService)List

List: List schema of a runtime entities filtered by entity name.

  • parent: Parent resource of RuntimeEntitySchema Format:projects/{project}/locations/{location}/connections/{connection}.

typeProjectsLocationsConnectionsSearchCalladded inv0.176.0

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

func (*ProjectsLocationsConnectionsSearchCall)Contextadded inv0.176.0

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

func (*ProjectsLocationsConnectionsSearchCall)Doadded inv0.176.0

Do executes the "connectors.projects.locations.connections.search" call.Any non-2xx status code is an error. Response headers are in either*SearchConnectionsResponse.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 (*ProjectsLocationsConnectionsSearchCall)Fieldsadded inv0.176.0

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

func (*ProjectsLocationsConnectionsSearchCall)Headeradded inv0.176.0

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

func (*ProjectsLocationsConnectionsSearchCall)IfNoneMatchadded inv0.176.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 (*ProjectsLocationsConnectionsSearchCall)PageSizeadded inv0.176.0

PageSize sets the optional parameter "pageSize": The number of top matchingconnectors to return

func (*ProjectsLocationsConnectionsSearchCall)PageTokenadded inv0.176.0

PageToken sets the optional parameter "pageToken": page_token

func (*ProjectsLocationsConnectionsSearchCall)Pagesadded inv0.176.0

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 (*ProjectsLocationsConnectionsSearchCall)Queryadded inv0.176.0

Query sets the optional parameter "query": Required. The query against whichthe search needs to be done.

typeProjectsLocationsConnectionsService

type ProjectsLocationsConnectionsService struct {ConnectionSchemaMetadata *ProjectsLocationsConnectionsConnectionSchemaMetadataServiceEndUserAuthentications *ProjectsLocationsConnectionsEndUserAuthenticationsServiceEventSubscriptions *ProjectsLocationsConnectionsEventSubscriptionsServiceRuntimeActionSchemas *ProjectsLocationsConnectionsRuntimeActionSchemasServiceRuntimeEntitySchemas *ProjectsLocationsConnectionsRuntimeEntitySchemasService// contains filtered or unexported fields}

func (*ProjectsLocationsConnectionsService)Create

Create: Creates a new Connection in a given project and location.

  • parent: Parent resource of the Connection, of the form:`projects/*/locations/*`.

func (*ProjectsLocationsConnectionsService)Delete

Delete: Deletes a single Connection.

- name: Resource name of the form: `projects/*/locations/*/connections/*`.

func (*ProjectsLocationsConnectionsService)Get

Get: Gets details of a single Connection.

- name: Resource name of the form: `projects/*/locations/*/connections/*`.

func (*ProjectsLocationsConnectionsService)GetConnectionSchemaMetadata

GetConnectionSchemaMetadata: Gets schema metadata of a connection.SchemaMetadata is a singleton resource for each connection.

  • name: Connection name Format:projects/{project}/locations/{location}/connections/{connection}/connectionSchemaMetadata.

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: Lists Connections in a given project and location.

  • parent: Parent resource of the Connection, of the form:`projects/*/locations/*`.

func (*ProjectsLocationsConnectionsService)ListenEventadded inv0.153.0

ListenEvent: ListenEvent listens to the event.

- resourcePath: Resource path for request.

func (*ProjectsLocationsConnectionsService)Patch

Patch: Updates the parameters of a single Connection.

  • name: Output only. Resource name of the Connection. Format:projects/{project}/locations/{location}/connections/{connection}.

func (*ProjectsLocationsConnectionsService)RepairEventingadded inv0.131.0

RepairEventing: RepaiEventing tries to repair eventing related eventsubscriptions.

- name: Resource name of the form: `projects/*/locations/*/connections/*`.

func (*ProjectsLocationsConnectionsService)Searchadded inv0.176.0

Search: Returns Top matching Connections for a given query.

  • name: Parent resource of the Connection, of the form:`projects/*/locations/*/connections`.

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 "connectors.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 "connectors.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.

typeProjectsLocationsCustomConnectorsCustomConnectorVersionsDeleteCalladded inv0.172.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsDeleteCall)Contextadded inv0.172.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsDeleteCall)Doadded inv0.172.0

Do executes the "connectors.projects.locations.customConnectors.customConnectorVersions.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsDeleteCall)Fieldsadded inv0.172.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsDeleteCall)Headeradded inv0.172.0

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

typeProjectsLocationsCustomConnectorsCustomConnectorVersionsDeprecateCalladded inv0.181.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsDeprecateCall)Contextadded inv0.181.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsDeprecateCall)Doadded inv0.181.0

Do executes the "connectors.projects.locations.customConnectors.customConnectorVersions.deprecate" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsDeprecateCall)Fieldsadded inv0.181.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsDeprecateCall)Headeradded inv0.181.0

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

typeProjectsLocationsCustomConnectorsCustomConnectorVersionsPublishCalladded inv0.211.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsPublishCall)Contextadded inv0.211.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsPublishCall)Doadded inv0.211.0

Do executes the "connectors.projects.locations.customConnectors.customConnectorVersions.publish" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsPublishCall)Fieldsadded inv0.211.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsPublishCall)Headeradded inv0.211.0

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

typeProjectsLocationsCustomConnectorsCustomConnectorVersionsServiceadded inv0.172.0

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

funcNewProjectsLocationsCustomConnectorsCustomConnectorVersionsServiceadded inv0.172.0

func NewProjectsLocationsCustomConnectorsCustomConnectorVersionsService(s *Service) *ProjectsLocationsCustomConnectorsCustomConnectorVersionsService

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsService)Deleteadded inv0.172.0

Delete: Deletes a single CustomConnectorVersion.

  • name: Resource name of the form:`projects/{project}/locations/{location}/customConnectors/{custom_connector}/customConnectorVersions/{custom_connector_version}`.

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsService)Deprecateadded inv0.181.0

Deprecate: Deprecates a single CustomConnectorVersion.

  • name: Resource name of the form:`projects/{project}/locations/{location}/customConnectors/{custom_connector}/customConnectorVersions/{custom_connector_version}`.

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsService)Publishadded inv0.211.0

Publish: Publish request for the CustomConnectorVersion. Once approved, theCustomConnectorVersion will be published as PartnerConnector.

  • name: Resource name of the form:`projects/{project}/locations/{location}/customConnectors/{custom_connector}/customConnectorVersions/{custom_connector_version}`.

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsService)Withdrawadded inv0.211.0

Withdraw: Withdraw the publish request for the CustomConnectorVersion. Thiscan only be used before the CustomConnectorVersion is published.

  • name: Resource name of the form:`projects/{project}/locations/{location}/customConnectors/{custom_connector}/customConnectorVersions/{custom_connector_version}`.

typeProjectsLocationsCustomConnectorsCustomConnectorVersionsWithdrawCalladded inv0.211.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsWithdrawCall)Contextadded inv0.211.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsWithdrawCall)Doadded inv0.211.0

Do executes the "connectors.projects.locations.customConnectors.customConnectorVersions.withdraw" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsWithdrawCall)Fieldsadded inv0.211.0

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

func (*ProjectsLocationsCustomConnectorsCustomConnectorVersionsWithdrawCall)Headeradded inv0.211.0

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

typeProjectsLocationsCustomConnectorsServiceadded inv0.170.0

type ProjectsLocationsCustomConnectorsService struct {CustomConnectorVersions *ProjectsLocationsCustomConnectorsCustomConnectorVersionsService// contains filtered or unexported fields}

funcNewProjectsLocationsCustomConnectorsServiceadded inv0.170.0

func NewProjectsLocationsCustomConnectorsService(s *Service) *ProjectsLocationsCustomConnectorsService

func (*ProjectsLocationsCustomConnectorsService)ValidateCustomConnectorSpecadded inv0.170.0

ValidateCustomConnectorSpec: Validates a Custom Connector Spec.

- parent: Location at which the custom connector is being created.

typeProjectsLocationsCustomConnectorsValidateCustomConnectorSpecCalladded inv0.170.0

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

func (*ProjectsLocationsCustomConnectorsValidateCustomConnectorSpecCall)Contextadded inv0.170.0

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

func (*ProjectsLocationsCustomConnectorsValidateCustomConnectorSpecCall)Doadded inv0.170.0

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

func (*ProjectsLocationsCustomConnectorsValidateCustomConnectorSpecCall)Fieldsadded inv0.170.0

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

func (*ProjectsLocationsCustomConnectorsValidateCustomConnectorSpecCall)Headeradded inv0.170.0

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

typeProjectsLocationsEndpointAttachmentsCreateCalladded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsCreateCall)Contextadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsCreateCall)Doadded inv0.122.0

Do executes the "connectors.projects.locations.endpointAttachments.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsEndpointAttachmentsCreateCall)EndpointAttachmentIdadded inv0.122.0

EndpointAttachmentId sets the optional parameter "endpointAttachmentId":Required. Identifier to assign to the EndpointAttachment. Must be uniquewithin scope of the parent resource. The regex is: `^a-z([a-z0-9-]{0,61}[a-z0-9])?$`.

func (*ProjectsLocationsEndpointAttachmentsCreateCall)Fieldsadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsCreateCall)Headeradded inv0.122.0

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

typeProjectsLocationsEndpointAttachmentsDeleteCalladded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsDeleteCall)Contextadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsDeleteCall)Doadded inv0.122.0

Do executes the "connectors.projects.locations.endpointAttachments.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsEndpointAttachmentsDeleteCall)Fieldsadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsDeleteCall)Headeradded inv0.122.0

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

typeProjectsLocationsEndpointAttachmentsGetCalladded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsGetCall)Contextadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsGetCall)Doadded inv0.122.0

Do executes the "connectors.projects.locations.endpointAttachments.get" call.Any non-2xx status code is an error. Response headers are in either*EndpointAttachment.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 (*ProjectsLocationsEndpointAttachmentsGetCall)Fieldsadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsGetCall)Headeradded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsGetCall)IfNoneMatchadded inv0.122.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 (*ProjectsLocationsEndpointAttachmentsGetCall)Viewadded inv0.195.0

View sets the optional parameter "view": Specifies which fields of theEndpointAttachment are returned in the response. Defaults to`ENDPOINT_ATTACHMENT_VIEW_BASIC` view.

Possible values:

"ENDPOINT_ATTACHMENT_VIEW_UNSPECIFIED" -

ENDPOINT_ATTACHMENT_VIEW_UNSPECIFIED.

"ENDPOINT_ATTACHMENT_VIEW_BASIC" - Do not include status."ENDPOINT_ATTACHMENT_VIEW_FULL" - Includes Status.

typeProjectsLocationsEndpointAttachmentsListCalladded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsListCall)Contextadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsListCall)Doadded inv0.122.0

Do executes the "connectors.projects.locations.endpointAttachments.list" call.Any non-2xx status code is an error. Response headers are in either*ListEndpointAttachmentsResponse.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 (*ProjectsLocationsEndpointAttachmentsListCall)Fieldsadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsListCall)Filteradded inv0.122.0

Filter sets the optional parameter "filter": Filter.

func (*ProjectsLocationsEndpointAttachmentsListCall)Headeradded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsListCall)IfNoneMatchadded inv0.122.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 (*ProjectsLocationsEndpointAttachmentsListCall)OrderByadded inv0.122.0

OrderBy sets the optional parameter "orderBy": Order by parameters.

func (*ProjectsLocationsEndpointAttachmentsListCall)PageSizeadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsListCall)PageTokenadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsListCall)Pagesadded inv0.122.0

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 (*ProjectsLocationsEndpointAttachmentsListCall)Viewadded inv0.195.0

View sets the optional parameter "view": Specifies which fields of theEndpointAttachment are returned in the response. Defaults to`ENDPOINT_ATTACHMENT_VIEW_BASIC` view.

Possible values:

"ENDPOINT_ATTACHMENT_VIEW_UNSPECIFIED" -

ENDPOINT_ATTACHMENT_VIEW_UNSPECIFIED.

"ENDPOINT_ATTACHMENT_VIEW_BASIC" - Do not include status."ENDPOINT_ATTACHMENT_VIEW_FULL" - Includes Status.

typeProjectsLocationsEndpointAttachmentsPatchCalladded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsPatchCall)Contextadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsPatchCall)Doadded inv0.122.0

Do executes the "connectors.projects.locations.endpointAttachments.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsEndpointAttachmentsPatchCall)Fieldsadded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsPatchCall)Headeradded inv0.122.0

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

func (*ProjectsLocationsEndpointAttachmentsPatchCall)UpdateMaskadded inv0.122.0

UpdateMask sets the optional parameter "updateMask": Required. The list offields to update. Fields are specified relative to the endpointAttachment. Afield will be overwritten if it is in the mask. You can modify only thefields listed below. To update the endpointAttachment details: *`description` * `labels`

typeProjectsLocationsEndpointAttachmentsServiceadded inv0.122.0

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

funcNewProjectsLocationsEndpointAttachmentsServiceadded inv0.122.0

func NewProjectsLocationsEndpointAttachmentsService(s *Service) *ProjectsLocationsEndpointAttachmentsService

func (*ProjectsLocationsEndpointAttachmentsService)Createadded inv0.122.0

Create: Creates a new EndpointAttachment in a given project and location.

  • parent: Parent resource of the EndpointAttachment, of the form:`projects/*/locations/*`.

func (*ProjectsLocationsEndpointAttachmentsService)Deleteadded inv0.122.0

Delete: Deletes a single EndpointAttachment.

  • name: Resource name of the form:`projects/*/locations/*/endpointAttachments/*`.

func (*ProjectsLocationsEndpointAttachmentsService)Getadded inv0.122.0

Get: Gets details of a single EndpointAttachment.

  • name: Resource name of the form:`projects/*/locations/*/endpointAttachments/*`.

func (*ProjectsLocationsEndpointAttachmentsService)Listadded inv0.122.0

List: List EndpointAttachments in a given project

  • parent: Parent resource od the EndpointAttachment, of the form:`projects/*/locations/*`.

func (*ProjectsLocationsEndpointAttachmentsService)Patchadded inv0.122.0

Patch: Updates the parameters of a single EndpointAttachment.

  • name: Output only. Resource name of the Endpoint Attachment. Format:projects/{project}/locations/{location}/endpointAttachments/{endpoint_attachment}.

typeProjectsLocationsGetCall

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

func (*ProjectsLocationsGetCall)Context

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

func (*ProjectsLocationsGetCall)Do

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

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

func (*ProjectsLocationsGetCall)Header

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

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

typeProjectsLocationsGetRegionalSettingsCalladded inv0.148.0

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

func (*ProjectsLocationsGetRegionalSettingsCall)Contextadded inv0.148.0

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

func (*ProjectsLocationsGetRegionalSettingsCall)Doadded inv0.148.0

Do executes the "connectors.projects.locations.getRegionalSettings" call.Any non-2xx status code is an error. Response headers are in either*RegionalSettings.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 (*ProjectsLocationsGetRegionalSettingsCall)Fieldsadded inv0.148.0

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

func (*ProjectsLocationsGetRegionalSettingsCall)Headeradded inv0.148.0

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

func (*ProjectsLocationsGetRegionalSettingsCall)IfNoneMatchadded inv0.148.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.

typeProjectsLocationsGetRuntimeConfigCall

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

func (*ProjectsLocationsGetRuntimeConfigCall)Context

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

func (*ProjectsLocationsGetRuntimeConfigCall)Do

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

func (*ProjectsLocationsGetRuntimeConfigCall)Fields

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

func (*ProjectsLocationsGetRuntimeConfigCall)Header

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

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

typeProjectsLocationsGlobalCustomConnectorsCreateCalladded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCreateCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCreateCall)CustomConnectorIdadded inv0.151.0

CustomConnectorId sets the optional parameter "customConnectorId": Required.Identifier to assign to the CreateCustomConnector. Must be unique withinscope of the parent resource.

func (*ProjectsLocationsGlobalCustomConnectorsCreateCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.global.customConnectors.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsGlobalCustomConnectorsCreateCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCreateCall)Headeradded inv0.151.0

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

typeProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsCreateCalladded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsCreateCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsCreateCall)CustomConnectorVersionIdadded inv0.151.0

CustomConnectorVersionId sets the optional parameter"customConnectorVersionId": Required. Identifier to assign to theCreateCustomConnectorVersion. Must be unique within scope of the parentresource.

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsCreateCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.global.customConnectors.customConnectorVersions.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsCreateCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsCreateCall)Headeradded inv0.151.0

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

typeProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsGetCalladded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsGetCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsGetCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.global.customConnectors.customConnectorVersions.get" call.Any non-2xx status code is an error. Response headers are in either*CustomConnectorVersion.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 (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsGetCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsGetCall)Headeradded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsGetCall)IfNoneMatchadded inv0.151.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.

typeProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsListCalladded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsListCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsListCall)Doadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsListCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsListCall)Headeradded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsListCall)IfNoneMatchadded inv0.151.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 (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsListCall)PageSizeadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsListCall)PageTokenadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsListCall)Pagesadded inv0.151.0

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.

typeProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsServiceadded inv0.151.0

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

funcNewProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsServiceadded inv0.151.0

func NewProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsService(s *Service) *ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsService

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsService)Createadded inv0.151.0

Create: Creates a new CustomConnectorVersion in a given project andlocation.

  • parent: Parent resource of the CreateCustomConnector, of the form:`projects/{project}/locations/{location}/customConnectors/{custom_connector}`.

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsService)Getadded inv0.151.0

Get: Gets details of a single CustomConnectorVersion.

  • name: Resource name of the form:`projects/*/locations/{location}/customConnectors/*/customConnectorVersions/*`.

func (*ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsService)Listadded inv0.151.0

List: List CustomConnectorVersions in a given project

  • parent: Parent resource of the connectors, of the form:`projects/*/locations/{location}/customConnectors/*/customConnectorVersions/*`.

typeProjectsLocationsGlobalCustomConnectorsDeleteCalladded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsDeleteCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsDeleteCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.global.customConnectors.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsGlobalCustomConnectorsDeleteCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsDeleteCall)Forceadded inv0.156.0

Force sets the optional parameter "force": If set to true, anycustomConnectorVersion which is a child resource will also be deleted.https://aip.dev/135#cascading-delete

func (*ProjectsLocationsGlobalCustomConnectorsDeleteCall)Headeradded inv0.151.0

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

typeProjectsLocationsGlobalCustomConnectorsGetCalladded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsGetCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsGetCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.global.customConnectors.get" call.Any non-2xx status code is an error. Response headers are in either*CustomConnector.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 (*ProjectsLocationsGlobalCustomConnectorsGetCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsGetCall)Headeradded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsGetCall)IfNoneMatchadded inv0.151.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.

typeProjectsLocationsGlobalCustomConnectorsListCalladded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsListCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsListCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.global.customConnectors.list" call.Any non-2xx status code is an error. Response headers are in either*ListCustomConnectorsResponse.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 (*ProjectsLocationsGlobalCustomConnectorsListCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsListCall)Filteradded inv0.151.0

Filter sets the optional parameter "filter": Filter string.

func (*ProjectsLocationsGlobalCustomConnectorsListCall)Headeradded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsListCall)IfNoneMatchadded inv0.151.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 (*ProjectsLocationsGlobalCustomConnectorsListCall)PageSizeadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsListCall)PageTokenadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsListCall)Pagesadded inv0.151.0

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.

typeProjectsLocationsGlobalCustomConnectorsPatchCalladded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsPatchCall)Contextadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsPatchCall)Doadded inv0.151.0

Do executes the "connectors.projects.locations.global.customConnectors.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsGlobalCustomConnectorsPatchCall)Fieldsadded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsPatchCall)Headeradded inv0.151.0

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

func (*ProjectsLocationsGlobalCustomConnectorsPatchCall)UpdateMaskadded inv0.151.0

UpdateMask sets the optional parameter "updateMask": Required. Field mask isused to specify the fields to be overwritten in the Connector resource bythe update. The fields specified in the update_mask are relative to theresource, not the full request. A field will be overwritten if it is in themask. Set the mask as "*" for full replacement, which means all fields willbe overwritten.

typeProjectsLocationsGlobalCustomConnectorsServiceadded inv0.151.0

type ProjectsLocationsGlobalCustomConnectorsService struct {CustomConnectorVersions *ProjectsLocationsGlobalCustomConnectorsCustomConnectorVersionsService// contains filtered or unexported fields}

funcNewProjectsLocationsGlobalCustomConnectorsServiceadded inv0.151.0

func NewProjectsLocationsGlobalCustomConnectorsService(s *Service) *ProjectsLocationsGlobalCustomConnectorsService

func (*ProjectsLocationsGlobalCustomConnectorsService)Createadded inv0.151.0

Create: Creates a new CustomConnector in a given project and location.

  • parent: Parent resource of the CreateCustomConnector, of the form:`projects/{project}/locations/*`.

func (*ProjectsLocationsGlobalCustomConnectorsService)Deleteadded inv0.151.0

Delete: Deletes a single CustomConnector.

  • name: Resource name of the form:`projects/{project}/locations/{location}/customConnectors/{connector}`.

func (*ProjectsLocationsGlobalCustomConnectorsService)Getadded inv0.151.0

Get: Gets details of a single CustomConnector.

  • name: Resource name of the form:`projects/*/locations/*/customConnectors/*`.

func (*ProjectsLocationsGlobalCustomConnectorsService)Listadded inv0.151.0

List: List CustomConnectorVersions in a given project

  • parent: Parent resource of the custom connectors, of the form:`projects/*/locations/*` Only global location is supported forCustomConnector resource.

func (*ProjectsLocationsGlobalCustomConnectorsService)Patchadded inv0.151.0

Patch: Updates the parameters of a CustomConnector.

  • name: Identifier. Resource name of the CustomConnector. Format:projects/{project}/locations/{location}/customConnectors/{connector}.

typeProjectsLocationsGlobalGetSettingsCalladded inv0.115.0

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

func (*ProjectsLocationsGlobalGetSettingsCall)Contextadded inv0.115.0

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

func (*ProjectsLocationsGlobalGetSettingsCall)Doadded inv0.115.0

Do executes the "connectors.projects.locations.global.getSettings" call.Any non-2xx status code is an error. Response headers are in either*Settings.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 (*ProjectsLocationsGlobalGetSettingsCall)Fieldsadded inv0.115.0

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

func (*ProjectsLocationsGlobalGetSettingsCall)Headeradded inv0.115.0

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

func (*ProjectsLocationsGlobalGetSettingsCall)IfNoneMatchadded inv0.115.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.

typeProjectsLocationsGlobalManagedZonesCreateCalladded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesCreateCall)Contextadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesCreateCall)Doadded inv0.122.0

Do executes the "connectors.projects.locations.global.managedZones.create" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsGlobalManagedZonesCreateCall)Fieldsadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesCreateCall)Headeradded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesCreateCall)ManagedZoneIdadded inv0.122.0

ManagedZoneId sets the optional parameter "managedZoneId": Required.Identifier to assign to the ManagedZone. Must be unique within scope of theparent resource.

typeProjectsLocationsGlobalManagedZonesDeleteCalladded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesDeleteCall)Contextadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesDeleteCall)Doadded inv0.122.0

Do executes the "connectors.projects.locations.global.managedZones.delete" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsGlobalManagedZonesDeleteCall)Fieldsadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesDeleteCall)Headeradded inv0.122.0

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

typeProjectsLocationsGlobalManagedZonesGetCalladded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesGetCall)Contextadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesGetCall)Doadded inv0.122.0

Do executes the "connectors.projects.locations.global.managedZones.get" call.Any non-2xx status code is an error. Response headers are in either*ManagedZone.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 (*ProjectsLocationsGlobalManagedZonesGetCall)Fieldsadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesGetCall)Headeradded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesGetCall)IfNoneMatchadded inv0.122.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.

typeProjectsLocationsGlobalManagedZonesListCalladded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesListCall)Contextadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesListCall)Doadded inv0.122.0

Do executes the "connectors.projects.locations.global.managedZones.list" call.Any non-2xx status code is an error. Response headers are in either*ListManagedZonesResponse.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 (*ProjectsLocationsGlobalManagedZonesListCall)Fieldsadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesListCall)Filteradded inv0.122.0

Filter sets the optional parameter "filter": Filter.

func (*ProjectsLocationsGlobalManagedZonesListCall)Headeradded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesListCall)IfNoneMatchadded inv0.122.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 (*ProjectsLocationsGlobalManagedZonesListCall)OrderByadded inv0.122.0

OrderBy sets the optional parameter "orderBy": Order by parameters.

func (*ProjectsLocationsGlobalManagedZonesListCall)PageSizeadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesListCall)PageTokenadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesListCall)Pagesadded inv0.122.0

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 (*ProjectsLocationsGlobalManagedZonesListCall)ReturnPartialSuccessadded inv0.229.0

ReturnPartialSuccess sets the optional parameter "returnPartialSuccess": Iftrue, allow partial responses for multi-regional Aggregated List requests.

typeProjectsLocationsGlobalManagedZonesPatchCalladded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesPatchCall)Contextadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesPatchCall)Doadded inv0.122.0

Do executes the "connectors.projects.locations.global.managedZones.patch" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsGlobalManagedZonesPatchCall)Fieldsadded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesPatchCall)Headeradded inv0.122.0

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

func (*ProjectsLocationsGlobalManagedZonesPatchCall)UpdateMaskadded inv0.122.0

UpdateMask sets the optional parameter "updateMask": Required. The list offields to update. Fields are specified relative to the managedZone. A fieldwill be overwritten if it is in the mask. You can modify only the fieldslisted below. To update the managedZone details: * `description` * `labels`* `target_project` * `target_network`

typeProjectsLocationsGlobalManagedZonesServiceadded inv0.122.0

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

funcNewProjectsLocationsGlobalManagedZonesServiceadded inv0.122.0

func NewProjectsLocationsGlobalManagedZonesService(s *Service) *ProjectsLocationsGlobalManagedZonesService

func (*ProjectsLocationsGlobalManagedZonesService)Createadded inv0.122.0

Create: Creates a new ManagedZone in a given project and location.

  • parent: Parent resource of the ManagedZone, of the form:`projects/*/locations/global`.

func (*ProjectsLocationsGlobalManagedZonesService)Deleteadded inv0.122.0

Delete: Deletes a single ManagedZone.

  • name: Resource name of the form:`projects/*/locations/global/managedZones/*`.

func (*ProjectsLocationsGlobalManagedZonesService)Getadded inv0.122.0

Get: Gets details of a single ManagedZone.

  • name: Resource name of the form:`projects/*/locations/global/managedZones/*`.

func (*ProjectsLocationsGlobalManagedZonesService)Listadded inv0.122.0

List: List ManagedZones in a given project

  • parent: Parent resource of the Managed Zone, of the form:`projects/*/locations/global`.

func (*ProjectsLocationsGlobalManagedZonesService)Patchadded inv0.122.0

Patch: Updates the parameters of a single ManagedZone.

  • name: Output only. Resource name of the Managed Zone. Format:projects/{project}/locations/global/managedZones/{managed_zone}.

typeProjectsLocationsGlobalService

type ProjectsLocationsGlobalService struct {CustomConnectors *ProjectsLocationsGlobalCustomConnectorsServiceManagedZones *ProjectsLocationsGlobalManagedZonesService// contains filtered or unexported fields}

funcNewProjectsLocationsGlobalService

func NewProjectsLocationsGlobalService(s *Service) *ProjectsLocationsGlobalService

func (*ProjectsLocationsGlobalService)GetSettingsadded inv0.115.0

GetSettings: GetGlobalSettings gets settings of a project. GlobalSettings isa singleton resource.

- name: The resource name of the Settings.

func (*ProjectsLocationsGlobalService)UpdateSettingsadded inv0.131.0

UpdateSettings: Update the global settings of a project.

  • name: Output only. Resource name of the Connection. Format:projects/{project}/locations/global/settings}.

typeProjectsLocationsGlobalUpdateSettingsCalladded inv0.131.0

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

func (*ProjectsLocationsGlobalUpdateSettingsCall)Contextadded inv0.131.0

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

func (*ProjectsLocationsGlobalUpdateSettingsCall)Doadded inv0.131.0

Do executes the "connectors.projects.locations.global.updateSettings" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsGlobalUpdateSettingsCall)Fieldsadded inv0.131.0

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

func (*ProjectsLocationsGlobalUpdateSettingsCall)Headeradded inv0.131.0

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

func (*ProjectsLocationsGlobalUpdateSettingsCall)UpdateMaskadded inv0.131.0

UpdateMask sets the optional parameter "updateMask": Required. The list offields to update.

typeProjectsLocationsListCall

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

func (*ProjectsLocationsListCall)Context

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

func (*ProjectsLocationsListCall)Do

Do executes the "connectors.projects.locations.list" call.Any non-2xx status code is an error. Response headers are in either*ListLocationsResponse.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 (*ProjectsLocationsListCall)ExtraLocationTypesadded inv0.229.0

func (c *ProjectsLocationsListCall) ExtraLocationTypes(extraLocationTypes ...string) *ProjectsLocationsListCall

ExtraLocationTypes sets the optional parameter "extraLocationTypes": Unlessexplicitly documented otherwise, don't use this unsupported field which isprimarily intended for internal usage.

func (*ProjectsLocationsListCall)Fields

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

func (*ProjectsLocationsListCall)Filter

Filter sets the optional parameter "filter": A filter to narrow down resultsto a preferred subset. The filtering language accepts strings like"displayName=tokyo", and is documented in more detail in AIP-160(https://google.aip.dev/160).

func (*ProjectsLocationsListCall)Header

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

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

PageSize sets the optional parameter "pageSize": The maximum number ofresults to return. If not set, the service selects a default.

func (*ProjectsLocationsListCall)PageToken

PageToken sets the optional parameter "pageToken": A page token receivedfrom the `next_page_token` field in the response. Send that page token toreceive the subsequent page.

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

typeProjectsLocationsOperationsCancelCall

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

func (*ProjectsLocationsOperationsCancelCall)Context

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

func (*ProjectsLocationsOperationsCancelCall)Do

Do executes the "connectors.projects.locations.operations.cancel" 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 (*ProjectsLocationsOperationsCancelCall)Fields

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

func (*ProjectsLocationsOperationsCancelCall)Header

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

typeProjectsLocationsOperationsDeleteCall

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

func (*ProjectsLocationsOperationsDeleteCall)Context

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

func (*ProjectsLocationsOperationsDeleteCall)Do

Do executes the "connectors.projects.locations.operations.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 (*ProjectsLocationsOperationsDeleteCall)Fields

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

func (*ProjectsLocationsOperationsDeleteCall)Header

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

typeProjectsLocationsOperationsGetCall

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

func (*ProjectsLocationsOperationsGetCall)Context

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

func (*ProjectsLocationsOperationsGetCall)Do

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

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

func (*ProjectsLocationsOperationsGetCall)Header

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

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

typeProjectsLocationsOperationsListCall

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

func (*ProjectsLocationsOperationsListCall)Context

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

func (*ProjectsLocationsOperationsListCall)Do

Do executes the "connectors.projects.locations.operations.list" call.Any non-2xx status code is an error. Response headers are in either*ListOperationsResponse.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 (*ProjectsLocationsOperationsListCall)Fields

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

func (*ProjectsLocationsOperationsListCall)Filter

Filter sets the optional parameter "filter": The standard list filter.

func (*ProjectsLocationsOperationsListCall)Header

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

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

PageSize sets the optional parameter "pageSize": The standard list pagesize.

func (*ProjectsLocationsOperationsListCall)PageToken

PageToken sets the optional parameter "pageToken": The standard list pagetoken.

func (*ProjectsLocationsOperationsListCall)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 (*ProjectsLocationsOperationsListCall)ReturnPartialSuccessadded inv0.253.0

func (c *ProjectsLocationsOperationsListCall) ReturnPartialSuccess(returnPartialSuccessbool) *ProjectsLocationsOperationsListCall

ReturnPartialSuccess sets the optional parameter "returnPartialSuccess":When set to `true`, operations that are reachable are returned as normal,and those that are unreachable are returned in the[ListOperationsResponse.unreachable] field. This can only be `true` whenreading across collections e.g. when `parent` is set to"projects/example/locations/-". This field is not by default supported andwill result in an `UNIMPLEMENTED` error if set unless explicitly documentedotherwise in service or product specific documentation.

typeProjectsLocationsOperationsService

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

func (*ProjectsLocationsOperationsService)Cancel

Cancel: Starts asynchronous cancellation on a long-running operation. Theserver makes a best effort to cancel the operation, but success is notguaranteed. If the server doesn't support this method, it returns`google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation orother methods to check whether the cancellation succeeded or whether theoperation completed despite cancellation. On successful cancellation, theoperation is not deleted; instead, it becomes an operation with anOperation.error value with a google.rpc.Status.code of `1`, corresponding to`Code.CANCELLED`.

- name: The name of the operation resource to be cancelled.

func (*ProjectsLocationsOperationsService)Delete

Delete: Deletes a long-running operation. This method indicates that theclient is no longer interested in the operation result. It does not cancelthe operation. If the server doesn't support this method, it returns`google.rpc.Code.UNIMPLEMENTED`.

- name: The name of the operation resource to be deleted.

func (*ProjectsLocationsOperationsService)Get

Get: Gets the latest state of a long-running operation. Clients can use thismethod to poll the operation result at intervals as recommended by the APIservice.

- name: The name of the operation resource.

func (*ProjectsLocationsOperationsService)List

List: Lists operations that match the specified filter in the request. Ifthe server doesn't support this method, it returns `UNIMPLEMENTED`.

- name: The name of the operation's parent resource.

typeProjectsLocationsProvidersConnectorsGetCalladded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsGetCall)Contextadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsGetCall)Doadded inv0.93.0

Do executes the "connectors.projects.locations.providers.connectors.get" call.Any non-2xx status code is an error. Response headers are in either*Connector.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 (*ProjectsLocationsProvidersConnectorsGetCall)Fieldsadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsGetCall)Headeradded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsGetCall)IfNoneMatchadded inv0.93.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.

typeProjectsLocationsProvidersConnectorsListCalladded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsListCall)Contextadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsListCall)Doadded inv0.93.0

Do executes the "connectors.projects.locations.providers.connectors.list" call.Any non-2xx status code is an error. Response headers are in either*ListConnectorsResponse.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 (*ProjectsLocationsProvidersConnectorsListCall)Fieldsadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsListCall)Filteradded inv0.127.0

Filter sets the optional parameter "filter": Filter string.

func (*ProjectsLocationsProvidersConnectorsListCall)Headeradded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsListCall)IfNoneMatchadded inv0.93.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 (*ProjectsLocationsProvidersConnectorsListCall)PageSizeadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsListCall)PageTokenadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsListCall)Pagesadded inv0.93.0

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.

typeProjectsLocationsProvidersConnectorsServiceadded inv0.93.0

type ProjectsLocationsProvidersConnectorsService struct {Versions *ProjectsLocationsProvidersConnectorsVersionsService// contains filtered or unexported fields}

funcNewProjectsLocationsProvidersConnectorsServiceadded inv0.93.0

func NewProjectsLocationsProvidersConnectorsService(s *Service) *ProjectsLocationsProvidersConnectorsService

func (*ProjectsLocationsProvidersConnectorsService)Getadded inv0.93.0

Get: Gets details of a single Connector.

  • name: Resource name of the form:`projects/*/locations/*/providers/*/connectors/*` Only global location issupported for Connector resource.

func (*ProjectsLocationsProvidersConnectorsService)Listadded inv0.93.0

List: Lists Connectors in a given project and location.

  • parent: Parent resource of the connectors, of the form:`projects/*/locations/*/providers/*` Only global location is supported forConnector resource.

typeProjectsLocationsProvidersConnectorsVersionsEventtypesGetCalladded inv0.131.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesGetCall)Contextadded inv0.131.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesGetCall)Doadded inv0.131.0

Do executes the "connectors.projects.locations.providers.connectors.versions.eventtypes.get" call.Any non-2xx status code is an error. Response headers are in either*EventType.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 (*ProjectsLocationsProvidersConnectorsVersionsEventtypesGetCall)Fieldsadded inv0.131.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesGetCall)Headeradded inv0.131.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesGetCall)IfNoneMatchadded inv0.131.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.

typeProjectsLocationsProvidersConnectorsVersionsEventtypesListCalladded inv0.131.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesListCall)Contextadded inv0.131.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesListCall)Doadded inv0.131.0

Do executes the "connectors.projects.locations.providers.connectors.versions.eventtypes.list" call.Any non-2xx status code is an error. Response headers are in either*ListEventTypesResponse.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 (*ProjectsLocationsProvidersConnectorsVersionsEventtypesListCall)Fieldsadded inv0.131.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesListCall)Headeradded inv0.131.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesListCall)IfNoneMatchadded inv0.131.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 (*ProjectsLocationsProvidersConnectorsVersionsEventtypesListCall)PageSizeadded inv0.131.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesListCall)PageTokenadded inv0.131.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesListCall)Pagesadded inv0.131.0

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.

typeProjectsLocationsProvidersConnectorsVersionsEventtypesServiceadded inv0.131.0

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

funcNewProjectsLocationsProvidersConnectorsVersionsEventtypesServiceadded inv0.131.0

func NewProjectsLocationsProvidersConnectorsVersionsEventtypesService(s *Service) *ProjectsLocationsProvidersConnectorsVersionsEventtypesService

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesService)Getadded inv0.131.0

Get: Gets details of a single event type.

  • name: Resource name of the form:`projects/*/locations/*/providers/*/connectors/*/versions/*/eventtypes/*`Only global location is supported for EventType resource.

func (*ProjectsLocationsProvidersConnectorsVersionsEventtypesService)Listadded inv0.131.0

List: Lists Event Types in a given Connector Version.

  • parent: Parent resource of the connectors, of the form:`projects/*/locations/*/providers/*/connectors/*/versions/*` Only globallocation is supported for EventType resource.

typeProjectsLocationsProvidersConnectorsVersionsFetchAuthSchemaCalladded inv0.197.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsFetchAuthSchemaCall)Contextadded inv0.197.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsFetchAuthSchemaCall)Doadded inv0.197.0

Do executes the "connectors.projects.locations.providers.connectors.versions.fetchAuthSchema" call.Any non-2xx status code is an error. Response headers are in either*FetchAuthSchemaResponse.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 (*ProjectsLocationsProvidersConnectorsVersionsFetchAuthSchemaCall)Fieldsadded inv0.197.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsFetchAuthSchemaCall)Headeradded inv0.197.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsFetchAuthSchemaCall)IfNoneMatchadded inv0.197.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 (*ProjectsLocationsProvidersConnectorsVersionsFetchAuthSchemaCall)Viewadded inv0.197.0

View sets the optional parameter "view": View of the AuthSchema. The defaultvalue is BASIC.

Possible values:

"AUTH_SCHEMA_VIEW_UNSPECIFIED" - Default value."BASIC" - Basic view of the AuthSchema."JSON_SCHEMA" - JSON schema view of the AuthSchema."EUA_SCHEMA" - EUA Schema view of the AuthSchema.

typeProjectsLocationsProvidersConnectorsVersionsGetCalladded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsGetCall)Contextadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsGetCall)Doadded inv0.93.0

Do executes the "connectors.projects.locations.providers.connectors.versions.get" call.Any non-2xx status code is an error. Response headers are in either*ConnectorVersion.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 (*ProjectsLocationsProvidersConnectorsVersionsGetCall)Fieldsadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsGetCall)Headeradded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsGetCall)IfNoneMatchadded inv0.93.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 (*ProjectsLocationsProvidersConnectorsVersionsGetCall)Viewadded inv0.93.0

View sets the optional parameter "view": Specifies which fields of theConnectorVersion are returned in the response. Defaults to `CUSTOMER` view.

Possible values:

"CONNECTOR_VERSION_VIEW_UNSPECIFIED" - CONNECTOR_VERSION_VIEW_UNSPECIFIED."CONNECTOR_VERSION_VIEW_BASIC" - Do not include role grant configs."CONNECTOR_VERSION_VIEW_FULL" - Include role grant configs.

typeProjectsLocationsProvidersConnectorsVersionsListCalladded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsListCall)Contextadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsListCall)Doadded inv0.93.0

Do executes the "connectors.projects.locations.providers.connectors.versions.list" call.Any non-2xx status code is an error. Response headers are in either*ListConnectorVersionsResponse.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 (*ProjectsLocationsProvidersConnectorsVersionsListCall)Fieldsadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsListCall)Headeradded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsListCall)IfNoneMatchadded inv0.93.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 (*ProjectsLocationsProvidersConnectorsVersionsListCall)PageSizeadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsListCall)PageTokenadded inv0.93.0

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

func (*ProjectsLocationsProvidersConnectorsVersionsListCall)Pagesadded inv0.93.0

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 (*ProjectsLocationsProvidersConnectorsVersionsListCall)Viewadded inv0.93.0

View sets the optional parameter "view": Specifies which fields of theConnectorVersion are returned in the response. Defaults to `BASIC` view.

Possible values:

"CONNECTOR_VERSION_VIEW_UNSPECIFIED" - CONNECTOR_VERSION_VIEW_UNSPECIFIED."CONNECTOR_VERSION_VIEW_BASIC" - Do not include role grant configs."CONNECTOR_VERSION_VIEW_FULL" - Include role grant configs.

typeProjectsLocationsProvidersConnectorsVersionsServiceadded inv0.93.0

type ProjectsLocationsProvidersConnectorsVersionsService struct {Eventtypes *ProjectsLocationsProvidersConnectorsVersionsEventtypesService// contains filtered or unexported fields}

funcNewProjectsLocationsProvidersConnectorsVersionsServiceadded inv0.93.0

func NewProjectsLocationsProvidersConnectorsVersionsService(s *Service) *ProjectsLocationsProvidersConnectorsVersionsService

func (*ProjectsLocationsProvidersConnectorsVersionsService)FetchAuthSchemaadded inv0.197.0

FetchAuthSchema: fetch and return the list of auth config variables requiredto override the connection backend auth.

  • name: Parent resource of the Connector Version, of the form:`projects/*/locations/*/providers/*/connectors/*/versions/*`.

func (*ProjectsLocationsProvidersConnectorsVersionsService)Getadded inv0.93.0

Get: Gets details of a single connector version.

  • name: Resource name of the form:`projects/*/locations/*/providers/*/connectors/*/versions/*` Only globallocation is supported for ConnectorVersion resource.

func (*ProjectsLocationsProvidersConnectorsVersionsService)Listadded inv0.93.0

List: Lists Connector Versions in a given project and location.

- parent: .

typeProjectsLocationsProvidersGetCalladded inv0.93.0

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

func (*ProjectsLocationsProvidersGetCall)Contextadded inv0.93.0

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

func (*ProjectsLocationsProvidersGetCall)Doadded inv0.93.0

Do executes the "connectors.projects.locations.providers.get" call.Any non-2xx status code is an error. Response headers are in either*Provider.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 (*ProjectsLocationsProvidersGetCall)Fieldsadded inv0.93.0

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

func (*ProjectsLocationsProvidersGetCall)Headeradded inv0.93.0

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

func (*ProjectsLocationsProvidersGetCall)IfNoneMatchadded inv0.93.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.

typeProjectsLocationsProvidersGetIamPolicyCall

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

func (*ProjectsLocationsProvidersGetIamPolicyCall)Context

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

func (*ProjectsLocationsProvidersGetIamPolicyCall)Do

Do executes the "connectors.projects.locations.providers.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 (*ProjectsLocationsProvidersGetIamPolicyCall)Fields

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

func (*ProjectsLocationsProvidersGetIamPolicyCall)Header

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

func (*ProjectsLocationsProvidersGetIamPolicyCall)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 (*ProjectsLocationsProvidersGetIamPolicyCall)OptionsRequestedPolicyVersion

func (c *ProjectsLocationsProvidersGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersionint64) *ProjectsLocationsProvidersGetIamPolicyCall

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

typeProjectsLocationsProvidersListCalladded inv0.93.0

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

func (*ProjectsLocationsProvidersListCall)Contextadded inv0.93.0

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

func (*ProjectsLocationsProvidersListCall)Doadded inv0.93.0

Do executes the "connectors.projects.locations.providers.list" call.Any non-2xx status code is an error. Response headers are in either*ListProvidersResponse.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 (*ProjectsLocationsProvidersListCall)Fieldsadded inv0.93.0

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

func (*ProjectsLocationsProvidersListCall)Headeradded inv0.93.0

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

func (*ProjectsLocationsProvidersListCall)IfNoneMatchadded inv0.93.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 (*ProjectsLocationsProvidersListCall)PageSizeadded inv0.93.0

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

func (*ProjectsLocationsProvidersListCall)PageTokenadded inv0.93.0

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

func (*ProjectsLocationsProvidersListCall)Pagesadded inv0.93.0

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.

typeProjectsLocationsProvidersService

type ProjectsLocationsProvidersService struct {Connectors *ProjectsLocationsProvidersConnectorsService// contains filtered or unexported fields}

funcNewProjectsLocationsProvidersService

func NewProjectsLocationsProvidersService(s *Service) *ProjectsLocationsProvidersService

func (*ProjectsLocationsProvidersService)Getadded inv0.93.0

Get: Gets details of a provider.

  • name: Resource name of the form: `projects/*/locations/*/providers/*` Onlyglobal location is supported for Provider resource.

func (*ProjectsLocationsProvidersService)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 (*ProjectsLocationsProvidersService)Listadded inv0.93.0

List: Lists Providers in a given project and location.

  • parent: Parent resource of the API, of the form: `projects/*/locations/*`Only global location is supported for Provider resource.

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

typeProjectsLocationsProvidersSetIamPolicyCall

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

func (*ProjectsLocationsProvidersSetIamPolicyCall)Context

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

func (*ProjectsLocationsProvidersSetIamPolicyCall)Do

Do executes the "connectors.projects.locations.providers.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 (*ProjectsLocationsProvidersSetIamPolicyCall)Fields

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

func (*ProjectsLocationsProvidersSetIamPolicyCall)Header

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

typeProjectsLocationsProvidersTestIamPermissionsCall

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

func (*ProjectsLocationsProvidersTestIamPermissionsCall)Context

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

func (*ProjectsLocationsProvidersTestIamPermissionsCall)Do

Do executes the "connectors.projects.locations.providers.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 (*ProjectsLocationsProvidersTestIamPermissionsCall)Fields

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

func (*ProjectsLocationsProvidersTestIamPermissionsCall)Header

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

typeProjectsLocationsService

type ProjectsLocationsService struct {Connections *ProjectsLocationsConnectionsServiceCustomConnectors *ProjectsLocationsCustomConnectorsServiceEndpointAttachments *ProjectsLocationsEndpointAttachmentsServiceGlobal *ProjectsLocationsGlobalServiceOperations *ProjectsLocationsOperationsServiceProviders *ProjectsLocationsProvidersService// contains filtered or unexported fields}

funcNewProjectsLocationsService

func NewProjectsLocationsService(s *Service) *ProjectsLocationsService

func (*ProjectsLocationsService)Get

Get: Gets information about a location.

- name: Resource name for the location.

func (*ProjectsLocationsService)GetRegionalSettingsadded inv0.148.0

GetRegionalSettings: GetRegionalSettings gets settings of a region.RegionalSettings is a singleton resource.

- name: The resource name of the Regional Settings.

func (*ProjectsLocationsService)GetRuntimeConfig

GetRuntimeConfig: Gets the runtimeConfig of a location. RuntimeConfig is asingleton resource for each location.

- name: Resource name of the form: `projects/*/locations/*/runtimeConfig`.

func (*ProjectsLocationsService)List

List: Lists information about the supported locations for this service.

- name: The resource that owns the locations collection, if applicable.

func (*ProjectsLocationsService)UpdateRegionalSettingsadded inv0.148.0

func (r *ProjectsLocationsService) UpdateRegionalSettings(namestring, regionalsettings *RegionalSettings) *ProjectsLocationsUpdateRegionalSettingsCall

UpdateRegionalSettings: Update the settings of a region.

  • name: Output only. Resource name of the Connection. Format:projects/{project}/locations/{location}/regionalSettings.

typeProjectsLocationsUpdateRegionalSettingsCalladded inv0.148.0

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

func (*ProjectsLocationsUpdateRegionalSettingsCall)Contextadded inv0.148.0

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

func (*ProjectsLocationsUpdateRegionalSettingsCall)Doadded inv0.148.0

Do executes the "connectors.projects.locations.updateRegionalSettings" call.Any non-2xx status code is an error. Response headers are in either*Operation.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 (*ProjectsLocationsUpdateRegionalSettingsCall)Fieldsadded inv0.148.0

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

func (*ProjectsLocationsUpdateRegionalSettingsCall)Headeradded inv0.148.0

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

func (*ProjectsLocationsUpdateRegionalSettingsCall)UpdateMaskadded inv0.148.0

UpdateMask sets the optional parameter "updateMask": Required. The list offields to update.

typeProjectsService

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

funcNewProjectsService

func NewProjectsService(s *Service) *ProjectsService

typeProvider

type Provider struct {// CreateTime: Output only. Created time.CreateTimestring `json:"createTime,omitempty"`// Description: Output only. Description of the resource.Descriptionstring `json:"description,omitempty"`// DisplayName: Output only. Display name.DisplayNamestring `json:"displayName,omitempty"`// DocumentationUri: Output only. Link to documentation page.DocumentationUristring `json:"documentationUri,omitempty"`// ExternalUri: Output only. Link to external page.ExternalUristring `json:"externalUri,omitempty"`// Labels: Output only. Resource labels to represent user-provided metadata.// Refer to cloud documentation on labels for more details.//https://cloud.google.com/compute/docs/labeling-resourcesLabels map[string]string `json:"labels,omitempty"`// LaunchStage: Output only. Flag to mark the version indicating the launch// stage.//// Possible values://   "LAUNCH_STAGE_UNSPECIFIED" - LAUNCH_STAGE_UNSPECIFIED.//   "PREVIEW" - PREVIEW.//   "GA" - GA.//   "DEPRECATED" - DEPRECATED.//   "TEST" - TEST.//   "PRIVATE_PREVIEW" - PRIVATE_PREVIEW.LaunchStagestring `json:"launchStage,omitempty"`// Name: Output only. Resource name of the Provider. Format:// projects/{project}/locations/{location}/providers/{provider} Only global// location is supported for Provider resource.Namestring `json:"name,omitempty"`// UpdateTime: Output only. Updated time.UpdateTimestring `json:"updateTime,omitempty"`// WebAssetsLocation: Output only. Cloud storage location of icons etc consumed// by UI.WebAssetsLocationstring `json:"webAssetsLocation,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:"-"`}

Provider: Provider indicates the owner who provides the connectors.

func (Provider)MarshalJSON

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

typeProvisionedResourceadded inv0.155.0

type ProvisionedResource struct {// ResourceType: Type of the resource. This can be either a GCP resource or a// custom one (e.g. another cloud provider's VM). For GCP compute resources use// singular form of the names listed in GCP compute API documentation// (https://cloud.google.com/compute/docs/reference/rest/v1/), prefixed with// 'compute-', for example: 'compute-instance', 'compute-disk',// 'compute-autoscaler'.ResourceTypestring `json:"resourceType,omitempty"`// ResourceUrl: URL identifying the resource, e.g.// "https://www.googleapis.com/compute/v1/projects/...)".ResourceUrlstring `json:"resourceUrl,omitempty"`// ForceSendFields is a list of field names (e.g. "ResourceType") 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. "ResourceType") 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:"-"`}

ProvisionedResource: Describes provisioned dataplane resources.

func (ProvisionedResource)MarshalJSONadded inv0.155.0

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

typePubSubadded inv0.220.0

type PubSub struct {// Attributes: Optional. Pub/Sub message attributes to be added to the Pub/Sub// message.Attributes map[string]string `json:"attributes,omitempty"`// ConfigVariables: Optional. Configuration for configuring the triggerConfigVariables []*ConfigVariable `json:"configVariables,omitempty"`// ProjectId: Required. The project id which has the Pub/Sub topic.ProjectIdstring `json:"projectId,omitempty"`// TopicId: Required. The topic id of the Pub/Sub topic.TopicIdstring `json:"topicId,omitempty"`// ForceSendFields is a list of field names (e.g. "Attributes") 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. "Attributes") 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:"-"`}

PubSub: Pub/Sub message includes details of the Destination Pub/Sub topic.

func (PubSub)MarshalJSONadded inv0.220.0

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

typePublishCustomConnectorVersionRequestadded inv0.211.0

type PublishCustomConnectorVersionRequest struct {// PartnerMetadata: Required. Partner metadata details for validating and// publishing the custom connector as a partner connector version.PartnerMetadata *PartnerMetadata `json:"partnerMetadata,omitempty"`// ForceSendFields is a list of field names (e.g. "PartnerMetadata") 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. "PartnerMetadata") 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:"-"`}

PublishCustomConnectorVersionRequest: Request message forConnectorsService.PublishCustomConnectorVersion

func (PublishCustomConnectorVersionRequest)MarshalJSONadded inv0.211.0

typePublishStatusadded inv0.206.0

type PublishStatus struct {// PublishState: Output only. Publish state of the custom connector.//// Possible values://   "PUBLISH_STATE_UNSPECIFIED" - State Unspecified.//   "PUBLISHED" - Connector version has been published as partner connector// version.//   "PUBLISH_IN_PROGRESS" - Connector version is in the process of being// published as partner connector version.//   "UNPUBLISHED" - Connector version has been unpublished as partner// connector versionPublishStatestring `json:"publishState,omitempty"`// PublishTime: Output only. Publish time.PublishTimestring `json:"publishTime,omitempty"`// PublishedAs: Output only. Partner connector name. Will be set on the custom// connector. Format: providers/partner/connectors//versions/PublishedAsstring `json:"publishedAs,omitempty"`// PublishedSource: Output only. Custom connector name. Will be set on the// partner connector. Format: providers/customconnectors/connectors//versions/PublishedSourcestring `json:"publishedSource,omitempty"`// ForceSendFields is a list of field names (e.g. "PublishState") 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. "PublishState") 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:"-"`}

PublishStatus: Publish status of a custom connector.

func (PublishStatus)MarshalJSONadded inv0.206.0

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

typeRefreshConnectionSchemaMetadataRequestadded inv0.106.0

type RefreshConnectionSchemaMetadataRequest struct {}

RefreshConnectionSchemaMetadataRequest: Request message forConnectorsService.RefreshConnectionSchemaMetadata.

typeRegionalSettingsadded inv0.148.0

type RegionalSettings struct {// EncryptionConfig: Optional. Regional encryption config to hold CMEK details.EncryptionConfig *EncryptionConfig `json:"encryptionConfig,omitempty"`// Name: Output only. Resource name of the Connection. Format:// projects/{project}/locations/{location}/regionalSettingsNamestring `json:"name,omitempty"`// NetworkConfig: Optional. Regional network config.NetworkConfig *NetworkConfig `json:"networkConfig,omitempty"`// Provisioned: Output only. Specifies whether the region is provisioned.Provisionedbool `json:"provisioned,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "EncryptionConfig") 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. "EncryptionConfig") 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:"-"`}

RegionalSettings: Regional Settings details.

func (RegionalSettings)MarshalJSONadded inv0.148.0

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

typeRepairEventingRequestadded inv0.131.0

type RepairEventingRequest struct {}

RepairEventingRequest: Request message for ConnectorsService.RepairEventing

typeResource

type Resource struct {// PathTemplate: Optional. Template to uniquely represent a Google Cloud// resource in a format IAM expects This is a template that can have references// to other values provided in the config variable template.PathTemplatestring `json:"pathTemplate,omitempty"`// Type: Optional. Different types of resource supported.//// Possible values://   "TYPE_UNSPECIFIED" - Value type is not specified.//   "GCP_PROJECT" - Google Cloud Project Resource.//   "GCP_RESOURCE" - Any Google Cloud Resource which is identified uniquely by// IAM.//   "GCP_SECRETMANAGER_SECRET" - Google Cloud Secret Resource.//   "GCP_SECRETMANAGER_SECRET_VERSION" - Google Cloud Secret Version Resource.Typestring `json:"type,omitempty"`// ForceSendFields is a list of field names (e.g. "PathTemplate") 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. "PathTemplate") 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:"-"`}

Resource: Resource definition

func (Resource)MarshalJSON

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

typeResourceLimitsadded inv0.139.0

type ResourceLimits struct {// Cpu: Output only. CPU limit.Cpustring `json:"cpu,omitempty"`// Memory: Output only. Memory limit.Memorystring `json:"memory,omitempty"`// ForceSendFields is a list of field names (e.g. "Cpu") 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. "Cpu") 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:"-"`}

ResourceLimits: Resource limits defined for connection pods of a givenconnector type.

func (ResourceLimits)MarshalJSONadded inv0.139.0

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

typeResourceRequestsadded inv0.139.0

type ResourceRequests struct {// Cpu: Output only. CPU request.Cpustring `json:"cpu,omitempty"`// Memory: Output only. Memory request.Memorystring `json:"memory,omitempty"`// ForceSendFields is a list of field names (e.g. "Cpu") 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. "Cpu") 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:"-"`}

ResourceRequests: Resource requests defined for connection pods of a givenconnector type.

func (ResourceRequests)MarshalJSONadded inv0.139.0

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

typeResultMetadata

type ResultMetadata struct {// DataType: The data type of the field.//// Possible values://   "DATA_TYPE_UNSPECIFIED" - Data type is not specified.//   "DATA_TYPE_INT" - DEPRECATED! Use DATA_TYPE_INTEGER.//   "DATA_TYPE_SMALLINT" - Short integer(int16) data type.//   "DATA_TYPE_DOUBLE" - Double data type.//   "DATA_TYPE_DATE" - Date data type.//   "DATA_TYPE_DATETIME" - DEPRECATED! Use DATA_TYPE_TIMESTAMP.//   "DATA_TYPE_TIME" - Time data type.//   "DATA_TYPE_STRING" - DEPRECATED! Use DATA_TYPE_VARCHAR.//   "DATA_TYPE_LONG" - DEPRECATED! Use DATA_TYPE_BIGINT.//   "DATA_TYPE_BOOLEAN" - Boolean data type.//   "DATA_TYPE_DECIMAL" - Decimal data type.//   "DATA_TYPE_UUID" - DEPRECATED! Use DATA_TYPE_VARCHAR.//   "DATA_TYPE_BLOB" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_BIT" - Bit data type.//   "DATA_TYPE_TINYINT" - Small integer(int8) data type.//   "DATA_TYPE_INTEGER" - Integer(int32) data type.//   "DATA_TYPE_BIGINT" - Long integer(int64) data type.//   "DATA_TYPE_FLOAT" - Float data type.//   "DATA_TYPE_REAL" - Real data type.//   "DATA_TYPE_NUMERIC" - Numeric data type.//   "DATA_TYPE_CHAR" - Char data type.//   "DATA_TYPE_VARCHAR" - Varchar data type.//   "DATA_TYPE_LONGVARCHAR" - Longvarchar data type.//   "DATA_TYPE_TIMESTAMP" - Timestamp data type.//   "DATA_TYPE_NCHAR" - Nchar data type.//   "DATA_TYPE_NVARCHAR" - Nvarchar data type.//   "DATA_TYPE_LONGNVARCHAR" - Longnvarchar data type.//   "DATA_TYPE_NULL" - Null data type.//   "DATA_TYPE_OTHER" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_JAVA_OBJECT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_DISTINCT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_STRUCT" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_ARRAY" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_CLOB" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_REF" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_DATALINK" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_ROWID" - UNSUPPORTED! Row id data type.//   "DATA_TYPE_BINARY" - UNSUPPORTED! Binary data type.//   "DATA_TYPE_VARBINARY" - UNSUPPORTED! Variable binary data type.//   "DATA_TYPE_LONGVARBINARY" - UNSUPPORTED! Long variable binary data type.//   "DATA_TYPE_NCLOB" - UNSUPPORTED! NCLOB data type.//   "DATA_TYPE_SQLXML" - UNSUPPORTED! SQL XML data type is not supported.//   "DATA_TYPE_REF_CURSOR" - UNSUPPORTED! Cursor reference type is not// supported.//   "DATA_TYPE_TIME_WITH_TIMEZONE" - UNSUPPORTED! Use TIME or TIMESTAMP// instead.//   "DATA_TYPE_TIMESTAMP_WITH_TIMEZONE" - UNSUPPORTED! Use TIMESTAMP instead.DataTypestring `json:"dataType,omitempty"`// DefaultValue: The following field specifies the default value of the// Parameter provided by the external system if a value is not provided.DefaultValue interface{} `json:"defaultValue,omitempty"`// Description: A brief description of the field.Descriptionstring `json:"description,omitempty"`// Field: Name of the result field.Fieldstring `json:"field,omitempty"`// JsonSchema: JsonSchema representation of this action's resultJsonSchema *JsonSchema `json:"jsonSchema,omitempty"`// Nullable: Specifies whether a null value is allowed.Nullablebool `json:"nullable,omitempty"`// ForceSendFields is a list of field names (e.g. "DataType") 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. "DataType") 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:"-"`}

ResultMetadata: Metadata of result field.

func (ResultMetadata)MarshalJSON

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

typeRetryEventSubscriptionRequestadded inv0.131.0

type RetryEventSubscriptionRequest struct {}

RetryEventSubscriptionRequest: Request message forConnectorsService.RefreshEventSubscription

typeRoleGrant

type RoleGrant struct {// HelperTextTemplate: Optional. Template that UI can use to provide helper// text to customers.HelperTextTemplatestring `json:"helperTextTemplate,omitempty"`// Principal: Optional. Principal/Identity for whom the role need to assigned.//// Possible values://   "PRINCIPAL_UNSPECIFIED" - Value type is not specified.//   "CONNECTOR_SA" - Service Account used for Connector workload identity This// is either the default service account if unspecified or Service Account// provided by Customers through BYOSA.Principalstring `json:"principal,omitempty"`// Resource: Optional. Resource on which the roles needs to be granted for the// principal.Resource *Resource `json:"resource,omitempty"`// Roles: Optional. List of roles that need to be granted.Roles []string `json:"roles,omitempty"`// ForceSendFields is a list of field names (e.g. "HelperTextTemplate") 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. "HelperTextTemplate") 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:"-"`}

RoleGrant: This configuration defines all the Cloud IAM roles that needs tobe granted to a particular Google Cloud resource for the selected principallike service account. These configurations will let UI display to customerswhat IAM roles need to be granted by them. Or these configurations can beused by the UI to render a 'grant' button to do the same on behalf of theuser.

func (RoleGrant)MarshalJSON

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

typeRuntimeActionSchema

type RuntimeActionSchema struct {// Action: Output only. Name of the action.Actionstring `json:"action,omitempty"`// Description: Output only. Brief Description of actionDescriptionstring `json:"description,omitempty"`// DisplayName: Output only. Display Name of action to be shown on client sideDisplayNamestring `json:"displayName,omitempty"`// InputJsonSchema: Output only. JsonSchema representation of this action's// input metadataInputJsonSchema *JsonSchema `json:"inputJsonSchema,omitempty"`// InputParameters: Output only. List of input parameter metadata for the// action.InputParameters []*InputParameter `json:"inputParameters,omitempty"`// InputSchemaAsString: Output only. Input schema as string.InputSchemaAsStringstring `json:"inputSchemaAsString,omitempty"`// ResultJsonSchema: Output only. JsonSchema representation of this action's// result metadataResultJsonSchema *JsonSchema `json:"resultJsonSchema,omitempty"`// ResultMetadata: Output only. List of result field metadata.ResultMetadata []*ResultMetadata `json:"resultMetadata,omitempty"`// ResultSchemaAsString: Output only. Result schema as string.ResultSchemaAsStringstring `json:"resultSchemaAsString,omitempty"`// ForceSendFields is a list of field names (e.g. "Action") 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. "Action") 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:"-"`}

RuntimeActionSchema: Schema of a runtime action.

func (RuntimeActionSchema)MarshalJSON

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

typeRuntimeConfig

type RuntimeConfig struct {// ConndSubscription: Output only. Pub/Sub subscription for connd to receive// message. E.g. projects/{project-id}/subscriptions/{topic-id}ConndSubscriptionstring `json:"conndSubscription,omitempty"`// ConndTopic: Output only. Pub/Sub topic for connd to send message. E.g.// projects/{project-id}/topics/{topic-id}ConndTopicstring `json:"conndTopic,omitempty"`// ControlPlaneSubscription: Output only. Pub/Sub subscription for control// plane to receive message. E.g.// projects/{project-id}/subscriptions/{topic-id}ControlPlaneSubscriptionstring `json:"controlPlaneSubscription,omitempty"`// ControlPlaneTopic: Output only. Pub/Sub topic for control plne to send// message. communication. E.g. projects/{project-id}/topics/{topic-id}ControlPlaneTopicstring `json:"controlPlaneTopic,omitempty"`// LocationId: Output only. location_id of the runtime location. E.g.// "us-west1".LocationIdstring `json:"locationId,omitempty"`// Name: Output only. Name of the runtimeConfig resource. Format:// projects/{project}/locations/{location}/runtimeConfigNamestring `json:"name,omitempty"`// RuntimeEndpoint: Output only. The endpoint of the connectors runtime// ingress.RuntimeEndpointstring `json:"runtimeEndpoint,omitempty"`// SchemaGcsBucket: Output only. The Cloud Storage bucket that stores// connector's schema reports.SchemaGcsBucketstring `json:"schemaGcsBucket,omitempty"`// ServiceDirectory: Output only. The name of the Service Directory service// name.ServiceDirectorystring `json:"serviceDirectory,omitempty"`// State: Output only. The state of the location.//// Possible values://   "STATE_UNSPECIFIED" - STATE_UNSPECIFIED.//   "INACTIVE" - INACTIVE.//   "ACTIVATING" - ACTIVATING.//   "ACTIVE" - ACTIVE.//   "CREATING" - CREATING.//   "DELETING" - DELETING.//   "UPDATING" - UPDATING.Statestring `json:"state,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "ConndSubscription") 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. "ConndSubscription") 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:"-"`}

RuntimeConfig: RuntimeConfig is the singleton resource of each location. Itincludes generic resource configs consumed by control plane and runtimeplane like: pub/sub topic/subscription resource name, Cloud Storage locationstoring schema etc.

func (RuntimeConfig)MarshalJSON

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

typeRuntimeEntitySchema

type RuntimeEntitySchema struct {// Entity: Output only. Name of the entity.Entitystring `json:"entity,omitempty"`// Fields: Output only. List of fields in the entity.Fields []*Field `json:"fields,omitempty"`// JsonSchema: Output only. JsonSchema representation of this entity's metadataJsonSchema *JsonSchema `json:"jsonSchema,omitempty"`// Operations: List of operations supported by this entity//// Possible values://   "OPERATION_UNSPECIFIED" - Operation unspecified.//   "LIST" - This operation means entity type supports LIST entities.//   "GET" - This operation means entity type supports GET entity.//   "CREATE" - This operation means entity type supports CREATE entity.//   "UPDATE" - This operation means entity type supports UPDATE entity.//   "DELETE" - This operation means entity type supports DELETE entity.Operations []string `json:"operations,omitempty"`// ForceSendFields is a list of field names (e.g. "Entity") 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. "Entity") 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:"-"`}

RuntimeEntitySchema: Schema of a runtime entity.

func (RuntimeEntitySchema)MarshalJSON

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

typeScheduleadded inv0.155.0

type Schedule struct {// Day: Allows to define schedule that runs specified day of the week.//// Possible values://   "DAY_OF_WEEK_UNSPECIFIED" - The day of the week is unspecified.//   "MONDAY" - Monday//   "TUESDAY" - Tuesday//   "WEDNESDAY" - Wednesday//   "THURSDAY" - Thursday//   "FRIDAY" - Friday//   "SATURDAY" - Saturday//   "SUNDAY" - SundayDaystring `json:"day,omitempty"`// Duration: Output only. Duration of the time window, set by service producer.Durationstring `json:"duration,omitempty"`// StartTime: Time within the window to start the operations.StartTime *TimeOfDay `json:"startTime,omitempty"`// ForceSendFields is a list of field names (e.g. "Day") 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. "Day") 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:"-"`}

Schedule: Configure the schedule.

func (Schedule)MarshalJSONadded inv0.155.0

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

typeSchemaRefreshConfigadded inv0.172.0

type SchemaRefreshConfig struct {// UseActionDisplayNames: Whether to use displayName for actions in UI.UseActionDisplayNamesbool `json:"useActionDisplayNames,omitempty"`// UseSynchronousSchemaRefresh: Whether to use synchronous schema refresh.UseSynchronousSchemaRefreshbool `json:"useSynchronousSchemaRefresh,omitempty"`// ForceSendFields is a list of field names (e.g. "UseActionDisplayNames") 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. "UseActionDisplayNames") 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:"-"`}

SchemaRefreshConfig: Config for connection schema refresh

func (SchemaRefreshConfig)MarshalJSONadded inv0.172.0

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

typeSearchConnectionInstanceadded inv0.176.0

type SearchConnectionInstance struct {// ActionSchema: Output only. Schema of a runtime action.ActionSchema *RuntimeActionSchema `json:"actionSchema,omitempty"`// Connection: Output only. Connection detailsConnection *Connection `json:"connection,omitempty"`// EntitySchema: Output only. Schema of a runtime entity.EntitySchema *RuntimeEntitySchema `json:"entitySchema,omitempty"`// ForceSendFields is a list of field names (e.g. "ActionSchema") 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. "ActionSchema") 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:"-"`}

SearchConnectionInstance: SearchConnectionInstance represents an instance ofconnector with specific fields

func (SearchConnectionInstance)MarshalJSONadded inv0.176.0

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

typeSearchConnectionsResponseadded inv0.176.0

type SearchConnectionsResponse struct {// Connections: A list of connectors.Connections []*SearchConnectionInstance `json:"connections,omitempty"`// NextPageToken: Optional. page_tokenNextPageTokenstring `json:"nextPageToken,omitempty"`// Unreachable: Locations that could not be reached.Unreachable []string `json:"unreachable,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:"-"`}

SearchConnectionsResponse: Response message forConnectors.SearchConnections.

func (SearchConnectionsResponse)MarshalJSONadded inv0.176.0

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

typeSecret

type Secret struct {// SecretVersion: Optional. The resource name of the secret version in the// format, format as: `projects/*/secrets/*/versions/*`.SecretVersionstring `json:"secretVersion,omitempty"`// ForceSendFields is a list of field names (e.g. "SecretVersion") 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. "SecretVersion") 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:"-"`}

Secret: Secret provides a reference to entries in Secret Manager.

func (Secret)MarshalJSON

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

typeSettingsadded inv0.115.0

type Settings struct {// Name: Output only. Resource name of the Connection. Format:// projects/{project}/locations/global/settings}Namestring `json:"name,omitempty"`// Payg: Output only. Flag indicates if user is in PayG modelPaygbool `json:"payg,omitempty"`// TenantProjectId: Output only. Tenant project id of the consumer project.TenantProjectIdstring `json:"tenantProjectId,omitempty"`// Vpcsc: Optional. Flag indicates whether vpc-sc is enabled.Vpcscbool `json:"vpcsc,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Name") 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. "Name") 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:"-"`}

Settings: Global Settings details.

func (Settings)MarshalJSONadded inv0.115.0

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

typeSloEligibilityadded inv0.155.0

type SloEligibility struct {// Eligible: Whether an instance is eligible or ineligible.Eligiblebool `json:"eligible,omitempty"`// Reason: User-defined reason for the current value of instance eligibility.// Usually, this can be directly mapped to the internal state. An empty reason// is allowed.Reasonstring `json:"reason,omitempty"`// ForceSendFields is a list of field names (e.g. "Eligible") 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. "Eligible") 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:"-"`}

SloEligibility: SloEligibility is a tuple containing eligibility value: trueif an instance is eligible for SLO calculation or false if it should beexcluded from all SLO-related calculations along with a user-defined reason.

func (SloEligibility)MarshalJSONadded inv0.155.0

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

typeSloMetadataadded inv0.155.0

type SloMetadata struct {// Nodes: Optional. List of nodes. Some producers need to use per-node metadata// to calculate SLO. This field allows such producers to publish per-node SLO// meta data, which will be consumed by SSA Eligibility Exporter and published// in the form of per node metric to Monarch.Nodes []*NodeSloMetadata `json:"nodes,omitempty"`// PerSliEligibility: Optional. Multiple per-instance SLI eligibilities which// apply for individual SLIs.PerSliEligibility *PerSliSloEligibility `json:"perSliEligibility,omitempty"`// Tier: Name of the SLO tier the Instance belongs to. This name will be// expected to match the tiers specified in the service SLO configuration.// Field is mandatory and must not be empty.Tierstring `json:"tier,omitempty"`// ForceSendFields is a list of field names (e.g. "Nodes") 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. "Nodes") 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:"-"`}

SloMetadata: SloMetadata contains resources required for proper SLOclassification of the instance.

func (SloMetadata)MarshalJSONadded inv0.155.0

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

typeSource

type Source struct {// FieldId: Field identifier. For example config variable name.FieldIdstring `json:"fieldId,omitempty"`// SourceType: Type of the source.//// Possible values://   "SOURCE_TYPE_UNSPECIFIED" - Default SOURCE.//   "CONFIG_VARIABLE" - Config Variable source type.SourceTypestring `json:"sourceType,omitempty"`// ForceSendFields is a list of field names (e.g. "FieldId") 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. "FieldId") 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:"-"`}

Source: Source to extract the backend from.

func (Source)MarshalJSON

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

typeSshPublicKeyadded inv0.84.0

type SshPublicKey struct {// CertType: Optional. Format of SSH Client cert.CertTypestring `json:"certType,omitempty"`// SshClientCert: Optional. SSH Client Cert. It should contain both public and// private key.SshClientCert *Secret `json:"sshClientCert,omitempty"`// SshClientCertPass: Optional. Password (passphrase) for ssh client// certificate if it has one.SshClientCertPass *Secret `json:"sshClientCertPass,omitempty"`// Username: Optional. The user account used to authenticate.Usernamestring `json:"username,omitempty"`// ForceSendFields is a list of field names (e.g. "CertType") 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. "CertType") 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:"-"`}

SshPublicKey: Parameters to support Ssh public key Authentication.

func (SshPublicKey)MarshalJSONadded inv0.84.0

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

typeSslConfigadded inv0.112.0

type SslConfig struct {// AdditionalVariables: Optional. Additional SSL related field valuesAdditionalVariables []*ConfigVariable `json:"additionalVariables,omitempty"`// ClientCertType: Optional. Type of Client Cert (PEM/JKS/.. etc.)//// Possible values://   "CERT_TYPE_UNSPECIFIED" - Cert type unspecified.//   "PEM" - Privacy Enhanced Mail (PEM) TypeClientCertTypestring `json:"clientCertType,omitempty"`// ClientCertificate: Optional. Client CertificateClientCertificate *Secret `json:"clientCertificate,omitempty"`// ClientPrivateKey: Optional. Client Private KeyClientPrivateKey *Secret `json:"clientPrivateKey,omitempty"`// ClientPrivateKeyPass: Optional. Secret containing the passphrase protecting// the Client Private KeyClientPrivateKeyPass *Secret `json:"clientPrivateKeyPass,omitempty"`// PrivateServerCertificate: Optional. Private Server Certificate. Needs to be// specified if trust model is `PRIVATE`.PrivateServerCertificate *Secret `json:"privateServerCertificate,omitempty"`// ServerCertType: Optional. Type of Server Cert (PEM/JKS/.. etc.)//// Possible values://   "CERT_TYPE_UNSPECIFIED" - Cert type unspecified.//   "PEM" - Privacy Enhanced Mail (PEM) TypeServerCertTypestring `json:"serverCertType,omitempty"`// TrustModel: Optional. Trust Model of the SSL connection//// Possible values://   "PUBLIC" - Public Trust Model. Takes the Default Java trust store.//   "PRIVATE" - Private Trust Model. Takes custom/private trust store.//   "INSECURE" - Insecure Trust Model. Accept all certificates.TrustModelstring `json:"trustModel,omitempty"`// Type: Optional. Controls the ssl type for the given connector version.//// Possible values://   "SSL_TYPE_UNSPECIFIED" - No SSL configuration required.//   "TLS" - TLS Handshake//   "MTLS" - mutual TLS (MTLS) HandshakeTypestring `json:"type,omitempty"`// UseSsl: Optional. Bool for enabling SSLUseSslbool `json:"useSsl,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalVariables") 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. "AdditionalVariables") 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:"-"`}

SslConfig: SSL Configuration of a connection

func (SslConfig)MarshalJSONadded inv0.112.0

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

typeSslConfigTemplateadded inv0.112.0

type SslConfigTemplate struct {// AdditionalVariables: Any additional fields that need to be renderedAdditionalVariables []*ConfigVariableTemplate `json:"additionalVariables,omitempty"`// ClientCertType: List of supported Client Cert Types//// Possible values://   "CERT_TYPE_UNSPECIFIED" - Cert type unspecified.//   "PEM" - Privacy Enhanced Mail (PEM) TypeClientCertType []string `json:"clientCertType,omitempty"`// IsTlsMandatory: Boolean for determining if the connector version mandates// TLS.IsTlsMandatorybool `json:"isTlsMandatory,omitempty"`// ServerCertType: List of supported Server Cert Types//// Possible values://   "CERT_TYPE_UNSPECIFIED" - Cert type unspecified.//   "PEM" - Privacy Enhanced Mail (PEM) TypeServerCertType []string `json:"serverCertType,omitempty"`// SslType: Controls the ssl type for the given connector version//// Possible values://   "SSL_TYPE_UNSPECIFIED" - No SSL configuration required.//   "TLS" - TLS Handshake//   "MTLS" - mutual TLS (MTLS) HandshakeSslTypestring `json:"sslType,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalVariables") 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. "AdditionalVariables") 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:"-"`}

SslConfigTemplate: Ssl config details of a connector version

func (SslConfigTemplate)MarshalJSONadded inv0.112.0

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

typeStandardActionadded inv0.191.0

type StandardAction struct {// Name: Name of the standard action.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") 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. "Name") 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:"-"`}

StandardAction: Standard action

func (StandardAction)MarshalJSONadded inv0.191.0

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

typeStandardEntityadded inv0.191.0

type StandardEntity struct {// Name: Name of the standard entity.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Name") 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. "Name") 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:"-"`}

StandardEntity: Standard entity

func (StandardEntity)MarshalJSONadded inv0.191.0

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

typeStatus

type Status struct {// Code: The status code, which should be an enum value of google.rpc.Code.Codeint64 `json:"code,omitempty"`// Details: A list of messages that carry the error details. There is a common// set of message types for APIs to use.Details []googleapi.RawMessage `json:"details,omitempty"`// Message: A developer-facing error message, which should be in English. Any// user-facing error message should be localized and sent in the// google.rpc.Status.details field, or localized by the client.Messagestring `json:"message,omitempty"`// ForceSendFields is a list of field names (e.g. "Code") 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. "Code") 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:"-"`}

Status: The `Status` type defines a logical error model that is suitable fordifferent programming environments, including REST APIs and RPC APIs. It isused by gRPC (https://github.com/grpc). Each `Status` message contains threepieces of data: error code, error message, and error details. You can findout more about this error model and how to work with it in the API DesignGuide (https://cloud.google.com/apis/design/errors).

func (Status)MarshalJSON

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

typeSupportedRuntimeFeatures

type SupportedRuntimeFeatures struct {// ActionApis: Specifies if the connector supports action apis like// 'executeAction'.ActionApisbool `json:"actionApis,omitempty"`// AsyncOperations: Specifies if the connector supports async long running// operations.AsyncOperationsbool `json:"asyncOperations,omitempty"`// EntityApis: Specifies if the connector supports entity apis like// 'createEntity'.EntityApisbool `json:"entityApis,omitempty"`// SqlQuery: Specifies if the connector supports 'ExecuteSqlQuery' operation.SqlQuerybool `json:"sqlQuery,omitempty"`// ForceSendFields is a list of field names (e.g. "ActionApis") 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. "ActionApis") 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:"-"`}

SupportedRuntimeFeatures: Supported runtime features of a connector version.

func (SupportedRuntimeFeatures)MarshalJSON

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

typeTimeOfDayadded inv0.155.0

type TimeOfDay struct {// Hours: Hours of a day in 24 hour format. Must be greater than or equal to 0// and typically must be less than or equal to 23. An API may choose to allow// the value "24:00:00" for scenarios like business closing time.Hoursint64 `json:"hours,omitempty"`// Minutes: Minutes of an hour. Must be greater than or equal to 0 and less// than or equal to 59.Minutesint64 `json:"minutes,omitempty"`// Nanos: Fractions of seconds, in nanoseconds. Must be greater than or equal// to 0 and less than or equal to 999,999,999.Nanosint64 `json:"nanos,omitempty"`// Seconds: Seconds of a minute. Must be greater than or equal to 0 and// typically must be less than or equal to 59. An API may allow the value 60 if// it allows leap-seconds.Secondsint64 `json:"seconds,omitempty"`// ForceSendFields is a list of field names (e.g. "Hours") 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. "Hours") 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:"-"`}

TimeOfDay: Represents a time of day. The date and time zone are either notsignificant or are specified elsewhere. An API may choose to allow leapseconds. Related types are google.type.Date and `google.protobuf.Timestamp`.

func (TimeOfDay)MarshalJSONadded inv0.155.0

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

typeTrafficShapingConfigadded inv0.225.0

type TrafficShapingConfig struct {// Duration: Required. * The duration over which the API call quota limits are// calculated. This duration is used to define the time window for evaluating// if the number of API calls made by a user is within the allowed quota// limits. For example: - To define a quota sampled over 16 seconds, set// `seconds` to 16 - To define a quota sampled over 5 minutes, set `seconds` to// 300 (5 * 60) - To define a quota sampled over 1 day, set `seconds` to 86400// (24 * 60 * 60) and so on. It is important to note that this duration is not// the time the quota is valid for, but rather the time window over which the// quota is evaluated. For example, if the quota is 100 calls per 10 seconds,// then this duration field would be set to 10 seconds.Durationstring `json:"duration,omitempty"`// QuotaLimit: Required. Maximum number of api calls allowed.QuotaLimitint64 `json:"quotaLimit,omitempty,string"`// ForceSendFields is a list of field names (e.g. "Duration") 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. "Duration") 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:"-"`}

TrafficShapingConfig: * TrafficShapingConfig defines the configuration forshaping API traffic by specifying a quota limit and the duration over whichthis limit is enforced. This configuration helps to control and manage therate at which API calls are made on the client side, preventing serviceoverload on the backend. For example: - if the quota limit is 100 calls per10 seconds, then the message would be: { quota_limit: 100 duration: {seconds: 10 } } - if the quota limit is 100 calls per 5 minutes, then themessage would be: { quota_limit: 100 duration: { seconds: 300 } } - if thequota limit is 10000 calls per day, then the message would be: {quota_limit: 10000 duration: { seconds: 86400 } and so on.

func (TrafficShapingConfig)MarshalJSONadded inv0.225.0

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

typeUpdatePolicyadded inv0.155.0

type UpdatePolicy struct {// Channel: Optional. Relative scheduling channel applied to resource.//// Possible values://   "UPDATE_CHANNEL_UNSPECIFIED" - Unspecified channel.//   "EARLIER" - Early channel within a customer project.//   "LATER" - Later channel within a customer project.//   "WEEK1" - ! ! The follow channels can ONLY be used if you adopt the new MW// system! ! ! NOTE: all WEEK channels are assumed to be under a weekly window.// ! There is currently no dedicated channel definitions for Daily windows. !// If you use Daily window, the system will assume a 1d (24Hours) advanced !// notification period b/w EARLY and LATER. ! We may consider support more// flexible daily channel specifications in ! the future. WEEK1 == EARLIER with// minimum 7d advanced notification. {7d, 14d} The system will treat them// equally and will use WEEK1 whenever it can. New customers are encouraged to// use this channel annotation.//   "WEEK2" - WEEK2 == LATER with minimum 14d advanced notification {14d,// 21d}.//   "WEEK5" - WEEK5 == 40d support. minimum 35d advanced notification {35d,// 42d}.Channelstring `json:"channel,omitempty"`// DenyMaintenancePeriods: Deny Maintenance Period that is applied to resource// to indicate when maintenance is forbidden. The protocol supports// zero-to-many such periods, but the current SLM Rollout implementation only// supports zero-to-one.DenyMaintenancePeriods []*DenyMaintenancePeriod `json:"denyMaintenancePeriods,omitempty"`// Window: Optional. Maintenance window that is applied to resources covered by// this policy.Window *MaintenanceWindow `json:"window,omitempty"`// ForceSendFields is a list of field names (e.g. "Channel") 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. "Channel") 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:"-"`}

UpdatePolicy: Maintenance policy applicable to instance updates.

func (UpdatePolicy)MarshalJSONadded inv0.155.0

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

typeUserPassword

type UserPassword struct {// Password: Optional. Secret version reference containing the password.Password *Secret `json:"password,omitempty"`// Username: Optional. 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:"-"`}

UserPassword: Parameters to support Username and Password Authentication.

func (UserPassword)MarshalJSON

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

typeValidateCustomConnectorSpecRequestadded inv0.170.0

type ValidateCustomConnectorSpecRequest struct {// ServiceAccount: Required. Service account to access the spec from Google// Cloud Storage.ServiceAccountstring `json:"serviceAccount,omitempty"`// SpecLocation: Required. Location of the custom connector spec. The location// can be either a public url like `https://public-url.com/spec` Or a Google// Cloud Storage location like `gs:///`SpecLocationstring `json:"specLocation,omitempty"`// SpecType: Required. Spec type of the custom connector spec.//// Possible values://   "CUSTOM_CONNECTOR_TYPE_UNSPECIFIED" - Connector type is not specified.//   "OPEN_API" - OpenAPI connector.//   "PROTO" - Proto connector.//   "SDK" - SDK connector.SpecTypestring `json:"specType,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:"-"`}

ValidateCustomConnectorSpecRequest: Request message forConnectorsService.ValidateCustomConnectorSpec

func (ValidateCustomConnectorSpecRequest)MarshalJSONadded inv0.170.0

typeValidateCustomConnectorSpecResponseadded inv0.170.0

type ValidateCustomConnectorSpecResponse struct {// ErrorMessage: Error message. The spec is valid if the error message is// empty.ErrorMessagestring `json:"errorMessage,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "ErrorMessage") 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. "ErrorMessage") 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:"-"`}

ValidateCustomConnectorSpecResponse: Response message forConnectorsService.ValidateCustomConnectorSpec

func (ValidateCustomConnectorSpecResponse)MarshalJSONadded inv0.170.0

typeVpcscConfigadded inv0.242.0

type VpcscConfig struct {// DefaultAllowlistedHost: The list of allowlisted FQDNs for VPCSC.DefaultAllowlistedHost []string `json:"defaultAllowlistedHost,omitempty"`// DisableFirewallVpcscFlow: Whether to disable firewall VPCSC flow.DisableFirewallVpcscFlowbool `json:"disableFirewallVpcscFlow,omitempty"`// ForceSendFields is a list of field names (e.g. "DefaultAllowlistedHost") 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. "DefaultAllowlistedHost") 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:"-"`}

VpcscConfig: This configuration provides VPCSC config for a connector.

func (VpcscConfig)MarshalJSONadded inv0.242.0

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

typeWebhookDataadded inv0.170.0

type WebhookData struct {// AdditionalVariables: Output only. Additional webhook related field values.AdditionalVariables []*ConfigVariable `json:"additionalVariables,omitempty"`// CreateTime: Output only. Timestamp when the webhook was created.CreateTimestring `json:"createTime,omitempty"`// Id: Output only. ID to uniquely identify webhook.Idstring `json:"id,omitempty"`// Name: Output only. Name of the WebhookNamestring `json:"name,omitempty"`// NextRefreshTime: Output only. Next webhook refresh time. Will be null if// refresh is not supported.NextRefreshTimestring `json:"nextRefreshTime,omitempty"`// UpdateTime: Output only. Timestamp when the webhook was last updated.UpdateTimestring `json:"updateTime,omitempty"`// ForceSendFields is a list of field names (e.g. "AdditionalVariables") 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. "AdditionalVariables") 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:"-"`}

WebhookData: WebhookData has details of webhook configuration.

func (WebhookData)MarshalJSONadded inv0.170.0

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

typeWebhookSubscriptionsadded inv0.206.0

type WebhookSubscriptions struct {// WebhookData: Output only. Webhook data.WebhookData []*WebhookData `json:"webhookData,omitempty"`// ForceSendFields is a list of field names (e.g. "WebhookData") 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. "WebhookData") 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:"-"`}

WebhookSubscriptions: WebhookSubscriptions has details of webhooksubscriptions.

func (WebhookSubscriptions)MarshalJSONadded inv0.206.0

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

typeWeeklyCycleadded inv0.155.0

type WeeklyCycle struct {// Schedule: User can specify multiple windows in a week. Minimum of 1 window.Schedule []*Schedule `json:"schedule,omitempty"`// ForceSendFields is a list of field names (e.g. "Schedule") 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. "Schedule") 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:"-"`}

WeeklyCycle: Time window specified for weekly operations.

func (WeeklyCycle)MarshalJSONadded inv0.155.0

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

typeWithdrawCustomConnectorVersionRequestadded inv0.211.0

type WithdrawCustomConnectorVersionRequest struct {}

WithdrawCustomConnectorVersionRequest: Request message forConnectorsService.WithdrawCustomConnectorVersion

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