Class VolumeMount
VolumeMount describes a mounting of a Volume within a container.
Inheritance
System.Object
VolumeMount
Implements
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 |
MountPropagation
mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is beta in 1.10. +optional
Declaration
[JsonProperty("mountPropagation")]
public virtual string MountPropagation { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Name
This must match the Name of a Volume.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
ReadOnly__
Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. +optional
Declaration
[JsonProperty("readOnly")]
public virtual bool? ReadOnly__ { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
SubPath
Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). +optional
Declaration
[JsonProperty("subPath")]
public virtual string SubPath { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |