@maxim_mazurok/gapi.client.discoveryengine-v1beta 0.0.20250123 → 0.0.20250130

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.
Files changed (3) hide show
  1. package/index.d.ts +540 -114
  2. package/package.json +1 -1
  3. package/readme.md +2 -2
package/index.d.ts CHANGED
@@ -9,14 +9,14 @@
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://discoveryengine.googleapis.com/$discovery/rest?version=v1beta
12
- // Revision: 20250123
12
+ // Revision: 20250130
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
16
16
  declare namespace gapi.client {
17
17
  /** Load Discovery Engine API v1beta */
18
18
  function load(
19
- urlOrObject: 'https://discoveryengine.googleapis.com/$discovery/rest?version=v1beta'
19
+ urlOrObject: 'https://discoveryengine.googleapis.com/$discovery/rest?version=v1beta',
20
20
  ): Promise<void>;
21
21
  /** @deprecated Please load APIs with discovery documents. */
22
22
  function load(name: 'discoveryengine', version: 'v1beta'): Promise<void>;
@@ -24,7 +24,7 @@ declare namespace gapi.client {
24
24
  function load(
25
25
  name: 'discoveryengine',
26
26
  version: 'v1beta',
27
- callback: () => any
27
+ callback: () => any,
28
28
  ): void;
29
29
 
30
30
  namespace discoveryengine {
@@ -622,6 +622,8 @@ declare namespace gapi.client {
622
622
  displayName?: string;
623
623
  /** Configuration for Document understanding and enrichment. */
624
624
  documentProcessingConfig?: GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig;
625
+ /** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
626
+ healthcareFhirConfig?: GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig;
625
627
  /** Output only. Data store level identity provider config. */
626
628
  idpConfig?: GoogleCloudDiscoveryengineV1alphaIdpConfig;
627
629
  /** Immutable. The industry vertical that the data store registers. */
@@ -669,6 +671,12 @@ declare namespace gapi.client {
669
671
  /** Vertex AI's dedicated crawl rate time series of user triggered crawl, which is the crawl rate of Google-CloudVertexBot when dedicate crawl is set, and user triggered crawl rate is for deterministic use cases like crawling urls or sitemaps specified by users. */
670
672
  userTriggeredCrawlRate?: GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries;
671
673
  }
674
+ interface GoogleCloudDiscoveryengineV1alphaDeleteCmekConfigMetadata {
675
+ /** Operation create time. */
676
+ createTime?: string;
677
+ /** Operation last update time. If the operation is done, this is also the finish time. */
678
+ updateTime?: string;
679
+ }
672
680
  interface GoogleCloudDiscoveryengineV1alphaDeleteCollectionMetadata {
673
681
  /** Operation create time. */
674
682
  createTime?: string;
@@ -952,6 +960,20 @@ declare namespace gapi.client {
952
960
  /** Document data keyed by URI pattern. For example: document_data_map = { "www.url1.com/*": { "Categories": ["category1", "category2"] }, "www.url2.com/*": { "Categories": ["category3"] } } */
953
961
  documentDataMap?: {[P in string]: {[P in string]: any}};
954
962
  }
963
+ interface GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig {
964
+ /** Whether to enable configurable schema for `HEALTHCARE_FHIR` vertical. If set to `true`, the predefined healthcare fhir schema can be extended for more customized searching and filtering. */
965
+ enableConfigurableSchema?: boolean;
966
+ /** Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If set to `true`, the batch ingestion will be processed in a static indexing mode which is slower but more capable of handling larger volume. */
967
+ enableStaticIndexingForBatchIngestion?: boolean;
968
+ }
969
+ interface GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata {
970
+ /** The number of IdentityMappingEntries that failed to be processed. */
971
+ failureCount?: string;
972
+ /** The number of IdentityMappingEntries that were successfully processed. */
973
+ successCount?: string;
974
+ /** The total number of IdentityMappingEntries that were processed. */
975
+ totalCount?: string;
976
+ }
955
977
  interface GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig {
956
978
  /** Optional. The UTC time when the next data sync is expected to start for the Data Connector. Customers are only able to specify the hour and minute to schedule the data sync. This is utilized when the data connector has a refresh interval greater than 1 day. */
957
979
  nextSyncTime?: GoogleTypeDateTime;
@@ -1006,6 +1028,10 @@ declare namespace gapi.client {
1006
1028
  /** Cloud Storage prefix for import errors. This must be an empty, existing Cloud Storage directory. Import errors are written to sharded files in this directory, one per line, as a JSON-encoded `google.rpc.Status` message. */
1007
1029
  gcsPrefix?: string;
1008
1030
  }
1031
+ interface GoogleCloudDiscoveryengineV1alphaImportIdentityMappingsResponse {
1032
+ /** A sample of errors encountered while processing the request. */
1033
+ errorSamples?: GoogleRpcStatus[];
1034
+ }
1009
1035
  interface GoogleCloudDiscoveryengineV1alphaImportSampleQueriesMetadata {
1010
1036
  /** ImportSampleQueries operation create time. */
1011
1037
  createTime?: string;
@@ -1232,6 +1258,10 @@ declare namespace gapi.client {
1232
1258
  invalidUris?: string[];
1233
1259
  /** Total number of unique URIs in the request that have invalid format. */
1234
1260
  invalidUrisCount?: number;
1261
+ /** URIs that have no index meta tag. Sample limited to 1000. */
1262
+ noindexUris?: string[];
1263
+ /** Total number of URIs that have no index meta tag. */
1264
+ noindexUrisCount?: number;
1235
1265
  /** Total number of URIs that have yet to be crawled. */
1236
1266
  pendingCount?: number;
1237
1267
  /** Total number of URIs that were rejected due to insufficient indexing resources. */
@@ -1374,7 +1404,7 @@ declare namespace gapi.client {
1374
1404
  sessionSpec?: GoogleCloudDiscoveryengineV1alphaSearchRequestSessionSpec;
1375
1405
  /** The spell correction specification that specifies the mode under which spell correction takes effect. */
1376
1406
  spellCorrectionSpec?: GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec;
1377
- /** Information about the end user. Highly recommended for analytics. UserInfo.user_agent is used to deduce `device_type` for analytics. */
1407
+ /** Information about the end user. Highly recommended for analytics and personalization. UserInfo.user_agent is used to deduce `device_type` for analytics. */
1378
1408
  userInfo?: GoogleCloudDiscoveryengineV1alphaUserInfo;
1379
1409
  /** The user labels applied to a resource must meet the following requirements: * Each resource can have multiple labels, up to a maximum of 64. * Each label must be a key-value pair. * Keys have a minimum length of 1 character and a maximum length of 63 characters and cannot be empty. Values can be empty and have a maximum length of 63 characters. * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. All characters must use UTF-8 encoding, and international characters are allowed. * The key portion of a label must be unique. However, you can use the same key with multiple resources. * Keys must start with a lowercase letter or international character. See [Google Cloud Document](https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements) for more details. */
1380
1410
  userLabels?: {[P in string]: string};
@@ -2316,11 +2346,11 @@ declare namespace gapi.client {
2316
2346
  citationIndices?: number[];
2317
2347
  /** Text for the claim in the answer candidate. Always provided regardless of whether citations or anti-citations are found. */
2318
2348
  claimText?: string;
2319
- /** Position indicating the end of the claim in the answer candidate, exclusive. */
2349
+ /** Position indicating the end of the claim in the answer candidate, exclusive, in bytes. Note that this is not measured in characters and, therefore, must be rendered as such. For example, if the claim text contains non-ASCII characters, the start and end positions vary when measured in characters (programming-language-dependent) and when measured in bytes (programming-language-independent). */
2320
2350
  endPos?: number;
2321
2351
  /** Indicates that this claim required grounding check. When the system decided this claim doesn't require attribution/grounding check, this field will be set to false. In that case, no grounding check was done for the claim and therefore citation_indices should not be returned. */
2322
2352
  groundingCheckRequired?: boolean;
2323
- /** Position indicating the start of the claim in the answer candidate, measured in bytes. */
2353
+ /** Position indicating the start of the claim in the answer candidate, measured in bytes. Note that this is not measured in characters and, therefore, must be rendered in the user interface keeping in mind that some characters may take more than one byte. For example, if the claim text contains non-ASCII characters, the start and end positions vary when measured in characters (programming-language-dependent) and when measured in bytes (programming-language-independent). */
2324
2354
  startPos?: number;
2325
2355
  }
2326
2356
  interface GoogleCloudDiscoveryengineV1betaCheckGroundingSpec {
@@ -2637,6 +2667,8 @@ declare namespace gapi.client {
2637
2667
  displayName?: string;
2638
2668
  /** Configuration for Document understanding and enrichment. */
2639
2669
  documentProcessingConfig?: GoogleCloudDiscoveryengineV1betaDocumentProcessingConfig;
2670
+ /** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
2671
+ healthcareFhirConfig?: GoogleCloudDiscoveryengineV1betaHealthcareFhirConfig;
2640
2672
  /** Immutable. The industry vertical that the data store registers. */
2641
2673
  industryVertical?: string;
2642
2674
  /** Optional. If set, this DataStore is an Infobot FAQ DataStore. */
@@ -3110,6 +3142,36 @@ declare namespace gapi.client {
3110
3142
  /** Text content of the fact. Can be at most 10K characters long. */
3111
3143
  factText?: string;
3112
3144
  }
3145
+ interface GoogleCloudDiscoveryengineV1betaHealthcareFhirConfig {
3146
+ /** Whether to enable configurable schema for `HEALTHCARE_FHIR` vertical. If set to `true`, the predefined healthcare fhir schema can be extended for more customized searching and filtering. */
3147
+ enableConfigurableSchema?: boolean;
3148
+ /** Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If set to `true`, the batch ingestion will be processed in a static indexing mode which is slower but more capable of handling larger volume. */
3149
+ enableStaticIndexingForBatchIngestion?: boolean;
3150
+ }
3151
+ interface GoogleCloudDiscoveryengineV1betaIdentityMappingEntry {
3152
+ /** Required. Identity outside the customer identity provider. The length limit of external identity will be of 100 characters. */
3153
+ externalIdentity?: string;
3154
+ /** Group identifier. For Google Workspace user account, group_id should be the google workspace group email. For non-google identity provider, group_id is the mapped group identifier configured during the workforcepool config. */
3155
+ groupId?: string;
3156
+ /** User identifier. For Google Workspace user account, user_id should be the google workspace user email. For non-google identity provider, user_id is the mapped user identifier configured during the workforcepool config. */
3157
+ userId?: string;
3158
+ }
3159
+ interface GoogleCloudDiscoveryengineV1betaIdentityMappingEntryOperationMetadata {
3160
+ /** The number of IdentityMappingEntries that failed to be processed. */
3161
+ failureCount?: string;
3162
+ /** The number of IdentityMappingEntries that were successfully processed. */
3163
+ successCount?: string;
3164
+ /** The total number of IdentityMappingEntries that were processed. */
3165
+ totalCount?: string;
3166
+ }
3167
+ interface GoogleCloudDiscoveryengineV1betaIdentityMappingStore {
3168
+ /** Output only. CMEK-related information for the Identity Mapping Store. */
3169
+ cmekConfig?: GoogleCloudDiscoveryengineV1betaCmekConfig;
3170
+ /** Input only. The KMS key to be used to protect this Identity Mapping Store at creation time. Must be set for requests that need to comply with CMEK Org Policy protections. If this field is set and processed successfully, the Identity Mapping Store will be protected by the KMS key, as indicated in the cmek_config field. */
3171
+ kmsKeyName?: string;
3172
+ /** Immutable. The full resource name of the identity mapping store. Format: `projects/{project}/locations/{location}/identityMappingStores/{identity_mapping_store}`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. */
3173
+ name?: string;
3174
+ }
3113
3175
  interface GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata {
3114
3176
  /** Operation create time. */
3115
3177
  createTime?: string;
@@ -3198,6 +3260,18 @@ declare namespace gapi.client {
3198
3260
  /** Cloud Storage prefix for import errors. This must be an empty, existing Cloud Storage directory. Import errors are written to sharded files in this directory, one per line, as a JSON-encoded `google.rpc.Status` message. */
3199
3261
  gcsPrefix?: string;
3200
3262
  }
3263
+ interface GoogleCloudDiscoveryengineV1betaImportIdentityMappingsRequest {
3264
+ /** The inline source to import identity mapping entries from. */
3265
+ inlineSource?: GoogleCloudDiscoveryengineV1betaImportIdentityMappingsRequestInlineSource;
3266
+ }
3267
+ interface GoogleCloudDiscoveryengineV1betaImportIdentityMappingsRequestInlineSource {
3268
+ /** A maximum of 10000 entries can be imported at one time */
3269
+ identityMappingEntries?: GoogleCloudDiscoveryengineV1betaIdentityMappingEntry[];
3270
+ }
3271
+ interface GoogleCloudDiscoveryengineV1betaImportIdentityMappingsResponse {
3272
+ /** A sample of errors encountered while processing the request. */
3273
+ errorSamples?: GoogleRpcStatus[];
3274
+ }
3201
3275
  interface GoogleCloudDiscoveryengineV1betaImportSampleQueriesMetadata {
3202
3276
  /** ImportSampleQueries operation create time. */
3203
3277
  createTime?: string;
@@ -3360,6 +3434,18 @@ declare namespace gapi.client {
3360
3434
  /** A token that can be sent as ListEvaluationsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
3361
3435
  nextPageToken?: string;
3362
3436
  }
3437
+ interface GoogleCloudDiscoveryengineV1betaListIdentityMappingsResponse {
3438
+ /** The Identity Mapping Entries. */
3439
+ identityMappingEntries?: GoogleCloudDiscoveryengineV1betaIdentityMappingEntry[];
3440
+ /** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
3441
+ nextPageToken?: string;
3442
+ }
3443
+ interface GoogleCloudDiscoveryengineV1betaListIdentityMappingStoresResponse {
3444
+ /** The Identity Mapping Stores. */
3445
+ identityMappingStores?: GoogleCloudDiscoveryengineV1betaIdentityMappingStore[];
3446
+ /** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
3447
+ nextPageToken?: string;
3448
+ }
3363
3449
  interface GoogleCloudDiscoveryengineV1betaListSampleQueriesResponse {
3364
3450
  /** A token that can be sent as ListSampleQueriesRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
3365
3451
  nextPageToken?: string;
@@ -3501,6 +3587,18 @@ declare namespace gapi.client {
3501
3587
  /** Cloud Storage prefix for purge errors. This must be an empty, existing Cloud Storage directory. Purge errors are written to sharded files in this directory, one per line, as a JSON-encoded `google.rpc.Status` message. */
3502
3588
  gcsPrefix?: string;
3503
3589
  }
3590
+ interface GoogleCloudDiscoveryengineV1betaPurgeIdentityMappingsRequest {
3591
+ /** Filter matching identity mappings to purge. The eligible field for filtering is: * `update_time`: in ISO 8601 "zulu" format. * `external_id` Examples: * Deleting all identity mappings updated in a time range: `update_time > "2012-04-23T18:25:43.511Z" AND update_time < "2012-04-23T18:30:43.511Z"` * Deleting all identity mappings for a given external_id: `external_id = "id1"` * Deleting all identity mappings inside an identity mapping store: `*` The filtering fields are assumed to have an implicit AND. Should not be used with source. An error will be thrown, if both are provided. */
3592
+ filter?: string;
3593
+ /** Actually performs the purge. If `force` is set to false, return the expected purge count without deleting any identity mappings. This field is only supported for purge with filter. For input source this field is ignored and data will be purged regardless of the value of this field. */
3594
+ force?: boolean;
3595
+ /** The inline source to purge identity mapping entries from. */
3596
+ inlineSource?: GoogleCloudDiscoveryengineV1betaPurgeIdentityMappingsRequestInlineSource;
3597
+ }
3598
+ interface GoogleCloudDiscoveryengineV1betaPurgeIdentityMappingsRequestInlineSource {
3599
+ /** A maximum of 10000 entries can be purged at one time */
3600
+ identityMappingEntries?: GoogleCloudDiscoveryengineV1betaIdentityMappingEntry[];
3601
+ }
3504
3602
  interface GoogleCloudDiscoveryengineV1betaPurgeSuggestionDenyListEntriesMetadata {
3505
3603
  /** Operation create time. */
3506
3604
  createTime?: string;
@@ -3766,7 +3864,7 @@ declare namespace gapi.client {
3766
3864
  sessionSpec?: GoogleCloudDiscoveryengineV1betaSearchRequestSessionSpec;
3767
3865
  /** The spell correction specification that specifies the mode under which spell correction takes effect. */
3768
3866
  spellCorrectionSpec?: GoogleCloudDiscoveryengineV1betaSearchRequestSpellCorrectionSpec;
3769
- /** Information about the end user. Highly recommended for analytics. UserInfo.user_agent is used to deduce `device_type` for analytics. */
3867
+ /** Information about the end user. Highly recommended for analytics and personalization. UserInfo.user_agent is used to deduce `device_type` for analytics. */
3770
3868
  userInfo?: GoogleCloudDiscoveryengineV1betaUserInfo;
3771
3869
  /** The user labels applied to a resource must meet the following requirements: * Each resource can have multiple labels, up to a maximum of 64. * Each label must be a key-value pair. * Keys have a minimum length of 1 character and a maximum length of 63 characters and cannot be empty. Values can be empty and have a maximum length of 63 characters. * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. All characters must use UTF-8 encoding, and international characters are allowed. * The key portion of a label must be unique. However, you can use the same key with multiple resources. * Keys must start with a lowercase letter or international character. See [Google Cloud Document](https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements) for more details. */
3772
3870
  userLabels?: {[P in string]: string};
@@ -4595,6 +4693,8 @@ declare namespace gapi.client {
4595
4693
  displayName?: string;
4596
4694
  /** Configuration for Document understanding and enrichment. */
4597
4695
  documentProcessingConfig?: GoogleCloudDiscoveryengineV1DocumentProcessingConfig;
4696
+ /** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
4697
+ healthcareFhirConfig?: GoogleCloudDiscoveryengineV1HealthcareFhirConfig;
4598
4698
  /** Immutable. The industry vertical that the data store registers. */
4599
4699
  industryVertical?: string;
4600
4700
  /** Optional. If set, this DataStore is an Infobot FAQ DataStore. */
@@ -4630,6 +4730,12 @@ declare namespace gapi.client {
4630
4730
  /** If set true, the DataStore will not be available for serving search requests. */
4631
4731
  disabledForServing?: boolean;
4632
4732
  }
4733
+ interface GoogleCloudDiscoveryengineV1DeleteCmekConfigMetadata {
4734
+ /** Operation create time. */
4735
+ createTime?: string;
4736
+ /** Operation last update time. If the operation is done, this is also the finish time. */
4737
+ updateTime?: string;
4738
+ }
4633
4739
  interface GoogleCloudDiscoveryengineV1DeleteDataStoreMetadata {
4634
4740
  /** Operation create time. */
4635
4741
  createTime?: string;
@@ -4768,6 +4874,20 @@ declare namespace gapi.client {
4768
4874
  /** The search feature tier of this engine. Different tiers might have different pricing. To learn more, check the pricing documentation. Defaults to SearchTier.SEARCH_TIER_STANDARD if not specified. */
4769
4875
  searchTier?: string;
4770
4876
  }
4877
+ interface GoogleCloudDiscoveryengineV1HealthcareFhirConfig {
4878
+ /** Whether to enable configurable schema for `HEALTHCARE_FHIR` vertical. If set to `true`, the predefined healthcare fhir schema can be extended for more customized searching and filtering. */
4879
+ enableConfigurableSchema?: boolean;
4880
+ /** Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If set to `true`, the batch ingestion will be processed in a static indexing mode which is slower but more capable of handling larger volume. */
4881
+ enableStaticIndexingForBatchIngestion?: boolean;
4882
+ }
4883
+ interface GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata {
4884
+ /** The number of IdentityMappingEntries that failed to be processed. */
4885
+ failureCount?: string;
4886
+ /** The number of IdentityMappingEntries that were successfully processed. */
4887
+ successCount?: string;
4888
+ /** The total number of IdentityMappingEntries that were processed. */
4889
+ totalCount?: string;
4890
+ }
4771
4891
  interface GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata {
4772
4892
  /** Operation create time. */
4773
4893
  createTime?: string;
@@ -4806,6 +4926,10 @@ declare namespace gapi.client {
4806
4926
  /** Cloud Storage prefix for import errors. This must be an empty, existing Cloud Storage directory. Import errors are written to sharded files in this directory, one per line, as a JSON-encoded `google.rpc.Status` message. */
4807
4927
  gcsPrefix?: string;
4808
4928
  }
4929
+ interface GoogleCloudDiscoveryengineV1ImportIdentityMappingsResponse {
4930
+ /** A sample of errors encountered while processing the request. */
4931
+ errorSamples?: GoogleRpcStatus[];
4932
+ }
4809
4933
  interface GoogleCloudDiscoveryengineV1ImportSuggestionDenyListEntriesMetadata {
4810
4934
  /** Operation create time. */
4811
4935
  createTime?: string;
@@ -5367,7 +5491,7 @@ declare namespace gapi.client {
5367
5491
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5368
5492
  uploadType?: string;
5369
5493
  },
5370
- body: GoogleCloudDiscoveryengineV1betaDocument
5494
+ body: GoogleCloudDiscoveryengineV1betaDocument,
5371
5495
  ): Request<GoogleCloudDiscoveryengineV1betaDocument>;
5372
5496
  /** Deletes a Document. */
5373
5497
  delete(request?: {
@@ -5479,7 +5603,7 @@ declare namespace gapi.client {
5479
5603
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5480
5604
  uploadType?: string;
5481
5605
  },
5482
- body: GoogleCloudDiscoveryengineV1betaImportDocumentsRequest
5606
+ body: GoogleCloudDiscoveryengineV1betaImportDocumentsRequest,
5483
5607
  ): Request<GoogleLongrunningOperation>;
5484
5608
  /** Gets a list of Documents. */
5485
5609
  list(request?: {
@@ -5576,7 +5700,7 @@ declare namespace gapi.client {
5576
5700
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5577
5701
  uploadType?: string;
5578
5702
  },
5579
- body: GoogleCloudDiscoveryengineV1betaDocument
5703
+ body: GoogleCloudDiscoveryengineV1betaDocument,
5580
5704
  ): Request<GoogleCloudDiscoveryengineV1betaDocument>;
5581
5705
  /** Permanently deletes all selected Documents in a branch. This process is asynchronous. Depending on the number of Documents to be deleted, this operation can take hours to complete. Before the delete operation completes, some Documents might still be returned by DocumentService.GetDocument or DocumentService.ListDocuments. To get a list of the Documents to be deleted, set PurgeDocumentsRequest.force to false. */
5582
5706
  purge(request: {
@@ -5634,7 +5758,7 @@ declare namespace gapi.client {
5634
5758
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5635
5759
  uploadType?: string;
5636
5760
  },
5637
- body: GoogleCloudDiscoveryengineV1betaPurgeDocumentsRequest
5761
+ body: GoogleCloudDiscoveryengineV1betaPurgeDocumentsRequest,
5638
5762
  ): Request<GoogleLongrunningOperation>;
5639
5763
  }
5640
5764
  interface OperationsResource {
@@ -5694,7 +5818,7 @@ declare namespace gapi.client {
5694
5818
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5695
5819
  uploadType?: string;
5696
5820
  },
5697
- body: GoogleLongrunningCancelOperationRequest
5821
+ body: GoogleLongrunningCancelOperationRequest,
5698
5822
  ): Request<{}>;
5699
5823
  /** 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. */
5700
5824
  get(request?: {
@@ -5849,7 +5973,7 @@ declare namespace gapi.client {
5849
5973
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5850
5974
  uploadType?: string;
5851
5975
  },
5852
- body: GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest
5976
+ body: GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest,
5853
5977
  ): Request<GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryResponse>;
5854
5978
  }
5855
5979
  interface CompletionSuggestionsResource {
@@ -5909,7 +6033,7 @@ declare namespace gapi.client {
5909
6033
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5910
6034
  uploadType?: string;
5911
6035
  },
5912
- body: GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsRequest
6036
+ body: GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsRequest,
5913
6037
  ): Request<GoogleLongrunningOperation>;
5914
6038
  /** Permanently deletes all CompletionSuggestions for a DataStore. */
5915
6039
  purge(request: {
@@ -5967,7 +6091,7 @@ declare namespace gapi.client {
5967
6091
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5968
6092
  uploadType?: string;
5969
6093
  },
5970
- body: GoogleCloudDiscoveryengineV1betaPurgeCompletionSuggestionsRequest
6094
+ body: GoogleCloudDiscoveryengineV1betaPurgeCompletionSuggestionsRequest,
5971
6095
  ): Request<GoogleLongrunningOperation>;
5972
6096
  }
5973
6097
  interface ControlsResource {
@@ -6031,7 +6155,7 @@ declare namespace gapi.client {
6031
6155
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6032
6156
  uploadType?: string;
6033
6157
  },
6034
- body: GoogleCloudDiscoveryengineV1betaControl
6158
+ body: GoogleCloudDiscoveryengineV1betaControl,
6035
6159
  ): Request<GoogleCloudDiscoveryengineV1betaControl>;
6036
6160
  /** Deletes a Control. If the Control to delete does not exist, a NOT_FOUND error is returned. */
6037
6161
  delete(request?: {
@@ -6180,7 +6304,7 @@ declare namespace gapi.client {
6180
6304
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6181
6305
  uploadType?: string;
6182
6306
  },
6183
- body: GoogleCloudDiscoveryengineV1betaControl
6307
+ body: GoogleCloudDiscoveryengineV1betaControl,
6184
6308
  ): Request<GoogleCloudDiscoveryengineV1betaControl>;
6185
6309
  }
6186
6310
  interface ConversationsResource {
@@ -6240,7 +6364,7 @@ declare namespace gapi.client {
6240
6364
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6241
6365
  uploadType?: string;
6242
6366
  },
6243
- body: GoogleCloudDiscoveryengineV1betaConverseConversationRequest
6367
+ body: GoogleCloudDiscoveryengineV1betaConverseConversationRequest,
6244
6368
  ): Request<GoogleCloudDiscoveryengineV1betaConverseConversationResponse>;
6245
6369
  /** Creates a Conversation. If the Conversation to create already exists, an ALREADY_EXISTS error is returned. */
6246
6370
  create(request: {
@@ -6298,7 +6422,7 @@ declare namespace gapi.client {
6298
6422
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6299
6423
  uploadType?: string;
6300
6424
  },
6301
- body: GoogleCloudDiscoveryengineV1betaConversation
6425
+ body: GoogleCloudDiscoveryengineV1betaConversation,
6302
6426
  ): Request<GoogleCloudDiscoveryengineV1betaConversation>;
6303
6427
  /** Deletes a Conversation. If the Conversation to delete does not exist, a NOT_FOUND error is returned. */
6304
6428
  delete(request?: {
@@ -6449,7 +6573,7 @@ declare namespace gapi.client {
6449
6573
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6450
6574
  uploadType?: string;
6451
6575
  },
6452
- body: GoogleCloudDiscoveryengineV1betaConversation
6576
+ body: GoogleCloudDiscoveryengineV1betaConversation,
6453
6577
  ): Request<GoogleCloudDiscoveryengineV1betaConversation>;
6454
6578
  }
6455
6579
  interface CustomModelsResource {
@@ -6731,7 +6855,7 @@ declare namespace gapi.client {
6731
6855
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6732
6856
  uploadType?: string;
6733
6857
  },
6734
- body: GoogleCloudDiscoveryengineV1betaSchema
6858
+ body: GoogleCloudDiscoveryengineV1betaSchema,
6735
6859
  ): Request<GoogleLongrunningOperation>;
6736
6860
  /** Deletes a Schema. */
6737
6861
  delete(request?: {
@@ -6878,7 +7002,7 @@ declare namespace gapi.client {
6878
7002
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6879
7003
  uploadType?: string;
6880
7004
  },
6881
- body: GoogleCloudDiscoveryengineV1betaSchema
7005
+ body: GoogleCloudDiscoveryengineV1betaSchema,
6882
7006
  ): Request<GoogleLongrunningOperation>;
6883
7007
  operations: OperationsResource;
6884
7008
  }
@@ -6939,7 +7063,7 @@ declare namespace gapi.client {
6939
7063
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
6940
7064
  uploadType?: string;
6941
7065
  },
6942
- body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest
7066
+ body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest,
6943
7067
  ): Request<GoogleCloudDiscoveryengineV1betaAnswerQueryResponse>;
6944
7068
  /** Gets a ServingConfig. Returns a NotFound error if the ServingConfig does not exist. */
6945
7069
  get(request?: {
@@ -7059,7 +7183,7 @@ declare namespace gapi.client {
7059
7183
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7060
7184
  uploadType?: string;
7061
7185
  },
7062
- body: GoogleCloudDiscoveryengineV1betaServingConfig
7186
+ body: GoogleCloudDiscoveryengineV1betaServingConfig,
7063
7187
  ): Request<GoogleCloudDiscoveryengineV1betaServingConfig>;
7064
7188
  /** Makes a recommendation, which requires a contextual user event. */
7065
7189
  recommend(request: {
@@ -7117,7 +7241,7 @@ declare namespace gapi.client {
7117
7241
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7118
7242
  uploadType?: string;
7119
7243
  },
7120
- body: GoogleCloudDiscoveryengineV1betaRecommendRequest
7244
+ body: GoogleCloudDiscoveryengineV1betaRecommendRequest,
7121
7245
  ): Request<GoogleCloudDiscoveryengineV1betaRecommendResponse>;
7122
7246
  /** Performs a search. */
7123
7247
  search(request: {
@@ -7175,7 +7299,7 @@ declare namespace gapi.client {
7175
7299
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7176
7300
  uploadType?: string;
7177
7301
  },
7178
- body: GoogleCloudDiscoveryengineV1betaSearchRequest
7302
+ body: GoogleCloudDiscoveryengineV1betaSearchRequest,
7179
7303
  ): Request<GoogleCloudDiscoveryengineV1betaSearchResponse>;
7180
7304
  /** Performs a search. Similar to the SearchService.Search method, but a lite version that allows API key for authentication, where OAuth and IAM checks are not required. Only public website search is supported by this method. If data stores and engines not associated with public website search are specified, a `FAILED_PRECONDITION` error is returned. This method can be used for easy onboarding without having to implement an authentication backend. However, it is strongly recommended to use SearchService.Search instead with required OAuth and IAM checks to provide better data security. */
7181
7305
  searchLite(request: {
@@ -7233,7 +7357,7 @@ declare namespace gapi.client {
7233
7357
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7234
7358
  uploadType?: string;
7235
7359
  },
7236
- body: GoogleCloudDiscoveryengineV1betaSearchRequest
7360
+ body: GoogleCloudDiscoveryengineV1betaSearchRequest,
7237
7361
  ): Request<GoogleCloudDiscoveryengineV1betaSearchResponse>;
7238
7362
  /** Answer query method (streaming). It takes one AnswerQueryRequest and returns multiple AnswerQueryResponse messages in a stream. */
7239
7363
  streamAnswer(request: {
@@ -7291,7 +7415,7 @@ declare namespace gapi.client {
7291
7415
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7292
7416
  uploadType?: string;
7293
7417
  },
7294
- body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest
7418
+ body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest,
7295
7419
  ): Request<GoogleCloudDiscoveryengineV1betaAnswerQueryResponse>;
7296
7420
  }
7297
7421
  interface AnswersResource {
@@ -7380,7 +7504,7 @@ declare namespace gapi.client {
7380
7504
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7381
7505
  uploadType?: string;
7382
7506
  },
7383
- body: GoogleCloudDiscoveryengineV1betaSession
7507
+ body: GoogleCloudDiscoveryengineV1betaSession,
7384
7508
  ): Request<GoogleCloudDiscoveryengineV1betaSession>;
7385
7509
  /** Deletes a Session. If the Session to delete does not exist, a NOT_FOUND error is returned. */
7386
7510
  delete(request?: {
@@ -7533,7 +7657,7 @@ declare namespace gapi.client {
7533
7657
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7534
7658
  uploadType?: string;
7535
7659
  },
7536
- body: GoogleCloudDiscoveryengineV1betaSession
7660
+ body: GoogleCloudDiscoveryengineV1betaSession,
7537
7661
  ): Request<GoogleCloudDiscoveryengineV1betaSession>;
7538
7662
  answers: AnswersResource;
7539
7663
  }
@@ -7656,7 +7780,7 @@ declare namespace gapi.client {
7656
7780
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7657
7781
  uploadType?: string;
7658
7782
  },
7659
- body: GoogleCloudDiscoveryengineV1betaSitemap
7783
+ body: GoogleCloudDiscoveryengineV1betaSitemap,
7660
7784
  ): Request<GoogleLongrunningOperation>;
7661
7785
  /** Deletes a Sitemap. */
7662
7786
  delete(request?: {
@@ -7805,7 +7929,7 @@ declare namespace gapi.client {
7805
7929
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7806
7930
  uploadType?: string;
7807
7931
  },
7808
- body: GoogleCloudDiscoveryengineV1betaBatchCreateTargetSitesRequest
7932
+ body: GoogleCloudDiscoveryengineV1betaBatchCreateTargetSitesRequest,
7809
7933
  ): Request<GoogleLongrunningOperation>;
7810
7934
  /** Creates a TargetSite. */
7811
7935
  create(request: {
@@ -7863,7 +7987,7 @@ declare namespace gapi.client {
7863
7987
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7864
7988
  uploadType?: string;
7865
7989
  },
7866
- body: GoogleCloudDiscoveryengineV1betaTargetSite
7990
+ body: GoogleCloudDiscoveryengineV1betaTargetSite,
7867
7991
  ): Request<GoogleLongrunningOperation>;
7868
7992
  /** Deletes a TargetSite. */
7869
7993
  delete(request?: {
@@ -8006,7 +8130,7 @@ declare namespace gapi.client {
8006
8130
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8007
8131
  uploadType?: string;
8008
8132
  },
8009
- body: GoogleCloudDiscoveryengineV1betaTargetSite
8133
+ body: GoogleCloudDiscoveryengineV1betaTargetSite,
8010
8134
  ): Request<GoogleLongrunningOperation>;
8011
8135
  operations: OperationsResource;
8012
8136
  }
@@ -8067,7 +8191,7 @@ declare namespace gapi.client {
8067
8191
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8068
8192
  uploadType?: string;
8069
8193
  },
8070
- body: GoogleCloudDiscoveryengineV1betaBatchVerifyTargetSitesRequest
8194
+ body: GoogleCloudDiscoveryengineV1betaBatchVerifyTargetSitesRequest,
8071
8195
  ): Request<GoogleLongrunningOperation>;
8072
8196
  /** Downgrade from advanced site search to basic site search. */
8073
8197
  disableAdvancedSiteSearch(request: {
@@ -8125,7 +8249,7 @@ declare namespace gapi.client {
8125
8249
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8126
8250
  uploadType?: string;
8127
8251
  },
8128
- body: GoogleCloudDiscoveryengineV1betaDisableAdvancedSiteSearchRequest
8252
+ body: GoogleCloudDiscoveryengineV1betaDisableAdvancedSiteSearchRequest,
8129
8253
  ): Request<GoogleLongrunningOperation>;
8130
8254
  /** Upgrade from basic site search to advanced site search. */
8131
8255
  enableAdvancedSiteSearch(request: {
@@ -8183,7 +8307,7 @@ declare namespace gapi.client {
8183
8307
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8184
8308
  uploadType?: string;
8185
8309
  },
8186
- body: GoogleCloudDiscoveryengineV1betaEnableAdvancedSiteSearchRequest
8310
+ body: GoogleCloudDiscoveryengineV1betaEnableAdvancedSiteSearchRequest,
8187
8311
  ): Request<GoogleLongrunningOperation>;
8188
8312
  /** Returns list of target sites with its domain verification status. This method can only be called under data store with BASIC_SITE_SEARCH state at the moment. */
8189
8313
  fetchDomainVerificationStatus(request?: {
@@ -8272,7 +8396,7 @@ declare namespace gapi.client {
8272
8396
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8273
8397
  uploadType?: string;
8274
8398
  },
8275
- body: GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest
8399
+ body: GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest,
8276
8400
  ): Request<GoogleLongrunningOperation>;
8277
8401
  operations: OperationsResource;
8278
8402
  sitemaps: SitemapsResource;
@@ -8335,7 +8459,7 @@ declare namespace gapi.client {
8335
8459
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8336
8460
  uploadType?: string;
8337
8461
  },
8338
- body: GoogleCloudDiscoveryengineV1betaImportSuggestionDenyListEntriesRequest
8462
+ body: GoogleCloudDiscoveryengineV1betaImportSuggestionDenyListEntriesRequest,
8339
8463
  ): Request<GoogleLongrunningOperation>;
8340
8464
  /** Permanently deletes all SuggestionDenyListEntry for a DataStore. */
8341
8465
  purge(request: {
@@ -8393,7 +8517,7 @@ declare namespace gapi.client {
8393
8517
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8394
8518
  uploadType?: string;
8395
8519
  },
8396
- body: GoogleCloudDiscoveryengineV1betaPurgeSuggestionDenyListEntriesRequest
8520
+ body: GoogleCloudDiscoveryengineV1betaPurgeSuggestionDenyListEntriesRequest,
8397
8521
  ): Request<GoogleLongrunningOperation>;
8398
8522
  }
8399
8523
  interface UserEventsResource {
@@ -8486,7 +8610,7 @@ declare namespace gapi.client {
8486
8610
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8487
8611
  uploadType?: string;
8488
8612
  },
8489
- body: GoogleCloudDiscoveryengineV1betaImportUserEventsRequest
8613
+ body: GoogleCloudDiscoveryengineV1betaImportUserEventsRequest,
8490
8614
  ): Request<GoogleLongrunningOperation>;
8491
8615
  /** Deletes permanently all user events specified by the filter provided. Depending on the number of events specified by the filter, this operation could take hours or days to complete. To test a filter, use the list command first. */
8492
8616
  purge(request: {
@@ -8544,7 +8668,7 @@ declare namespace gapi.client {
8544
8668
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8545
8669
  uploadType?: string;
8546
8670
  },
8547
- body: GoogleCloudDiscoveryengineV1betaPurgeUserEventsRequest
8671
+ body: GoogleCloudDiscoveryengineV1betaPurgeUserEventsRequest,
8548
8672
  ): Request<GoogleLongrunningOperation>;
8549
8673
  /** Writes a single user event. */
8550
8674
  write(request: {
@@ -8606,7 +8730,7 @@ declare namespace gapi.client {
8606
8730
  /** If set to true, the user event is written asynchronously after validation, and the API responds without waiting for the write. */
8607
8731
  writeAsync?: boolean;
8608
8732
  },
8609
- body: GoogleCloudDiscoveryengineV1betaUserEvent
8733
+ body: GoogleCloudDiscoveryengineV1betaUserEvent,
8610
8734
  ): Request<GoogleCloudDiscoveryengineV1betaUserEvent>;
8611
8735
  }
8612
8736
  interface DataStoresResource {
@@ -8721,7 +8845,7 @@ declare namespace gapi.client {
8721
8845
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8722
8846
  uploadType?: string;
8723
8847
  },
8724
- body: GoogleCloudDiscoveryengineV1betaDataStore
8848
+ body: GoogleCloudDiscoveryengineV1betaDataStore,
8725
8849
  ): Request<GoogleLongrunningOperation>;
8726
8850
  /** Deletes a DataStore. */
8727
8851
  delete(request?: {
@@ -8897,7 +9021,7 @@ declare namespace gapi.client {
8897
9021
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8898
9022
  uploadType?: string;
8899
9023
  },
8900
- body: GoogleCloudDiscoveryengineV1betaDataStore
9024
+ body: GoogleCloudDiscoveryengineV1betaDataStore,
8901
9025
  ): Request<GoogleCloudDiscoveryengineV1betaDataStore>;
8902
9026
  /** Trains a custom model. */
8903
9027
  trainCustomModel(request: {
@@ -8955,7 +9079,7 @@ declare namespace gapi.client {
8955
9079
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8956
9080
  uploadType?: string;
8957
9081
  },
8958
- body: GoogleCloudDiscoveryengineV1betaTrainCustomModelRequest
9082
+ body: GoogleCloudDiscoveryengineV1betaTrainCustomModelRequest,
8959
9083
  ): Request<GoogleLongrunningOperation>;
8960
9084
  branches: BranchesResource;
8961
9085
  completionConfig: CompletionConfigResource;
@@ -9029,7 +9153,7 @@ declare namespace gapi.client {
9029
9153
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9030
9154
  uploadType?: string;
9031
9155
  },
9032
- body: GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest
9156
+ body: GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest,
9033
9157
  ): Request<GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryResponse>;
9034
9158
  }
9035
9159
  interface ControlsResource {
@@ -9093,7 +9217,7 @@ declare namespace gapi.client {
9093
9217
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9094
9218
  uploadType?: string;
9095
9219
  },
9096
- body: GoogleCloudDiscoveryengineV1betaControl
9220
+ body: GoogleCloudDiscoveryengineV1betaControl,
9097
9221
  ): Request<GoogleCloudDiscoveryengineV1betaControl>;
9098
9222
  /** Deletes a Control. If the Control to delete does not exist, a NOT_FOUND error is returned. */
9099
9223
  delete(request?: {
@@ -9242,7 +9366,7 @@ declare namespace gapi.client {
9242
9366
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9243
9367
  uploadType?: string;
9244
9368
  },
9245
- body: GoogleCloudDiscoveryengineV1betaControl
9369
+ body: GoogleCloudDiscoveryengineV1betaControl,
9246
9370
  ): Request<GoogleCloudDiscoveryengineV1betaControl>;
9247
9371
  }
9248
9372
  interface ConversationsResource {
@@ -9302,7 +9426,7 @@ declare namespace gapi.client {
9302
9426
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9303
9427
  uploadType?: string;
9304
9428
  },
9305
- body: GoogleCloudDiscoveryengineV1betaConverseConversationRequest
9429
+ body: GoogleCloudDiscoveryengineV1betaConverseConversationRequest,
9306
9430
  ): Request<GoogleCloudDiscoveryengineV1betaConverseConversationResponse>;
9307
9431
  /** Creates a Conversation. If the Conversation to create already exists, an ALREADY_EXISTS error is returned. */
9308
9432
  create(request: {
@@ -9360,7 +9484,7 @@ declare namespace gapi.client {
9360
9484
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9361
9485
  uploadType?: string;
9362
9486
  },
9363
- body: GoogleCloudDiscoveryengineV1betaConversation
9487
+ body: GoogleCloudDiscoveryengineV1betaConversation,
9364
9488
  ): Request<GoogleCloudDiscoveryengineV1betaConversation>;
9365
9489
  /** Deletes a Conversation. If the Conversation to delete does not exist, a NOT_FOUND error is returned. */
9366
9490
  delete(request?: {
@@ -9511,7 +9635,7 @@ declare namespace gapi.client {
9511
9635
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9512
9636
  uploadType?: string;
9513
9637
  },
9514
- body: GoogleCloudDiscoveryengineV1betaConversation
9638
+ body: GoogleCloudDiscoveryengineV1betaConversation,
9515
9639
  ): Request<GoogleCloudDiscoveryengineV1betaConversation>;
9516
9640
  }
9517
9641
  interface OperationsResource {
@@ -9633,7 +9757,7 @@ declare namespace gapi.client {
9633
9757
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9634
9758
  uploadType?: string;
9635
9759
  },
9636
- body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest
9760
+ body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest,
9637
9761
  ): Request<GoogleCloudDiscoveryengineV1betaAnswerQueryResponse>;
9638
9762
  /** Gets a ServingConfig. Returns a NotFound error if the ServingConfig does not exist. */
9639
9763
  get(request?: {
@@ -9753,7 +9877,7 @@ declare namespace gapi.client {
9753
9877
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9754
9878
  uploadType?: string;
9755
9879
  },
9756
- body: GoogleCloudDiscoveryengineV1betaServingConfig
9880
+ body: GoogleCloudDiscoveryengineV1betaServingConfig,
9757
9881
  ): Request<GoogleCloudDiscoveryengineV1betaServingConfig>;
9758
9882
  /** Makes a recommendation, which requires a contextual user event. */
9759
9883
  recommend(request: {
@@ -9811,7 +9935,7 @@ declare namespace gapi.client {
9811
9935
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9812
9936
  uploadType?: string;
9813
9937
  },
9814
- body: GoogleCloudDiscoveryengineV1betaRecommendRequest
9938
+ body: GoogleCloudDiscoveryengineV1betaRecommendRequest,
9815
9939
  ): Request<GoogleCloudDiscoveryengineV1betaRecommendResponse>;
9816
9940
  /** Performs a search. */
9817
9941
  search(request: {
@@ -9869,7 +9993,7 @@ declare namespace gapi.client {
9869
9993
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9870
9994
  uploadType?: string;
9871
9995
  },
9872
- body: GoogleCloudDiscoveryengineV1betaSearchRequest
9996
+ body: GoogleCloudDiscoveryengineV1betaSearchRequest,
9873
9997
  ): Request<GoogleCloudDiscoveryengineV1betaSearchResponse>;
9874
9998
  /** Performs a search. Similar to the SearchService.Search method, but a lite version that allows API key for authentication, where OAuth and IAM checks are not required. Only public website search is supported by this method. If data stores and engines not associated with public website search are specified, a `FAILED_PRECONDITION` error is returned. This method can be used for easy onboarding without having to implement an authentication backend. However, it is strongly recommended to use SearchService.Search instead with required OAuth and IAM checks to provide better data security. */
9875
9999
  searchLite(request: {
@@ -9927,7 +10051,7 @@ declare namespace gapi.client {
9927
10051
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9928
10052
  uploadType?: string;
9929
10053
  },
9930
- body: GoogleCloudDiscoveryengineV1betaSearchRequest
10054
+ body: GoogleCloudDiscoveryengineV1betaSearchRequest,
9931
10055
  ): Request<GoogleCloudDiscoveryengineV1betaSearchResponse>;
9932
10056
  /** Answer query method (streaming). It takes one AnswerQueryRequest and returns multiple AnswerQueryResponse messages in a stream. */
9933
10057
  streamAnswer(request: {
@@ -9985,7 +10109,7 @@ declare namespace gapi.client {
9985
10109
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9986
10110
  uploadType?: string;
9987
10111
  },
9988
- body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest
10112
+ body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest,
9989
10113
  ): Request<GoogleCloudDiscoveryengineV1betaAnswerQueryResponse>;
9990
10114
  }
9991
10115
  interface AnswersResource {
@@ -10074,7 +10198,7 @@ declare namespace gapi.client {
10074
10198
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10075
10199
  uploadType?: string;
10076
10200
  },
10077
- body: GoogleCloudDiscoveryengineV1betaSession
10201
+ body: GoogleCloudDiscoveryengineV1betaSession,
10078
10202
  ): Request<GoogleCloudDiscoveryengineV1betaSession>;
10079
10203
  /** Deletes a Session. If the Session to delete does not exist, a NOT_FOUND error is returned. */
10080
10204
  delete(request?: {
@@ -10227,7 +10351,7 @@ declare namespace gapi.client {
10227
10351
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10228
10352
  uploadType?: string;
10229
10353
  },
10230
- body: GoogleCloudDiscoveryengineV1betaSession
10354
+ body: GoogleCloudDiscoveryengineV1betaSession,
10231
10355
  ): Request<GoogleCloudDiscoveryengineV1betaSession>;
10232
10356
  answers: AnswersResource;
10233
10357
  }
@@ -10292,7 +10416,7 @@ declare namespace gapi.client {
10292
10416
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10293
10417
  uploadType?: string;
10294
10418
  },
10295
- body: GoogleCloudDiscoveryengineV1betaEngine
10419
+ body: GoogleCloudDiscoveryengineV1betaEngine,
10296
10420
  ): Request<GoogleLongrunningOperation>;
10297
10421
  /** Deletes a Engine. */
10298
10422
  delete(request?: {
@@ -10441,7 +10565,7 @@ declare namespace gapi.client {
10441
10565
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10442
10566
  uploadType?: string;
10443
10567
  },
10444
- body: GoogleCloudDiscoveryengineV1betaEngine
10568
+ body: GoogleCloudDiscoveryengineV1betaEngine,
10445
10569
  ): Request<GoogleCloudDiscoveryengineV1betaEngine>;
10446
10570
  /** Pauses the training of an existing engine. Only applicable if SolutionType is SOLUTION_TYPE_RECOMMENDATION. */
10447
10571
  pause(request: {
@@ -10499,7 +10623,7 @@ declare namespace gapi.client {
10499
10623
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10500
10624
  uploadType?: string;
10501
10625
  },
10502
- body: GoogleCloudDiscoveryengineV1betaPauseEngineRequest
10626
+ body: GoogleCloudDiscoveryengineV1betaPauseEngineRequest,
10503
10627
  ): Request<GoogleCloudDiscoveryengineV1betaEngine>;
10504
10628
  /** Resumes the training of an existing engine. Only applicable if SolutionType is SOLUTION_TYPE_RECOMMENDATION. */
10505
10629
  resume(request: {
@@ -10557,7 +10681,7 @@ declare namespace gapi.client {
10557
10681
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10558
10682
  uploadType?: string;
10559
10683
  },
10560
- body: GoogleCloudDiscoveryengineV1betaResumeEngineRequest
10684
+ body: GoogleCloudDiscoveryengineV1betaResumeEngineRequest,
10561
10685
  ): Request<GoogleCloudDiscoveryengineV1betaEngine>;
10562
10686
  /** Tunes an existing engine. Only applicable if SolutionType is SOLUTION_TYPE_RECOMMENDATION. */
10563
10687
  tune(request: {
@@ -10615,7 +10739,7 @@ declare namespace gapi.client {
10615
10739
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10616
10740
  uploadType?: string;
10617
10741
  },
10618
- body: GoogleCloudDiscoveryengineV1betaTuneEngineRequest
10742
+ body: GoogleCloudDiscoveryengineV1betaTuneEngineRequest,
10619
10743
  ): Request<GoogleLongrunningOperation>;
10620
10744
  completionConfig: CompletionConfigResource;
10621
10745
  controls: ControlsResource;
@@ -10753,7 +10877,7 @@ declare namespace gapi.client {
10753
10877
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10754
10878
  uploadType?: string;
10755
10879
  },
10756
- body: GoogleCloudDiscoveryengineV1betaDocument
10880
+ body: GoogleCloudDiscoveryengineV1betaDocument,
10757
10881
  ): Request<GoogleCloudDiscoveryengineV1betaDocument>;
10758
10882
  /** Deletes a Document. */
10759
10883
  delete(request?: {
@@ -10865,7 +10989,7 @@ declare namespace gapi.client {
10865
10989
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10866
10990
  uploadType?: string;
10867
10991
  },
10868
- body: GoogleCloudDiscoveryengineV1betaImportDocumentsRequest
10992
+ body: GoogleCloudDiscoveryengineV1betaImportDocumentsRequest,
10869
10993
  ): Request<GoogleLongrunningOperation>;
10870
10994
  /** Gets a list of Documents. */
10871
10995
  list(request?: {
@@ -10962,7 +11086,7 @@ declare namespace gapi.client {
10962
11086
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10963
11087
  uploadType?: string;
10964
11088
  },
10965
- body: GoogleCloudDiscoveryengineV1betaDocument
11089
+ body: GoogleCloudDiscoveryengineV1betaDocument,
10966
11090
  ): Request<GoogleCloudDiscoveryengineV1betaDocument>;
10967
11091
  /** Permanently deletes all selected Documents in a branch. This process is asynchronous. Depending on the number of Documents to be deleted, this operation can take hours to complete. Before the delete operation completes, some Documents might still be returned by DocumentService.GetDocument or DocumentService.ListDocuments. To get a list of the Documents to be deleted, set PurgeDocumentsRequest.force to false. */
10968
11092
  purge(request: {
@@ -11020,7 +11144,7 @@ declare namespace gapi.client {
11020
11144
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11021
11145
  uploadType?: string;
11022
11146
  },
11023
- body: GoogleCloudDiscoveryengineV1betaPurgeDocumentsRequest
11147
+ body: GoogleCloudDiscoveryengineV1betaPurgeDocumentsRequest,
11024
11148
  ): Request<GoogleLongrunningOperation>;
11025
11149
  }
11026
11150
  interface OperationsResource {
@@ -11080,7 +11204,7 @@ declare namespace gapi.client {
11080
11204
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11081
11205
  uploadType?: string;
11082
11206
  },
11083
- body: GoogleLongrunningCancelOperationRequest
11207
+ body: GoogleLongrunningCancelOperationRequest,
11084
11208
  ): Request<{}>;
11085
11209
  /** 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. */
11086
11210
  get(request?: {
@@ -11235,7 +11359,7 @@ declare namespace gapi.client {
11235
11359
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11236
11360
  uploadType?: string;
11237
11361
  },
11238
- body: GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest
11362
+ body: GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryRequest,
11239
11363
  ): Request<GoogleCloudDiscoveryengineV1betaAdvancedCompleteQueryResponse>;
11240
11364
  }
11241
11365
  interface CompletionSuggestionsResource {
@@ -11295,7 +11419,7 @@ declare namespace gapi.client {
11295
11419
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11296
11420
  uploadType?: string;
11297
11421
  },
11298
- body: GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsRequest
11422
+ body: GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsRequest,
11299
11423
  ): Request<GoogleLongrunningOperation>;
11300
11424
  /** Permanently deletes all CompletionSuggestions for a DataStore. */
11301
11425
  purge(request: {
@@ -11353,7 +11477,7 @@ declare namespace gapi.client {
11353
11477
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11354
11478
  uploadType?: string;
11355
11479
  },
11356
- body: GoogleCloudDiscoveryengineV1betaPurgeCompletionSuggestionsRequest
11480
+ body: GoogleCloudDiscoveryengineV1betaPurgeCompletionSuggestionsRequest,
11357
11481
  ): Request<GoogleLongrunningOperation>;
11358
11482
  }
11359
11483
  interface ControlsResource {
@@ -11417,7 +11541,7 @@ declare namespace gapi.client {
11417
11541
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11418
11542
  uploadType?: string;
11419
11543
  },
11420
- body: GoogleCloudDiscoveryengineV1betaControl
11544
+ body: GoogleCloudDiscoveryengineV1betaControl,
11421
11545
  ): Request<GoogleCloudDiscoveryengineV1betaControl>;
11422
11546
  /** Deletes a Control. If the Control to delete does not exist, a NOT_FOUND error is returned. */
11423
11547
  delete(request?: {
@@ -11566,7 +11690,7 @@ declare namespace gapi.client {
11566
11690
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11567
11691
  uploadType?: string;
11568
11692
  },
11569
- body: GoogleCloudDiscoveryengineV1betaControl
11693
+ body: GoogleCloudDiscoveryengineV1betaControl,
11570
11694
  ): Request<GoogleCloudDiscoveryengineV1betaControl>;
11571
11695
  }
11572
11696
  interface ConversationsResource {
@@ -11626,7 +11750,7 @@ declare namespace gapi.client {
11626
11750
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11627
11751
  uploadType?: string;
11628
11752
  },
11629
- body: GoogleCloudDiscoveryengineV1betaConverseConversationRequest
11753
+ body: GoogleCloudDiscoveryengineV1betaConverseConversationRequest,
11630
11754
  ): Request<GoogleCloudDiscoveryengineV1betaConverseConversationResponse>;
11631
11755
  /** Creates a Conversation. If the Conversation to create already exists, an ALREADY_EXISTS error is returned. */
11632
11756
  create(request: {
@@ -11684,7 +11808,7 @@ declare namespace gapi.client {
11684
11808
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11685
11809
  uploadType?: string;
11686
11810
  },
11687
- body: GoogleCloudDiscoveryengineV1betaConversation
11811
+ body: GoogleCloudDiscoveryengineV1betaConversation,
11688
11812
  ): Request<GoogleCloudDiscoveryengineV1betaConversation>;
11689
11813
  /** Deletes a Conversation. If the Conversation to delete does not exist, a NOT_FOUND error is returned. */
11690
11814
  delete(request?: {
@@ -11835,7 +11959,7 @@ declare namespace gapi.client {
11835
11959
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11836
11960
  uploadType?: string;
11837
11961
  },
11838
- body: GoogleCloudDiscoveryengineV1betaConversation
11962
+ body: GoogleCloudDiscoveryengineV1betaConversation,
11839
11963
  ): Request<GoogleCloudDiscoveryengineV1betaConversation>;
11840
11964
  }
11841
11965
  interface OperationsResource {
@@ -12026,7 +12150,7 @@ declare namespace gapi.client {
12026
12150
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12027
12151
  uploadType?: string;
12028
12152
  },
12029
- body: GoogleCloudDiscoveryengineV1betaSchema
12153
+ body: GoogleCloudDiscoveryengineV1betaSchema,
12030
12154
  ): Request<GoogleLongrunningOperation>;
12031
12155
  /** Deletes a Schema. */
12032
12156
  delete(request?: {
@@ -12173,7 +12297,7 @@ declare namespace gapi.client {
12173
12297
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12174
12298
  uploadType?: string;
12175
12299
  },
12176
- body: GoogleCloudDiscoveryengineV1betaSchema
12300
+ body: GoogleCloudDiscoveryengineV1betaSchema,
12177
12301
  ): Request<GoogleLongrunningOperation>;
12178
12302
  }
12179
12303
  interface ServingConfigsResource {
@@ -12233,7 +12357,7 @@ declare namespace gapi.client {
12233
12357
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12234
12358
  uploadType?: string;
12235
12359
  },
12236
- body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest
12360
+ body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest,
12237
12361
  ): Request<GoogleCloudDiscoveryengineV1betaAnswerQueryResponse>;
12238
12362
  /** Gets a ServingConfig. Returns a NotFound error if the ServingConfig does not exist. */
12239
12363
  get(request?: {
@@ -12353,7 +12477,7 @@ declare namespace gapi.client {
12353
12477
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12354
12478
  uploadType?: string;
12355
12479
  },
12356
- body: GoogleCloudDiscoveryengineV1betaServingConfig
12480
+ body: GoogleCloudDiscoveryengineV1betaServingConfig,
12357
12481
  ): Request<GoogleCloudDiscoveryengineV1betaServingConfig>;
12358
12482
  /** Makes a recommendation, which requires a contextual user event. */
12359
12483
  recommend(request: {
@@ -12411,7 +12535,7 @@ declare namespace gapi.client {
12411
12535
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12412
12536
  uploadType?: string;
12413
12537
  },
12414
- body: GoogleCloudDiscoveryengineV1betaRecommendRequest
12538
+ body: GoogleCloudDiscoveryengineV1betaRecommendRequest,
12415
12539
  ): Request<GoogleCloudDiscoveryengineV1betaRecommendResponse>;
12416
12540
  /** Performs a search. */
12417
12541
  search(request: {
@@ -12469,7 +12593,7 @@ declare namespace gapi.client {
12469
12593
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12470
12594
  uploadType?: string;
12471
12595
  },
12472
- body: GoogleCloudDiscoveryengineV1betaSearchRequest
12596
+ body: GoogleCloudDiscoveryengineV1betaSearchRequest,
12473
12597
  ): Request<GoogleCloudDiscoveryengineV1betaSearchResponse>;
12474
12598
  /** Performs a search. Similar to the SearchService.Search method, but a lite version that allows API key for authentication, where OAuth and IAM checks are not required. Only public website search is supported by this method. If data stores and engines not associated with public website search are specified, a `FAILED_PRECONDITION` error is returned. This method can be used for easy onboarding without having to implement an authentication backend. However, it is strongly recommended to use SearchService.Search instead with required OAuth and IAM checks to provide better data security. */
12475
12599
  searchLite(request: {
@@ -12527,7 +12651,7 @@ declare namespace gapi.client {
12527
12651
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12528
12652
  uploadType?: string;
12529
12653
  },
12530
- body: GoogleCloudDiscoveryengineV1betaSearchRequest
12654
+ body: GoogleCloudDiscoveryengineV1betaSearchRequest,
12531
12655
  ): Request<GoogleCloudDiscoveryengineV1betaSearchResponse>;
12532
12656
  /** Answer query method (streaming). It takes one AnswerQueryRequest and returns multiple AnswerQueryResponse messages in a stream. */
12533
12657
  streamAnswer(request: {
@@ -12585,7 +12709,7 @@ declare namespace gapi.client {
12585
12709
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12586
12710
  uploadType?: string;
12587
12711
  },
12588
- body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest
12712
+ body: GoogleCloudDiscoveryengineV1betaAnswerQueryRequest,
12589
12713
  ): Request<GoogleCloudDiscoveryengineV1betaAnswerQueryResponse>;
12590
12714
  }
12591
12715
  interface AnswersResource {
@@ -12674,7 +12798,7 @@ declare namespace gapi.client {
12674
12798
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12675
12799
  uploadType?: string;
12676
12800
  },
12677
- body: GoogleCloudDiscoveryengineV1betaSession
12801
+ body: GoogleCloudDiscoveryengineV1betaSession,
12678
12802
  ): Request<GoogleCloudDiscoveryengineV1betaSession>;
12679
12803
  /** Deletes a Session. If the Session to delete does not exist, a NOT_FOUND error is returned. */
12680
12804
  delete(request?: {
@@ -12827,7 +12951,7 @@ declare namespace gapi.client {
12827
12951
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12828
12952
  uploadType?: string;
12829
12953
  },
12830
- body: GoogleCloudDiscoveryengineV1betaSession
12954
+ body: GoogleCloudDiscoveryengineV1betaSession,
12831
12955
  ): Request<GoogleCloudDiscoveryengineV1betaSession>;
12832
12956
  answers: AnswersResource;
12833
12957
  }
@@ -12888,7 +13012,7 @@ declare namespace gapi.client {
12888
13012
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12889
13013
  uploadType?: string;
12890
13014
  },
12891
- body: GoogleCloudDiscoveryengineV1betaSitemap
13015
+ body: GoogleCloudDiscoveryengineV1betaSitemap,
12892
13016
  ): Request<GoogleLongrunningOperation>;
12893
13017
  /** Deletes a Sitemap. */
12894
13018
  delete(request?: {
@@ -13004,7 +13128,7 @@ declare namespace gapi.client {
13004
13128
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13005
13129
  uploadType?: string;
13006
13130
  },
13007
- body: GoogleCloudDiscoveryengineV1betaBatchCreateTargetSitesRequest
13131
+ body: GoogleCloudDiscoveryengineV1betaBatchCreateTargetSitesRequest,
13008
13132
  ): Request<GoogleLongrunningOperation>;
13009
13133
  /** Creates a TargetSite. */
13010
13134
  create(request: {
@@ -13062,7 +13186,7 @@ declare namespace gapi.client {
13062
13186
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13063
13187
  uploadType?: string;
13064
13188
  },
13065
- body: GoogleCloudDiscoveryengineV1betaTargetSite
13189
+ body: GoogleCloudDiscoveryengineV1betaTargetSite,
13066
13190
  ): Request<GoogleLongrunningOperation>;
13067
13191
  /** Deletes a TargetSite. */
13068
13192
  delete(request?: {
@@ -13205,7 +13329,7 @@ declare namespace gapi.client {
13205
13329
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13206
13330
  uploadType?: string;
13207
13331
  },
13208
- body: GoogleCloudDiscoveryengineV1betaTargetSite
13332
+ body: GoogleCloudDiscoveryengineV1betaTargetSite,
13209
13333
  ): Request<GoogleLongrunningOperation>;
13210
13334
  }
13211
13335
  interface SiteSearchEngineResource {
@@ -13265,7 +13389,7 @@ declare namespace gapi.client {
13265
13389
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13266
13390
  uploadType?: string;
13267
13391
  },
13268
- body: GoogleCloudDiscoveryengineV1betaDisableAdvancedSiteSearchRequest
13392
+ body: GoogleCloudDiscoveryengineV1betaDisableAdvancedSiteSearchRequest,
13269
13393
  ): Request<GoogleLongrunningOperation>;
13270
13394
  /** Upgrade from basic site search to advanced site search. */
13271
13395
  enableAdvancedSiteSearch(request: {
@@ -13323,7 +13447,7 @@ declare namespace gapi.client {
13323
13447
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13324
13448
  uploadType?: string;
13325
13449
  },
13326
- body: GoogleCloudDiscoveryengineV1betaEnableAdvancedSiteSearchRequest
13450
+ body: GoogleCloudDiscoveryengineV1betaEnableAdvancedSiteSearchRequest,
13327
13451
  ): Request<GoogleLongrunningOperation>;
13328
13452
  /** Request on-demand recrawl for a list of URIs. */
13329
13453
  recrawlUris(request: {
@@ -13381,7 +13505,7 @@ declare namespace gapi.client {
13381
13505
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13382
13506
  uploadType?: string;
13383
13507
  },
13384
- body: GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest
13508
+ body: GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest,
13385
13509
  ): Request<GoogleLongrunningOperation>;
13386
13510
  sitemaps: SitemapsResource;
13387
13511
  targetSites: TargetSitesResource;
@@ -13443,7 +13567,7 @@ declare namespace gapi.client {
13443
13567
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13444
13568
  uploadType?: string;
13445
13569
  },
13446
- body: GoogleCloudDiscoveryengineV1betaImportSuggestionDenyListEntriesRequest
13570
+ body: GoogleCloudDiscoveryengineV1betaImportSuggestionDenyListEntriesRequest,
13447
13571
  ): Request<GoogleLongrunningOperation>;
13448
13572
  /** Permanently deletes all SuggestionDenyListEntry for a DataStore. */
13449
13573
  purge(request: {
@@ -13501,7 +13625,7 @@ declare namespace gapi.client {
13501
13625
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13502
13626
  uploadType?: string;
13503
13627
  },
13504
- body: GoogleCloudDiscoveryengineV1betaPurgeSuggestionDenyListEntriesRequest
13628
+ body: GoogleCloudDiscoveryengineV1betaPurgeSuggestionDenyListEntriesRequest,
13505
13629
  ): Request<GoogleLongrunningOperation>;
13506
13630
  }
13507
13631
  interface UserEventsResource {
@@ -13594,7 +13718,7 @@ declare namespace gapi.client {
13594
13718
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13595
13719
  uploadType?: string;
13596
13720
  },
13597
- body: GoogleCloudDiscoveryengineV1betaImportUserEventsRequest
13721
+ body: GoogleCloudDiscoveryengineV1betaImportUserEventsRequest,
13598
13722
  ): Request<GoogleLongrunningOperation>;
13599
13723
  /** Deletes permanently all user events specified by the filter provided. Depending on the number of events specified by the filter, this operation could take hours or days to complete. To test a filter, use the list command first. */
13600
13724
  purge(request: {
@@ -13652,7 +13776,7 @@ declare namespace gapi.client {
13652
13776
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13653
13777
  uploadType?: string;
13654
13778
  },
13655
- body: GoogleCloudDiscoveryengineV1betaPurgeUserEventsRequest
13779
+ body: GoogleCloudDiscoveryengineV1betaPurgeUserEventsRequest,
13656
13780
  ): Request<GoogleLongrunningOperation>;
13657
13781
  /** Writes a single user event. */
13658
13782
  write(request: {
@@ -13714,7 +13838,7 @@ declare namespace gapi.client {
13714
13838
  /** If set to true, the user event is written asynchronously after validation, and the API responds without waiting for the write. */
13715
13839
  writeAsync?: boolean;
13716
13840
  },
13717
- body: GoogleCloudDiscoveryengineV1betaUserEvent
13841
+ body: GoogleCloudDiscoveryengineV1betaUserEvent,
13718
13842
  ): Request<GoogleCloudDiscoveryengineV1betaUserEvent>;
13719
13843
  }
13720
13844
  interface DataStoresResource {
@@ -13829,7 +13953,7 @@ declare namespace gapi.client {
13829
13953
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13830
13954
  uploadType?: string;
13831
13955
  },
13832
- body: GoogleCloudDiscoveryengineV1betaDataStore
13956
+ body: GoogleCloudDiscoveryengineV1betaDataStore,
13833
13957
  ): Request<GoogleLongrunningOperation>;
13834
13958
  /** Deletes a DataStore. */
13835
13959
  delete(request?: {
@@ -14005,7 +14129,7 @@ declare namespace gapi.client {
14005
14129
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14006
14130
  uploadType?: string;
14007
14131
  },
14008
- body: GoogleCloudDiscoveryengineV1betaDataStore
14132
+ body: GoogleCloudDiscoveryengineV1betaDataStore,
14009
14133
  ): Request<GoogleCloudDiscoveryengineV1betaDataStore>;
14010
14134
  branches: BranchesResource;
14011
14135
  completionConfig: CompletionConfigResource;
@@ -14107,7 +14231,7 @@ declare namespace gapi.client {
14107
14231
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14108
14232
  uploadType?: string;
14109
14233
  },
14110
- body: GoogleCloudDiscoveryengineV1betaEvaluation
14234
+ body: GoogleCloudDiscoveryengineV1betaEvaluation,
14111
14235
  ): Request<GoogleLongrunningOperation>;
14112
14236
  /** Gets a Evaluation. */
14113
14237
  get(request?: {
@@ -14257,7 +14381,7 @@ declare namespace gapi.client {
14257
14381
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14258
14382
  uploadType?: string;
14259
14383
  },
14260
- body: GoogleCloudDiscoveryengineV1betaCheckGroundingRequest
14384
+ body: GoogleCloudDiscoveryengineV1betaCheckGroundingRequest,
14261
14385
  ): Request<GoogleCloudDiscoveryengineV1betaCheckGroundingResponse>;
14262
14386
  }
14263
14387
  interface OperationsResource {
@@ -14323,6 +14447,308 @@ declare namespace gapi.client {
14323
14447
  }): Request<GoogleLongrunningListOperationsResponse>;
14324
14448
  }
14325
14449
  interface IdentityMappingStoresResource {
14450
+ /** Creates a new Identity Mapping Store. */
14451
+ create(request: {
14452
+ /** V1 error format. */
14453
+ '$.xgafv'?: string;
14454
+ /** OAuth access token. */
14455
+ access_token?: string;
14456
+ /** Data format for response. */
14457
+ alt?: string;
14458
+ /** JSONP */
14459
+ callback?: string;
14460
+ /** Resource name of the CmekConfig to use for protecting this Identity Mapping Store. */
14461
+ cmekConfigName?: string;
14462
+ /** Identity Mapping Store without CMEK protections. If a default CmekConfig is set for the project, setting this field will override the default CmekConfig as well. */
14463
+ disableCmek?: boolean;
14464
+ /** Selector specifying which fields to include in a partial response. */
14465
+ fields?: string;
14466
+ /** Required. The ID of the Identity Mapping Store to create. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 63 characters. */
14467
+ identityMappingStoreId?: string;
14468
+ /** 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. */
14469
+ key?: string;
14470
+ /** OAuth 2.0 token for the current user. */
14471
+ oauth_token?: string;
14472
+ /** Required. The parent collection resource name, such as `projects/{project}/locations/{location}`. */
14473
+ parent: string;
14474
+ /** Returns response with indentations and line breaks. */
14475
+ prettyPrint?: boolean;
14476
+ /** 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. */
14477
+ quotaUser?: string;
14478
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14479
+ upload_protocol?: string;
14480
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14481
+ uploadType?: string;
14482
+ /** Request body */
14483
+ resource: GoogleCloudDiscoveryengineV1betaIdentityMappingStore;
14484
+ }): Request<GoogleCloudDiscoveryengineV1betaIdentityMappingStore>;
14485
+ create(
14486
+ request: {
14487
+ /** V1 error format. */
14488
+ '$.xgafv'?: string;
14489
+ /** OAuth access token. */
14490
+ access_token?: string;
14491
+ /** Data format for response. */
14492
+ alt?: string;
14493
+ /** JSONP */
14494
+ callback?: string;
14495
+ /** Resource name of the CmekConfig to use for protecting this Identity Mapping Store. */
14496
+ cmekConfigName?: string;
14497
+ /** Identity Mapping Store without CMEK protections. If a default CmekConfig is set for the project, setting this field will override the default CmekConfig as well. */
14498
+ disableCmek?: boolean;
14499
+ /** Selector specifying which fields to include in a partial response. */
14500
+ fields?: string;
14501
+ /** Required. The ID of the Identity Mapping Store to create. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 63 characters. */
14502
+ identityMappingStoreId?: string;
14503
+ /** 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. */
14504
+ key?: string;
14505
+ /** OAuth 2.0 token for the current user. */
14506
+ oauth_token?: string;
14507
+ /** Required. The parent collection resource name, such as `projects/{project}/locations/{location}`. */
14508
+ parent: string;
14509
+ /** Returns response with indentations and line breaks. */
14510
+ prettyPrint?: boolean;
14511
+ /** 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. */
14512
+ quotaUser?: string;
14513
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14514
+ upload_protocol?: string;
14515
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14516
+ uploadType?: string;
14517
+ },
14518
+ body: GoogleCloudDiscoveryengineV1betaIdentityMappingStore,
14519
+ ): Request<GoogleCloudDiscoveryengineV1betaIdentityMappingStore>;
14520
+ /** Deletes the Identity Mapping Store. */
14521
+ delete(request?: {
14522
+ /** V1 error format. */
14523
+ '$.xgafv'?: string;
14524
+ /** OAuth access token. */
14525
+ access_token?: string;
14526
+ /** Data format for response. */
14527
+ alt?: string;
14528
+ /** JSONP */
14529
+ callback?: string;
14530
+ /** Selector specifying which fields to include in a partial response. */
14531
+ fields?: string;
14532
+ /** 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. */
14533
+ key?: string;
14534
+ /** Required. The name of the Identity Mapping Store to delete. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
14535
+ name: string;
14536
+ /** OAuth 2.0 token for the current user. */
14537
+ oauth_token?: string;
14538
+ /** Returns response with indentations and line breaks. */
14539
+ prettyPrint?: boolean;
14540
+ /** 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. */
14541
+ quotaUser?: string;
14542
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14543
+ upload_protocol?: string;
14544
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14545
+ uploadType?: string;
14546
+ }): Request<GoogleLongrunningOperation>;
14547
+ /** Gets the Identity Mapping Store. */
14548
+ get(request?: {
14549
+ /** V1 error format. */
14550
+ '$.xgafv'?: string;
14551
+ /** OAuth access token. */
14552
+ access_token?: string;
14553
+ /** Data format for response. */
14554
+ alt?: string;
14555
+ /** JSONP */
14556
+ callback?: string;
14557
+ /** Selector specifying which fields to include in a partial response. */
14558
+ fields?: string;
14559
+ /** 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. */
14560
+ key?: string;
14561
+ /** Required. The name of the Identity Mapping Store to get. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
14562
+ name: string;
14563
+ /** OAuth 2.0 token for the current user. */
14564
+ oauth_token?: string;
14565
+ /** Returns response with indentations and line breaks. */
14566
+ prettyPrint?: boolean;
14567
+ /** 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. */
14568
+ quotaUser?: string;
14569
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14570
+ upload_protocol?: string;
14571
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14572
+ uploadType?: string;
14573
+ }): Request<GoogleCloudDiscoveryengineV1betaIdentityMappingStore>;
14574
+ /** Imports a list of Identity Mapping Entries to an Identity Mapping Store. */
14575
+ importIdentityMappings(request: {
14576
+ /** V1 error format. */
14577
+ '$.xgafv'?: string;
14578
+ /** OAuth access token. */
14579
+ access_token?: string;
14580
+ /** Data format for response. */
14581
+ alt?: string;
14582
+ /** JSONP */
14583
+ callback?: string;
14584
+ /** Selector specifying which fields to include in a partial response. */
14585
+ fields?: string;
14586
+ /** Required. The name of the Identity Mapping Store to import Identity Mapping Entries to. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
14587
+ identityMappingStore: string;
14588
+ /** 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. */
14589
+ key?: string;
14590
+ /** OAuth 2.0 token for the current user. */
14591
+ oauth_token?: string;
14592
+ /** Returns response with indentations and line breaks. */
14593
+ prettyPrint?: boolean;
14594
+ /** 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. */
14595
+ quotaUser?: string;
14596
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14597
+ upload_protocol?: string;
14598
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14599
+ uploadType?: string;
14600
+ /** Request body */
14601
+ resource: GoogleCloudDiscoveryengineV1betaImportIdentityMappingsRequest;
14602
+ }): Request<GoogleLongrunningOperation>;
14603
+ importIdentityMappings(
14604
+ request: {
14605
+ /** V1 error format. */
14606
+ '$.xgafv'?: string;
14607
+ /** OAuth access token. */
14608
+ access_token?: string;
14609
+ /** Data format for response. */
14610
+ alt?: string;
14611
+ /** JSONP */
14612
+ callback?: string;
14613
+ /** Selector specifying which fields to include in a partial response. */
14614
+ fields?: string;
14615
+ /** Required. The name of the Identity Mapping Store to import Identity Mapping Entries to. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
14616
+ identityMappingStore: string;
14617
+ /** 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. */
14618
+ key?: string;
14619
+ /** OAuth 2.0 token for the current user. */
14620
+ oauth_token?: string;
14621
+ /** Returns response with indentations and line breaks. */
14622
+ prettyPrint?: boolean;
14623
+ /** 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. */
14624
+ quotaUser?: string;
14625
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14626
+ upload_protocol?: string;
14627
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14628
+ uploadType?: string;
14629
+ },
14630
+ body: GoogleCloudDiscoveryengineV1betaImportIdentityMappingsRequest,
14631
+ ): Request<GoogleLongrunningOperation>;
14632
+ /** Lists all Identity Mapping Stores. */
14633
+ list(request?: {
14634
+ /** V1 error format. */
14635
+ '$.xgafv'?: string;
14636
+ /** OAuth access token. */
14637
+ access_token?: string;
14638
+ /** Data format for response. */
14639
+ alt?: string;
14640
+ /** JSONP */
14641
+ callback?: string;
14642
+ /** Selector specifying which fields to include in a partial response. */
14643
+ fields?: string;
14644
+ /** 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. */
14645
+ key?: string;
14646
+ /** OAuth 2.0 token for the current user. */
14647
+ oauth_token?: string;
14648
+ /** Maximum number of IdentityMappingStores to return. If unspecified, defaults to 100. The maximum allowed value is 1000. Values above 1000 will be coerced to 1000. */
14649
+ pageSize?: number;
14650
+ /** A page token, received from a previous `ListIdentityMappingStores` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListIdentityMappingStores` must match the call that provided the page token. */
14651
+ pageToken?: string;
14652
+ /** Required. The parent of the Identity Mapping Stores to list. Format: `projects/{project}/locations/{location}`. */
14653
+ parent: string;
14654
+ /** Returns response with indentations and line breaks. */
14655
+ prettyPrint?: boolean;
14656
+ /** 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. */
14657
+ quotaUser?: string;
14658
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14659
+ upload_protocol?: string;
14660
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14661
+ uploadType?: string;
14662
+ }): Request<GoogleCloudDiscoveryengineV1betaListIdentityMappingStoresResponse>;
14663
+ /** Lists Identity Mappings in an Identity Mapping Store. */
14664
+ listIdentityMappings(request?: {
14665
+ /** V1 error format. */
14666
+ '$.xgafv'?: string;
14667
+ /** OAuth access token. */
14668
+ access_token?: string;
14669
+ /** Data format for response. */
14670
+ alt?: string;
14671
+ /** JSONP */
14672
+ callback?: string;
14673
+ /** Selector specifying which fields to include in a partial response. */
14674
+ fields?: string;
14675
+ /** Required. The name of the Identity Mapping Store to list Identity Mapping Entries in. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
14676
+ identityMappingStore: string;
14677
+ /** 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. */
14678
+ key?: string;
14679
+ /** OAuth 2.0 token for the current user. */
14680
+ oauth_token?: string;
14681
+ /** Maximum number of IdentityMappings to return. If unspecified, defaults to 2000. The maximum allowed value is 10000. Values above 10000 will be coerced to 10000. */
14682
+ pageSize?: number;
14683
+ /** A page token, received from a previous `ListIdentityMappings` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListIdentityMappings` must match the call that provided the page token. */
14684
+ pageToken?: string;
14685
+ /** Returns response with indentations and line breaks. */
14686
+ prettyPrint?: boolean;
14687
+ /** 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. */
14688
+ quotaUser?: string;
14689
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14690
+ upload_protocol?: string;
14691
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14692
+ uploadType?: string;
14693
+ }): Request<GoogleCloudDiscoveryengineV1betaListIdentityMappingsResponse>;
14694
+ /** Purges specified or all Identity Mapping Entries from an Identity Mapping Store. */
14695
+ purgeIdentityMappings(request: {
14696
+ /** V1 error format. */
14697
+ '$.xgafv'?: string;
14698
+ /** OAuth access token. */
14699
+ access_token?: string;
14700
+ /** Data format for response. */
14701
+ alt?: string;
14702
+ /** JSONP */
14703
+ callback?: string;
14704
+ /** Selector specifying which fields to include in a partial response. */
14705
+ fields?: string;
14706
+ /** Required. The name of the Identity Mapping Store to purge Identity Mapping Entries from. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
14707
+ identityMappingStore: string;
14708
+ /** 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. */
14709
+ key?: string;
14710
+ /** OAuth 2.0 token for the current user. */
14711
+ oauth_token?: string;
14712
+ /** Returns response with indentations and line breaks. */
14713
+ prettyPrint?: boolean;
14714
+ /** 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. */
14715
+ quotaUser?: string;
14716
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14717
+ upload_protocol?: string;
14718
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14719
+ uploadType?: string;
14720
+ /** Request body */
14721
+ resource: GoogleCloudDiscoveryengineV1betaPurgeIdentityMappingsRequest;
14722
+ }): Request<GoogleLongrunningOperation>;
14723
+ purgeIdentityMappings(
14724
+ request: {
14725
+ /** V1 error format. */
14726
+ '$.xgafv'?: string;
14727
+ /** OAuth access token. */
14728
+ access_token?: string;
14729
+ /** Data format for response. */
14730
+ alt?: string;
14731
+ /** JSONP */
14732
+ callback?: string;
14733
+ /** Selector specifying which fields to include in a partial response. */
14734
+ fields?: string;
14735
+ /** Required. The name of the Identity Mapping Store to purge Identity Mapping Entries from. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
14736
+ identityMappingStore: string;
14737
+ /** 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. */
14738
+ key?: string;
14739
+ /** OAuth 2.0 token for the current user. */
14740
+ oauth_token?: string;
14741
+ /** Returns response with indentations and line breaks. */
14742
+ prettyPrint?: boolean;
14743
+ /** 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. */
14744
+ quotaUser?: string;
14745
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14746
+ upload_protocol?: string;
14747
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14748
+ uploadType?: string;
14749
+ },
14750
+ body: GoogleCloudDiscoveryengineV1betaPurgeIdentityMappingsRequest,
14751
+ ): Request<GoogleLongrunningOperation>;
14326
14752
  operations: OperationsResource;
14327
14753
  }
14328
14754
  interface OperationsResource {
@@ -14444,7 +14870,7 @@ declare namespace gapi.client {
14444
14870
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14445
14871
  uploadType?: string;
14446
14872
  },
14447
- body: GoogleCloudDiscoveryengineV1betaRankRequest
14873
+ body: GoogleCloudDiscoveryengineV1betaRankRequest,
14448
14874
  ): Request<GoogleCloudDiscoveryengineV1betaRankResponse>;
14449
14875
  }
14450
14876
  interface OperationsResource {
@@ -14537,7 +14963,7 @@ declare namespace gapi.client {
14537
14963
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14538
14964
  uploadType?: string;
14539
14965
  },
14540
- body: GoogleCloudDiscoveryengineV1betaSampleQuery
14966
+ body: GoogleCloudDiscoveryengineV1betaSampleQuery,
14541
14967
  ): Request<GoogleCloudDiscoveryengineV1betaSampleQuery>;
14542
14968
  /** Deletes a SampleQuery. */
14543
14969
  delete(request?: {
@@ -14649,7 +15075,7 @@ declare namespace gapi.client {
14649
15075
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14650
15076
  uploadType?: string;
14651
15077
  },
14652
- body: GoogleCloudDiscoveryengineV1betaImportSampleQueriesRequest
15078
+ body: GoogleCloudDiscoveryengineV1betaImportSampleQueriesRequest,
14653
15079
  ): Request<GoogleLongrunningOperation>;
14654
15080
  /** Gets a list of SampleQuerys. */
14655
15081
  list(request?: {
@@ -14742,7 +15168,7 @@ declare namespace gapi.client {
14742
15168
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14743
15169
  uploadType?: string;
14744
15170
  },
14745
- body: GoogleCloudDiscoveryengineV1betaSampleQuery
15171
+ body: GoogleCloudDiscoveryengineV1betaSampleQuery,
14746
15172
  ): Request<GoogleCloudDiscoveryengineV1betaSampleQuery>;
14747
15173
  }
14748
15174
  interface SampleQuerySetsResource {
@@ -14806,7 +15232,7 @@ declare namespace gapi.client {
14806
15232
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14807
15233
  uploadType?: string;
14808
15234
  },
14809
- body: GoogleCloudDiscoveryengineV1betaSampleQuerySet
15235
+ body: GoogleCloudDiscoveryengineV1betaSampleQuerySet,
14810
15236
  ): Request<GoogleCloudDiscoveryengineV1betaSampleQuerySet>;
14811
15237
  /** Deletes a SampleQuerySet. */
14812
15238
  delete(request?: {
@@ -14953,7 +15379,7 @@ declare namespace gapi.client {
14953
15379
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14954
15380
  uploadType?: string;
14955
15381
  },
14956
- body: GoogleCloudDiscoveryengineV1betaSampleQuerySet
15382
+ body: GoogleCloudDiscoveryengineV1betaSampleQuerySet,
14957
15383
  ): Request<GoogleCloudDiscoveryengineV1betaSampleQuerySet>;
14958
15384
  operations: OperationsResource;
14959
15385
  sampleQueries: SampleQueriesResource;
@@ -15048,7 +15474,7 @@ declare namespace gapi.client {
15048
15474
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15049
15475
  uploadType?: string;
15050
15476
  },
15051
- body: GoogleCloudDiscoveryengineV1betaImportUserEventsRequest
15477
+ body: GoogleCloudDiscoveryengineV1betaImportUserEventsRequest,
15052
15478
  ): Request<GoogleLongrunningOperation>;
15053
15479
  /** Writes a single user event. */
15054
15480
  write(request: {
@@ -15110,7 +15536,7 @@ declare namespace gapi.client {
15110
15536
  /** If set to true, the user event is written asynchronously after validation, and the API responds without waiting for the write. */
15111
15537
  writeAsync?: boolean;
15112
15538
  },
15113
- body: GoogleCloudDiscoveryengineV1betaUserEvent
15539
+ body: GoogleCloudDiscoveryengineV1betaUserEvent,
15114
15540
  ): Request<GoogleCloudDiscoveryengineV1betaUserEvent>;
15115
15541
  }
15116
15542
  interface LocationsResource {
@@ -15170,7 +15596,7 @@ declare namespace gapi.client {
15170
15596
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15171
15597
  uploadType?: string;
15172
15598
  },
15173
- body: GoogleCloudDiscoveryengineV1betaGenerateGroundedContentRequest
15599
+ body: GoogleCloudDiscoveryengineV1betaGenerateGroundedContentRequest,
15174
15600
  ): Request<GoogleCloudDiscoveryengineV1betaGenerateGroundedContentResponse>;
15175
15601
  collections: CollectionsResource;
15176
15602
  dataStores: DataStoresResource;
@@ -15301,7 +15727,7 @@ declare namespace gapi.client {
15301
15727
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15302
15728
  uploadType?: string;
15303
15729
  },
15304
- body: GoogleCloudDiscoveryengineV1betaProvisionProjectRequest
15730
+ body: GoogleCloudDiscoveryengineV1betaProvisionProjectRequest,
15305
15731
  ): Request<GoogleLongrunningOperation>;
15306
15732
  locations: LocationsResource;
15307
15733
  operations: OperationsResource;