你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IssueContract 构造函数

定义

重载

IssueContract()

初始化 IssueContract 类的新实例。

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

初始化 IssueContract 类的新实例。

IssueContract()

初始化 IssueContract 类的新实例。

public IssueContract ();
Public Sub New ()

适用于

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

初始化 IssueContract 类的新实例。

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)

参数

title
String

问题标题。

description
String

描述问题的文本。

userId
String

用户的资源标识符创建了问题。

id
String

资源的完全限定的资源 ID。 例如 - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

资源的名称

type
String

资源类型。 例如“Microsoft.Compute/virtualMachines”或“Microsoft.Storage/storageAccounts”

createdDate
Nullable<DateTime>

创建问题的日期和时间。

state
String

问题的状态。 可能的值包括:“proposed”、“open”、“removed”、“resolved”、“closed”

apiId
String

为其创建问题的 API 的资源标识符。

适用于