@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20230808 → 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 +406 -8
- package/package.json +1 -1
- package/tests.ts +61 -2
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: 20230809
|
|
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?:
|
|
@@ -3019,6 +3029,11 @@ declare namespace gapi.client {
|
|
|
3019
3029
|
// tslint:disable-next-line:no-empty-interface
|
|
3020
3030
|
interface GoogleCloudAiplatformV1beta1ImportDataResponse {
|
|
3021
3031
|
}
|
|
3032
|
+
interface GoogleCloudAiplatformV1beta1ImportExtensionOperationMetadata {
|
|
3033
|
+
/** The common part of the operation metadata. */
|
|
3034
|
+
genericMetadata?:
|
|
3035
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
3036
|
+
}
|
|
3022
3037
|
interface GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata {
|
|
3023
3038
|
/** List of ImportFeatureValues operations running under a single EntityType that are blocking this operation. */
|
|
3024
3039
|
blockingOperationIds?:
|
|
@@ -4944,6 +4959,12 @@ declare namespace gapi.client {
|
|
|
4944
4959
|
/** 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
4960
|
displayName?:
|
|
4946
4961
|
string;
|
|
4962
|
+
/**
|
|
4963
|
+
* Output only. Timestamp when this NotebookRuntime will be expired: 1. System Predefined NotebookRuntime: 24 hours after creation. After expiration, system predifined runtime will be
|
|
4964
|
+
* deleted. 2. User created NotebookRuntime: 6 months after last upgrade. After expiration, user created runtime will be stopped and allowed for upgrade.
|
|
4965
|
+
*/
|
|
4966
|
+
expirationTime?:
|
|
4967
|
+
string;
|
|
4947
4968
|
/** Output only. The health state of the NotebookRuntime. */
|
|
4948
4969
|
healthState?:
|
|
4949
4970
|
string;
|
|
@@ -5148,6 +5169,9 @@ declare namespace gapi.client {
|
|
|
5148
5169
|
/** Runtime config of the pipeline. */
|
|
5149
5170
|
runtimeConfig?:
|
|
5150
5171
|
GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfig;
|
|
5172
|
+
/** Output only. The schedule resource name. Only returned if the Pipeline is created by Schedule API. */
|
|
5173
|
+
scheduleName?:
|
|
5174
|
+
string;
|
|
5151
5175
|
/**
|
|
5152
5176
|
* 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
5177
|
* 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 +5510,9 @@ declare namespace gapi.client {
|
|
|
5486
5510
|
/** Optional. Deploy the PublisherModel to Vertex Endpoint. */
|
|
5487
5511
|
deploy?:
|
|
5488
5512
|
GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeploy;
|
|
5513
|
+
/** Optional. Open evaluation pipeline of the PublisherModel. */
|
|
5514
|
+
openEvaluationPipeline?:
|
|
5515
|
+
GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences;
|
|
5489
5516
|
/** Optional. Open fine-tuning pipeline of the PublisherModel. */
|
|
5490
5517
|
openFineTuningPipeline?:
|
|
5491
5518
|
GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences;
|
|
@@ -5839,12 +5866,9 @@ declare namespace gapi.client {
|
|
|
5839
5866
|
/** Optional. Disk spec for the machine in this node pool. */
|
|
5840
5867
|
diskSpec?:
|
|
5841
5868
|
GoogleCloudAiplatformV1beta1DiskSpec;
|
|
5842
|
-
/**
|
|
5869
|
+
/** 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
5870
|
id?:
|
|
5844
5871
|
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
5872
|
/** Required. Immutable. The specification of a single machine. */
|
|
5849
5873
|
machineSpec?:
|
|
5850
5874
|
GoogleCloudAiplatformV1beta1MachineSpec;
|
|
@@ -9504,9 +9528,9 @@ declare namespace gapi.client {
|
|
|
9504
9528
|
name?:
|
|
9505
9529
|
string;
|
|
9506
9530
|
/**
|
|
9507
|
-
* The normal response of the operation
|
|
9508
|
-
*
|
|
9509
|
-
*
|
|
9531
|
+
* 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
|
|
9532
|
+
* 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
|
|
9533
|
+
* method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
|
|
9510
9534
|
*/
|
|
9511
9535
|
response?:
|
|
9512
9536
|
{ [P in string]: any };
|
|
@@ -15841,6 +15865,378 @@ declare namespace gapi.client {
|
|
|
15841
15865
|
string;
|
|
15842
15866
|
}): Request<GoogleLongrunningOperation>;
|
|
15843
15867
|
}
|
|
15868
|
+
interface FeaturesResource {
|
|
15869
|
+
operations:
|
|
15870
|
+
OperationsResource;
|
|
15871
|
+
}
|
|
15872
|
+
interface OperationsResource {
|
|
15873
|
+
/**
|
|
15874
|
+
* 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
|
|
15875
|
+
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
15876
|
+
*/
|
|
15877
|
+
delete(request?: {
|
|
15878
|
+
/** V1 error format. */
|
|
15879
|
+
"$.xgafv"?:
|
|
15880
|
+
string;
|
|
15881
|
+
/** OAuth access token. */
|
|
15882
|
+
access_token?:
|
|
15883
|
+
string;
|
|
15884
|
+
/** Data format for response. */
|
|
15885
|
+
alt?:
|
|
15886
|
+
string;
|
|
15887
|
+
/** JSONP */
|
|
15888
|
+
callback?:
|
|
15889
|
+
string;
|
|
15890
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
15891
|
+
fields?:
|
|
15892
|
+
string;
|
|
15893
|
+
/** 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. */
|
|
15894
|
+
key?:
|
|
15895
|
+
string;
|
|
15896
|
+
/** The name of the operation resource to be deleted. */
|
|
15897
|
+
name:
|
|
15898
|
+
string;
|
|
15899
|
+
/** OAuth 2.0 token for the current user. */
|
|
15900
|
+
oauth_token?:
|
|
15901
|
+
string;
|
|
15902
|
+
/** Returns response with indentations and line breaks. */
|
|
15903
|
+
prettyPrint?:
|
|
15904
|
+
boolean;
|
|
15905
|
+
/** 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. */
|
|
15906
|
+
quotaUser?:
|
|
15907
|
+
string;
|
|
15908
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15909
|
+
upload_protocol?:
|
|
15910
|
+
string;
|
|
15911
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15912
|
+
uploadType?:
|
|
15913
|
+
string;
|
|
15914
|
+
}): Request<{}>;
|
|
15915
|
+
/** 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. */
|
|
15916
|
+
get(request?: {
|
|
15917
|
+
/** V1 error format. */
|
|
15918
|
+
"$.xgafv"?:
|
|
15919
|
+
string;
|
|
15920
|
+
/** OAuth access token. */
|
|
15921
|
+
access_token?:
|
|
15922
|
+
string;
|
|
15923
|
+
/** Data format for response. */
|
|
15924
|
+
alt?:
|
|
15925
|
+
string;
|
|
15926
|
+
/** JSONP */
|
|
15927
|
+
callback?:
|
|
15928
|
+
string;
|
|
15929
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
15930
|
+
fields?:
|
|
15931
|
+
string;
|
|
15932
|
+
/** 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. */
|
|
15933
|
+
key?:
|
|
15934
|
+
string;
|
|
15935
|
+
/** The name of the operation resource. */
|
|
15936
|
+
name:
|
|
15937
|
+
string;
|
|
15938
|
+
/** OAuth 2.0 token for the current user. */
|
|
15939
|
+
oauth_token?:
|
|
15940
|
+
string;
|
|
15941
|
+
/** Returns response with indentations and line breaks. */
|
|
15942
|
+
prettyPrint?:
|
|
15943
|
+
boolean;
|
|
15944
|
+
/** 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. */
|
|
15945
|
+
quotaUser?:
|
|
15946
|
+
string;
|
|
15947
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15948
|
+
upload_protocol?:
|
|
15949
|
+
string;
|
|
15950
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15951
|
+
uploadType?:
|
|
15952
|
+
string;
|
|
15953
|
+
}): Request<GoogleLongrunningOperation>;
|
|
15954
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
15955
|
+
list(request?: {
|
|
15956
|
+
/** V1 error format. */
|
|
15957
|
+
"$.xgafv"?:
|
|
15958
|
+
string;
|
|
15959
|
+
/** OAuth access token. */
|
|
15960
|
+
access_token?:
|
|
15961
|
+
string;
|
|
15962
|
+
/** Data format for response. */
|
|
15963
|
+
alt?:
|
|
15964
|
+
string;
|
|
15965
|
+
/** JSONP */
|
|
15966
|
+
callback?:
|
|
15967
|
+
string;
|
|
15968
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
15969
|
+
fields?:
|
|
15970
|
+
string;
|
|
15971
|
+
/** The standard list filter. */
|
|
15972
|
+
filter?:
|
|
15973
|
+
string;
|
|
15974
|
+
/** 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. */
|
|
15975
|
+
key?:
|
|
15976
|
+
string;
|
|
15977
|
+
/** The name of the operation's parent resource. */
|
|
15978
|
+
name:
|
|
15979
|
+
string;
|
|
15980
|
+
/** OAuth 2.0 token for the current user. */
|
|
15981
|
+
oauth_token?:
|
|
15982
|
+
string;
|
|
15983
|
+
/** The standard list page size. */
|
|
15984
|
+
pageSize?:
|
|
15985
|
+
number;
|
|
15986
|
+
/** The standard list page token. */
|
|
15987
|
+
pageToken?:
|
|
15988
|
+
string;
|
|
15989
|
+
/** Returns response with indentations and line breaks. */
|
|
15990
|
+
prettyPrint?:
|
|
15991
|
+
boolean;
|
|
15992
|
+
/** 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. */
|
|
15993
|
+
quotaUser?:
|
|
15994
|
+
string;
|
|
15995
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15996
|
+
upload_protocol?:
|
|
15997
|
+
string;
|
|
15998
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15999
|
+
uploadType?:
|
|
16000
|
+
string;
|
|
16001
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
16002
|
+
/**
|
|
16003
|
+
* 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
|
|
16004
|
+
* 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
|
|
16005
|
+
* `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
|
|
16006
|
+
* an immediate response is no guarantee that the operation is done.
|
|
16007
|
+
*/
|
|
16008
|
+
wait(request?: {
|
|
16009
|
+
/** V1 error format. */
|
|
16010
|
+
"$.xgafv"?:
|
|
16011
|
+
string;
|
|
16012
|
+
/** OAuth access token. */
|
|
16013
|
+
access_token?:
|
|
16014
|
+
string;
|
|
16015
|
+
/** Data format for response. */
|
|
16016
|
+
alt?:
|
|
16017
|
+
string;
|
|
16018
|
+
/** JSONP */
|
|
16019
|
+
callback?:
|
|
16020
|
+
string;
|
|
16021
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16022
|
+
fields?:
|
|
16023
|
+
string;
|
|
16024
|
+
/** 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. */
|
|
16025
|
+
key?:
|
|
16026
|
+
string;
|
|
16027
|
+
/** The name of the operation resource to wait on. */
|
|
16028
|
+
name:
|
|
16029
|
+
string;
|
|
16030
|
+
/** OAuth 2.0 token for the current user. */
|
|
16031
|
+
oauth_token?:
|
|
16032
|
+
string;
|
|
16033
|
+
/** Returns response with indentations and line breaks. */
|
|
16034
|
+
prettyPrint?:
|
|
16035
|
+
boolean;
|
|
16036
|
+
/** 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. */
|
|
16037
|
+
quotaUser?:
|
|
16038
|
+
string;
|
|
16039
|
+
/**
|
|
16040
|
+
* 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
|
|
16041
|
+
* specified, the shorter one will be used.
|
|
16042
|
+
*/
|
|
16043
|
+
timeout?:
|
|
16044
|
+
string;
|
|
16045
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16046
|
+
upload_protocol?:
|
|
16047
|
+
string;
|
|
16048
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16049
|
+
uploadType?:
|
|
16050
|
+
string;
|
|
16051
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16052
|
+
}
|
|
16053
|
+
interface FeatureGroupsResource {
|
|
16054
|
+
features:
|
|
16055
|
+
FeaturesResource;
|
|
16056
|
+
operations:
|
|
16057
|
+
OperationsResource;
|
|
16058
|
+
}
|
|
16059
|
+
interface OperationsResource {
|
|
16060
|
+
/**
|
|
16061
|
+
* 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
|
|
16062
|
+
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
16063
|
+
*/
|
|
16064
|
+
delete(request?: {
|
|
16065
|
+
/** V1 error format. */
|
|
16066
|
+
"$.xgafv"?:
|
|
16067
|
+
string;
|
|
16068
|
+
/** OAuth access token. */
|
|
16069
|
+
access_token?:
|
|
16070
|
+
string;
|
|
16071
|
+
/** Data format for response. */
|
|
16072
|
+
alt?:
|
|
16073
|
+
string;
|
|
16074
|
+
/** JSONP */
|
|
16075
|
+
callback?:
|
|
16076
|
+
string;
|
|
16077
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16078
|
+
fields?:
|
|
16079
|
+
string;
|
|
16080
|
+
/** 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. */
|
|
16081
|
+
key?:
|
|
16082
|
+
string;
|
|
16083
|
+
/** The name of the operation resource to be deleted. */
|
|
16084
|
+
name:
|
|
16085
|
+
string;
|
|
16086
|
+
/** OAuth 2.0 token for the current user. */
|
|
16087
|
+
oauth_token?:
|
|
16088
|
+
string;
|
|
16089
|
+
/** Returns response with indentations and line breaks. */
|
|
16090
|
+
prettyPrint?:
|
|
16091
|
+
boolean;
|
|
16092
|
+
/** 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. */
|
|
16093
|
+
quotaUser?:
|
|
16094
|
+
string;
|
|
16095
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16096
|
+
upload_protocol?:
|
|
16097
|
+
string;
|
|
16098
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16099
|
+
uploadType?:
|
|
16100
|
+
string;
|
|
16101
|
+
}): Request<{}>;
|
|
16102
|
+
/** 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. */
|
|
16103
|
+
get(request?: {
|
|
16104
|
+
/** V1 error format. */
|
|
16105
|
+
"$.xgafv"?:
|
|
16106
|
+
string;
|
|
16107
|
+
/** OAuth access token. */
|
|
16108
|
+
access_token?:
|
|
16109
|
+
string;
|
|
16110
|
+
/** Data format for response. */
|
|
16111
|
+
alt?:
|
|
16112
|
+
string;
|
|
16113
|
+
/** JSONP */
|
|
16114
|
+
callback?:
|
|
16115
|
+
string;
|
|
16116
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16117
|
+
fields?:
|
|
16118
|
+
string;
|
|
16119
|
+
/** 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. */
|
|
16120
|
+
key?:
|
|
16121
|
+
string;
|
|
16122
|
+
/** The name of the operation resource. */
|
|
16123
|
+
name:
|
|
16124
|
+
string;
|
|
16125
|
+
/** OAuth 2.0 token for the current user. */
|
|
16126
|
+
oauth_token?:
|
|
16127
|
+
string;
|
|
16128
|
+
/** Returns response with indentations and line breaks. */
|
|
16129
|
+
prettyPrint?:
|
|
16130
|
+
boolean;
|
|
16131
|
+
/** 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. */
|
|
16132
|
+
quotaUser?:
|
|
16133
|
+
string;
|
|
16134
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16135
|
+
upload_protocol?:
|
|
16136
|
+
string;
|
|
16137
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16138
|
+
uploadType?:
|
|
16139
|
+
string;
|
|
16140
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16141
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
16142
|
+
list(request?: {
|
|
16143
|
+
/** V1 error format. */
|
|
16144
|
+
"$.xgafv"?:
|
|
16145
|
+
string;
|
|
16146
|
+
/** OAuth access token. */
|
|
16147
|
+
access_token?:
|
|
16148
|
+
string;
|
|
16149
|
+
/** Data format for response. */
|
|
16150
|
+
alt?:
|
|
16151
|
+
string;
|
|
16152
|
+
/** JSONP */
|
|
16153
|
+
callback?:
|
|
16154
|
+
string;
|
|
16155
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16156
|
+
fields?:
|
|
16157
|
+
string;
|
|
16158
|
+
/** The standard list filter. */
|
|
16159
|
+
filter?:
|
|
16160
|
+
string;
|
|
16161
|
+
/** 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. */
|
|
16162
|
+
key?:
|
|
16163
|
+
string;
|
|
16164
|
+
/** The name of the operation's parent resource. */
|
|
16165
|
+
name:
|
|
16166
|
+
string;
|
|
16167
|
+
/** OAuth 2.0 token for the current user. */
|
|
16168
|
+
oauth_token?:
|
|
16169
|
+
string;
|
|
16170
|
+
/** The standard list page size. */
|
|
16171
|
+
pageSize?:
|
|
16172
|
+
number;
|
|
16173
|
+
/** The standard list page token. */
|
|
16174
|
+
pageToken?:
|
|
16175
|
+
string;
|
|
16176
|
+
/** Returns response with indentations and line breaks. */
|
|
16177
|
+
prettyPrint?:
|
|
16178
|
+
boolean;
|
|
16179
|
+
/** 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. */
|
|
16180
|
+
quotaUser?:
|
|
16181
|
+
string;
|
|
16182
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16183
|
+
upload_protocol?:
|
|
16184
|
+
string;
|
|
16185
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16186
|
+
uploadType?:
|
|
16187
|
+
string;
|
|
16188
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
16189
|
+
/**
|
|
16190
|
+
* 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
|
|
16191
|
+
* 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
|
|
16192
|
+
* `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
|
|
16193
|
+
* an immediate response is no guarantee that the operation is done.
|
|
16194
|
+
*/
|
|
16195
|
+
wait(request?: {
|
|
16196
|
+
/** V1 error format. */
|
|
16197
|
+
"$.xgafv"?:
|
|
16198
|
+
string;
|
|
16199
|
+
/** OAuth access token. */
|
|
16200
|
+
access_token?:
|
|
16201
|
+
string;
|
|
16202
|
+
/** Data format for response. */
|
|
16203
|
+
alt?:
|
|
16204
|
+
string;
|
|
16205
|
+
/** JSONP */
|
|
16206
|
+
callback?:
|
|
16207
|
+
string;
|
|
16208
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16209
|
+
fields?:
|
|
16210
|
+
string;
|
|
16211
|
+
/** 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. */
|
|
16212
|
+
key?:
|
|
16213
|
+
string;
|
|
16214
|
+
/** The name of the operation resource to wait on. */
|
|
16215
|
+
name:
|
|
16216
|
+
string;
|
|
16217
|
+
/** OAuth 2.0 token for the current user. */
|
|
16218
|
+
oauth_token?:
|
|
16219
|
+
string;
|
|
16220
|
+
/** Returns response with indentations and line breaks. */
|
|
16221
|
+
prettyPrint?:
|
|
16222
|
+
boolean;
|
|
16223
|
+
/** 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. */
|
|
16224
|
+
quotaUser?:
|
|
16225
|
+
string;
|
|
16226
|
+
/**
|
|
16227
|
+
* 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
|
|
16228
|
+
* specified, the shorter one will be used.
|
|
16229
|
+
*/
|
|
16230
|
+
timeout?:
|
|
16231
|
+
string;
|
|
16232
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16233
|
+
upload_protocol?:
|
|
16234
|
+
string;
|
|
16235
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16236
|
+
uploadType?:
|
|
16237
|
+
string;
|
|
16238
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16239
|
+
}
|
|
15844
16240
|
interface FeatureViewsResource {
|
|
15845
16241
|
operations:
|
|
15846
16242
|
OperationsResource;
|
|
@@ -35450,6 +35846,8 @@ declare namespace gapi.client {
|
|
|
35450
35846
|
ExtensionControllersResource;
|
|
35451
35847
|
extensions:
|
|
35452
35848
|
ExtensionsResource;
|
|
35849
|
+
featureGroups:
|
|
35850
|
+
FeatureGroupsResource;
|
|
35453
35851
|
featureOnlineStores:
|
|
35454
35852
|
FeatureOnlineStoresResource;
|
|
35455
35853
|
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: 20230809
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -2309,6 +2309,62 @@ gapi.load('client', async () => {
|
|
|
2309
2309
|
name: "Test string",
|
|
2310
2310
|
timeout: "Test string",
|
|
2311
2311
|
});
|
|
2312
|
+
/**
|
|
2313
|
+
* 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
|
+
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
2315
|
+
*/
|
|
2316
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.features.operations.delete({
|
|
2317
|
+
name: "Test string",
|
|
2318
|
+
});
|
|
2319
|
+
/** 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. */
|
|
2320
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.features.operations.get({
|
|
2321
|
+
name: "Test string",
|
|
2322
|
+
});
|
|
2323
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
2324
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.features.operations.list({
|
|
2325
|
+
filter: "Test string",
|
|
2326
|
+
name: "Test string",
|
|
2327
|
+
pageSize: 42,
|
|
2328
|
+
pageToken: "Test string",
|
|
2329
|
+
});
|
|
2330
|
+
/**
|
|
2331
|
+
* 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
|
|
2332
|
+
* 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
|
|
2333
|
+
* `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
|
|
2334
|
+
* immediate response is no guarantee that the operation is done.
|
|
2335
|
+
*/
|
|
2336
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.features.operations.wait({
|
|
2337
|
+
name: "Test string",
|
|
2338
|
+
timeout: "Test string",
|
|
2339
|
+
});
|
|
2340
|
+
/**
|
|
2341
|
+
* 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
|
|
2342
|
+
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
2343
|
+
*/
|
|
2344
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.operations.delete({
|
|
2345
|
+
name: "Test string",
|
|
2346
|
+
});
|
|
2347
|
+
/** 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. */
|
|
2348
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.operations.get({
|
|
2349
|
+
name: "Test string",
|
|
2350
|
+
});
|
|
2351
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
2352
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.operations.list({
|
|
2353
|
+
filter: "Test string",
|
|
2354
|
+
name: "Test string",
|
|
2355
|
+
pageSize: 42,
|
|
2356
|
+
pageToken: "Test string",
|
|
2357
|
+
});
|
|
2358
|
+
/**
|
|
2359
|
+
* 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
|
|
2360
|
+
* 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
|
|
2361
|
+
* `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
|
|
2362
|
+
* immediate response is no guarantee that the operation is done.
|
|
2363
|
+
*/
|
|
2364
|
+
await gapi.client.aiplatform.projects.locations.featureGroups.operations.wait({
|
|
2365
|
+
name: "Test string",
|
|
2366
|
+
timeout: "Test string",
|
|
2367
|
+
});
|
|
2312
2368
|
/**
|
|
2313
2369
|
* 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
2370
|
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
@@ -5906,6 +5962,7 @@ gapi.load('client', async () => {
|
|
|
5906
5962
|
createTime: "Test string",
|
|
5907
5963
|
description: "Test string",
|
|
5908
5964
|
displayName: "Test string",
|
|
5965
|
+
expirationTime: "Test string",
|
|
5909
5966
|
healthState: "Test string",
|
|
5910
5967
|
name: "Test string",
|
|
5911
5968
|
notebookRuntimeTemplateRef: {
|
|
@@ -6124,7 +6181,6 @@ gapi.load('client', async () => {
|
|
|
6124
6181
|
bootDiskType: "Test string",
|
|
6125
6182
|
},
|
|
6126
6183
|
id: "Test string",
|
|
6127
|
-
idleReplicaCount: "Test string",
|
|
6128
6184
|
machineSpec: {
|
|
6129
6185
|
acceleratorCount: 42,
|
|
6130
6186
|
acceleratorType: "Test string",
|
|
@@ -6426,6 +6482,7 @@ gapi.load('client', async () => {
|
|
|
6426
6482
|
A: 42
|
|
6427
6483
|
},
|
|
6428
6484
|
},
|
|
6485
|
+
scheduleName: "Test string",
|
|
6429
6486
|
serviceAccount: "Test string",
|
|
6430
6487
|
startTime: "Test string",
|
|
6431
6488
|
state: "Test string",
|
|
@@ -6814,6 +6871,7 @@ gapi.load('client', async () => {
|
|
|
6814
6871
|
A: 42
|
|
6815
6872
|
},
|
|
6816
6873
|
},
|
|
6874
|
+
scheduleName: "Test string",
|
|
6817
6875
|
serviceAccount: "Test string",
|
|
6818
6876
|
startTime: "Test string",
|
|
6819
6877
|
state: "Test string",
|
|
@@ -7076,6 +7134,7 @@ gapi.load('client', async () => {
|
|
|
7076
7134
|
A: 42
|
|
7077
7135
|
},
|
|
7078
7136
|
},
|
|
7137
|
+
scheduleName: "Test string",
|
|
7079
7138
|
serviceAccount: "Test string",
|
|
7080
7139
|
startTime: "Test string",
|
|
7081
7140
|
state: "Test string",
|