Show / Hide Table of Contents

Class VolumeMount

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

VolumeMount describes a mounting of a Volume within a container.

Inheritance
System.Object
VolumeMount
Implements
IDirectResponseSchema
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class VolumeMount : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

MountPath

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

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

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

Name

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

This must match the Name of a Volume.

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

ReadOnly__

(Optional)

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

Only true is accepted. Defaults to true.

Declaration
public virtual Nullable<bool> ReadOnly__ { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

SubPath

(Optional)

Cloud Run fully managed: not supported

Cloud Run for Anthos: supported

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

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

Implements

IDirectResponseSchema
Back to top