blob: 441e0d953af924d268ed855a9556758abe28cd6e [file] [log] [blame]
yoshi-code-bot3e4b5db2021-08-10 00:22:29 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="contactcenterinsights_v1.html">Contact Center AI Insights API</a> . <a href="contactcenterinsights_v1.projects.html">projects</a> . <a href="contactcenterinsights_v1.projects.locations.html">locations</a> . <a href="contactcenterinsights_v1.projects.locations.issueModels.html">issueModels</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="contactcenterinsights_v1.projects.locations.issueModels.issues.html">issues()</a></code>
79</p>
80<p class="firstline">Returns the issues Resource.</p>
81
82<p class="toc_element">
83 <code><a href="#calculateIssueModelStats">calculateIssueModelStats(issueModel, x__xgafv=None)</a></code></p>
84<p class="firstline">Gets an issue model's statistics.</p>
85<p class="toc_element">
86 <code><a href="#close">close()</a></code></p>
87<p class="firstline">Close httplib2 connections.</p>
88<p class="toc_element">
89 <code><a href="#create">create(parent, body=None, x__xgafv=None)</a></code></p>
90<p class="firstline">Creates an issue model.</p>
91<p class="toc_element">
92 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
93<p class="firstline">Deletes an issue model.</p>
94<p class="toc_element">
95 <code><a href="#deploy">deploy(name, body=None, x__xgafv=None)</a></code></p>
96<p class="firstline">Deploys an issue model. Returns an error if a model is already deployed. An issue model can only be used in analysis after it has been deployed.</p>
97<p class="toc_element">
98 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
99<p class="firstline">Gets an issue model.</p>
100<p class="toc_element">
101 <code><a href="#list">list(parent, x__xgafv=None)</a></code></p>
102<p class="firstline">Lists issue models.</p>
103<p class="toc_element">
104 <code><a href="#patch">patch(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
105<p class="firstline">Updates an issue model.</p>
106<p class="toc_element">
107 <code><a href="#undeploy">undeploy(name, body=None, x__xgafv=None)</a></code></p>
108<p class="firstline">Undeploys an issue model. An issue model can not be used in analysis after it has been undeployed.</p>
109<h3>Method Details</h3>
110<div class="method">
111 <code class="details" id="calculateIssueModelStats">calculateIssueModelStats(issueModel, x__xgafv=None)</code>
112 <pre>Gets an issue model&#x27;s statistics.
113
114Args:
115 issueModel: string, Required. The resource name of the issue model to query against. (required)
116 x__xgafv: string, V1 error format.
117 Allowed values
118 1 - v1 error format
119 2 - v2 error format
120
121Returns:
122 An object of the form:
123
124 { # Response of querying an issue model&#x27;s statistics.
125 &quot;currentStats&quot;: { # Aggregated statistics about an issue model. # The latest label statistics for the queried issue model. Includes results on both training data and data labeled after deployment.
126 &quot;analyzedConversationsCount&quot;: &quot;A String&quot;, # Number of conversations the issue model has analyzed at this point in time.
127 &quot;issueStats&quot;: { # Statistics on each issue. Key is the issue&#x27;s resource name.
128 &quot;a_key&quot;: { # Aggregated statistics about an issue.
129 &quot;issue&quot;: &quot;A String&quot;, # Issue resource. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}
130 &quot;labeledConversationsCount&quot;: &quot;A String&quot;, # Number of conversations attached to the issue at this point in time.
131 },
132 },
133 &quot;unclassifiedConversationsCount&quot;: &quot;A String&quot;, # Number of analyzed conversations for which no issue was applicable at this point in time.
134 },
135}</pre>
136</div>
137
138<div class="method">
139 <code class="details" id="close">close()</code>
140 <pre>Close httplib2 connections.</pre>
141</div>
142
143<div class="method">
144 <code class="details" id="create">create(parent, body=None, x__xgafv=None)</code>
145 <pre>Creates an issue model.
146
147Args:
148 parent: string, Required. The parent resource of the issue model. (required)
149 body: object, The request body.
150 The object takes the form of:
151
152{ # The issue model resource.
153 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time at which this issue model was created.
154 &quot;displayName&quot;: &quot;A String&quot;, # The representative name for the issue model.
155 &quot;inputDataConfig&quot;: { # Configs for the input data used to create the issue model. # Configs for the input data that used to create the issue model.
yoshi-code-bot312da312021-09-21 00:22:28 -0700156 &quot;filter&quot;: &quot;A String&quot;, # A filter to reduce the conversations used for training the model to a specific subset.
157 &quot;medium&quot;: &quot;A String&quot;, # Medium of conversations used in training data. This field is being deprecated. To specify the medium to be used in training a new issue model, set the `medium` field on `filter`.
yoshi-code-bot3e4b5db2021-08-10 00:22:29 -0700158 &quot;trainingConversationsCount&quot;: &quot;A String&quot;, # Output only. Number of conversations used in training. Output only.
159 },
160 &quot;name&quot;: &quot;A String&quot;, # Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issue_model}
161 &quot;state&quot;: &quot;A String&quot;, # Output only. State of the model.
162 &quot;trainingStats&quot;: { # Aggregated statistics about an issue model. # Output only. Immutable. The issue model&#x27;s label statistics on its training data.
163 &quot;analyzedConversationsCount&quot;: &quot;A String&quot;, # Number of conversations the issue model has analyzed at this point in time.
164 &quot;issueStats&quot;: { # Statistics on each issue. Key is the issue&#x27;s resource name.
165 &quot;a_key&quot;: { # Aggregated statistics about an issue.
166 &quot;issue&quot;: &quot;A String&quot;, # Issue resource. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}
167 &quot;labeledConversationsCount&quot;: &quot;A String&quot;, # Number of conversations attached to the issue at this point in time.
168 },
169 },
170 &quot;unclassifiedConversationsCount&quot;: &quot;A String&quot;, # Number of analyzed conversations for which no issue was applicable at this point in time.
171 },
172 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The most recent time at which the issue model was updated.
173}
174
175 x__xgafv: string, V1 error format.
176 Allowed values
177 1 - v1 error format
178 2 - v2 error format
179
180Returns:
181 An object of the form:
182
183 { # This resource represents a long-running operation that is the result of a network API call.
184 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
185 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
186 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
187 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
188 {
189 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
190 },
191 ],
192 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
193 },
194 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
195 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
196 },
197 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
198 &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
199 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
200 },
201}</pre>
202</div>
203
204<div class="method">
205 <code class="details" id="delete">delete(name, x__xgafv=None)</code>
206 <pre>Deletes an issue model.
207
208Args:
209 name: string, Required. The name of the issue model to delete. (required)
210 x__xgafv: string, V1 error format.
211 Allowed values
212 1 - v1 error format
213 2 - v2 error format
214
215Returns:
216 An object of the form:
217
218 { # This resource represents a long-running operation that is the result of a network API call.
219 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
220 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
221 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
222 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
223 {
224 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
225 },
226 ],
227 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
228 },
229 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
230 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
231 },
232 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
233 &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
234 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
235 },
236}</pre>
237</div>
238
239<div class="method">
240 <code class="details" id="deploy">deploy(name, body=None, x__xgafv=None)</code>
241 <pre>Deploys an issue model. Returns an error if a model is already deployed. An issue model can only be used in analysis after it has been deployed.
242
243Args:
244 name: string, Required. The issue model to deploy. (required)
245 body: object, The request body.
246 The object takes the form of:
247
248{ # The request to deploy an issue model.
249 &quot;name&quot;: &quot;A String&quot;, # Required. The issue model to deploy.
250}
251
252 x__xgafv: string, V1 error format.
253 Allowed values
254 1 - v1 error format
255 2 - v2 error format
256
257Returns:
258 An object of the form:
259
260 { # This resource represents a long-running operation that is the result of a network API call.
261 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
262 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
263 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
264 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
265 {
266 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
267 },
268 ],
269 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
270 },
271 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
272 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
273 },
274 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
275 &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
276 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
277 },
278}</pre>
279</div>
280
281<div class="method">
282 <code class="details" id="get">get(name, x__xgafv=None)</code>
283 <pre>Gets an issue model.
284
285Args:
286 name: string, Required. The name of the issue model to get. (required)
287 x__xgafv: string, V1 error format.
288 Allowed values
289 1 - v1 error format
290 2 - v2 error format
291
292Returns:
293 An object of the form:
294
295 { # The issue model resource.
296 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time at which this issue model was created.
297 &quot;displayName&quot;: &quot;A String&quot;, # The representative name for the issue model.
298 &quot;inputDataConfig&quot;: { # Configs for the input data used to create the issue model. # Configs for the input data that used to create the issue model.
yoshi-code-bot312da312021-09-21 00:22:28 -0700299 &quot;filter&quot;: &quot;A String&quot;, # A filter to reduce the conversations used for training the model to a specific subset.
300 &quot;medium&quot;: &quot;A String&quot;, # Medium of conversations used in training data. This field is being deprecated. To specify the medium to be used in training a new issue model, set the `medium` field on `filter`.
yoshi-code-bot3e4b5db2021-08-10 00:22:29 -0700301 &quot;trainingConversationsCount&quot;: &quot;A String&quot;, # Output only. Number of conversations used in training. Output only.
302 },
303 &quot;name&quot;: &quot;A String&quot;, # Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issue_model}
304 &quot;state&quot;: &quot;A String&quot;, # Output only. State of the model.
305 &quot;trainingStats&quot;: { # Aggregated statistics about an issue model. # Output only. Immutable. The issue model&#x27;s label statistics on its training data.
306 &quot;analyzedConversationsCount&quot;: &quot;A String&quot;, # Number of conversations the issue model has analyzed at this point in time.
307 &quot;issueStats&quot;: { # Statistics on each issue. Key is the issue&#x27;s resource name.
308 &quot;a_key&quot;: { # Aggregated statistics about an issue.
309 &quot;issue&quot;: &quot;A String&quot;, # Issue resource. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}
310 &quot;labeledConversationsCount&quot;: &quot;A String&quot;, # Number of conversations attached to the issue at this point in time.
311 },
312 },
313 &quot;unclassifiedConversationsCount&quot;: &quot;A String&quot;, # Number of analyzed conversations for which no issue was applicable at this point in time.
314 },
315 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The most recent time at which the issue model was updated.
316}</pre>
317</div>
318
319<div class="method">
320 <code class="details" id="list">list(parent, x__xgafv=None)</code>
321 <pre>Lists issue models.
322
323Args:
324 parent: string, Required. The parent resource of the issue model. (required)
325 x__xgafv: string, V1 error format.
326 Allowed values
327 1 - v1 error format
328 2 - v2 error format
329
330Returns:
331 An object of the form:
332
333 { # The response of listing issue models.
334 &quot;issueModels&quot;: [ # The issue models that match the request.
335 { # The issue model resource.
336 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time at which this issue model was created.
337 &quot;displayName&quot;: &quot;A String&quot;, # The representative name for the issue model.
338 &quot;inputDataConfig&quot;: { # Configs for the input data used to create the issue model. # Configs for the input data that used to create the issue model.
yoshi-code-bot312da312021-09-21 00:22:28 -0700339 &quot;filter&quot;: &quot;A String&quot;, # A filter to reduce the conversations used for training the model to a specific subset.
340 &quot;medium&quot;: &quot;A String&quot;, # Medium of conversations used in training data. This field is being deprecated. To specify the medium to be used in training a new issue model, set the `medium` field on `filter`.
yoshi-code-bot3e4b5db2021-08-10 00:22:29 -0700341 &quot;trainingConversationsCount&quot;: &quot;A String&quot;, # Output only. Number of conversations used in training. Output only.
342 },
343 &quot;name&quot;: &quot;A String&quot;, # Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issue_model}
344 &quot;state&quot;: &quot;A String&quot;, # Output only. State of the model.
345 &quot;trainingStats&quot;: { # Aggregated statistics about an issue model. # Output only. Immutable. The issue model&#x27;s label statistics on its training data.
346 &quot;analyzedConversationsCount&quot;: &quot;A String&quot;, # Number of conversations the issue model has analyzed at this point in time.
347 &quot;issueStats&quot;: { # Statistics on each issue. Key is the issue&#x27;s resource name.
348 &quot;a_key&quot;: { # Aggregated statistics about an issue.
349 &quot;issue&quot;: &quot;A String&quot;, # Issue resource. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}
350 &quot;labeledConversationsCount&quot;: &quot;A String&quot;, # Number of conversations attached to the issue at this point in time.
351 },
352 },
353 &quot;unclassifiedConversationsCount&quot;: &quot;A String&quot;, # Number of analyzed conversations for which no issue was applicable at this point in time.
354 },
355 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The most recent time at which the issue model was updated.
356 },
357 ],
358}</pre>
359</div>
360
361<div class="method">
362 <code class="details" id="patch">patch(name, body=None, updateMask=None, x__xgafv=None)</code>
363 <pre>Updates an issue model.
364
365Args:
366 name: string, Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issue_model} (required)
367 body: object, The request body.
368 The object takes the form of:
369
370{ # The issue model resource.
371 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time at which this issue model was created.
372 &quot;displayName&quot;: &quot;A String&quot;, # The representative name for the issue model.
373 &quot;inputDataConfig&quot;: { # Configs for the input data used to create the issue model. # Configs for the input data that used to create the issue model.
yoshi-code-bot312da312021-09-21 00:22:28 -0700374 &quot;filter&quot;: &quot;A String&quot;, # A filter to reduce the conversations used for training the model to a specific subset.
375 &quot;medium&quot;: &quot;A String&quot;, # Medium of conversations used in training data. This field is being deprecated. To specify the medium to be used in training a new issue model, set the `medium` field on `filter`.
yoshi-code-bot3e4b5db2021-08-10 00:22:29 -0700376 &quot;trainingConversationsCount&quot;: &quot;A String&quot;, # Output only. Number of conversations used in training. Output only.
377 },
378 &quot;name&quot;: &quot;A String&quot;, # Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issue_model}
379 &quot;state&quot;: &quot;A String&quot;, # Output only. State of the model.
380 &quot;trainingStats&quot;: { # Aggregated statistics about an issue model. # Output only. Immutable. The issue model&#x27;s label statistics on its training data.
381 &quot;analyzedConversationsCount&quot;: &quot;A String&quot;, # Number of conversations the issue model has analyzed at this point in time.
382 &quot;issueStats&quot;: { # Statistics on each issue. Key is the issue&#x27;s resource name.
383 &quot;a_key&quot;: { # Aggregated statistics about an issue.
384 &quot;issue&quot;: &quot;A String&quot;, # Issue resource. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}
385 &quot;labeledConversationsCount&quot;: &quot;A String&quot;, # Number of conversations attached to the issue at this point in time.
386 },
387 },
388 &quot;unclassifiedConversationsCount&quot;: &quot;A String&quot;, # Number of analyzed conversations for which no issue was applicable at this point in time.
389 },
390 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The most recent time at which the issue model was updated.
391}
392
393 updateMask: string, The list of fields to be updated.
394 x__xgafv: string, V1 error format.
395 Allowed values
396 1 - v1 error format
397 2 - v2 error format
398
399Returns:
400 An object of the form:
401
402 { # The issue model resource.
403 &quot;createTime&quot;: &quot;A String&quot;, # Output only. The time at which this issue model was created.
404 &quot;displayName&quot;: &quot;A String&quot;, # The representative name for the issue model.
405 &quot;inputDataConfig&quot;: { # Configs for the input data used to create the issue model. # Configs for the input data that used to create the issue model.
yoshi-code-bot312da312021-09-21 00:22:28 -0700406 &quot;filter&quot;: &quot;A String&quot;, # A filter to reduce the conversations used for training the model to a specific subset.
407 &quot;medium&quot;: &quot;A String&quot;, # Medium of conversations used in training data. This field is being deprecated. To specify the medium to be used in training a new issue model, set the `medium` field on `filter`.
yoshi-code-bot3e4b5db2021-08-10 00:22:29 -0700408 &quot;trainingConversationsCount&quot;: &quot;A String&quot;, # Output only. Number of conversations used in training. Output only.
409 },
410 &quot;name&quot;: &quot;A String&quot;, # Immutable. The resource name of the issue model. Format: projects/{project}/locations/{location}/issueModels/{issue_model}
411 &quot;state&quot;: &quot;A String&quot;, # Output only. State of the model.
412 &quot;trainingStats&quot;: { # Aggregated statistics about an issue model. # Output only. Immutable. The issue model&#x27;s label statistics on its training data.
413 &quot;analyzedConversationsCount&quot;: &quot;A String&quot;, # Number of conversations the issue model has analyzed at this point in time.
414 &quot;issueStats&quot;: { # Statistics on each issue. Key is the issue&#x27;s resource name.
415 &quot;a_key&quot;: { # Aggregated statistics about an issue.
416 &quot;issue&quot;: &quot;A String&quot;, # Issue resource. Format: projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}
417 &quot;labeledConversationsCount&quot;: &quot;A String&quot;, # Number of conversations attached to the issue at this point in time.
418 },
419 },
420 &quot;unclassifiedConversationsCount&quot;: &quot;A String&quot;, # Number of analyzed conversations for which no issue was applicable at this point in time.
421 },
422 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The most recent time at which the issue model was updated.
423}</pre>
424</div>
425
426<div class="method">
427 <code class="details" id="undeploy">undeploy(name, body=None, x__xgafv=None)</code>
428 <pre>Undeploys an issue model. An issue model can not be used in analysis after it has been undeployed.
429
430Args:
431 name: string, Required. The issue model to undeploy. (required)
432 body: object, The request body.
433 The object takes the form of:
434
435{ # The request to undeploy an issue model.
436 &quot;name&quot;: &quot;A String&quot;, # Required. The issue model to undeploy.
437}
438
439 x__xgafv: string, V1 error format.
440 Allowed values
441 1 - v1 error format
442 2 - v2 error format
443
444Returns:
445 An object of the form:
446
447 { # This resource represents a long-running operation that is the result of a network API call.
448 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
449 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
450 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
451 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
452 {
453 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
454 },
455 ],
456 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
457 },
458 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
459 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
460 },
461 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
462 &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
463 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
464 },
465}</pre>
466</div>
467
468</body></html>