1<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="displayvideo_v1.html">Display & Video 360 API</a> . <a href="displayvideo_v1.advertisers.html">advertisers</a> . <a href="displayvideo_v1.advertisers.manualTriggers.html">manualTriggers</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#activate">activate(advertiserId, triggerId, body=None, x__xgafv=None)</a></code></p>
79<p class="firstline">Activates a manual trigger. Each activation of the manual trigger must be at least 5 minutes apart, otherwise an error will be returned.</p>
80<p class="toc_element">
81  <code><a href="#close">close()</a></code></p>
82<p class="firstline">Close httplib2 connections.</p>
83<p class="toc_element">
84  <code><a href="#create">create(advertiserId, body=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Creates a new manual trigger. Returns the newly created manual trigger if successful.</p>
86<p class="toc_element">
87  <code><a href="#deactivate">deactivate(advertiserId, triggerId, body=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Deactivates a manual trigger.</p>
89<p class="toc_element">
90  <code><a href="#get">get(advertiserId, triggerId, x__xgafv=None)</a></code></p>
91<p class="firstline">Gets a manual trigger.</p>
92<p class="toc_element">
93  <code><a href="#list">list(advertiserId, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
94<p class="firstline">Lists manual triggers that are accessible to the current user for a given advertiser ID. The order is defined by the order_by parameter. A single advertiser_id is required.</p>
95<p class="toc_element">
96  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
97<p class="firstline">Retrieves the next page of results.</p>
98<p class="toc_element">
99  <code><a href="#patch">patch(advertiserId, triggerId, body=None, updateMask=None, x__xgafv=None)</a></code></p>
100<p class="firstline">Updates a manual trigger. Returns the updated manual trigger if successful.</p>
101<h3>Method Details</h3>
102<div class="method">
103    <code class="details" id="activate">activate(advertiserId, triggerId, body=None, x__xgafv=None)</code>
104  <pre>Activates a manual trigger. Each activation of the manual trigger must be at least 5 minutes apart, otherwise an error will be returned.
105
106Args:
107  advertiserId: string, Required. The ID of the advertiser that the manual trigger belongs. (required)
108  triggerId: string, Required. The ID of the manual trigger to activate. (required)
109  body: object, The request body.
110    The object takes the form of:
111
112{ # Request message for ManualTriggerService.ActivateManualTrigger.
113}
114
115  x__xgafv: string, V1 error format.
116    Allowed values
117      1 - v1 error format
118      2 - v2 error format
119
120Returns:
121  An object of the form:
122
123    { # A single manual trigger in Display &amp; Video 360.
124  &quot;activationDurationMinutes&quot;: &quot;A String&quot;, # Required. The maximum duration of each activation in minutes. Must be between 1 and 360 inclusive. After this duration, the trigger will be automatically deactivated.
125  &quot;advertiserId&quot;: &quot;A String&quot;, # Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to.
126  &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the manual trigger. Must be UTF-8 encoded with a maximum size of 240 bytes.
127  &quot;latestActivationTime&quot;: &quot;A String&quot;, # Output only. The timestamp of the trigger&#x27;s latest activation.
128  &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the manual trigger.
129  &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the manual trigger. Will be set to the `INACTIVE` state upon creation.
130  &quot;triggerId&quot;: &quot;A String&quot;, # Output only. The unique ID of the manual trigger.
131}</pre>
132</div>
133
134<div class="method">
135    <code class="details" id="close">close()</code>
136  <pre>Close httplib2 connections.</pre>
137</div>
138
139<div class="method">
140    <code class="details" id="create">create(advertiserId, body=None, x__xgafv=None)</code>
141  <pre>Creates a new manual trigger. Returns the newly created manual trigger if successful.
142
143Args:
144  advertiserId: string, Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to. (required)
145  body: object, The request body.
146    The object takes the form of:
147
148{ # A single manual trigger in Display &amp; Video 360.
149  &quot;activationDurationMinutes&quot;: &quot;A String&quot;, # Required. The maximum duration of each activation in minutes. Must be between 1 and 360 inclusive. After this duration, the trigger will be automatically deactivated.
150  &quot;advertiserId&quot;: &quot;A String&quot;, # Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to.
151  &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the manual trigger. Must be UTF-8 encoded with a maximum size of 240 bytes.
152  &quot;latestActivationTime&quot;: &quot;A String&quot;, # Output only. The timestamp of the trigger&#x27;s latest activation.
153  &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the manual trigger.
154  &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the manual trigger. Will be set to the `INACTIVE` state upon creation.
155  &quot;triggerId&quot;: &quot;A String&quot;, # Output only. The unique ID of the manual trigger.
156}
157
158  x__xgafv: string, V1 error format.
159    Allowed values
160      1 - v1 error format
161      2 - v2 error format
162
163Returns:
164  An object of the form:
165
166    { # A single manual trigger in Display &amp; Video 360.
167  &quot;activationDurationMinutes&quot;: &quot;A String&quot;, # Required. The maximum duration of each activation in minutes. Must be between 1 and 360 inclusive. After this duration, the trigger will be automatically deactivated.
168  &quot;advertiserId&quot;: &quot;A String&quot;, # Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to.
169  &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the manual trigger. Must be UTF-8 encoded with a maximum size of 240 bytes.
170  &quot;latestActivationTime&quot;: &quot;A String&quot;, # Output only. The timestamp of the trigger&#x27;s latest activation.
171  &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the manual trigger.
172  &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the manual trigger. Will be set to the `INACTIVE` state upon creation.
173  &quot;triggerId&quot;: &quot;A String&quot;, # Output only. The unique ID of the manual trigger.
174}</pre>
175</div>
176
177<div class="method">
178    <code class="details" id="deactivate">deactivate(advertiserId, triggerId, body=None, x__xgafv=None)</code>
179  <pre>Deactivates a manual trigger.
180
181Args:
182  advertiserId: string, Required. The ID of the advertiser that the manual trigger belongs. (required)
183  triggerId: string, Required. The ID of the manual trigger to deactivate. (required)
184  body: object, The request body.
185    The object takes the form of:
186
187{ # Request message for ManualTriggerService.DeactivateManualTrigger.
188}
189
190  x__xgafv: string, V1 error format.
191    Allowed values
192      1 - v1 error format
193      2 - v2 error format
194
195Returns:
196  An object of the form:
197
198    { # A single manual trigger in Display &amp; Video 360.
199  &quot;activationDurationMinutes&quot;: &quot;A String&quot;, # Required. The maximum duration of each activation in minutes. Must be between 1 and 360 inclusive. After this duration, the trigger will be automatically deactivated.
200  &quot;advertiserId&quot;: &quot;A String&quot;, # Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to.
201  &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the manual trigger. Must be UTF-8 encoded with a maximum size of 240 bytes.
202  &quot;latestActivationTime&quot;: &quot;A String&quot;, # Output only. The timestamp of the trigger&#x27;s latest activation.
203  &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the manual trigger.
204  &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the manual trigger. Will be set to the `INACTIVE` state upon creation.
205  &quot;triggerId&quot;: &quot;A String&quot;, # Output only. The unique ID of the manual trigger.
206}</pre>
207</div>
208
209<div class="method">
210    <code class="details" id="get">get(advertiserId, triggerId, x__xgafv=None)</code>
211  <pre>Gets a manual trigger.
212
213Args:
214  advertiserId: string, Required. The ID of the advertiser this manual trigger belongs to. (required)
215  triggerId: string, Required. The ID of the manual trigger to fetch. (required)
216  x__xgafv: string, V1 error format.
217    Allowed values
218      1 - v1 error format
219      2 - v2 error format
220
221Returns:
222  An object of the form:
223
224    { # A single manual trigger in Display &amp; Video 360.
225  &quot;activationDurationMinutes&quot;: &quot;A String&quot;, # Required. The maximum duration of each activation in minutes. Must be between 1 and 360 inclusive. After this duration, the trigger will be automatically deactivated.
226  &quot;advertiserId&quot;: &quot;A String&quot;, # Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to.
227  &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the manual trigger. Must be UTF-8 encoded with a maximum size of 240 bytes.
228  &quot;latestActivationTime&quot;: &quot;A String&quot;, # Output only. The timestamp of the trigger&#x27;s latest activation.
229  &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the manual trigger.
230  &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the manual trigger. Will be set to the `INACTIVE` state upon creation.
231  &quot;triggerId&quot;: &quot;A String&quot;, # Output only. The unique ID of the manual trigger.
232}</pre>
233</div>
234
235<div class="method">
236    <code class="details" id="list">list(advertiserId, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
237  <pre>Lists manual triggers that are accessible to the current user for a given advertiser ID. The order is defined by the order_by parameter. A single advertiser_id is required.
238
239Args:
240  advertiserId: string, Required. The ID of the advertiser that the fetched manual triggers belong to. (required)
241  filter: string, Allows filtering by manual trigger properties. Supported syntax: * Filter expressions are made up of one or more restrictions. * Restrictions can be combined by `AND` or `OR` logical operators. A sequence of restrictions implicitly uses `AND`. * A restriction has the form of `{field} {operator} {value}`. * The operator must be `EQUALS (=)`. * Supported fields: - `displayName` - `state` Examples: * All active manual triggers under an advertiser: `state=&quot;ACTIVE&quot;` The length of this field should be no more than 500 characters.
242  orderBy: string, Field by which to sort the list. Acceptable values are: * `displayName` (default) * `state` The default sorting order is ascending. To specify descending order for a field, a suffix &quot;desc&quot; should be added to the field name. For example, `displayName desc`.
243  pageSize: integer, Requested page size. Must be between `1` and `100`. If unspecified will default to `100`.
244  pageToken: string, A token identifying a page of results the server should return. Typically, this is the value of next_page_token returned from the previous call to `ListManualTriggers` method. If not specified, the first page of results will be returned.
245  x__xgafv: string, V1 error format.
246    Allowed values
247      1 - v1 error format
248      2 - v2 error format
249
250Returns:
251  An object of the form:
252
253    {
254  &quot;manualTriggers&quot;: [ # The list of manual triggers. This list will be absent if empty.
255    { # A single manual trigger in Display &amp; Video 360.
256      &quot;activationDurationMinutes&quot;: &quot;A String&quot;, # Required. The maximum duration of each activation in minutes. Must be between 1 and 360 inclusive. After this duration, the trigger will be automatically deactivated.
257      &quot;advertiserId&quot;: &quot;A String&quot;, # Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to.
258      &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the manual trigger. Must be UTF-8 encoded with a maximum size of 240 bytes.
259      &quot;latestActivationTime&quot;: &quot;A String&quot;, # Output only. The timestamp of the trigger&#x27;s latest activation.
260      &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the manual trigger.
261      &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the manual trigger. Will be set to the `INACTIVE` state upon creation.
262      &quot;triggerId&quot;: &quot;A String&quot;, # Output only. The unique ID of the manual trigger.
263    },
264  ],
265  &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to retrieve the next page of results. Pass this value in the page_token field in the subsequent call to `ListManualTriggers` method to retrieve the next page of results.
266}</pre>
267</div>
268
269<div class="method">
270    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
271  <pre>Retrieves the next page of results.
272
273Args:
274  previous_request: The request for the previous page. (required)
275  previous_response: The response from the request for the previous page. (required)
276
277Returns:
278  A request object that you can call &#x27;execute()&#x27; on to request the next
279  page. Returns None if there are no more items in the collection.
280    </pre>
281</div>
282
283<div class="method">
284    <code class="details" id="patch">patch(advertiserId, triggerId, body=None, updateMask=None, x__xgafv=None)</code>
285  <pre>Updates a manual trigger. Returns the updated manual trigger if successful.
286
287Args:
288  advertiserId: string, Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to. (required)
289  triggerId: string, Output only. The unique ID of the manual trigger. (required)
290  body: object, The request body.
291    The object takes the form of:
292
293{ # A single manual trigger in Display &amp; Video 360.
294  &quot;activationDurationMinutes&quot;: &quot;A String&quot;, # Required. The maximum duration of each activation in minutes. Must be between 1 and 360 inclusive. After this duration, the trigger will be automatically deactivated.
295  &quot;advertiserId&quot;: &quot;A String&quot;, # Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to.
296  &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the manual trigger. Must be UTF-8 encoded with a maximum size of 240 bytes.
297  &quot;latestActivationTime&quot;: &quot;A String&quot;, # Output only. The timestamp of the trigger&#x27;s latest activation.
298  &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the manual trigger.
299  &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the manual trigger. Will be set to the `INACTIVE` state upon creation.
300  &quot;triggerId&quot;: &quot;A String&quot;, # Output only. The unique ID of the manual trigger.
301}
302
303  updateMask: string, Required. The mask to control which fields to update.
304  x__xgafv: string, V1 error format.
305    Allowed values
306      1 - v1 error format
307      2 - v2 error format
308
309Returns:
310  An object of the form:
311
312    { # A single manual trigger in Display &amp; Video 360.
313  &quot;activationDurationMinutes&quot;: &quot;A String&quot;, # Required. The maximum duration of each activation in minutes. Must be between 1 and 360 inclusive. After this duration, the trigger will be automatically deactivated.
314  &quot;advertiserId&quot;: &quot;A String&quot;, # Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to.
315  &quot;displayName&quot;: &quot;A String&quot;, # Required. The display name of the manual trigger. Must be UTF-8 encoded with a maximum size of 240 bytes.
316  &quot;latestActivationTime&quot;: &quot;A String&quot;, # Output only. The timestamp of the trigger&#x27;s latest activation.
317  &quot;name&quot;: &quot;A String&quot;, # Output only. The resource name of the manual trigger.
318  &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the manual trigger. Will be set to the `INACTIVE` state upon creation.
319  &quot;triggerId&quot;: &quot;A String&quot;, # Output only. The unique ID of the manual trigger.
320}</pre>
321</div>
322
323</body></html>