Show / Hide Table of Contents

Class VolumeMount

VolumeMount describes a mounting of a Volume within a container.

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

Properties

ETag

The ETag of the item.

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

MountPath

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
System.String

Name

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
System.String

ReadOnly__

(Optional) Only true is accepted. Defaults to true.

Declaration
[JsonProperty("readOnly")]
public virtual bool? ReadOnly__ { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

SubPath

(Optional) Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).

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

Implements

IDirectResponseSchema
In This Article
Back to top