Share via


PortalRevisionContract Constructors

Definition

Overloads

PortalRevisionContract()

Initializes a new instance of the PortalRevisionContract class.

PortalRevisionContract(String, String, String, String, String, String, Nullable<Boolean>, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the PortalRevisionContract class.

PortalRevisionContract()

Initializes a new instance of the PortalRevisionContract class.

public PortalRevisionContract ();
Public Sub New ()

Applies to

PortalRevisionContract(String, String, String, String, String, String, Nullable<Boolean>, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the PortalRevisionContract class.

public PortalRevisionContract (string id = default, string name = default, string type = default, string description = default, string statusDetails = default, string status = default, bool? isCurrent = default, DateTime? createdDateTime = default, DateTime? updatedDateTime = default);
new Microsoft.Azure.Management.ApiManagement.Models.PortalRevisionContract : string * string * string * string * string * string * Nullable<bool> * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.Management.ApiManagement.Models.PortalRevisionContract
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional description As String = Nothing, Optional statusDetails As String = Nothing, Optional status As String = Nothing, Optional isCurrent As Nullable(Of Boolean) = Nothing, Optional createdDateTime As Nullable(Of DateTime) = Nothing, Optional updatedDateTime As Nullable(Of DateTime) = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

description
String

Portal revision description.

statusDetails
String

Portal revision publishing status details.

status
String

Status of the portal's revision. Possible values include: 'pending', 'publishing', 'completed', 'failed'

isCurrent
Nullable<Boolean>

Indicates if the portal's revision is public.

createdDateTime
Nullable<DateTime>

Portal's revision creation date and time.

updatedDateTime
Nullable<DateTime>

Last updated date and time.

Applies to