cloudbuild

package
v0.0.0-...-ff3b5ee Latest Latest
Warning

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

Go to latest
Published: Mar 12, 2024 License: BSD-3-Clause Imports: 16 Imported by: 0

Documentation

Overview

Package cloudbuild provides access to the Cloud Build API.

For product documentation, see: https://cloud.google.com/cloud-build/docs/

Library status

These client libraries are officially supported by Google. However, this library is considered complete and is in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features.

When possible, we recommend using our newer [Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go) that are still actively being worked and iterated on.

Creating a client

Usage example:

import "google.golang.org/api/cloudbuild/v2"
...
ctx := context.Background()
cloudbuildService, err := cloudbuild.NewService(ctx)

In this example, Google Application Default Credentials are used for authentication. For information on how to create and obtain Application Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials.

Other authentication options

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

cloudbuildService, err := cloudbuild.NewService(ctx, option.WithAPIKey("AIza..."))

To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow, use google.golang.org/api/option.WithTokenSource:

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

See google.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

type AuditConfig

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.
	Service string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "AuditLogConfigs") to
	// include in API requests with the JSON null value. By default, fields
	// with empty values are omitted from API requests. However, any field
	// with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

AuditConfig: Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple 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" ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com` from DATA_WRITE logging.

func (*AuditConfig) MarshalJSON

func (s *AuditConfig) MarshalJSON() ([]byte, error)

type AuditLogConfig

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 list
	LogType string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ExemptedMembers") to
	// include in API requests with the JSON null value. By default, fields
	// with empty values are omitted from API requests. However, any field
	// with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

AuditLogConfig: Provides the configuration for logging a type of permissions. 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, while exempting jose@example.com from DATA_READ logging.

func (*AuditLogConfig) MarshalJSON

func (s *AuditLogConfig) MarshalJSON() ([]byte, error)

type BatchCreateRepositoriesRequest

type BatchCreateRepositoriesRequest struct {
	// Requests: Required. The request messages specifying the repositories
	// to create.
	Requests []*CreateRepositoryRequest `json:"requests,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Requests") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Requests") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

BatchCreateRepositoriesRequest: Message for creating repositoritories in batch.

func (*BatchCreateRepositoriesRequest) MarshalJSON

func (s *BatchCreateRepositoriesRequest) MarshalJSON() ([]byte, error)

type BatchCreateRepositoriesResponse

type BatchCreateRepositoriesResponse struct {
	// Repositories: Repository resources created.
	Repositories []*Repository `json:"repositories,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Repositories") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Repositories") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

BatchCreateRepositoriesResponse: Message for response of creating repositories in batch.

func (*BatchCreateRepositoriesResponse) MarshalJSON

func (s *BatchCreateRepositoriesResponse) MarshalJSON() ([]byte, error)

type Binding

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}/subject/{subject_attribute_value}`: A single identity in a
	// workforce identity pool. *
	// `principalSet://iam.googleapis.com/locations/global/workforcePools/{po
	// ol_id}/group/{group_id}`: All workforce identities in a group. *
	// `principalSet://iam.googleapis.com/locations/global/workforcePools/{po
	// ol_id}/attribute.{attribute_name}/{attribute_value}`: All workforce
	// identities with a specific attribute value. *
	// `principalSet://iam.googleapis.com/locations/global/workforcePools/{po
	// ol_id}/*`: All identities in a workforce identity pool. *
	// `principal://iam.googleapis.com/projects/{project_number}/locations/gl
	// obal/workloadIdentityPools/{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}/{at
	// tribute_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/workforcePool
	// s/{pool_id}/subject/{subject_attribute_value}`: Deleted single
	// identity in a workforce identity pool. For example,
	// `deleted:principal://iam.googleapis.com/locations/global/workforcePool
	// s/my-pool-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).
	Role string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Condition") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

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

func (*Binding) MarshalJSON

func (s *Binding) MarshalJSON() ([]byte, error)

type BitbucketCloudConfig

type BitbucketCloudConfig struct {
	// AuthorizerCredential: Required. An access token with the `webhook`,
	// `repository`, `repository:admin` and `pullrequest` scope access. It
	// can be either a workspace, project or repository access token. It's
	// recommended to use a system account to generate these credentials.
	AuthorizerCredential *UserCredential `json:"authorizerCredential,omitempty"`

	// ReadAuthorizerCredential: Required. An access token with the
	// `repository` access. It can be either a workspace, project or
	// repository access token. It's recommended to use a system account to
	// generate the credentials.
	ReadAuthorizerCredential *UserCredential `json:"readAuthorizerCredential,omitempty"`

	// WebhookSecretSecretVersion: Required. SecretManager resource
	// containing the webhook secret used to verify webhook events,
	// formatted as `projects/*/secrets/*/versions/*`.
	WebhookSecretSecretVersion string `json:"webhookSecretSecretVersion,omitempty"`

	// Workspace: Required. The Bitbucket Cloud Workspace ID to be connected
	// to Google Cloud Platform.
	Workspace string `json:"workspace,omitempty"`

	// ForceSendFields is a list of field names (e.g.
	// "AuthorizerCredential") to unconditionally include in API requests.
	// By default, fields with empty or default values are omitted from API
	// requests. However, any non-pointer, non-interface field appearing in
	// ForceSendFields will be sent to the server regardless of whether the
	// field is empty or not. This may be used to include empty fields in
	// Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "AuthorizerCredential") to
	// include in API requests with the JSON null value. By default, fields
	// with empty values are omitted from API requests. However, any field
	// with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

BitbucketCloudConfig: Configuration for connections to Bitbucket Cloud.

func (*BitbucketCloudConfig) MarshalJSON

func (s *BitbucketCloudConfig) MarshalJSON() ([]byte, error)

type BitbucketDataCenterConfig

type BitbucketDataCenterConfig struct {
	// AuthorizerCredential: Required. A http access token with the
	// `REPO_ADMIN` scope access.
	AuthorizerCredential *UserCredential `json:"authorizerCredential,omitempty"`

	// HostUri: Required. The URI of the Bitbucket Data Center instance or
	// cluster this connection is for.
	HostUri string `json:"hostUri,omitempty"`

	// ReadAuthorizerCredential: Required. A http access token with the
	// `REPO_READ` access.
	ReadAuthorizerCredential *UserCredential `json:"readAuthorizerCredential,omitempty"`

	// ServerVersion: Output only. Version of the Bitbucket Data Center
	// running on the `host_uri`.
	ServerVersion string `json:"serverVersion,omitempty"`

	// ServiceDirectoryConfig: Optional. Configuration for using Service
	// Directory to privately connect to a Bitbucket Data Center. This
	// should only be set if the Bitbucket Data Center is hosted on-premises
	// and not reachable by public internet. If this field is left empty,
	// calls to the Bitbucket Data Center will be made over the public
	// internet.
	ServiceDirectoryConfig *GoogleDevtoolsCloudbuildV2ServiceDirectoryConfig `json:"serviceDirectoryConfig,omitempty"`

	// SslCa: Optional. SSL certificate to use for requests to the Bitbucket
	// Data Center.
	SslCa string `json:"sslCa,omitempty"`

	// WebhookSecretSecretVersion: Required. Immutable. SecretManager
	// resource containing the webhook secret used to verify webhook events,
	// formatted as `projects/*/secrets/*/versions/*`.
	WebhookSecretSecretVersion string `json:"webhookSecretSecretVersion,omitempty"`

	// ForceSendFields is a list of field names (e.g.
	// "AuthorizerCredential") to unconditionally include in API requests.
	// By default, fields with empty or default values are omitted from API
	// requests. However, any non-pointer, non-interface field appearing in
	// ForceSendFields will be sent to the server regardless of whether the
	// field is empty or not. This may be used to include empty fields in
	// Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "AuthorizerCredential") to
	// include in API requests with the JSON null value. By default, fields
	// with empty values are omitted from API requests. However, any field
	// with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

BitbucketDataCenterConfig: Configuration for connections to Bitbucket Data Center.

func (*BitbucketDataCenterConfig) MarshalJSON

func (s *BitbucketDataCenterConfig) MarshalJSON() ([]byte, error)

type CancelOperationRequest

type CancelOperationRequest struct {
}

CancelOperationRequest: The request message for Operations.CancelOperation.

type Capabilities

type Capabilities struct {
	// Add: Optional. Added capabilities +optional
	Add []string `json:"add,omitempty"`

	// Drop: Optional. Removed capabilities +optional
	Drop []string `json:"drop,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Add") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Add") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Capabilities: Capabilities adds and removes POSIX capabilities from running containers.

func (*Capabilities) MarshalJSON

func (s *Capabilities) MarshalJSON() ([]byte, error)

type ChildStatusReference

type ChildStatusReference struct {
	// Name: Name is the name of the TaskRun or Run this is referencing.
	Name string `json:"name,omitempty"`

	// PipelineTaskName: PipelineTaskName is the name of the PipelineTask
	// this is referencing.
	PipelineTaskName string `json:"pipelineTaskName,omitempty"`

	// Type: Output only. Type of the child reference.
	//
	// Possible values:
	//   "TYPE_UNSPECIFIED" - Default enum type; should not be used.
	//   "TASK_RUN" - TaskRun.
	Type string `json:"type,omitempty"`

	// WhenExpressions: WhenExpressions is the list of checks guarding the
	// execution of the PipelineTask
	WhenExpressions []*WhenExpression `json:"whenExpressions,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Name") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

ChildStatusReference: ChildStatusReference is used to point to the statuses of individual TaskRuns and Runs within this PipelineRun.

func (*ChildStatusReference) MarshalJSON

func (s *ChildStatusReference) MarshalJSON() ([]byte, error)

type Connection

type Connection struct {
	// Annotations: Allows clients to store small amounts of arbitrary data.
	Annotations map[string]string `json:"annotations,omitempty"`

	// BitbucketCloudConfig: Configuration for connections to Bitbucket
	// Cloud.
	BitbucketCloudConfig *BitbucketCloudConfig `json:"bitbucketCloudConfig,omitempty"`

	// BitbucketDataCenterConfig: Configuration for connections to Bitbucket
	// Data Center.
	BitbucketDataCenterConfig *BitbucketDataCenterConfig `json:"bitbucketDataCenterConfig,omitempty"`

	// CreateTime: Output only. Server assigned timestamp for when the
	// connection was created.
	CreateTime string `json:"createTime,omitempty"`

	// Disabled: If disabled is set to true, functionality is disabled for
	// this connection. Repository based API methods and webhooks processing
	// for repositories in this connection will be disabled.
	Disabled bool `json:"disabled,omitempty"`

	// Etag: This checksum is computed by the server based on the value of
	// other fields, and may be sent on update and delete requests to ensure
	// the client has an up-to-date value before proceeding.
	Etag string `json:"etag,omitempty"`

	// GithubConfig: Configuration for connections to github.com.
	GithubConfig *GitHubConfig `json:"githubConfig,omitempty"`

	// GithubEnterpriseConfig: Configuration for connections to an instance
	// of GitHub Enterprise.
	GithubEnterpriseConfig *GoogleDevtoolsCloudbuildV2GitHubEnterpriseConfig `json:"githubEnterpriseConfig,omitempty"`

	// GitlabConfig: Configuration for connections to gitlab.com or an
	// instance of GitLab Enterprise.
	GitlabConfig *GoogleDevtoolsCloudbuildV2GitLabConfig `json:"gitlabConfig,omitempty"`

	// InstallationState: Output only. Installation state of the Connection.
	InstallationState *InstallationState `json:"installationState,omitempty"`

	// Name: Immutable. The resource name of the connection, in the format
	// `projects/{project}/locations/{location}/connections/{connection_id}`.
	Name string `json:"name,omitempty"`

	// Reconciling: Output only. Set to true when the connection is being
	// set up or updated in the background.
	Reconciling bool `json:"reconciling,omitempty"`

	// UpdateTime: Output only. Server assigned timestamp for when the
	// connection was updated.
	UpdateTime string `json:"updateTime,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "Annotations") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Annotations") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Connection: A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center, Bitbucket Cloud or GitLab.

func (*Connection) MarshalJSON

func (s *Connection) MarshalJSON() ([]byte, error)

type CreateRepositoryRequest

type CreateRepositoryRequest struct {
	// Parent: Required. The connection to contain the repository. If the
	// request is part of a BatchCreateRepositoriesRequest, this field
	// should be empty or match the parent specified there.
	Parent string `json:"parent,omitempty"`

	// Repository: Required. The repository to create.
	Repository *Repository `json:"repository,omitempty"`

	// RepositoryId: Required. The ID to use for the repository, which will
	// become the final component of the repository's resource name. This ID
	// should be unique in the connection. Allows alphanumeric characters
	// and any of -._~%!$&'()*+,;=@.
	RepositoryId string `json:"repositoryId,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Parent") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Parent") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

CreateRepositoryRequest: Message for creating a Repository.

func (*CreateRepositoryRequest) MarshalJSON

func (s *CreateRepositoryRequest) MarshalJSON() ([]byte, error)

type EmbeddedTask

type EmbeddedTask struct {
	// Annotations: User annotations. See
	// https://google.aip.dev/128#annotations
	Annotations map[string]string `json:"annotations,omitempty"`

	// TaskSpec: Spec to instantiate this TaskRun.
	TaskSpec *TaskSpec `json:"taskSpec,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Annotations") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Annotations") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

EmbeddedTask: EmbeddedTask defines a Task that is embedded in a Pipeline.

func (*EmbeddedTask) MarshalJSON

func (s *EmbeddedTask) MarshalJSON() ([]byte, error)

type Empty

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 defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }

type EmptyDirVolumeSource

type EmptyDirVolumeSource struct {
}

EmptyDirVolumeSource: Represents an empty Volume source.

type EnvVar

type EnvVar struct {
	// Name: Name of the environment variable.
	Name string `json:"name,omitempty"`

	// Value: Value of the environment variable.
	Value string `json:"value,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Name") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

EnvVar: Environment variable.

func (*EnvVar) MarshalJSON

func (s *EnvVar) MarshalJSON() ([]byte, error)

type ExecAction

type ExecAction struct {
	// Command: Optional. Command is the command line to execute inside the
	// container, the working directory for the command is root ('/') in the
	// container's filesystem. The command is simply exec'd, it is not run
	// inside a shell, so traditional shell instructions ('|', etc) won't
	// work. To use a shell, you need to explicitly call out to that shell.
	// Exit status of 0 is treated as live/healthy and non-zero is
	// unhealthy. +optional
	Command []string `json:"command,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Command") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Command") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

ExecAction: ExecAction describes a "run in container" action.

func (*ExecAction) MarshalJSON

func (s *ExecAction) MarshalJSON() ([]byte, error)

type Expr

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.
	Description string `json:"description,omitempty"`

	// Expression: Textual representation of an expression in Common
	// Expression Language syntax.
	Expression string `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.
	Location string `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.
	Title string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Description") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Expr: Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor 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 message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

func (*Expr) MarshalJSON

func (s *Expr) MarshalJSON() ([]byte, error)

type FetchGitRefsResponse

type FetchGitRefsResponse struct {
	// NextPageToken: A token identifying a page of results the server
	// should return.
	NextPageToken string `json:"nextPageToken,omitempty"`

	// RefNames: Name of the refs fetched.
	RefNames []string `json:"refNames,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "NextPageToken") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "NextPageToken") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

FetchGitRefsResponse: Response for fetching git refs

func (*FetchGitRefsResponse) MarshalJSON

func (s *FetchGitRefsResponse) MarshalJSON() ([]byte, error)

type FetchLinkableRepositoriesResponse

type FetchLinkableRepositoriesResponse struct {
	// NextPageToken: A token identifying a page of results the server
	// should return.
	NextPageToken string `json:"nextPageToken,omitempty"`

	// Repositories: repositories ready to be created.
	Repositories []*Repository `json:"repositories,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "NextPageToken") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "NextPageToken") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

FetchLinkableRepositoriesResponse: Response message for FetchLinkableRepositories.

func (*FetchLinkableRepositoriesResponse) MarshalJSON

func (s *FetchLinkableRepositoriesResponse) MarshalJSON() ([]byte, error)

type FetchReadTokenRequest

type FetchReadTokenRequest struct {
}

FetchReadTokenRequest: Message for fetching SCM read token.

type FetchReadTokenResponse

type FetchReadTokenResponse struct {
	// ExpirationTime: Expiration timestamp. Can be empty if unknown or
	// non-expiring.
	ExpirationTime string `json:"expirationTime,omitempty"`

	// Token: The token content.
	Token string `json:"token,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "ExpirationTime") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ExpirationTime") to
	// include in API requests with the JSON null value. By default, fields
	// with empty values are omitted from API requests. However, any field
	// with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

FetchReadTokenResponse: Message for responding to get read token.

func (*FetchReadTokenResponse) MarshalJSON

func (s *FetchReadTokenResponse) MarshalJSON() ([]byte, error)

type FetchReadWriteTokenRequest

type FetchReadWriteTokenRequest struct {
}

FetchReadWriteTokenRequest: Message for fetching SCM read/write token.

type FetchReadWriteTokenResponse

type FetchReadWriteTokenResponse struct {
	// ExpirationTime: Expiration timestamp. Can be empty if unknown or
	// non-expiring.
	ExpirationTime string `json:"expirationTime,omitempty"`

	// Token: The token content.
	Token string `json:"token,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "ExpirationTime") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ExpirationTime") to
	// include in API requests with the JSON null value. By default, fields
	// with empty values are omitted from API requests. However, any field
	// with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

FetchReadWriteTokenResponse: Message for responding to get read/write token.

func (*FetchReadWriteTokenResponse) MarshalJSON

func (s *FetchReadWriteTokenResponse) MarshalJSON() ([]byte, error)

type GitHubConfig

type GitHubConfig struct {
	// AppInstallationId: GitHub App installation id.
	AppInstallationId int64 `json:"appInstallationId,omitempty,string"`

	// AuthorizerCredential: OAuth credential of the account that authorized
	// the Cloud Build GitHub App. It is recommended to use a robot account
	// instead of a human user account. The OAuth token must be tied to the
	// Cloud Build GitHub App.
	AuthorizerCredential *OAuthCredential `json:"authorizerCredential,omitempty"`

	// ForceSendFields is a list of field names (e.g. "AppInstallationId")
	// to unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "AppInstallationId") to
	// include in API requests with the JSON null value. By default, fields
	// with empty values are omitted from API requests. However, any field
	// with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

GitHubConfig: Configuration for connections to github.com.

func (*GitHubConfig) MarshalJSON

func (s *GitHubConfig) MarshalJSON() ([]byte, error)

type GoogleDevtoolsCloudbuildV2Condition

type GoogleDevtoolsCloudbuildV2Condition struct {
	// LastTransitionTime: LastTransitionTime is the last time the condition
	// transitioned from one status to another.
	LastTransitionTime string `json:"lastTransitionTime,omitempty"`

	// Message: A human readable message indicating details about the
	// transition.
	Message string `json:"message,omitempty"`

	// Reason: The reason for the condition's last transition.
	Reason string `json:"reason,omitempty"`

	// Severity: Severity with which to treat failures of this type of
	// condition.
	//
	// Possible values:
	//   "SEVERITY_UNSPECIFIED" - Default enum type; should not be used.
	//   "WARNING" - Severity is warning.
	//   "INFO" - Severity is informational only.
	Severity string `json:"severity,omitempty"`

	// Status: Status of the condition.
	//
	// Possible values:
	//   "UNKNOWN" - Default enum type indicating execution is still
	// ongoing.
	//   "TRUE" - Success
	//   "FALSE" - Failure
	Status string `json:"status,omitempty"`

	// Type: Type of condition.
	Type string `json:"type,omitempty"`

	// ForceSendFields is a list of field names (e.g. "LastTransitionTime")
	// to unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "LastTransitionTime") to
	// include in API requests with the JSON null value. By default, fields
	// with empty values are omitted from API requests. However, any field
	// with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

GoogleDevtoolsCloudbuildV2Condition: Conditions defines a readiness condition for a Knative resource.

func (*GoogleDevtoolsCloudbuildV2Condition) MarshalJSON

func (s *GoogleDevtoolsCloudbuildV2Condition) MarshalJSON() ([]byte, error)

type GoogleDevtoolsCloudbuildV2GitHubEnterpriseConfig

type GoogleDevtoolsCloudbuildV2GitHubEnterpriseConfig struct {
	// ApiKey: Required. API Key used for authentication of webhook events.
	ApiKey string `json:"apiKey,omitempty"`

	// AppId: Id of the GitHub App created from the manifest.
	AppId int64 `json:"appId,omitempty,string"`

	// AppInstallationId: ID of the installation of the GitHub App.
	AppInstallationId int64 `json:"appInstallationId,omitempty,string"`

	// AppSlug: The URL-friendly name of the GitHub App.
	AppSlug string `json:"appSlug,omitempty"`

	// HostUri: Required. The URI of the GitHub Enterprise host this
	// connection is for.
	HostUri string `json:"hostUri,omitempty"`

	// PrivateKeySecretVersion: SecretManager resource containing the
	// private key of the GitHub App, formatted as
	// `projects/*/secrets/*/versions/*`.
	PrivateKeySecretVersion string `json:"privateKeySecretVersion,omitempty"`

	// ServerVersion: Output only. GitHub Enterprise version installed at
	// the host_uri.
	ServerVersion string `json:"serverVersion,omitempty"`

	// ServiceDirectoryConfig: Configuration for using Service Directory to
	// privately connect to a GitHub Enterprise server. This should only be
	// set if the GitHub Enterprise server is hosted on-premises and not
	// reachable by public internet. If this field is left empty, calls to
	// the GitHub Enterprise server will be made over the public internet.
	ServiceDirectoryConfig *GoogleDevtoolsCloudbuildV2ServiceDirectoryConfig `json:"serviceDirectoryConfig,omitempty"`

	// SslCa: SSL certificate to use for requests to GitHub Enterprise.
	SslCa string `json:"sslCa,omitempty"`

	// WebhookSecretSecretVersion: SecretManager resource containing the
	// webhook secret of the GitHub App, formatted as
	// `projects/*/secrets/*/versions/*`.
	WebhookSecretSecretVersion string `json:"webhookSecretSecretVersion,omitempty"`

	// ForceSendFields is a list of field names (e.g. "ApiKey") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ApiKey") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

GoogleDevtoolsCloudbuildV2GitHubEnterpriseConfig: Configuration for connections to an instance of GitHub Enterprise.

func (*GoogleDevtoolsCloudbuildV2GitHubEnterpriseConfig) MarshalJSON

type GoogleDevtoolsCloudbuildV2GitLabConfig

type GoogleDevtoolsCloudbuildV2GitLabConfig struct {
	// AuthorizerCredential: Required. A GitLab personal access token with
	// the `api` scope access.
	AuthorizerCredential *UserCredential `json:"authorizerCredential,omitempty"`

	// HostUri: The URI of the GitLab Enterprise host this connection is
	// for. If not specified, the default value is https://gitlab.com.
	HostUri string `json:"hostUri,omitempty"`

	// ReadAuthorizerCredential: Required. A GitLab personal access token
	// with the minimum `read_api` scope access.
	ReadAuthorizerCredential *UserCredential `json:"readAuthorizerCredential,omitempty"`

	// ServerVersion: Output only. Version of the GitLab Enterprise server
	// running on the `host_uri`.
	ServerVersion string `json:"serverVersion,omitempty"`

	// ServiceDirectoryConfig: Configuration for using Service Directory to
	// privately connect to a GitLab Enterprise server. This should only be
	// set if the GitLab Enterprise server is hosted on-premises and not
	// reachable by public internet. If this field is left empty, calls to
	// the GitLab Enterprise server will be made over the public internet.
	ServiceDirectoryConfig *GoogleDevtoolsCloudbuildV2ServiceDirectoryConfig `json:"serviceDirectoryConfig,omitempty"`

	// SslCa: SSL certificate to use for requests to GitLab Enterprise.
	SslCa string `json:"sslCa,omitempty"`

	// WebhookSecretSecretVersion: Required. Immutable. SecretManager
	// resource containing the webhook secret of a GitLab Enterprise
	// project, formatted as `projects/*/secrets/*/versions/*`.
	WebhookSecretSecretVersion string `json:"webhookSecretSecretVersion,omitempty"`

	// ForceSendFields is a list of field names (e.g.
	// "AuthorizerCredential") to unconditionally include in API requests.
	// By default, fields with empty or default values are omitted from API
	// requests. However, any non-pointer, non-interface field appearing in
	// ForceSendFields will be sent to the server regardless of whether the
	// field is empty or not. This may be used to include empty fields in
	// Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "AuthorizerCredential") to
	// include in API requests with the JSON null value. By default, fields
	// with empty values are omitted from API requests. However, any field
	// with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

GoogleDevtoolsCloudbuildV2GitLabConfig: Configuration for connections to gitlab.com or an instance of GitLab Enterprise.

func (*GoogleDevtoolsCloudbuildV2GitLabConfig) MarshalJSON

func (s *GoogleDevtoolsCloudbuildV2GitLabConfig) MarshalJSON() ([]byte, error)

type GoogleDevtoolsCloudbuildV2OperationMetadata

type GoogleDevtoolsCloudbuildV2OperationMetadata struct {
	// ApiVersion: Output only. API version used to start the operation.
	ApiVersion string `json:"apiVersion,omitempty"`

	// CreateTime: Output only. The time the operation was created.
	CreateTime string `json:"createTime,omitempty"`

	// EndTime: Output only. The time the operation finished running.
	EndTime string `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`.
	RequestedCancellation bool `json:"requestedCancellation,omitempty"`

	// StatusMessage: Output only. Human-readable status of the operation,
	// if any.
	StatusMessage string `json:"statusMessage,omitempty"`

	// Target: Output only. Server-defined resource path for the target of
	// the operation.
	Target string `json:"target,omitempty"`

	// Verb: Output only. Name of the verb executed by the operation.
	Verb string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ApiVersion") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

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

func (*GoogleDevtoolsCloudbuildV2OperationMetadata) MarshalJSON

type GoogleDevtoolsCloudbuildV2ServiceDirectoryConfig

type GoogleDevtoolsCloudbuildV2ServiceDirectoryConfig struct {
	// Service: Required. The Service Directory service name. Format:
	// projects/{project}/locations/{location}/namespaces/{namespace}/service
	// s/{service}.
	Service string `json:"service,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Service") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Service") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

GoogleDevtoolsCloudbuildV2ServiceDirectoryConfig: ServiceDirectoryConfig represents Service Directory configuration for a connection.

func (*GoogleDevtoolsCloudbuildV2ServiceDirectoryConfig) MarshalJSON

type HttpBody

type HttpBody struct {
	// ContentType: The HTTP Content-Type header value specifying the
	// content type of the body.
	ContentType string `json:"contentType,omitempty"`

	// Data: The HTTP request/response body as raw binary.
	Data string `json:"data,omitempty"`

	// Extensions: Application specific response metadata. Must be set in
	// the first response for streaming APIs.
	Extensions []googleapi.RawMessage `json:"extensions,omitempty"`

	// ForceSendFields is a list of field names (e.g. "ContentType") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ContentType") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

HttpBody: Message that represents an arbitrary HTTP body. It should only be used for payload formats that can't be represented as JSON, such as raw binary or an HTML page. This message can be used both in streaming and non-streaming API methods in the request as well as the response. It can be used as a top-level request field, which is convenient if one wants to extract parameters from either the URL or HTTP template into the request fields and also want access to the raw HTTP body. Example: message GetResourceRequest { // A unique request id. string request_id = 1; // The raw HTTP body is bound to this field. google.api.HttpBody http_body = 2; } service ResourceService { rpc GetResource(GetResourceRequest) returns (google.api.HttpBody); rpc UpdateResource(google.api.HttpBody) returns (google.protobuf.Empty); } Example with streaming methods: service CaldavService { rpc GetCalendar(stream google.api.HttpBody) returns (stream google.api.HttpBody); rpc UpdateCalendar(stream google.api.HttpBody) returns (stream google.api.HttpBody); } Use of this type only changes how the request and response bodies are handled, all other features will continue to work unchanged.

func (*HttpBody) MarshalJSON

func (s *HttpBody) MarshalJSON() ([]byte, error)

type InstallationState

type InstallationState struct {
	// ActionUri: Output only. Link to follow for next action. Empty string
	// if the installation is already complete.
	ActionUri string `json:"actionUri,omitempty"`

	// Message: Output only. Message of what the user should do next to
	// continue the installation. Empty string if the installation is
	// already complete.
	Message string `json:"message,omitempty"`

	// Stage: Output only. Current step of the installation process.
	//
	// Possible values:
	//   "STAGE_UNSPECIFIED" - No stage specified.
	//   "PENDING_CREATE_APP" - Only for GitHub Enterprise. An App creation
	// has been requested. The user needs to confirm the creation in their
	// GitHub enterprise host.
	//   "PENDING_USER_OAUTH" - User needs to authorize the GitHub (or
	// Enterprise) App via OAuth.
	//   "PENDING_INSTALL_APP" - User needs to follow the link to install
	// the GitHub (or Enterprise) App.
	//   "COMPLETE" - Installation process has been completed.
	Stage string `json:"stage,omitempty"`

	// ForceSendFields is a list of field names (e.g. "ActionUri") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ActionUri") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

InstallationState: Describes stage and necessary actions to be taken by the user to complete the installation. Used for GitHub and GitHub Enterprise based connections.

func (*InstallationState) MarshalJSON

func (s *InstallationState) MarshalJSON() ([]byte, error)

type ListConnectionsResponse

type ListConnectionsResponse struct {
	// Connections: The list of Connections.
	Connections []*Connection `json:"connections,omitempty"`

	// NextPageToken: A token identifying a page of results the server
	// should return.
	NextPageToken string `json:"nextPageToken,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "Connections") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Connections") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

ListConnectionsResponse: Message for response to listing Connections.

func (*ListConnectionsResponse) MarshalJSON

func (s *ListConnectionsResponse) MarshalJSON() ([]byte, error)

type ListLocationsResponse

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.
	NextPageToken string `json:"nextPageToken,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "Locations") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Locations") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

ListLocationsResponse: The response message for Locations.ListLocations.

func (*ListLocationsResponse) MarshalJSON

func (s *ListLocationsResponse) MarshalJSON() ([]byte, error)

type ListRepositoriesResponse

type ListRepositoriesResponse struct {
	// NextPageToken: A token identifying a page of results the server
	// should return.
	NextPageToken string `json:"nextPageToken,omitempty"`

	// Repositories: The list of Repositories.
	Repositories []*Repository `json:"repositories,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "NextPageToken") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "NextPageToken") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

ListRepositoriesResponse: Message for response to listing Repositories.

func (*ListRepositoriesResponse) MarshalJSON

func (s *ListRepositoriesResponse) MarshalJSON() ([]byte, error)

type Location

type Location struct {
	// DisplayName: The friendly name for this location, typically a nearby
	// city name. For example, "Tokyo".
	DisplayName string `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".
	LocationId string `json:"locationId,omitempty"`

	// Metadata: Service-specific metadata. For example the available
	// capacity at the given location.
	Metadata googleapi.RawMessage `json:"metadata,omitempty"`

	// Name: Resource name for the location, which may vary between
	// implementations. For example:
	// "projects/example-project/locations/us-east1"
	Name string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "DisplayName") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Location: A resource that represents a Google Cloud location.

func (*Location) MarshalJSON

func (s *Location) MarshalJSON() ([]byte, error)

type OAuthCredential

type OAuthCredential struct {
	// OauthTokenSecretVersion: A SecretManager resource containing the
	// OAuth token that authorizes the Cloud Build connection. Format:
	// `projects/*/secrets/*/versions/*`.
	OauthTokenSecretVersion string `json:"oauthTokenSecretVersion,omitempty"`

	// Username: Output only. The username associated to this token.
	Username string `json:"username,omitempty"`

	// ForceSendFields is a list of field names (e.g.
	// "OauthTokenSecretVersion") to unconditionally include in API
	// requests. By default, fields with empty or default values are omitted
	// from API requests. However, any non-pointer, non-interface field
	// appearing in ForceSendFields will be sent to the server regardless of
	// whether the field is empty or not. This may be used to include empty
	// fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "OauthTokenSecretVersion")
	// to include in API requests with the JSON null value. By default,
	// fields with empty values are omitted from API requests. However, any
	// field with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

OAuthCredential: Represents an OAuth token of the account that authorized the Connection, and associated metadata.

func (*OAuthCredential) MarshalJSON

func (s *OAuthCredential) MarshalJSON() ([]byte, error)

type Operation

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.
	Done bool `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.
	Metadata googleapi.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}`.
	Name string `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`.
	Response googleapi.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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Done") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

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

func (*Operation) MarshalJSON

func (s *Operation) MarshalJSON() ([]byte, error)

type OperationMetadata

type OperationMetadata struct {
	// ApiVersion: Output only. API version used to start the operation.
	ApiVersion string `json:"apiVersion,omitempty"`

	// CancelRequested: Output only. Identifies whether the user has
	// requested cancellation of the operation. Operations that have been
	// cancelled successfully have Operation.error value with a
	// google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
	CancelRequested bool `json:"cancelRequested,omitempty"`

	// CreateTime: Output only. The time the operation was created.
	CreateTime string `json:"createTime,omitempty"`

	// EndTime: Output only. The time the operation finished running.
	EndTime string `json:"endTime,omitempty"`

	// StatusDetail: Output only. Human-readable status of the operation, if
	// any.
	StatusDetail string `json:"statusDetail,omitempty"`

	// Target: Output only. Server-defined resource path for the target of
	// the operation.
	Target string `json:"target,omitempty"`

	// Verb: Output only. Name of the verb executed by the operation.
	Verb string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ApiVersion") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

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

func (*OperationMetadata) MarshalJSON

func (s *OperationMetadata) MarshalJSON() ([]byte, error)

type Param

type Param struct {
	// Name: Name of the parameter.
	Name string `json:"name,omitempty"`

	// Value: Value of the parameter.
	Value *ParamValue `json:"value,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Name") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Param: Param defined with name and value. PipelineRef can be used to refer to a specific instance of a Pipeline.

func (*Param) MarshalJSON

func (s *Param) MarshalJSON() ([]byte, error)

type ParamSpec

type ParamSpec struct {
	// Default: The default value a parameter takes if no input value is
	// supplied
	Default *ParamValue `json:"default,omitempty"`

	// Description: Description of the ParamSpec
	Description string `json:"description,omitempty"`

	// Name: Name of the ParamSpec
	Name string `json:"name,omitempty"`

	// Type: Type of ParamSpec
	//
	// Possible values:
	//   "TYPE_UNSPECIFIED" - Default enum type; should not be used.
	//   "STRING" - Default
	//   "ARRAY" - Arrary type.
	Type string `json:"type,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Default") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Default") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

ParamSpec: ParamSpec defines parameters needed beyond typed inputs (such as resources). Parameter values are provided by users as inputs on a TaskRun or PipelineRun.

func (*ParamSpec) MarshalJSON

func (s *ParamSpec) MarshalJSON() ([]byte, error)

type ParamValue

type ParamValue struct {
	// ArrayVal: Value of the parameter if type is array.
	ArrayVal []string `json:"arrayVal,omitempty"`

	// StringVal: Value of the parameter if type is string.
	StringVal string `json:"stringVal,omitempty"`

	// Type: Type of parameter.
	//
	// Possible values:
	//   "TYPE_UNSPECIFIED" - Default enum type; should not be used.
	//   "STRING" - Default
	//   "ARRAY" - Array type
	Type string `json:"type,omitempty"`

	// ForceSendFields is a list of field names (e.g. "ArrayVal") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ArrayVal") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

ParamValue: Parameter value.

func (*ParamValue) MarshalJSON

func (s *ParamValue) MarshalJSON() ([]byte, error)

type PipelineRef

type PipelineRef struct {
	// Name: Name of the Pipeline.
	Name string `json:"name,omitempty"`

	// Params: Params contains the parameters used to identify the
	// referenced Tekton resource. Example entries might include "repo" or
	// "path" but the set of params ultimately depends on the chosen
	// resolver.
	Params []*Param `json:"params,omitempty"`

	// Resolver: Resolver is the name of the resolver that should perform
	// resolution of the referenced Tekton resource.
	//
	// Possible values:
	//   "RESOLVER_NAME_UNSPECIFIED" - Default enum type; should not be
	// used.
	//   "BUNDLES" - Bundles resolver.
	// https://tekton.dev/docs/pipelines/bundle-resolver/
	//   "GCB_REPO" - GCB repo resolver.
	//   "GIT" - Simple Git resolver.
	// https://tekton.dev/docs/pipelines/git-resolver/
	Resolver string `json:"resolver,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Name") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

PipelineRef: PipelineRef can be used to refer to a specific instance of a Pipeline.

func (*PipelineRef) MarshalJSON

func (s *PipelineRef) MarshalJSON() ([]byte, error)

type PipelineResult

type PipelineResult struct {
	// Description: Output only. Description of the result.
	Description string `json:"description,omitempty"`

	// Name: Output only. Name of the result.
	Name string `json:"name,omitempty"`

	// Type: Output only. The type of data that the result holds.
	//
	// Possible values:
	//   "TYPE_UNSPECIFIED" - Default enum type; should not be used.
	//   "STRING" - Default
	//   "ARRAY" - Array type
	//   "OBJECT" - Object type
	Type string `json:"type,omitempty"`

	// Value: Output only. Value of the result.
	Value *ResultValue `json:"value,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Description") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

PipelineResult: A value produced by a Pipeline.

func (*PipelineResult) MarshalJSON

func (s *PipelineResult) MarshalJSON() ([]byte, error)

type PipelineRun

type PipelineRun struct {
	// Annotations: User annotations. See
	// https://google.aip.dev/128#annotations
	Annotations map[string]string `json:"annotations,omitempty"`

	// ChildReferences: Output only. List of TaskRun and Run names and
	// PipelineTask names for children of this PipelineRun.
	ChildReferences []*ChildStatusReference `json:"childReferences,omitempty"`

	// CompletionTime: Output only. Time the pipeline completed.
	CompletionTime string `json:"completionTime,omitempty"`

	// Conditions: Output only. Kubernetes Conditions convention for
	// PipelineRun status and error.
	Conditions []*GoogleDevtoolsCloudbuildV2Condition `json:"conditions,omitempty"`

	// CreateTime: Output only. Time at which the request to create the
	// `PipelineRun` was received.
	CreateTime string `json:"createTime,omitempty"`

	// Etag: Needed for declarative-friendly resources.
	Etag string `json:"etag,omitempty"`

	// FinallyStartTime: Output only. FinallyStartTime is when all
	// non-finally tasks have been completed and only finally tasks are
	// being executed. +optional
	FinallyStartTime string `json:"finallyStartTime,omitempty"`

	// GcbParams: Output only. GCB default params.
	GcbParams map[string]string `json:"gcbParams,omitempty"`

	// Name: Output only. The `PipelineRun` name with format
	// `projects/{project}/locations/{location}/pipelineRuns/{pipeline_run}`
	Name string `json:"name,omitempty"`

	// Params: Params is a list of parameter names and values.
	Params []*Param `json:"params,omitempty"`

	// PipelineRef: PipelineRef refer to a specific instance of a Pipeline.
	PipelineRef *PipelineRef `json:"pipelineRef,omitempty"`

	// PipelineRunStatus: Pipelinerun status the user can provide. Used for
	// cancellation.
	//
	// Possible values:
	//   "PIPELINE_RUN_STATUS_UNSPECIFIED" - Default enum type; should not
	// be used.
	//   "PIPELINE_RUN_CANCELLED" - Cancelled status.
	PipelineRunStatus string `json:"pipelineRunStatus,omitempty"`

	// PipelineSpec: PipelineSpec defines the desired state of Pipeline.
	PipelineSpec *PipelineSpec `json:"pipelineSpec,omitempty"`

	// Provenance: Optional. Provenance configuration.
	Provenance *Provenance `json:"provenance,omitempty"`

	// Record: Output only. The `Record` of this `PipelineRun`. Format:
	// `projects/{project}/locations/{location}/results/{result_id}/records/{
	// record_id}`
	Record string `json:"record,omitempty"`

	// ResolvedPipelineSpec: Output only. The exact PipelineSpec used to
	// instantiate the run.
	ResolvedPipelineSpec *PipelineSpec `json:"resolvedPipelineSpec,omitempty"`

	// Results: Optional. Output only. List of results written out by the
	// pipeline's containers
	Results []*PipelineRunResult `json:"results,omitempty"`

	// Security: Optional. Security configuration.
	Security *Security `json:"security,omitempty"`

	// ServiceAccount: Service account used in the Pipeline.
	ServiceAccount string `json:"serviceAccount,omitempty"`

	// SkippedTasks: Output only. List of tasks that were skipped due to
	// when expressions evaluating to false.
	SkippedTasks []*SkippedTask `json:"skippedTasks,omitempty"`

	// StartTime: Output only. Time the pipeline is actually started.
	StartTime string `json:"startTime,omitempty"`

	// Timeouts: Time after which the Pipeline times out. Currently three
	// keys are accepted in the map pipeline, tasks and finally with
	// Timeouts.pipeline >= Timeouts.tasks + Timeouts.finally
	Timeouts *TimeoutFields `json:"timeouts,omitempty"`

	// Uid: Output only. A unique identifier for the `PipelineRun`.
	Uid string `json:"uid,omitempty"`

	// UpdateTime: Output only. Time at which the request to update the
	// `PipelineRun` was received.
	UpdateTime string `json:"updateTime,omitempty"`

	// Worker: Optional. Worker configuration.
	Worker *Worker `json:"worker,omitempty"`

	// WorkerPool: Output only. The WorkerPool used to run this PipelineRun.
	WorkerPool string `json:"workerPool,omitempty"`

	// Workflow: Output only. The Workflow used to create this PipelineRun.
	Workflow string `json:"workflow,omitempty"`

	// Workspaces: Workspaces is a list of WorkspaceBindings from volumes to
	// workspaces.
	Workspaces []*WorkspaceBinding `json:"workspaces,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Annotations") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Annotations") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

PipelineRun: Message describing PipelineRun object

func (*PipelineRun) MarshalJSON

func (s *PipelineRun) MarshalJSON() ([]byte, error)

type PipelineRunResult

type PipelineRunResult struct {
	// Name: Output only. Name of the TaskRun
	Name string `json:"name,omitempty"`

	// Value: Output only. Value of the result.
	Value *ResultValue `json:"value,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Name") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

PipelineRunResult: PipelineRunResult used to describe the results of a pipeline

func (*PipelineRunResult) MarshalJSON

func (s *PipelineRunResult) MarshalJSON() ([]byte, error)

type PipelineSpec

type PipelineSpec struct {
	// FinallyTasks: List of Tasks that execute just before leaving the
	// Pipeline i.e. either after all Tasks are finished executing
	// successfully or after a failure which would result in ending the
	// Pipeline.
	FinallyTasks []*PipelineTask `json:"finallyTasks,omitempty"`

	// GeneratedYaml: Output only. auto-generated yaml that is output only
	// for display purpose for workflows using pipeline_spec, used by
	// UI/gcloud cli for Workflows.
	GeneratedYaml string `json:"generatedYaml,omitempty"`

	// Params: List of parameters.
	Params []*ParamSpec `json:"params,omitempty"`

	// Results: Optional. Output only. List of results written out by the
	// pipeline's containers
	Results []*PipelineResult `json:"results,omitempty"`

	// Tasks: List of Tasks that execute when this Pipeline is run.
	Tasks []*PipelineTask `json:"tasks,omitempty"`

	// Workspaces: Workspaces declares a set of named workspaces that are
	// expected to be provided by a PipelineRun.
	Workspaces []*PipelineWorkspaceDeclaration `json:"workspaces,omitempty"`

	// ForceSendFields is a list of field names (e.g. "FinallyTasks") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "FinallyTasks") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

PipelineSpec: PipelineSpec defines the desired state of Pipeline.

func (*PipelineSpec) MarshalJSON

func (s *PipelineSpec) MarshalJSON() ([]byte, error)

type PipelineTask

type PipelineTask struct {
	// Name: Name of the task.
	Name string `json:"name,omitempty"`

	// Params: Params is a list of parameter names and values.
	Params []*Param `json:"params,omitempty"`

	// Retries: Retries represents how many times this task should be
	// retried in case of task failure.
	Retries int64 `json:"retries,omitempty"`

	// RunAfter: RunAfter is the list of PipelineTask names that should be
	// executed before this Task executes. (Used to force a specific
	// ordering in graph execution.)
	RunAfter []string `json:"runAfter,omitempty"`

	// TaskRef: Reference to a specific instance of a task.
	TaskRef *TaskRef `json:"taskRef,omitempty"`

	// TaskSpec: Spec to instantiate this TaskRun.
	TaskSpec *EmbeddedTask `json:"taskSpec,omitempty"`

	// Timeout: Time after which the TaskRun times out. Defaults to 1 hour.
	// Specified TaskRun timeout should be less than 24h.
	Timeout string `json:"timeout,omitempty"`

	// WhenExpressions: Conditions that need to be true for the task to run.
	WhenExpressions []*WhenExpression `json:"whenExpressions,omitempty"`

	// Workspaces: Workspaces maps workspaces from the pipeline spec to the
	// workspaces declared in the Task.
	Workspaces []*WorkspacePipelineTaskBinding `json:"workspaces,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Name") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

PipelineTask: PipelineTask defines a task in a Pipeline.

func (*PipelineTask) MarshalJSON

func (s *PipelineTask) MarshalJSON() ([]byte, error)

type PipelineWorkspaceDeclaration

type PipelineWorkspaceDeclaration struct {
	// Description: Description is a human readable string describing how
	// the workspace will be used in the Pipeline.
	Description string `json:"description,omitempty"`

	// Name: Name is the name of a workspace to be provided by a
	// PipelineRun.
	Name string `json:"name,omitempty"`

	// Optional: Optional marks a Workspace as not being required in
	// PipelineRuns. By default this field is false and so declared
	// workspaces are required.
	Optional bool `json:"optional,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Description") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

PipelineWorkspaceDeclaration: Workspaces declares a set of named workspaces that are expected to be provided by a PipelineRun.

func (*PipelineWorkspaceDeclaration) MarshalJSON

func (s *PipelineWorkspaceDeclaration) MarshalJSON() ([]byte, error)

type Policy

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.
	Etag string `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).
	Version int64 `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "AuditConfigs") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Policy: An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources. A `Policy` is a collection of `bindings`. A `binding` binds one or more `members`, or principals, to a single `role`. Principals can be user accounts, service accounts, Google groups, and domains (such as G Suite). A `role` is a named list of permissions; each `role` can be an IAM predefined role or a user-created custom role. For some types of Google Cloud resources, a `binding` can also specify a `condition`, which is a logical expression that allows access to a resource only if the expression evaluates to `true`. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the IAM documentation (https://cloud.google.com/iam/help/conditions/resource-policies). **JSON example:** ``` { "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.com role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.com role: roles/resourcemanager.organizationViewer 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 ``` For a description of IAM and its features, see the IAM documentation (https://cloud.google.com/iam/docs/).

func (*Policy) MarshalJSON

func (s *Policy) MarshalJSON() ([]byte, error)

type Probe

type Probe struct {
	// Exec: Optional. Exec specifies the action to take. +optional
	Exec *ExecAction `json:"exec,omitempty"`

	// PeriodSeconds: Optional. How often (in seconds) to perform the probe.
	// Default to 10 seconds. Minimum value is 1. +optional
	PeriodSeconds int64 `json:"periodSeconds,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Exec") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Exec") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Probe: Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

func (*Probe) MarshalJSON

func (s *Probe) MarshalJSON() ([]byte, error)

type ProjectsLocationsConnectionsCreateCall

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

func (*ProjectsLocationsConnectionsCreateCall) ConnectionId

ConnectionId sets the optional parameter "connectionId": Required. The ID to use for the Connection, which will become the final component of the Connection's resource name. Names must be unique per-project per-location. Allows alphanumeric characters and any of -._~%!$&'()*+,;=@.

func (*ProjectsLocationsConnectionsCreateCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsCreateCall) Do

Do executes the "cloudbuild.projects.locations.connections.create" call. Exactly one of *Operation or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Operation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsCreateCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsCreateCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

type ProjectsLocationsConnectionsDeleteCall

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

func (*ProjectsLocationsConnectionsDeleteCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsDeleteCall) Do

Do executes the "cloudbuild.projects.locations.connections.delete" call. Exactly one of *Operation or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Operation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsDeleteCall) Etag

Etag sets the optional parameter "etag": The current etag of the connection. If an etag is provided and does not match the current etag of the connection, deletion will be blocked and an ABORTED error will be returned.

func (*ProjectsLocationsConnectionsDeleteCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsDeleteCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsDeleteCall) ValidateOnly

ValidateOnly sets the optional parameter "validateOnly": If set, validate the request, but do not actually post it.

type ProjectsLocationsConnectionsFetchLinkableRepositoriesCall

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

func (*ProjectsLocationsConnectionsFetchLinkableRepositoriesCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsFetchLinkableRepositoriesCall) Do

Do executes the "cloudbuild.projects.locations.connections.fetchLinkableRepositories" call. Exactly one of *FetchLinkableRepositoriesResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *FetchLinkableRepositoriesResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsFetchLinkableRepositoriesCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsFetchLinkableRepositoriesCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsFetchLinkableRepositoriesCall) IfNoneMatch

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

func (*ProjectsLocationsConnectionsFetchLinkableRepositoriesCall) PageSize

PageSize sets the optional parameter "pageSize": Number of results to return in the list. Default to 20.

func (*ProjectsLocationsConnectionsFetchLinkableRepositoriesCall) PageToken

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

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

type ProjectsLocationsConnectionsGetCall

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

func (*ProjectsLocationsConnectionsGetCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsGetCall) Do

Do executes the "cloudbuild.projects.locations.connections.get" call. Exactly one of *Connection or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Connection.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsGetCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsGetCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsGetCall) IfNoneMatch

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

type ProjectsLocationsConnectionsGetIamPolicyCall

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

func (*ProjectsLocationsConnectionsGetIamPolicyCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsGetIamPolicyCall) Do

Do executes the "cloudbuild.projects.locations.connections.getIamPolicy" call. Exactly one of *Policy or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Policy.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsGetIamPolicyCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsGetIamPolicyCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsGetIamPolicyCall) IfNoneMatch

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

func (*ProjectsLocationsConnectionsGetIamPolicyCall) OptionsRequestedPolicyVersion

func (c *ProjectsLocationsConnectionsGetIamPolicyCall) OptionsRequestedPolicyVersion(optionsRequestedPolicyVersion int64) *ProjectsLocationsConnectionsGetIamPolicyCall

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

type ProjectsLocationsConnectionsListCall

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

func (*ProjectsLocationsConnectionsListCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsListCall) Do

Do executes the "cloudbuild.projects.locations.connections.list" call. Exactly one of *ListConnectionsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListConnectionsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsListCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsListCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsListCall) IfNoneMatch

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

func (*ProjectsLocationsConnectionsListCall) PageSize

PageSize sets the optional parameter "pageSize": Number of results to return in the list.

func (*ProjectsLocationsConnectionsListCall) PageToken

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

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.

type ProjectsLocationsConnectionsPatchCall

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

func (*ProjectsLocationsConnectionsPatchCall) AllowMissing

AllowMissing sets the optional parameter "allowMissing": If set to true, and the connection is not found a new connection will be created. In this situation `update_mask` is ignored. The creation will succeed only if the input connection has all the necessary information (e.g a github_config with both user_oauth_token and installation_id properties).

func (*ProjectsLocationsConnectionsPatchCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsPatchCall) Do

Do executes the "cloudbuild.projects.locations.connections.patch" call. Exactly one of *Operation or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Operation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsPatchCall) Etag

Etag sets the optional parameter "etag": The current etag of the connection. If an etag is provided and does not match the current etag of the connection, update will be blocked and an ABORTED error will be returned.

func (*ProjectsLocationsConnectionsPatchCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsPatchCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsPatchCall) UpdateMask

UpdateMask sets the optional parameter "updateMask": The list of fields to be updated.

type ProjectsLocationsConnectionsProcessWebhookCall

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

func (*ProjectsLocationsConnectionsProcessWebhookCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsProcessWebhookCall) Do

Do executes the "cloudbuild.projects.locations.connections.processWebhook" call. Exactly one of *Empty or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Empty.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsProcessWebhookCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsProcessWebhookCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsProcessWebhookCall) WebhookKey

WebhookKey sets the optional parameter "webhookKey": Arbitrary additional key to find the maching repository for a webhook event if needed.

type ProjectsLocationsConnectionsRepositoriesAccessReadTokenCall

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

func (*ProjectsLocationsConnectionsRepositoriesAccessReadTokenCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsRepositoriesAccessReadTokenCall) Do

Do executes the "cloudbuild.projects.locations.connections.repositories.accessReadToken" call. Exactly one of *FetchReadTokenResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *FetchReadTokenResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsRepositoriesAccessReadTokenCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsRepositoriesAccessReadTokenCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

type ProjectsLocationsConnectionsRepositoriesAccessReadWriteTokenCall

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

func (*ProjectsLocationsConnectionsRepositoriesAccessReadWriteTokenCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsRepositoriesAccessReadWriteTokenCall) Do

Do executes the "cloudbuild.projects.locations.connections.repositories.accessReadWriteToken" call. Exactly one of *FetchReadWriteTokenResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *FetchReadWriteTokenResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsRepositoriesAccessReadWriteTokenCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsRepositoriesAccessReadWriteTokenCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

type ProjectsLocationsConnectionsRepositoriesBatchCreateCall

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

func (*ProjectsLocationsConnectionsRepositoriesBatchCreateCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsRepositoriesBatchCreateCall) Do

Do executes the "cloudbuild.projects.locations.connections.repositories.batchCreate" call. Exactly one of *Operation or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Operation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsRepositoriesBatchCreateCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsRepositoriesBatchCreateCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

type ProjectsLocationsConnectionsRepositoriesCreateCall

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

func (*ProjectsLocationsConnectionsRepositoriesCreateCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsRepositoriesCreateCall) Do

Do executes the "cloudbuild.projects.locations.connections.repositories.create" call. Exactly one of *Operation or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Operation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsRepositoriesCreateCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsRepositoriesCreateCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsRepositoriesCreateCall) RepositoryId

RepositoryId sets the optional parameter "repositoryId": Required. The ID to use for the repository, which will become the final component of the repository's resource name. This ID should be unique in the connection. Allows alphanumeric characters and any of -._~%!$&'()*+,;=@.

type ProjectsLocationsConnectionsRepositoriesDeleteCall

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

func (*ProjectsLocationsConnectionsRepositoriesDeleteCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsRepositoriesDeleteCall) Do

Do executes the "cloudbuild.projects.locations.connections.repositories.delete" call. Exactly one of *Operation or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Operation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsRepositoriesDeleteCall) Etag

Etag sets the optional parameter "etag": The current etag of the repository. If an etag is provided and does not match the current etag of the repository, deletion will be blocked and an ABORTED error will be returned.

func (*ProjectsLocationsConnectionsRepositoriesDeleteCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsRepositoriesDeleteCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsRepositoriesDeleteCall) ValidateOnly

ValidateOnly sets the optional parameter "validateOnly": If set, validate the request, but do not actually post it.

type ProjectsLocationsConnectionsRepositoriesFetchGitRefsCall

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

func (*ProjectsLocationsConnectionsRepositoriesFetchGitRefsCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsRepositoriesFetchGitRefsCall) Do

Do executes the "cloudbuild.projects.locations.connections.repositories.fetchGitRefs" call. Exactly one of *FetchGitRefsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *FetchGitRefsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsRepositoriesFetchGitRefsCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsRepositoriesFetchGitRefsCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsRepositoriesFetchGitRefsCall) IfNoneMatch

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

func (*ProjectsLocationsConnectionsRepositoriesFetchGitRefsCall) PageSize

PageSize sets the optional parameter "pageSize": Number of results to return in the list. Default to 100.

func (*ProjectsLocationsConnectionsRepositoriesFetchGitRefsCall) PageToken

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

func (*ProjectsLocationsConnectionsRepositoriesFetchGitRefsCall) 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 (*ProjectsLocationsConnectionsRepositoriesFetchGitRefsCall) RefType

RefType sets the optional parameter "refType": Type of refs to fetch

Possible values:

"REF_TYPE_UNSPECIFIED" - No type specified.
"TAG" - To fetch tags.
"BRANCH" - To fetch branches.

type ProjectsLocationsConnectionsRepositoriesGetCall

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

func (*ProjectsLocationsConnectionsRepositoriesGetCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsRepositoriesGetCall) Do

Do executes the "cloudbuild.projects.locations.connections.repositories.get" call. Exactly one of *Repository or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Repository.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsRepositoriesGetCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsRepositoriesGetCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsRepositoriesGetCall) IfNoneMatch

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

type ProjectsLocationsConnectionsRepositoriesListCall

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

func (*ProjectsLocationsConnectionsRepositoriesListCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsRepositoriesListCall) Do

Do executes the "cloudbuild.projects.locations.connections.repositories.list" call. Exactly one of *ListRepositoriesResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListRepositoriesResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsRepositoriesListCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsRepositoriesListCall) Filter

Filter sets the optional parameter "filter": A filter expression that filters resources listed in the response. Expressions must follow API improvement proposal AIP-160 (https://google.aip.dev/160). e.g. `remote_uri:"https://github.com*".

func (*ProjectsLocationsConnectionsRepositoriesListCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsConnectionsRepositoriesListCall) IfNoneMatch

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

func (*ProjectsLocationsConnectionsRepositoriesListCall) PageSize

PageSize sets the optional parameter "pageSize": Number of results to return in the list.

func (*ProjectsLocationsConnectionsRepositoriesListCall) PageToken

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

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

type ProjectsLocationsConnectionsRepositoriesService

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

func NewProjectsLocationsConnectionsRepositoriesService

func NewProjectsLocationsConnectionsRepositoriesService(s *Service) *ProjectsLocationsConnectionsRepositoriesService

func (*ProjectsLocationsConnectionsRepositoriesService) AccessReadToken

AccessReadToken: Fetches read token of a given repository.

  • repository: The resource name of the repository in the format `projects/*/locations/*/connections/*/repositories/*`.

func (*ProjectsLocationsConnectionsRepositoriesService) AccessReadWriteToken

AccessReadWriteToken: Fetches read/write token of a given repository.

  • repository: The resource name of the repository in the format `projects/*/locations/*/connections/*/repositories/*`.

func (*ProjectsLocationsConnectionsRepositoriesService) BatchCreate

BatchCreate: Creates multiple repositories inside a connection.

  • parent: The connection to contain all the repositories being created. Format: projects/*/locations/*/connections/* The parent field in the CreateRepositoryRequest messages must either be empty or match this field.

func (*ProjectsLocationsConnectionsRepositoriesService) Create

Create: Creates a Repository.

  • parent: The connection to contain the repository. If the request is part of a BatchCreateRepositoriesRequest, this field should be empty or match the parent specified there.

func (*ProjectsLocationsConnectionsRepositoriesService) Delete

Delete: Deletes a single repository.

  • name: The name of the Repository to delete. Format: `projects/*/locations/*/connections/*/repositories/*`.

func (*ProjectsLocationsConnectionsRepositoriesService) FetchGitRefs

FetchGitRefs: Fetch the list of branches or tags for a given repository.

  • repository: The resource name of the repository in the format `projects/*/locations/*/connections/*/repositories/*`.

func (*ProjectsLocationsConnectionsRepositoriesService) Get

Get: Gets details of a single repository.

  • name: The name of the Repository to retrieve. Format: `projects/*/locations/*/connections/*/repositories/*`.

func (*ProjectsLocationsConnectionsRepositoriesService) List

List: Lists Repositories in a given connection.

  • parent: The parent, which owns this collection of Repositories. Format: `projects/*/locations/*/connections/*`.

type ProjectsLocationsConnectionsService

type ProjectsLocationsConnectionsService struct {
	Repositories *ProjectsLocationsConnectionsRepositoriesService
	// contains filtered or unexported fields
}

func NewProjectsLocationsConnectionsService

func NewProjectsLocationsConnectionsService(s *Service) *ProjectsLocationsConnectionsService

func (*ProjectsLocationsConnectionsService) Create

Create: Creates a Connection.

  • parent: Project and location where the connection will be created. Format: `projects/*/locations/*`.

func (*ProjectsLocationsConnectionsService) Delete

Delete: Deletes a single connection.

  • name: The name of the Connection to delete. Format: `projects/*/locations/*/connections/*`.

func (*ProjectsLocationsConnectionsService) FetchLinkableRepositories

FetchLinkableRepositories: FetchLinkableRepositories get repositories from SCM that are accessible and could be added to the connection.

  • connection: The name of the Connection. Format: `projects/*/locations/*/connections/*`.

func (*ProjectsLocationsConnectionsService) Get

Get: Gets details of a single connection.

  • name: The name of the Connection to retrieve. Format: `projects/*/locations/*/connections/*`.

func (*ProjectsLocationsConnectionsService) GetIamPolicy

GetIamPolicy: Gets the access control policy for a resource. Returns an empty 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: The parent, which owns this collection of Connections. Format: `projects/*/locations/*`.

func (*ProjectsLocationsConnectionsService) Patch

Patch: Updates a single connection.

  • name: Immutable. The resource name of the connection, in the format `projects/{project}/locations/{location}/connections/{connection_id} `.

func (*ProjectsLocationsConnectionsService) ProcessWebhook

ProcessWebhook: ProcessWebhook is called by the external SCM for notifying of events.

  • parent: Project and location where the webhook will be received. Format: `projects/*/locations/*`.

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 specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.

type ProjectsLocationsConnectionsSetIamPolicyCall

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

func (*ProjectsLocationsConnectionsSetIamPolicyCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsSetIamPolicyCall) Do

Do executes the "cloudbuild.projects.locations.connections.setIamPolicy" call. Exactly one of *Policy or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Policy.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsSetIamPolicyCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsSetIamPolicyCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

type ProjectsLocationsConnectionsTestIamPermissionsCall

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

func (*ProjectsLocationsConnectionsTestIamPermissionsCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsConnectionsTestIamPermissionsCall) Do

Do executes the "cloudbuild.projects.locations.connections.testIamPermissions" call. Exactly one of *TestIamPermissionsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *TestIamPermissionsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsConnectionsTestIamPermissionsCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsConnectionsTestIamPermissionsCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

type ProjectsLocationsGetCall

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

func (*ProjectsLocationsGetCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsGetCall) Do

Do executes the "cloudbuild.projects.locations.get" call. Exactly one of *Location or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Location.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsGetCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsGetCall) Header

func (c *ProjectsLocationsGetCall) Header() http.Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsGetCall) IfNoneMatch

func (c *ProjectsLocationsGetCall) IfNoneMatch(entityTag string) *ProjectsLocationsGetCall

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

type ProjectsLocationsListCall

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

func (*ProjectsLocationsListCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsListCall) Do

Do executes the "cloudbuild.projects.locations.list" call. Exactly one of *ListLocationsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListLocationsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsListCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsListCall) Filter

Filter sets the optional parameter "filter": A filter to narrow down results to 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 an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsListCall) IfNoneMatch

func (c *ProjectsLocationsListCall) IfNoneMatch(entityTag string) *ProjectsLocationsListCall

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

func (*ProjectsLocationsListCall) PageSize

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

func (*ProjectsLocationsListCall) PageToken

PageToken sets the optional parameter "pageToken": A page token received from the `next_page_token` field in the response. Send that page token to receive 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.

type ProjectsLocationsOperationsCancelCall

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

func (*ProjectsLocationsOperationsCancelCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsOperationsCancelCall) Do

Do executes the "cloudbuild.projects.locations.operations.cancel" call. Exactly one of *Empty or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Empty.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsOperationsCancelCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsOperationsCancelCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

type ProjectsLocationsOperationsGetCall

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

func (*ProjectsLocationsOperationsGetCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsLocationsOperationsGetCall) Do

Do executes the "cloudbuild.projects.locations.operations.get" call. Exactly one of *Operation or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Operation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsLocationsOperationsGetCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsLocationsOperationsGetCall) Header

Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.

func (*ProjectsLocationsOperationsGetCall) IfNoneMatch

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

type ProjectsLocationsOperationsService

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

func NewProjectsLocationsOperationsService

func NewProjectsLocationsOperationsService(s *Service) *ProjectsLocationsOperationsService

func (*ProjectsLocationsOperationsService) Cancel

Cancel: Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.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) Get

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

- name: The name of the operation resource.

type ProjectsLocationsService

type ProjectsLocationsService struct {
	Connections *ProjectsLocationsConnectionsService

	Operations *ProjectsLocationsOperationsService
	// contains filtered or unexported fields
}

func NewProjectsLocationsService

func NewProjectsLocationsService(s *Service) *ProjectsLocationsService

func (*ProjectsLocationsService) Get

Get: Gets information about a location.

- name: Resource name for the location.

func (*ProjectsLocationsService) List

List: Lists information about the supported locations for this service.

  • name: The resource that owns the locations collection, if applicable.

type ProjectsService

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

func NewProjectsService

func NewProjectsService(s *Service) *ProjectsService

type PropertySpec

type PropertySpec struct {
	// Type: A type for the object.
	//
	// Possible values:
	//   "TYPE_UNSPECIFIED" - Default enum type; should not be used.
	//   "STRING" - Default
	Type string `json:"type,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Type") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Type") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

PropertySpec: PropertySpec holds information about a property in an object.

func (*PropertySpec) MarshalJSON

func (s *PropertySpec) MarshalJSON() ([]byte, error)

type Provenance

type Provenance struct {
	// Enabled: Optional. Provenance push mode.
	//
	// Possible values:
	//   "ENABLED_UNSPECIFIED" - Default to disabled (before AA
	// regionalization), optimistic after
	//   "REQUIRED" - Provenance failures would fail the run
	//   "OPTIMISTIC" - GCB will attempt to push to artifact analaysis and
	// build state would not be impacted by the push failures.
	//   "DISABLED" - Disable the provenance push entirely.
	Enabled string `json:"enabled,omitempty"`

	// Region: Optional. Provenance region.
	//
	// Possible values:
	//   "REGION_UNSPECIFIED" - The PipelineRun/TaskRun/Workflow will be
	// rejected. Update this comment to push to the same region as the run
	// in Artifact Analysis when it's regionalized.
	//   "GLOBAL" - Push provenance to Artifact Analysis in global region.
	Region string `json:"region,omitempty"`

	// Storage: Optional. Where provenance is stored.
	//
	// Possible values:
	//   "STORAGE_UNSPECIFIED" - Default PREFER_ARTIFACT_PROJECT.
	//   "PREFER_ARTIFACT_PROJECT" - GCB will attempt to push provenance to
	// the artifact project. If it is not available, fallback to build
	// project.
	//   "ARTIFACT_PROJECT_ONLY" - Only push to artifact project.
	//   "BUILD_PROJECT_ONLY" - Only push to build project.
	Storage string `json:"storage,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Enabled") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Provenance: Provenance configuration.

func (*Provenance) MarshalJSON

func (s *Provenance) MarshalJSON() ([]byte, error)

type Repository

type Repository struct {
	// Annotations: Allows clients to store small amounts of arbitrary data.
	Annotations map[string]string `json:"annotations,omitempty"`

	// CreateTime: Output only. Server assigned timestamp for when the
	// connection was created.
	CreateTime string `json:"createTime,omitempty"`

	// Etag: This checksum is computed by the server based on the value of
	// other fields, and may be sent on update and delete requests to ensure
	// the client has an up-to-date value before proceeding.
	Etag string `json:"etag,omitempty"`

	// Name: Immutable. Resource name of the repository, in the format
	// `projects/*/locations/*/connections/*/repositories/*`.
	Name string `json:"name,omitempty"`

	// RemoteUri: Required. Git Clone HTTPS URI.
	RemoteUri string `json:"remoteUri,omitempty"`

	// UpdateTime: Output only. Server assigned timestamp for when the
	// connection was updated.
	UpdateTime string `json:"updateTime,omitempty"`

	// WebhookId: Output only. External ID of the webhook created for the
	// repository.
	WebhookId string `json:"webhookId,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "Annotations") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Annotations") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Repository: A repository associated to a parent connection.

func (*Repository) MarshalJSON

func (s *Repository) MarshalJSON() ([]byte, error)

type ResultValue

type ResultValue struct {
	// ArrayVal: Value of the result if type is array.
	ArrayVal []string `json:"arrayVal,omitempty"`

	// ObjectVal: Value of the result if type is object.
	ObjectVal map[string]string `json:"objectVal,omitempty"`

	// StringVal: Value of the result if type is string.
	StringVal string `json:"stringVal,omitempty"`

	// Type: Output only. The type of data that the result holds.
	//
	// Possible values:
	//   "TYPE_UNSPECIFIED" - Default enum type; should not be used.
	//   "STRING" - Default
	//   "ARRAY" - Array type
	//   "OBJECT" - Object type
	Type string `json:"type,omitempty"`

	// ForceSendFields is a list of field names (e.g. "ArrayVal") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ArrayVal") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

ResultValue: ResultValue holds different types of data for a single result.

func (*ResultValue) MarshalJSON

func (s *ResultValue) MarshalJSON() ([]byte, error)

type RunWorkflowCustomOperationMetadata

type RunWorkflowCustomOperationMetadata struct {
	// ApiVersion: Output only. API version used to start the operation.
	ApiVersion string `json:"apiVersion,omitempty"`

	// CreateTime: Output only. The time the operation was created.
	CreateTime string `json:"createTime,omitempty"`

	// EndTime: Output only. The time the operation finished running.
	EndTime string `json:"endTime,omitempty"`

	// PipelineRunId: Output only. ID of the pipeline run created by
	// RunWorkflow.
	PipelineRunId string `json:"pipelineRunId,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`.
	RequestedCancellation bool `json:"requestedCancellation,omitempty"`

	// Target: Output only. Server-defined resource path for the target of
	// the operation.
	Target string `json:"target,omitempty"`

	// Verb: Output only. Name of the verb executed by the operation.
	Verb string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ApiVersion") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

RunWorkflowCustomOperationMetadata: Represents the custom metadata of the RunWorkflow long-running operation.

func (*RunWorkflowCustomOperationMetadata) MarshalJSON

func (s *RunWorkflowCustomOperationMetadata) MarshalJSON() ([]byte, error)

type SecretVolumeSource

type SecretVolumeSource struct {
	// SecretName: Name of the secret referenced by the WorkspaceBinding.
	SecretName string `json:"secretName,omitempty"`

	// SecretVersion: Output only. Resource name of the SecretVersion. In
	// format: projects/*/secrets/*/versions/*
	SecretVersion string `json:"secretVersion,omitempty"`

	// ForceSendFields is a list of field names (e.g. "SecretName") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "SecretName") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

SecretVolumeSource: Secret Volume Source.

func (*SecretVolumeSource) MarshalJSON

func (s *SecretVolumeSource) MarshalJSON() ([]byte, error)

type Security

type Security struct {
	// PrivilegeMode: Optional. Privilege mode.
	//
	// Possible values:
	//   "PRIVILEGE_MODE_UNSPECIFIED" - Default to PRIVILEGED.
	//   "PRIVILEGED" - Privileged mode.
	//   "UNPRIVILEGED" - Unprivileged mode.
	PrivilegeMode string `json:"privilegeMode,omitempty"`

	// ServiceAccount: IAM service account whose credentials will be used at
	// runtime.
	ServiceAccount string `json:"serviceAccount,omitempty"`

	// ForceSendFields is a list of field names (e.g. "PrivilegeMode") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "PrivilegeMode") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Security: Security configuration.

func (*Security) MarshalJSON

func (s *Security) MarshalJSON() ([]byte, error)

type SecurityContext

type SecurityContext struct {
	// AllowPrivilegeEscalation: Optional. AllowPrivilegeEscalation controls
	// whether a process can gain more privileges than its parent process.
	// This bool directly controls if the no_new_privs flag will be set on
	// the container process. AllowPrivilegeEscalation is true always when
	// the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that
	// this field cannot be set when spec.os.name is windows. +optional
	AllowPrivilegeEscalation bool `json:"allowPrivilegeEscalation,omitempty"`

	// Capabilities: Optional. Adds and removes POSIX capabilities from
	// running containers.
	Capabilities *Capabilities `json:"capabilities,omitempty"`

	// Privileged: Run container in privileged mode.
	Privileged bool `json:"privileged,omitempty"`

	// RunAsGroup: Optional. The GID to run the entrypoint of the container
	// process. Uses runtime default if unset. May also be set in
	// PodSecurityContext. If set in both SecurityContext and
	// PodSecurityContext, the value specified in SecurityContext takes
	// precedence. Note that this field cannot be set when spec.os.name is
	// windows. +optional
	RunAsGroup int64 `json:"runAsGroup,omitempty,string"`

	// RunAsNonRoot: Optional. Indicates that the container must run as a
	// non-root user. If true, the Kubelet will validate the image at
	// runtime to ensure that it does not run as UID 0 (root) and fail to
	// start the container if it does. If unset or false, no such validation
	// will be performed. May also be set in PodSecurityContext. If set in
	// both SecurityContext and PodSecurityContext, the value specified in
	// SecurityContext takes precedence. +optional
	RunAsNonRoot bool `json:"runAsNonRoot,omitempty"`

	// RunAsUser: Optional. The UID to run the entrypoint of the container
	// process. Defaults to user specified in image metadata if unspecified.
	// May also be set in PodSecurityContext. If set in both SecurityContext
	// and PodSecurityContext, the value specified in SecurityContext takes
	// precedence. Note that this field cannot be set when spec.os.name is
	// windows. +optional
	RunAsUser int64 `json:"runAsUser,omitempty,string"`

	// ForceSendFields is a list of field names (e.g.
	// "AllowPrivilegeEscalation") to unconditionally include in API
	// requests. By default, fields with empty or default values are omitted
	// from API requests. However, any non-pointer, non-interface field
	// appearing in ForceSendFields will be sent to the server regardless of
	// whether the field is empty or not. This may be used to include empty
	// fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "AllowPrivilegeEscalation")
	// to include in API requests with the JSON null value. By default,
	// fields with empty values are omitted from API requests. However, any
	// field with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

SecurityContext: Security options the container should be run with.

func (*SecurityContext) MarshalJSON

func (s *SecurityContext) MarshalJSON() ([]byte, error)

type Service

type Service struct {
	BasePath  string // API endpoint base URL
	UserAgent string // optional additional User-Agent fragment

	Projects *ProjectsService
	// contains filtered or unexported fields
}

func New deprecated

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.

func NewService

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

NewService creates a new Service.

type SetIamPolicyRequest

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"
	UpdateMask string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Policy") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

SetIamPolicyRequest: Request message for `SetIamPolicy` method.

func (*SetIamPolicyRequest) MarshalJSON

func (s *SetIamPolicyRequest) MarshalJSON() ([]byte, error)

type Sidecar

type Sidecar struct {
	// Args: Arguments to the entrypoint.
	Args []string `json:"args,omitempty"`

	// Command: Entrypoint array.
	Command []string `json:"command,omitempty"`

	// Env: List of environment variables to set in the container.
	Env []*EnvVar `json:"env,omitempty"`

	// Image: Docker image name.
	Image string `json:"image,omitempty"`

	// Name: Name of the Sidecar.
	Name string `json:"name,omitempty"`

	// ReadinessProbe: Optional. Periodic probe of Sidecar service
	// readiness. Container will be removed from service endpoints if the
	// probe fails. Cannot be updated. More info:
	// https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
	// +optional
	ReadinessProbe *Probe `json:"readinessProbe,omitempty"`

	// Script: The contents of an executable file to execute.
	Script string `json:"script,omitempty"`

	// SecurityContext: Optional. Security options the container should be
	// run with.
	SecurityContext *SecurityContext `json:"securityContext,omitempty"`

	// VolumeMounts: Pod volumes to mount into the container's filesystem.
	VolumeMounts []*VolumeMount `json:"volumeMounts,omitempty"`

	// WorkingDir: Container's working directory.
	WorkingDir string `json:"workingDir,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Args") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Args") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Sidecar: Sidecars run alongside the Task's step containers.

func (*Sidecar) MarshalJSON

func (s *Sidecar) MarshalJSON() ([]byte, error)

type SkippedTask

type SkippedTask struct {
	// Name: Name is the Pipeline Task name
	Name string `json:"name,omitempty"`

	// Reason: Output only. Reason is the cause of the PipelineTask being
	// skipped.
	Reason string `json:"reason,omitempty"`

	// WhenExpressions: WhenExpressions is the list of checks guarding the
	// execution of the PipelineTask
	WhenExpressions []*WhenExpression `json:"whenExpressions,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Name") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

SkippedTask: SkippedTask is used to describe the Tasks that were skipped due to their When Expressions evaluating to False.

func (*SkippedTask) MarshalJSON

func (s *SkippedTask) MarshalJSON() ([]byte, error)

type Status

type Status struct {
	// Code: The status code, which should be an enum value of
	// google.rpc.Code.
	Code int64 `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.
	Message string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Code") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Status: The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC (https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the API Design Guide (https://cloud.google.com/apis/design/errors).

func (*Status) MarshalJSON

func (s *Status) MarshalJSON() ([]byte, error)

type Step

type Step struct {
	// Args: Arguments to the entrypoint.
	Args []string `json:"args,omitempty"`

	// Command: Entrypoint array.
	Command []string `json:"command,omitempty"`

	// Env: List of environment variables to set in the container.
	Env []*EnvVar `json:"env,omitempty"`

	// Image: Docker image name.
	Image string `json:"image,omitempty"`

	// Name: Name of the container specified as a DNS_LABEL.
	Name string `json:"name,omitempty"`

	// Script: The contents of an executable file to execute.
	Script string `json:"script,omitempty"`

	// SecurityContext: Optional. SecurityContext defines the security
	// options the Step should be run with. If set, the fields of
	// SecurityContext override the equivalent fields of PodSecurityContext.
	// More info:
	// https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
	// +optional
	SecurityContext *SecurityContext `json:"securityContext,omitempty"`

	// Timeout: Time after which the Step times out. Defaults to never.
	Timeout string `json:"timeout,omitempty"`

	// VolumeMounts: Pod volumes to mount into the container's filesystem.
	VolumeMounts []*VolumeMount `json:"volumeMounts,omitempty"`

	// WorkingDir: Container's working directory.
	WorkingDir string `json:"workingDir,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Args") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Args") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Step: Step embeds the Container type, which allows it to include fields not provided by Container.

func (*Step) MarshalJSON

func (s *Step) MarshalJSON() ([]byte, error)

type StepTemplate

type StepTemplate struct {
	// Env: Optional. List of environment variables to set in the Step.
	// Cannot be updated.
	Env []*EnvVar `json:"env,omitempty"`

	// VolumeMounts: Optional. Pod volumes to mount into the container's
	// filesystem.
	VolumeMounts []*VolumeMount `json:"volumeMounts,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Env") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Env") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

StepTemplate: StepTemplate can be used as the basis for all step containers within the Task, so that the steps inherit settings on the base container.

func (*StepTemplate) MarshalJSON

func (s *StepTemplate) MarshalJSON() ([]byte, error)

type TaskRef

type TaskRef struct {
	// Name: Name of the task.
	Name string `json:"name,omitempty"`

	// Params: Params contains the parameters used to identify the
	// referenced Tekton resource. Example entries might include "repo" or
	// "path" but the set of params ultimately depends on the chosen
	// resolver.
	Params []*Param `json:"params,omitempty"`

	// Resolver: Resolver is the name of the resolver that should perform
	// resolution of the referenced Tekton resource.
	//
	// Possible values:
	//   "RESOLVER_NAME_UNSPECIFIED" - Default enum type; should not be
	// used.
	//   "BUNDLES" - Bundles resolver.
	// https://tekton.dev/docs/pipelines/bundle-resolver/
	//   "GCB_REPO" - GCB repo resolver.
	//   "GIT" - Simple Git resolver.
	// https://tekton.dev/docs/pipelines/git-resolver/
	Resolver string `json:"resolver,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Name") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

TaskRef: TaskRef can be used to refer to a specific instance of a task. PipelineRef can be used to refer to a specific instance of a Pipeline.

func (*TaskRef) MarshalJSON

func (s *TaskRef) MarshalJSON() ([]byte, error)

type TaskResult

type TaskResult struct {
	// Description: Description of the result.
	Description string `json:"description,omitempty"`

	// Name: Name of the result.
	Name string `json:"name,omitempty"`

	// Properties: When type is OBJECT, this map holds the names of fields
	// inside that object along with the type of data each field holds.
	Properties map[string]PropertySpec `json:"properties,omitempty"`

	// Type: The type of data that the result holds.
	//
	// Possible values:
	//   "TYPE_UNSPECIFIED" - Default enum type; should not be used.
	//   "STRING" - Default
	//   "ARRAY" - Array type
	//   "OBJECT" - Object type
	Type string `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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Description") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

TaskResult: TaskResult is used to describe the results of a task.

func (*TaskResult) MarshalJSON

func (s *TaskResult) MarshalJSON() ([]byte, error)

type TaskSpec

type TaskSpec struct {
	// Description: Description of the task.
	Description string `json:"description,omitempty"`

	// ManagedSidecars: Sidecars that run alongside the Task’s step
	// containers that should be added to this Task.
	//
	// Possible values:
	//   "MANAGED_SIDECAR_UNSPECIFIED" - Default enum type; should not be
	// used.
	//   "PRIVILEGED_DOCKER_DAEMON" - Sidecar for a privileged docker
	// daemon.
	ManagedSidecars []string `json:"managedSidecars,omitempty"`

	// Params: List of parameters.
	Params []*ParamSpec `json:"params,omitempty"`

	// Results: Values that this Task can output.
	Results []*TaskResult `json:"results,omitempty"`

	// Sidecars: Sidecars that run alongside the Task's step containers.
	Sidecars []*Sidecar `json:"sidecars,omitempty"`

	// StepTemplate: Optional. StepTemplate can be used as the basis for all
	// step containers within the Task, so that the steps inherit settings
	// on the base container.
	StepTemplate *StepTemplate `json:"stepTemplate,omitempty"`

	// Steps: Steps of the task.
	Steps []*Step `json:"steps,omitempty"`

	// Volumes: A collection of volumes that are available to mount into
	// steps.
	Volumes []*VolumeSource `json:"volumes,omitempty"`

	// Workspaces: The volumes that this Task requires.
	Workspaces []*WorkspaceDeclaration `json:"workspaces,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Description") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

TaskSpec: TaskSpec contains the Spec to instantiate a TaskRun.

func (*TaskSpec) MarshalJSON

func (s *TaskSpec) MarshalJSON() ([]byte, error)

type TestIamPermissionsRequest

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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Permissions") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

TestIamPermissionsRequest: Request message for `TestIamPermissions` method.

func (*TestIamPermissionsRequest) MarshalJSON

func (s *TestIamPermissionsRequest) MarshalJSON() ([]byte, error)

type TestIamPermissionsResponse

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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Permissions") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

TestIamPermissionsResponse: Response message for `TestIamPermissions` method.

func (*TestIamPermissionsResponse) MarshalJSON

func (s *TestIamPermissionsResponse) MarshalJSON() ([]byte, error)

type TimeoutFields

type TimeoutFields struct {
	// Finally: Finally sets the maximum allowed duration of this pipeline's
	// finally
	Finally string `json:"finally,omitempty"`

	// Pipeline: Pipeline sets the maximum allowed duration for execution of
	// the entire pipeline. The sum of individual timeouts for tasks and
	// finally must not exceed this value.
	Pipeline string `json:"pipeline,omitempty"`

	// Tasks: Tasks sets the maximum allowed duration of this pipeline's
	// tasks
	Tasks string `json:"tasks,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Finally") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Finally") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

TimeoutFields: TimeoutFields allows granular specification of pipeline, task, and finally timeouts

func (*TimeoutFields) MarshalJSON

func (s *TimeoutFields) MarshalJSON() ([]byte, error)

type UserCredential

type UserCredential struct {
	// UserTokenSecretVersion: Required. A SecretManager resource containing
	// the user token that authorizes the Cloud Build connection. Format:
	// `projects/*/secrets/*/versions/*`.
	UserTokenSecretVersion string `json:"userTokenSecretVersion,omitempty"`

	// Username: Output only. The username associated to this token.
	Username string `json:"username,omitempty"`

	// ForceSendFields is a list of field names (e.g.
	// "UserTokenSecretVersion") to unconditionally include in API requests.
	// By default, fields with empty or default values are omitted from API
	// requests. However, any non-pointer, non-interface field appearing in
	// ForceSendFields will be sent to the server regardless of whether the
	// field is empty or not. This may be used to include empty fields in
	// Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "UserTokenSecretVersion")
	// to include in API requests with the JSON null value. By default,
	// fields with empty values are omitted from API requests. However, any
	// field with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

UserCredential: Represents a personal access token that authorized the Connection, and associated metadata.

func (*UserCredential) MarshalJSON

func (s *UserCredential) MarshalJSON() ([]byte, error)

type VolumeMount

type VolumeMount struct {
	// MountPath: Path within the container at which the volume should be
	// mounted. Must not contain ':'.
	MountPath string `json:"mountPath,omitempty"`

	// Name: Name of the volume.
	Name string `json:"name,omitempty"`

	// ReadOnly: Mounted read-only if true, read-write otherwise (false or
	// unspecified).
	ReadOnly bool `json:"readOnly,omitempty"`

	// SubPath: Path within the volume from which the container's volume
	// should be mounted. Defaults to "" (volume's root).
	SubPath string `json:"subPath,omitempty"`

	// SubPathExpr: Expanded path within the volume from which the
	// container's volume should be mounted. Behaves similarly to SubPath
	// but environment variable references $(VAR_NAME) are expanded using
	// the container's environment. Defaults to "" (volume's root).
	SubPathExpr string `json:"subPathExpr,omitempty"`

	// ForceSendFields is a list of field names (e.g. "MountPath") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "MountPath") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

VolumeMount: Pod volumes to mount into the container's filesystem.

func (*VolumeMount) MarshalJSON

func (s *VolumeMount) MarshalJSON() ([]byte, error)

type VolumeSource

type VolumeSource struct {
	// EmptyDir: A temporary directory that shares a pod's lifetime.
	EmptyDir *EmptyDirVolumeSource `json:"emptyDir,omitempty"`

	// Name: Name of the Volume. Must be a DNS_LABEL and unique within the
	// pod. More info:
	// https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
	Name string `json:"name,omitempty"`

	// ForceSendFields is a list of field names (e.g. "EmptyDir") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "EmptyDir") to include in
	// API requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

VolumeSource: Volumes available to mount.

func (*VolumeSource) MarshalJSON

func (s *VolumeSource) MarshalJSON() ([]byte, error)

type WhenExpression

type WhenExpression struct {
	// ExpressionOperator: Operator that represents an Input's relationship
	// to the values
	//
	// Possible values:
	//   "EXPRESSION_OPERATOR_UNSPECIFIED" - Default enum type; should not
	// be used.
	//   "IN" - Input is in values.
	//   "NOT_IN" - Input is not in values.
	ExpressionOperator string `json:"expressionOperator,omitempty"`

	// Input: Input is the string for guard checking which can be a static
	// input or an output from a parent Task.
	Input string `json:"input,omitempty"`

	// Values: Values is an array of strings, which is compared against the
	// input, for guard checking.
	Values []string `json:"values,omitempty"`

	// ForceSendFields is a list of field names (e.g. "ExpressionOperator")
	// to unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "ExpressionOperator") to
	// include in API requests with the JSON null value. By default, fields
	// with empty values are omitted from API requests. However, any field
	// with an empty value appearing in NullFields will be sent to the
	// server as null. It is an error if a field in this list has a
	// non-empty value. This may be used to include null fields in Patch
	// requests.
	NullFields []string `json:"-"`
}

WhenExpression: Conditions that need to be true for the task to run.

func (*WhenExpression) MarshalJSON

func (s *WhenExpression) MarshalJSON() ([]byte, error)

type Worker

type Worker struct {
	// MachineType: Optional. Machine type of a worker, default is
	// "e2-standard-2".
	MachineType string `json:"machineType,omitempty"`

	// ForceSendFields is a list of field names (e.g. "MachineType") to
	// unconditionally include in API requests. By default, fields with
	// empty or default values are omitted from API requests. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "MachineType") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

Worker: Configuration for the worker.

func (*Worker) MarshalJSON

func (s *Worker) MarshalJSON() ([]byte, error)

type WorkspaceBinding

type WorkspaceBinding struct {
	// Name: Name of the workspace.
	Name string `json:"name,omitempty"`

	// Secret: Secret Volume Source.
	Secret *SecretVolumeSource `json:"secret,omitempty"`

	// SubPath: Optional. SubPath is optionally a directory on the volume
	// which should be used for this binding (i.e. the volume will be
	// mounted at this sub directory). +optional
	SubPath string `json:"subPath,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Name") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

WorkspaceBinding: WorkspaceBinding maps a workspace to a Volume. PipelineRef can be used to refer to a specific instance of a Pipeline.

func (*WorkspaceBinding) MarshalJSON

func (s *WorkspaceBinding) MarshalJSON() ([]byte, error)

type WorkspaceDeclaration

type WorkspaceDeclaration struct {
	// Description: Description is a human readable description of this
	// volume.
	Description string `json:"description,omitempty"`

	// MountPath: MountPath overrides the directory that the volume will be
	// made available at.
	MountPath string `json:"mountPath,omitempty"`

	// Name: Name is the name by which you can bind the volume at runtime.
	Name string `json:"name,omitempty"`

	// Optional: Optional. Optional marks a Workspace as not being required
	// in TaskRuns. By default this field is false and so declared
	// workspaces are required.
	Optional bool `json:"optional,omitempty"`

	// ReadOnly: ReadOnly dictates whether a mounted volume is writable.
	ReadOnly bool `json:"readOnly,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Description") to include
	// in API requests with the JSON null value. By default, fields with
	// empty values are omitted from API requests. However, any field with
	// an empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

WorkspaceDeclaration: WorkspaceDeclaration is a declaration of a volume that a Task requires.

func (*WorkspaceDeclaration) MarshalJSON

func (s *WorkspaceDeclaration) MarshalJSON() ([]byte, error)

type WorkspacePipelineTaskBinding

type WorkspacePipelineTaskBinding struct {
	// Name: Name of the workspace as declared by the task.
	Name string `json:"name,omitempty"`

	// SubPath: Optional. SubPath is optionally a directory on the volume
	// which should be used for this binding (i.e. the volume will be
	// mounted at this sub directory). +optional
	SubPath string `json:"subPath,omitempty"`

	// Workspace: Name of the workspace declared by the pipeline.
	Workspace string `json:"workspace,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. However, any
	// non-pointer, non-interface field appearing in ForceSendFields will be
	// sent to the server regardless of whether the field is empty or not.
	// This may be used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`

	// NullFields is a list of field names (e.g. "Name") to include in API
	// requests with the JSON null value. By default, fields with empty
	// values are omitted from API requests. However, any field with an
	// empty value appearing in NullFields will be sent to the server as
	// null. It is an error if a field in this list has a non-empty value.
	// This may be used to include null fields in Patch requests.
	NullFields []string `json:"-"`
}

WorkspacePipelineTaskBinding: WorkspacePipelineTaskBinding maps workspaces from the PipelineSpec to the workspaces declared in the Task.

func (*WorkspacePipelineTaskBinding) MarshalJSON

func (s *WorkspacePipelineTaskBinding) MarshalJSON() ([]byte, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL