@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20230808 → 0.0.20230812
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 +409 -29
- package/package.json +1 -1
- package/tests.ts +65 -23
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=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230812
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -913,6 +913,16 @@ declare namespace gapi.client {
|
|
|
913
913
|
genericMetadata?:
|
|
914
914
|
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
915
915
|
}
|
|
916
|
+
interface GoogleCloudAiplatformV1beta1CreateExtensionControllerOperationMetadata {
|
|
917
|
+
/** The common part of the operation metadata. */
|
|
918
|
+
genericMetadata?:
|
|
919
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
920
|
+
}
|
|
921
|
+
interface GoogleCloudAiplatformV1beta1CreateExtensionDeploymentOperationMetadata {
|
|
922
|
+
/** The common part of the operation metadata. */
|
|
923
|
+
genericMetadata?:
|
|
924
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
925
|
+
}
|
|
916
926
|
interface GoogleCloudAiplatformV1beta1CreateFeatureOperationMetadata {
|
|
917
927
|
/** Operation metadata for Feature. */
|
|
918
928
|
genericMetadata?:
|
|
@@ -2488,27 +2498,6 @@ declare namespace gapi.client {
|
|
|
2488
2498
|
/** Required. Immutable. Type of Feature value. */
|
|
2489
2499
|
valueType?:
|
|
2490
2500
|
string;
|
|
2491
|
-
/** Output only. Timestamp when this version was created. */
|
|
2492
|
-
versionCreateTime?:
|
|
2493
|
-
string;
|
|
2494
|
-
/** The description of this version. */
|
|
2495
|
-
versionDescription?:
|
|
2496
|
-
string;
|
|
2497
|
-
/**
|
|
2498
|
-
* Output only. Immutable. The version ID of the feature. It is an auto-incrementing decimal number in string representation. A new version is committed when a new model version is
|
|
2499
|
-
* created under an existing feature id.
|
|
2500
|
-
*/
|
|
2501
|
-
versionId?:
|
|
2502
|
-
string;
|
|
2503
|
-
/**
|
|
2504
|
-
* The labels with user-defined metadata to organize your versions. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters,
|
|
2505
|
-
* numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.
|
|
2506
|
-
*/
|
|
2507
|
-
versionLabels?:
|
|
2508
|
-
{ [P in string]: string };
|
|
2509
|
-
/** Output only. Timestamp when this version was most recently updated. */
|
|
2510
|
-
versionUpdateTime?:
|
|
2511
|
-
string;
|
|
2512
2501
|
}
|
|
2513
2502
|
interface GoogleCloudAiplatformV1beta1FeatureMonitoringStatsAnomaly {
|
|
2514
2503
|
/** Output only. The stats and anomalies generated at specific timestamp. */
|
|
@@ -3019,6 +3008,11 @@ declare namespace gapi.client {
|
|
|
3019
3008
|
// tslint:disable-next-line:no-empty-interface
|
|
3020
3009
|
interface GoogleCloudAiplatformV1beta1ImportDataResponse {
|
|
3021
3010
|
}
|
|
3011
|
+
interface GoogleCloudAiplatformV1beta1ImportExtensionOperationMetadata {
|
|
3012
|
+
/** The common part of the operation metadata. */
|
|
3013
|
+
genericMetadata?:
|
|
3014
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
3015
|
+
}
|
|
3022
3016
|
interface GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata {
|
|
3023
3017
|
/** List of ImportFeatureValues operations running under a single EntityType that are blocking this operation. */
|
|
3024
3018
|
blockingOperationIds?:
|
|
@@ -4944,6 +4938,12 @@ declare namespace gapi.client {
|
|
|
4944
4938
|
/** Required. The display name of the NotebookRuntime. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
|
|
4945
4939
|
displayName?:
|
|
4946
4940
|
string;
|
|
4941
|
+
/**
|
|
4942
|
+
* Output only. Timestamp when this NotebookRuntime will be expired: 1. System Predefined NotebookRuntime: 24 hours after creation. After expiration, system predifined runtime will be
|
|
4943
|
+
* deleted. 2. User created NotebookRuntime: 6 months after last upgrade. After expiration, user created runtime will be stopped and allowed for upgrade.
|
|
4944
|
+
*/
|
|
4945
|
+
expirationTime?:
|
|
4946
|
+
string;
|
|
4947
4947
|
/** Output only. The health state of the NotebookRuntime. */
|
|
4948
4948
|
healthState?:
|
|
4949
4949
|
string;
|
|
@@ -5148,6 +5148,9 @@ declare namespace gapi.client {
|
|
|
5148
5148
|
/** Runtime config of the pipeline. */
|
|
5149
5149
|
runtimeConfig?:
|
|
5150
5150
|
GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfig;
|
|
5151
|
+
/** Output only. The schedule resource name. Only returned if the Pipeline is created by Schedule API. */
|
|
5152
|
+
scheduleName?:
|
|
5153
|
+
string;
|
|
5151
5154
|
/**
|
|
5152
5155
|
* 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
|
|
5153
5156
|
* 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
|
|
@@ -5486,6 +5489,9 @@ declare namespace gapi.client {
|
|
|
5486
5489
|
/** Optional. Deploy the PublisherModel to Vertex Endpoint. */
|
|
5487
5490
|
deploy?:
|
|
5488
5491
|
GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeploy;
|
|
5492
|
+
/** Optional. Open evaluation pipeline of the PublisherModel. */
|
|
5493
|
+
openEvaluationPipeline?:
|
|
5494
|
+
GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences;
|
|
5489
5495
|
/** Optional. Open fine-tuning pipeline of the PublisherModel. */
|
|
5490
5496
|
openFineTuningPipeline?:
|
|
5491
5497
|
GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences;
|
|
@@ -5839,12 +5845,9 @@ declare namespace gapi.client {
|
|
|
5839
5845
|
/** Optional. Disk spec for the machine in this node pool. */
|
|
5840
5846
|
diskSpec?:
|
|
5841
5847
|
GoogleCloudAiplatformV1beta1DiskSpec;
|
|
5842
|
-
/**
|
|
5848
|
+
/** Immutable. The unique ID in a PersistentResource to refer the this resource pool. User can specify it if need to use it, otherwise we will generate it automatically. */
|
|
5843
5849
|
id?:
|
|
5844
5850
|
string;
|
|
5845
|
-
/** Output only. The number of machines currently not in use by training jobs for this resource pool. Deprecated. Use `used_replica_count` instead. */
|
|
5846
|
-
idleReplicaCount?:
|
|
5847
|
-
string;
|
|
5848
5851
|
/** Required. Immutable. The specification of a single machine. */
|
|
5849
5852
|
machineSpec?:
|
|
5850
5853
|
GoogleCloudAiplatformV1beta1MachineSpec;
|
|
@@ -6051,6 +6054,9 @@ declare namespace gapi.client {
|
|
|
6051
6054
|
string;
|
|
6052
6055
|
}
|
|
6053
6056
|
interface GoogleCloudAiplatformV1beta1Scheduling {
|
|
6057
|
+
/** Optional. Indicates if the job should retry for internal errors after the job starts running. If true, overrides `Scheduling.restart_job_on_worker_restart` to false. */
|
|
6058
|
+
disableRetries?:
|
|
6059
|
+
boolean;
|
|
6054
6060
|
/** Restarts the entire CustomJob if a worker gets restarted. This feature can be used by distributed training jobs that are not resilient to workers leaving and joining a job. */
|
|
6055
6061
|
restartJobOnWorkerRestart?:
|
|
6056
6062
|
boolean;
|
|
@@ -9504,9 +9510,9 @@ declare namespace gapi.client {
|
|
|
9504
9510
|
name?:
|
|
9505
9511
|
string;
|
|
9506
9512
|
/**
|
|
9507
|
-
* The normal response of the operation
|
|
9508
|
-
*
|
|
9509
|
-
*
|
|
9513
|
+
* 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
|
|
9514
|
+
* 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
|
|
9515
|
+
* method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
|
|
9510
9516
|
*/
|
|
9511
9517
|
response?:
|
|
9512
9518
|
{ [P in string]: any };
|
|
@@ -15841,6 +15847,378 @@ declare namespace gapi.client {
|
|
|
15841
15847
|
string;
|
|
15842
15848
|
}): Request<GoogleLongrunningOperation>;
|
|
15843
15849
|
}
|
|
15850
|
+
interface FeaturesResource {
|
|
15851
|
+
operations:
|
|
15852
|
+
OperationsResource;
|
|
15853
|
+
}
|
|
15854
|
+
interface OperationsResource {
|
|
15855
|
+
/**
|
|
15856
|
+
* Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't
|
|
15857
|
+
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
15858
|
+
*/
|
|
15859
|
+
delete(request?: {
|
|
15860
|
+
/** V1 error format. */
|
|
15861
|
+
"$.xgafv"?:
|
|
15862
|
+
string;
|
|
15863
|
+
/** OAuth access token. */
|
|
15864
|
+
access_token?:
|
|
15865
|
+
string;
|
|
15866
|
+
/** Data format for response. */
|
|
15867
|
+
alt?:
|
|
15868
|
+
string;
|
|
15869
|
+
/** JSONP */
|
|
15870
|
+
callback?:
|
|
15871
|
+
string;
|
|
15872
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
15873
|
+
fields?:
|
|
15874
|
+
string;
|
|
15875
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
15876
|
+
key?:
|
|
15877
|
+
string;
|
|
15878
|
+
/** The name of the operation resource to be deleted. */
|
|
15879
|
+
name:
|
|
15880
|
+
string;
|
|
15881
|
+
/** OAuth 2.0 token for the current user. */
|
|
15882
|
+
oauth_token?:
|
|
15883
|
+
string;
|
|
15884
|
+
/** Returns response with indentations and line breaks. */
|
|
15885
|
+
prettyPrint?:
|
|
15886
|
+
boolean;
|
|
15887
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
15888
|
+
quotaUser?:
|
|
15889
|
+
string;
|
|
15890
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15891
|
+
upload_protocol?:
|
|
15892
|
+
string;
|
|
15893
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15894
|
+
uploadType?:
|
|
15895
|
+
string;
|
|
15896
|
+
}): Request<{}>;
|
|
15897
|
+
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
15898
|
+
get(request?: {
|
|
15899
|
+
/** V1 error format. */
|
|
15900
|
+
"$.xgafv"?:
|
|
15901
|
+
string;
|
|
15902
|
+
/** OAuth access token. */
|
|
15903
|
+
access_token?:
|
|
15904
|
+
string;
|
|
15905
|
+
/** Data format for response. */
|
|
15906
|
+
alt?:
|
|
15907
|
+
string;
|
|
15908
|
+
/** JSONP */
|
|
15909
|
+
callback?:
|
|
15910
|
+
string;
|
|
15911
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
15912
|
+
fields?:
|
|
15913
|
+
string;
|
|
15914
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
15915
|
+
key?:
|
|
15916
|
+
string;
|
|
15917
|
+
/** The name of the operation resource. */
|
|
15918
|
+
name:
|
|
15919
|
+
string;
|
|
15920
|
+
/** OAuth 2.0 token for the current user. */
|
|
15921
|
+
oauth_token?:
|
|
15922
|
+
string;
|
|
15923
|
+
/** Returns response with indentations and line breaks. */
|
|
15924
|
+
prettyPrint?:
|
|
15925
|
+
boolean;
|
|
15926
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
15927
|
+
quotaUser?:
|
|
15928
|
+
string;
|
|
15929
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15930
|
+
upload_protocol?:
|
|
15931
|
+
string;
|
|
15932
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15933
|
+
uploadType?:
|
|
15934
|
+
string;
|
|
15935
|
+
}): Request<GoogleLongrunningOperation>;
|
|
15936
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
15937
|
+
list(request?: {
|
|
15938
|
+
/** V1 error format. */
|
|
15939
|
+
"$.xgafv"?:
|
|
15940
|
+
string;
|
|
15941
|
+
/** OAuth access token. */
|
|
15942
|
+
access_token?:
|
|
15943
|
+
string;
|
|
15944
|
+
/** Data format for response. */
|
|
15945
|
+
alt?:
|
|
15946
|
+
string;
|
|
15947
|
+
/** JSONP */
|
|
15948
|
+
callback?:
|
|
15949
|
+
string;
|
|
15950
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
15951
|
+
fields?:
|
|
15952
|
+
string;
|
|
15953
|
+
/** The standard list filter. */
|
|
15954
|
+
filter?:
|
|
15955
|
+
string;
|
|
15956
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
15957
|
+
key?:
|
|
15958
|
+
string;
|
|
15959
|
+
/** The name of the operation's parent resource. */
|
|
15960
|
+
name:
|
|
15961
|
+
string;
|
|
15962
|
+
/** OAuth 2.0 token for the current user. */
|
|
15963
|
+
oauth_token?:
|
|
15964
|
+
string;
|
|
15965
|
+
/** The standard list page size. */
|
|
15966
|
+
pageSize?:
|
|
15967
|
+
number;
|
|
15968
|
+
/** The standard list page token. */
|
|
15969
|
+
pageToken?:
|
|
15970
|
+
string;
|
|
15971
|
+
/** Returns response with indentations and line breaks. */
|
|
15972
|
+
prettyPrint?:
|
|
15973
|
+
boolean;
|
|
15974
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
15975
|
+
quotaUser?:
|
|
15976
|
+
string;
|
|
15977
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15978
|
+
upload_protocol?:
|
|
15979
|
+
string;
|
|
15980
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15981
|
+
uploadType?:
|
|
15982
|
+
string;
|
|
15983
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
15984
|
+
/**
|
|
15985
|
+
* Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is
|
|
15986
|
+
* immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns
|
|
15987
|
+
* `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even
|
|
15988
|
+
* an immediate response is no guarantee that the operation is done.
|
|
15989
|
+
*/
|
|
15990
|
+
wait(request?: {
|
|
15991
|
+
/** V1 error format. */
|
|
15992
|
+
"$.xgafv"?:
|
|
15993
|
+
string;
|
|
15994
|
+
/** OAuth access token. */
|
|
15995
|
+
access_token?:
|
|
15996
|
+
string;
|
|
15997
|
+
/** Data format for response. */
|
|
15998
|
+
alt?:
|
|
15999
|
+
string;
|
|
16000
|
+
/** JSONP */
|
|
16001
|
+
callback?:
|
|
16002
|
+
string;
|
|
16003
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16004
|
+
fields?:
|
|
16005
|
+
string;
|
|
16006
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
16007
|
+
key?:
|
|
16008
|
+
string;
|
|
16009
|
+
/** The name of the operation resource to wait on. */
|
|
16010
|
+
name:
|
|
16011
|
+
string;
|
|
16012
|
+
/** OAuth 2.0 token for the current user. */
|
|
16013
|
+
oauth_token?:
|
|
16014
|
+
string;
|
|
16015
|
+
/** Returns response with indentations and line breaks. */
|
|
16016
|
+
prettyPrint?:
|
|
16017
|
+
boolean;
|
|
16018
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
16019
|
+
quotaUser?:
|
|
16020
|
+
string;
|
|
16021
|
+
/**
|
|
16022
|
+
* The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also
|
|
16023
|
+
* specified, the shorter one will be used.
|
|
16024
|
+
*/
|
|
16025
|
+
timeout?:
|
|
16026
|
+
string;
|
|
16027
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16028
|
+
upload_protocol?:
|
|
16029
|
+
string;
|
|
16030
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16031
|
+
uploadType?:
|
|
16032
|
+
string;
|
|
16033
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16034
|
+
}
|
|
16035
|
+
interface FeatureGroupsResource {
|
|
16036
|
+
features:
|
|
16037
|
+
FeaturesResource;
|
|
16038
|
+
operations:
|
|
16039
|
+
OperationsResource;
|
|
16040
|
+
}
|
|
16041
|
+
interface OperationsResource {
|
|
16042
|
+
/**
|
|
16043
|
+
* Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't
|
|
16044
|
+
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
16045
|
+
*/
|
|
16046
|
+
delete(request?: {
|
|
16047
|
+
/** V1 error format. */
|
|
16048
|
+
"$.xgafv"?:
|
|
16049
|
+
string;
|
|
16050
|
+
/** OAuth access token. */
|
|
16051
|
+
access_token?:
|
|
16052
|
+
string;
|
|
16053
|
+
/** Data format for response. */
|
|
16054
|
+
alt?:
|
|
16055
|
+
string;
|
|
16056
|
+
/** JSONP */
|
|
16057
|
+
callback?:
|
|
16058
|
+
string;
|
|
16059
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16060
|
+
fields?:
|
|
16061
|
+
string;
|
|
16062
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
16063
|
+
key?:
|
|
16064
|
+
string;
|
|
16065
|
+
/** The name of the operation resource to be deleted. */
|
|
16066
|
+
name:
|
|
16067
|
+
string;
|
|
16068
|
+
/** OAuth 2.0 token for the current user. */
|
|
16069
|
+
oauth_token?:
|
|
16070
|
+
string;
|
|
16071
|
+
/** Returns response with indentations and line breaks. */
|
|
16072
|
+
prettyPrint?:
|
|
16073
|
+
boolean;
|
|
16074
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
16075
|
+
quotaUser?:
|
|
16076
|
+
string;
|
|
16077
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16078
|
+
upload_protocol?:
|
|
16079
|
+
string;
|
|
16080
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16081
|
+
uploadType?:
|
|
16082
|
+
string;
|
|
16083
|
+
}): Request<{}>;
|
|
16084
|
+
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
16085
|
+
get(request?: {
|
|
16086
|
+
/** V1 error format. */
|
|
16087
|
+
"$.xgafv"?:
|
|
16088
|
+
string;
|
|
16089
|
+
/** OAuth access token. */
|
|
16090
|
+
access_token?:
|
|
16091
|
+
string;
|
|
16092
|
+
/** Data format for response. */
|
|
16093
|
+
alt?:
|
|
16094
|
+
string;
|
|
16095
|
+
/** JSONP */
|
|
16096
|
+
callback?:
|
|
16097
|
+
string;
|
|
16098
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16099
|
+
fields?:
|
|
16100
|
+
string;
|
|
16101
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
16102
|
+
key?:
|
|
16103
|
+
string;
|
|
16104
|
+
/** The name of the operation resource. */
|
|
16105
|
+
name:
|
|
16106
|
+
string;
|
|
16107
|
+
/** OAuth 2.0 token for the current user. */
|
|
16108
|
+
oauth_token?:
|
|
16109
|
+
string;
|
|
16110
|
+
/** Returns response with indentations and line breaks. */
|
|
16111
|
+
prettyPrint?:
|
|
16112
|
+
boolean;
|
|
16113
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
16114
|
+
quotaUser?:
|
|
16115
|
+
string;
|
|
16116
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16117
|
+
upload_protocol?:
|
|
16118
|
+
string;
|
|
16119
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16120
|
+
uploadType?:
|
|
16121
|
+
string;
|
|
16122
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16123
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
16124
|
+
list(request?: {
|
|
16125
|
+
/** V1 error format. */
|
|
16126
|
+
"$.xgafv"?:
|
|
16127
|
+
string;
|
|
16128
|
+
/** OAuth access token. */
|
|
16129
|
+
access_token?:
|
|
16130
|
+
string;
|
|
16131
|
+
/** Data format for response. */
|
|
16132
|
+
alt?:
|
|
16133
|
+
string;
|
|
16134
|
+
/** JSONP */
|
|
16135
|
+
callback?:
|
|
16136
|
+
string;
|
|
16137
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16138
|
+
fields?:
|
|
16139
|
+
string;
|
|
16140
|
+
/** The standard list filter. */
|
|
16141
|
+
filter?:
|
|
16142
|
+
string;
|
|
16143
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
16144
|
+
key?:
|
|
16145
|
+
string;
|
|
16146
|
+
/** The name of the operation's parent resource. */
|
|
16147
|
+
name:
|
|
16148
|
+
string;
|
|
16149
|
+
/** OAuth 2.0 token for the current user. */
|
|
16150
|
+
oauth_token?:
|
|
16151
|
+
string;
|
|
16152
|
+
/** The standard list page size. */
|
|
16153
|
+
pageSize?:
|
|
16154
|
+
number;
|
|
16155
|
+
/** The standard list page token. */
|
|
16156
|
+
pageToken?:
|
|
16157
|
+
string;
|
|
16158
|
+
/** Returns response with indentations and line breaks. */
|
|
16159
|
+
prettyPrint?:
|
|
16160
|
+
boolean;
|
|
16161
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
16162
|
+
quotaUser?:
|
|
16163
|
+
string;
|
|
16164
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16165
|
+
upload_protocol?:
|
|
16166
|
+
string;
|
|
16167
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16168
|
+
uploadType?:
|
|
16169
|
+
string;
|
|
16170
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
16171
|
+
/**
|
|
16172
|
+
* Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is
|
|
16173
|
+
* immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns
|
|
16174
|
+
* `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even
|
|
16175
|
+
* an immediate response is no guarantee that the operation is done.
|
|
16176
|
+
*/
|
|
16177
|
+
wait(request?: {
|
|
16178
|
+
/** V1 error format. */
|
|
16179
|
+
"$.xgafv"?:
|
|
16180
|
+
string;
|
|
16181
|
+
/** OAuth access token. */
|
|
16182
|
+
access_token?:
|
|
16183
|
+
string;
|
|
16184
|
+
/** Data format for response. */
|
|
16185
|
+
alt?:
|
|
16186
|
+
string;
|
|
16187
|
+
/** JSONP */
|
|
16188
|
+
callback?:
|
|
16189
|
+
string;
|
|
16190
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16191
|
+
fields?:
|
|
16192
|
+
string;
|
|
16193
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
16194
|
+
key?:
|
|
16195
|
+
string;
|
|
16196
|
+
/** The name of the operation resource to wait on. */
|
|
16197
|
+
name:
|
|
16198
|
+
string;
|
|
16199
|
+
/** OAuth 2.0 token for the current user. */
|
|
16200
|
+
oauth_token?:
|
|
16201
|
+
string;
|
|
16202
|
+
/** Returns response with indentations and line breaks. */
|
|
16203
|
+
prettyPrint?:
|
|
16204
|
+
boolean;
|
|
16205
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
16206
|
+
quotaUser?:
|
|
16207
|
+
string;
|
|
16208
|
+
/**
|
|
16209
|
+
* The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also
|
|
16210
|
+
* specified, the shorter one will be used.
|
|
16211
|
+
*/
|
|
16212
|
+
timeout?:
|
|
16213
|
+
string;
|
|
16214
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16215
|
+
upload_protocol?:
|
|
16216
|
+
string;
|
|
16217
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16218
|
+
uploadType?:
|
|
16219
|
+
string;
|
|
16220
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16221
|
+
}
|
|
15844
16222
|
interface FeatureViewsResource {
|
|
15845
16223
|
operations:
|
|
15846
16224
|
OperationsResource;
|
|
@@ -35450,6 +35828,8 @@ declare namespace gapi.client {
|
|
|
35450
35828
|
ExtensionControllersResource;
|
|
35451
35829
|
extensions:
|
|
35452
35830
|
ExtensionsResource;
|
|
35831
|
+
featureGroups:
|
|
35832
|
+
FeatureGroupsResource;
|
|
35453
35833
|
featureOnlineStores:
|
|
35454
35834
|
FeatureOnlineStoresResource;
|
|
35455
35835
|
featurestores:
|
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: 20230812
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -477,6 +477,7 @@ gapi.load('client', async () => {
|
|
|
477
477
|
"Test string"
|
|
478
478
|
],
|
|
479
479
|
scheduling: {
|
|
480
|
+
disableRetries: true,
|
|
480
481
|
restartJobOnWorkerRestart: true,
|
|
481
482
|
timeout: "Test string",
|
|
482
483
|
},
|
|
@@ -2309,6 +2310,62 @@ gapi.load('client', async () => {
|
|
|
2309
2310
|
name: "Test string",
|
|
2310
2311
|
timeout: "Test string",
|
|
2311
2312
|
});
|
|
2313
|
+
/**
|
|
2314
|
+
* Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support
|
|
2315
|
+
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
2316
|
+
*/
|
|
2317
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.features.operations.delete({
|
|
2318
|
+
name: "Test string",
|
|
2319
|
+
});
|
|
2320
|
+
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
2321
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.features.operations.get({
|
|
2322
|
+
name: "Test string",
|
|
2323
|
+
});
|
|
2324
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
2325
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.features.operations.list({
|
|
2326
|
+
filter: "Test string",
|
|
2327
|
+
name: "Test string",
|
|
2328
|
+
pageSize: 42,
|
|
2329
|
+
pageToken: "Test string",
|
|
2330
|
+
});
|
|
2331
|
+
/**
|
|
2332
|
+
* Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is
|
|
2333
|
+
* immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns
|
|
2334
|
+
* `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an
|
|
2335
|
+
* immediate response is no guarantee that the operation is done.
|
|
2336
|
+
*/
|
|
2337
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.features.operations.wait({
|
|
2338
|
+
name: "Test string",
|
|
2339
|
+
timeout: "Test string",
|
|
2340
|
+
});
|
|
2341
|
+
/**
|
|
2342
|
+
* Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support
|
|
2343
|
+
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
2344
|
+
*/
|
|
2345
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.operations.delete({
|
|
2346
|
+
name: "Test string",
|
|
2347
|
+
});
|
|
2348
|
+
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
2349
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.operations.get({
|
|
2350
|
+
name: "Test string",
|
|
2351
|
+
});
|
|
2352
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
2353
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.operations.list({
|
|
2354
|
+
filter: "Test string",
|
|
2355
|
+
name: "Test string",
|
|
2356
|
+
pageSize: 42,
|
|
2357
|
+
pageToken: "Test string",
|
|
2358
|
+
});
|
|
2359
|
+
/**
|
|
2360
|
+
* Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is
|
|
2361
|
+
* immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns
|
|
2362
|
+
* `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an
|
|
2363
|
+
* immediate response is no guarantee that the operation is done.
|
|
2364
|
+
*/
|
|
2365
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.operations.wait({
|
|
2366
|
+
name: "Test string",
|
|
2367
|
+
timeout: "Test string",
|
|
2368
|
+
});
|
|
2312
2369
|
/**
|
|
2313
2370
|
* Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support
|
|
2314
2371
|
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
@@ -2911,13 +2968,6 @@ gapi.load('client', async () => {
|
|
|
2911
2968
|
name: "Test string",
|
|
2912
2969
|
updateTime: "Test string",
|
|
2913
2970
|
valueType: "Test string",
|
|
2914
|
-
versionCreateTime: "Test string",
|
|
2915
|
-
versionDescription: "Test string",
|
|
2916
|
-
versionId: "Test string",
|
|
2917
|
-
versionLabels: {
|
|
2918
|
-
A: "Test string"
|
|
2919
|
-
},
|
|
2920
|
-
versionUpdateTime: "Test string",
|
|
2921
2971
|
},
|
|
2922
2972
|
featureId: "Test string",
|
|
2923
2973
|
parent: "Test string",
|
|
@@ -2982,13 +3032,6 @@ gapi.load('client', async () => {
|
|
|
2982
3032
|
name: "Test string",
|
|
2983
3033
|
updateTime: "Test string",
|
|
2984
3034
|
valueType: "Test string",
|
|
2985
|
-
versionCreateTime: "Test string",
|
|
2986
|
-
versionDescription: "Test string",
|
|
2987
|
-
versionId: "Test string",
|
|
2988
|
-
versionLabels: {
|
|
2989
|
-
A: "Test string"
|
|
2990
|
-
},
|
|
2991
|
-
versionUpdateTime: "Test string",
|
|
2992
3035
|
});
|
|
2993
3036
|
/** Deletes a single Feature. */
|
|
2994
3037
|
await gapi.client.aiplatform.projects.locations.featurestores.entityTypes.features.delete({
|
|
@@ -3066,13 +3109,6 @@ gapi.load('client', async () => {
|
|
|
3066
3109
|
name: "Test string",
|
|
3067
3110
|
updateTime: "Test string",
|
|
3068
3111
|
valueType: "Test string",
|
|
3069
|
-
versionCreateTime: "Test string",
|
|
3070
|
-
versionDescription: "Test string",
|
|
3071
|
-
versionId: "Test string",
|
|
3072
|
-
versionLabels: {
|
|
3073
|
-
A: "Test string"
|
|
3074
|
-
},
|
|
3075
|
-
versionUpdateTime: "Test string",
|
|
3076
3112
|
});
|
|
3077
3113
|
/**
|
|
3078
3114
|
* Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this
|
|
@@ -3327,6 +3363,7 @@ gapi.load('client', async () => {
|
|
|
3327
3363
|
"Test string"
|
|
3328
3364
|
],
|
|
3329
3365
|
scheduling: {
|
|
3366
|
+
disableRetries: true,
|
|
3330
3367
|
restartJobOnWorkerRestart: true,
|
|
3331
3368
|
timeout: "Test string",
|
|
3332
3369
|
},
|
|
@@ -5729,6 +5766,7 @@ gapi.load('client', async () => {
|
|
|
5729
5766
|
"Test string"
|
|
5730
5767
|
],
|
|
5731
5768
|
scheduling: {
|
|
5769
|
+
disableRetries: true,
|
|
5732
5770
|
restartJobOnWorkerRestart: true,
|
|
5733
5771
|
timeout: "Test string",
|
|
5734
5772
|
},
|
|
@@ -5805,6 +5843,7 @@ gapi.load('client', async () => {
|
|
|
5805
5843
|
"Test string"
|
|
5806
5844
|
],
|
|
5807
5845
|
scheduling: {
|
|
5846
|
+
disableRetries: true,
|
|
5808
5847
|
restartJobOnWorkerRestart: true,
|
|
5809
5848
|
timeout: "Test string",
|
|
5810
5849
|
},
|
|
@@ -5906,6 +5945,7 @@ gapi.load('client', async () => {
|
|
|
5906
5945
|
createTime: "Test string",
|
|
5907
5946
|
description: "Test string",
|
|
5908
5947
|
displayName: "Test string",
|
|
5948
|
+
expirationTime: "Test string",
|
|
5909
5949
|
healthState: "Test string",
|
|
5910
5950
|
name: "Test string",
|
|
5911
5951
|
notebookRuntimeTemplateRef: {
|
|
@@ -6124,7 +6164,6 @@ gapi.load('client', async () => {
|
|
|
6124
6164
|
bootDiskType: "Test string",
|
|
6125
6165
|
},
|
|
6126
6166
|
id: "Test string",
|
|
6127
|
-
idleReplicaCount: "Test string",
|
|
6128
6167
|
machineSpec: {
|
|
6129
6168
|
acceleratorCount: 42,
|
|
6130
6169
|
acceleratorType: "Test string",
|
|
@@ -6426,6 +6465,7 @@ gapi.load('client', async () => {
|
|
|
6426
6465
|
A: 42
|
|
6427
6466
|
},
|
|
6428
6467
|
},
|
|
6468
|
+
scheduleName: "Test string",
|
|
6429
6469
|
serviceAccount: "Test string",
|
|
6430
6470
|
startTime: "Test string",
|
|
6431
6471
|
state: "Test string",
|
|
@@ -6814,6 +6854,7 @@ gapi.load('client', async () => {
|
|
|
6814
6854
|
A: 42
|
|
6815
6855
|
},
|
|
6816
6856
|
},
|
|
6857
|
+
scheduleName: "Test string",
|
|
6817
6858
|
serviceAccount: "Test string",
|
|
6818
6859
|
startTime: "Test string",
|
|
6819
6860
|
state: "Test string",
|
|
@@ -7076,6 +7117,7 @@ gapi.load('client', async () => {
|
|
|
7076
7117
|
A: 42
|
|
7077
7118
|
},
|
|
7078
7119
|
},
|
|
7120
|
+
scheduleName: "Test string",
|
|
7079
7121
|
serviceAccount: "Test string",
|
|
7080
7122
|
startTime: "Test string",
|
|
7081
7123
|
state: "Test string",
|