@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20230727 → 0.0.20230809
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +10 -4
- package/package.json +1 -1
- package/tests.ts +4 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230809
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -4747,6 +4747,9 @@ declare namespace gapi.client {
|
|
|
4747
4747
|
/** Runtime config of the pipeline. */
|
|
4748
4748
|
runtimeConfig?:
|
|
4749
4749
|
GoogleCloudAiplatformV1PipelineJobRuntimeConfig;
|
|
4750
|
+
/** Output only. The schedule resource name. Only returned if the Pipeline is created by Schedule API. */
|
|
4751
|
+
scheduleName?:
|
|
4752
|
+
string;
|
|
4750
4753
|
/**
|
|
4751
4754
|
* The service account that the pipeline workload runs as. If not specified, the Compute Engine default service account in the project will be used. See
|
|
4752
4755
|
* https://cloud.google.com/compute/docs/access/service-accounts#default_service_account Users starting the pipeline must have the `iam.serviceAccounts.actAs` permission on this
|
|
@@ -5082,6 +5085,9 @@ declare namespace gapi.client {
|
|
|
5082
5085
|
/** Optional. Deploy the PublisherModel to Vertex Endpoint. */
|
|
5083
5086
|
deploy?:
|
|
5084
5087
|
GoogleCloudAiplatformV1PublisherModelCallToActionDeploy;
|
|
5088
|
+
/** Optional. Open evaluation pipeline of the PublisherModel. */
|
|
5089
|
+
openEvaluationPipeline?:
|
|
5090
|
+
GoogleCloudAiplatformV1PublisherModelCallToActionRegionalResourceReferences;
|
|
5085
5091
|
/** Optional. Open fine-tuning pipeline of the PublisherModel. */
|
|
5086
5092
|
openFineTuningPipeline?:
|
|
5087
5093
|
GoogleCloudAiplatformV1PublisherModelCallToActionRegionalResourceReferences;
|
|
@@ -8918,9 +8924,9 @@ declare namespace gapi.client {
|
|
|
8918
8924
|
name?:
|
|
8919
8925
|
string;
|
|
8920
8926
|
/**
|
|
8921
|
-
* The normal response of the operation
|
|
8922
|
-
*
|
|
8923
|
-
*
|
|
8927
|
+
* The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original
|
|
8928
|
+
* method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original
|
|
8929
|
+
* method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
|
|
8924
8930
|
*/
|
|
8925
8931
|
response?:
|
|
8926
8932
|
{ [P in string]: any };
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230809
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -5460,6 +5460,7 @@ gapi.load('client', async () => {
|
|
|
5460
5460
|
A: 42
|
|
5461
5461
|
},
|
|
5462
5462
|
},
|
|
5463
|
+
scheduleName: "Test string",
|
|
5463
5464
|
serviceAccount: "Test string",
|
|
5464
5465
|
startTime: "Test string",
|
|
5465
5466
|
state: "Test string",
|
|
@@ -5840,6 +5841,7 @@ gapi.load('client', async () => {
|
|
|
5840
5841
|
A: 42
|
|
5841
5842
|
},
|
|
5842
5843
|
},
|
|
5844
|
+
scheduleName: "Test string",
|
|
5843
5845
|
serviceAccount: "Test string",
|
|
5844
5846
|
startTime: "Test string",
|
|
5845
5847
|
state: "Test string",
|
|
@@ -6102,6 +6104,7 @@ gapi.load('client', async () => {
|
|
|
6102
6104
|
A: 42
|
|
6103
6105
|
},
|
|
6104
6106
|
},
|
|
6107
|
+
scheduleName: "Test string",
|
|
6105
6108
|
serviceAccount: "Test string",
|
|
6106
6109
|
startTime: "Test string",
|
|
6107
6110
|
state: "Test string",
|