Cloud Build v1 API - Class Artifacts.Types.GoModule (2.14.0)

public sealed class Artifacts.Types.GoModule : IMessage<Artifacts.Types.GoModule>, IEquatable<Artifacts.Types.GoModule>, IDeepCloneable<Artifacts.Types.GoModule>, IBufferMessage, IMessage

Reference documentation and code samples for the Cloud Build v1 API class Artifacts.Types.GoModule.

Go module to upload to Artifact Registry upon successful completion of all build steps. A module refers to all dependencies in a go.mod file.

Inheritance

object > Artifacts.Types.GoModule

Namespace

Google.Cloud.CloudBuild.V1

Assembly

Google.Cloud.CloudBuild.V1.dll

Constructors

GoModule()

public GoModule()

GoModule(GoModule)

public GoModule(Artifacts.Types.GoModule other)
Parameter
Name Description
other ArtifactsTypesGoModule

Properties

ModulePath

public string ModulePath { get; set; }

Optional. The Go module's "module path". e.g. example.com/foo/v2

Property Value
Type Description
string

ModuleVersion

public string ModuleVersion { get; set; }

Optional. The Go module's semantic version in the form vX.Y.Z. e.g. v0.1.1 Pre-release identifiers can also be added by appending a dash and dot separated ASCII alphanumeric characters and hyphens. e.g. v0.2.3-alpha.x.12m.5

Property Value
Type Description
string

RepositoryLocation

public string RepositoryLocation { get; set; }

Optional. Location of the Artifact Registry repository. i.e. us-east1 Defaults to the build’s location.

Property Value
Type Description
string

RepositoryName

public string RepositoryName { get; set; }

Optional. Artifact Registry repository name.

Specified Go modules will be zipped and uploaded to Artifact Registry with this location as a prefix. e.g. my-go-repo

Property Value
Type Description
string

RepositoryProjectId

public string RepositoryProjectId { get; set; }

Optional. Project ID of the Artifact Registry repository. Defaults to the build project.

Property Value
Type Description
string

SourcePath

public string SourcePath { get; set; }

Optional. Source path of the go.mod file in the build's workspace. If not specified, this will default to the current directory. e.g. ~/code/go/mypackage

Property Value
Type Description
string