Share via


ApiReleaseContract Constructors

Definition

Overloads

ApiReleaseContract()

Initializes a new instance of the ApiReleaseContract class.

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

Initializes a new instance of the ApiReleaseContract class.

ApiReleaseContract()

Initializes a new instance of the ApiReleaseContract class.

public ApiReleaseContract ();
Public Sub New ()

Applies to

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

Initializes a new instance of the ApiReleaseContract class.

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

apiId
String

Identifier of the API the release belongs to.

createdDateTime
Nullable<DateTime>

The time the API was released. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.

updatedDateTime
Nullable<DateTime>

The time the API release was updated.

notes
String

Release Notes

Applies to