Show / Hide Table of Contents

Class VolumeMount

VolumeMount describes a mounting of a Volume within a container.

Inheritance
object
VolumeMount
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class VolumeMount : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

MountPath

Required. Path within the container at which the volume should be mounted. Must not contain ':'.

Declaration
[JsonProperty("mountPath")]
public virtual string MountPath { get; set; }
Property Value
Type Description
string

Name

Required. The name of the volume. There must be a corresponding Volume with the same name.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

ReadOnly__

Sets the mount to be read-only or read-write. Not used by Cloud Run.

Declaration
[JsonProperty("readOnly")]
public virtual bool? ReadOnly__ { get; set; }
Property Value
Type Description
bool?

SubPath

Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). This field is currently ignored for Secret volumes.

Declaration
[JsonProperty("subPath")]
public virtual string SubPath { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX