SystemData Constructors

Definition

Overloads

Name Description
SystemData()

Initializes a new instance of the SystemData class.

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

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(String, String, Nullable<DateTimeOffset>, String, String, Nullable<DateTimeOffset>)

Initializes a new instance of the SystemData class.

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

Parameters

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'

createdAt
Nullable<DateTimeOffset>

The timestamp of resource creation (UTC).

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'

lastModifiedAt
Nullable<DateTimeOffset>

The timestamp of resource last modification (UTC)

Applies to