@maxim_mazurok/gapi.client.discoveryengine-v1alpha 0.3.20260629 → 0.3.20260705

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 +711 -1
  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: 20260629
12
+ // Revision: 20260705
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -260,6 +260,14 @@ declare namespace gapi.client {
260
260
  /** Info about the stored refresh token used to create the access token. */
261
261
  refreshTokenInfo?: GoogleCloudDiscoveryengineV1alphaRefreshTokenInfo;
262
262
  }
263
+ interface GoogleCloudDiscoveryengineV1alphaAcquireProgramsRequest {
264
+ /** Optional. Number of evolved programs to acquire. If not set, the default value is 1. */
265
+ desiredProgramsCount?: number;
266
+ }
267
+ interface GoogleCloudDiscoveryengineV1alphaAcquireProgramsResponse {
268
+ /** Output only. List of acquired program candidates to be evaluated. Note: The number of programs acquired might be lower than requested. */
269
+ programs?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgram[];
270
+ }
263
271
  interface GoogleCloudDiscoveryengineV1alphaActionConfig {
264
272
  /** Optional. Action parameters in structured json format. */
265
273
  actionParams?: {[P in string]: any};
@@ -541,6 +549,155 @@ declare namespace gapi.client {
541
549
  /** Required. The AlloyDB table to copy the data from with a length limit of 256 characters. */
542
550
  tableId?: string;
543
551
  }
552
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveEvaluationInsights {
553
+ /** Optional. List of evaluation insights. */
554
+ insights?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveEvaluationInsightsAlphaEvolveEvaluationInsight[];
555
+ }
556
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveEvaluationInsightsAlphaEvolveEvaluationInsight {
557
+ /** Optional. Label of the insight. */
558
+ label?: string;
559
+ /** Optional. Text of the insight. */
560
+ text?: string;
561
+ }
562
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveEvaluationScores {
563
+ /** Required. List of evaluation scores. */
564
+ scores?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveEvaluationScoresAlphaEvolveEvaluationScore[];
565
+ }
566
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveEvaluationScoresAlphaEvolveEvaluationScore {
567
+ /** Required. Name of the metric. */
568
+ metric?: string;
569
+ /** Required. Score of a program for this metric. */
570
+ score?: number;
571
+ }
572
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperiment {
573
+ /** Required. Experiment configuration. */
574
+ config?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfig;
575
+ /** Output only. Time when the experiment was created. */
576
+ createTime?: string;
577
+ /** Output only. Specifies the name of the seed program used to start the experiment. */
578
+ initialAlphaEvolveProgram?: string;
579
+ /** Identifier. The full resource name of the experiment. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
580
+ name?: string;
581
+ /** Output only. The state of the experiment. */
582
+ state?:
583
+ | 'STATE_UNSPECIFIED'
584
+ | 'CREATED'
585
+ | 'RUNNING'
586
+ | 'PAUSED'
587
+ | 'COMPLETED'
588
+ | 'FAILED';
589
+ /** Output only. Experiment stats. */
590
+ stats?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentStats;
591
+ }
592
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfig {
593
+ /** Optional. Evolution settings for the experiment. */
594
+ evolutionSettings?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigEvolutionSettings;
595
+ /** Optional. Generation settings for the experiment, controlling how new program candidates are generated, including things LLM parameters and user-provided context and prompts. */
596
+ generationSettings?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigGenerationSettings;
597
+ /** Required. Description of the problem to be solved by the experiment. */
598
+ problemDescription?: string;
599
+ /** Required. Primary programming language of the code being optimized. */
600
+ programLanguage?: string;
601
+ /** Required. Run settings for the experiment, controlling the overall behavior of the experiment run. */
602
+ runSettings?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigRunSettings;
603
+ /** Required. Title of the experiment. */
604
+ title?: string;
605
+ }
606
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigEvolutionSettings {
607
+ /** Optional. Parent sampling configuration. */
608
+ parentSamplingConfig?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigEvolutionSettingsParentSamplingConfig;
609
+ }
610
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigEvolutionSettingsParentSamplingConfig {
611
+ /** Optional. Pareto sampling configuration. */
612
+ paretoSamplingConfig?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigEvolutionSettingsParentSamplingConfigParetoSamplingConfig;
613
+ }
614
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigEvolutionSettingsParentSamplingConfigParetoSamplingConfig {
615
+ /** Optional. Probability [0.0, 1.0] of sampling parent programs from the Pareto frontier instead of normal fitness-based sampling during candidate generation. Useful when optimizing multiple metrics simultaneously. Default 0.0 (disabled). Only effective when evaluation returns multiple metrics in scores_to_optimize. */
616
+ paretoSamplingProbability?: number;
617
+ }
618
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigGenerationSettings {
619
+ /** Optional. Additional user-provided context to be used during generation. */
620
+ context?: string;
621
+ /** Optional. When true, the LLM prompt includes the full program text (both mutable EVOLVE-BLOCK regions and immutable boilerplate). When false (default), only the mutable EVOLVE-BLOCK regions are shown, saving context window. */
622
+ includeFullProgramInPrompt?: boolean;
623
+ /** Optional. Per-model configuration. See `ModelConfig` for details. If left unset, the server selects a default model. */
624
+ models?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigGenerationSettingsModelConfig[];
625
+ }
626
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigGenerationSettingsModelConfig {
627
+ /** Required. Model name (e.g. `gemini-2.5-flash`, `gemini-3.1-pro-preview`). See `model_mixture` for the list of allowed models. */
628
+ name?: string;
629
+ /** Optional. Relative weight for this model in the mixture. Must be a finite, strictly positive value. Weights across all entries are normalized server-side, so they need not sum to 1.0. Defaults to 1.0 when unset, which is convenient when configuring a single model or an even mixture. Some Pro-tier models are capped at most 50% of the total weight; requests violating that cap are rejected with INVALID_ARGUMENT. */
630
+ weight?: number;
631
+ }
632
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentConfigRunSettings {
633
+ /** Required. Maximum number of programs that can be generated in parallel. Must be positive. */
634
+ concurrency?: number;
635
+ /** Optional. Maximum duration of the experiment. If unset, defaults to 24 hours. */
636
+ maxDuration?: string;
637
+ /** Required. Maximum number of programs to generate during the experiment run. The initial program counts towards this limit. Must be greater than 1. */
638
+ maxPrograms?: number;
639
+ }
640
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperimentStats {
641
+ /** Output only. Number of candidates generated. */
642
+ candidatesCount?: number;
643
+ /** Output only. Number of candidates evaluated. */
644
+ evaluatedCandidatesCount?: number;
645
+ /** Output only. Number of billed input tokens consumed by the experiment. */
646
+ inputTokenCount?: string;
647
+ /** Output only. Number of billed output tokens consumed by the experiment. */
648
+ outputTokenCount?: string;
649
+ }
650
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgram {
651
+ /** Optional. Content of the program. */
652
+ content?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgramContent;
653
+ /** Output only. Time when the program was created. */
654
+ createTime?: string;
655
+ /** Optional. Evaluation results for the program. */
656
+ evaluation?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgramEvaluation;
657
+ /** Optional. Lock token for the program. */
658
+ lockToken?: string;
659
+ /** Identifier. Unique identifier for the program. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}/alphaEvolvePrograms/{alpha_evolve_program}` */
660
+ name?: string;
661
+ /** Output only. Optionally specifies which parent programs this program was evolved from. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}/alphaEvolvePrograms/{alpha_evolve_program}` */
662
+ parentPrograms?: string[];
663
+ /** Output only. State of the program. */
664
+ state?:
665
+ | 'PROGRAM_STATE_UNSPECIFIED'
666
+ | 'INITIALIZED'
667
+ | 'GENERATING'
668
+ | 'EVALUATING'
669
+ | 'COMPLETED';
670
+ }
671
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgramContent {
672
+ /** Optional. Description of the program. */
673
+ description?: string;
674
+ /** Required. A list of source files that make up the overall program. */
675
+ files?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveSourceFile[];
676
+ }
677
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgramEvaluation {
678
+ /** Optional. Represents various insights about the candidate, which are not directly used as optimization target, but that can be used to improve subsequent generations, and as such can be used to construct the evolution prompt. */
679
+ insights?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveEvaluationInsights;
680
+ /** Optional. Contains the evaluation scores for the target metrics to optimize. */
681
+ scores?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveEvaluationScores;
682
+ }
683
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgramEvaluationSubmission {
684
+ /** Required. Evaluation results for the program candidate. */
685
+ evaluation?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgramEvaluation;
686
+ /** Required. Lock token for the program obtained in the AcquireAlphaEvolvePrograms call. */
687
+ lockToken?: string;
688
+ /** Required. Unique identifier for the program. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}/alphaEvolvePrograms/{alpha_evolve_program}` */
689
+ program?: string;
690
+ }
691
+ interface GoogleCloudDiscoveryengineV1alphaAlphaEvolveSourceFile {
692
+ /** Required. The raw content of the file. This is a string and not bytes, because it should be ultimately processed by the LLM as text. */
693
+ content?: string;
694
+ /** Optional. Additional description of the file. */
695
+ description?: string;
696
+ /** Required. The relative path of the file, including the filename. e.g., "src/main.py", "utils/helpers.js", "README.md" */
697
+ path?: string;
698
+ /** Optional. The programming language of the file. */
699
+ programLanguage?: string;
700
+ }
544
701
  interface GoogleCloudDiscoveryengineV1alphaAnalyticsConfig {
545
702
  /** Required. The resource name of the analytics customer config. Format: `projects/{project}/locations/{location}/collections/{collection_id}/engines/{engine_id}/analytics/config` */
546
703
  name?: string;
@@ -2255,6 +2412,8 @@ declare namespace gapi.client {
2255
2412
  name?: string;
2256
2413
  /** Defines the scheduled time for the next data synchronization. This field requires hour , minute, and time_zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). This is utilized when the data connector has a refresh interval greater than 1 day. When the hours or minutes are not specified, we will assume a sync time of 0:00. The user must provide a time zone to avoid ambiguity. */
2257
2414
  nextSyncTime?: GoogleTypeDateTime;
2415
+ /** Output only. The static IP addresses used by this connector for OAuth APIs (e.g. end user authentication). These are surfaced separately from `static_ip_addresses` so that customers can apply granular firewall settings for OAuth endpoints. Only populated for connectors that have static IP enabled and are used for actions and/or federated search. */
2416
+ oauthStaticIpAddresses?: string[];
2258
2417
  /** Required data connector parameters in structured json format. */
2259
2418
  params?: {[P in string]: any};
2260
2419
  /** Output only. The tenant project ID associated with private connectivity connectors. This project must be allowlisted by in order for the connector to function. */
@@ -2570,6 +2729,8 @@ declare namespace gapi.client {
2570
2729
  failureCount?: string;
2571
2730
  /** The number of end users under the user store that were successfully deleted. */
2572
2731
  successCount?: string;
2732
+ /** Operation last update time. If the operation is done, this is also the finish time. */
2733
+ updateTime?: string;
2573
2734
  }
2574
2735
  interface GoogleCloudDiscoveryengineV1alphaDestinationConfig {
2575
2736
  /** Optional. The destinations for the corresponding key. */
@@ -3682,6 +3843,18 @@ declare namespace gapi.client {
3682
3843
  /** A token that can be sent as ListAgentsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
3683
3844
  nextPageToken?: string;
3684
3845
  }
3846
+ interface GoogleCloudDiscoveryengineV1alphaListAlphaEvolveExperimentsResponse {
3847
+ /** Output only. List of experiments. */
3848
+ alphaEvolveExperiments?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperiment[];
3849
+ /** Output only. A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
3850
+ nextPageToken?: string;
3851
+ }
3852
+ interface GoogleCloudDiscoveryengineV1alphaListAlphaEvolveProgramsResponse {
3853
+ /** Output only. List of programs matching the criteria provided in the request. */
3854
+ alphaEvolvePrograms?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgram[];
3855
+ /** Output only. A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
3856
+ nextPageToken?: string;
3857
+ }
3685
3858
  interface GoogleCloudDiscoveryengineV1alphaListAssistantsResponse {
3686
3859
  /** All the customer's Assistants. */
3687
3860
  assistants?: GoogleCloudDiscoveryengineV1alphaAssistant[];
@@ -4519,6 +4692,13 @@ declare namespace gapi.client {
4519
4692
  variableId?: string;
4520
4693
  }
4521
4694
  interface GoogleCloudDiscoveryengineV1alphaResumeEngineRequest {}
4695
+ interface GoogleCloudDiscoveryengineV1alphaResumeExperimentMetadata {
4696
+ /** Output only. The time the operation was created. */
4697
+ createTime?: string;
4698
+ /** Output only. The time the operation was last updated. */
4699
+ updateTime?: string;
4700
+ }
4701
+ interface GoogleCloudDiscoveryengineV1alphaResumeExperimentRequest {}
4522
4702
  interface GoogleCloudDiscoveryengineV1alphaRetractLicenseConfigRequest {
4523
4703
  /** Optional. If set to true, retract the entire license config. Otherwise, retract the specified license count. */
4524
4704
  fullRetract?: boolean;
@@ -5464,6 +5644,16 @@ declare namespace gapi.client {
5464
5644
  /** Timestamp to indicate the point in time from which data should be synced for Streaming/Batch Data Connectors. This field is only utilized for Healthcare Connectors. */
5465
5645
  syncSinceTimestamp?: string;
5466
5646
  }
5647
+ interface GoogleCloudDiscoveryengineV1alphaStartExperimentMetadata {
5648
+ /** Output only. The time the operation was created. */
5649
+ createTime?: string;
5650
+ /** Output only. The time the operation was last updated. */
5651
+ updateTime?: string;
5652
+ }
5653
+ interface GoogleCloudDiscoveryengineV1alphaStartExperimentRequest {
5654
+ /** Required. Experiment to start. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
5655
+ name?: string;
5656
+ }
5467
5657
  interface GoogleCloudDiscoveryengineV1alphaStreamAssistRequest {
5468
5658
  /** Optional. Specification of actions for the request. */
5469
5659
  actionSpec?: GoogleCloudDiscoveryengineV1alphaStreamAssistRequestActionSpec;
@@ -5535,6 +5725,11 @@ declare namespace gapi.client {
5535
5725
  /** Name of the newly generated or continued session. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}`. */
5536
5726
  session?: string;
5537
5727
  }
5728
+ interface GoogleCloudDiscoveryengineV1alphaSubmitProgramsEvaluationsRequest {
5729
+ /** Required. List of program evaluations to submit. At this time, only one evaluation submission is supported. */
5730
+ evaluationSubmissions?: GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgramEvaluationSubmission[];
5731
+ }
5732
+ interface GoogleCloudDiscoveryengineV1alphaSubmitProgramsEvaluationsResponse {}
5538
5733
  interface GoogleCloudDiscoveryengineV1alphaSuggestionDenyListEntry {
5539
5734
  /** Required. Phrase to block from suggestions served. Can be maximum 125 characters. */
5540
5735
  blockPhrase?: string;
@@ -6141,6 +6336,8 @@ declare namespace gapi.client {
6141
6336
  resolvedModels?: GoogleCloudDiscoveryengineV1alphaWidgetConfigUiSettingsModelConfigInfoResolvedModel[];
6142
6337
  }
6143
6338
  interface GoogleCloudDiscoveryengineV1alphaWidgetConfigUiSettingsModelConfigInfoResolvedModel {
6339
+ /** Output only. Admin-surface metadata; populated only for the Console admin Feature Control page (see `AdminView`). Unset for end-user surfaces. */
6340
+ adminView?: GoogleCloudDiscoveryengineV1alphaWidgetConfigUiSettingsModelConfigInfoResolvedModelAdminView;
6144
6341
  /** Output only. Localized description text (e.g. `State-of-the-art reasoning`). Localized using the same locale as `display_name`. */
6145
6342
  description?: string;
6146
6343
  /** Output only. Localized display name of the model (e.g. `Gemini 3.1 Pro`). Localized server-side based on the LookupWidgetConfigRequest.language_code and LookupWidgetConfigRequest.region_code of the request. */
@@ -6152,6 +6349,14 @@ declare namespace gapi.client {
6152
6349
  /** Output only. Unique identifier of the model (e.g. `gemini-2.5-flash`, `gemini-3.1-pro-preview`). This is the same identifier that clients pass back to the assistant service to select this model. Virtual / "pseudo" models (e.g. `gemini-fast`) are also valid values here; they are resolved to the underlying concrete model on the backend. */
6153
6350
  modelId?: string;
6154
6351
  }
6352
+ interface GoogleCloudDiscoveryengineV1alphaWidgetConfigUiSettingsModelConfigInfoResolvedModelAdminView {
6353
+ /** Output only. Whether the admin can toggle this model's enabled/disabled state via `UiSettings.model_configs`. Derived from `MODEL_TAG_ADMIN_OVERRIDABLE`. When false, the model is "forced" and its state is governed by `enabled_by_default`. */
6354
+ adminOverridable?: boolean;
6355
+ /** Output only. Whether the model is enabled when the admin has set no explicit override in `UiSettings.model_configs`. Derived from `MODEL_TAG_ENABLED_BY_DEFAULT`. */
6356
+ enabledByDefault?: boolean;
6357
+ /** Output only. Regions where this model is launched. */
6358
+ regions?: string[];
6359
+ }
6155
6360
  interface GoogleCloudDiscoveryengineV1alphaWidgetConfigUiSettingsSearchAddonSpec {
6156
6361
  /** Optional. If true, generative answer add-on is disabled. Generative answer add-on includes natural language to filters and simple answers. */
6157
6362
  generativeAnswerAddOnDisabled?: boolean;
@@ -8204,6 +8409,8 @@ declare namespace gapi.client {
8204
8409
  name?: string;
8205
8410
  /** Defines the scheduled time for the next data synchronization. This field requires hour , minute, and time_zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). This is utilized when the data connector has a refresh interval greater than 1 day. When the hours or minutes are not specified, we will assume a sync time of 0:00. The user must provide a time zone to avoid ambiguity. */
8206
8411
  nextSyncTime?: GoogleTypeDateTime;
8412
+ /** Output only. The static IP addresses used by this connector for OAuth APIs (e.g. end user authentication). These are surfaced separately from `static_ip_addresses` so that customers can apply granular firewall settings for OAuth endpoints. Only populated for connectors that have static IP enabled and are used for actions and/or federated search. */
8413
+ oauthStaticIpAddresses?: string[];
8207
8414
  /** Required data connector parameters in structured json format. */
8208
8415
  params?: {[P in string]: any};
8209
8416
  /** Output only. The tenant project ID associated with private connectivity connectors. This project must be allowlisted by in order for the connector to function. */
@@ -17310,6 +17517,133 @@ declare namespace gapi.client {
17310
17517
  body: GoogleCloudDiscoveryengineV1alphaAnswerQueryRequest,
17311
17518
  ): Request<GoogleCloudDiscoveryengineV1alphaAnswerQueryResponse>;
17312
17519
  }
17520
+ interface AlphaEvolveProgramsResource {
17521
+ /** Creates a new AlphaEvolveProgram. */
17522
+ create(request: {
17523
+ /** V1 error format. */
17524
+ '$.xgafv'?: '1' | '2';
17525
+ /** OAuth access token. */
17526
+ access_token?: string;
17527
+ /** Data format for response. */
17528
+ alt?: 'json' | 'media' | 'proto';
17529
+ /** JSONP */
17530
+ callback?: string;
17531
+ /** Selector specifying which fields to include in a partial response. */
17532
+ fields?: string;
17533
+ /** 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. */
17534
+ key?: string;
17535
+ /** OAuth 2.0 token for the current user. */
17536
+ oauth_token?: string;
17537
+ /** Required. The parent resource name (AlphaEvolveExperiment) of the AlphaEvolveProgram. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17538
+ parent: string;
17539
+ /** Returns response with indentations and line breaks. */
17540
+ prettyPrint?: boolean;
17541
+ /** 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. */
17542
+ quotaUser?: string;
17543
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17544
+ upload_protocol?: string;
17545
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17546
+ uploadType?: string;
17547
+ /** Request body */
17548
+ resource: GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgram;
17549
+ }): Request<GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgram>;
17550
+ create(
17551
+ request: {
17552
+ /** V1 error format. */
17553
+ '$.xgafv'?: '1' | '2';
17554
+ /** OAuth access token. */
17555
+ access_token?: string;
17556
+ /** Data format for response. */
17557
+ alt?: 'json' | 'media' | 'proto';
17558
+ /** JSONP */
17559
+ callback?: string;
17560
+ /** Selector specifying which fields to include in a partial response. */
17561
+ fields?: string;
17562
+ /** 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. */
17563
+ key?: string;
17564
+ /** OAuth 2.0 token for the current user. */
17565
+ oauth_token?: string;
17566
+ /** Required. The parent resource name (AlphaEvolveExperiment) of the AlphaEvolveProgram. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17567
+ parent: string;
17568
+ /** Returns response with indentations and line breaks. */
17569
+ prettyPrint?: boolean;
17570
+ /** 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. */
17571
+ quotaUser?: string;
17572
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17573
+ upload_protocol?: string;
17574
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17575
+ uploadType?: string;
17576
+ },
17577
+ body: GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgram,
17578
+ ): Request<GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgram>;
17579
+ /** Gets an existing AlphaEvolveProgram. */
17580
+ get(request?: {
17581
+ /** V1 error format. */
17582
+ '$.xgafv'?: '1' | '2';
17583
+ /** OAuth access token. */
17584
+ access_token?: string;
17585
+ /** Data format for response. */
17586
+ alt?: 'json' | 'media' | 'proto';
17587
+ /** JSONP */
17588
+ callback?: string;
17589
+ /** Selector specifying which fields to include in a partial response. */
17590
+ fields?: string;
17591
+ /** 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. */
17592
+ key?: string;
17593
+ /** Required. The full resource name of the program. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}/alphaEvolvePrograms/{alpha_evolve_program}` */
17594
+ name: string;
17595
+ /** OAuth 2.0 token for the current user. */
17596
+ oauth_token?: string;
17597
+ /** Returns response with indentations and line breaks. */
17598
+ prettyPrint?: boolean;
17599
+ /** 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. */
17600
+ quotaUser?: string;
17601
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17602
+ upload_protocol?: string;
17603
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17604
+ uploadType?: string;
17605
+ }): Request<GoogleCloudDiscoveryengineV1alphaAlphaEvolveProgram>;
17606
+ /** List all AlphaEvolvePrograms in a given experiment that follow the criteria provided in the request. */
17607
+ list(request?: {
17608
+ /** V1 error format. */
17609
+ '$.xgafv'?: '1' | '2';
17610
+ /** OAuth access token. */
17611
+ access_token?: string;
17612
+ /** Data format for response. */
17613
+ alt?: 'json' | 'media' | 'proto';
17614
+ /** JSONP */
17615
+ callback?: string;
17616
+ /** Selector specifying which fields to include in a partial response. */
17617
+ fields?: string;
17618
+ /** 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. */
17619
+ key?: string;
17620
+ /** OAuth 2.0 token for the current user. */
17621
+ oauth_token?: string;
17622
+ /** Optional. Sorting criterion for the programs. Comma separated list of metrics to sort by and optionally sort order, e.g. "score1 desc, score2". The criteria are applied in the order listed in the field. An implicit criterion of sorting by create_time descending is always applied as the final tie-breaker after all other specified criteria. */
17623
+ orderBy?: string;
17624
+ /** Optional. The maximum number of programs to return. The service may return fewer than this value. */
17625
+ pageSize?: number;
17626
+ /** Optional. A page token, received from a previous `ListAlphaEvolvePrograms` call. Provide this to retrieve the subsequent page. */
17627
+ pageToken?: string;
17628
+ /** Required. The parent resource name (AlphaEvolveExperiment) of the experiment. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17629
+ parent: string;
17630
+ /** Returns response with indentations and line breaks. */
17631
+ prettyPrint?: boolean;
17632
+ /** 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. */
17633
+ quotaUser?: string;
17634
+ /** Optional. Filter to apply to the programs. Examples: "state_filter = \'COMPLETED\'" "state_filter = \'INITIALIZED\' OR "state_filter = \'EVALUATING\'" If empty, the behavior defaults to listing programs in REGISTRATION_COMPLETE state or processing state is NULL. */
17635
+ stateFilter?:
17636
+ | 'PROGRAM_STATE_UNSPECIFIED'
17637
+ | 'INITIALIZED'
17638
+ | 'GENERATING'
17639
+ | 'EVALUATING'
17640
+ | 'COMPLETED';
17641
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17642
+ upload_protocol?: string;
17643
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17644
+ uploadType?: string;
17645
+ }): Request<GoogleCloudDiscoveryengineV1alphaListAlphaEvolveProgramsResponse>;
17646
+ }
17313
17647
  interface OperationsResource {
17314
17648
  /** 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. */
17315
17649
  get(request?: {
@@ -17340,6 +17674,382 @@ declare namespace gapi.client {
17340
17674
  }): Request<GoogleLongrunningOperation>;
17341
17675
  }
17342
17676
  interface AlphaEvolveExperimentsResource {
17677
+ /** Acquires one or more AlphaEvolveProgram from the generated queue of programs for evaluation. */
17678
+ acquirePrograms(request: {
17679
+ /** V1 error format. */
17680
+ '$.xgafv'?: '1' | '2';
17681
+ /** OAuth access token. */
17682
+ access_token?: string;
17683
+ /** Data format for response. */
17684
+ alt?: 'json' | 'media' | 'proto';
17685
+ /** JSONP */
17686
+ callback?: string;
17687
+ /** Selector specifying which fields to include in a partial response. */
17688
+ fields?: string;
17689
+ /** 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. */
17690
+ key?: string;
17691
+ /** OAuth 2.0 token for the current user. */
17692
+ oauth_token?: string;
17693
+ /** Required. The parent resource name (AlphaEvolveExperiment) of the AlphaEvolveExperiment. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17694
+ parent: string;
17695
+ /** Returns response with indentations and line breaks. */
17696
+ prettyPrint?: boolean;
17697
+ /** 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. */
17698
+ quotaUser?: string;
17699
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17700
+ upload_protocol?: string;
17701
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17702
+ uploadType?: string;
17703
+ /** Request body */
17704
+ resource: GoogleCloudDiscoveryengineV1alphaAcquireProgramsRequest;
17705
+ }): Request<GoogleCloudDiscoveryengineV1alphaAcquireProgramsResponse>;
17706
+ acquirePrograms(
17707
+ request: {
17708
+ /** V1 error format. */
17709
+ '$.xgafv'?: '1' | '2';
17710
+ /** OAuth access token. */
17711
+ access_token?: string;
17712
+ /** Data format for response. */
17713
+ alt?: 'json' | 'media' | 'proto';
17714
+ /** JSONP */
17715
+ callback?: string;
17716
+ /** Selector specifying which fields to include in a partial response. */
17717
+ fields?: string;
17718
+ /** 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. */
17719
+ key?: string;
17720
+ /** OAuth 2.0 token for the current user. */
17721
+ oauth_token?: string;
17722
+ /** Required. The parent resource name (AlphaEvolveExperiment) of the AlphaEvolveExperiment. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17723
+ parent: string;
17724
+ /** Returns response with indentations and line breaks. */
17725
+ prettyPrint?: boolean;
17726
+ /** 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. */
17727
+ quotaUser?: string;
17728
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17729
+ upload_protocol?: string;
17730
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17731
+ uploadType?: string;
17732
+ },
17733
+ body: GoogleCloudDiscoveryengineV1alphaAcquireProgramsRequest,
17734
+ ): Request<GoogleCloudDiscoveryengineV1alphaAcquireProgramsResponse>;
17735
+ /** Creates a new AlphaEvolveExperiment. */
17736
+ create(request: {
17737
+ /** V1 error format. */
17738
+ '$.xgafv'?: '1' | '2';
17739
+ /** OAuth access token. */
17740
+ access_token?: string;
17741
+ /** Data format for response. */
17742
+ alt?: 'json' | 'media' | 'proto';
17743
+ /** JSONP */
17744
+ callback?: string;
17745
+ /** Selector specifying which fields to include in a partial response. */
17746
+ fields?: string;
17747
+ /** 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. */
17748
+ key?: string;
17749
+ /** OAuth 2.0 token for the current user. */
17750
+ oauth_token?: string;
17751
+ /** Required. The parent resource name (Session) of the experiment. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}` */
17752
+ parent: string;
17753
+ /** Returns response with indentations and line breaks. */
17754
+ prettyPrint?: boolean;
17755
+ /** 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. */
17756
+ quotaUser?: string;
17757
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17758
+ upload_protocol?: string;
17759
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17760
+ uploadType?: string;
17761
+ /** Request body */
17762
+ resource: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperiment;
17763
+ }): Request<GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperiment>;
17764
+ create(
17765
+ request: {
17766
+ /** V1 error format. */
17767
+ '$.xgafv'?: '1' | '2';
17768
+ /** OAuth access token. */
17769
+ access_token?: string;
17770
+ /** Data format for response. */
17771
+ alt?: 'json' | 'media' | 'proto';
17772
+ /** JSONP */
17773
+ callback?: string;
17774
+ /** Selector specifying which fields to include in a partial response. */
17775
+ fields?: string;
17776
+ /** 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. */
17777
+ key?: string;
17778
+ /** OAuth 2.0 token for the current user. */
17779
+ oauth_token?: string;
17780
+ /** Required. The parent resource name (Session) of the experiment. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}` */
17781
+ parent: string;
17782
+ /** Returns response with indentations and line breaks. */
17783
+ prettyPrint?: boolean;
17784
+ /** 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. */
17785
+ quotaUser?: string;
17786
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17787
+ upload_protocol?: string;
17788
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17789
+ uploadType?: string;
17790
+ },
17791
+ body: GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperiment,
17792
+ ): Request<GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperiment>;
17793
+ /** Deletes an experiment provided the experiment is in an end state (e.g. created, failed, succeeded). */
17794
+ delete(request?: {
17795
+ /** V1 error format. */
17796
+ '$.xgafv'?: '1' | '2';
17797
+ /** OAuth access token. */
17798
+ access_token?: string;
17799
+ /** Data format for response. */
17800
+ alt?: 'json' | 'media' | 'proto';
17801
+ /** JSONP */
17802
+ callback?: string;
17803
+ /** Selector specifying which fields to include in a partial response. */
17804
+ fields?: string;
17805
+ /** 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. */
17806
+ key?: string;
17807
+ /** Required. The full resource name of the experiment to delete. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17808
+ name: string;
17809
+ /** OAuth 2.0 token for the current user. */
17810
+ oauth_token?: string;
17811
+ /** Returns response with indentations and line breaks. */
17812
+ prettyPrint?: boolean;
17813
+ /** 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. */
17814
+ quotaUser?: string;
17815
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17816
+ upload_protocol?: string;
17817
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17818
+ uploadType?: string;
17819
+ }): Request<{}>;
17820
+ /** Get an existing Experiment. */
17821
+ get(request?: {
17822
+ /** V1 error format. */
17823
+ '$.xgafv'?: '1' | '2';
17824
+ /** OAuth access token. */
17825
+ access_token?: string;
17826
+ /** Data format for response. */
17827
+ alt?: 'json' | 'media' | 'proto';
17828
+ /** JSONP */
17829
+ callback?: string;
17830
+ /** Selector specifying which fields to include in a partial response. */
17831
+ fields?: string;
17832
+ /** 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. */
17833
+ key?: string;
17834
+ /** Required. The full resource name of the experiment. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17835
+ name: string;
17836
+ /** OAuth 2.0 token for the current user. */
17837
+ oauth_token?: string;
17838
+ /** Returns response with indentations and line breaks. */
17839
+ prettyPrint?: boolean;
17840
+ /** 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. */
17841
+ quotaUser?: string;
17842
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17843
+ upload_protocol?: string;
17844
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17845
+ uploadType?: string;
17846
+ }): Request<GoogleCloudDiscoveryengineV1alphaAlphaEvolveExperiment>;
17847
+ /** List all AlphaEvolveExperiments in a given session. */
17848
+ list(request?: {
17849
+ /** V1 error format. */
17850
+ '$.xgafv'?: '1' | '2';
17851
+ /** OAuth access token. */
17852
+ access_token?: string;
17853
+ /** Data format for response. */
17854
+ alt?: 'json' | 'media' | 'proto';
17855
+ /** JSONP */
17856
+ callback?: string;
17857
+ /** Selector specifying which fields to include in a partial response. */
17858
+ fields?: string;
17859
+ /** 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. */
17860
+ key?: string;
17861
+ /** OAuth 2.0 token for the current user. */
17862
+ oauth_token?: string;
17863
+ /** Optional. The maximum number of experiments to return. The service may return fewer than this value. */
17864
+ pageSize?: number;
17865
+ /** Optional. A page token, received from a previous `ListAlphaEvolveExperiments` call. Provide this to retrieve the subsequent page. */
17866
+ pageToken?: string;
17867
+ /** Required. The parent resource name (Session) of the Session. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}` */
17868
+ parent: string;
17869
+ /** Returns response with indentations and line breaks. */
17870
+ prettyPrint?: boolean;
17871
+ /** 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. */
17872
+ quotaUser?: string;
17873
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17874
+ upload_protocol?: string;
17875
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17876
+ uploadType?: string;
17877
+ }): Request<GoogleCloudDiscoveryengineV1alphaListAlphaEvolveExperimentsResponse>;
17878
+ /** Resumes a workflow to process the AlphaEvolveExperiment. */
17879
+ resume(request: {
17880
+ /** V1 error format. */
17881
+ '$.xgafv'?: '1' | '2';
17882
+ /** OAuth access token. */
17883
+ access_token?: string;
17884
+ /** Data format for response. */
17885
+ alt?: 'json' | 'media' | 'proto';
17886
+ /** JSONP */
17887
+ callback?: string;
17888
+ /** Selector specifying which fields to include in a partial response. */
17889
+ fields?: string;
17890
+ /** 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. */
17891
+ key?: string;
17892
+ /** Required. Experiment to resume. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17893
+ name: string;
17894
+ /** OAuth 2.0 token for the current user. */
17895
+ oauth_token?: string;
17896
+ /** Returns response with indentations and line breaks. */
17897
+ prettyPrint?: boolean;
17898
+ /** 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. */
17899
+ quotaUser?: string;
17900
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17901
+ upload_protocol?: string;
17902
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17903
+ uploadType?: string;
17904
+ /** Request body */
17905
+ resource: GoogleCloudDiscoveryengineV1alphaResumeExperimentRequest;
17906
+ }): Request<GoogleLongrunningOperation>;
17907
+ resume(
17908
+ request: {
17909
+ /** V1 error format. */
17910
+ '$.xgafv'?: '1' | '2';
17911
+ /** OAuth access token. */
17912
+ access_token?: string;
17913
+ /** Data format for response. */
17914
+ alt?: 'json' | 'media' | 'proto';
17915
+ /** JSONP */
17916
+ callback?: string;
17917
+ /** Selector specifying which fields to include in a partial response. */
17918
+ fields?: string;
17919
+ /** 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. */
17920
+ key?: string;
17921
+ /** Required. Experiment to resume. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17922
+ name: string;
17923
+ /** OAuth 2.0 token for the current user. */
17924
+ oauth_token?: string;
17925
+ /** Returns response with indentations and line breaks. */
17926
+ prettyPrint?: boolean;
17927
+ /** 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. */
17928
+ quotaUser?: string;
17929
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17930
+ upload_protocol?: string;
17931
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17932
+ uploadType?: string;
17933
+ },
17934
+ body: GoogleCloudDiscoveryengineV1alphaResumeExperimentRequest,
17935
+ ): Request<GoogleLongrunningOperation>;
17936
+ /** Starts a workflow to process the AlphaEvolveExperiment. */
17937
+ start(request: {
17938
+ /** V1 error format. */
17939
+ '$.xgafv'?: '1' | '2';
17940
+ /** OAuth access token. */
17941
+ access_token?: string;
17942
+ /** Data format for response. */
17943
+ alt?: 'json' | 'media' | 'proto';
17944
+ /** JSONP */
17945
+ callback?: string;
17946
+ /** Selector specifying which fields to include in a partial response. */
17947
+ fields?: string;
17948
+ /** 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. */
17949
+ key?: string;
17950
+ /** Required. Experiment to start. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17951
+ name: string;
17952
+ /** OAuth 2.0 token for the current user. */
17953
+ oauth_token?: string;
17954
+ /** Returns response with indentations and line breaks. */
17955
+ prettyPrint?: boolean;
17956
+ /** 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. */
17957
+ quotaUser?: string;
17958
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17959
+ upload_protocol?: string;
17960
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17961
+ uploadType?: string;
17962
+ /** Request body */
17963
+ resource: GoogleCloudDiscoveryengineV1alphaStartExperimentRequest;
17964
+ }): Request<GoogleLongrunningOperation>;
17965
+ start(
17966
+ request: {
17967
+ /** V1 error format. */
17968
+ '$.xgafv'?: '1' | '2';
17969
+ /** OAuth access token. */
17970
+ access_token?: string;
17971
+ /** Data format for response. */
17972
+ alt?: 'json' | 'media' | 'proto';
17973
+ /** JSONP */
17974
+ callback?: string;
17975
+ /** Selector specifying which fields to include in a partial response. */
17976
+ fields?: string;
17977
+ /** 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. */
17978
+ key?: string;
17979
+ /** Required. Experiment to start. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
17980
+ name: string;
17981
+ /** OAuth 2.0 token for the current user. */
17982
+ oauth_token?: string;
17983
+ /** Returns response with indentations and line breaks. */
17984
+ prettyPrint?: boolean;
17985
+ /** 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. */
17986
+ quotaUser?: string;
17987
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17988
+ upload_protocol?: string;
17989
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17990
+ uploadType?: string;
17991
+ },
17992
+ body: GoogleCloudDiscoveryengineV1alphaStartExperimentRequest,
17993
+ ): Request<GoogleLongrunningOperation>;
17994
+ /** Adds an AlphaEvolveProgramEvaluation to the experiment. */
17995
+ submitProgramsEvaluations(request: {
17996
+ /** V1 error format. */
17997
+ '$.xgafv'?: '1' | '2';
17998
+ /** OAuth access token. */
17999
+ access_token?: string;
18000
+ /** Data format for response. */
18001
+ alt?: 'json' | 'media' | 'proto';
18002
+ /** JSONP */
18003
+ callback?: string;
18004
+ /** Selector specifying which fields to include in a partial response. */
18005
+ fields?: string;
18006
+ /** 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. */
18007
+ key?: string;
18008
+ /** OAuth 2.0 token for the current user. */
18009
+ oauth_token?: string;
18010
+ /** Required. The parent resource name (AlphaEvolveExperiment) of the Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
18011
+ parent: string;
18012
+ /** Returns response with indentations and line breaks. */
18013
+ prettyPrint?: boolean;
18014
+ /** 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. */
18015
+ quotaUser?: string;
18016
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
18017
+ upload_protocol?: string;
18018
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18019
+ uploadType?: string;
18020
+ /** Request body */
18021
+ resource: GoogleCloudDiscoveryengineV1alphaSubmitProgramsEvaluationsRequest;
18022
+ }): Request<{}>;
18023
+ submitProgramsEvaluations(
18024
+ request: {
18025
+ /** V1 error format. */
18026
+ '$.xgafv'?: '1' | '2';
18027
+ /** OAuth access token. */
18028
+ access_token?: string;
18029
+ /** Data format for response. */
18030
+ alt?: 'json' | 'media' | 'proto';
18031
+ /** JSONP */
18032
+ callback?: string;
18033
+ /** Selector specifying which fields to include in a partial response. */
18034
+ fields?: string;
18035
+ /** 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. */
18036
+ key?: string;
18037
+ /** OAuth 2.0 token for the current user. */
18038
+ oauth_token?: string;
18039
+ /** Required. The parent resource name (AlphaEvolveExperiment) of the Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/sessions/{session}/alphaEvolveExperiments/{alpha_evolve_experiment}` */
18040
+ parent: string;
18041
+ /** Returns response with indentations and line breaks. */
18042
+ prettyPrint?: boolean;
18043
+ /** 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. */
18044
+ quotaUser?: string;
18045
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
18046
+ upload_protocol?: string;
18047
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18048
+ uploadType?: string;
18049
+ },
18050
+ body: GoogleCloudDiscoveryengineV1alphaSubmitProgramsEvaluationsRequest,
18051
+ ): Request<{}>;
18052
+ alphaEvolvePrograms: AlphaEvolveProgramsResource;
17343
18053
  operations: OperationsResource;
17344
18054
  }
17345
18055
  interface AnswersResource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.discoveryengine-v1alpha",
3
- "version": "0.3.20260629",
3
+ "version": "0.3.20260705",
4
4
  "description": "TypeScript typings for Discovery Engine API v1alpha",
5
5
  "repository": {
6
6
  "type": "git",