@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20240816 → 0.0.20240830
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 +204 -3
- package/package.json +1 -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: 20240830
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -790,6 +790,14 @@ declare namespace gapi.client {
|
|
|
790
790
|
/** A human-readable message that shows the intermediate progress details of NotebookRuntime. */
|
|
791
791
|
progressMessage?: string;
|
|
792
792
|
}
|
|
793
|
+
interface GoogleCloudAiplatformV1CreateNotebookExecutionJobRequest {
|
|
794
|
+
/** Required. The NotebookExecutionJob to create. */
|
|
795
|
+
notebookExecutionJob?: GoogleCloudAiplatformV1NotebookExecutionJob;
|
|
796
|
+
/** Optional. User specified ID for the NotebookExecutionJob. */
|
|
797
|
+
notebookExecutionJobId?: string;
|
|
798
|
+
/** Required. The resource name of the Location to create the NotebookExecutionJob. Format: `projects/{project}/locations/{location}` */
|
|
799
|
+
parent?: string;
|
|
800
|
+
}
|
|
793
801
|
interface GoogleCloudAiplatformV1CreateNotebookRuntimeTemplateOperationMetadata {
|
|
794
802
|
/** The operation generic information. */
|
|
795
803
|
genericMetadata?: GoogleCloudAiplatformV1GenericOperationMetadata;
|
|
@@ -1850,8 +1858,12 @@ declare namespace gapi.client {
|
|
|
1850
1858
|
interface GoogleCloudAiplatformV1FeatureGroupBigQuery {
|
|
1851
1859
|
/** Required. Immutable. The BigQuery source URI that points to either a BigQuery Table or View. */
|
|
1852
1860
|
bigQuerySource?: GoogleCloudAiplatformV1BigQuerySource;
|
|
1861
|
+
/** Optional. If set, all feature values will be fetched from a single row per unique entityId including nulls. If not set, will collapse all rows for each unique entityId into a singe row with any non-null values if present, if no non-null values are present will sync null. ex: If source has schema (entity_id, feature_timestamp, f0, f1) and values (e1, 2020-01-01T10:00:00.123Z, 10, 15) (e1, 2020-02-01T10:00:00.123Z, 20, null) If dense is set, (e1, 20, null) is synced to online stores. If dense is not set, (e1, 20, 15) is synced to online stores. */
|
|
1862
|
+
dense?: boolean;
|
|
1853
1863
|
/** Optional. Columns to construct entity_id / row keys. If not provided defaults to `entity_id`. */
|
|
1854
1864
|
entityIdColumns?: string[];
|
|
1865
|
+
/** Optional. Set if the data source is not a time-series. */
|
|
1866
|
+
staticDataSource?: boolean;
|
|
1855
1867
|
/** Optional. If the source is a time-series source, this can be set to control how downstream sources (ex: FeatureView ) will treat time-series sources. If not set, will treat the source as a time-series source with `feature_timestamp` as timestamp column and no scan boundary. */
|
|
1856
1868
|
timeSeries?: GoogleCloudAiplatformV1FeatureGroupBigQueryTimeSeries;
|
|
1857
1869
|
}
|
|
@@ -2071,6 +2083,8 @@ declare namespace gapi.client {
|
|
|
2071
2083
|
syncConfig?: GoogleCloudAiplatformV1FeatureViewSyncConfig;
|
|
2072
2084
|
/** Output only. Timestamp when this FeatureView was last updated. */
|
|
2073
2085
|
updateTime?: string;
|
|
2086
|
+
/** Optional. The Vertex RAG Source that the FeatureView is linked to. */
|
|
2087
|
+
vertexRagSource?: GoogleCloudAiplatformV1FeatureViewVertexRagSource;
|
|
2074
2088
|
}
|
|
2075
2089
|
interface GoogleCloudAiplatformV1FeatureViewBigQuerySource {
|
|
2076
2090
|
/** Required. Columns to construct entity_id / row keys. */
|
|
@@ -2149,6 +2163,12 @@ declare namespace gapi.client {
|
|
|
2149
2163
|
/** Output only. BigQuery slot milliseconds consumed for the sync job. */
|
|
2150
2164
|
totalSlot?: string;
|
|
2151
2165
|
}
|
|
2166
|
+
interface GoogleCloudAiplatformV1FeatureViewVertexRagSource {
|
|
2167
|
+
/** Optional. The RAG corpus id corresponding to this FeatureView. */
|
|
2168
|
+
ragCorpusId?: string;
|
|
2169
|
+
/** Required. The BigQuery view/table URI that will be materialized on each manual sync trigger. The table/view is expected to have the following columns at least: Field name Type Mode corpus_id STRING REQUIRED/NULLABLE file_id STRING REQUIRED/NULLABLE chunk_id STRING REQUIRED/NULLABLE chunk_data_type STRING REQUIRED/NULLABLE chunk_data STRING REQUIRED/NULLABLE embeddings FLOAT REPEATED file_original_uri STRING REQUIRED/NULLABLE */
|
|
2170
|
+
uri?: string;
|
|
2171
|
+
}
|
|
2152
2172
|
interface GoogleCloudAiplatformV1FetchFeatureValuesRequest {
|
|
2153
2173
|
/** Optional. Response data format. If not set, FeatureViewDataFormat.KEY_VALUE will be used. */
|
|
2154
2174
|
dataFormat?: string;
|
|
@@ -2304,11 +2324,13 @@ declare namespace gapi.client {
|
|
|
2304
2324
|
name?: string;
|
|
2305
2325
|
/** Optional. Describes the parameters to this function in JSON Schema Object format. Reflects the Open API 3.03 Parameter Object. string Key: the name of the parameter. Parameter names are case sensitive. Schema Value: the Schema defining the type used for the parameter. For function with no parameters, this can be left unset. Parameter names must start with a letter or an underscore and must only contain chars a-z, A-Z, 0-9, or underscores with a maximum length of 64. Example with 1 required and 1 optional parameter: type: OBJECT properties: param1: type: STRING param2: type: INTEGER required: - param1 */
|
|
2306
2326
|
parameters?: GoogleCloudAiplatformV1Schema;
|
|
2327
|
+
/** Optional. Describes the output from this function in JSON Schema format. Reflects the Open API 3.03 Response Object. The Schema defines the type used for the response value of the function. */
|
|
2328
|
+
response?: GoogleCloudAiplatformV1Schema;
|
|
2307
2329
|
}
|
|
2308
2330
|
interface GoogleCloudAiplatformV1FunctionResponse {
|
|
2309
2331
|
/** Required. The name of the function to call. Matches [FunctionDeclaration.name] and [FunctionCall.name]. */
|
|
2310
2332
|
name?: string;
|
|
2311
|
-
/** Required. The function response in JSON object format. */
|
|
2333
|
+
/** Required. The function response in JSON object format. Use "output" key to specify function output and "error" key to specify error details (if any). If "output" and "error" keys are not specified, then whole "response" is treated as function output. */
|
|
2312
2334
|
response?: {[P in string]: any};
|
|
2313
2335
|
}
|
|
2314
2336
|
interface GoogleCloudAiplatformV1GcsDestination {
|
|
@@ -2354,6 +2376,7 @@ declare namespace gapi.client {
|
|
|
2354
2376
|
candidatesTokenCount?: number;
|
|
2355
2377
|
/** Number of tokens in the request. When `cached_content` is set, this is still the total effective prompt size meaning this includes the number of tokens in the cached content. */
|
|
2356
2378
|
promptTokenCount?: number;
|
|
2379
|
+
/** Total token count for prompt and response candidates. */
|
|
2357
2380
|
totalTokenCount?: number;
|
|
2358
2381
|
}
|
|
2359
2382
|
interface GoogleCloudAiplatformV1GenerationConfig {
|
|
@@ -5002,6 +5025,8 @@ declare namespace gapi.client {
|
|
|
5002
5025
|
allowQueueing?: boolean;
|
|
5003
5026
|
/** Output only. Whether to backfill missed runs when the schedule is resumed from PAUSED state. If set to true, all missed runs will be scheduled. New runs will be scheduled after the backfill is complete. Default to false. */
|
|
5004
5027
|
catchUp?: boolean;
|
|
5028
|
+
/** Request for NotebookService.CreateNotebookExecutionJob. */
|
|
5029
|
+
createNotebookExecutionJobRequest?: GoogleCloudAiplatformV1CreateNotebookExecutionJobRequest;
|
|
5005
5030
|
/** Request for PipelineService.CreatePipelineJob. CreatePipelineJobRequest.parent field is required (format: projects/{project}/locations/{location}). */
|
|
5006
5031
|
createPipelineJobRequest?: GoogleCloudAiplatformV1CreatePipelineJobRequest;
|
|
5007
5032
|
/** Output only. Timestamp when this Schedule was created. */
|
|
@@ -9570,7 +9595,7 @@ declare namespace gapi.client {
|
|
|
9570
9595
|
}): Request<GoogleLongrunningOperation>;
|
|
9571
9596
|
}
|
|
9572
9597
|
interface AnnotationsResource {
|
|
9573
|
-
/** Lists Annotations belongs to a dataitem */
|
|
9598
|
+
/** Lists Annotations belongs to a dataitem This RPC is only available in InternalDatasetService. It is only used for exporting conversation data to CCAI Insights. */
|
|
9574
9599
|
list(request?: {
|
|
9575
9600
|
/** V1 error format. */
|
|
9576
9601
|
'$.xgafv'?: string;
|
|
@@ -13378,6 +13403,35 @@ declare namespace gapi.client {
|
|
|
13378
13403
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13379
13404
|
uploadType?: string;
|
|
13380
13405
|
}): Request<GoogleCloudAiplatformV1FeatureView>;
|
|
13406
|
+
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
13407
|
+
getIamPolicy(request?: {
|
|
13408
|
+
/** V1 error format. */
|
|
13409
|
+
'$.xgafv'?: string;
|
|
13410
|
+
/** OAuth access token. */
|
|
13411
|
+
access_token?: string;
|
|
13412
|
+
/** Data format for response. */
|
|
13413
|
+
alt?: string;
|
|
13414
|
+
/** JSONP */
|
|
13415
|
+
callback?: string;
|
|
13416
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
13417
|
+
fields?: string;
|
|
13418
|
+
/** 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. */
|
|
13419
|
+
key?: string;
|
|
13420
|
+
/** OAuth 2.0 token for the current user. */
|
|
13421
|
+
oauth_token?: string;
|
|
13422
|
+
/** 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 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 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 role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
|
|
13423
|
+
'options.requestedPolicyVersion'?: number;
|
|
13424
|
+
/** Returns response with indentations and line breaks. */
|
|
13425
|
+
prettyPrint?: boolean;
|
|
13426
|
+
/** 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. */
|
|
13427
|
+
quotaUser?: string;
|
|
13428
|
+
/** 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 field. */
|
|
13429
|
+
resource: string;
|
|
13430
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13431
|
+
upload_protocol?: string;
|
|
13432
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13433
|
+
uploadType?: string;
|
|
13434
|
+
}): Request<GoogleIamV1Policy>;
|
|
13381
13435
|
/** Lists FeatureViews in a given FeatureOnlineStore. */
|
|
13382
13436
|
list(request?: {
|
|
13383
13437
|
/** V1 error format. */
|
|
@@ -13533,6 +13587,36 @@ declare namespace gapi.client {
|
|
|
13533
13587
|
},
|
|
13534
13588
|
body: GoogleCloudAiplatformV1SearchNearestEntitiesRequest
|
|
13535
13589
|
): Request<GoogleCloudAiplatformV1SearchNearestEntitiesResponse>;
|
|
13590
|
+
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
13591
|
+
setIamPolicy(
|
|
13592
|
+
request: {
|
|
13593
|
+
/** V1 error format. */
|
|
13594
|
+
'$.xgafv'?: string;
|
|
13595
|
+
/** OAuth access token. */
|
|
13596
|
+
access_token?: string;
|
|
13597
|
+
/** Data format for response. */
|
|
13598
|
+
alt?: string;
|
|
13599
|
+
/** JSONP */
|
|
13600
|
+
callback?: string;
|
|
13601
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
13602
|
+
fields?: string;
|
|
13603
|
+
/** 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. */
|
|
13604
|
+
key?: string;
|
|
13605
|
+
/** OAuth 2.0 token for the current user. */
|
|
13606
|
+
oauth_token?: string;
|
|
13607
|
+
/** Returns response with indentations and line breaks. */
|
|
13608
|
+
prettyPrint?: boolean;
|
|
13609
|
+
/** 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. */
|
|
13610
|
+
quotaUser?: string;
|
|
13611
|
+
/** 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 field. */
|
|
13612
|
+
resource: string;
|
|
13613
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13614
|
+
upload_protocol?: string;
|
|
13615
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13616
|
+
uploadType?: string;
|
|
13617
|
+
},
|
|
13618
|
+
body: GoogleIamV1SetIamPolicyRequest
|
|
13619
|
+
): Request<GoogleIamV1Policy>;
|
|
13536
13620
|
/** Triggers on-demand sync for the FeatureView. */
|
|
13537
13621
|
sync(request: {
|
|
13538
13622
|
/** V1 error format. */
|
|
@@ -13591,6 +13675,35 @@ declare namespace gapi.client {
|
|
|
13591
13675
|
},
|
|
13592
13676
|
body: GoogleCloudAiplatformV1SyncFeatureViewRequest
|
|
13593
13677
|
): Request<GoogleCloudAiplatformV1SyncFeatureViewResponse>;
|
|
13678
|
+
/** 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 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. */
|
|
13679
|
+
testIamPermissions(request?: {
|
|
13680
|
+
/** V1 error format. */
|
|
13681
|
+
'$.xgafv'?: string;
|
|
13682
|
+
/** OAuth access token. */
|
|
13683
|
+
access_token?: string;
|
|
13684
|
+
/** Data format for response. */
|
|
13685
|
+
alt?: string;
|
|
13686
|
+
/** JSONP */
|
|
13687
|
+
callback?: string;
|
|
13688
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
13689
|
+
fields?: string;
|
|
13690
|
+
/** 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. */
|
|
13691
|
+
key?: string;
|
|
13692
|
+
/** OAuth 2.0 token for the current user. */
|
|
13693
|
+
oauth_token?: string;
|
|
13694
|
+
/** The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions). */
|
|
13695
|
+
permissions?: string | string[];
|
|
13696
|
+
/** Returns response with indentations and line breaks. */
|
|
13697
|
+
prettyPrint?: boolean;
|
|
13698
|
+
/** 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. */
|
|
13699
|
+
quotaUser?: string;
|
|
13700
|
+
/** 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 this field. */
|
|
13701
|
+
resource: string;
|
|
13702
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13703
|
+
upload_protocol?: string;
|
|
13704
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13705
|
+
uploadType?: string;
|
|
13706
|
+
}): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
13594
13707
|
featureViewSyncs: FeatureViewSyncsResource;
|
|
13595
13708
|
operations: OperationsResource;
|
|
13596
13709
|
}
|
|
@@ -13831,6 +13944,35 @@ declare namespace gapi.client {
|
|
|
13831
13944
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13832
13945
|
uploadType?: string;
|
|
13833
13946
|
}): Request<GoogleCloudAiplatformV1FeatureOnlineStore>;
|
|
13947
|
+
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
13948
|
+
getIamPolicy(request?: {
|
|
13949
|
+
/** V1 error format. */
|
|
13950
|
+
'$.xgafv'?: string;
|
|
13951
|
+
/** OAuth access token. */
|
|
13952
|
+
access_token?: string;
|
|
13953
|
+
/** Data format for response. */
|
|
13954
|
+
alt?: string;
|
|
13955
|
+
/** JSONP */
|
|
13956
|
+
callback?: string;
|
|
13957
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
13958
|
+
fields?: string;
|
|
13959
|
+
/** 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. */
|
|
13960
|
+
key?: string;
|
|
13961
|
+
/** OAuth 2.0 token for the current user. */
|
|
13962
|
+
oauth_token?: string;
|
|
13963
|
+
/** 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 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 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 role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
|
|
13964
|
+
'options.requestedPolicyVersion'?: number;
|
|
13965
|
+
/** Returns response with indentations and line breaks. */
|
|
13966
|
+
prettyPrint?: boolean;
|
|
13967
|
+
/** 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. */
|
|
13968
|
+
quotaUser?: string;
|
|
13969
|
+
/** 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 field. */
|
|
13970
|
+
resource: string;
|
|
13971
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13972
|
+
upload_protocol?: string;
|
|
13973
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13974
|
+
uploadType?: string;
|
|
13975
|
+
}): Request<GoogleIamV1Policy>;
|
|
13834
13976
|
/** Lists FeatureOnlineStores in a given project and location. */
|
|
13835
13977
|
list(request?: {
|
|
13836
13978
|
/** V1 error format. */
|
|
@@ -13928,6 +14070,65 @@ declare namespace gapi.client {
|
|
|
13928
14070
|
},
|
|
13929
14071
|
body: GoogleCloudAiplatformV1FeatureOnlineStore
|
|
13930
14072
|
): Request<GoogleLongrunningOperation>;
|
|
14073
|
+
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
14074
|
+
setIamPolicy(
|
|
14075
|
+
request: {
|
|
14076
|
+
/** V1 error format. */
|
|
14077
|
+
'$.xgafv'?: string;
|
|
14078
|
+
/** OAuth access token. */
|
|
14079
|
+
access_token?: string;
|
|
14080
|
+
/** Data format for response. */
|
|
14081
|
+
alt?: string;
|
|
14082
|
+
/** JSONP */
|
|
14083
|
+
callback?: string;
|
|
14084
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
14085
|
+
fields?: string;
|
|
14086
|
+
/** 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. */
|
|
14087
|
+
key?: string;
|
|
14088
|
+
/** OAuth 2.0 token for the current user. */
|
|
14089
|
+
oauth_token?: string;
|
|
14090
|
+
/** Returns response with indentations and line breaks. */
|
|
14091
|
+
prettyPrint?: boolean;
|
|
14092
|
+
/** 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. */
|
|
14093
|
+
quotaUser?: string;
|
|
14094
|
+
/** 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 field. */
|
|
14095
|
+
resource: string;
|
|
14096
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14097
|
+
upload_protocol?: string;
|
|
14098
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14099
|
+
uploadType?: string;
|
|
14100
|
+
},
|
|
14101
|
+
body: GoogleIamV1SetIamPolicyRequest
|
|
14102
|
+
): Request<GoogleIamV1Policy>;
|
|
14103
|
+
/** 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 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. */
|
|
14104
|
+
testIamPermissions(request?: {
|
|
14105
|
+
/** V1 error format. */
|
|
14106
|
+
'$.xgafv'?: string;
|
|
14107
|
+
/** OAuth access token. */
|
|
14108
|
+
access_token?: string;
|
|
14109
|
+
/** Data format for response. */
|
|
14110
|
+
alt?: string;
|
|
14111
|
+
/** JSONP */
|
|
14112
|
+
callback?: string;
|
|
14113
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
14114
|
+
fields?: string;
|
|
14115
|
+
/** 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. */
|
|
14116
|
+
key?: string;
|
|
14117
|
+
/** OAuth 2.0 token for the current user. */
|
|
14118
|
+
oauth_token?: string;
|
|
14119
|
+
/** The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions). */
|
|
14120
|
+
permissions?: string | string[];
|
|
14121
|
+
/** Returns response with indentations and line breaks. */
|
|
14122
|
+
prettyPrint?: boolean;
|
|
14123
|
+
/** 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. */
|
|
14124
|
+
quotaUser?: string;
|
|
14125
|
+
/** 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 this field. */
|
|
14126
|
+
resource: string;
|
|
14127
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14128
|
+
upload_protocol?: string;
|
|
14129
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14130
|
+
uploadType?: string;
|
|
14131
|
+
}): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
13931
14132
|
featureViews: FeatureViewsResource;
|
|
13932
14133
|
operations: OperationsResource;
|
|
13933
14134
|
}
|