blob: e721ac3343359db9da6c0e61b4b1ae8361d0b5b1 [file] [log] [blame]
Bu Sun Kim673ec5c2020-11-16 11:05:03 -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="datalabeling_v1beta1.html">Data Labeling API</a> . <a href="datalabeling_v1beta1.projects.html">projects</a> . <a href="datalabeling_v1beta1.projects.datasets.html">datasets</a> . <a href="datalabeling_v1beta1.projects.datasets.annotatedDatasets.html">annotatedDatasets</a> . <a href="datalabeling_v1beta1.projects.datasets.annotatedDatasets.feedbackThreads.html">feedbackThreads</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="datalabeling_v1beta1.projects.datasets.annotatedDatasets.feedbackThreads.feedbackMessages.html">feedbackMessages()</a></code>
79</p>
80<p class="firstline">Returns the feedbackMessages Resource.</p>
81
82<p class="toc_element">
83 <code><a href="#close">close()</a></code></p>
84<p class="firstline">Close httplib2 connections.</p>
85<p class="toc_element">
86 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
87<p class="firstline">Delete a FeedbackThread.</p>
88<p class="toc_element">
89 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
90<p class="firstline">Get a FeedbackThread object.</p>
91<p class="toc_element">
92 <code><a href="#list">list(parent, pageToken=None, pageSize=None, x__xgafv=None)</a></code></p>
93<p class="firstline">List FeedbackThreads with pagination.</p>
94<p class="toc_element">
95 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
96<p class="firstline">Retrieves the next page of results.</p>
97<h3>Method Details</h3>
98<div class="method">
99 <code class="details" id="close">close()</code>
100 <pre>Close httplib2 connections.</pre>
101</div>
102
103<div class="method">
104 <code class="details" id="delete">delete(name, x__xgafv=None)</code>
105 <pre>Delete a FeedbackThread.
106
107Args:
108 name: string, Required. Name of the FeedbackThread that is going to be deleted. Format: &#x27;projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/{annotated_dataset_id}/feedbackThreads/{feedback_thread_id}&#x27;. (required)
109 x__xgafv: string, V1 error format.
110 Allowed values
111 1 - v1 error format
112 2 - v2 error format
113
114Returns:
115 An object of the form:
116
117 { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
118 }</pre>
119</div>
120
121<div class="method">
122 <code class="details" id="get">get(name, x__xgafv=None)</code>
123 <pre>Get a FeedbackThread object.
124
125Args:
126 name: string, Required. Name of the feedback. Format: &#x27;projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/{annotated_dataset_id}/feedbackThreads/{feedback_thread_id}&#x27;. (required)
127 x__xgafv: string, V1 error format.
128 Allowed values
129 1 - v1 error format
130 2 - v2 error format
131
132Returns:
133 An object of the form:
134
135 { # A feedback thread of a certain labeling task on a certain annotated dataset.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700136 &quot;feedbackThreadMetadata&quot;: { # Metadata regarding the feedback thread.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700137 &quot;thumbnail&quot;: &quot;A String&quot;, # An image thumbnail of this thread.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800138 &quot;status&quot;: &quot;A String&quot;,
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800139 &quot;createTime&quot;: &quot;A String&quot;, # When the thread is created
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800140 &quot;lastUpdateTime&quot;: &quot;A String&quot;, # When the thread is last updated.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700141 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800142 &quot;name&quot;: &quot;A String&quot;, # Name of the feedback thread. Format: &#x27;project/{project_id}/datasets/{dataset_id}/annotatedDatasets/{annotated_dataset_id}/feedbackThreads/{feedback_thread_id}&#x27;
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700143 }</pre>
144</div>
145
146<div class="method">
147 <code class="details" id="list">list(parent, pageToken=None, pageSize=None, x__xgafv=None)</code>
148 <pre>List FeedbackThreads with pagination.
149
150Args:
151 parent: string, Required. FeedbackThread resource parent. Format: &quot;projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/{annotated_dataset_id}&quot; (required)
152 pageToken: string, Optional. A token identifying a page of results for the server to return. Typically obtained by ListFeedbackThreads.next_page_token of the previous [DataLabelingService.ListFeedbackThreads] call. Return first page if empty.
153 pageSize: integer, Optional. Requested page size. Server may return fewer results than requested. Default value is 100.
154 x__xgafv: string, V1 error format.
155 Allowed values
156 1 - v1 error format
157 2 - v2 error format
158
159Returns:
160 An object of the form:
161
162 { # Results for listing FeedbackThreads.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800163 &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to retrieve next page of results.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700164 &quot;feedbackThreads&quot;: [ # The list of feedback threads to return.
165 { # A feedback thread of a certain labeling task on a certain annotated dataset.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700166 &quot;feedbackThreadMetadata&quot;: { # Metadata regarding the feedback thread.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700167 &quot;thumbnail&quot;: &quot;A String&quot;, # An image thumbnail of this thread.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800168 &quot;status&quot;: &quot;A String&quot;,
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800169 &quot;createTime&quot;: &quot;A String&quot;, # When the thread is created
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800170 &quot;lastUpdateTime&quot;: &quot;A String&quot;, # When the thread is last updated.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700171 },
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800172 &quot;name&quot;: &quot;A String&quot;, # Name of the feedback thread. Format: &#x27;project/{project_id}/datasets/{dataset_id}/annotatedDatasets/{annotated_dataset_id}/feedbackThreads/{feedback_thread_id}&#x27;
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700173 },
174 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700175 }</pre>
176</div>
177
178<div class="method">
179 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
180 <pre>Retrieves the next page of results.
181
182Args:
183 previous_request: The request for the previous page. (required)
184 previous_response: The response from the request for the previous page. (required)
185
186Returns:
187 A request object that you can call &#x27;execute()&#x27; on to request the next
188 page. Returns None if there are no more items in the collection.
189 </pre>
190</div>
191
192</body></html>