Share via


SystemData Constructors

Definition

Overloads

SystemData()

Initializes a new instance of the SystemData class.

SystemData(Nullable<DateTime>, String, String, Nullable<DateTime>, String, String)

Initializes a new instance of the SystemData class.

SystemData()

Initializes a new instance of the SystemData class.

public SystemData ();
Public Sub New ()

Applies to

SystemData(Nullable<DateTime>, String, String, Nullable<DateTime>, String, String)

Initializes a new instance of the SystemData class.

public SystemData (DateTime? createdAt = default, string createdBy = default, string createdByType = default, DateTime? lastModifiedAt = default, string lastModifiedBy = default, string lastModifiedByType = default);
new Microsoft.Azure.Management.DataShare.Models.SystemData : Nullable<DateTime> * string * string * Nullable<DateTime> * string * string -> Microsoft.Azure.Management.DataShare.Models.SystemData
Public Sub New (Optional createdAt As Nullable(Of DateTime) = Nothing, Optional createdBy As String = Nothing, Optional createdByType As String = Nothing, Optional lastModifiedAt As Nullable(Of DateTime) = Nothing, Optional lastModifiedBy As String = Nothing, Optional lastModifiedByType As String = Nothing)

Parameters

createdAt
Nullable<DateTime>

The timestamp of resource creation (UTC).

createdBy
String

The identity that created the resource.

createdByType
String

The type of identity that created the resource. Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'

lastModifiedAt
Nullable<DateTime>

The type of identity that last modified the resource.

lastModifiedBy
String

The identity that last modified the resource.

lastModifiedByType
String

The type of identity that last modified the resource. Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'

Applies to