次の方法で共有


VolumeMount コンストラクター

定義

オーバーロード

VolumeMount()

VolumeMount クラスの新しいインスタンスを初期化します。

VolumeMount(String, String, Nullable<Boolean>)

VolumeMount クラスの新しいインスタンスを初期化します。

VolumeMount()

VolumeMount クラスの新しいインスタンスを初期化します。

public VolumeMount();
Public Sub New ()

適用対象

VolumeMount(String, String, Nullable<Boolean>)

VolumeMount クラスの新しいインスタンスを初期化します。

public VolumeMount(string name, string mountPath, bool? readOnlyProperty = default);
new Microsoft.Azure.Management.ContainerInstance.Models.VolumeMount : string * string * Nullable<bool> -> Microsoft.Azure.Management.ContainerInstance.Models.VolumeMount
Public Sub New (name As String, mountPath As String, Optional readOnlyProperty As Nullable(Of Boolean) = Nothing)

パラメーター

name
String

ボリューム マウントの名前。

mountPath
String

ボリュームをマウントする必要があるコンテナー内のパス。 コロン (:) を含めることはできません。

readOnlyProperty
Nullable<Boolean>

ボリューム マウントが読み取り専用かどうかを示すフラグ。

適用対象