@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20230908 → 0.0.20230929
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 +1328 -69
- package/package.json +1 -1
- package/tests.ts +187 -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: 20230929
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -185,6 +185,25 @@ declare namespace gapi.client {
|
|
|
185
185
|
uri?:
|
|
186
186
|
string;
|
|
187
187
|
}
|
|
188
|
+
interface GoogleCloudAiplatformV1AssignNotebookRuntimeOperationMetadata {
|
|
189
|
+
/** The operation generic information. */
|
|
190
|
+
genericMetadata?:
|
|
191
|
+
GoogleCloudAiplatformV1GenericOperationMetadata;
|
|
192
|
+
/** A human-readable message that shows the intermediate progress details of NotebookRuntime. */
|
|
193
|
+
progressMessage?:
|
|
194
|
+
string;
|
|
195
|
+
}
|
|
196
|
+
interface GoogleCloudAiplatformV1AssignNotebookRuntimeRequest {
|
|
197
|
+
/** Required. Provide runtime specific information (e.g. runtime owner, notebook id) used for NotebookRuntime assignment. */
|
|
198
|
+
notebookRuntime?:
|
|
199
|
+
GoogleCloudAiplatformV1NotebookRuntime;
|
|
200
|
+
/** Optional. User specified ID for the notebook runtime. */
|
|
201
|
+
notebookRuntimeId?:
|
|
202
|
+
string;
|
|
203
|
+
/** Required. The resource name of the NotebookRuntimeTemplate based on which a NotebookRuntime will be assigned (reuse or create a new one). */
|
|
204
|
+
notebookRuntimeTemplate?:
|
|
205
|
+
string;
|
|
206
|
+
}
|
|
188
207
|
interface GoogleCloudAiplatformV1Attribution {
|
|
189
208
|
/**
|
|
190
209
|
* Output only. Error of feature_attributions caused by approximation used in the explanation method. Lower value means more precise attributions. * For Sampled Shapley attribution,
|
|
@@ -867,11 +886,10 @@ declare namespace gapi.client {
|
|
|
867
886
|
GoogleCloudAiplatformV1Feature;
|
|
868
887
|
/**
|
|
869
888
|
* Required. The ID to use for the Feature, which will become the final component of the Feature's resource name. This value may be up to 128 characters, and valid characters are
|
|
870
|
-
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType
|
|
889
|
+
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
|
|
871
890
|
*/
|
|
872
891
|
featureId?:
|
|
873
892
|
string;
|
|
874
|
-
/** Required. The resource name of the EntityType to create a Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` */
|
|
875
893
|
parent?:
|
|
876
894
|
string;
|
|
877
895
|
}
|
|
@@ -898,6 +916,11 @@ declare namespace gapi.client {
|
|
|
898
916
|
genericMetadata?:
|
|
899
917
|
GoogleCloudAiplatformV1GenericOperationMetadata;
|
|
900
918
|
}
|
|
919
|
+
interface GoogleCloudAiplatformV1CreateNotebookRuntimeTemplateOperationMetadata {
|
|
920
|
+
/** The operation generic information. */
|
|
921
|
+
genericMetadata?:
|
|
922
|
+
GoogleCloudAiplatformV1GenericOperationMetadata;
|
|
923
|
+
}
|
|
901
924
|
interface GoogleCloudAiplatformV1CreatePipelineJobRequest {
|
|
902
925
|
/** Required. The resource name of the Location to create the PipelineJob in. Format: `projects/{project}/locations/{location}` */
|
|
903
926
|
parent?:
|
|
@@ -907,7 +930,7 @@ declare namespace gapi.client {
|
|
|
907
930
|
GoogleCloudAiplatformV1PipelineJob;
|
|
908
931
|
/**
|
|
909
932
|
* The ID to use for the PipelineJob, which will become the final component of the PipelineJob name. If not provided, an ID will be automatically generated. This value should be less
|
|
910
|
-
* than 128 characters, and valid characters are
|
|
933
|
+
* than 128 characters, and valid characters are `/a-z-/`.
|
|
911
934
|
*/
|
|
912
935
|
pipelineJobId?:
|
|
913
936
|
string;
|
|
@@ -934,7 +957,7 @@ declare namespace gapi.client {
|
|
|
934
957
|
GoogleCloudAiplatformV1TensorboardRun;
|
|
935
958
|
/**
|
|
936
959
|
* Required. The ID to use for the Tensorboard run, which becomes the final component of the Tensorboard run's resource name. This value should be 1-128 characters, and valid
|
|
937
|
-
* characters are
|
|
960
|
+
* characters are `/a-z-/`.
|
|
938
961
|
*/
|
|
939
962
|
tensorboardRunId?:
|
|
940
963
|
string;
|
|
@@ -1248,6 +1271,23 @@ declare namespace gapi.client {
|
|
|
1248
1271
|
updateTime?:
|
|
1249
1272
|
string;
|
|
1250
1273
|
}
|
|
1274
|
+
interface GoogleCloudAiplatformV1DatasetVersion {
|
|
1275
|
+
/** Output only. Name of the associated BigQuery dataset. */
|
|
1276
|
+
bigQueryDatasetName?:
|
|
1277
|
+
string;
|
|
1278
|
+
/** Output only. Timestamp when this DatasetVersion was created. */
|
|
1279
|
+
createTime?:
|
|
1280
|
+
string;
|
|
1281
|
+
/** Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
1282
|
+
etag?:
|
|
1283
|
+
string;
|
|
1284
|
+
/** Output only. The resource name of the DatasetVersion. */
|
|
1285
|
+
name?:
|
|
1286
|
+
string;
|
|
1287
|
+
/** Output only. Timestamp when this DatasetVersion was last updated. */
|
|
1288
|
+
updateTime?:
|
|
1289
|
+
string;
|
|
1290
|
+
}
|
|
1251
1291
|
interface GoogleCloudAiplatformV1DedicatedResources {
|
|
1252
1292
|
/**
|
|
1253
1293
|
* Immutable. The metric specifications that overrides a resource utilization metric (CPU utilization, accelerator's duty cycle, and so on) target value (default to 60 if not set). At
|
|
@@ -1420,7 +1460,8 @@ declare namespace gapi.client {
|
|
|
1420
1460
|
/**
|
|
1421
1461
|
* Optional. A list of reserved ip ranges under the VPC network that can be used for this DeployedIndex. If set, we will deploy the index within the provided ip ranges. Otherwise, the
|
|
1422
1462
|
* index might be deployed to any ip ranges under the provided VPC network. The value should be the name of the address
|
|
1423
|
-
* (https://cloud.google.com/compute/docs/reference/rest/v1/addresses) Example: 'vertex-ai-ip-range'.
|
|
1463
|
+
* (https://cloud.google.com/compute/docs/reference/rest/v1/addresses) Example: ['vertex-ai-ip-range']. For more information about subnets and network IP ranges, please see
|
|
1464
|
+
* https://cloud.google.com/vpc/docs/subnets#manually_created_subnet_ip_ranges.
|
|
1424
1465
|
*/
|
|
1425
1466
|
reservedIpRanges?:
|
|
1426
1467
|
string[];
|
|
@@ -1484,7 +1525,7 @@ declare namespace gapi.client {
|
|
|
1484
1525
|
GoogleCloudAiplatformV1ExplanationSpec;
|
|
1485
1526
|
/**
|
|
1486
1527
|
* Immutable. The ID of the DeployedModel. If not provided upon deployment, Vertex AI will generate a value for this ID. This value should be 1-10 characters, and valid characters are
|
|
1487
|
-
*
|
|
1528
|
+
* `/[0-9]/`.
|
|
1488
1529
|
*/
|
|
1489
1530
|
id?:
|
|
1490
1531
|
string;
|
|
@@ -2177,6 +2218,9 @@ declare namespace gapi.client {
|
|
|
2177
2218
|
*/
|
|
2178
2219
|
annotationsFilter?:
|
|
2179
2220
|
string;
|
|
2221
|
+
/** Split based on the provided filters for each set. */
|
|
2222
|
+
filterSplit?:
|
|
2223
|
+
GoogleCloudAiplatformV1ExportFilterSplit;
|
|
2180
2224
|
/** Split based on fractions defining the size of each set. */
|
|
2181
2225
|
fractionSplit?:
|
|
2182
2226
|
GoogleCloudAiplatformV1ExportFractionSplit;
|
|
@@ -2253,6 +2297,29 @@ declare namespace gapi.client {
|
|
|
2253
2297
|
// tslint:disable-next-line:no-empty-interface
|
|
2254
2298
|
interface GoogleCloudAiplatformV1ExportFeatureValuesResponse {
|
|
2255
2299
|
}
|
|
2300
|
+
interface GoogleCloudAiplatformV1ExportFilterSplit {
|
|
2301
|
+
/**
|
|
2302
|
+
* Required. A filter on DataItems of the Dataset. DataItems that match this filter are used to test the Model. A filter with same syntax as the one used in
|
|
2303
|
+
* DatasetService.ListDataItems may be used. If a single DataItem is matched by more than one of the FilterSplit filters, then it is assigned to the first set that applies to it in the
|
|
2304
|
+
* training, validation, test order.
|
|
2305
|
+
*/
|
|
2306
|
+
testFilter?:
|
|
2307
|
+
string;
|
|
2308
|
+
/**
|
|
2309
|
+
* Required. A filter on DataItems of the Dataset. DataItems that match this filter are used to train the Model. A filter with same syntax as the one used in
|
|
2310
|
+
* DatasetService.ListDataItems may be used. If a single DataItem is matched by more than one of the FilterSplit filters, then it is assigned to the first set that applies to it in the
|
|
2311
|
+
* training, validation, test order.
|
|
2312
|
+
*/
|
|
2313
|
+
trainingFilter?:
|
|
2314
|
+
string;
|
|
2315
|
+
/**
|
|
2316
|
+
* Required. A filter on DataItems of the Dataset. DataItems that match this filter are used to validate the Model. A filter with same syntax as the one used in
|
|
2317
|
+
* DatasetService.ListDataItems may be used. If a single DataItem is matched by more than one of the FilterSplit filters, then it is assigned to the first set that applies to it in the
|
|
2318
|
+
* training, validation, test order.
|
|
2319
|
+
*/
|
|
2320
|
+
validationFilter?:
|
|
2321
|
+
string;
|
|
2322
|
+
}
|
|
2256
2323
|
interface GoogleCloudAiplatformV1ExportFractionSplit {
|
|
2257
2324
|
/** The fraction of the input data that is to be used to evaluate the Model. */
|
|
2258
2325
|
testFraction?:
|
|
@@ -3287,6 +3354,14 @@ declare namespace gapi.client {
|
|
|
3287
3354
|
nextPageToken?:
|
|
3288
3355
|
string;
|
|
3289
3356
|
}
|
|
3357
|
+
interface GoogleCloudAiplatformV1ListDatasetVersionsResponse {
|
|
3358
|
+
/** A list of DatasetVersions that matches the specified filter in the request. */
|
|
3359
|
+
datasetVersions?:
|
|
3360
|
+
GoogleCloudAiplatformV1DatasetVersion[];
|
|
3361
|
+
/** The standard List next-page token. */
|
|
3362
|
+
nextPageToken?:
|
|
3363
|
+
string;
|
|
3364
|
+
}
|
|
3290
3365
|
interface GoogleCloudAiplatformV1ListEndpointsResponse {
|
|
3291
3366
|
/** List of Endpoints in the requested page. */
|
|
3292
3367
|
endpoints?:
|
|
@@ -3423,6 +3498,22 @@ declare namespace gapi.client {
|
|
|
3423
3498
|
nextPageToken?:
|
|
3424
3499
|
string;
|
|
3425
3500
|
}
|
|
3501
|
+
interface GoogleCloudAiplatformV1ListNotebookRuntimesResponse {
|
|
3502
|
+
/** A token to retrieve next page of results. Pass to ListNotebookRuntimesRequest.page_token to obtain that page. */
|
|
3503
|
+
nextPageToken?:
|
|
3504
|
+
string;
|
|
3505
|
+
/** List of NotebookRuntimes in the requested page. */
|
|
3506
|
+
notebookRuntimes?:
|
|
3507
|
+
GoogleCloudAiplatformV1NotebookRuntime[];
|
|
3508
|
+
}
|
|
3509
|
+
interface GoogleCloudAiplatformV1ListNotebookRuntimeTemplatesResponse {
|
|
3510
|
+
/** A token to retrieve next page of results. Pass to ListNotebookRuntimeTemplatesRequest.page_token to obtain that page. */
|
|
3511
|
+
nextPageToken?:
|
|
3512
|
+
string;
|
|
3513
|
+
/** List of NotebookRuntimeTemplates in the requested page. */
|
|
3514
|
+
notebookRuntimeTemplates?:
|
|
3515
|
+
GoogleCloudAiplatformV1NotebookRuntimeTemplate[];
|
|
3516
|
+
}
|
|
3426
3517
|
// tslint:disable-next-line:no-empty-interface
|
|
3427
3518
|
interface GoogleCloudAiplatformV1ListOptimalTrialsRequest {
|
|
3428
3519
|
}
|
|
@@ -4305,6 +4396,9 @@ declare namespace gapi.client {
|
|
|
4305
4396
|
*/
|
|
4306
4397
|
enableLogging?:
|
|
4307
4398
|
boolean;
|
|
4399
|
+
/** Resource names of the NotificationChannels to send alert. Must be of the format `projects//notificationChannels/` */
|
|
4400
|
+
notificationChannels?:
|
|
4401
|
+
string[];
|
|
4308
4402
|
}
|
|
4309
4403
|
interface GoogleCloudAiplatformV1ModelMonitoringAlertConfigEmailAlertConfig {
|
|
4310
4404
|
/** The email addresses to send the alert. */
|
|
@@ -4678,6 +4772,17 @@ declare namespace gapi.client {
|
|
|
4678
4772
|
neighborId?:
|
|
4679
4773
|
string;
|
|
4680
4774
|
}
|
|
4775
|
+
interface GoogleCloudAiplatformV1NetworkSpec {
|
|
4776
|
+
/** Whether to enable public internet access. Default false. */
|
|
4777
|
+
enableInternetAccess?:
|
|
4778
|
+
boolean;
|
|
4779
|
+
/** The full name of the Google Compute Engine [network](https://cloud.google.com//compute/docs/networks-and-firewalls#networks) */
|
|
4780
|
+
network?:
|
|
4781
|
+
string;
|
|
4782
|
+
/** The name of the subnet that this instance is in. Format: `projects/{project_id_or_number}/regions/{region}/subnetworks/{subnetwork_id}` */
|
|
4783
|
+
subnetwork?:
|
|
4784
|
+
string;
|
|
4785
|
+
}
|
|
4681
4786
|
interface GoogleCloudAiplatformV1NfsMount {
|
|
4682
4787
|
/** Required. Destination mount path. The NFS will be mounted for the user under /mnt/nfs/ */
|
|
4683
4788
|
mountPoint?:
|
|
@@ -4689,12 +4794,161 @@ declare namespace gapi.client {
|
|
|
4689
4794
|
server?:
|
|
4690
4795
|
string;
|
|
4691
4796
|
}
|
|
4797
|
+
interface GoogleCloudAiplatformV1NotebookEucConfig {
|
|
4798
|
+
/**
|
|
4799
|
+
* Output only. Whether ActAs check is bypassed for service account attached to the VM. If false, we need ActAs check for the default Compute Engine Service account. When a Runtime is
|
|
4800
|
+
* created, a VM is allocated using Default Compute Engine Service Account. Any user requesting to use this Runtime requires Service Account User (ActAs) permission over this SA. If
|
|
4801
|
+
* true, Runtime owner is using EUC and does not require the above permission as VM no longer use default Compute Engine SA, but a P4SA.
|
|
4802
|
+
*/
|
|
4803
|
+
bypassActasCheck?:
|
|
4804
|
+
boolean;
|
|
4805
|
+
/**
|
|
4806
|
+
* Input only. Whether EUC is disabled in this NotebookRuntimeTemplate. In proto3, the default value of a boolean is false. In this way, by default EUC will be enabled for
|
|
4807
|
+
* NotebookRuntimeTemplate.
|
|
4808
|
+
*/
|
|
4809
|
+
eucDisabled?:
|
|
4810
|
+
boolean;
|
|
4811
|
+
}
|
|
4812
|
+
interface GoogleCloudAiplatformV1NotebookIdleShutdownConfig {
|
|
4813
|
+
/** Whether Idle Shutdown is disabled in this NotebookRuntimeTemplate. */
|
|
4814
|
+
idleShutdownDisabled?:
|
|
4815
|
+
boolean;
|
|
4816
|
+
/** Required. Duration is accurate to the second. In Notebook, Idle Timeout is accurate to minute so the range of idle_timeout (second) is: 10 * 60 ~ 1440 * 60. */
|
|
4817
|
+
idleTimeout?:
|
|
4818
|
+
string;
|
|
4819
|
+
}
|
|
4820
|
+
interface GoogleCloudAiplatformV1NotebookRuntime {
|
|
4821
|
+
/** Output only. Timestamp when this NotebookRuntime was created. */
|
|
4822
|
+
createTime?:
|
|
4823
|
+
string;
|
|
4824
|
+
/** The description of the NotebookRuntime. */
|
|
4825
|
+
description?:
|
|
4826
|
+
string;
|
|
4827
|
+
/** Required. The display name of the NotebookRuntime. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
|
|
4828
|
+
displayName?:
|
|
4829
|
+
string;
|
|
4830
|
+
/**
|
|
4831
|
+
* Output only. Timestamp when this NotebookRuntime will be expired: 1. System Predefined NotebookRuntime: 24 hours after creation. After expiration, system predifined runtime will be
|
|
4832
|
+
* deleted. 2. User created NotebookRuntime: 6 months after last upgrade. After expiration, user created runtime will be stopped and allowed for upgrade.
|
|
4833
|
+
*/
|
|
4834
|
+
expirationTime?:
|
|
4835
|
+
string;
|
|
4836
|
+
/** Output only. The health state of the NotebookRuntime. */
|
|
4837
|
+
healthState?:
|
|
4838
|
+
string;
|
|
4839
|
+
/**
|
|
4840
|
+
* The labels with user-defined metadata to organize your NotebookRuntime. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase
|
|
4841
|
+
* letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one NotebookRuntime (System labels are
|
|
4842
|
+
* excluded). See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable.
|
|
4843
|
+
* Following system labels exist for NotebookRuntime: * "aiplatform.googleapis.com/notebook_runtime_gce_instance_id": output only, its value is the Compute Engine instance id. *
|
|
4844
|
+
* "aiplatform.googleapis.com/colab_enterprise_entry_service": its value is either "bigquery" or "vertex"; if absent, it should be "vertex". This is to describe the entry service,
|
|
4845
|
+
* either BigQuery or Vertex.
|
|
4846
|
+
*/
|
|
4847
|
+
labels?:
|
|
4848
|
+
{ [P in string]: string };
|
|
4849
|
+
/** Output only. The resource name of the NotebookRuntime. */
|
|
4850
|
+
name?:
|
|
4851
|
+
string;
|
|
4852
|
+
/** Output only. The pointer to NotebookRuntimeTemplate this NotebookRuntime is created from. */
|
|
4853
|
+
notebookRuntimeTemplateRef?:
|
|
4854
|
+
GoogleCloudAiplatformV1NotebookRuntimeTemplateRef;
|
|
4855
|
+
/** Output only. The type of the notebook runtime. */
|
|
4856
|
+
notebookRuntimeType?:
|
|
4857
|
+
string;
|
|
4858
|
+
/** Output only. The proxy endpoint used to access the NotebookRuntime. */
|
|
4859
|
+
proxyUri?:
|
|
4860
|
+
string;
|
|
4861
|
+
/** Output only. The runtime (instance) state of the NotebookRuntime. */
|
|
4862
|
+
runtimeState?:
|
|
4863
|
+
string;
|
|
4864
|
+
/** Required. The user email of the NotebookRuntime. */
|
|
4865
|
+
runtimeUser?:
|
|
4866
|
+
string;
|
|
4867
|
+
/** Output only. The service account that the NotebookRuntime workload runs as. */
|
|
4868
|
+
serviceAccount?:
|
|
4869
|
+
string;
|
|
4870
|
+
/** Output only. Timestamp when this NotebookRuntime was most recently updated. */
|
|
4871
|
+
updateTime?:
|
|
4872
|
+
string;
|
|
4873
|
+
/** Output only. The VM os image version of NotebookRuntime. */
|
|
4874
|
+
version?:
|
|
4875
|
+
string;
|
|
4876
|
+
}
|
|
4877
|
+
interface GoogleCloudAiplatformV1NotebookRuntimeTemplate {
|
|
4878
|
+
/** Output only. Timestamp when this NotebookRuntimeTemplate was created. */
|
|
4879
|
+
createTime?:
|
|
4880
|
+
string;
|
|
4881
|
+
/** Optional. The specification of persistent disk attached to the runtime as data disk storage. */
|
|
4882
|
+
dataPersistentDiskSpec?:
|
|
4883
|
+
GoogleCloudAiplatformV1PersistentDiskSpec;
|
|
4884
|
+
/** The description of the NotebookRuntimeTemplate. */
|
|
4885
|
+
description?:
|
|
4886
|
+
string;
|
|
4887
|
+
/** Required. The display name of the NotebookRuntimeTemplate. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
|
|
4888
|
+
displayName?:
|
|
4889
|
+
string;
|
|
4890
|
+
/** Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
4891
|
+
etag?:
|
|
4892
|
+
string;
|
|
4893
|
+
/** EUC configuration of the NotebookRuntimeTemplate. */
|
|
4894
|
+
eucConfig?:
|
|
4895
|
+
GoogleCloudAiplatformV1NotebookEucConfig;
|
|
4896
|
+
/** The idle shutdown configuration of NotebookRuntimeTemplate. This config will only be set when idle shutdown is enabled. */
|
|
4897
|
+
idleShutdownConfig?:
|
|
4898
|
+
GoogleCloudAiplatformV1NotebookIdleShutdownConfig;
|
|
4899
|
+
/** Output only. The default template to use if not specified. */
|
|
4900
|
+
isDefault?:
|
|
4901
|
+
boolean;
|
|
4902
|
+
/**
|
|
4903
|
+
* The labels with user-defined metadata to organize the NotebookRuntimeTemplates. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain
|
|
4904
|
+
* lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.
|
|
4905
|
+
*/
|
|
4906
|
+
labels?:
|
|
4907
|
+
{ [P in string]: string };
|
|
4908
|
+
/** Optional. Immutable. The specification of a single machine for the template. */
|
|
4909
|
+
machineSpec?:
|
|
4910
|
+
GoogleCloudAiplatformV1MachineSpec;
|
|
4911
|
+
/** Output only. The resource name of the NotebookRuntimeTemplate. */
|
|
4912
|
+
name?:
|
|
4913
|
+
string;
|
|
4914
|
+
/** Optional. Network spec. */
|
|
4915
|
+
networkSpec?:
|
|
4916
|
+
GoogleCloudAiplatformV1NetworkSpec;
|
|
4917
|
+
/** Optional. Immutable. The type of the notebook runtime template. */
|
|
4918
|
+
notebookRuntimeType?:
|
|
4919
|
+
string;
|
|
4920
|
+
/**
|
|
4921
|
+
* The service account that the runtime workload runs as. You can use any service account within the same project, but you must have the service account user permission to use the
|
|
4922
|
+
* instance. If not specified, the [Compute Engine default service account](https://cloud.google.com/compute/docs/access/service-accounts#default_service_account) is used.
|
|
4923
|
+
*/
|
|
4924
|
+
serviceAccount?:
|
|
4925
|
+
string;
|
|
4926
|
+
/** Output only. Timestamp when this NotebookRuntimeTemplate was most recently updated. */
|
|
4927
|
+
updateTime?:
|
|
4928
|
+
string;
|
|
4929
|
+
}
|
|
4930
|
+
interface GoogleCloudAiplatformV1NotebookRuntimeTemplateRef {
|
|
4931
|
+
/** Immutable. A resource name of the NotebookRuntimeTemplate. */
|
|
4932
|
+
notebookRuntimeTemplate?:
|
|
4933
|
+
string;
|
|
4934
|
+
}
|
|
4692
4935
|
// tslint:disable-next-line:no-empty-interface
|
|
4693
4936
|
interface GoogleCloudAiplatformV1PauseModelDeploymentMonitoringJobRequest {
|
|
4694
4937
|
}
|
|
4695
4938
|
// tslint:disable-next-line:no-empty-interface
|
|
4696
4939
|
interface GoogleCloudAiplatformV1PauseScheduleRequest {
|
|
4697
4940
|
}
|
|
4941
|
+
interface GoogleCloudAiplatformV1PersistentDiskSpec {
|
|
4942
|
+
/** Size in GB of the disk (default is 100GB). */
|
|
4943
|
+
diskSizeGb?:
|
|
4944
|
+
string;
|
|
4945
|
+
/**
|
|
4946
|
+
* Type of the disk (default is "pd-standard"). Valid values: "pd-ssd" (Persistent Disk Solid State Drive) "pd-standard" (Persistent Disk Hard Disk Drive) "pd-balanced" (Balanced
|
|
4947
|
+
* Persistent Disk) "pd-extreme" (Extreme Persistent Disk)
|
|
4948
|
+
*/
|
|
4949
|
+
diskType?:
|
|
4950
|
+
string;
|
|
4951
|
+
}
|
|
4698
4952
|
interface GoogleCloudAiplatformV1PipelineJob {
|
|
4699
4953
|
/** Output only. Pipeline creation time. */
|
|
4700
4954
|
createTime?:
|
|
@@ -4763,7 +5017,10 @@ declare namespace gapi.client {
|
|
|
4763
5017
|
/** Output only. Pipeline template metadata. Will fill up fields if PipelineJob.template_uri is from supported template registry. */
|
|
4764
5018
|
templateMetadata?:
|
|
4765
5019
|
GoogleCloudAiplatformV1PipelineTemplateMetadata;
|
|
4766
|
-
/**
|
|
5020
|
+
/**
|
|
5021
|
+
* A template uri from where the PipelineJob.pipeline_spec, if empty, will be downloaded. Currently, only uri from Vertex Template Registry & Gallery is supported. Reference to
|
|
5022
|
+
* https://cloud.google.com/vertex-ai/docs/pipelines/create-pipeline-template.
|
|
5023
|
+
*/
|
|
4767
5024
|
templateUri?:
|
|
4768
5025
|
string;
|
|
4769
5026
|
/** Output only. Timestamp when this PipelineJob was most recently updated. */
|
|
@@ -6204,6 +6461,19 @@ declare namespace gapi.client {
|
|
|
6204
6461
|
status?:
|
|
6205
6462
|
string;
|
|
6206
6463
|
}
|
|
6464
|
+
interface GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfig {
|
|
6465
|
+
/** The sources for the grounding checking. */
|
|
6466
|
+
sources?:
|
|
6467
|
+
GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfigSourceEntry[];
|
|
6468
|
+
}
|
|
6469
|
+
interface GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfigSourceEntry {
|
|
6470
|
+
/** The uri of the Enterprise Search data source. */
|
|
6471
|
+
enterpriseDatastore?:
|
|
6472
|
+
string;
|
|
6473
|
+
/** The type of the grounding checking source. */
|
|
6474
|
+
type?:
|
|
6475
|
+
string;
|
|
6476
|
+
}
|
|
6207
6477
|
interface GoogleCloudAiplatformV1SchemaPredictParamsImageClassificationPredictionParams {
|
|
6208
6478
|
/** The Model only returns predictions with at least this confidence score. Default value is 0.0 */
|
|
6209
6479
|
confidenceThreshold?:
|
|
@@ -6571,15 +6841,24 @@ declare namespace gapi.client {
|
|
|
6571
6841
|
GoogleCloudAiplatformV1SchemaTextSegment;
|
|
6572
6842
|
}
|
|
6573
6843
|
interface GoogleCloudAiplatformV1SchemaTextPromptDatasetMetadata {
|
|
6844
|
+
/** Number of candidates. */
|
|
6845
|
+
candidateCount?:
|
|
6846
|
+
string;
|
|
6574
6847
|
/** The Google Cloud Storage URI that stores the prompt data. */
|
|
6575
6848
|
gcsUri?:
|
|
6576
6849
|
string;
|
|
6850
|
+
/** Grounding checking configuration. */
|
|
6851
|
+
groundingConfig?:
|
|
6852
|
+
GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfig;
|
|
6577
6853
|
/** Value of the maximum number of tokens generated set when the dataset was saved. */
|
|
6578
6854
|
maxOutputTokens?:
|
|
6579
6855
|
string;
|
|
6580
6856
|
/** Type of the prompt dataset. */
|
|
6581
6857
|
promptType?:
|
|
6582
6858
|
string;
|
|
6859
|
+
/** Customized stop sequences. */
|
|
6860
|
+
stopSequences?:
|
|
6861
|
+
string[];
|
|
6583
6862
|
/** Temperature value used for sampling set when the dataset was saved. This value is used to tune the degree of randomness. */
|
|
6584
6863
|
temperature?:
|
|
6585
6864
|
number;
|
|
@@ -7832,6 +8111,17 @@ declare namespace gapi.client {
|
|
|
7832
8111
|
specialistWorkerEmails?:
|
|
7833
8112
|
string[];
|
|
7834
8113
|
}
|
|
8114
|
+
interface GoogleCloudAiplatformV1StartNotebookRuntimeOperationMetadata {
|
|
8115
|
+
/** The operation generic information. */
|
|
8116
|
+
genericMetadata?:
|
|
8117
|
+
GoogleCloudAiplatformV1GenericOperationMetadata;
|
|
8118
|
+
/** A human-readable message that shows the intermediate progress details of NotebookRuntime. */
|
|
8119
|
+
progressMessage?:
|
|
8120
|
+
string;
|
|
8121
|
+
}
|
|
8122
|
+
// tslint:disable-next-line:no-empty-interface
|
|
8123
|
+
interface GoogleCloudAiplatformV1StartNotebookRuntimeRequest {
|
|
8124
|
+
}
|
|
7835
8125
|
// tslint:disable-next-line:no-empty-interface
|
|
7836
8126
|
interface GoogleCloudAiplatformV1StopTrialRequest {
|
|
7837
8127
|
}
|
|
@@ -11233,14 +11523,9 @@ declare namespace gapi.client {
|
|
|
11233
11523
|
operations:
|
|
11234
11524
|
OperationsResource;
|
|
11235
11525
|
}
|
|
11236
|
-
interface
|
|
11237
|
-
/**
|
|
11238
|
-
|
|
11239
|
-
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the
|
|
11240
|
-
* operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
|
|
11241
|
-
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
11242
|
-
*/
|
|
11243
|
-
cancel(request?: {
|
|
11526
|
+
interface DatasetVersionsResource {
|
|
11527
|
+
/** Create a version from a Dataset. */
|
|
11528
|
+
create(request: {
|
|
11244
11529
|
/** V1 error format. */
|
|
11245
11530
|
"$.xgafv"?:
|
|
11246
11531
|
string;
|
|
@@ -11259,12 +11544,53 @@ declare namespace gapi.client {
|
|
|
11259
11544
|
/** 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. */
|
|
11260
11545
|
key?:
|
|
11261
11546
|
string;
|
|
11262
|
-
/**
|
|
11263
|
-
|
|
11547
|
+
/** OAuth 2.0 token for the current user. */
|
|
11548
|
+
oauth_token?:
|
|
11549
|
+
string;
|
|
11550
|
+
/** Required. The name of the Dataset resource. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
11551
|
+
parent:
|
|
11552
|
+
string;
|
|
11553
|
+
/** Returns response with indentations and line breaks. */
|
|
11554
|
+
prettyPrint?:
|
|
11555
|
+
boolean;
|
|
11556
|
+
/** 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. */
|
|
11557
|
+
quotaUser?:
|
|
11558
|
+
string;
|
|
11559
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11560
|
+
upload_protocol?:
|
|
11561
|
+
string;
|
|
11562
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11563
|
+
uploadType?:
|
|
11564
|
+
string;
|
|
11565
|
+
/** Request body */
|
|
11566
|
+
resource:
|
|
11567
|
+
GoogleCloudAiplatformV1DatasetVersion;
|
|
11568
|
+
}): Request<GoogleLongrunningOperation>;
|
|
11569
|
+
create(request: {
|
|
11570
|
+
/** V1 error format. */
|
|
11571
|
+
"$.xgafv"?:
|
|
11572
|
+
string;
|
|
11573
|
+
/** OAuth access token. */
|
|
11574
|
+
access_token?:
|
|
11575
|
+
string;
|
|
11576
|
+
/** Data format for response. */
|
|
11577
|
+
alt?:
|
|
11578
|
+
string;
|
|
11579
|
+
/** JSONP */
|
|
11580
|
+
callback?:
|
|
11581
|
+
string;
|
|
11582
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11583
|
+
fields?:
|
|
11584
|
+
string;
|
|
11585
|
+
/** 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. */
|
|
11586
|
+
key?:
|
|
11264
11587
|
string;
|
|
11265
11588
|
/** OAuth 2.0 token for the current user. */
|
|
11266
11589
|
oauth_token?:
|
|
11267
11590
|
string;
|
|
11591
|
+
/** Required. The name of the Dataset resource. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
11592
|
+
parent:
|
|
11593
|
+
string;
|
|
11268
11594
|
/** Returns response with indentations and line breaks. */
|
|
11269
11595
|
prettyPrint?:
|
|
11270
11596
|
boolean;
|
|
@@ -11277,11 +11603,9 @@ declare namespace gapi.client {
|
|
|
11277
11603
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11278
11604
|
uploadType?:
|
|
11279
11605
|
string;
|
|
11280
|
-
}
|
|
11281
|
-
|
|
11282
|
-
|
|
11283
|
-
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
11284
|
-
*/
|
|
11606
|
+
},
|
|
11607
|
+
body: GoogleCloudAiplatformV1DatasetVersion): Request<GoogleLongrunningOperation>;
|
|
11608
|
+
/** Deletes a Dataset version. */
|
|
11285
11609
|
delete(request?: {
|
|
11286
11610
|
/** V1 error format. */
|
|
11287
11611
|
"$.xgafv"?:
|
|
@@ -11301,7 +11625,7 @@ declare namespace gapi.client {
|
|
|
11301
11625
|
/** 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. */
|
|
11302
11626
|
key?:
|
|
11303
11627
|
string;
|
|
11304
|
-
/** The name of the
|
|
11628
|
+
/** Required. The resource name of the Dataset version to delete. Format: `projects/{project}/locations/{location}/datasets/{dataset}/datasetVersions/{dataset_version}` */
|
|
11305
11629
|
name:
|
|
11306
11630
|
string;
|
|
11307
11631
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -11319,8 +11643,8 @@ declare namespace gapi.client {
|
|
|
11319
11643
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11320
11644
|
uploadType?:
|
|
11321
11645
|
string;
|
|
11322
|
-
}): Request<
|
|
11323
|
-
/** Gets
|
|
11646
|
+
}): Request<GoogleLongrunningOperation>;
|
|
11647
|
+
/** Gets a Dataset version. */
|
|
11324
11648
|
get(request?: {
|
|
11325
11649
|
/** V1 error format. */
|
|
11326
11650
|
"$.xgafv"?:
|
|
@@ -11340,7 +11664,7 @@ declare namespace gapi.client {
|
|
|
11340
11664
|
/** 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. */
|
|
11341
11665
|
key?:
|
|
11342
11666
|
string;
|
|
11343
|
-
/** The name of the
|
|
11667
|
+
/** Required. The resource name of the Dataset version to delete. Format: `projects/{project}/locations/{location}/datasets/{dataset}/datasetVersions/{dataset_version}` */
|
|
11344
11668
|
name:
|
|
11345
11669
|
string;
|
|
11346
11670
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -11352,14 +11676,17 @@ declare namespace gapi.client {
|
|
|
11352
11676
|
/** 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. */
|
|
11353
11677
|
quotaUser?:
|
|
11354
11678
|
string;
|
|
11679
|
+
/** Mask specifying which fields to read. */
|
|
11680
|
+
readMask?:
|
|
11681
|
+
string;
|
|
11355
11682
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11356
11683
|
upload_protocol?:
|
|
11357
11684
|
string;
|
|
11358
11685
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11359
11686
|
uploadType?:
|
|
11360
11687
|
string;
|
|
11361
|
-
}): Request<
|
|
11362
|
-
/** Lists
|
|
11688
|
+
}): Request<GoogleCloudAiplatformV1DatasetVersion>;
|
|
11689
|
+
/** Lists DatasetVersions in a Dataset. */
|
|
11363
11690
|
list(request?: {
|
|
11364
11691
|
/** V1 error format. */
|
|
11365
11692
|
"$.xgafv"?:
|
|
@@ -11376,44 +11703,45 @@ declare namespace gapi.client {
|
|
|
11376
11703
|
/** Selector specifying which fields to include in a partial response. */
|
|
11377
11704
|
fields?:
|
|
11378
11705
|
string;
|
|
11379
|
-
/** The standard list filter. */
|
|
11706
|
+
/** Optional. The standard list filter. */
|
|
11380
11707
|
filter?:
|
|
11381
11708
|
string;
|
|
11382
11709
|
/** 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. */
|
|
11383
11710
|
key?:
|
|
11384
11711
|
string;
|
|
11385
|
-
/** The name of the operation's parent resource. */
|
|
11386
|
-
name:
|
|
11387
|
-
string;
|
|
11388
11712
|
/** OAuth 2.0 token for the current user. */
|
|
11389
11713
|
oauth_token?:
|
|
11390
11714
|
string;
|
|
11391
|
-
/**
|
|
11715
|
+
/** Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. */
|
|
11716
|
+
orderBy?:
|
|
11717
|
+
string;
|
|
11718
|
+
/** Optional. The standard list page size. */
|
|
11392
11719
|
pageSize?:
|
|
11393
11720
|
number;
|
|
11394
|
-
/** The standard list page token. */
|
|
11721
|
+
/** Optional. The standard list page token. */
|
|
11395
11722
|
pageToken?:
|
|
11396
11723
|
string;
|
|
11724
|
+
/** Required. The resource name of the Dataset to list DatasetVersions from. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
11725
|
+
parent:
|
|
11726
|
+
string;
|
|
11397
11727
|
/** Returns response with indentations and line breaks. */
|
|
11398
11728
|
prettyPrint?:
|
|
11399
11729
|
boolean;
|
|
11400
11730
|
/** 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. */
|
|
11401
11731
|
quotaUser?:
|
|
11402
11732
|
string;
|
|
11733
|
+
/** Optional. Mask specifying which fields to read. */
|
|
11734
|
+
readMask?:
|
|
11735
|
+
string;
|
|
11403
11736
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11404
11737
|
upload_protocol?:
|
|
11405
11738
|
string;
|
|
11406
11739
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11407
11740
|
uploadType?:
|
|
11408
11741
|
string;
|
|
11409
|
-
}): Request<
|
|
11410
|
-
/**
|
|
11411
|
-
|
|
11412
|
-
* 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
|
|
11413
|
-
* `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
|
|
11414
|
-
* an immediate response is no guarantee that the operation is done.
|
|
11415
|
-
*/
|
|
11416
|
-
wait(request?: {
|
|
11742
|
+
}): Request<GoogleCloudAiplatformV1ListDatasetVersionsResponse>;
|
|
11743
|
+
/** Restores a dataset version. */
|
|
11744
|
+
restore(request?: {
|
|
11417
11745
|
/** V1 error format. */
|
|
11418
11746
|
"$.xgafv"?:
|
|
11419
11747
|
string;
|
|
@@ -11432,7 +11760,7 @@ declare namespace gapi.client {
|
|
|
11432
11760
|
/** 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. */
|
|
11433
11761
|
key?:
|
|
11434
11762
|
string;
|
|
11435
|
-
/** The name of the
|
|
11763
|
+
/** Required. The name of the DatasetVersion resource. Format: `projects/{project}/locations/{location}/datasets/{dataset}/datasetVersions/{dataset_version}` */
|
|
11436
11764
|
name:
|
|
11437
11765
|
string;
|
|
11438
11766
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -11444,12 +11772,6 @@ declare namespace gapi.client {
|
|
|
11444
11772
|
/** 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. */
|
|
11445
11773
|
quotaUser?:
|
|
11446
11774
|
string;
|
|
11447
|
-
/**
|
|
11448
|
-
* 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
|
|
11449
|
-
* specified, the shorter one will be used.
|
|
11450
|
-
*/
|
|
11451
|
-
timeout?:
|
|
11452
|
-
string;
|
|
11453
11775
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11454
11776
|
upload_protocol?:
|
|
11455
11777
|
string;
|
|
@@ -11683,12 +12005,237 @@ declare namespace gapi.client {
|
|
|
11683
12005
|
string;
|
|
11684
12006
|
}): Request<GoogleLongrunningOperation>;
|
|
11685
12007
|
}
|
|
11686
|
-
interface
|
|
11687
|
-
/**
|
|
11688
|
-
|
|
11689
|
-
|
|
11690
|
-
|
|
11691
|
-
|
|
12008
|
+
interface OperationsResource {
|
|
12009
|
+
/**
|
|
12010
|
+
* 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
|
|
12011
|
+
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the
|
|
12012
|
+
* operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
|
|
12013
|
+
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
12014
|
+
*/
|
|
12015
|
+
cancel(request?: {
|
|
12016
|
+
/** V1 error format. */
|
|
12017
|
+
"$.xgafv"?:
|
|
12018
|
+
string;
|
|
12019
|
+
/** OAuth access token. */
|
|
12020
|
+
access_token?:
|
|
12021
|
+
string;
|
|
12022
|
+
/** Data format for response. */
|
|
12023
|
+
alt?:
|
|
12024
|
+
string;
|
|
12025
|
+
/** JSONP */
|
|
12026
|
+
callback?:
|
|
12027
|
+
string;
|
|
12028
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12029
|
+
fields?:
|
|
12030
|
+
string;
|
|
12031
|
+
/** 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. */
|
|
12032
|
+
key?:
|
|
12033
|
+
string;
|
|
12034
|
+
/** The name of the operation resource to be cancelled. */
|
|
12035
|
+
name:
|
|
12036
|
+
string;
|
|
12037
|
+
/** OAuth 2.0 token for the current user. */
|
|
12038
|
+
oauth_token?:
|
|
12039
|
+
string;
|
|
12040
|
+
/** Returns response with indentations and line breaks. */
|
|
12041
|
+
prettyPrint?:
|
|
12042
|
+
boolean;
|
|
12043
|
+
/** 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. */
|
|
12044
|
+
quotaUser?:
|
|
12045
|
+
string;
|
|
12046
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12047
|
+
upload_protocol?:
|
|
12048
|
+
string;
|
|
12049
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12050
|
+
uploadType?:
|
|
12051
|
+
string;
|
|
12052
|
+
}): Request<{}>;
|
|
12053
|
+
/**
|
|
12054
|
+
* 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
|
|
12055
|
+
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
12056
|
+
*/
|
|
12057
|
+
delete(request?: {
|
|
12058
|
+
/** V1 error format. */
|
|
12059
|
+
"$.xgafv"?:
|
|
12060
|
+
string;
|
|
12061
|
+
/** OAuth access token. */
|
|
12062
|
+
access_token?:
|
|
12063
|
+
string;
|
|
12064
|
+
/** Data format for response. */
|
|
12065
|
+
alt?:
|
|
12066
|
+
string;
|
|
12067
|
+
/** JSONP */
|
|
12068
|
+
callback?:
|
|
12069
|
+
string;
|
|
12070
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12071
|
+
fields?:
|
|
12072
|
+
string;
|
|
12073
|
+
/** 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. */
|
|
12074
|
+
key?:
|
|
12075
|
+
string;
|
|
12076
|
+
/** The name of the operation resource to be deleted. */
|
|
12077
|
+
name:
|
|
12078
|
+
string;
|
|
12079
|
+
/** OAuth 2.0 token for the current user. */
|
|
12080
|
+
oauth_token?:
|
|
12081
|
+
string;
|
|
12082
|
+
/** Returns response with indentations and line breaks. */
|
|
12083
|
+
prettyPrint?:
|
|
12084
|
+
boolean;
|
|
12085
|
+
/** 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. */
|
|
12086
|
+
quotaUser?:
|
|
12087
|
+
string;
|
|
12088
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12089
|
+
upload_protocol?:
|
|
12090
|
+
string;
|
|
12091
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12092
|
+
uploadType?:
|
|
12093
|
+
string;
|
|
12094
|
+
}): Request<{}>;
|
|
12095
|
+
/** 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. */
|
|
12096
|
+
get(request?: {
|
|
12097
|
+
/** V1 error format. */
|
|
12098
|
+
"$.xgafv"?:
|
|
12099
|
+
string;
|
|
12100
|
+
/** OAuth access token. */
|
|
12101
|
+
access_token?:
|
|
12102
|
+
string;
|
|
12103
|
+
/** Data format for response. */
|
|
12104
|
+
alt?:
|
|
12105
|
+
string;
|
|
12106
|
+
/** JSONP */
|
|
12107
|
+
callback?:
|
|
12108
|
+
string;
|
|
12109
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12110
|
+
fields?:
|
|
12111
|
+
string;
|
|
12112
|
+
/** 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. */
|
|
12113
|
+
key?:
|
|
12114
|
+
string;
|
|
12115
|
+
/** The name of the operation resource. */
|
|
12116
|
+
name:
|
|
12117
|
+
string;
|
|
12118
|
+
/** OAuth 2.0 token for the current user. */
|
|
12119
|
+
oauth_token?:
|
|
12120
|
+
string;
|
|
12121
|
+
/** Returns response with indentations and line breaks. */
|
|
12122
|
+
prettyPrint?:
|
|
12123
|
+
boolean;
|
|
12124
|
+
/** 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. */
|
|
12125
|
+
quotaUser?:
|
|
12126
|
+
string;
|
|
12127
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12128
|
+
upload_protocol?:
|
|
12129
|
+
string;
|
|
12130
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12131
|
+
uploadType?:
|
|
12132
|
+
string;
|
|
12133
|
+
}): Request<GoogleLongrunningOperation>;
|
|
12134
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
12135
|
+
list(request?: {
|
|
12136
|
+
/** V1 error format. */
|
|
12137
|
+
"$.xgafv"?:
|
|
12138
|
+
string;
|
|
12139
|
+
/** OAuth access token. */
|
|
12140
|
+
access_token?:
|
|
12141
|
+
string;
|
|
12142
|
+
/** Data format for response. */
|
|
12143
|
+
alt?:
|
|
12144
|
+
string;
|
|
12145
|
+
/** JSONP */
|
|
12146
|
+
callback?:
|
|
12147
|
+
string;
|
|
12148
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12149
|
+
fields?:
|
|
12150
|
+
string;
|
|
12151
|
+
/** The standard list filter. */
|
|
12152
|
+
filter?:
|
|
12153
|
+
string;
|
|
12154
|
+
/** 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. */
|
|
12155
|
+
key?:
|
|
12156
|
+
string;
|
|
12157
|
+
/** The name of the operation's parent resource. */
|
|
12158
|
+
name:
|
|
12159
|
+
string;
|
|
12160
|
+
/** OAuth 2.0 token for the current user. */
|
|
12161
|
+
oauth_token?:
|
|
12162
|
+
string;
|
|
12163
|
+
/** The standard list page size. */
|
|
12164
|
+
pageSize?:
|
|
12165
|
+
number;
|
|
12166
|
+
/** The standard list page token. */
|
|
12167
|
+
pageToken?:
|
|
12168
|
+
string;
|
|
12169
|
+
/** Returns response with indentations and line breaks. */
|
|
12170
|
+
prettyPrint?:
|
|
12171
|
+
boolean;
|
|
12172
|
+
/** 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. */
|
|
12173
|
+
quotaUser?:
|
|
12174
|
+
string;
|
|
12175
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12176
|
+
upload_protocol?:
|
|
12177
|
+
string;
|
|
12178
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12179
|
+
uploadType?:
|
|
12180
|
+
string;
|
|
12181
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
12182
|
+
/**
|
|
12183
|
+
* 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
|
|
12184
|
+
* 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
|
|
12185
|
+
* `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
|
|
12186
|
+
* an immediate response is no guarantee that the operation is done.
|
|
12187
|
+
*/
|
|
12188
|
+
wait(request?: {
|
|
12189
|
+
/** V1 error format. */
|
|
12190
|
+
"$.xgafv"?:
|
|
12191
|
+
string;
|
|
12192
|
+
/** OAuth access token. */
|
|
12193
|
+
access_token?:
|
|
12194
|
+
string;
|
|
12195
|
+
/** Data format for response. */
|
|
12196
|
+
alt?:
|
|
12197
|
+
string;
|
|
12198
|
+
/** JSONP */
|
|
12199
|
+
callback?:
|
|
12200
|
+
string;
|
|
12201
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12202
|
+
fields?:
|
|
12203
|
+
string;
|
|
12204
|
+
/** 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. */
|
|
12205
|
+
key?:
|
|
12206
|
+
string;
|
|
12207
|
+
/** The name of the operation resource to wait on. */
|
|
12208
|
+
name:
|
|
12209
|
+
string;
|
|
12210
|
+
/** OAuth 2.0 token for the current user. */
|
|
12211
|
+
oauth_token?:
|
|
12212
|
+
string;
|
|
12213
|
+
/** Returns response with indentations and line breaks. */
|
|
12214
|
+
prettyPrint?:
|
|
12215
|
+
boolean;
|
|
12216
|
+
/** 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. */
|
|
12217
|
+
quotaUser?:
|
|
12218
|
+
string;
|
|
12219
|
+
/**
|
|
12220
|
+
* 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
|
|
12221
|
+
* specified, the shorter one will be used.
|
|
12222
|
+
*/
|
|
12223
|
+
timeout?:
|
|
12224
|
+
string;
|
|
12225
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12226
|
+
upload_protocol?:
|
|
12227
|
+
string;
|
|
12228
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12229
|
+
uploadType?:
|
|
12230
|
+
string;
|
|
12231
|
+
}): Request<GoogleLongrunningOperation>;
|
|
12232
|
+
}
|
|
12233
|
+
interface SavedQueriesResource {
|
|
12234
|
+
/** Deletes a SavedQuery. */
|
|
12235
|
+
delete(request?: {
|
|
12236
|
+
/** V1 error format. */
|
|
12237
|
+
"$.xgafv"?:
|
|
12238
|
+
string;
|
|
11692
12239
|
/** OAuth access token. */
|
|
11693
12240
|
access_token?:
|
|
11694
12241
|
string;
|
|
@@ -12351,6 +12898,8 @@ declare namespace gapi.client {
|
|
|
12351
12898
|
AnnotationSpecsResource;
|
|
12352
12899
|
dataItems:
|
|
12353
12900
|
DataItemsResource;
|
|
12901
|
+
datasetVersions:
|
|
12902
|
+
DatasetVersionsResource;
|
|
12354
12903
|
operations:
|
|
12355
12904
|
OperationsResource;
|
|
12356
12905
|
savedQueries:
|
|
@@ -14043,7 +14592,7 @@ declare namespace gapi.client {
|
|
|
14043
14592
|
string;
|
|
14044
14593
|
/**
|
|
14045
14594
|
* Required. The ID to use for the Feature, which will become the final component of the Feature's resource name. This value may be up to 128 characters, and valid characters are
|
|
14046
|
-
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType
|
|
14595
|
+
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
|
|
14047
14596
|
*/
|
|
14048
14597
|
featureId?:
|
|
14049
14598
|
string;
|
|
@@ -14056,7 +14605,6 @@ declare namespace gapi.client {
|
|
|
14056
14605
|
/** OAuth 2.0 token for the current user. */
|
|
14057
14606
|
oauth_token?:
|
|
14058
14607
|
string;
|
|
14059
|
-
/** Required. The resource name of the EntityType to create a Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` */
|
|
14060
14608
|
parent:
|
|
14061
14609
|
string;
|
|
14062
14610
|
/** Returns response with indentations and line breaks. */
|
|
@@ -14090,7 +14638,7 @@ declare namespace gapi.client {
|
|
|
14090
14638
|
string;
|
|
14091
14639
|
/**
|
|
14092
14640
|
* Required. The ID to use for the Feature, which will become the final component of the Feature's resource name. This value may be up to 128 characters, and valid characters are
|
|
14093
|
-
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType
|
|
14641
|
+
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
|
|
14094
14642
|
*/
|
|
14095
14643
|
featureId?:
|
|
14096
14644
|
string;
|
|
@@ -14103,7 +14651,6 @@ declare namespace gapi.client {
|
|
|
14103
14651
|
/** OAuth 2.0 token for the current user. */
|
|
14104
14652
|
oauth_token?:
|
|
14105
14653
|
string;
|
|
14106
|
-
/** Required. The resource name of the EntityType to create a Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` */
|
|
14107
14654
|
parent:
|
|
14108
14655
|
string;
|
|
14109
14656
|
/** Returns response with indentations and line breaks. */
|
|
@@ -14140,7 +14687,10 @@ declare namespace gapi.client {
|
|
|
14140
14687
|
/** 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. */
|
|
14141
14688
|
key?:
|
|
14142
14689
|
string;
|
|
14143
|
-
/**
|
|
14690
|
+
/**
|
|
14691
|
+
* Required. The name of the Features to be deleted. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}`
|
|
14692
|
+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}`
|
|
14693
|
+
*/
|
|
14144
14694
|
name:
|
|
14145
14695
|
string;
|
|
14146
14696
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -14179,7 +14729,10 @@ declare namespace gapi.client {
|
|
|
14179
14729
|
/** 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. */
|
|
14180
14730
|
key?:
|
|
14181
14731
|
string;
|
|
14182
|
-
/**
|
|
14732
|
+
/**
|
|
14733
|
+
* Required. The name of the Feature resource. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
|
|
14734
|
+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}`
|
|
14735
|
+
*/
|
|
14183
14736
|
name:
|
|
14184
14737
|
string;
|
|
14185
14738
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -14254,7 +14807,10 @@ declare namespace gapi.client {
|
|
|
14254
14807
|
*/
|
|
14255
14808
|
pageToken?:
|
|
14256
14809
|
string;
|
|
14257
|
-
/**
|
|
14810
|
+
/**
|
|
14811
|
+
* Required. The resource name of the Location to list Features. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
|
|
14812
|
+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}`
|
|
14813
|
+
*/
|
|
14258
14814
|
parent:
|
|
14259
14815
|
string;
|
|
14260
14816
|
/** Returns response with indentations and line breaks. */
|
|
@@ -23995,6 +24551,705 @@ declare namespace gapi.client {
|
|
|
23995
24551
|
nasTrialDetails:
|
|
23996
24552
|
NasTrialDetailsResource;
|
|
23997
24553
|
}
|
|
24554
|
+
interface NotebookRuntimesResource {
|
|
24555
|
+
/** Assigns a NotebookRuntime to a user for a particular Notebook file. This method will either returns an existing assignment or generates a new one. */
|
|
24556
|
+
assign(request: {
|
|
24557
|
+
/** V1 error format. */
|
|
24558
|
+
"$.xgafv"?:
|
|
24559
|
+
string;
|
|
24560
|
+
/** OAuth access token. */
|
|
24561
|
+
access_token?:
|
|
24562
|
+
string;
|
|
24563
|
+
/** Data format for response. */
|
|
24564
|
+
alt?:
|
|
24565
|
+
string;
|
|
24566
|
+
/** JSONP */
|
|
24567
|
+
callback?:
|
|
24568
|
+
string;
|
|
24569
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
24570
|
+
fields?:
|
|
24571
|
+
string;
|
|
24572
|
+
/** 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. */
|
|
24573
|
+
key?:
|
|
24574
|
+
string;
|
|
24575
|
+
/** OAuth 2.0 token for the current user. */
|
|
24576
|
+
oauth_token?:
|
|
24577
|
+
string;
|
|
24578
|
+
/** Required. The resource name of the Location to get the NotebookRuntime assignment. Format: `projects/{project}/locations/{location}` */
|
|
24579
|
+
parent:
|
|
24580
|
+
string;
|
|
24581
|
+
/** Returns response with indentations and line breaks. */
|
|
24582
|
+
prettyPrint?:
|
|
24583
|
+
boolean;
|
|
24584
|
+
/** 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. */
|
|
24585
|
+
quotaUser?:
|
|
24586
|
+
string;
|
|
24587
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24588
|
+
upload_protocol?:
|
|
24589
|
+
string;
|
|
24590
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24591
|
+
uploadType?:
|
|
24592
|
+
string;
|
|
24593
|
+
/** Request body */
|
|
24594
|
+
resource:
|
|
24595
|
+
GoogleCloudAiplatformV1AssignNotebookRuntimeRequest;
|
|
24596
|
+
}): Request<GoogleLongrunningOperation>;
|
|
24597
|
+
assign(request: {
|
|
24598
|
+
/** V1 error format. */
|
|
24599
|
+
"$.xgafv"?:
|
|
24600
|
+
string;
|
|
24601
|
+
/** OAuth access token. */
|
|
24602
|
+
access_token?:
|
|
24603
|
+
string;
|
|
24604
|
+
/** Data format for response. */
|
|
24605
|
+
alt?:
|
|
24606
|
+
string;
|
|
24607
|
+
/** JSONP */
|
|
24608
|
+
callback?:
|
|
24609
|
+
string;
|
|
24610
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
24611
|
+
fields?:
|
|
24612
|
+
string;
|
|
24613
|
+
/** 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. */
|
|
24614
|
+
key?:
|
|
24615
|
+
string;
|
|
24616
|
+
/** OAuth 2.0 token for the current user. */
|
|
24617
|
+
oauth_token?:
|
|
24618
|
+
string;
|
|
24619
|
+
/** Required. The resource name of the Location to get the NotebookRuntime assignment. Format: `projects/{project}/locations/{location}` */
|
|
24620
|
+
parent:
|
|
24621
|
+
string;
|
|
24622
|
+
/** Returns response with indentations and line breaks. */
|
|
24623
|
+
prettyPrint?:
|
|
24624
|
+
boolean;
|
|
24625
|
+
/** 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. */
|
|
24626
|
+
quotaUser?:
|
|
24627
|
+
string;
|
|
24628
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24629
|
+
upload_protocol?:
|
|
24630
|
+
string;
|
|
24631
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24632
|
+
uploadType?:
|
|
24633
|
+
string;
|
|
24634
|
+
},
|
|
24635
|
+
body: GoogleCloudAiplatformV1AssignNotebookRuntimeRequest): Request<GoogleLongrunningOperation>;
|
|
24636
|
+
/** Deletes a NotebookRuntime. */
|
|
24637
|
+
delete(request?: {
|
|
24638
|
+
/** V1 error format. */
|
|
24639
|
+
"$.xgafv"?:
|
|
24640
|
+
string;
|
|
24641
|
+
/** OAuth access token. */
|
|
24642
|
+
access_token?:
|
|
24643
|
+
string;
|
|
24644
|
+
/** Data format for response. */
|
|
24645
|
+
alt?:
|
|
24646
|
+
string;
|
|
24647
|
+
/** JSONP */
|
|
24648
|
+
callback?:
|
|
24649
|
+
string;
|
|
24650
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
24651
|
+
fields?:
|
|
24652
|
+
string;
|
|
24653
|
+
/** 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. */
|
|
24654
|
+
key?:
|
|
24655
|
+
string;
|
|
24656
|
+
/**
|
|
24657
|
+
* Required. The name of the NotebookRuntime resource to be deleted. Instead of checking whether the name is in valid NotebookRuntime resource name format, directly throw NotFound
|
|
24658
|
+
* exception if there is no such NotebookRuntime in spanner.
|
|
24659
|
+
*/
|
|
24660
|
+
name:
|
|
24661
|
+
string;
|
|
24662
|
+
/** OAuth 2.0 token for the current user. */
|
|
24663
|
+
oauth_token?:
|
|
24664
|
+
string;
|
|
24665
|
+
/** Returns response with indentations and line breaks. */
|
|
24666
|
+
prettyPrint?:
|
|
24667
|
+
boolean;
|
|
24668
|
+
/** 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. */
|
|
24669
|
+
quotaUser?:
|
|
24670
|
+
string;
|
|
24671
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24672
|
+
upload_protocol?:
|
|
24673
|
+
string;
|
|
24674
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24675
|
+
uploadType?:
|
|
24676
|
+
string;
|
|
24677
|
+
}): Request<GoogleLongrunningOperation>;
|
|
24678
|
+
/** Gets a NotebookRuntime. */
|
|
24679
|
+
get(request?: {
|
|
24680
|
+
/** V1 error format. */
|
|
24681
|
+
"$.xgafv"?:
|
|
24682
|
+
string;
|
|
24683
|
+
/** OAuth access token. */
|
|
24684
|
+
access_token?:
|
|
24685
|
+
string;
|
|
24686
|
+
/** Data format for response. */
|
|
24687
|
+
alt?:
|
|
24688
|
+
string;
|
|
24689
|
+
/** JSONP */
|
|
24690
|
+
callback?:
|
|
24691
|
+
string;
|
|
24692
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
24693
|
+
fields?:
|
|
24694
|
+
string;
|
|
24695
|
+
/** 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. */
|
|
24696
|
+
key?:
|
|
24697
|
+
string;
|
|
24698
|
+
/**
|
|
24699
|
+
* Required. The name of the NotebookRuntime resource. Instead of checking whether the name is in valid NotebookRuntime resource name format, directly throw NotFound exception if
|
|
24700
|
+
* there is no such NotebookRuntime in spanner.
|
|
24701
|
+
*/
|
|
24702
|
+
name:
|
|
24703
|
+
string;
|
|
24704
|
+
/** OAuth 2.0 token for the current user. */
|
|
24705
|
+
oauth_token?:
|
|
24706
|
+
string;
|
|
24707
|
+
/** Returns response with indentations and line breaks. */
|
|
24708
|
+
prettyPrint?:
|
|
24709
|
+
boolean;
|
|
24710
|
+
/** 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. */
|
|
24711
|
+
quotaUser?:
|
|
24712
|
+
string;
|
|
24713
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24714
|
+
upload_protocol?:
|
|
24715
|
+
string;
|
|
24716
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24717
|
+
uploadType?:
|
|
24718
|
+
string;
|
|
24719
|
+
}): Request<GoogleCloudAiplatformV1NotebookRuntime>;
|
|
24720
|
+
/** Lists NotebookRuntimes in a Location. */
|
|
24721
|
+
list(request?: {
|
|
24722
|
+
/** V1 error format. */
|
|
24723
|
+
"$.xgafv"?:
|
|
24724
|
+
string;
|
|
24725
|
+
/** OAuth access token. */
|
|
24726
|
+
access_token?:
|
|
24727
|
+
string;
|
|
24728
|
+
/** Data format for response. */
|
|
24729
|
+
alt?:
|
|
24730
|
+
string;
|
|
24731
|
+
/** JSONP */
|
|
24732
|
+
callback?:
|
|
24733
|
+
string;
|
|
24734
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
24735
|
+
fields?:
|
|
24736
|
+
string;
|
|
24737
|
+
/**
|
|
24738
|
+
* Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported. * `notebookRuntime` supports = and !=.
|
|
24739
|
+
* `notebookRuntime` represents the NotebookRuntime ID, i.e. the last segment of the NotebookRuntime's resource name. * `displayName` supports = and != and regex. *
|
|
24740
|
+
* `notebookRuntimeTemplate` supports = and !=. `notebookRuntimeTemplate` represents the NotebookRuntimeTemplate ID, i.e. the last segment of the NotebookRuntimeTemplate's resource
|
|
24741
|
+
* name. * `healthState` supports = and !=. healthState enum: [HEALTHY, UNHEALTHY, HEALTH_STATE_UNSPECIFIED]. * `runtimeState` supports = and !=. runtimeState enum:
|
|
24742
|
+
* [RUNTIME_STATE_UNSPECIFIED, RUNNING, BEING_STARTED, BEING_STOPPED, STOPPED, BEING_UPGRADED]. * `runtimeUser` supports = and !=. * API version is UI only: `uiState` supports =
|
|
24743
|
+
* and !=. uiState enum: [UI_RESOURCE_STATE_UNSPECIFIED, UI_RESOURCE_STATE_BEING_CREATED, UI_RESOURCE_STATE_ACTIVE, UI_RESOURCE_STATE_BEING_DELETED,
|
|
24744
|
+
* UI_RESOURCE_STATE_CREATION_FAILED]. * `notebookRuntimeType` supports = and !=. notebookRuntimeType enum: [USER_DEFINED, ONE_CLICK]. Some examples: *
|
|
24745
|
+
* `notebookRuntime="notebookRuntime123"` * `displayName="myDisplayName"` and `displayName=~"myDisplayNameRegex"` * `notebookRuntimeTemplate="notebookRuntimeTemplate321"` *
|
|
24746
|
+
* `healthState=HEALTHY` * `runtimeState=RUNNING` * `runtimeUser="test@google.com"` * `uiState=UI_RESOURCE_STATE_BEING_DELETED` * `notebookRuntimeType=USER_DEFINED`
|
|
24747
|
+
*/
|
|
24748
|
+
filter?:
|
|
24749
|
+
string;
|
|
24750
|
+
/** 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. */
|
|
24751
|
+
key?:
|
|
24752
|
+
string;
|
|
24753
|
+
/** OAuth 2.0 token for the current user. */
|
|
24754
|
+
oauth_token?:
|
|
24755
|
+
string;
|
|
24756
|
+
/**
|
|
24757
|
+
* Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `display_name` *
|
|
24758
|
+
* `create_time` * `update_time` Example: `display_name, create_time desc`.
|
|
24759
|
+
*/
|
|
24760
|
+
orderBy?:
|
|
24761
|
+
string;
|
|
24762
|
+
/** Optional. The standard list page size. */
|
|
24763
|
+
pageSize?:
|
|
24764
|
+
number;
|
|
24765
|
+
/** Optional. The standard list page token. Typically obtained via ListNotebookRuntimesResponse.next_page_token of the previous NotebookService.ListNotebookRuntimes call. */
|
|
24766
|
+
pageToken?:
|
|
24767
|
+
string;
|
|
24768
|
+
/** Required. The resource name of the Location from which to list the NotebookRuntimes. Format: `projects/{project}/locations/{location}` */
|
|
24769
|
+
parent:
|
|
24770
|
+
string;
|
|
24771
|
+
/** Returns response with indentations and line breaks. */
|
|
24772
|
+
prettyPrint?:
|
|
24773
|
+
boolean;
|
|
24774
|
+
/** 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. */
|
|
24775
|
+
quotaUser?:
|
|
24776
|
+
string;
|
|
24777
|
+
/** Optional. Mask specifying which fields to read. */
|
|
24778
|
+
readMask?:
|
|
24779
|
+
string;
|
|
24780
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24781
|
+
upload_protocol?:
|
|
24782
|
+
string;
|
|
24783
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24784
|
+
uploadType?:
|
|
24785
|
+
string;
|
|
24786
|
+
}): Request<GoogleCloudAiplatformV1ListNotebookRuntimesResponse>;
|
|
24787
|
+
/** Starts a NotebookRuntime. */
|
|
24788
|
+
start(request: {
|
|
24789
|
+
/** V1 error format. */
|
|
24790
|
+
"$.xgafv"?:
|
|
24791
|
+
string;
|
|
24792
|
+
/** OAuth access token. */
|
|
24793
|
+
access_token?:
|
|
24794
|
+
string;
|
|
24795
|
+
/** Data format for response. */
|
|
24796
|
+
alt?:
|
|
24797
|
+
string;
|
|
24798
|
+
/** JSONP */
|
|
24799
|
+
callback?:
|
|
24800
|
+
string;
|
|
24801
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
24802
|
+
fields?:
|
|
24803
|
+
string;
|
|
24804
|
+
/** 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. */
|
|
24805
|
+
key?:
|
|
24806
|
+
string;
|
|
24807
|
+
/**
|
|
24808
|
+
* Required. The name of the NotebookRuntime resource to be started. Instead of checking whether the name is in valid NotebookRuntime resource name format, directly throw NotFound
|
|
24809
|
+
* exception if there is no such NotebookRuntime in spanner.
|
|
24810
|
+
*/
|
|
24811
|
+
name:
|
|
24812
|
+
string;
|
|
24813
|
+
/** OAuth 2.0 token for the current user. */
|
|
24814
|
+
oauth_token?:
|
|
24815
|
+
string;
|
|
24816
|
+
/** Returns response with indentations and line breaks. */
|
|
24817
|
+
prettyPrint?:
|
|
24818
|
+
boolean;
|
|
24819
|
+
/** 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. */
|
|
24820
|
+
quotaUser?:
|
|
24821
|
+
string;
|
|
24822
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24823
|
+
upload_protocol?:
|
|
24824
|
+
string;
|
|
24825
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24826
|
+
uploadType?:
|
|
24827
|
+
string;
|
|
24828
|
+
/** Request body */
|
|
24829
|
+
resource:
|
|
24830
|
+
GoogleCloudAiplatformV1StartNotebookRuntimeRequest;
|
|
24831
|
+
}): Request<GoogleLongrunningOperation>;
|
|
24832
|
+
start(request: {
|
|
24833
|
+
/** V1 error format. */
|
|
24834
|
+
"$.xgafv"?:
|
|
24835
|
+
string;
|
|
24836
|
+
/** OAuth access token. */
|
|
24837
|
+
access_token?:
|
|
24838
|
+
string;
|
|
24839
|
+
/** Data format for response. */
|
|
24840
|
+
alt?:
|
|
24841
|
+
string;
|
|
24842
|
+
/** JSONP */
|
|
24843
|
+
callback?:
|
|
24844
|
+
string;
|
|
24845
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
24846
|
+
fields?:
|
|
24847
|
+
string;
|
|
24848
|
+
/** 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. */
|
|
24849
|
+
key?:
|
|
24850
|
+
string;
|
|
24851
|
+
/**
|
|
24852
|
+
* Required. The name of the NotebookRuntime resource to be started. Instead of checking whether the name is in valid NotebookRuntime resource name format, directly throw NotFound
|
|
24853
|
+
* exception if there is no such NotebookRuntime in spanner.
|
|
24854
|
+
*/
|
|
24855
|
+
name:
|
|
24856
|
+
string;
|
|
24857
|
+
/** OAuth 2.0 token for the current user. */
|
|
24858
|
+
oauth_token?:
|
|
24859
|
+
string;
|
|
24860
|
+
/** Returns response with indentations and line breaks. */
|
|
24861
|
+
prettyPrint?:
|
|
24862
|
+
boolean;
|
|
24863
|
+
/** 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. */
|
|
24864
|
+
quotaUser?:
|
|
24865
|
+
string;
|
|
24866
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24867
|
+
upload_protocol?:
|
|
24868
|
+
string;
|
|
24869
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24870
|
+
uploadType?:
|
|
24871
|
+
string;
|
|
24872
|
+
},
|
|
24873
|
+
body: GoogleCloudAiplatformV1StartNotebookRuntimeRequest): Request<GoogleLongrunningOperation>;
|
|
24874
|
+
}
|
|
24875
|
+
interface NotebookRuntimeTemplatesResource {
|
|
24876
|
+
/** Creates a NotebookRuntimeTemplate. */
|
|
24877
|
+
create(request: {
|
|
24878
|
+
/** V1 error format. */
|
|
24879
|
+
"$.xgafv"?:
|
|
24880
|
+
string;
|
|
24881
|
+
/** OAuth access token. */
|
|
24882
|
+
access_token?:
|
|
24883
|
+
string;
|
|
24884
|
+
/** Data format for response. */
|
|
24885
|
+
alt?:
|
|
24886
|
+
string;
|
|
24887
|
+
/** JSONP */
|
|
24888
|
+
callback?:
|
|
24889
|
+
string;
|
|
24890
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
24891
|
+
fields?:
|
|
24892
|
+
string;
|
|
24893
|
+
/** 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. */
|
|
24894
|
+
key?:
|
|
24895
|
+
string;
|
|
24896
|
+
/** Optional. User specified ID for the notebook runtime template. */
|
|
24897
|
+
notebookRuntimeTemplateId?:
|
|
24898
|
+
string;
|
|
24899
|
+
/** OAuth 2.0 token for the current user. */
|
|
24900
|
+
oauth_token?:
|
|
24901
|
+
string;
|
|
24902
|
+
/** Required. The resource name of the Location to create the NotebookRuntimeTemplate. Format: `projects/{project}/locations/{location}` */
|
|
24903
|
+
parent:
|
|
24904
|
+
string;
|
|
24905
|
+
/** Returns response with indentations and line breaks. */
|
|
24906
|
+
prettyPrint?:
|
|
24907
|
+
boolean;
|
|
24908
|
+
/** 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. */
|
|
24909
|
+
quotaUser?:
|
|
24910
|
+
string;
|
|
24911
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24912
|
+
upload_protocol?:
|
|
24913
|
+
string;
|
|
24914
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24915
|
+
uploadType?:
|
|
24916
|
+
string;
|
|
24917
|
+
/** Request body */
|
|
24918
|
+
resource:
|
|
24919
|
+
GoogleCloudAiplatformV1NotebookRuntimeTemplate;
|
|
24920
|
+
}): Request<GoogleLongrunningOperation>;
|
|
24921
|
+
create(request: {
|
|
24922
|
+
/** V1 error format. */
|
|
24923
|
+
"$.xgafv"?:
|
|
24924
|
+
string;
|
|
24925
|
+
/** OAuth access token. */
|
|
24926
|
+
access_token?:
|
|
24927
|
+
string;
|
|
24928
|
+
/** Data format for response. */
|
|
24929
|
+
alt?:
|
|
24930
|
+
string;
|
|
24931
|
+
/** JSONP */
|
|
24932
|
+
callback?:
|
|
24933
|
+
string;
|
|
24934
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
24935
|
+
fields?:
|
|
24936
|
+
string;
|
|
24937
|
+
/** 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. */
|
|
24938
|
+
key?:
|
|
24939
|
+
string;
|
|
24940
|
+
/** Optional. User specified ID for the notebook runtime template. */
|
|
24941
|
+
notebookRuntimeTemplateId?:
|
|
24942
|
+
string;
|
|
24943
|
+
/** OAuth 2.0 token for the current user. */
|
|
24944
|
+
oauth_token?:
|
|
24945
|
+
string;
|
|
24946
|
+
/** Required. The resource name of the Location to create the NotebookRuntimeTemplate. Format: `projects/{project}/locations/{location}` */
|
|
24947
|
+
parent:
|
|
24948
|
+
string;
|
|
24949
|
+
/** Returns response with indentations and line breaks. */
|
|
24950
|
+
prettyPrint?:
|
|
24951
|
+
boolean;
|
|
24952
|
+
/** 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. */
|
|
24953
|
+
quotaUser?:
|
|
24954
|
+
string;
|
|
24955
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24956
|
+
upload_protocol?:
|
|
24957
|
+
string;
|
|
24958
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24959
|
+
uploadType?:
|
|
24960
|
+
string;
|
|
24961
|
+
},
|
|
24962
|
+
body: GoogleCloudAiplatformV1NotebookRuntimeTemplate): Request<GoogleLongrunningOperation>;
|
|
24963
|
+
/** Deletes a NotebookRuntimeTemplate. */
|
|
24964
|
+
delete(request?: {
|
|
24965
|
+
/** V1 error format. */
|
|
24966
|
+
"$.xgafv"?:
|
|
24967
|
+
string;
|
|
24968
|
+
/** OAuth access token. */
|
|
24969
|
+
access_token?:
|
|
24970
|
+
string;
|
|
24971
|
+
/** Data format for response. */
|
|
24972
|
+
alt?:
|
|
24973
|
+
string;
|
|
24974
|
+
/** JSONP */
|
|
24975
|
+
callback?:
|
|
24976
|
+
string;
|
|
24977
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
24978
|
+
fields?:
|
|
24979
|
+
string;
|
|
24980
|
+
/** 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. */
|
|
24981
|
+
key?:
|
|
24982
|
+
string;
|
|
24983
|
+
/** Required. The name of the NotebookRuntimeTemplate resource to be deleted. Format: `projects/{project}/locations/{location}/notebookRuntimeTemplates/{notebook_runtime_template}` */
|
|
24984
|
+
name:
|
|
24985
|
+
string;
|
|
24986
|
+
/** OAuth 2.0 token for the current user. */
|
|
24987
|
+
oauth_token?:
|
|
24988
|
+
string;
|
|
24989
|
+
/** Returns response with indentations and line breaks. */
|
|
24990
|
+
prettyPrint?:
|
|
24991
|
+
boolean;
|
|
24992
|
+
/** 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. */
|
|
24993
|
+
quotaUser?:
|
|
24994
|
+
string;
|
|
24995
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24996
|
+
upload_protocol?:
|
|
24997
|
+
string;
|
|
24998
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24999
|
+
uploadType?:
|
|
25000
|
+
string;
|
|
25001
|
+
}): Request<GoogleLongrunningOperation>;
|
|
25002
|
+
/** Gets a NotebookRuntimeTemplate. */
|
|
25003
|
+
get(request?: {
|
|
25004
|
+
/** V1 error format. */
|
|
25005
|
+
"$.xgafv"?:
|
|
25006
|
+
string;
|
|
25007
|
+
/** OAuth access token. */
|
|
25008
|
+
access_token?:
|
|
25009
|
+
string;
|
|
25010
|
+
/** Data format for response. */
|
|
25011
|
+
alt?:
|
|
25012
|
+
string;
|
|
25013
|
+
/** JSONP */
|
|
25014
|
+
callback?:
|
|
25015
|
+
string;
|
|
25016
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
25017
|
+
fields?:
|
|
25018
|
+
string;
|
|
25019
|
+
/** 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. */
|
|
25020
|
+
key?:
|
|
25021
|
+
string;
|
|
25022
|
+
/** Required. The name of the NotebookRuntimeTemplate resource. Format: `projects/{project}/locations/{location}/notebookRuntimeTemplates/{notebook_runtime_template}` */
|
|
25023
|
+
name:
|
|
25024
|
+
string;
|
|
25025
|
+
/** OAuth 2.0 token for the current user. */
|
|
25026
|
+
oauth_token?:
|
|
25027
|
+
string;
|
|
25028
|
+
/** Returns response with indentations and line breaks. */
|
|
25029
|
+
prettyPrint?:
|
|
25030
|
+
boolean;
|
|
25031
|
+
/** 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. */
|
|
25032
|
+
quotaUser?:
|
|
25033
|
+
string;
|
|
25034
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
25035
|
+
upload_protocol?:
|
|
25036
|
+
string;
|
|
25037
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25038
|
+
uploadType?:
|
|
25039
|
+
string;
|
|
25040
|
+
}): Request<GoogleCloudAiplatformV1NotebookRuntimeTemplate>;
|
|
25041
|
+
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
25042
|
+
getIamPolicy(request?: {
|
|
25043
|
+
/** V1 error format. */
|
|
25044
|
+
"$.xgafv"?:
|
|
25045
|
+
string;
|
|
25046
|
+
/** OAuth access token. */
|
|
25047
|
+
access_token?:
|
|
25048
|
+
string;
|
|
25049
|
+
/** Data format for response. */
|
|
25050
|
+
alt?:
|
|
25051
|
+
string;
|
|
25052
|
+
/** JSONP */
|
|
25053
|
+
callback?:
|
|
25054
|
+
string;
|
|
25055
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
25056
|
+
fields?:
|
|
25057
|
+
string;
|
|
25058
|
+
/** 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. */
|
|
25059
|
+
key?:
|
|
25060
|
+
string;
|
|
25061
|
+
/** OAuth 2.0 token for the current user. */
|
|
25062
|
+
oauth_token?:
|
|
25063
|
+
string;
|
|
25064
|
+
/**
|
|
25065
|
+
* Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
|
|
25066
|
+
* policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
|
|
25067
|
+
* in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional
|
|
25068
|
+
* role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
|
|
25069
|
+
* documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
|
25070
|
+
*/
|
|
25071
|
+
"options.requestedPolicyVersion"?:
|
|
25072
|
+
number;
|
|
25073
|
+
/** Returns response with indentations and line breaks. */
|
|
25074
|
+
prettyPrint?:
|
|
25075
|
+
boolean;
|
|
25076
|
+
/** 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. */
|
|
25077
|
+
quotaUser?:
|
|
25078
|
+
string;
|
|
25079
|
+
/**
|
|
25080
|
+
* REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
25081
|
+
* field.
|
|
25082
|
+
*/
|
|
25083
|
+
resource:
|
|
25084
|
+
string;
|
|
25085
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
25086
|
+
upload_protocol?:
|
|
25087
|
+
string;
|
|
25088
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25089
|
+
uploadType?:
|
|
25090
|
+
string;
|
|
25091
|
+
}): Request<GoogleIamV1Policy>;
|
|
25092
|
+
/** Lists NotebookRuntimeTemplates in a Location. */
|
|
25093
|
+
list(request?: {
|
|
25094
|
+
/** V1 error format. */
|
|
25095
|
+
"$.xgafv"?:
|
|
25096
|
+
string;
|
|
25097
|
+
/** OAuth access token. */
|
|
25098
|
+
access_token?:
|
|
25099
|
+
string;
|
|
25100
|
+
/** Data format for response. */
|
|
25101
|
+
alt?:
|
|
25102
|
+
string;
|
|
25103
|
+
/** JSONP */
|
|
25104
|
+
callback?:
|
|
25105
|
+
string;
|
|
25106
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
25107
|
+
fields?:
|
|
25108
|
+
string;
|
|
25109
|
+
/**
|
|
25110
|
+
* Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported. * `notebookRuntimeTemplate` supports = and !=.
|
|
25111
|
+
* `notebookRuntimeTemplate` represents the NotebookRuntimeTemplate ID, i.e. the last segment of the NotebookRuntimeTemplate's resource name. * `display_name` supports = and != *
|
|
25112
|
+
* `labels` supports general map functions that is: * `labels.key=value` - key:value equality * `labels.key:* or labels:key - key existence * A key including a space must be
|
|
25113
|
+
* quoted. `labels."a key"`. * `notebookRuntimeType` supports = and !=. notebookRuntimeType enum: [USER_DEFINED, ONE_CLICK]. Some examples: *
|
|
25114
|
+
* `notebookRuntimeTemplate=notebookRuntimeTemplate123` * `displayName="myDisplayName"` * `labels.myKey="myValue"` * `notebookRuntimeType=USER_DEFINED`
|
|
25115
|
+
*/
|
|
25116
|
+
filter?:
|
|
25117
|
+
string;
|
|
25118
|
+
/** 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. */
|
|
25119
|
+
key?:
|
|
25120
|
+
string;
|
|
25121
|
+
/** OAuth 2.0 token for the current user. */
|
|
25122
|
+
oauth_token?:
|
|
25123
|
+
string;
|
|
25124
|
+
/**
|
|
25125
|
+
* Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `display_name` *
|
|
25126
|
+
* `create_time` * `update_time` Example: `display_name, create_time desc`.
|
|
25127
|
+
*/
|
|
25128
|
+
orderBy?:
|
|
25129
|
+
string;
|
|
25130
|
+
/** Optional. The standard list page size. */
|
|
25131
|
+
pageSize?:
|
|
25132
|
+
number;
|
|
25133
|
+
/**
|
|
25134
|
+
* Optional. The standard list page token. Typically obtained via ListNotebookRuntimeTemplatesResponse.next_page_token of the previous NotebookService.ListNotebookRuntimeTemplates
|
|
25135
|
+
* call.
|
|
25136
|
+
*/
|
|
25137
|
+
pageToken?:
|
|
25138
|
+
string;
|
|
25139
|
+
/** Required. The resource name of the Location from which to list the NotebookRuntimeTemplates. Format: `projects/{project}/locations/{location}` */
|
|
25140
|
+
parent:
|
|
25141
|
+
string;
|
|
25142
|
+
/** Returns response with indentations and line breaks. */
|
|
25143
|
+
prettyPrint?:
|
|
25144
|
+
boolean;
|
|
25145
|
+
/** 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. */
|
|
25146
|
+
quotaUser?:
|
|
25147
|
+
string;
|
|
25148
|
+
/** Optional. Mask specifying which fields to read. */
|
|
25149
|
+
readMask?:
|
|
25150
|
+
string;
|
|
25151
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
25152
|
+
upload_protocol?:
|
|
25153
|
+
string;
|
|
25154
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25155
|
+
uploadType?:
|
|
25156
|
+
string;
|
|
25157
|
+
}): Request<GoogleCloudAiplatformV1ListNotebookRuntimeTemplatesResponse>;
|
|
25158
|
+
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
25159
|
+
setIamPolicy(request: {
|
|
25160
|
+
/** V1 error format. */
|
|
25161
|
+
"$.xgafv"?:
|
|
25162
|
+
string;
|
|
25163
|
+
/** OAuth access token. */
|
|
25164
|
+
access_token?:
|
|
25165
|
+
string;
|
|
25166
|
+
/** Data format for response. */
|
|
25167
|
+
alt?:
|
|
25168
|
+
string;
|
|
25169
|
+
/** JSONP */
|
|
25170
|
+
callback?:
|
|
25171
|
+
string;
|
|
25172
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
25173
|
+
fields?:
|
|
25174
|
+
string;
|
|
25175
|
+
/** 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. */
|
|
25176
|
+
key?:
|
|
25177
|
+
string;
|
|
25178
|
+
/** OAuth 2.0 token for the current user. */
|
|
25179
|
+
oauth_token?:
|
|
25180
|
+
string;
|
|
25181
|
+
/** Returns response with indentations and line breaks. */
|
|
25182
|
+
prettyPrint?:
|
|
25183
|
+
boolean;
|
|
25184
|
+
/** 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. */
|
|
25185
|
+
quotaUser?:
|
|
25186
|
+
string;
|
|
25187
|
+
/**
|
|
25188
|
+
* REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
|
|
25189
|
+
* field.
|
|
25190
|
+
*/
|
|
25191
|
+
resource:
|
|
25192
|
+
string;
|
|
25193
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
25194
|
+
upload_protocol?:
|
|
25195
|
+
string;
|
|
25196
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25197
|
+
uploadType?:
|
|
25198
|
+
string;
|
|
25199
|
+
},
|
|
25200
|
+
body: GoogleIamV1SetIamPolicyRequest): Request<GoogleIamV1Policy>;
|
|
25201
|
+
/**
|
|
25202
|
+
* Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This
|
|
25203
|
+
* operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
|
|
25204
|
+
*/
|
|
25205
|
+
testIamPermissions(request?: {
|
|
25206
|
+
/** V1 error format. */
|
|
25207
|
+
"$.xgafv"?:
|
|
25208
|
+
string;
|
|
25209
|
+
/** OAuth access token. */
|
|
25210
|
+
access_token?:
|
|
25211
|
+
string;
|
|
25212
|
+
/** Data format for response. */
|
|
25213
|
+
alt?:
|
|
25214
|
+
string;
|
|
25215
|
+
/** JSONP */
|
|
25216
|
+
callback?:
|
|
25217
|
+
string;
|
|
25218
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
25219
|
+
fields?:
|
|
25220
|
+
string;
|
|
25221
|
+
/** 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. */
|
|
25222
|
+
key?:
|
|
25223
|
+
string;
|
|
25224
|
+
/** OAuth 2.0 token for the current user. */
|
|
25225
|
+
oauth_token?:
|
|
25226
|
+
string;
|
|
25227
|
+
/**
|
|
25228
|
+
* The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM
|
|
25229
|
+
* Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
|
25230
|
+
*/
|
|
25231
|
+
permissions?:
|
|
25232
|
+
string | string[];
|
|
25233
|
+
/** Returns response with indentations and line breaks. */
|
|
25234
|
+
prettyPrint?:
|
|
25235
|
+
boolean;
|
|
25236
|
+
/** 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. */
|
|
25237
|
+
quotaUser?:
|
|
25238
|
+
string;
|
|
25239
|
+
/**
|
|
25240
|
+
* REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for
|
|
25241
|
+
* this field.
|
|
25242
|
+
*/
|
|
25243
|
+
resource:
|
|
25244
|
+
string;
|
|
25245
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
25246
|
+
upload_protocol?:
|
|
25247
|
+
string;
|
|
25248
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25249
|
+
uploadType?:
|
|
25250
|
+
string;
|
|
25251
|
+
}): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
25252
|
+
}
|
|
23998
25253
|
interface OperationsResource {
|
|
23999
25254
|
/**
|
|
24000
25255
|
* 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
|
|
@@ -24560,7 +25815,7 @@ declare namespace gapi.client {
|
|
|
24560
25815
|
string;
|
|
24561
25816
|
/**
|
|
24562
25817
|
* The ID to use for the PipelineJob, which will become the final component of the PipelineJob name. If not provided, an ID will be automatically generated. This value should be
|
|
24563
|
-
* less than 128 characters, and valid characters are
|
|
25818
|
+
* less than 128 characters, and valid characters are `/a-z-/`.
|
|
24564
25819
|
*/
|
|
24565
25820
|
pipelineJobId?:
|
|
24566
25821
|
string;
|
|
@@ -24607,7 +25862,7 @@ declare namespace gapi.client {
|
|
|
24607
25862
|
string;
|
|
24608
25863
|
/**
|
|
24609
25864
|
* The ID to use for the PipelineJob, which will become the final component of the PipelineJob name. If not provided, an ID will be automatically generated. This value should be
|
|
24610
|
-
* less than 128 characters, and valid characters are
|
|
25865
|
+
* less than 128 characters, and valid characters are `/a-z-/`.
|
|
24611
25866
|
*/
|
|
24612
25867
|
pipelineJobId?:
|
|
24613
25868
|
string;
|
|
@@ -29179,7 +30434,7 @@ declare namespace gapi.client {
|
|
|
29179
30434
|
string;
|
|
29180
30435
|
/**
|
|
29181
30436
|
* Required. The ID to use for the Tensorboard run, which becomes the final component of the Tensorboard run's resource name. This value should be 1-128 characters, and valid
|
|
29182
|
-
* characters are
|
|
30437
|
+
* characters are `/a-z-/`.
|
|
29183
30438
|
*/
|
|
29184
30439
|
tensorboardRunId?:
|
|
29185
30440
|
string;
|
|
@@ -29229,7 +30484,7 @@ declare namespace gapi.client {
|
|
|
29229
30484
|
string;
|
|
29230
30485
|
/**
|
|
29231
30486
|
* Required. The ID to use for the Tensorboard run, which becomes the final component of the Tensorboard run's resource name. This value should be 1-128 characters, and valid
|
|
29232
|
-
* characters are
|
|
30487
|
+
* characters are `/a-z-/`.
|
|
29233
30488
|
*/
|
|
29234
30489
|
tensorboardRunId?:
|
|
29235
30490
|
string;
|
|
@@ -29602,7 +30857,7 @@ declare namespace gapi.client {
|
|
|
29602
30857
|
string;
|
|
29603
30858
|
/**
|
|
29604
30859
|
* Required. The ID to use for the Tensorboard experiment, which becomes the final component of the Tensorboard experiment's resource name. This value should be 1-128 characters,
|
|
29605
|
-
* and valid characters are
|
|
30860
|
+
* and valid characters are `/a-z-/`.
|
|
29606
30861
|
*/
|
|
29607
30862
|
tensorboardExperimentId?:
|
|
29608
30863
|
string;
|
|
@@ -29649,7 +30904,7 @@ declare namespace gapi.client {
|
|
|
29649
30904
|
string;
|
|
29650
30905
|
/**
|
|
29651
30906
|
* Required. The ID to use for the Tensorboard experiment, which becomes the final component of the Tensorboard experiment's resource name. This value should be 1-128 characters,
|
|
29652
|
-
* and valid characters are
|
|
30907
|
+
* and valid characters are `/a-z-/`.
|
|
29653
30908
|
*/
|
|
29654
30909
|
tensorboardExperimentId?:
|
|
29655
30910
|
string;
|
|
@@ -31251,6 +32506,10 @@ declare namespace gapi.client {
|
|
|
31251
32506
|
ModelsResource;
|
|
31252
32507
|
nasJobs:
|
|
31253
32508
|
NasJobsResource;
|
|
32509
|
+
notebookRuntimes:
|
|
32510
|
+
NotebookRuntimesResource;
|
|
32511
|
+
notebookRuntimeTemplates:
|
|
32512
|
+
NotebookRuntimeTemplatesResource;
|
|
31254
32513
|
operations:
|
|
31255
32514
|
OperationsResource;
|
|
31256
32515
|
pipelineJobs:
|