Class ContainerMountGetArgs
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: Pulumi.Docker.Inputs
Assembly: Pulumi.Docker.dll
Syntax
public sealed class ContainerMountGetArgs : ResourceArgs
Constructors
View SourceContainerMountGetArgs()
Declaration
public ContainerMountGetArgs()
Properties
View SourceBindOptions
Optional configuration for the bind type.
Declaration
public Input<ContainerMountBindOptionsGetArgs> BindOptions { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<ContainerMountBindOptionsGetArgs> |
ReadOnly
If true, this volume will be readonly. Defaults to false.
Declaration
public Input<bool> ReadOnly { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Source
The mount source (e.g., a volume name, a host path)
Declaration
public Input<string> Source { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Target
The container path.
Declaration
public Input<string> Target { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
TmpfsOptions
Optional configuration for the tmpf type.
Declaration
public Input<ContainerMountTmpfsOptionsGetArgs> TmpfsOptions { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<ContainerMountTmpfsOptionsGetArgs> |
Type
The mount type: valid values are bind|volume|tmpfs.
Declaration
public Input<string> Type { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
VolumeOptions
Optional configuration for the volume type.
Declaration
public Input<ContainerMountVolumeOptionsGetArgs> VolumeOptions { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<ContainerMountVolumeOptionsGetArgs> |