Skip to content

Commit 957e20c

Browse files
feat(aiplatform): update the api
#### aiplatform:v1 The following keys were added: - resources.endpoints.methods.fetchPredictOperation (Total Keys: 12) - resources.endpoints.methods.predictLongRunning (Total Keys: 12) - resources.publishers.resources.models.methods.fetchPredictOperation (Total Keys: 12) - resources.publishers.resources.models.methods.predictLongRunning (Total Keys: 12) - resources.reasoningEngines.methods.create (Total Keys: 10) - resources.reasoningEngines.methods.delete (Total Keys: 13) - resources.reasoningEngines.methods.get (Total Keys: 11) - resources.reasoningEngines.methods.list (Total Keys: 16) - resources.reasoningEngines.methods.patch (Total Keys: 15) - resources.reasoningEngines.methods.query (Total Keys: 12) - resources.reasoningEngines.methods.streamQuery (Total Keys: 12) - schemas.GoogleCloudAiplatformV1ColabImage (Total Keys: 3) - schemas.GoogleCloudAiplatformV1GenerationConfig.properties.enableAffectiveDialog.type (Total Keys: 1) - schemas.GoogleCloudAiplatformV1NotebookSoftwareConfig.properties.colabImage.$ref (Total Keys: 1) - schemas.GoogleCloudAiplatformV1PSCAutomationConfig.properties.forwardingRule (Total Keys: 2) - schemas.GoogleCloudAiplatformV1PSCAutomationConfig.properties.ipAddress (Total Keys: 2) #### aiplatform:v1beta1 The following keys were added: - resources.endpoints.methods.fetchPredictOperation (Total Keys: 12) - resources.endpoints.methods.predictLongRunning (Total Keys: 12) - resources.projects.resources.locations.resources.indexes.methods.import (Total Keys: 12) - resources.publishers.resources.models.methods.fetchPredictOperation (Total Keys: 12) - resources.publishers.resources.models.methods.predictLongRunning (Total Keys: 12) - resources.reasoningEngines.methods.create (Total Keys: 10) - resources.reasoningEngines.methods.delete (Total Keys: 13) - resources.reasoningEngines.methods.get (Total Keys: 11) - resources.reasoningEngines.methods.list (Total Keys: 16) - resources.reasoningEngines.methods.patch (Total Keys: 15) - resources.reasoningEngines.methods.query (Total Keys: 12) - resources.reasoningEngines.methods.streamQuery (Total Keys: 12) - resources.reasoningEngines.resources.sessions.methods.appendEvent (Total Keys: 12) - resources.reasoningEngines.resources.sessions.methods.create (Total Keys: 12) - resources.reasoningEngines.resources.sessions.methods.delete (Total Keys: 11) - resources.reasoningEngines.resources.sessions.methods.get (Total Keys: 11) - resources.reasoningEngines.resources.sessions.methods.list (Total Keys: 20) - resources.reasoningEngines.resources.sessions.methods.patch (Total Keys: 15) - resources.reasoningEngines.resources.sessions.resources.events.methods.list (Total Keys: 16) - schemas.GoogleCloudAiplatformV1beta1ColabImage (Total Keys: 3) - schemas.GoogleCloudAiplatformV1beta1GenerationConfig.properties.enableAffectiveDialog.type (Total Keys: 1) - schemas.GoogleCloudAiplatformV1beta1ImportIndexRequest (Total Keys: 33) - schemas.GoogleCloudAiplatformV1beta1NotebookSoftwareConfig.properties.colabImage.$ref (Total Keys: 1) - schemas.GoogleCloudAiplatformV1beta1PSCAutomationConfig.properties.forwardingRule (Total Keys: 2) - schemas.GoogleCloudAiplatformV1beta1PSCAutomationConfig.properties.ipAddress (Total Keys: 2)
1 parent b1ed08d commit 957e20c

File tree

34 files changed

+3767
-347
lines changed

34 files changed

+3767
-347
lines changed

docs/dyn/aiplatform_v1.endpoints.html

Lines changed: 114 additions & 18 deletions
Large diffs are not rendered by default.

docs/dyn/aiplatform_v1.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,11 @@ <h2>Instance Methods</h2>
104104
</p>
105105
<p class="firstline">Returns the publishers Resource.</p>
106106

107+
<p class="toc_element">
108+
<code><a href="aiplatform_v1.reasoningEngines.html">reasoningEngines()</a></code>
109+
</p>
110+
<p class="firstline">Returns the reasoningEngines Resource.</p>
111+
107112
<p class="toc_element">
108113
<code><a href="#close">close()</a></code></p>
109114
<p class="firstline">Close httplib2 connections.</p>

docs/dyn/aiplatform_v1.projects.locations.cachedContents.html

Lines changed: 24 additions & 24 deletions
Large diffs are not rendered by default.

docs/dyn/aiplatform_v1.projects.locations.endpoints.html

Lines changed: 21 additions & 18 deletions
Large diffs are not rendered by default.

docs/dyn/aiplatform_v1.projects.locations.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,11 @@ <h3>Method Details</h3>
286286
{ # The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn.
287287
&quot;parts&quot;: [ # Required. Ordered `Parts` that constitute a single message. Parts may have different IANA MIME types.
288288
{ # A datatype containing media that is part of a multi-part `Content` message. A `Part` consists of data which has an associated datatype. A `Part` can only contain one of the accepted types in `Part.data`. A `Part` must have a fixed IANA MIME type identifying the type and subtype of the media if `inline_data` or `file_data` field is filled with raw bytes.
289-
&quot;codeExecutionResult&quot;: { # Result of executing the [ExecutableCode]. Always follows a `part` containing the [ExecutableCode]. # Optional. Result of executing the [ExecutableCode].
289+
&quot;codeExecutionResult&quot;: { # Result of executing the [ExecutableCode]. Only generated when using the [CodeExecution] tool, and always follows a `part` containing the [ExecutableCode]. # Optional. Result of executing the [ExecutableCode].
290290
&quot;outcome&quot;: &quot;A String&quot;, # Required. Outcome of the code execution.
291291
&quot;output&quot;: &quot;A String&quot;, # Optional. Contains stdout when code execution is successful, stderr or other description otherwise.
292292
},
293-
&quot;executableCode&quot;: { # Code generated by the model that is meant to be executed, and the result returned to the model. Generated when using the [FunctionDeclaration] tool and [FunctionCallingConfig] mode is set to [Mode.CODE]. # Optional. Code generated by the model that is meant to be executed.
293+
&quot;executableCode&quot;: { # Code generated by the model that is meant to be executed, and the result returned to the model. Generated when using the [CodeExecution] tool, in which the code will be automatically executed, and a corresponding [CodeExecutionResult] will also be generated. # Optional. Code generated by the model that is meant to be executed.
294294
&quot;code&quot;: &quot;A String&quot;, # Required. The code to be executed.
295295
&quot;language&quot;: &quot;A String&quot;, # Required. Programming language of the `code`.
296296
},
@@ -374,11 +374,11 @@ <h3>Method Details</h3>
374374
{ # The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn.
375375
&quot;parts&quot;: [ # Required. Ordered `Parts` that constitute a single message. Parts may have different IANA MIME types.
376376
{ # A datatype containing media that is part of a multi-part `Content` message. A `Part` consists of data which has an associated datatype. A `Part` can only contain one of the accepted types in `Part.data`. A `Part` must have a fixed IANA MIME type identifying the type and subtype of the media if `inline_data` or `file_data` field is filled with raw bytes.
377-
&quot;codeExecutionResult&quot;: { # Result of executing the [ExecutableCode]. Always follows a `part` containing the [ExecutableCode]. # Optional. Result of executing the [ExecutableCode].
377+
&quot;codeExecutionResult&quot;: { # Result of executing the [ExecutableCode]. Only generated when using the [CodeExecution] tool, and always follows a `part` containing the [ExecutableCode]. # Optional. Result of executing the [ExecutableCode].
378378
&quot;outcome&quot;: &quot;A String&quot;, # Required. Outcome of the code execution.
379379
&quot;output&quot;: &quot;A String&quot;, # Optional. Contains stdout when code execution is successful, stderr or other description otherwise.
380380
},
381-
&quot;executableCode&quot;: { # Code generated by the model that is meant to be executed, and the result returned to the model. Generated when using the [FunctionDeclaration] tool and [FunctionCallingConfig] mode is set to [Mode.CODE]. # Optional. Code generated by the model that is meant to be executed.
381+
&quot;executableCode&quot;: { # Code generated by the model that is meant to be executed, and the result returned to the model. Generated when using the [CodeExecution] tool, in which the code will be automatically executed, and a corresponding [CodeExecutionResult] will also be generated. # Optional. Code generated by the model that is meant to be executed.
382382
&quot;code&quot;: &quot;A String&quot;, # Required. The code to be executed.
383383
&quot;language&quot;: &quot;A String&quot;, # Required. Programming language of the `code`.
384384
},
@@ -453,11 +453,11 @@ <h3>Method Details</h3>
453453
&quot;content&quot;: { # The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn. # Optional. Input content to corroborate, only text format is supported for now.
454454
&quot;parts&quot;: [ # Required. Ordered `Parts` that constitute a single message. Parts may have different IANA MIME types.
455455
{ # A datatype containing media that is part of a multi-part `Content` message. A `Part` consists of data which has an associated datatype. A `Part` can only contain one of the accepted types in `Part.data`. A `Part` must have a fixed IANA MIME type identifying the type and subtype of the media if `inline_data` or `file_data` field is filled with raw bytes.
456-
&quot;codeExecutionResult&quot;: { # Result of executing the [ExecutableCode]. Always follows a `part` containing the [ExecutableCode]. # Optional. Result of executing the [ExecutableCode].
456+
&quot;codeExecutionResult&quot;: { # Result of executing the [ExecutableCode]. Only generated when using the [CodeExecution] tool, and always follows a `part` containing the [ExecutableCode]. # Optional. Result of executing the [ExecutableCode].
457457
&quot;outcome&quot;: &quot;A String&quot;, # Required. Outcome of the code execution.
458458
&quot;output&quot;: &quot;A String&quot;, # Optional. Contains stdout when code execution is successful, stderr or other description otherwise.
459459
},
460-
&quot;executableCode&quot;: { # Code generated by the model that is meant to be executed, and the result returned to the model. Generated when using the [FunctionDeclaration] tool and [FunctionCallingConfig] mode is set to [Mode.CODE]. # Optional. Code generated by the model that is meant to be executed.
460+
&quot;executableCode&quot;: { # Code generated by the model that is meant to be executed, and the result returned to the model. Generated when using the [CodeExecution] tool, in which the code will be automatically executed, and a corresponding [CodeExecutionResult] will also be generated. # Optional. Code generated by the model that is meant to be executed.
461461
&quot;code&quot;: &quot;A String&quot;, # Required. The code to be executed.
462462
&quot;language&quot;: &quot;A String&quot;, # Required. Programming language of the `code`.
463463
},
@@ -735,11 +735,11 @@ <h3>Method Details</h3>
735735
{ # The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn.
736736
&quot;parts&quot;: [ # Required. Ordered `Parts` that constitute a single message. Parts may have different IANA MIME types.
737737
{ # A datatype containing media that is part of a multi-part `Content` message. A `Part` consists of data which has an associated datatype. A `Part` can only contain one of the accepted types in `Part.data`. A `Part` must have a fixed IANA MIME type identifying the type and subtype of the media if `inline_data` or `file_data` field is filled with raw bytes.
738-
&quot;codeExecutionResult&quot;: { # Result of executing the [ExecutableCode]. Always follows a `part` containing the [ExecutableCode]. # Optional. Result of executing the [ExecutableCode].
738+
&quot;codeExecutionResult&quot;: { # Result of executing the [ExecutableCode]. Only generated when using the [CodeExecution] tool, and always follows a `part` containing the [ExecutableCode]. # Optional. Result of executing the [ExecutableCode].
739739
&quot;outcome&quot;: &quot;A String&quot;, # Required. Outcome of the code execution.
740740
&quot;output&quot;: &quot;A String&quot;, # Optional. Contains stdout when code execution is successful, stderr or other description otherwise.
741741
},
742-
&quot;executableCode&quot;: { # Code generated by the model that is meant to be executed, and the result returned to the model. Generated when using the [FunctionDeclaration] tool and [FunctionCallingConfig] mode is set to [Mode.CODE]. # Optional. Code generated by the model that is meant to be executed.
742+
&quot;executableCode&quot;: { # Code generated by the model that is meant to be executed, and the result returned to the model. Generated when using the [CodeExecution] tool, in which the code will be automatically executed, and a corresponding [CodeExecutionResult] will also be generated. # Optional. Code generated by the model that is meant to be executed.
743743
&quot;code&quot;: &quot;A String&quot;, # Required. The code to be executed.
744744
&quot;language&quot;: &quot;A String&quot;, # Required. Programming language of the `code`.
745745
},
@@ -826,11 +826,11 @@ <h3>Method Details</h3>
826826
{ # The base structured datatype containing multi-part content of a message. A `Content` includes a `role` field designating the producer of the `Content` and a `parts` field containing multi-part data that contains the content of the message turn.
827827
&quot;parts&quot;: [ # Required. Ordered `Parts` that constitute a single message. Parts may have different IANA MIME types.
828828
{ # A datatype containing media that is part of a multi-part `Content` message. A `Part` consists of data which has an associated datatype. A `Part` can only contain one of the accepted types in `Part.data`. A `Part` must have a fixed IANA MIME type identifying the type and subtype of the media if `inline_data` or `file_data` field is filled with raw bytes.
829-
&quot;codeExecutionResult&quot;: { # Result of executing the [ExecutableCode]. Always follows a `part` containing the [ExecutableCode]. # Optional. Result of executing the [ExecutableCode].
829+
&quot;codeExecutionResult&quot;: { # Result of executing the [ExecutableCode]. Only generated when using the [CodeExecution] tool, and always follows a `part` containing the [ExecutableCode]. # Optional. Result of executing the [ExecutableCode].
830830
&quot;outcome&quot;: &quot;A String&quot;, # Required. Outcome of the code execution.
831831
&quot;output&quot;: &quot;A String&quot;, # Optional. Contains stdout when code execution is successful, stderr or other description otherwise.
832832
},
833-
&quot;executableCode&quot;: { # Code generated by the model that is meant to be executed, and the result returned to the model. Generated when using the [FunctionDeclaration] tool and [FunctionCallingConfig] mode is set to [Mode.CODE]. # Optional. Code generated by the model that is meant to be executed.
833+
&quot;executableCode&quot;: { # Code generated by the model that is meant to be executed, and the result returned to the model. Generated when using the [CodeExecution] tool, in which the code will be automatically executed, and a corresponding [CodeExecutionResult] will also be generated. # Optional. Code generated by the model that is meant to be executed.
834834
&quot;code&quot;: &quot;A String&quot;, # Required. The code to be executed.
835835
&quot;language&quot;: &quot;A String&quot;, # Required. Programming language of the `code`.
836836
},

0 commit comments

Comments
 (0)