blob: 1f574482bb8c85ba0c14ff43fcb58e724bb30824 [file] [log] [blame] [edit]
<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="ces_v1.html">Gemini Enterprise for Customer Experience API</a> . <a href="ces_v1.projects.html">projects</a> . <a href="ces_v1.projects.locations.html">locations</a> . <a href="ces_v1.projects.locations.apps.html">apps</a> . <a href="ces_v1.projects.locations.apps.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">Gets the specified changelog.</p>
<p class="toc_element">
<code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists the changelogs of the specified app.</p>
<p class="toc_element">
<code><a href="#list_next">list_next()</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>Gets the specified changelog.
Args:
name: string, Required. The resource name of the changelog to retrieve. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Changelogs represent a change made to the app or to an resource within the app.
&quot;action&quot;: &quot;A String&quot;, # Output only. The action that was performed on the resource.
&quot;author&quot;: &quot;A String&quot;, # Output only. Email address of the change author.
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The time when the change was made.
&quot;dependentResources&quot;: [ # Output only. The dependent resources that were changed.
{
&quot;a_key&quot;: &quot;&quot;, # Properties of the object.
},
],
&quot;description&quot;: &quot;A String&quot;, # Output only. Description of the change. which typically captures the changed fields in the resource.
&quot;displayName&quot;: &quot;A String&quot;, # Output only. Display name of the change. It typically should be the display name of the resource that was changed.
&quot;name&quot;: &quot;A String&quot;, # Identifier. The unique identifier of the changelog. Format: `projects/{project}/locations/{location}/apps/{app}/changelogs/{changelog}`
&quot;newResource&quot;: { # Output only. The new resource after the change.
&quot;a_key&quot;: &quot;&quot;, # Properties of the object.
},
&quot;originalResource&quot;: { # Output only. The original resource before the change.
&quot;a_key&quot;: &quot;&quot;, # Properties of the object.
},
&quot;resource&quot;: &quot;A String&quot;, # Output only. The resource that was changed.
&quot;resourceType&quot;: &quot;A String&quot;, # Output only. The type of the resource that was changed.
&quot;sequenceNumber&quot;: &quot;A String&quot;, # Output only. The monotonically increasing sequence number of the changelog.
}</pre>
</div>
<div class="method">
<code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Lists the changelogs of the specified app.
Args:
parent: string, Required. The resource name of the app to list changelogs from. (required)
filter: string, Optional. Filter to be applied when listing the changelogs. See https://google.aip.dev/160 for more details. The filter string can be used to filter by `action`, `resource_type`, `resource_name`, `author`, and `create_time`. The `:` comparator can be used for case-insensitive partial matching on string fields, while `=` performs an exact case-sensitive match. Examples: * `action:update` (case-insensitive partial match) * `action=&quot;Create&quot;` (case-sensitive exact match) * `resource_type:agent` * `resource_name:my-agent` * `author:[email protected]` * `create_time &gt; &quot;2025-01-01T00:00:00Z&quot;` * `create_time &lt;= &quot;2025-01-01T00:00:00Z&quot; AND resource_type:tool`
orderBy: string, Optional. Field to sort by. Only &quot;name&quot; and &quot;create_time&quot; is supported. See https://google.aip.dev/132#ordering for more details.
pageSize: integer, Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
pageToken: string, Optional. The next_page_token value returned from a previous list AgentService.ListChangelogs call.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Response message for AgentService.ListChangelogs.
&quot;changelogs&quot;: [ # The list of changelogs.
{ # Changelogs represent a change made to the app or to an resource within the app.
&quot;action&quot;: &quot;A String&quot;, # Output only. The action that was performed on the resource.
&quot;author&quot;: &quot;A String&quot;, # Output only. Email address of the change author.
&quot;createTime&quot;: &quot;A String&quot;, # Output only. The time when the change was made.
&quot;dependentResources&quot;: [ # Output only. The dependent resources that were changed.
{
&quot;a_key&quot;: &quot;&quot;, # Properties of the object.
},
],
&quot;description&quot;: &quot;A String&quot;, # Output only. Description of the change. which typically captures the changed fields in the resource.
&quot;displayName&quot;: &quot;A String&quot;, # Output only. Display name of the change. It typically should be the display name of the resource that was changed.
&quot;name&quot;: &quot;A String&quot;, # Identifier. The unique identifier of the changelog. Format: `projects/{project}/locations/{location}/apps/{app}/changelogs/{changelog}`
&quot;newResource&quot;: { # Output only. The new resource after the change.
&quot;a_key&quot;: &quot;&quot;, # Properties of the object.
},
&quot;originalResource&quot;: { # Output only. The original resource before the change.
&quot;a_key&quot;: &quot;&quot;, # Properties of the object.
},
&quot;resource&quot;: &quot;A String&quot;, # Output only. The resource that was changed.
&quot;resourceType&quot;: &quot;A String&quot;, # Output only. The type of the resource that was changed.
&quot;sequenceNumber&quot;: &quot;A String&quot;, # Output only. The monotonically increasing sequence number of the changelog.
},
],
&quot;nextPageToken&quot;: &quot;A String&quot;, # A token that can be sent as ListChangelogsRequest.page_token to retrieve the next page. Absence of this field indicates there are no subsequent pages.
}</pre>
</div>
<div class="method">
<code class="details" id="list_next">list_next()</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>