@maxim_mazurok/gapi.client.discoveryengine-v1alpha 0.0.20250121 → 0.0.20250125

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 (2) hide show
  1. package/index.d.ts +419 -3
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://discoveryengine.googleapis.com/$discovery/rest?version=v1alpha
12
- // Revision: 20250121
12
+ // Revision: 20250125
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1237,6 +1237,8 @@ declare namespace gapi.client {
1237
1237
  displayName?: string;
1238
1238
  /** Configuration for Document understanding and enrichment. */
1239
1239
  documentProcessingConfig?: GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig;
1240
+ /** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
1241
+ healthcareFhirConfig?: GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig;
1240
1242
  /** Output only. Data store level identity provider config. */
1241
1243
  idpConfig?: GoogleCloudDiscoveryengineV1alphaIdpConfig;
1242
1244
  /** Immutable. The industry vertical that the data store registers. */
@@ -1865,6 +1867,38 @@ declare namespace gapi.client {
1865
1867
  /** Max number of related questions to be returned. The valid range is [1, 5]. If enable_related_questions is true, the default value is 3. */
1866
1868
  maxRelatedQuestions?: number;
1867
1869
  }
1870
+ interface GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig {
1871
+ /** 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. */
1872
+ enableConfigurableSchema?: boolean;
1873
+ /** 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. */
1874
+ enableStaticIndexingForBatchIngestion?: boolean;
1875
+ }
1876
+ interface GoogleCloudDiscoveryengineV1alphaIdentityMappingEntry {
1877
+ /** Required. Identity outside the customer identity provider. The length limit of external identity will be of 100 characters. */
1878
+ externalIdentity?: string;
1879
+ /** 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. */
1880
+ groupId?: string;
1881
+ /** 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. */
1882
+ userId?: string;
1883
+ }
1884
+ interface GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata {
1885
+ /** The number of IdentityMappingEntries that failed to be processed. */
1886
+ failureCount?: string;
1887
+ /** The number of IdentityMappingEntries that were successfully processed. */
1888
+ successCount?: string;
1889
+ /** The total number of IdentityMappingEntries that were processed. */
1890
+ totalCount?: string;
1891
+ }
1892
+ interface GoogleCloudDiscoveryengineV1alphaIdentityMappingStore {
1893
+ /** Output only. CMEK-related information for the Identity Mapping Store. */
1894
+ cmekConfig?: GoogleCloudDiscoveryengineV1alphaCmekConfig;
1895
+ /** Output only. The identity provider configuration this is bound to translate the identity mapping entries within. */
1896
+ idpConfig?: GoogleCloudDiscoveryengineV1alphaIdpConfig;
1897
+ /** 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. */
1898
+ kmsKeyName?: string;
1899
+ /** 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. */
1900
+ name?: string;
1901
+ }
1868
1902
  interface GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig {
1869
1903
  /** 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. */
1870
1904
  nextSyncTime?: GoogleTypeDateTime;
@@ -1969,6 +2003,18 @@ declare namespace gapi.client {
1969
2003
  /** 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. */
1970
2004
  gcsPrefix?: string;
1971
2005
  }
2006
+ interface GoogleCloudDiscoveryengineV1alphaImportIdentityMappingsRequest {
2007
+ /** The inline source to import identity mapping entries from. */
2008
+ inlineSource?: GoogleCloudDiscoveryengineV1alphaImportIdentityMappingsRequestInlineSource;
2009
+ }
2010
+ interface GoogleCloudDiscoveryengineV1alphaImportIdentityMappingsRequestInlineSource {
2011
+ /** A maximum of 10000 entries can be imported at one time */
2012
+ identityMappingEntries?: GoogleCloudDiscoveryengineV1alphaIdentityMappingEntry[];
2013
+ }
2014
+ interface GoogleCloudDiscoveryengineV1alphaImportIdentityMappingsResponse {
2015
+ /** A sample of errors encountered while processing the request. */
2016
+ errorSamples?: GoogleRpcStatus[];
2017
+ }
1972
2018
  interface GoogleCloudDiscoveryengineV1alphaImportSampleQueriesMetadata {
1973
2019
  /** ImportSampleQueries operation create time. */
1974
2020
  createTime?: string;
@@ -2153,6 +2199,18 @@ declare namespace gapi.client {
2153
2199
  /** 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. */
2154
2200
  nextPageToken?: string;
2155
2201
  }
2202
+ interface GoogleCloudDiscoveryengineV1alphaListIdentityMappingsResponse {
2203
+ /** The Identity Mapping Entries. */
2204
+ identityMappingEntries?: GoogleCloudDiscoveryengineV1alphaIdentityMappingEntry[];
2205
+ /** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
2206
+ nextPageToken?: string;
2207
+ }
2208
+ interface GoogleCloudDiscoveryengineV1alphaListIdentityMappingStoresResponse {
2209
+ /** The Identity Mapping Stores. */
2210
+ identityMappingStores?: GoogleCloudDiscoveryengineV1alphaIdentityMappingStore[];
2211
+ /** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
2212
+ nextPageToken?: string;
2213
+ }
2156
2214
  interface GoogleCloudDiscoveryengineV1alphaListSampleQueriesResponse {
2157
2215
  /** 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. */
2158
2216
  nextPageToken?: string;
@@ -2350,6 +2408,18 @@ declare namespace gapi.client {
2350
2408
  /** 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. */
2351
2409
  gcsPrefix?: string;
2352
2410
  }
2411
+ interface GoogleCloudDiscoveryengineV1alphaPurgeIdentityMappingsRequest {
2412
+ /** 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. */
2413
+ filter?: string;
2414
+ /** 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. */
2415
+ force?: boolean;
2416
+ /** The inline source to purge identity mapping entries from. */
2417
+ inlineSource?: GoogleCloudDiscoveryengineV1alphaPurgeIdentityMappingsRequestInlineSource;
2418
+ }
2419
+ interface GoogleCloudDiscoveryengineV1alphaPurgeIdentityMappingsRequestInlineSource {
2420
+ /** A maximum of 10000 entries can be purged at one time */
2421
+ identityMappingEntries?: GoogleCloudDiscoveryengineV1alphaIdentityMappingEntry[];
2422
+ }
2353
2423
  interface GoogleCloudDiscoveryengineV1alphaPurgeSuggestionDenyListEntriesMetadata {
2354
2424
  /** Operation create time. */
2355
2425
  createTime?: string;
@@ -2478,6 +2548,10 @@ declare namespace gapi.client {
2478
2548
  invalidUris?: string[];
2479
2549
  /** Total number of unique URIs in the request that have invalid format. */
2480
2550
  invalidUrisCount?: number;
2551
+ /** URIs that have no index meta tag. Sample limited to 1000. */
2552
+ noindexUris?: string[];
2553
+ /** Total number of URIs that have no index meta tag. */
2554
+ noindexUrisCount?: number;
2481
2555
  /** Total number of URIs that have yet to be crawled. */
2482
2556
  pendingCount?: number;
2483
2557
  /** Total number of URIs that were rejected due to insufficient indexing resources. */
@@ -2749,7 +2823,7 @@ declare namespace gapi.client {
2749
2823
  sessionSpec?: GoogleCloudDiscoveryengineV1alphaSearchRequestSessionSpec;
2750
2824
  /** The spell correction specification that specifies the mode under which spell correction takes effect. */
2751
2825
  spellCorrectionSpec?: GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec;
2752
- /** Information about the end user. Highly recommended for analytics. UserInfo.user_agent is used to deduce `device_type` for analytics. */
2826
+ /** Information about the end user. Highly recommended for analytics and personalization. UserInfo.user_agent is used to deduce `device_type` for analytics. */
2753
2827
  userInfo?: GoogleCloudDiscoveryengineV1alphaUserInfo;
2754
2828
  /** 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. */
2755
2829
  userLabels?: {[P in string]: string};
@@ -3693,6 +3767,8 @@ declare namespace gapi.client {
3693
3767
  displayName?: string;
3694
3768
  /** Configuration for Document understanding and enrichment. */
3695
3769
  documentProcessingConfig?: GoogleCloudDiscoveryengineV1betaDocumentProcessingConfig;
3770
+ /** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
3771
+ healthcareFhirConfig?: GoogleCloudDiscoveryengineV1betaHealthcareFhirConfig;
3696
3772
  /** Immutable. The industry vertical that the data store registers. */
3697
3773
  industryVertical?: string;
3698
3774
  /** Optional. If set, this DataStore is an Infobot FAQ DataStore. */
@@ -3912,6 +3988,20 @@ declare namespace gapi.client {
3912
3988
  /** The Sitemap. */
3913
3989
  sitemap?: GoogleCloudDiscoveryengineV1betaSitemap;
3914
3990
  }
3991
+ interface GoogleCloudDiscoveryengineV1betaHealthcareFhirConfig {
3992
+ /** 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. */
3993
+ enableConfigurableSchema?: boolean;
3994
+ /** 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. */
3995
+ enableStaticIndexingForBatchIngestion?: boolean;
3996
+ }
3997
+ interface GoogleCloudDiscoveryengineV1betaIdentityMappingEntryOperationMetadata {
3998
+ /** The number of IdentityMappingEntries that failed to be processed. */
3999
+ failureCount?: string;
4000
+ /** The number of IdentityMappingEntries that were successfully processed. */
4001
+ successCount?: string;
4002
+ /** The total number of IdentityMappingEntries that were processed. */
4003
+ totalCount?: string;
4004
+ }
3915
4005
  interface GoogleCloudDiscoveryengineV1betaImportCompletionSuggestionsMetadata {
3916
4006
  /** Operation create time. */
3917
4007
  createTime?: string;
@@ -3950,6 +4040,10 @@ declare namespace gapi.client {
3950
4040
  /** 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. */
3951
4041
  gcsPrefix?: string;
3952
4042
  }
4043
+ interface GoogleCloudDiscoveryengineV1betaImportIdentityMappingsResponse {
4044
+ /** A sample of errors encountered while processing the request. */
4045
+ errorSamples?: GoogleRpcStatus[];
4046
+ }
3953
4047
  interface GoogleCloudDiscoveryengineV1betaImportSampleQueriesMetadata {
3954
4048
  /** ImportSampleQueries operation create time. */
3955
4049
  createTime?: string;
@@ -4182,7 +4276,7 @@ declare namespace gapi.client {
4182
4276
  sessionSpec?: GoogleCloudDiscoveryengineV1betaSearchRequestSessionSpec;
4183
4277
  /** The spell correction specification that specifies the mode under which spell correction takes effect. */
4184
4278
  spellCorrectionSpec?: GoogleCloudDiscoveryengineV1betaSearchRequestSpellCorrectionSpec;
4185
- /** Information about the end user. Highly recommended for analytics. UserInfo.user_agent is used to deduce `device_type` for analytics. */
4279
+ /** Information about the end user. Highly recommended for analytics and personalization. UserInfo.user_agent is used to deduce `device_type` for analytics. */
4186
4280
  userInfo?: GoogleCloudDiscoveryengineV1betaUserInfo;
4187
4281
  /** 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. */
4188
4282
  userLabels?: {[P in string]: string};
@@ -4593,6 +4687,8 @@ declare namespace gapi.client {
4593
4687
  displayName?: string;
4594
4688
  /** Configuration for Document understanding and enrichment. */
4595
4689
  documentProcessingConfig?: GoogleCloudDiscoveryengineV1DocumentProcessingConfig;
4690
+ /** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
4691
+ healthcareFhirConfig?: GoogleCloudDiscoveryengineV1HealthcareFhirConfig;
4596
4692
  /** Immutable. The industry vertical that the data store registers. */
4597
4693
  industryVertical?: string;
4598
4694
  /** Optional. If set, this DataStore is an Infobot FAQ DataStore. */
@@ -4766,6 +4862,20 @@ declare namespace gapi.client {
4766
4862
  /** 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. */
4767
4863
  searchTier?: string;
4768
4864
  }
4865
+ interface GoogleCloudDiscoveryengineV1HealthcareFhirConfig {
4866
+ /** 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. */
4867
+ enableConfigurableSchema?: boolean;
4868
+ /** 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. */
4869
+ enableStaticIndexingForBatchIngestion?: boolean;
4870
+ }
4871
+ interface GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata {
4872
+ /** The number of IdentityMappingEntries that failed to be processed. */
4873
+ failureCount?: string;
4874
+ /** The number of IdentityMappingEntries that were successfully processed. */
4875
+ successCount?: string;
4876
+ /** The total number of IdentityMappingEntries that were processed. */
4877
+ totalCount?: string;
4878
+ }
4769
4879
  interface GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata {
4770
4880
  /** Operation create time. */
4771
4881
  createTime?: string;
@@ -4804,6 +4914,10 @@ declare namespace gapi.client {
4804
4914
  /** 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. */
4805
4915
  gcsPrefix?: string;
4806
4916
  }
4917
+ interface GoogleCloudDiscoveryengineV1ImportIdentityMappingsResponse {
4918
+ /** A sample of errors encountered while processing the request. */
4919
+ errorSamples?: GoogleRpcStatus[];
4920
+ }
4807
4921
  interface GoogleCloudDiscoveryengineV1ImportSuggestionDenyListEntriesMetadata {
4808
4922
  /** Operation create time. */
4809
4923
  createTime?: string;
@@ -15226,6 +15340,308 @@ declare namespace gapi.client {
15226
15340
  }): Request<GoogleLongrunningListOperationsResponse>;
15227
15341
  }
15228
15342
  interface IdentityMappingStoresResource {
15343
+ /** Creates a new Identity Mapping Store. */
15344
+ create(request: {
15345
+ /** V1 error format. */
15346
+ '$.xgafv'?: string;
15347
+ /** OAuth access token. */
15348
+ access_token?: string;
15349
+ /** Data format for response. */
15350
+ alt?: string;
15351
+ /** JSONP */
15352
+ callback?: string;
15353
+ /** Resource name of the CmekConfig to use for protecting this Identity Mapping Store. */
15354
+ cmekConfigName?: string;
15355
+ /** 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. */
15356
+ disableCmek?: boolean;
15357
+ /** Selector specifying which fields to include in a partial response. */
15358
+ fields?: string;
15359
+ /** 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. */
15360
+ identityMappingStoreId?: string;
15361
+ /** 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. */
15362
+ key?: string;
15363
+ /** OAuth 2.0 token for the current user. */
15364
+ oauth_token?: string;
15365
+ /** Required. The parent collection resource name, such as `projects/{project}/locations/{location}`. */
15366
+ parent: string;
15367
+ /** Returns response with indentations and line breaks. */
15368
+ prettyPrint?: boolean;
15369
+ /** 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. */
15370
+ quotaUser?: string;
15371
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15372
+ upload_protocol?: string;
15373
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15374
+ uploadType?: string;
15375
+ /** Request body */
15376
+ resource: GoogleCloudDiscoveryengineV1alphaIdentityMappingStore;
15377
+ }): Request<GoogleCloudDiscoveryengineV1alphaIdentityMappingStore>;
15378
+ create(
15379
+ request: {
15380
+ /** V1 error format. */
15381
+ '$.xgafv'?: string;
15382
+ /** OAuth access token. */
15383
+ access_token?: string;
15384
+ /** Data format for response. */
15385
+ alt?: string;
15386
+ /** JSONP */
15387
+ callback?: string;
15388
+ /** Resource name of the CmekConfig to use for protecting this Identity Mapping Store. */
15389
+ cmekConfigName?: string;
15390
+ /** 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. */
15391
+ disableCmek?: boolean;
15392
+ /** Selector specifying which fields to include in a partial response. */
15393
+ fields?: string;
15394
+ /** 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. */
15395
+ identityMappingStoreId?: string;
15396
+ /** 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. */
15397
+ key?: string;
15398
+ /** OAuth 2.0 token for the current user. */
15399
+ oauth_token?: string;
15400
+ /** Required. The parent collection resource name, such as `projects/{project}/locations/{location}`. */
15401
+ parent: string;
15402
+ /** Returns response with indentations and line breaks. */
15403
+ prettyPrint?: boolean;
15404
+ /** 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. */
15405
+ quotaUser?: string;
15406
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15407
+ upload_protocol?: string;
15408
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15409
+ uploadType?: string;
15410
+ },
15411
+ body: GoogleCloudDiscoveryengineV1alphaIdentityMappingStore
15412
+ ): Request<GoogleCloudDiscoveryengineV1alphaIdentityMappingStore>;
15413
+ /** Deletes the Identity Mapping Store. */
15414
+ delete(request?: {
15415
+ /** V1 error format. */
15416
+ '$.xgafv'?: string;
15417
+ /** OAuth access token. */
15418
+ access_token?: string;
15419
+ /** Data format for response. */
15420
+ alt?: string;
15421
+ /** JSONP */
15422
+ callback?: string;
15423
+ /** Selector specifying which fields to include in a partial response. */
15424
+ fields?: string;
15425
+ /** 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. */
15426
+ key?: string;
15427
+ /** Required. The name of the Identity Mapping Store to delete. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
15428
+ name: string;
15429
+ /** OAuth 2.0 token for the current user. */
15430
+ oauth_token?: string;
15431
+ /** Returns response with indentations and line breaks. */
15432
+ prettyPrint?: boolean;
15433
+ /** 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. */
15434
+ quotaUser?: string;
15435
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15436
+ upload_protocol?: string;
15437
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15438
+ uploadType?: string;
15439
+ }): Request<GoogleLongrunningOperation>;
15440
+ /** Gets the Identity Mapping Store. */
15441
+ get(request?: {
15442
+ /** V1 error format. */
15443
+ '$.xgafv'?: string;
15444
+ /** OAuth access token. */
15445
+ access_token?: string;
15446
+ /** Data format for response. */
15447
+ alt?: string;
15448
+ /** JSONP */
15449
+ callback?: string;
15450
+ /** Selector specifying which fields to include in a partial response. */
15451
+ fields?: string;
15452
+ /** 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. */
15453
+ key?: string;
15454
+ /** Required. The name of the Identity Mapping Store to get. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
15455
+ name: string;
15456
+ /** OAuth 2.0 token for the current user. */
15457
+ oauth_token?: string;
15458
+ /** Returns response with indentations and line breaks. */
15459
+ prettyPrint?: boolean;
15460
+ /** 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. */
15461
+ quotaUser?: string;
15462
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15463
+ upload_protocol?: string;
15464
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15465
+ uploadType?: string;
15466
+ }): Request<GoogleCloudDiscoveryengineV1alphaIdentityMappingStore>;
15467
+ /** Imports a list of Identity Mapping Entries to an Identity Mapping Store. */
15468
+ importIdentityMappings(request: {
15469
+ /** V1 error format. */
15470
+ '$.xgafv'?: string;
15471
+ /** OAuth access token. */
15472
+ access_token?: string;
15473
+ /** Data format for response. */
15474
+ alt?: string;
15475
+ /** JSONP */
15476
+ callback?: string;
15477
+ /** Selector specifying which fields to include in a partial response. */
15478
+ fields?: string;
15479
+ /** Required. The name of the Identity Mapping Store to import Identity Mapping Entries to. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
15480
+ identityMappingStore: string;
15481
+ /** 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. */
15482
+ key?: string;
15483
+ /** OAuth 2.0 token for the current user. */
15484
+ oauth_token?: string;
15485
+ /** Returns response with indentations and line breaks. */
15486
+ prettyPrint?: boolean;
15487
+ /** 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. */
15488
+ quotaUser?: string;
15489
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15490
+ upload_protocol?: string;
15491
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15492
+ uploadType?: string;
15493
+ /** Request body */
15494
+ resource: GoogleCloudDiscoveryengineV1alphaImportIdentityMappingsRequest;
15495
+ }): Request<GoogleLongrunningOperation>;
15496
+ importIdentityMappings(
15497
+ request: {
15498
+ /** V1 error format. */
15499
+ '$.xgafv'?: string;
15500
+ /** OAuth access token. */
15501
+ access_token?: string;
15502
+ /** Data format for response. */
15503
+ alt?: string;
15504
+ /** JSONP */
15505
+ callback?: string;
15506
+ /** Selector specifying which fields to include in a partial response. */
15507
+ fields?: string;
15508
+ /** Required. The name of the Identity Mapping Store to import Identity Mapping Entries to. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
15509
+ identityMappingStore: string;
15510
+ /** 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. */
15511
+ key?: string;
15512
+ /** OAuth 2.0 token for the current user. */
15513
+ oauth_token?: string;
15514
+ /** Returns response with indentations and line breaks. */
15515
+ prettyPrint?: boolean;
15516
+ /** 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. */
15517
+ quotaUser?: string;
15518
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15519
+ upload_protocol?: string;
15520
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15521
+ uploadType?: string;
15522
+ },
15523
+ body: GoogleCloudDiscoveryengineV1alphaImportIdentityMappingsRequest
15524
+ ): Request<GoogleLongrunningOperation>;
15525
+ /** Lists all Identity Mapping Stores. */
15526
+ list(request?: {
15527
+ /** V1 error format. */
15528
+ '$.xgafv'?: string;
15529
+ /** OAuth access token. */
15530
+ access_token?: string;
15531
+ /** Data format for response. */
15532
+ alt?: string;
15533
+ /** JSONP */
15534
+ callback?: string;
15535
+ /** Selector specifying which fields to include in a partial response. */
15536
+ fields?: string;
15537
+ /** 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. */
15538
+ key?: string;
15539
+ /** OAuth 2.0 token for the current user. */
15540
+ oauth_token?: string;
15541
+ /** 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. */
15542
+ pageSize?: number;
15543
+ /** 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. */
15544
+ pageToken?: string;
15545
+ /** Required. The parent of the Identity Mapping Stores to list. Format: `projects/{project}/locations/{location}`. */
15546
+ parent: string;
15547
+ /** Returns response with indentations and line breaks. */
15548
+ prettyPrint?: boolean;
15549
+ /** 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. */
15550
+ quotaUser?: string;
15551
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15552
+ upload_protocol?: string;
15553
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15554
+ uploadType?: string;
15555
+ }): Request<GoogleCloudDiscoveryengineV1alphaListIdentityMappingStoresResponse>;
15556
+ /** Lists Identity Mappings in an Identity Mapping Store. */
15557
+ listIdentityMappings(request?: {
15558
+ /** V1 error format. */
15559
+ '$.xgafv'?: string;
15560
+ /** OAuth access token. */
15561
+ access_token?: string;
15562
+ /** Data format for response. */
15563
+ alt?: string;
15564
+ /** JSONP */
15565
+ callback?: string;
15566
+ /** Selector specifying which fields to include in a partial response. */
15567
+ fields?: string;
15568
+ /** Required. The name of the Identity Mapping Store to list Identity Mapping Entries in. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
15569
+ identityMappingStore: string;
15570
+ /** 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. */
15571
+ key?: string;
15572
+ /** OAuth 2.0 token for the current user. */
15573
+ oauth_token?: string;
15574
+ /** 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. */
15575
+ pageSize?: number;
15576
+ /** 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. */
15577
+ pageToken?: string;
15578
+ /** Returns response with indentations and line breaks. */
15579
+ prettyPrint?: boolean;
15580
+ /** 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. */
15581
+ quotaUser?: string;
15582
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15583
+ upload_protocol?: string;
15584
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15585
+ uploadType?: string;
15586
+ }): Request<GoogleCloudDiscoveryengineV1alphaListIdentityMappingsResponse>;
15587
+ /** Purges specified or all Identity Mapping Entries from an Identity Mapping Store. */
15588
+ purgeIdentityMappings(request: {
15589
+ /** V1 error format. */
15590
+ '$.xgafv'?: string;
15591
+ /** OAuth access token. */
15592
+ access_token?: string;
15593
+ /** Data format for response. */
15594
+ alt?: string;
15595
+ /** JSONP */
15596
+ callback?: string;
15597
+ /** Selector specifying which fields to include in a partial response. */
15598
+ fields?: string;
15599
+ /** Required. The name of the Identity Mapping Store to purge Identity Mapping Entries from. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
15600
+ identityMappingStore: string;
15601
+ /** 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. */
15602
+ key?: string;
15603
+ /** OAuth 2.0 token for the current user. */
15604
+ oauth_token?: string;
15605
+ /** Returns response with indentations and line breaks. */
15606
+ prettyPrint?: boolean;
15607
+ /** 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. */
15608
+ quotaUser?: string;
15609
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15610
+ upload_protocol?: string;
15611
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15612
+ uploadType?: string;
15613
+ /** Request body */
15614
+ resource: GoogleCloudDiscoveryengineV1alphaPurgeIdentityMappingsRequest;
15615
+ }): Request<GoogleLongrunningOperation>;
15616
+ purgeIdentityMappings(
15617
+ request: {
15618
+ /** V1 error format. */
15619
+ '$.xgafv'?: string;
15620
+ /** OAuth access token. */
15621
+ access_token?: string;
15622
+ /** Data format for response. */
15623
+ alt?: string;
15624
+ /** JSONP */
15625
+ callback?: string;
15626
+ /** Selector specifying which fields to include in a partial response. */
15627
+ fields?: string;
15628
+ /** Required. The name of the Identity Mapping Store to purge Identity Mapping Entries from. Format: `projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}` */
15629
+ identityMappingStore: string;
15630
+ /** 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. */
15631
+ key?: string;
15632
+ /** OAuth 2.0 token for the current user. */
15633
+ oauth_token?: string;
15634
+ /** Returns response with indentations and line breaks. */
15635
+ prettyPrint?: boolean;
15636
+ /** 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. */
15637
+ quotaUser?: string;
15638
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15639
+ upload_protocol?: string;
15640
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15641
+ uploadType?: string;
15642
+ },
15643
+ body: GoogleCloudDiscoveryengineV1alphaPurgeIdentityMappingsRequest
15644
+ ): Request<GoogleLongrunningOperation>;
15229
15645
  operations: OperationsResource;
15230
15646
  }
15231
15647
  interface OperationsResource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.discoveryengine-v1alpha",
3
- "version": "0.0.20250121",
3
+ "version": "0.0.20250125",
4
4
  "description": "TypeScript typings for Discovery Engine API v1alpha",
5
5
  "repository": {
6
6
  "type": "git",