CreateIssueMetadata

Metadata for creating an issue.

JSON representation
{
  "createTime": string,
  "endTime": string,
  "request": {
    object (CreateIssueRequest)
  }
}
Fields
createTime

string (Timestamp format)

Output only. The time the operation was created.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

endTime

string (Timestamp format)

Output only. The time the operation finished running.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

request

object (CreateIssueRequest)

The original request for creation.

CreateIssueRequest

The request to create an issue.

JSON representation
{
  "parent": string,
  "issue": {
    object (Issue)
  }
}
Fields
parent

string

Required. The parent resource of the issue.

issue

object (Issue)

Required. The values for the new issue.

Issue

The issue resource.

JSON representation
{
  "name": string,
  "displayName": string,
  "createTime": string,
  "updateTime": string,
  "representativeConversationNames": [
    string
  ],
  "sampleUtterances": [
    string
  ],
  "source": enum (IssueSource),
  "parentIssues": [
    string
  ],
  "alternatives": [
    {
      object (IssueAlternative)
    }
  ],
  "displayDescription": string,
  "matchTarget": string
}
Fields
name

string

Immutable. The resource name of the issue. Format: projects/{project}/locations/{location}/issueModels/{issueModel}/issues/{issue}

displayName

string

The representative name for the issue.

createTime

string (Timestamp format)

Output only. The time at which this issue was created.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

updateTime

string (Timestamp format)

Output only. The most recent time that this issue was updated.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

representativeConversationNames[]

string

Output only. Resource names of the most representative conversations matched.

sampleUtterances[]

string

Output only. Resource names of the sample representative utterances that match to this issue.

source

enum (IssueSource)

Source of the topic

parentIssues[]

string

Unique identifiers of the parent topics for hierarchical representation. Format is projects/{project}/locations/{location}/issueModels/{issueModel}/issues/{issue}

alternatives[]

object (IssueAlternative)

Additional topic descriptions.

displayDescription

string

Representative description of the issue.

matchTarget

string

Target used for semantic similarity comparisons. Populated on V2 models if the display name was renamed.

IssueAlternative

Alternative topic names or descriptions to improve inference.

JSON representation
{
  "alternative": string,
  "description": string
}
Fields
alternative

string

An alternative topic name.

description

string

An alternative topic description.