blob: b92e6f903c78a173b233a3515a2103ea4609795b [file] [log] [blame]
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="dialogflow_v3beta1.html">Dialogflow API</a> . <a href="dialogflow_v3beta1.projects.html">projects</a> . <a href="dialogflow_v3beta1.projects.locations.html">locations</a> . <a href="dialogflow_v3beta1.projects.locations.agents.html">agents</a> . <a href="dialogflow_v3beta1.projects.locations.agents.changelogs.html">changelogs</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
<p class="firstline">Retrieves the specified Changelog.</p>
<p class="toc_element">
<code><a href="#list">list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Returns the list of Changelogs.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>
<div class="method">
<code class="details" id="get">get(name, x__xgafv=None)</code>
<pre>Retrieves the specified Changelog.
Args:
name: string, Required. The name of the changelog to get. Format: `projects//locations//agents//changelogs/`. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Changelogs represents a change made to a given agent.
&quot;action&quot;: &quot;A String&quot;, # The action of the change.
&quot;createTime&quot;: &quot;A String&quot;, # The timestamp of the change.
&quot;displayName&quot;: &quot;A String&quot;, # The affected resource display name of the change.
&quot;name&quot;: &quot;A String&quot;, # The unique identifier of the changelog. Format: `projects//locations//agents//changelogs/`.
&quot;resource&quot;: &quot;A String&quot;, # The affected resource name of the change.
&quot;type&quot;: &quot;A String&quot;, # The affected resource type.
&quot;userEmail&quot;: &quot;A String&quot;, # Email address of the authenticated user.
}</pre>
</div>
<div class="method">
<code class="details" id="list">list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Returns the list of Changelogs.
Args:
parent: string, Required. The agent containing the changelogs. Format: `projects//locations//agents/`. (required)
filter: string, The filter string. Supports filter by user_email, resource, type and create_time. Some examples: 1. By user email: user_email = &quot;someone@google.com&quot; 2. By resource name: resource = &quot;projects/123/locations/global/agents/456/flows/789&quot; 3. By resource display name: display_name = &quot;my agent&quot; 4. By action: action = &quot;Create&quot; 5. By type: type = &quot;flows&quot; 6. By create time. Currently predicates on `create_time` and `create_time_epoch_seconds` are supported: create_time_epoch_seconds &gt; 1551790877 AND create_time &lt;= 2017-01-15T01:30:15.01Z 7. Combination of above filters: resource = &quot;projects/123/locations/global/agents/456/flows/789&quot; AND user_email = &quot;someone@google.com&quot; AND create_time &lt;= 2017-01-15T01:30:15.01Z
pageSize: integer, The maximum number of items to return in a single page. By default 100 and at most 1000.
pageToken: string, The next_page_token value returned from a previous list request.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # The response message for Changelogs.ListChangelogs.
&quot;changelogs&quot;: [ # The list of changelogs. There will be a maximum number of items returned based on the page_size field in the request. The changelogs will be ordered by timestamp.
{ # Changelogs represents a change made to a given agent.
&quot;action&quot;: &quot;A String&quot;, # The action of the change.
&quot;createTime&quot;: &quot;A String&quot;, # The timestamp of the change.
&quot;displayName&quot;: &quot;A String&quot;, # The affected resource display name of the change.
&quot;name&quot;: &quot;A String&quot;, # The unique identifier of the changelog. Format: `projects//locations//agents//changelogs/`.
&quot;resource&quot;: &quot;A String&quot;, # The affected resource name of the change.
&quot;type&quot;: &quot;A String&quot;, # The affected resource type.
&quot;userEmail&quot;: &quot;A String&quot;, # Email address of the authenticated user.
},
],
&quot;nextPageToken&quot;: &quot;A String&quot;, # Token to retrieve the next page of results, or empty if there are no more results in the list.
}</pre>
</div>
<div class="method">
<code class="details" id="list_next">list_next(previous_request, previous_response)</code>
<pre>Retrieves the next page of results.
Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)
Returns:
A request object that you can call &#x27;execute()&#x27; on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>
</body></html>