DeletedServiceContract Constructors

Definition

Overloads

DeletedServiceContract()

Initializes a new instance of the DeletedServiceContract class.

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

Initializes a new instance of the DeletedServiceContract class.

DeletedServiceContract()

Initializes a new instance of the DeletedServiceContract class.

public DeletedServiceContract ();
Public Sub New ()

Applies to

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

Initializes a new instance of the DeletedServiceContract class.

public DeletedServiceContract (string id = default, string name = default, string type = default, string serviceId = default, DateTime? scheduledPurgeDate = default, DateTime? deletionDate = default, string location = default);
new Microsoft.Azure.Management.ApiManagement.Models.DeletedServiceContract : string * string * string * string * Nullable<DateTime> * Nullable<DateTime> * string -> Microsoft.Azure.Management.ApiManagement.Models.DeletedServiceContract
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional serviceId As String = Nothing, Optional scheduledPurgeDate As Nullable(Of DateTime) = Nothing, Optional deletionDate As Nullable(Of DateTime) = Nothing, Optional location As String = 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"

serviceId
String

Fully-qualified API Management Service Resource ID

scheduledPurgeDate
Nullable<DateTime>

UTC Date and Time when the service will be automatically purged. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.

deletionDate
Nullable<DateTime>

UTC Timestamp when the service was soft-deleted. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.

location
String

API Management Service Master Location.

Applies to