IssueContract Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
IssueContract() |
Initializes a new instance of the IssueContract class. |
IssueContract(String, String, String, String, String, String, Nullable<DateTime>, String, String) |
Initializes a new instance of the IssueContract class. |
IssueContract()
Initializes a new instance of the IssueContract class.
public IssueContract ();
Public Sub New ()
Applies to
IssueContract(String, String, String, String, String, String, Nullable<DateTime>, String, String)
Initializes a new instance of the IssueContract class.
public IssueContract (string title, string description, string userId, string id = default, string name = default, string type = default, DateTime? createdDate = default, string state = default, string apiId = default);
new Microsoft.Azure.Management.ApiManagement.Models.IssueContract : string * string * string * string * string * string * Nullable<DateTime> * string * string -> Microsoft.Azure.Management.ApiManagement.Models.IssueContract
Public Sub New (title As String, description As String, userId As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional createdDate As Nullable(Of DateTime) = Nothing, Optional state As String = Nothing, Optional apiId As String = Nothing)
Parameters
- title
- String
The issue title.
- description
- String
Text describing the issue.
- userId
- String
A resource identifier for the user created the issue.
- 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"
- state
- String
Status of the issue. Possible values include: 'proposed', 'open', 'removed', 'resolved', 'closed'
- apiId
- String
A resource identifier for the API the issue was created for.