次の方法で共有


OperationResource コンストラクター

定義

オーバーロード

OperationResource()

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

OperationResource(Nullable<DateTime>, Error, String, String, String, Nullable<DateTime>)

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

OperationResource()

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

public OperationResource();
Public Sub New ()

適用対象

OperationResource(Nullable<DateTime>, Error, String, String, String, Nullable<DateTime>)

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

public OperationResource(DateTime? endTime = default, Microsoft.Azure.Management.RecoveryServices.Models.Error error = default, string id = default, string name = default, string status = default, DateTime? startTime = default);
new Microsoft.Azure.Management.RecoveryServices.Models.OperationResource : Nullable<DateTime> * Microsoft.Azure.Management.RecoveryServices.Models.Error * string * string * string * Nullable<DateTime> -> Microsoft.Azure.Management.RecoveryServices.Models.OperationResource
Public Sub New (Optional endTime As Nullable(Of DateTime) = Nothing, Optional error As Error = Nothing, Optional id As String = Nothing, Optional name As String = Nothing, Optional status As String = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing)

パラメーター

endTime
Nullable<DateTime>

操作の終了時刻

error
Error

status == failed または status == canceled の場合は必須。 これは、RPC で使用される OData v4 エラー形式であり、v2.2 Azure REST API のガイドラインに従います。

id
String

操作の結果を取得するために使用されているものと一致する必要があります

name
String

"id" フィールドの最後のセグメントと一致する必要があり、通常は GUID/システムによって生成される値になります

status
String

操作の状態。 (InProgress/Success/Failed/Cancelled)

startTime
Nullable<DateTime>

操作の開始時刻

適用対象