Class VolumeMount
VolumeMount describes a mounting of a Volume within a container.
Implements
Inherited Members
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).
Declaration
[JsonProperty("subPath")]
public virtual string SubPath { get; set; }
Property Value
Type | Description |
---|---|
string |