Cloud Build v1 API - Class Volume (2.9.0)

public sealed class Volume : IMessage<Volume>, IEquatable<Volume>, IDeepCloneable<Volume>, IBufferMessage, IMessage

Reference documentation and code samples for the Cloud Build v1 API class Volume.

Volume describes a Docker container volume which is mounted into build steps in order to persist files across build step execution.

Inheritance

object > Volume

Namespace

Google.Cloud.CloudBuild.V1

Assembly

Google.Cloud.CloudBuild.V1.dll

Constructors

Volume()

public Volume()

Volume(Volume)

public Volume(Volume other)
Parameter
NameDescription
otherVolume

Properties

Name

public string Name { get; set; }

Name of the volume to mount.

Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.

Property Value
TypeDescription
string

Path

public string Path { get; set; }

Path at which to mount the volume.

Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.

Property Value
TypeDescription
string