共用方式為


SystemData Constructors

Definition

Overloads

SystemData()

Initializes a new instance of the SystemData class.

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

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

Initializes a new instance of the SystemData class.

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

Parameters

createdBy
String

An identifier for 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<DateTime>

The timestamp of resource creation (UTC)

lastModifiedBy
String

An identifier for 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<DateTime>

The timestamp of resource last modification (UTC)

Applies to