google-apis-discoveryengine_v1 0.27.0 → 0.29.0

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.
@@ -485,6 +485,66 @@ module Google
485
485
  end
486
486
  end
487
487
 
488
+ # The error payload that is populated on LRO sync APIs, including the following:
489
+ # * `google.cloud.discoveryengine.v1main.DataConnectorService.SetUpDataConnector`
490
+ # * `google.cloud.discoveryengine.v1main.DataConnectorService.StartConnectorRun`
491
+ class GoogleCloudDiscoveryengineLoggingConnectorRunErrorContext
492
+ include Google::Apis::Core::Hashable
493
+
494
+ # The full resource name of the Connector Run. Format: `projects/*/locations/*/
495
+ # collections/*/dataConnector/connectorRuns/*`. The `connector_run_id` is system-
496
+ # generated.
497
+ # Corresponds to the JSON property `connectorRun`
498
+ # @return [String]
499
+ attr_accessor :connector_run
500
+
501
+ # The full resource name of the DataConnector. Format: `projects/*/locations/*/
502
+ # collections/*/dataConnector`.
503
+ # Corresponds to the JSON property `dataConnector`
504
+ # @return [String]
505
+ attr_accessor :data_connector
506
+
507
+ # The time when the connector run ended.
508
+ # Corresponds to the JSON property `endTime`
509
+ # @return [String]
510
+ attr_accessor :end_time
511
+
512
+ # The entity to sync for the connector run.
513
+ # Corresponds to the JSON property `entity`
514
+ # @return [String]
515
+ attr_accessor :entity
516
+
517
+ # The operation resource name of the LRO to sync the connector.
518
+ # Corresponds to the JSON property `operation`
519
+ # @return [String]
520
+ attr_accessor :operation
521
+
522
+ # The time when the connector run started.
523
+ # Corresponds to the JSON property `startTime`
524
+ # @return [String]
525
+ attr_accessor :start_time
526
+
527
+ # The type of sync run. Can be one of the following: * `FULL` * `INCREMENTAL`
528
+ # Corresponds to the JSON property `syncType`
529
+ # @return [String]
530
+ attr_accessor :sync_type
531
+
532
+ def initialize(**args)
533
+ update!(**args)
534
+ end
535
+
536
+ # Update properties of this object
537
+ def update!(**args)
538
+ @connector_run = args[:connector_run] if args.key?(:connector_run)
539
+ @data_connector = args[:data_connector] if args.key?(:data_connector)
540
+ @end_time = args[:end_time] if args.key?(:end_time)
541
+ @entity = args[:entity] if args.key?(:entity)
542
+ @operation = args[:operation] if args.key?(:operation)
543
+ @start_time = args[:start_time] if args.key?(:start_time)
544
+ @sync_type = args[:sync_type] if args.key?(:sync_type)
545
+ end
546
+ end
547
+
488
548
  # A description of the context in which an error occurred.
489
549
  class GoogleCloudDiscoveryengineLoggingErrorContext
490
550
  include Google::Apis::Core::Hashable
@@ -515,6 +575,13 @@ module Google
515
575
  class GoogleCloudDiscoveryengineLoggingErrorLog
516
576
  include Google::Apis::Core::Hashable
517
577
 
578
+ # The error payload that is populated on LRO sync APIs, including the following:
579
+ # * `google.cloud.discoveryengine.v1main.DataConnectorService.SetUpDataConnector`
580
+ # * `google.cloud.discoveryengine.v1main.DataConnectorService.StartConnectorRun`
581
+ # Corresponds to the JSON property `connectorRunPayload`
582
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineLoggingConnectorRunErrorContext]
583
+ attr_accessor :connector_run_payload
584
+
518
585
  # A description of the context in which an error occurred.
519
586
  # Corresponds to the JSON property `context`
520
587
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineLoggingErrorContext]
@@ -574,6 +641,7 @@ module Google
574
641
 
575
642
  # Update properties of this object
576
643
  def update!(**args)
644
+ @connector_run_payload = args[:connector_run_payload] if args.key?(:connector_run_payload)
577
645
  @context = args[:context] if args.key?(:context)
578
646
  @import_payload = args[:import_payload] if args.key?(:import_payload)
579
647
  @message = args[:message] if args.key?(:message)
@@ -880,7 +948,9 @@ module Google
880
948
  class GoogleCloudDiscoveryengineV1AnswerCitation
881
949
  include Google::Apis::Core::Hashable
882
950
 
883
- # End of the attributed segment, exclusive.
951
+ # End of the attributed segment, exclusive. Measured in bytes (UTF-8 unicode).
952
+ # If there are multi-byte characters,such as non-ASCII characters, the index
953
+ # measurement is longer than the string length.
884
954
  # Corresponds to the JSON property `endIndex`
885
955
  # @return [Fixnum]
886
956
  attr_accessor :end_index
@@ -891,6 +961,8 @@ module Google
891
961
  attr_accessor :sources
892
962
 
893
963
  # Index indicates the start of the segment, measured in bytes (UTF-8 unicode).
964
+ # If there are multi-byte characters,such as non-ASCII characters, the index
965
+ # measurement is longer than the string length.
894
966
  # Corresponds to the JSON property `startIndex`
895
967
  # @return [Fixnum]
896
968
  attr_accessor :start_index
@@ -996,6 +1068,11 @@ module Google
996
1068
  attr_accessor :asynchronous_mode
997
1069
  alias_method :asynchronous_mode?, :asynchronous_mode
998
1070
 
1071
+ # End user specification.
1072
+ # Corresponds to the JSON property `endUserSpec`
1073
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestEndUserSpec]
1074
+ attr_accessor :end_user_spec
1075
+
999
1076
  # Grounding specification.
1000
1077
  # Corresponds to the JSON property `groundingSpec`
1001
1078
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestGroundingSpec]
@@ -1071,6 +1148,7 @@ module Google
1071
1148
  def update!(**args)
1072
1149
  @answer_generation_spec = args[:answer_generation_spec] if args.key?(:answer_generation_spec)
1073
1150
  @asynchronous_mode = args[:asynchronous_mode] if args.key?(:asynchronous_mode)
1151
+ @end_user_spec = args[:end_user_spec] if args.key?(:end_user_spec)
1074
1152
  @grounding_spec = args[:grounding_spec] if args.key?(:grounding_spec)
1075
1153
  @query = args[:query] if args.key?(:query)
1076
1154
  @query_understanding_spec = args[:query_understanding_spec] if args.key?(:query_understanding_spec)
@@ -1211,6 +1289,90 @@ module Google
1211
1289
  end
1212
1290
  end
1213
1291
 
1292
+ # End user specification.
1293
+ class GoogleCloudDiscoveryengineV1AnswerQueryRequestEndUserSpec
1294
+ include Google::Apis::Core::Hashable
1295
+
1296
+ # Optional. End user metadata.
1297
+ # Corresponds to the JSON property `endUserMetadata`
1298
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestEndUserSpecEndUserMetaData>]
1299
+ attr_accessor :end_user_metadata
1300
+
1301
+ def initialize(**args)
1302
+ update!(**args)
1303
+ end
1304
+
1305
+ # Update properties of this object
1306
+ def update!(**args)
1307
+ @end_user_metadata = args[:end_user_metadata] if args.key?(:end_user_metadata)
1308
+ end
1309
+ end
1310
+
1311
+ # End user metadata.
1312
+ class GoogleCloudDiscoveryengineV1AnswerQueryRequestEndUserSpecEndUserMetaData
1313
+ include Google::Apis::Core::Hashable
1314
+
1315
+ # Chunk information.
1316
+ # Corresponds to the JSON property `chunkInfo`
1317
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestEndUserSpecEndUserMetaDataChunkInfo]
1318
+ attr_accessor :chunk_info
1319
+
1320
+ def initialize(**args)
1321
+ update!(**args)
1322
+ end
1323
+
1324
+ # Update properties of this object
1325
+ def update!(**args)
1326
+ @chunk_info = args[:chunk_info] if args.key?(:chunk_info)
1327
+ end
1328
+ end
1329
+
1330
+ # Chunk information.
1331
+ class GoogleCloudDiscoveryengineV1AnswerQueryRequestEndUserSpecEndUserMetaDataChunkInfo
1332
+ include Google::Apis::Core::Hashable
1333
+
1334
+ # Chunk textual content. It is limited to 8000 characters.
1335
+ # Corresponds to the JSON property `content`
1336
+ # @return [String]
1337
+ attr_accessor :content
1338
+
1339
+ # Document metadata contains the information of the document of the current
1340
+ # chunk.
1341
+ # Corresponds to the JSON property `documentMetadata`
1342
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestEndUserSpecEndUserMetaDataChunkInfoDocumentMetadata]
1343
+ attr_accessor :document_metadata
1344
+
1345
+ def initialize(**args)
1346
+ update!(**args)
1347
+ end
1348
+
1349
+ # Update properties of this object
1350
+ def update!(**args)
1351
+ @content = args[:content] if args.key?(:content)
1352
+ @document_metadata = args[:document_metadata] if args.key?(:document_metadata)
1353
+ end
1354
+ end
1355
+
1356
+ # Document metadata contains the information of the document of the current
1357
+ # chunk.
1358
+ class GoogleCloudDiscoveryengineV1AnswerQueryRequestEndUserSpecEndUserMetaDataChunkInfoDocumentMetadata
1359
+ include Google::Apis::Core::Hashable
1360
+
1361
+ # Title of the document.
1362
+ # Corresponds to the JSON property `title`
1363
+ # @return [String]
1364
+ attr_accessor :title
1365
+
1366
+ def initialize(**args)
1367
+ update!(**args)
1368
+ end
1369
+
1370
+ # Update properties of this object
1371
+ def update!(**args)
1372
+ @title = args[:title] if args.key?(:title)
1373
+ end
1374
+ end
1375
+
1214
1376
  # Grounding specification.
1215
1377
  class GoogleCloudDiscoveryengineV1AnswerQueryRequestGroundingSpec
1216
1378
  include Google::Apis::Core::Hashable
@@ -1944,6 +2106,16 @@ module Google
1944
2106
  # @return [Hash<String,Object>]
1945
2107
  attr_accessor :struct_data
1946
2108
 
2109
+ # Output only. The title of the document.
2110
+ # Corresponds to the JSON property `title`
2111
+ # @return [String]
2112
+ attr_accessor :title
2113
+
2114
+ # Output only. The URI of the document.
2115
+ # Corresponds to the JSON property `uri`
2116
+ # @return [String]
2117
+ attr_accessor :uri
2118
+
1947
2119
  def initialize(**args)
1948
2120
  update!(**args)
1949
2121
  end
@@ -1952,6 +2124,8 @@ module Google
1952
2124
  def update!(**args)
1953
2125
  @document = args[:document] if args.key?(:document)
1954
2126
  @struct_data = args[:struct_data] if args.key?(:struct_data)
2127
+ @title = args[:title] if args.key?(:title)
2128
+ @uri = args[:uri] if args.key?(:uri)
1955
2129
  end
1956
2130
  end
1957
2131
 
@@ -2762,7 +2936,12 @@ module Google
2762
2936
  # @return [String]
2763
2937
  attr_accessor :claim_text
2764
2938
 
2765
- # Position indicating the end of the claim in the answer candidate, exclusive.
2939
+ # Position indicating the end of the claim in the answer candidate, exclusive,
2940
+ # in bytes. Note that this is not measured in characters and, therefore, must be
2941
+ # rendered as such. For example, if the claim text contains non-ASCII characters,
2942
+ # the start and end positions vary when measured in characters (programming-
2943
+ # language-dependent) and when measured in bytes (programming-language-
2944
+ # independent).
2766
2945
  # Corresponds to the JSON property `endPos`
2767
2946
  # @return [Fixnum]
2768
2947
  attr_accessor :end_pos
@@ -2777,7 +2956,12 @@ module Google
2777
2956
  alias_method :grounding_check_required?, :grounding_check_required
2778
2957
 
2779
2958
  # Position indicating the start of the claim in the answer candidate, measured
2780
- # in bytes.
2959
+ # in bytes. Note that this is not measured in characters and, therefore, must be
2960
+ # rendered in the user interface keeping in mind that some characters may take
2961
+ # more than one byte. For example, if the claim text contains non-ASCII
2962
+ # characters, the start and end positions vary when measured in characters (
2963
+ # programming-language-dependent) and when measured in bytes (programming-
2964
+ # language-independent).
2781
2965
  # Corresponds to the JSON property `startPos`
2782
2966
  # @return [Fixnum]
2783
2967
  attr_accessor :start_pos
@@ -3046,13 +3230,13 @@ module Google
3046
3230
  attr_accessor :is_default
3047
3231
  alias_method :is_default?, :is_default
3048
3232
 
3049
- # Kms key resource name which will be used to encrypt resources `projects/`
3233
+ # KMS key resource name which will be used to encrypt resources `projects/`
3050
3234
  # project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`keyId``.
3051
3235
  # Corresponds to the JSON property `kmsKey`
3052
3236
  # @return [String]
3053
3237
  attr_accessor :kms_key
3054
3238
 
3055
- # Kms key version resource name which will be used to encrypt resources `/
3239
+ # KMS key version resource name which will be used to encrypt resources `/
3056
3240
  # cryptoKeyVersions/`keyVersion``.
3057
3241
  # Corresponds to the JSON property `kmsKeyVersion`
3058
3242
  # @return [String]
@@ -3063,9 +3247,9 @@ module Google
3063
3247
  # @return [Fixnum]
3064
3248
  attr_accessor :last_rotation_timestamp_micros
3065
3249
 
3066
- # Required. Name of the CmekConfig, of the form `projects/`project`/locations/`
3067
- # location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/`
3068
- # cmekConfig``.
3250
+ # Required. The name of the CmekConfig of the form `projects/`project`/locations/
3251
+ # `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
3252
+ # `cmekConfig``.
3069
3253
  # Corresponds to the JSON property `name`
3070
3254
  # @return [String]
3071
3255
  attr_accessor :name
@@ -3075,7 +3259,7 @@ module Google
3075
3259
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SingleRegionKey>]
3076
3260
  attr_accessor :single_region_keys
3077
3261
 
3078
- # Output only. State of the CmekConfig.
3262
+ # Output only. The states of the CmekConfig.
3079
3263
  # Corresponds to the JSON property `state`
3080
3264
  # @return [String]
3081
3265
  attr_accessor :state
@@ -3451,6 +3635,13 @@ module Google
3451
3635
  # @return [Float]
3452
3636
  attr_accessor :fixed_boost
3453
3637
 
3638
+ # Specification for custom ranking based on customer specified attribute value.
3639
+ # It provides more controls for customized ranking than the simple (condition,
3640
+ # boost) combination above.
3641
+ # Corresponds to the JSON property `interpolationBoostSpec`
3642
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ControlBoostActionInterpolationBoostSpec]
3643
+ attr_accessor :interpolation_boost_spec
3644
+
3454
3645
  def initialize(**args)
3455
3646
  update!(**args)
3456
3647
  end
@@ -3461,6 +3652,85 @@ module Google
3461
3652
  @data_store = args[:data_store] if args.key?(:data_store)
3462
3653
  @filter = args[:filter] if args.key?(:filter)
3463
3654
  @fixed_boost = args[:fixed_boost] if args.key?(:fixed_boost)
3655
+ @interpolation_boost_spec = args[:interpolation_boost_spec] if args.key?(:interpolation_boost_spec)
3656
+ end
3657
+ end
3658
+
3659
+ # Specification for custom ranking based on customer specified attribute value.
3660
+ # It provides more controls for customized ranking than the simple (condition,
3661
+ # boost) combination above.
3662
+ class GoogleCloudDiscoveryengineV1ControlBoostActionInterpolationBoostSpec
3663
+ include Google::Apis::Core::Hashable
3664
+
3665
+ # Optional. The attribute type to be used to determine the boost amount. The
3666
+ # attribute value can be derived from the field value of the specified
3667
+ # field_name. In the case of numerical it is straightforward i.e.
3668
+ # attribute_value = numerical_field_value. In the case of freshness however,
3669
+ # attribute_value = (time.now() - datetime_field_value).
3670
+ # Corresponds to the JSON property `attributeType`
3671
+ # @return [String]
3672
+ attr_accessor :attribute_type
3673
+
3674
+ # Optional. The control points used to define the curve. The monotonic function (
3675
+ # defined through the interpolation_type above) passes through the control
3676
+ # points listed here.
3677
+ # Corresponds to the JSON property `controlPoints`
3678
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ControlBoostActionInterpolationBoostSpecControlPoint>]
3679
+ attr_accessor :control_points
3680
+
3681
+ # Optional. The name of the field whose value will be used to determine the
3682
+ # boost amount.
3683
+ # Corresponds to the JSON property `fieldName`
3684
+ # @return [String]
3685
+ attr_accessor :field_name
3686
+
3687
+ # Optional. The interpolation type to be applied to connect the control points
3688
+ # listed below.
3689
+ # Corresponds to the JSON property `interpolationType`
3690
+ # @return [String]
3691
+ attr_accessor :interpolation_type
3692
+
3693
+ def initialize(**args)
3694
+ update!(**args)
3695
+ end
3696
+
3697
+ # Update properties of this object
3698
+ def update!(**args)
3699
+ @attribute_type = args[:attribute_type] if args.key?(:attribute_type)
3700
+ @control_points = args[:control_points] if args.key?(:control_points)
3701
+ @field_name = args[:field_name] if args.key?(:field_name)
3702
+ @interpolation_type = args[:interpolation_type] if args.key?(:interpolation_type)
3703
+ end
3704
+ end
3705
+
3706
+ # The control points used to define the curve. The curve defined through these
3707
+ # control points can only be monotonically increasing or decreasing(constant
3708
+ # values are acceptable).
3709
+ class GoogleCloudDiscoveryengineV1ControlBoostActionInterpolationBoostSpecControlPoint
3710
+ include Google::Apis::Core::Hashable
3711
+
3712
+ # Optional. Can be one of: 1. The numerical field value. 2. The duration spec
3713
+ # for freshness: The value must be formatted as an XSD `dayTimeDuration` value (
3714
+ # a restricted subset of an ISO 8601 duration value). The pattern for this is: `
3715
+ # nDnM]`.
3716
+ # Corresponds to the JSON property `attributeValue`
3717
+ # @return [String]
3718
+ attr_accessor :attribute_value
3719
+
3720
+ # Optional. The value between -1 to 1 by which to boost the score if the
3721
+ # attribute_value evaluates to the value specified above.
3722
+ # Corresponds to the JSON property `boostAmount`
3723
+ # @return [Float]
3724
+ attr_accessor :boost_amount
3725
+
3726
+ def initialize(**args)
3727
+ update!(**args)
3728
+ end
3729
+
3730
+ # Update properties of this object
3731
+ def update!(**args)
3732
+ @attribute_value = args[:attribute_value] if args.key?(:attribute_value)
3733
+ @boost_amount = args[:boost_amount] if args.key?(:boost_amount)
3464
3734
  end
3465
3735
  end
3466
3736
 
@@ -3871,6 +4141,34 @@ module Google
3871
4141
  end
3872
4142
  end
3873
4143
 
4144
+ # Metadata related to the progress of the SiteSearchEngineService.CreateSitemap
4145
+ # operation. This will be returned by the google.longrunning.Operation.metadata
4146
+ # field.
4147
+ class GoogleCloudDiscoveryengineV1CreateSitemapMetadata
4148
+ include Google::Apis::Core::Hashable
4149
+
4150
+ # Operation create time.
4151
+ # Corresponds to the JSON property `createTime`
4152
+ # @return [String]
4153
+ attr_accessor :create_time
4154
+
4155
+ # Operation last update time. If the operation is done, this is also the finish
4156
+ # time.
4157
+ # Corresponds to the JSON property `updateTime`
4158
+ # @return [String]
4159
+ attr_accessor :update_time
4160
+
4161
+ def initialize(**args)
4162
+ update!(**args)
4163
+ end
4164
+
4165
+ # Update properties of this object
4166
+ def update!(**args)
4167
+ @create_time = args[:create_time] if args.key?(:create_time)
4168
+ @update_time = args[:update_time] if args.key?(:update_time)
4169
+ end
4170
+ end
4171
+
3874
4172
  # Metadata related to the progress of the SiteSearchEngineService.
3875
4173
  # CreateTargetSite operation. This will be returned by the google.longrunning.
3876
4174
  # Operation.metadata field.
@@ -4054,7 +4352,7 @@ module Google
4054
4352
  # @return [String]
4055
4353
  attr_accessor :create_time
4056
4354
 
4057
- # Output only. The id of the default Schema asscociated to this data store.
4355
+ # Output only. The id of the default Schema associated to this data store.
4058
4356
  # Corresponds to the JSON property `defaultSchemaId`
4059
4357
  # @return [String]
4060
4358
  attr_accessor :default_schema_id
@@ -4073,6 +4371,19 @@ module Google
4073
4371
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DocumentProcessingConfig]
4074
4372
  attr_accessor :document_processing_config
4075
4373
 
4374
+ # Config to data store for `HEALTHCARE_FHIR` vertical.
4375
+ # Corresponds to the JSON property `healthcareFhirConfig`
4376
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1HealthcareFhirConfig]
4377
+ attr_accessor :healthcare_fhir_config
4378
+
4379
+ # Immutable. The fully qualified resource name of the associated
4380
+ # IdentityMappingStore. This field can only be set for acl_enabled DataStores
4381
+ # with `THIRD_PARTY` or `GSUITE` IdP. Format: `projects/`project`/locations/`
4382
+ # location`/identityMappingStores/`identity_mapping_store``.
4383
+ # Corresponds to the JSON property `identityMappingStore`
4384
+ # @return [String]
4385
+ attr_accessor :identity_mapping_store
4386
+
4076
4387
  # Immutable. The industry vertical that the data store registers.
4077
4388
  # Corresponds to the JSON property `industryVertical`
4078
4389
  # @return [String]
@@ -4137,6 +4448,8 @@ module Google
4137
4448
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
4138
4449
  @display_name = args[:display_name] if args.key?(:display_name)
4139
4450
  @document_processing_config = args[:document_processing_config] if args.key?(:document_processing_config)
4451
+ @healthcare_fhir_config = args[:healthcare_fhir_config] if args.key?(:healthcare_fhir_config)
4452
+ @identity_mapping_store = args[:identity_mapping_store] if args.key?(:identity_mapping_store)
4140
4453
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
4141
4454
  @is_infobot_faq_data_store = args[:is_infobot_faq_data_store] if args.key?(:is_infobot_faq_data_store)
4142
4455
  @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
@@ -4217,6 +4530,34 @@ module Google
4217
4530
  end
4218
4531
  end
4219
4532
 
4533
+ # Metadata related to the progress of the CmekConfigService.DeleteCmekConfig
4534
+ # operation. This will be returned by the google.longrunning.Operation.metadata
4535
+ # field.
4536
+ class GoogleCloudDiscoveryengineV1DeleteCmekConfigMetadata
4537
+ include Google::Apis::Core::Hashable
4538
+
4539
+ # Operation create time.
4540
+ # Corresponds to the JSON property `createTime`
4541
+ # @return [String]
4542
+ attr_accessor :create_time
4543
+
4544
+ # Operation last update time. If the operation is done, this is also the finish
4545
+ # time.
4546
+ # Corresponds to the JSON property `updateTime`
4547
+ # @return [String]
4548
+ attr_accessor :update_time
4549
+
4550
+ def initialize(**args)
4551
+ update!(**args)
4552
+ end
4553
+
4554
+ # Update properties of this object
4555
+ def update!(**args)
4556
+ @create_time = args[:create_time] if args.key?(:create_time)
4557
+ @update_time = args[:update_time] if args.key?(:update_time)
4558
+ end
4559
+ end
4560
+
4220
4561
  # Metadata related to the progress of the DataStoreService.DeleteDataStore
4221
4562
  # operation. This will be returned by the google.longrunning.Operation.metadata
4222
4563
  # field.
@@ -4326,10 +4667,10 @@ module Google
4326
4667
  end
4327
4668
  end
4328
4669
 
4329
- # Metadata related to the progress of the SiteSearchEngineService.
4330
- # DeleteTargetSite operation. This will be returned by the google.longrunning.
4331
- # Operation.metadata field.
4332
- class GoogleCloudDiscoveryengineV1DeleteTargetSiteMetadata
4670
+ # Metadata related to the progress of the SiteSearchEngineService.DeleteSitemap
4671
+ # operation. This will be returned by the google.longrunning.Operation.metadata
4672
+ # field.
4673
+ class GoogleCloudDiscoveryengineV1DeleteSitemapMetadata
4333
4674
  include Google::Apis::Core::Hashable
4334
4675
 
4335
4676
  # Operation create time.
@@ -4355,9 +4696,9 @@ module Google
4355
4696
  end
4356
4697
 
4357
4698
  # Metadata related to the progress of the SiteSearchEngineService.
4358
- # DisableAdvancedSiteSearch operation. This will be returned by the google.
4359
- # longrunning.Operation.metadata field.
4360
- class GoogleCloudDiscoveryengineV1DisableAdvancedSiteSearchMetadata
4699
+ # DeleteTargetSite operation. This will be returned by the google.longrunning.
4700
+ # Operation.metadata field.
4701
+ class GoogleCloudDiscoveryengineV1DeleteTargetSiteMetadata
4361
4702
  include Google::Apis::Core::Hashable
4362
4703
 
4363
4704
  # Operation create time.
@@ -4382,7 +4723,35 @@ module Google
4382
4723
  end
4383
4724
  end
4384
4725
 
4385
- # Request message for SiteSearchEngineService.DisableAdvancedSiteSearch method.
4726
+ # Metadata related to the progress of the SiteSearchEngineService.
4727
+ # DisableAdvancedSiteSearch operation. This will be returned by the google.
4728
+ # longrunning.Operation.metadata field.
4729
+ class GoogleCloudDiscoveryengineV1DisableAdvancedSiteSearchMetadata
4730
+ include Google::Apis::Core::Hashable
4731
+
4732
+ # Operation create time.
4733
+ # Corresponds to the JSON property `createTime`
4734
+ # @return [String]
4735
+ attr_accessor :create_time
4736
+
4737
+ # Operation last update time. If the operation is done, this is also the finish
4738
+ # time.
4739
+ # Corresponds to the JSON property `updateTime`
4740
+ # @return [String]
4741
+ attr_accessor :update_time
4742
+
4743
+ def initialize(**args)
4744
+ update!(**args)
4745
+ end
4746
+
4747
+ # Update properties of this object
4748
+ def update!(**args)
4749
+ @create_time = args[:create_time] if args.key?(:create_time)
4750
+ @update_time = args[:update_time] if args.key?(:update_time)
4751
+ end
4752
+ end
4753
+
4754
+ # Request message for SiteSearchEngineService.DisableAdvancedSiteSearch method.
4386
4755
  class GoogleCloudDiscoveryengineV1DisableAdvancedSiteSearchRequest
4387
4756
  include Google::Apis::Core::Hashable
4388
4757
 
@@ -4818,6 +5187,25 @@ module Google
4818
5187
  end
4819
5188
  end
4820
5189
 
5190
+ # Double list.
5191
+ class GoogleCloudDiscoveryengineV1DoubleList
5192
+ include Google::Apis::Core::Hashable
5193
+
5194
+ # Double values.
5195
+ # Corresponds to the JSON property `values`
5196
+ # @return [Array<Float>]
5197
+ attr_accessor :values
5198
+
5199
+ def initialize(**args)
5200
+ update!(**args)
5201
+ end
5202
+
5203
+ # Update properties of this object
5204
+ def update!(**args)
5205
+ @values = args[:values] if args.key?(:values)
5206
+ end
5207
+ end
5208
+
4821
5209
  # Metadata related to the progress of the SiteSearchEngineService.
4822
5210
  # EnableAdvancedSiteSearch operation. This will be returned by the google.
4823
5211
  # longrunning.Operation.metadata field.
@@ -4983,6 +5371,17 @@ module Google
4983
5371
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1EngineChatEngineConfigAgentCreationConfig]
4984
5372
  attr_accessor :agent_creation_config
4985
5373
 
5374
+ # Optional. If the flag set to true, we allow the agent and engine are in
5375
+ # different locations, otherwise the agent and engine are required to be in the
5376
+ # same location. The flag is set to false by default. Note that the `
5377
+ # allow_cross_region` are one-time consumed by and passed to EngineService.
5378
+ # CreateEngine. It means they cannot be retrieved using EngineService.GetEngine
5379
+ # or EngineService.ListEngines API after engine creation.
5380
+ # Corresponds to the JSON property `allowCrossRegion`
5381
+ # @return [Boolean]
5382
+ attr_accessor :allow_cross_region
5383
+ alias_method :allow_cross_region?, :allow_cross_region
5384
+
4986
5385
  # The resource name of an exist Dialogflow agent to link to this Chat Engine.
4987
5386
  # Customers can either provide `agent_creation_config` to create agent or
4988
5387
  # provide an agent name that links the agent with the Chat engine. Format: `
@@ -5002,6 +5401,7 @@ module Google
5002
5401
  # Update properties of this object
5003
5402
  def update!(**args)
5004
5403
  @agent_creation_config = args[:agent_creation_config] if args.key?(:agent_creation_config)
5404
+ @allow_cross_region = args[:allow_cross_region] if args.key?(:allow_cross_region)
5005
5405
  @dialogflow_agent_to_link = args[:dialogflow_agent_to_link] if args.key?(:dialogflow_agent_to_link)
5006
5406
  end
5007
5407
  end
@@ -5193,6 +5593,44 @@ module Google
5193
5593
  end
5194
5594
  end
5195
5595
 
5596
+ # Response message for SiteSearchEngineService.FetchSitemaps method.
5597
+ class GoogleCloudDiscoveryengineV1FetchSitemapsResponse
5598
+ include Google::Apis::Core::Hashable
5599
+
5600
+ # List of Sitemaps fetched.
5601
+ # Corresponds to the JSON property `sitemapsMetadata`
5602
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FetchSitemapsResponseSitemapMetadata>]
5603
+ attr_accessor :sitemaps_metadata
5604
+
5605
+ def initialize(**args)
5606
+ update!(**args)
5607
+ end
5608
+
5609
+ # Update properties of this object
5610
+ def update!(**args)
5611
+ @sitemaps_metadata = args[:sitemaps_metadata] if args.key?(:sitemaps_metadata)
5612
+ end
5613
+ end
5614
+
5615
+ # Contains a Sitemap and its metadata.
5616
+ class GoogleCloudDiscoveryengineV1FetchSitemapsResponseSitemapMetadata
5617
+ include Google::Apis::Core::Hashable
5618
+
5619
+ # A sitemap for the SiteSearchEngine.
5620
+ # Corresponds to the JSON property `sitemap`
5621
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Sitemap]
5622
+ attr_accessor :sitemap
5623
+
5624
+ def initialize(**args)
5625
+ update!(**args)
5626
+ end
5627
+
5628
+ # Update properties of this object
5629
+ def update!(**args)
5630
+ @sitemap = args[:sitemap] if args.key?(:sitemap)
5631
+ end
5632
+ end
5633
+
5196
5634
  # Cloud FhirStore source import data from.
5197
5635
  class GoogleCloudDiscoveryengineV1FhirStoreSource
5198
5636
  include Google::Apis::Core::Hashable
@@ -5327,46 +5765,21 @@ module Google
5327
5765
  end
5328
5766
  end
5329
5767
 
5330
- # Top-level message sent by the client for the `GenerateGroundedContent` method.
5331
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequest
5768
+ # Grounding Fact.
5769
+ class GoogleCloudDiscoveryengineV1GroundingFact
5332
5770
  include Google::Apis::Core::Hashable
5333
5771
 
5334
- # Content of the current conversation with the model. For single-turn queries,
5335
- # this is a single instance. For multi-turn queries, this is a repeated field
5336
- # that contains conversation history + latest request.
5337
- # Corresponds to the JSON property `contents`
5338
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent>]
5339
- attr_accessor :contents
5340
-
5341
- # Content generation specification.
5342
- # Corresponds to the JSON property `generationSpec`
5343
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGenerationSpec]
5344
- attr_accessor :generation_spec
5345
-
5346
- # Grounding specification.
5347
- # Corresponds to the JSON property `groundingSpec`
5348
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSpec]
5349
- attr_accessor :grounding_spec
5350
-
5351
- # Base structured datatype containing multi-part content of a message.
5352
- # Corresponds to the JSON property `systemInstruction`
5353
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent]
5354
- attr_accessor :system_instruction
5355
-
5356
- # The user labels applied to a resource must meet the following requirements: *
5357
- # Each resource can have multiple labels, up to a maximum of 64. * Each label
5358
- # must be a key-value pair. * Keys have a minimum length of 1 character and a
5359
- # maximum length of 63 characters and cannot be empty. Values can be empty and
5360
- # have a maximum length of 63 characters. * Keys and values can contain only
5361
- # lowercase letters, numeric characters, underscores, and dashes. All characters
5362
- # must use UTF-8 encoding, and international characters are allowed. * The key
5363
- # portion of a label must be unique. However, you can use the same key with
5364
- # multiple resources. * Keys must start with a lowercase letter or international
5365
- # character. See [Google Cloud Document](https://cloud.google.com/resource-
5366
- # manager/docs/creating-managing-labels#requirements) for more details.
5367
- # Corresponds to the JSON property `userLabels`
5772
+ # Attributes associated with the fact. Common attributes include `source` (
5773
+ # indicating where the fact was sourced from), `author` (indicating the author
5774
+ # of the fact), and so on.
5775
+ # Corresponds to the JSON property `attributes`
5368
5776
  # @return [Hash<String,String>]
5369
- attr_accessor :user_labels
5777
+ attr_accessor :attributes
5778
+
5779
+ # Text content of the fact. Can be at most 10K characters long.
5780
+ # Corresponds to the JSON property `factText`
5781
+ # @return [String]
5782
+ attr_accessor :fact_text
5370
5783
 
5371
5784
  def initialize(**args)
5372
5785
  update!(**args)
@@ -5374,22 +5787,30 @@ module Google
5374
5787
 
5375
5788
  # Update properties of this object
5376
5789
  def update!(**args)
5377
- @contents = args[:contents] if args.key?(:contents)
5378
- @generation_spec = args[:generation_spec] if args.key?(:generation_spec)
5379
- @grounding_spec = args[:grounding_spec] if args.key?(:grounding_spec)
5380
- @system_instruction = args[:system_instruction] if args.key?(:system_instruction)
5381
- @user_labels = args[:user_labels] if args.key?(:user_labels)
5790
+ @attributes = args[:attributes] if args.key?(:attributes)
5791
+ @fact_text = args[:fact_text] if args.key?(:fact_text)
5382
5792
  end
5383
5793
  end
5384
5794
 
5385
- # Describes the options to customize dynamic retrieval.
5386
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfiguration
5795
+ # Config to data store for `HEALTHCARE_FHIR` vertical.
5796
+ class GoogleCloudDiscoveryengineV1HealthcareFhirConfig
5387
5797
  include Google::Apis::Core::Hashable
5388
5798
 
5389
- # Describes the predictor settings for dynamic retrieval.
5390
- # Corresponds to the JSON property `predictor`
5391
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfigurationDynamicRetrievalPredictor]
5392
- attr_accessor :predictor
5799
+ # Whether to enable configurable schema for `HEALTHCARE_FHIR` vertical. If set
5800
+ # to `true`, the predefined healthcare fhir schema can be extended for more
5801
+ # customized searching and filtering.
5802
+ # Corresponds to the JSON property `enableConfigurableSchema`
5803
+ # @return [Boolean]
5804
+ attr_accessor :enable_configurable_schema
5805
+ alias_method :enable_configurable_schema?, :enable_configurable_schema
5806
+
5807
+ # Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If
5808
+ # set to `true`, the batch ingestion will be processed in a static indexing mode
5809
+ # which is slower but more capable of handling larger volume.
5810
+ # Corresponds to the JSON property `enableStaticIndexingForBatchIngestion`
5811
+ # @return [Boolean]
5812
+ attr_accessor :enable_static_indexing_for_batch_ingestion
5813
+ alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
5393
5814
 
5394
5815
  def initialize(**args)
5395
5816
  update!(**args)
@@ -5397,24 +5818,34 @@ module Google
5397
5818
 
5398
5819
  # Update properties of this object
5399
5820
  def update!(**args)
5400
- @predictor = args[:predictor] if args.key?(:predictor)
5821
+ @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
5822
+ @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
5401
5823
  end
5402
5824
  end
5403
5825
 
5404
- # Describes the predictor settings for dynamic retrieval.
5405
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfigurationDynamicRetrievalPredictor
5826
+ # Identity Mapping Entry that maps an external identity to an internal identity.
5827
+ class GoogleCloudDiscoveryengineV1IdentityMappingEntry
5406
5828
  include Google::Apis::Core::Hashable
5407
5829
 
5408
- # The value of the threshold. If the predictor will predict a value smaller than
5409
- # this, it would suppress grounding in the source.
5410
- # Corresponds to the JSON property `threshold`
5411
- # @return [Float]
5412
- attr_accessor :threshold
5830
+ # Required. Identity outside the customer identity provider. The length limit of
5831
+ # external identity will be of 100 characters.
5832
+ # Corresponds to the JSON property `externalIdentity`
5833
+ # @return [String]
5834
+ attr_accessor :external_identity
5413
5835
 
5414
- # The version of the predictor to be used in dynamic retrieval.
5415
- # Corresponds to the JSON property `version`
5836
+ # Group identifier. For Google Workspace user account, group_id should be the
5837
+ # google workspace group email. For non-google identity provider, group_id is
5838
+ # the mapped group identifier configured during the workforcepool config.
5839
+ # Corresponds to the JSON property `groupId`
5416
5840
  # @return [String]
5417
- attr_accessor :version
5841
+ attr_accessor :group_id
5842
+
5843
+ # User identifier. For Google Workspace user account, user_id should be the
5844
+ # google workspace user email. For non-google identity provider, user_id is the
5845
+ # mapped user identifier configured during the workforcepool config.
5846
+ # Corresponds to the JSON property `userId`
5847
+ # @return [String]
5848
+ attr_accessor :user_id
5418
5849
 
5419
5850
  def initialize(**args)
5420
5851
  update!(**args)
@@ -5422,60 +5853,32 @@ module Google
5422
5853
 
5423
5854
  # Update properties of this object
5424
5855
  def update!(**args)
5425
- @threshold = args[:threshold] if args.key?(:threshold)
5426
- @version = args[:version] if args.key?(:version)
5856
+ @external_identity = args[:external_identity] if args.key?(:external_identity)
5857
+ @group_id = args[:group_id] if args.key?(:group_id)
5858
+ @user_id = args[:user_id] if args.key?(:user_id)
5427
5859
  end
5428
5860
  end
5429
5861
 
5430
- # Content generation specification.
5431
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGenerationSpec
5862
+ # IdentityMappingEntry LongRunningOperation metadata for
5863
+ # IdentityMappingStoreService.ImportIdentityMappings and
5864
+ # IdentityMappingStoreService.PurgeIdentityMappings
5865
+ class GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata
5432
5866
  include Google::Apis::Core::Hashable
5433
5867
 
5434
- # If specified, custom value for frequency penalty will be used.
5435
- # Corresponds to the JSON property `frequencyPenalty`
5436
- # @return [Float]
5437
- attr_accessor :frequency_penalty
5438
-
5439
- # Language code for content. Use language tags defined by [BCP47](https://www.
5440
- # rfc-editor.org/rfc/bcp/bcp47.txt).
5441
- # Corresponds to the JSON property `languageCode`
5442
- # @return [String]
5443
- attr_accessor :language_code
5444
-
5445
- # If specified, custom value for max output tokens will be used.
5446
- # Corresponds to the JSON property `maxOutputTokens`
5868
+ # The number of IdentityMappingEntries that failed to be processed.
5869
+ # Corresponds to the JSON property `failureCount`
5447
5870
  # @return [Fixnum]
5448
- attr_accessor :max_output_tokens
5449
-
5450
- # Specifies which Vertex model id to use for generation.
5451
- # Corresponds to the JSON property `modelId`
5452
- # @return [String]
5453
- attr_accessor :model_id
5454
-
5455
- # If specified, custom value for presence penalty will be used.
5456
- # Corresponds to the JSON property `presencePenalty`
5457
- # @return [Float]
5458
- attr_accessor :presence_penalty
5871
+ attr_accessor :failure_count
5459
5872
 
5460
- # If specified, custom value for the seed will be used.
5461
- # Corresponds to the JSON property `seed`
5873
+ # The number of IdentityMappingEntries that were successfully processed.
5874
+ # Corresponds to the JSON property `successCount`
5462
5875
  # @return [Fixnum]
5463
- attr_accessor :seed
5464
-
5465
- # If specified, custom value for the temperature will be used.
5466
- # Corresponds to the JSON property `temperature`
5467
- # @return [Float]
5468
- attr_accessor :temperature
5876
+ attr_accessor :success_count
5469
5877
 
5470
- # If specified, custom value for top-k sampling will be used.
5471
- # Corresponds to the JSON property `topK`
5878
+ # The total number of IdentityMappingEntries that were processed.
5879
+ # Corresponds to the JSON property `totalCount`
5472
5880
  # @return [Fixnum]
5473
- attr_accessor :top_k
5474
-
5475
- # If specified, custom value for nucleus sampling will be used.
5476
- # Corresponds to the JSON property `topP`
5477
- # @return [Float]
5478
- attr_accessor :top_p
5881
+ attr_accessor :total_count
5479
5882
 
5480
5883
  def initialize(**args)
5481
5884
  update!(**args)
@@ -5483,36 +5886,37 @@ module Google
5483
5886
 
5484
5887
  # Update properties of this object
5485
5888
  def update!(**args)
5486
- @frequency_penalty = args[:frequency_penalty] if args.key?(:frequency_penalty)
5487
- @language_code = args[:language_code] if args.key?(:language_code)
5488
- @max_output_tokens = args[:max_output_tokens] if args.key?(:max_output_tokens)
5489
- @model_id = args[:model_id] if args.key?(:model_id)
5490
- @presence_penalty = args[:presence_penalty] if args.key?(:presence_penalty)
5491
- @seed = args[:seed] if args.key?(:seed)
5492
- @temperature = args[:temperature] if args.key?(:temperature)
5493
- @top_k = args[:top_k] if args.key?(:top_k)
5494
- @top_p = args[:top_p] if args.key?(:top_p)
5889
+ @failure_count = args[:failure_count] if args.key?(:failure_count)
5890
+ @success_count = args[:success_count] if args.key?(:success_count)
5891
+ @total_count = args[:total_count] if args.key?(:total_count)
5495
5892
  end
5496
5893
  end
5497
5894
 
5498
- # Grounding source.
5499
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSource
5895
+ # Identity Mapping Store which contains Identity Mapping Entries.
5896
+ class GoogleCloudDiscoveryengineV1IdentityMappingStore
5500
5897
  include Google::Apis::Core::Hashable
5501
5898
 
5502
- # Google Search config parameters.
5503
- # Corresponds to the JSON property `googleSearchSource`
5504
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceGoogleSearchSource]
5505
- attr_accessor :google_search_source
5899
+ # Configurations used to enable CMEK data encryption with Cloud KMS keys.
5900
+ # Corresponds to the JSON property `cmekConfig`
5901
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CmekConfig]
5902
+ attr_accessor :cmek_config
5506
5903
 
5507
- # Message to be used for grounding based on inline content.
5508
- # Corresponds to the JSON property `inlineSource`
5509
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceInlineSource]
5510
- attr_accessor :inline_source
5904
+ # Input only. The KMS key to be used to protect this Identity Mapping Store at
5905
+ # creation time. Must be set for requests that need to comply with CMEK Org
5906
+ # Policy protections. If this field is set and processed successfully, the
5907
+ # Identity Mapping Store will be protected by the KMS key, as indicated in the
5908
+ # cmek_config field.
5909
+ # Corresponds to the JSON property `kmsKeyName`
5910
+ # @return [String]
5911
+ attr_accessor :kms_key_name
5511
5912
 
5512
- # Message to be used for grounding with Vertex AI Search.
5513
- # Corresponds to the JSON property `searchSource`
5514
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceSearchSource]
5515
- attr_accessor :search_source
5913
+ # Immutable. The full resource name of the identity mapping store. Format: `
5914
+ # projects/`project`/locations/`location`/identityMappingStores/`
5915
+ # identity_mapping_store``. This field must be a UTF-8 encoded string with a
5916
+ # length limit of 1024 characters.
5917
+ # Corresponds to the JSON property `name`
5918
+ # @return [String]
5919
+ attr_accessor :name
5516
5920
 
5517
5921
  def initialize(**args)
5518
5922
  update!(**args)
@@ -5520,20 +5924,37 @@ module Google
5520
5924
 
5521
5925
  # Update properties of this object
5522
5926
  def update!(**args)
5523
- @google_search_source = args[:google_search_source] if args.key?(:google_search_source)
5524
- @inline_source = args[:inline_source] if args.key?(:inline_source)
5525
- @search_source = args[:search_source] if args.key?(:search_source)
5927
+ @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
5928
+ @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
5929
+ @name = args[:name] if args.key?(:name)
5526
5930
  end
5527
5931
  end
5528
5932
 
5529
- # Google Search config parameters.
5530
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceGoogleSearchSource
5933
+ # Metadata related to the progress of the ImportCompletionSuggestions operation.
5934
+ # This will be returned by the google.longrunning.Operation.metadata field.
5935
+ class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata
5531
5936
  include Google::Apis::Core::Hashable
5532
5937
 
5533
- # Describes the options to customize dynamic retrieval.
5534
- # Corresponds to the JSON property `dynamicRetrievalConfig`
5535
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfiguration]
5536
- attr_accessor :dynamic_retrieval_config
5938
+ # Operation create time.
5939
+ # Corresponds to the JSON property `createTime`
5940
+ # @return [String]
5941
+ attr_accessor :create_time
5942
+
5943
+ # Count of CompletionSuggestions that failed to be imported.
5944
+ # Corresponds to the JSON property `failureCount`
5945
+ # @return [Fixnum]
5946
+ attr_accessor :failure_count
5947
+
5948
+ # Count of CompletionSuggestions successfully imported.
5949
+ # Corresponds to the JSON property `successCount`
5950
+ # @return [Fixnum]
5951
+ attr_accessor :success_count
5952
+
5953
+ # Operation last update time. If the operation is done, this is also the finish
5954
+ # time.
5955
+ # Corresponds to the JSON property `updateTime`
5956
+ # @return [String]
5957
+ attr_accessor :update_time
5537
5958
 
5538
5959
  def initialize(**args)
5539
5960
  update!(**args)
@@ -5541,25 +5962,36 @@ module Google
5541
5962
 
5542
5963
  # Update properties of this object
5543
5964
  def update!(**args)
5544
- @dynamic_retrieval_config = args[:dynamic_retrieval_config] if args.key?(:dynamic_retrieval_config)
5965
+ @create_time = args[:create_time] if args.key?(:create_time)
5966
+ @failure_count = args[:failure_count] if args.key?(:failure_count)
5967
+ @success_count = args[:success_count] if args.key?(:success_count)
5968
+ @update_time = args[:update_time] if args.key?(:update_time)
5545
5969
  end
5546
5970
  end
5547
5971
 
5548
- # Message to be used for grounding based on inline content.
5549
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceInlineSource
5972
+ # Request message for CompletionService.ImportCompletionSuggestions method.
5973
+ class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsRequest
5550
5974
  include Google::Apis::Core::Hashable
5551
5975
 
5552
- # Attributes associated with the content. Common attributes include `source` (
5553
- # indicating where the content was sourced from) and `author` (indicating the
5554
- # author of the content).
5555
- # Corresponds to the JSON property `attributes`
5556
- # @return [Hash<String,String>]
5557
- attr_accessor :attributes
5976
+ # BigQuery source import data from.
5977
+ # Corresponds to the JSON property `bigquerySource`
5978
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BigQuerySource]
5979
+ attr_accessor :bigquery_source
5558
5980
 
5559
- # List of facts to be used for grounding.
5560
- # Corresponds to the JSON property `groundingFacts`
5561
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundingFact>]
5562
- attr_accessor :grounding_facts
5981
+ # Configuration of destination for Import related errors.
5982
+ # Corresponds to the JSON property `errorConfig`
5983
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ImportErrorConfig]
5984
+ attr_accessor :error_config
5985
+
5986
+ # Cloud Storage location for input content.
5987
+ # Corresponds to the JSON property `gcsSource`
5988
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GcsSource]
5989
+ attr_accessor :gcs_source
5990
+
5991
+ # The inline source for CompletionSuggestions.
5992
+ # Corresponds to the JSON property `inlineSource`
5993
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsRequestInlineSource]
5994
+ attr_accessor :inline_source
5563
5995
 
5564
5996
  def initialize(**args)
5565
5997
  update!(**args)
@@ -5567,465 +5999,21 @@ module Google
5567
5999
 
5568
6000
  # Update properties of this object
5569
6001
  def update!(**args)
5570
- @attributes = args[:attributes] if args.key?(:attributes)
5571
- @grounding_facts = args[:grounding_facts] if args.key?(:grounding_facts)
6002
+ @bigquery_source = args[:bigquery_source] if args.key?(:bigquery_source)
6003
+ @error_config = args[:error_config] if args.key?(:error_config)
6004
+ @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
6005
+ @inline_source = args[:inline_source] if args.key?(:inline_source)
5572
6006
  end
5573
6007
  end
5574
6008
 
5575
- # Message to be used for grounding with Vertex AI Search.
5576
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceSearchSource
6009
+ # The inline source for CompletionSuggestions.
6010
+ class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsRequestInlineSource
5577
6011
  include Google::Apis::Core::Hashable
5578
6012
 
5579
- # Filter expression to be applied to the search. The syntax is the same as
5580
- # SearchRequest.filter.
5581
- # Corresponds to the JSON property `filter`
5582
- # @return [String]
5583
- attr_accessor :filter
5584
-
5585
- # Number of search results to return. The default value is 10. The maximumm
5586
- # allowed value is 10.
5587
- # Corresponds to the JSON property `maxResultCount`
5588
- # @return [Fixnum]
5589
- attr_accessor :max_result_count
5590
-
5591
- # If set, safe search is enabled in Vertex AI Search requests.
5592
- # Corresponds to the JSON property `safeSearch`
5593
- # @return [Boolean]
5594
- attr_accessor :safe_search
5595
- alias_method :safe_search?, :safe_search
5596
-
5597
- # The resource name of the Engine to use. Format: `projects/`project`/locations/`
5598
- # location`/collections/`collection_id`/engines/`engine_id`/servingConfigs/`
5599
- # serving_config_id``
5600
- # Corresponds to the JSON property `servingConfig`
5601
- # @return [String]
5602
- attr_accessor :serving_config
5603
-
5604
- def initialize(**args)
5605
- update!(**args)
5606
- end
5607
-
5608
- # Update properties of this object
5609
- def update!(**args)
5610
- @filter = args[:filter] if args.key?(:filter)
5611
- @max_result_count = args[:max_result_count] if args.key?(:max_result_count)
5612
- @safe_search = args[:safe_search] if args.key?(:safe_search)
5613
- @serving_config = args[:serving_config] if args.key?(:serving_config)
5614
- end
5615
- end
5616
-
5617
- # Grounding specification.
5618
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSpec
5619
- include Google::Apis::Core::Hashable
5620
-
5621
- # Grounding sources.
5622
- # Corresponds to the JSON property `groundingSources`
5623
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSource>]
5624
- attr_accessor :grounding_sources
5625
-
5626
- def initialize(**args)
5627
- update!(**args)
5628
- end
5629
-
5630
- # Update properties of this object
5631
- def update!(**args)
5632
- @grounding_sources = args[:grounding_sources] if args.key?(:grounding_sources)
5633
- end
5634
- end
5635
-
5636
- # Response for the `GenerateGroundedContent` method.
5637
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse
5638
- include Google::Apis::Core::Hashable
5639
-
5640
- # Generated candidates.
5641
- # Corresponds to the JSON property `candidates`
5642
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidate>]
5643
- attr_accessor :candidates
5644
-
5645
- def initialize(**args)
5646
- update!(**args)
5647
- end
5648
-
5649
- # Update properties of this object
5650
- def update!(**args)
5651
- @candidates = args[:candidates] if args.key?(:candidates)
5652
- end
5653
- end
5654
-
5655
- # A response candidate generated from the model.
5656
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidate
5657
- include Google::Apis::Core::Hashable
5658
-
5659
- # Base structured datatype containing multi-part content of a message.
5660
- # Corresponds to the JSON property `content`
5661
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent]
5662
- attr_accessor :content
5663
-
5664
- # Citation for the generated content.
5665
- # Corresponds to the JSON property `groundingMetadata`
5666
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadata]
5667
- attr_accessor :grounding_metadata
5668
-
5669
- # The overall grounding score for the candidate, in the range of [0, 1].
5670
- # Corresponds to the JSON property `groundingScore`
5671
- # @return [Float]
5672
- attr_accessor :grounding_score
5673
-
5674
- # Index of the candidate.
5675
- # Corresponds to the JSON property `index`
5676
- # @return [Fixnum]
5677
- attr_accessor :index
5678
-
5679
- def initialize(**args)
5680
- update!(**args)
5681
- end
5682
-
5683
- # Update properties of this object
5684
- def update!(**args)
5685
- @content = args[:content] if args.key?(:content)
5686
- @grounding_metadata = args[:grounding_metadata] if args.key?(:grounding_metadata)
5687
- @grounding_score = args[:grounding_score] if args.key?(:grounding_score)
5688
- @index = args[:index] if args.key?(:index)
5689
- end
5690
- end
5691
-
5692
- # Citation for the generated content.
5693
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadata
5694
- include Google::Apis::Core::Hashable
5695
-
5696
- # GroundingSupport across all claims in the answer candidate. An support to a
5697
- # fact indicates that the claim is supported by the fact.
5698
- # Corresponds to the JSON property `groundingSupport`
5699
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataGroundingSupport>]
5700
- attr_accessor :grounding_support
5701
-
5702
- # Retrieval metadata to provide an understanding in the retrieval steps
5703
- # performed by the model. There can be multiple such messages which can
5704
- # correspond to different parts of the retrieval. This is a mechanism used to
5705
- # ensure transparency to our users.
5706
- # Corresponds to the JSON property `retrievalMetadata`
5707
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataRetrievalMetadata>]
5708
- attr_accessor :retrieval_metadata
5709
-
5710
- # Google search entry point.
5711
- # Corresponds to the JSON property `searchEntryPoint`
5712
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataSearchEntryPoint]
5713
- attr_accessor :search_entry_point
5714
-
5715
- # List of chunks to be attributed across all claims in the candidate. These are
5716
- # derived from the grounding sources supplied in the request.
5717
- # Corresponds to the JSON property `supportChunks`
5718
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FactChunk>]
5719
- attr_accessor :support_chunks
5720
-
5721
- # Web search queries for the following-up web search.
5722
- # Corresponds to the JSON property `webSearchQueries`
5723
- # @return [Array<String>]
5724
- attr_accessor :web_search_queries
5725
-
5726
- def initialize(**args)
5727
- update!(**args)
5728
- end
5729
-
5730
- # Update properties of this object
5731
- def update!(**args)
5732
- @grounding_support = args[:grounding_support] if args.key?(:grounding_support)
5733
- @retrieval_metadata = args[:retrieval_metadata] if args.key?(:retrieval_metadata)
5734
- @search_entry_point = args[:search_entry_point] if args.key?(:search_entry_point)
5735
- @support_chunks = args[:support_chunks] if args.key?(:support_chunks)
5736
- @web_search_queries = args[:web_search_queries] if args.key?(:web_search_queries)
5737
- end
5738
- end
5739
-
5740
- # Describes the metadata about dynamic retrieval.
5741
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalMetadata
5742
- include Google::Apis::Core::Hashable
5743
-
5744
- # Describes the metadata about the dynamic retrieval predictor.
5745
- # Corresponds to the JSON property `predictorMetadata`
5746
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalPredictorMetadata]
5747
- attr_accessor :predictor_metadata
5748
-
5749
- def initialize(**args)
5750
- update!(**args)
5751
- end
5752
-
5753
- # Update properties of this object
5754
- def update!(**args)
5755
- @predictor_metadata = args[:predictor_metadata] if args.key?(:predictor_metadata)
5756
- end
5757
- end
5758
-
5759
- # Describes the metadata about the dynamic retrieval predictor.
5760
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalPredictorMetadata
5761
- include Google::Apis::Core::Hashable
5762
-
5763
- # The value of the predictor. This should be between [0, 1] where a value of 0
5764
- # means that the query would not benefit from grounding, while a value of 1.0
5765
- # means that the query would benefit the most. In between values allow to
5766
- # differentiate between different usefulness scores for grounding.
5767
- # Corresponds to the JSON property `prediction`
5768
- # @return [Float]
5769
- attr_accessor :prediction
5770
-
5771
- # The version of the predictor which was used in dynamic retrieval.
5772
- # Corresponds to the JSON property `version`
5773
- # @return [String]
5774
- attr_accessor :version
5775
-
5776
- def initialize(**args)
5777
- update!(**args)
5778
- end
5779
-
5780
- # Update properties of this object
5781
- def update!(**args)
5782
- @prediction = args[:prediction] if args.key?(:prediction)
5783
- @version = args[:version] if args.key?(:version)
5784
- end
5785
- end
5786
-
5787
- # Grounding info for a claim in the candidate and its support.
5788
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataGroundingSupport
5789
- include Google::Apis::Core::Hashable
5790
-
5791
- # Text for the claim in the candidate. Always provided when a support is found.
5792
- # Corresponds to the JSON property `claimText`
5793
- # @return [String]
5794
- attr_accessor :claim_text
5795
-
5796
- # A list of indices (into 'support_chunks') specifying the citations associated
5797
- # with the claim. For instance [1,3,4] means that support_chunks[1],
5798
- # support_chunks[3], support_chunks[4] are the chunks attributed to the claim.
5799
- # Corresponds to the JSON property `supportChunkIndices`
5800
- # @return [Array<Fixnum>]
5801
- attr_accessor :support_chunk_indices
5802
-
5803
- # A score in the range of [0, 1] describing how grounded is a specific claim in
5804
- # the support chunks indicated. Higher value means that the claim is better
5805
- # supported by the chunks.
5806
- # Corresponds to the JSON property `supportScore`
5807
- # @return [Float]
5808
- attr_accessor :support_score
5809
-
5810
- def initialize(**args)
5811
- update!(**args)
5812
- end
5813
-
5814
- # Update properties of this object
5815
- def update!(**args)
5816
- @claim_text = args[:claim_text] if args.key?(:claim_text)
5817
- @support_chunk_indices = args[:support_chunk_indices] if args.key?(:support_chunk_indices)
5818
- @support_score = args[:support_score] if args.key?(:support_score)
5819
- end
5820
- end
5821
-
5822
- # Describes the metadata associated with a retrieval step.
5823
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataRetrievalMetadata
5824
- include Google::Apis::Core::Hashable
5825
-
5826
- # Describes the metadata about dynamic retrieval.
5827
- # Corresponds to the JSON property `dynamicRetrievalMetadata`
5828
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalMetadata]
5829
- attr_accessor :dynamic_retrieval_metadata
5830
-
5831
- # Describes the source to which the metadata is referring to.
5832
- # Corresponds to the JSON property `source`
5833
- # @return [String]
5834
- attr_accessor :source
5835
-
5836
- def initialize(**args)
5837
- update!(**args)
5838
- end
5839
-
5840
- # Update properties of this object
5841
- def update!(**args)
5842
- @dynamic_retrieval_metadata = args[:dynamic_retrieval_metadata] if args.key?(:dynamic_retrieval_metadata)
5843
- @source = args[:source] if args.key?(:source)
5844
- end
5845
- end
5846
-
5847
- # Google search entry point.
5848
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataSearchEntryPoint
5849
- include Google::Apis::Core::Hashable
5850
-
5851
- # Web content snippet that can be embedded in a web page or an app webview.
5852
- # Corresponds to the JSON property `renderedContent`
5853
- # @return [String]
5854
- attr_accessor :rendered_content
5855
-
5856
- # Base64 encoded JSON representing array of tuple.
5857
- # Corresponds to the JSON property `sdkBlob`
5858
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
5859
- # @return [String]
5860
- attr_accessor :sdk_blob
5861
-
5862
- def initialize(**args)
5863
- update!(**args)
5864
- end
5865
-
5866
- # Update properties of this object
5867
- def update!(**args)
5868
- @rendered_content = args[:rendered_content] if args.key?(:rendered_content)
5869
- @sdk_blob = args[:sdk_blob] if args.key?(:sdk_blob)
5870
- end
5871
- end
5872
-
5873
- # Base structured datatype containing multi-part content of a message.
5874
- class GoogleCloudDiscoveryengineV1GroundedGenerationContent
5875
- include Google::Apis::Core::Hashable
5876
-
5877
- # Ordered `Parts` that constitute a single message.
5878
- # Corresponds to the JSON property `parts`
5879
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContentPart>]
5880
- attr_accessor :parts
5881
-
5882
- # Producer of the content. Must be either `user` or `model`. Intended to be used
5883
- # for multi-turn conversations. Otherwise, it can be left unset.
5884
- # Corresponds to the JSON property `role`
5885
- # @return [String]
5886
- attr_accessor :role
5887
-
5888
- def initialize(**args)
5889
- update!(**args)
5890
- end
5891
-
5892
- # Update properties of this object
5893
- def update!(**args)
5894
- @parts = args[:parts] if args.key?(:parts)
5895
- @role = args[:role] if args.key?(:role)
5896
- end
5897
- end
5898
-
5899
- # Single part of content.
5900
- class GoogleCloudDiscoveryengineV1GroundedGenerationContentPart
5901
- include Google::Apis::Core::Hashable
5902
-
5903
- # Inline text.
5904
- # Corresponds to the JSON property `text`
5905
- # @return [String]
5906
- attr_accessor :text
5907
-
5908
- def initialize(**args)
5909
- update!(**args)
5910
- end
5911
-
5912
- # Update properties of this object
5913
- def update!(**args)
5914
- @text = args[:text] if args.key?(:text)
5915
- end
5916
- end
5917
-
5918
- # Grounding Fact.
5919
- class GoogleCloudDiscoveryengineV1GroundingFact
5920
- include Google::Apis::Core::Hashable
5921
-
5922
- # Attributes associated with the fact. Common attributes include `source` (
5923
- # indicating where the fact was sourced from), `author` (indicating the author
5924
- # of the fact), and so on.
5925
- # Corresponds to the JSON property `attributes`
5926
- # @return [Hash<String,String>]
5927
- attr_accessor :attributes
5928
-
5929
- # Text content of the fact. Can be at most 10K characters long.
5930
- # Corresponds to the JSON property `factText`
5931
- # @return [String]
5932
- attr_accessor :fact_text
5933
-
5934
- def initialize(**args)
5935
- update!(**args)
5936
- end
5937
-
5938
- # Update properties of this object
5939
- def update!(**args)
5940
- @attributes = args[:attributes] if args.key?(:attributes)
5941
- @fact_text = args[:fact_text] if args.key?(:fact_text)
5942
- end
5943
- end
5944
-
5945
- # Metadata related to the progress of the ImportCompletionSuggestions operation.
5946
- # This will be returned by the google.longrunning.Operation.metadata field.
5947
- class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsMetadata
5948
- include Google::Apis::Core::Hashable
5949
-
5950
- # Operation create time.
5951
- # Corresponds to the JSON property `createTime`
5952
- # @return [String]
5953
- attr_accessor :create_time
5954
-
5955
- # Count of CompletionSuggestions that failed to be imported.
5956
- # Corresponds to the JSON property `failureCount`
5957
- # @return [Fixnum]
5958
- attr_accessor :failure_count
5959
-
5960
- # Count of CompletionSuggestions successfully imported.
5961
- # Corresponds to the JSON property `successCount`
5962
- # @return [Fixnum]
5963
- attr_accessor :success_count
5964
-
5965
- # Operation last update time. If the operation is done, this is also the finish
5966
- # time.
5967
- # Corresponds to the JSON property `updateTime`
5968
- # @return [String]
5969
- attr_accessor :update_time
5970
-
5971
- def initialize(**args)
5972
- update!(**args)
5973
- end
5974
-
5975
- # Update properties of this object
5976
- def update!(**args)
5977
- @create_time = args[:create_time] if args.key?(:create_time)
5978
- @failure_count = args[:failure_count] if args.key?(:failure_count)
5979
- @success_count = args[:success_count] if args.key?(:success_count)
5980
- @update_time = args[:update_time] if args.key?(:update_time)
5981
- end
5982
- end
5983
-
5984
- # Request message for CompletionService.ImportCompletionSuggestions method.
5985
- class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsRequest
5986
- include Google::Apis::Core::Hashable
5987
-
5988
- # BigQuery source import data from.
5989
- # Corresponds to the JSON property `bigquerySource`
5990
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BigQuerySource]
5991
- attr_accessor :bigquery_source
5992
-
5993
- # Configuration of destination for Import related errors.
5994
- # Corresponds to the JSON property `errorConfig`
5995
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ImportErrorConfig]
5996
- attr_accessor :error_config
5997
-
5998
- # Cloud Storage location for input content.
5999
- # Corresponds to the JSON property `gcsSource`
6000
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GcsSource]
6001
- attr_accessor :gcs_source
6002
-
6003
- # The inline source for CompletionSuggestions.
6004
- # Corresponds to the JSON property `inlineSource`
6005
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsRequestInlineSource]
6006
- attr_accessor :inline_source
6007
-
6008
- def initialize(**args)
6009
- update!(**args)
6010
- end
6011
-
6012
- # Update properties of this object
6013
- def update!(**args)
6014
- @bigquery_source = args[:bigquery_source] if args.key?(:bigquery_source)
6015
- @error_config = args[:error_config] if args.key?(:error_config)
6016
- @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
6017
- @inline_source = args[:inline_source] if args.key?(:inline_source)
6018
- end
6019
- end
6020
-
6021
- # The inline source for CompletionSuggestions.
6022
- class GoogleCloudDiscoveryengineV1ImportCompletionSuggestionsRequestInlineSource
6023
- include Google::Apis::Core::Hashable
6024
-
6025
- # Required. A list of all denylist entries to import. Max of 1000 items.
6026
- # Corresponds to the JSON property `suggestions`
6027
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CompletionSuggestion>]
6028
- attr_accessor :suggestions
6013
+ # Required. A list of all denylist entries to import. Max of 1000 items.
6014
+ # Corresponds to the JSON property `suggestions`
6015
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CompletionSuggestion>]
6016
+ attr_accessor :suggestions
6029
6017
 
6030
6018
  def initialize(**args)
6031
6019
  update!(**args)
@@ -6163,6 +6151,14 @@ module Google
6163
6151
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FirestoreSource]
6164
6152
  attr_accessor :firestore_source
6165
6153
 
6154
+ # Optional. Whether to force refresh the unstructured content of the documents.
6155
+ # If set to `true`, the content part of the documents will be refreshed
6156
+ # regardless of the update status of the referencing content.
6157
+ # Corresponds to the JSON property `forceRefreshContent`
6158
+ # @return [Boolean]
6159
+ attr_accessor :force_refresh_content
6160
+ alias_method :force_refresh_content?, :force_refresh_content
6161
+
6166
6162
  # Cloud Storage location for input content.
6167
6163
  # Corresponds to the JSON property `gcsSource`
6168
6164
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GcsSource]
@@ -6223,6 +6219,7 @@ module Google
6223
6219
  @error_config = args[:error_config] if args.key?(:error_config)
6224
6220
  @fhir_store_source = args[:fhir_store_source] if args.key?(:fhir_store_source)
6225
6221
  @firestore_source = args[:firestore_source] if args.key?(:firestore_source)
6222
+ @force_refresh_content = args[:force_refresh_content] if args.key?(:force_refresh_content)
6226
6223
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
6227
6224
  @id_field = args[:id_field] if args.key?(:id_field)
6228
6225
  @inline_source = args[:inline_source] if args.key?(:inline_source)
@@ -6300,6 +6297,63 @@ module Google
6300
6297
  end
6301
6298
  end
6302
6299
 
6300
+ # Request message for IdentityMappingStoreService.ImportIdentityMappings
6301
+ class GoogleCloudDiscoveryengineV1ImportIdentityMappingsRequest
6302
+ include Google::Apis::Core::Hashable
6303
+
6304
+ # The inline source to import identity mapping entries from.
6305
+ # Corresponds to the JSON property `inlineSource`
6306
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ImportIdentityMappingsRequestInlineSource]
6307
+ attr_accessor :inline_source
6308
+
6309
+ def initialize(**args)
6310
+ update!(**args)
6311
+ end
6312
+
6313
+ # Update properties of this object
6314
+ def update!(**args)
6315
+ @inline_source = args[:inline_source] if args.key?(:inline_source)
6316
+ end
6317
+ end
6318
+
6319
+ # The inline source to import identity mapping entries from.
6320
+ class GoogleCloudDiscoveryengineV1ImportIdentityMappingsRequestInlineSource
6321
+ include Google::Apis::Core::Hashable
6322
+
6323
+ # A maximum of 10000 entries can be imported at one time
6324
+ # Corresponds to the JSON property `identityMappingEntries`
6325
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingEntry>]
6326
+ attr_accessor :identity_mapping_entries
6327
+
6328
+ def initialize(**args)
6329
+ update!(**args)
6330
+ end
6331
+
6332
+ # Update properties of this object
6333
+ def update!(**args)
6334
+ @identity_mapping_entries = args[:identity_mapping_entries] if args.key?(:identity_mapping_entries)
6335
+ end
6336
+ end
6337
+
6338
+ # Response message for IdentityMappingStoreService.ImportIdentityMappings
6339
+ class GoogleCloudDiscoveryengineV1ImportIdentityMappingsResponse
6340
+ include Google::Apis::Core::Hashable
6341
+
6342
+ # A sample of errors encountered while processing the request.
6343
+ # Corresponds to the JSON property `errorSamples`
6344
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleRpcStatus>]
6345
+ attr_accessor :error_samples
6346
+
6347
+ def initialize(**args)
6348
+ update!(**args)
6349
+ end
6350
+
6351
+ # Update properties of this object
6352
+ def update!(**args)
6353
+ @error_samples = args[:error_samples] if args.key?(:error_samples)
6354
+ end
6355
+ end
6356
+
6303
6357
  # Metadata related to the progress of the ImportSuggestionDenyListEntries
6304
6358
  # operation. This is returned by the google.longrunning.Operation.metadata field.
6305
6359
  class GoogleCloudDiscoveryengineV1ImportSuggestionDenyListEntriesMetadata
@@ -6699,12 +6753,64 @@ module Google
6699
6753
  class GoogleCloudDiscoveryengineV1ListEnginesResponse
6700
6754
  include Google::Apis::Core::Hashable
6701
6755
 
6702
- # All the customer's Engines.
6703
- # Corresponds to the JSON property `engines`
6704
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Engine>]
6705
- attr_accessor :engines
6756
+ # All the customer's Engines.
6757
+ # Corresponds to the JSON property `engines`
6758
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Engine>]
6759
+ attr_accessor :engines
6760
+
6761
+ # Not supported.
6762
+ # Corresponds to the JSON property `nextPageToken`
6763
+ # @return [String]
6764
+ attr_accessor :next_page_token
6765
+
6766
+ def initialize(**args)
6767
+ update!(**args)
6768
+ end
6769
+
6770
+ # Update properties of this object
6771
+ def update!(**args)
6772
+ @engines = args[:engines] if args.key?(:engines)
6773
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
6774
+ end
6775
+ end
6776
+
6777
+ # Response message for IdentityMappingStoreService.ListIdentityMappingStores
6778
+ class GoogleCloudDiscoveryengineV1ListIdentityMappingStoresResponse
6779
+ include Google::Apis::Core::Hashable
6780
+
6781
+ # The Identity Mapping Stores.
6782
+ # Corresponds to the JSON property `identityMappingStores`
6783
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore>]
6784
+ attr_accessor :identity_mapping_stores
6785
+
6786
+ # A token that can be sent as `page_token` to retrieve the next page. If this
6787
+ # field is omitted, there are no subsequent pages.
6788
+ # Corresponds to the JSON property `nextPageToken`
6789
+ # @return [String]
6790
+ attr_accessor :next_page_token
6791
+
6792
+ def initialize(**args)
6793
+ update!(**args)
6794
+ end
6795
+
6796
+ # Update properties of this object
6797
+ def update!(**args)
6798
+ @identity_mapping_stores = args[:identity_mapping_stores] if args.key?(:identity_mapping_stores)
6799
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
6800
+ end
6801
+ end
6802
+
6803
+ # Response message for IdentityMappingStoreService.ListIdentityMappings
6804
+ class GoogleCloudDiscoveryengineV1ListIdentityMappingsResponse
6805
+ include Google::Apis::Core::Hashable
6806
+
6807
+ # The Identity Mapping Entries.
6808
+ # Corresponds to the JSON property `identityMappingEntries`
6809
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingEntry>]
6810
+ attr_accessor :identity_mapping_entries
6706
6811
 
6707
- # Not supported.
6812
+ # A token that can be sent as `page_token` to retrieve the next page. If this
6813
+ # field is omitted, there are no subsequent pages.
6708
6814
  # Corresponds to the JSON property `nextPageToken`
6709
6815
  # @return [String]
6710
6816
  attr_accessor :next_page_token
@@ -6715,7 +6821,7 @@ module Google
6715
6821
 
6716
6822
  # Update properties of this object
6717
6823
  def update!(**args)
6718
- @engines = args[:engines] if args.key?(:engines)
6824
+ @identity_mapping_entries = args[:identity_mapping_entries] if args.key?(:identity_mapping_entries)
6719
6825
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
6720
6826
  end
6721
6827
  end
@@ -7296,6 +7402,67 @@ module Google
7296
7402
  end
7297
7403
  end
7298
7404
 
7405
+ # Request message for IdentityMappingStoreService.PurgeIdentityMappings
7406
+ class GoogleCloudDiscoveryengineV1PurgeIdentityMappingsRequest
7407
+ include Google::Apis::Core::Hashable
7408
+
7409
+ # Filter matching identity mappings to purge. The eligible field for filtering
7410
+ # is: * `update_time`: in ISO 8601 "zulu" format. * `external_id` Examples: *
7411
+ # Deleting all identity mappings updated in a time range: `update_time > "2012-
7412
+ # 04-23T18:25:43.511Z" AND update_time < "2012-04-23T18:30:43.511Z"` * Deleting
7413
+ # all identity mappings for a given external_id: `external_id = "id1"` *
7414
+ # Deleting all identity mappings inside an identity mapping store: `*` The
7415
+ # filtering fields are assumed to have an implicit AND. Should not be used with
7416
+ # source. An error will be thrown, if both are provided.
7417
+ # Corresponds to the JSON property `filter`
7418
+ # @return [String]
7419
+ attr_accessor :filter
7420
+
7421
+ # Actually performs the purge. If `force` is set to false, return the expected
7422
+ # purge count without deleting any identity mappings. This field is only
7423
+ # supported for purge with filter. For input source this field is ignored and
7424
+ # data will be purged regardless of the value of this field.
7425
+ # Corresponds to the JSON property `force`
7426
+ # @return [Boolean]
7427
+ attr_accessor :force
7428
+ alias_method :force?, :force
7429
+
7430
+ # The inline source to purge identity mapping entries from.
7431
+ # Corresponds to the JSON property `inlineSource`
7432
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PurgeIdentityMappingsRequestInlineSource]
7433
+ attr_accessor :inline_source
7434
+
7435
+ def initialize(**args)
7436
+ update!(**args)
7437
+ end
7438
+
7439
+ # Update properties of this object
7440
+ def update!(**args)
7441
+ @filter = args[:filter] if args.key?(:filter)
7442
+ @force = args[:force] if args.key?(:force)
7443
+ @inline_source = args[:inline_source] if args.key?(:inline_source)
7444
+ end
7445
+ end
7446
+
7447
+ # The inline source to purge identity mapping entries from.
7448
+ class GoogleCloudDiscoveryengineV1PurgeIdentityMappingsRequestInlineSource
7449
+ include Google::Apis::Core::Hashable
7450
+
7451
+ # A maximum of 10000 entries can be purged at one time
7452
+ # Corresponds to the JSON property `identityMappingEntries`
7453
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingEntry>]
7454
+ attr_accessor :identity_mapping_entries
7455
+
7456
+ def initialize(**args)
7457
+ update!(**args)
7458
+ end
7459
+
7460
+ # Update properties of this object
7461
+ def update!(**args)
7462
+ @identity_mapping_entries = args[:identity_mapping_entries] if args.key?(:identity_mapping_entries)
7463
+ end
7464
+ end
7465
+
7299
7466
  # Metadata related to the progress of the PurgeSuggestionDenyListEntries
7300
7467
  # operation. This is returned by the google.longrunning.Operation.metadata field.
7301
7468
  class GoogleCloudDiscoveryengineV1PurgeSuggestionDenyListEntriesMetadata
@@ -7441,7 +7608,7 @@ module Google
7441
7608
  alias_method :ignore_record_details_in_response?, :ignore_record_details_in_response
7442
7609
 
7443
7610
  # The identifier of the model to use. It is one of: * `semantic-ranker-512@
7444
- # latest`: Semantic ranking model with maxiumn input token size 512. It is set
7611
+ # latest`: Semantic ranking model with maximum input token size 512. It is set
7445
7612
  # to `semantic-ranker-512@latest` by default if unspecified.
7446
7613
  # Corresponds to the JSON property `model`
7447
7614
  # @return [String]
@@ -7726,9 +7893,7 @@ module Google
7726
7893
  class GoogleCloudDiscoveryengineV1RecrawlUrisRequest
7727
7894
  include Google::Apis::Core::Hashable
7728
7895
 
7729
- # Optional. Full resource name of the `SiteCredential`, such as `projects/*/
7730
- # locations/*/collections/*/dataStores/*/siteSearchEngine/siteCredentials/*`.
7731
- # Only set to crawl private URIs.
7896
+ # Optional. Credential id to use for crawling.
7732
7897
  # Corresponds to the JSON property `siteCredential`
7733
7898
  # @return [String]
7734
7899
  attr_accessor :site_credential
@@ -7981,10 +8146,10 @@ module Google
7981
8146
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestContentSearchSpec]
7982
8147
  attr_accessor :content_search_spec
7983
8148
 
7984
- # Specs defining DataStores to filter on in a search call and configurations for
7985
- # those data stores. This is only considered for Engines with multiple data
7986
- # stores. For engines with a single data store, the specs directly under
7987
- # SearchRequest should be used.
8149
+ # Specifications that define the specific [DataStore]s to be searched, along
8150
+ # with configurations for those data stores. This is only considered for Engines
8151
+ # with multiple data stores. For engines with a single data store, the specs
8152
+ # directly under SearchRequest should be used.
7988
8153
  # Corresponds to the JSON property `dataStoreSpecs`
7989
8154
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec>]
7990
8155
  attr_accessor :data_store_specs
@@ -8089,6 +8254,19 @@ module Google
8089
8254
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestQueryExpansionSpec]
8090
8255
  attr_accessor :query_expansion_spec
8091
8256
 
8257
+ # The specification for returning the document relevance score.
8258
+ # Corresponds to the JSON property `relevanceScoreSpec`
8259
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestRelevanceScoreSpec]
8260
+ attr_accessor :relevance_score_spec
8261
+
8262
+ # The relevance threshold of the search results. Default to Google defined
8263
+ # threshold, leveraging a balance of precision and recall to deliver both highly
8264
+ # accurate results and comprehensive coverage of relevant information. This
8265
+ # feature is not supported for healthcare search.
8266
+ # Corresponds to the JSON property `relevanceThreshold`
8267
+ # @return [String]
8268
+ attr_accessor :relevance_threshold
8269
+
8092
8270
  # Whether to turn on safe search. This is only supported for website search.
8093
8271
  # Corresponds to the JSON property `safeSearch`
8094
8272
  # @return [Boolean]
@@ -8188,6 +8366,8 @@ module Google
8188
8366
  @params = args[:params] if args.key?(:params)
8189
8367
  @query = args[:query] if args.key?(:query)
8190
8368
  @query_expansion_spec = args[:query_expansion_spec] if args.key?(:query_expansion_spec)
8369
+ @relevance_score_spec = args[:relevance_score_spec] if args.key?(:relevance_score_spec)
8370
+ @relevance_threshold = args[:relevance_threshold] if args.key?(:relevance_threshold)
8191
8371
  @safe_search = args[:safe_search] if args.key?(:safe_search)
8192
8372
  @search_as_you_type_spec = args[:search_as_you_type_spec] if args.key?(:search_as_you_type_spec)
8193
8373
  @session = args[:session] if args.key?(:session)
@@ -8921,6 +9101,27 @@ module Google
8921
9101
  end
8922
9102
  end
8923
9103
 
9104
+ # The specification for returning the document relevance score.
9105
+ class GoogleCloudDiscoveryengineV1SearchRequestRelevanceScoreSpec
9106
+ include Google::Apis::Core::Hashable
9107
+
9108
+ # Optional. Whether to return the relevance score for search results. The higher
9109
+ # the score, the more relevant the document is to the query.
9110
+ # Corresponds to the JSON property `returnRelevanceScore`
9111
+ # @return [Boolean]
9112
+ attr_accessor :return_relevance_score
9113
+ alias_method :return_relevance_score?, :return_relevance_score
9114
+
9115
+ def initialize(**args)
9116
+ update!(**args)
9117
+ end
9118
+
9119
+ # Update properties of this object
9120
+ def update!(**args)
9121
+ @return_relevance_score = args[:return_relevance_score] if args.key?(:return_relevance_score)
9122
+ end
9123
+ end
9124
+
8924
9125
  # Specification for search as you type in search requests.
8925
9126
  class GoogleCloudDiscoveryengineV1SearchRequestSearchAsYouTypeSpec
8926
9127
  include Google::Apis::Core::Hashable
@@ -8962,7 +9163,7 @@ module Google
8962
9163
  attr_accessor :query_id
8963
9164
 
8964
9165
  # The number of top search results to persist. The persisted search results can
8965
- # be used for the subsequent /answer api call. This field is simliar to the `
9166
+ # be used for the subsequent /answer api call. This field is similar to the `
8966
9167
  # summary_result_count` field in SearchRequest.ContentSearchSpec.SummarySpec.
8967
9168
  # summary_result_count. At most 10 results for documents mode, or 50 for chunks
8968
9169
  # mode.
@@ -9204,6 +9405,11 @@ module Google
9204
9405
  # @return [String]
9205
9406
  attr_accessor :id
9206
9407
 
9408
+ # Output only. Google provided available scores.
9409
+ # Corresponds to the JSON property `modelScores`
9410
+ # @return [Hash<String,Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DoubleList>]
9411
+ attr_accessor :model_scores
9412
+
9207
9413
  def initialize(**args)
9208
9414
  update!(**args)
9209
9415
  end
@@ -9213,6 +9419,7 @@ module Google
9213
9419
  @chunk = args[:chunk] if args.key?(:chunk)
9214
9420
  @document = args[:document] if args.key?(:document)
9215
9421
  @id = args[:id] if args.key?(:id)
9422
+ @model_scores = args[:model_scores] if args.key?(:model_scores)
9216
9423
  end
9217
9424
  end
9218
9425
 
@@ -9904,6 +10111,39 @@ module Google
9904
10111
  end
9905
10112
  end
9906
10113
 
10114
+ # A sitemap for the SiteSearchEngine.
10115
+ class GoogleCloudDiscoveryengineV1Sitemap
10116
+ include Google::Apis::Core::Hashable
10117
+
10118
+ # Output only. The sitemap's creation time.
10119
+ # Corresponds to the JSON property `createTime`
10120
+ # @return [String]
10121
+ attr_accessor :create_time
10122
+
10123
+ # Output only. The fully qualified resource name of the sitemap. `projects/*/
10124
+ # locations/*/collections/*/dataStores/*/siteSearchEngine/sitemaps/*` The `
10125
+ # sitemap_id` suffix is system-generated.
10126
+ # Corresponds to the JSON property `name`
10127
+ # @return [String]
10128
+ attr_accessor :name
10129
+
10130
+ # Public URI for the sitemap, e.g. `www.example.com/sitemap.xml`.
10131
+ # Corresponds to the JSON property `uri`
10132
+ # @return [String]
10133
+ attr_accessor :uri
10134
+
10135
+ def initialize(**args)
10136
+ update!(**args)
10137
+ end
10138
+
10139
+ # Update properties of this object
10140
+ def update!(**args)
10141
+ @create_time = args[:create_time] if args.key?(:create_time)
10142
+ @name = args[:name] if args.key?(:name)
10143
+ @uri = args[:uri] if args.key?(:uri)
10144
+ end
10145
+ end
10146
+
9907
10147
  # The Spanner source for importing data
9908
10148
  class GoogleCloudDiscoveryengineV1SpannerSource
9909
10149
  include Google::Apis::Core::Hashable
@@ -10774,7 +11014,7 @@ module Google
10774
11014
  # Required. Params needed to support actions in the format of (Key, Value) pairs.
10775
11015
  # Required parameters for sources that support OAUTH, i.e. `gmail`, `
10776
11016
  # google_calendar`, `jira`, `workday`, `salesforce`, `confluence`: * Key: `
10777
- # client_id` * Value: type STRING. The client id for the service provider to
11017
+ # client_id` * Value: type STRING. The client ID for the service provider to
10778
11018
  # identify your application. * Key: `client_secret` * Value:type STRING. The
10779
11019
  # client secret generated by the application's authorization server.
10780
11020
  # Corresponds to the JSON property `actionParams`
@@ -10930,7 +11170,9 @@ module Google
10930
11170
  class GoogleCloudDiscoveryengineV1alphaAnswerCitation
10931
11171
  include Google::Apis::Core::Hashable
10932
11172
 
10933
- # End of the attributed segment, exclusive.
11173
+ # End of the attributed segment, exclusive. Measured in bytes (UTF-8 unicode).
11174
+ # If there are multi-byte characters,such as non-ASCII characters, the index
11175
+ # measurement is longer than the string length.
10934
11176
  # Corresponds to the JSON property `endIndex`
10935
11177
  # @return [Fixnum]
10936
11178
  attr_accessor :end_index
@@ -10941,6 +11183,8 @@ module Google
10941
11183
  attr_accessor :sources
10942
11184
 
10943
11185
  # Index indicates the start of the segment, measured in bytes (UTF-8 unicode).
11186
+ # If there are multi-byte characters,such as non-ASCII characters, the index
11187
+ # measurement is longer than the string length.
10944
11188
  # Corresponds to the JSON property `startIndex`
10945
11189
  # @return [Fixnum]
10946
11190
  attr_accessor :start_index
@@ -11200,6 +11444,16 @@ module Google
11200
11444
  # @return [Hash<String,Object>]
11201
11445
  attr_accessor :struct_data
11202
11446
 
11447
+ # Output only. The title of the document.
11448
+ # Corresponds to the JSON property `title`
11449
+ # @return [String]
11450
+ attr_accessor :title
11451
+
11452
+ # Output only. The URI of the document.
11453
+ # Corresponds to the JSON property `uri`
11454
+ # @return [String]
11455
+ attr_accessor :uri
11456
+
11203
11457
  def initialize(**args)
11204
11458
  update!(**args)
11205
11459
  end
@@ -11208,6 +11462,8 @@ module Google
11208
11462
  def update!(**args)
11209
11463
  @document = args[:document] if args.key?(:document)
11210
11464
  @struct_data = args[:struct_data] if args.key?(:struct_data)
11465
+ @title = args[:title] if args.key?(:title)
11466
+ @uri = args[:uri] if args.key?(:uri)
11211
11467
  end
11212
11468
  end
11213
11469
 
@@ -11500,6 +11756,25 @@ module Google
11500
11756
  end
11501
11757
  end
11502
11758
 
11759
+ # The configuration for the BAP connector.
11760
+ class GoogleCloudDiscoveryengineV1alphaBapConfig
11761
+ include Google::Apis::Core::Hashable
11762
+
11763
+ # Required. The supported connector modes for the associated BAP connection.
11764
+ # Corresponds to the JSON property `supportedConnectorModes`
11765
+ # @return [Array<String>]
11766
+ attr_accessor :supported_connector_modes
11767
+
11768
+ def initialize(**args)
11769
+ update!(**args)
11770
+ end
11771
+
11772
+ # Update properties of this object
11773
+ def update!(**args)
11774
+ @supported_connector_modes = args[:supported_connector_modes] if args.key?(:supported_connector_modes)
11775
+ end
11776
+ end
11777
+
11503
11778
  # Metadata related to the progress of the SiteSearchEngineService.
11504
11779
  # BatchCreateTargetSites operation. This will be returned by the google.
11505
11780
  # longrunning.Operation.metadata field.
@@ -11557,13 +11832,13 @@ module Google
11557
11832
  attr_accessor :is_default
11558
11833
  alias_method :is_default?, :is_default
11559
11834
 
11560
- # Kms key resource name which will be used to encrypt resources `projects/`
11835
+ # KMS key resource name which will be used to encrypt resources `projects/`
11561
11836
  # project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`keyId``.
11562
11837
  # Corresponds to the JSON property `kmsKey`
11563
11838
  # @return [String]
11564
11839
  attr_accessor :kms_key
11565
11840
 
11566
- # Kms key version resource name which will be used to encrypt resources `/
11841
+ # KMS key version resource name which will be used to encrypt resources `/
11567
11842
  # cryptoKeyVersions/`keyVersion``.
11568
11843
  # Corresponds to the JSON property `kmsKeyVersion`
11569
11844
  # @return [String]
@@ -11574,9 +11849,9 @@ module Google
11574
11849
  # @return [Fixnum]
11575
11850
  attr_accessor :last_rotation_timestamp_micros
11576
11851
 
11577
- # Required. Name of the CmekConfig, of the form `projects/`project`/locations/`
11578
- # location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/`
11579
- # cmekConfig``.
11852
+ # Required. The name of the CmekConfig of the form `projects/`project`/locations/
11853
+ # `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
11854
+ # `cmekConfig``.
11580
11855
  # Corresponds to the JSON property `name`
11581
11856
  # @return [String]
11582
11857
  attr_accessor :name
@@ -11586,7 +11861,7 @@ module Google
11586
11861
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSingleRegionKey>]
11587
11862
  attr_accessor :single_region_keys
11588
11863
 
11589
- # Output only. State of the CmekConfig.
11864
+ # Output only. The states of the CmekConfig.
11590
11865
  # Corresponds to the JSON property `state`
11591
11866
  # @return [String]
11592
11867
  attr_accessor :state
@@ -11819,6 +12094,11 @@ module Google
11819
12094
  class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun
11820
12095
  include Google::Apis::Core::Hashable
11821
12096
 
12097
+ # The number of documents deleted.
12098
+ # Corresponds to the JSON property `deletedRecordCount`
12099
+ # @return [Fixnum]
12100
+ attr_accessor :deleted_record_count
12101
+
11822
12102
  # The name of the source entity.
11823
12103
  # Corresponds to the JSON property `entityName`
11824
12104
  # @return [String]
@@ -11847,6 +12127,11 @@ module Google
11847
12127
  # @return [Fixnum]
11848
12128
  attr_accessor :indexed_record_count
11849
12129
 
12130
+ # Represents the progress of a sync run.
12131
+ # Corresponds to the JSON property `progress`
12132
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress]
12133
+ attr_accessor :progress
12134
+
11850
12135
  # The number of requests sent to 3p API.
11851
12136
  # Corresponds to the JSON property `sourceApiRequestCount`
11852
12137
  # @return [Fixnum]
@@ -11879,11 +12164,13 @@ module Google
11879
12164
 
11880
12165
  # Update properties of this object
11881
12166
  def update!(**args)
12167
+ @deleted_record_count = args[:deleted_record_count] if args.key?(:deleted_record_count)
11882
12168
  @entity_name = args[:entity_name] if args.key?(:entity_name)
11883
12169
  @error_record_count = args[:error_record_count] if args.key?(:error_record_count)
11884
12170
  @errors = args[:errors] if args.key?(:errors)
11885
12171
  @extracted_record_count = args[:extracted_record_count] if args.key?(:extracted_record_count)
11886
12172
  @indexed_record_count = args[:indexed_record_count] if args.key?(:indexed_record_count)
12173
+ @progress = args[:progress] if args.key?(:progress)
11887
12174
  @source_api_request_count = args[:source_api_request_count] if args.key?(:source_api_request_count)
11888
12175
  @state = args[:state] if args.key?(:state)
11889
12176
  @state_update_time = args[:state_update_time] if args.key?(:state_update_time)
@@ -11892,6 +12179,38 @@ module Google
11892
12179
  end
11893
12180
  end
11894
12181
 
12182
+ # Represents the progress of a sync run.
12183
+ class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress
12184
+ include Google::Apis::Core::Hashable
12185
+
12186
+ # The current progress.
12187
+ # Corresponds to the JSON property `currentCount`
12188
+ # @return [Fixnum]
12189
+ attr_accessor :current_count
12190
+
12191
+ # Derived. The percentile of the progress.current_count / total_count. The value
12192
+ # is between [0, 1.0] inclusive.
12193
+ # Corresponds to the JSON property `percentile`
12194
+ # @return [Float]
12195
+ attr_accessor :percentile
12196
+
12197
+ # The total.
12198
+ # Corresponds to the JSON property `totalCount`
12199
+ # @return [Fixnum]
12200
+ attr_accessor :total_count
12201
+
12202
+ def initialize(**args)
12203
+ update!(**args)
12204
+ end
12205
+
12206
+ # Update properties of this object
12207
+ def update!(**args)
12208
+ @current_count = args[:current_count] if args.key?(:current_count)
12209
+ @percentile = args[:percentile] if args.key?(:percentile)
12210
+ @total_count = args[:total_count] if args.key?(:total_count)
12211
+ end
12212
+ end
12213
+
11895
12214
  # Defines a conditioned behavior to employ during serving. Must be attached to a
11896
12215
  # ServingConfig to be considered at serving time. Permitted actions dependent on
11897
12216
  # `SolutionType`.
@@ -12018,6 +12337,13 @@ module Google
12018
12337
  # @return [Float]
12019
12338
  attr_accessor :fixed_boost
12020
12339
 
12340
+ # Specification for custom ranking based on customer specified attribute value.
12341
+ # It provides more controls for customized ranking than the simple (condition,
12342
+ # boost) combination above.
12343
+ # Corresponds to the JSON property `interpolationBoostSpec`
12344
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaControlBoostActionInterpolationBoostSpec]
12345
+ attr_accessor :interpolation_boost_spec
12346
+
12021
12347
  def initialize(**args)
12022
12348
  update!(**args)
12023
12349
  end
@@ -12028,6 +12354,85 @@ module Google
12028
12354
  @data_store = args[:data_store] if args.key?(:data_store)
12029
12355
  @filter = args[:filter] if args.key?(:filter)
12030
12356
  @fixed_boost = args[:fixed_boost] if args.key?(:fixed_boost)
12357
+ @interpolation_boost_spec = args[:interpolation_boost_spec] if args.key?(:interpolation_boost_spec)
12358
+ end
12359
+ end
12360
+
12361
+ # Specification for custom ranking based on customer specified attribute value.
12362
+ # It provides more controls for customized ranking than the simple (condition,
12363
+ # boost) combination above.
12364
+ class GoogleCloudDiscoveryengineV1alphaControlBoostActionInterpolationBoostSpec
12365
+ include Google::Apis::Core::Hashable
12366
+
12367
+ # Optional. The attribute type to be used to determine the boost amount. The
12368
+ # attribute value can be derived from the field value of the specified
12369
+ # field_name. In the case of numerical it is straightforward i.e.
12370
+ # attribute_value = numerical_field_value. In the case of freshness however,
12371
+ # attribute_value = (time.now() - datetime_field_value).
12372
+ # Corresponds to the JSON property `attributeType`
12373
+ # @return [String]
12374
+ attr_accessor :attribute_type
12375
+
12376
+ # Optional. The control points used to define the curve. The monotonic function (
12377
+ # defined through the interpolation_type above) passes through the control
12378
+ # points listed here.
12379
+ # Corresponds to the JSON property `controlPoints`
12380
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaControlBoostActionInterpolationBoostSpecControlPoint>]
12381
+ attr_accessor :control_points
12382
+
12383
+ # Optional. The name of the field whose value will be used to determine the
12384
+ # boost amount.
12385
+ # Corresponds to the JSON property `fieldName`
12386
+ # @return [String]
12387
+ attr_accessor :field_name
12388
+
12389
+ # Optional. The interpolation type to be applied to connect the control points
12390
+ # listed below.
12391
+ # Corresponds to the JSON property `interpolationType`
12392
+ # @return [String]
12393
+ attr_accessor :interpolation_type
12394
+
12395
+ def initialize(**args)
12396
+ update!(**args)
12397
+ end
12398
+
12399
+ # Update properties of this object
12400
+ def update!(**args)
12401
+ @attribute_type = args[:attribute_type] if args.key?(:attribute_type)
12402
+ @control_points = args[:control_points] if args.key?(:control_points)
12403
+ @field_name = args[:field_name] if args.key?(:field_name)
12404
+ @interpolation_type = args[:interpolation_type] if args.key?(:interpolation_type)
12405
+ end
12406
+ end
12407
+
12408
+ # The control points used to define the curve. The curve defined through these
12409
+ # control points can only be monotonically increasing or decreasing(constant
12410
+ # values are acceptable).
12411
+ class GoogleCloudDiscoveryengineV1alphaControlBoostActionInterpolationBoostSpecControlPoint
12412
+ include Google::Apis::Core::Hashable
12413
+
12414
+ # Optional. Can be one of: 1. The numerical field value. 2. The duration spec
12415
+ # for freshness: The value must be formatted as an XSD `dayTimeDuration` value (
12416
+ # a restricted subset of an ISO 8601 duration value). The pattern for this is: `
12417
+ # nDnM]`.
12418
+ # Corresponds to the JSON property `attributeValue`
12419
+ # @return [String]
12420
+ attr_accessor :attribute_value
12421
+
12422
+ # Optional. The value between -1 to 1 by which to boost the score if the
12423
+ # attribute_value evaluates to the value specified above.
12424
+ # Corresponds to the JSON property `boostAmount`
12425
+ # @return [Float]
12426
+ attr_accessor :boost_amount
12427
+
12428
+ def initialize(**args)
12429
+ update!(**args)
12430
+ end
12431
+
12432
+ # Update properties of this object
12433
+ def update!(**args)
12434
+ @attribute_value = args[:attribute_value] if args.key?(:attribute_value)
12435
+ @boost_amount = args[:boost_amount] if args.key?(:boost_amount)
12031
12436
  end
12032
12437
  end
12033
12438
 
@@ -12343,12 +12748,24 @@ module Google
12343
12748
  attr_accessor :auto_run_disabled
12344
12749
  alias_method :auto_run_disabled?, :auto_run_disabled
12345
12750
 
12751
+ # The configuration for the BAP connector.
12752
+ # Corresponds to the JSON property `bapConfig`
12753
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaBapConfig]
12754
+ attr_accessor :bap_config
12755
+
12346
12756
  # Output only. User actions that must be completed before the connector can
12347
12757
  # start syncing data.
12348
12758
  # Corresponds to the JSON property `blockingReasons`
12349
12759
  # @return [Array<String>]
12350
12760
  attr_accessor :blocking_reasons
12351
12761
 
12762
+ # Output only. The type of connector. Each source can only map to one type. For
12763
+ # example, salesforce, confluence and jira have THIRD_PARTY connector type. It
12764
+ # is notmutable once set by system.
12765
+ # Corresponds to the JSON property `connectorType`
12766
+ # @return [String]
12767
+ attr_accessor :connector_type
12768
+
12352
12769
  # Output only. Timestamp the DataConnector was created at.
12353
12770
  # Corresponds to the JSON property `createTime`
12354
12771
  # @return [String]
@@ -12440,7 +12857,7 @@ module Google
12440
12857
  # pairs. Required parameters for all data sources: * Key: `instance_uri` * Value:
12441
12858
  # type STRING. The uri to access the data source. Required parameters for
12442
12859
  # sources that support OAUTH, i.e. `salesforce`: * Key: `client_id` * Value:
12443
- # type STRING. The client id for the third party service provider to identify
12860
+ # type STRING. The client ID for the third party service provider to identify
12444
12861
  # your application. * Key: `client_secret` * Value:type STRING. The client
12445
12862
  # secret generated by the third party authorization server. * Key: `access_token`
12446
12863
  # * Value: type STRING. OAuth token for UCS to access to the protected resource.
@@ -12468,6 +12885,11 @@ module Google
12468
12885
  # @return [String]
12469
12886
  attr_accessor :private_connectivity_project_id
12470
12887
 
12888
+ # Output only. real-time sync state
12889
+ # Corresponds to the JSON property `realtimeState`
12890
+ # @return [String]
12891
+ attr_accessor :realtime_state
12892
+
12471
12893
  # Required. The refresh interval for data sync. If duration is set to 0, the
12472
12894
  # data will be synced in real time. The streaming feature is not supported yet.
12473
12895
  # The minimum is 30 minutes and maximum is 7 days.
@@ -12509,7 +12931,9 @@ module Google
12509
12931
  def update!(**args)
12510
12932
  @action_config = args[:action_config] if args.key?(:action_config)
12511
12933
  @auto_run_disabled = args[:auto_run_disabled] if args.key?(:auto_run_disabled)
12934
+ @bap_config = args[:bap_config] if args.key?(:bap_config)
12512
12935
  @blocking_reasons = args[:blocking_reasons] if args.key?(:blocking_reasons)
12936
+ @connector_type = args[:connector_type] if args.key?(:connector_type)
12513
12937
  @create_time = args[:create_time] if args.key?(:create_time)
12514
12938
  @data_source = args[:data_source] if args.key?(:data_source)
12515
12939
  @destination_configs = args[:destination_configs] if args.key?(:destination_configs)
@@ -12524,6 +12948,7 @@ module Google
12524
12948
  @next_sync_time = args[:next_sync_time] if args.key?(:next_sync_time)
12525
12949
  @params = args[:params] if args.key?(:params)
12526
12950
  @private_connectivity_project_id = args[:private_connectivity_project_id] if args.key?(:private_connectivity_project_id)
12951
+ @realtime_state = args[:realtime_state] if args.key?(:realtime_state)
12527
12952
  @refresh_interval = args[:refresh_interval] if args.key?(:refresh_interval)
12528
12953
  @state = args[:state] if args.key?(:state)
12529
12954
  @static_ip_addresses = args[:static_ip_addresses] if args.key?(:static_ip_addresses)
@@ -12554,6 +12979,11 @@ module Google
12554
12979
  # @return [String]
12555
12980
  attr_accessor :entity_name
12556
12981
 
12982
+ # Config to data store for `HEALTHCARE_FHIR` vertical.
12983
+ # Corresponds to the JSON property `healthcareFhirConfig`
12984
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig]
12985
+ attr_accessor :healthcare_fhir_config
12986
+
12557
12987
  # Attributes for indexing. Key: Field name. Value: The key property to map a
12558
12988
  # field to, such as `title`, and `description`. Supported key properties: * `
12559
12989
  # title`: The title for data record. This would be displayed on search results. *
@@ -12563,13 +12993,18 @@ module Google
12563
12993
  # @return [Hash<String,String>]
12564
12994
  attr_accessor :key_property_mappings
12565
12995
 
12566
- # The parameters for the entity to facilitate data ingestion. E.g. for BQ
12996
+ # The parameters for the entity to facilitate data ingestion. E.g. for BigQuery
12567
12997
  # connectors: * Key: `document_id_column` * Value: type STRING. The value of the
12568
- # column id.
12998
+ # column ID.
12569
12999
  # Corresponds to the JSON property `params`
12570
13000
  # @return [Hash<String,Object>]
12571
13001
  attr_accessor :params
12572
13002
 
13003
+ # Defines the structure and layout of a type of document data.
13004
+ # Corresponds to the JSON property `startingSchema`
13005
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSchema]
13006
+ attr_accessor :starting_schema
13007
+
12573
13008
  def initialize(**args)
12574
13009
  update!(**args)
12575
13010
  end
@@ -12578,8 +13013,10 @@ module Google
12578
13013
  def update!(**args)
12579
13014
  @data_store = args[:data_store] if args.key?(:data_store)
12580
13015
  @entity_name = args[:entity_name] if args.key?(:entity_name)
13016
+ @healthcare_fhir_config = args[:healthcare_fhir_config] if args.key?(:healthcare_fhir_config)
12581
13017
  @key_property_mappings = args[:key_property_mappings] if args.key?(:key_property_mappings)
12582
13018
  @params = args[:params] if args.key?(:params)
13019
+ @starting_schema = args[:starting_schema] if args.key?(:starting_schema)
12583
13020
  end
12584
13021
  end
12585
13022
 
@@ -12624,7 +13061,7 @@ module Google
12624
13061
  # @return [String]
12625
13062
  attr_accessor :create_time
12626
13063
 
12627
- # Output only. The id of the default Schema asscociated to this data store.
13064
+ # Output only. The id of the default Schema associated to this data store.
12628
13065
  # Corresponds to the JSON property `defaultSchemaId`
12629
13066
  # @return [String]
12630
13067
  attr_accessor :default_schema_id
@@ -12643,6 +13080,19 @@ module Google
12643
13080
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig]
12644
13081
  attr_accessor :document_processing_config
12645
13082
 
13083
+ # Config to data store for `HEALTHCARE_FHIR` vertical.
13084
+ # Corresponds to the JSON property `healthcareFhirConfig`
13085
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig]
13086
+ attr_accessor :healthcare_fhir_config
13087
+
13088
+ # Immutable. The fully qualified resource name of the associated
13089
+ # IdentityMappingStore. This field can only be set for acl_enabled DataStores
13090
+ # with `THIRD_PARTY` or `GSUITE` IdP. Format: `projects/`project`/locations/`
13091
+ # location`/identityMappingStores/`identity_mapping_store``.
13092
+ # Corresponds to the JSON property `identityMappingStore`
13093
+ # @return [String]
13094
+ attr_accessor :identity_mapping_store
13095
+
12646
13096
  # Identity Provider Config.
12647
13097
  # Corresponds to the JSON property `idpConfig`
12648
13098
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaIdpConfig]
@@ -12723,6 +13173,8 @@ module Google
12723
13173
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
12724
13174
  @display_name = args[:display_name] if args.key?(:display_name)
12725
13175
  @document_processing_config = args[:document_processing_config] if args.key?(:document_processing_config)
13176
+ @healthcare_fhir_config = args[:healthcare_fhir_config] if args.key?(:healthcare_fhir_config)
13177
+ @identity_mapping_store = args[:identity_mapping_store] if args.key?(:identity_mapping_store)
12726
13178
  @idp_config = args[:idp_config] if args.key?(:idp_config)
12727
13179
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
12728
13180
  @is_infobot_faq_data_store = args[:is_infobot_faq_data_store] if args.key?(:is_infobot_faq_data_store)
@@ -12812,11 +13264,21 @@ module Google
12812
13264
  class GoogleCloudDiscoveryengineV1alphaDedicatedCrawlRateTimeSeries
12813
13265
  include Google::Apis::Core::Hashable
12814
13266
 
13267
+ # The historical crawl rate timeseries data, used for monitoring.
13268
+ # Corresponds to the JSON property `autoRefreshCrawlErrorRate`
13269
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
13270
+ attr_accessor :auto_refresh_crawl_error_rate
13271
+
12815
13272
  # The historical crawl rate timeseries data, used for monitoring.
12816
13273
  # Corresponds to the JSON property `autoRefreshCrawlRate`
12817
13274
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
12818
13275
  attr_accessor :auto_refresh_crawl_rate
12819
13276
 
13277
+ # The historical crawl rate timeseries data, used for monitoring.
13278
+ # Corresponds to the JSON property `userTriggeredCrawlErrorRate`
13279
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
13280
+ attr_accessor :user_triggered_crawl_error_rate
13281
+
12820
13282
  # The historical crawl rate timeseries data, used for monitoring.
12821
13283
  # Corresponds to the JSON property `userTriggeredCrawlRate`
12822
13284
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
@@ -12828,11 +13290,41 @@ module Google
12828
13290
 
12829
13291
  # Update properties of this object
12830
13292
  def update!(**args)
13293
+ @auto_refresh_crawl_error_rate = args[:auto_refresh_crawl_error_rate] if args.key?(:auto_refresh_crawl_error_rate)
12831
13294
  @auto_refresh_crawl_rate = args[:auto_refresh_crawl_rate] if args.key?(:auto_refresh_crawl_rate)
13295
+ @user_triggered_crawl_error_rate = args[:user_triggered_crawl_error_rate] if args.key?(:user_triggered_crawl_error_rate)
12832
13296
  @user_triggered_crawl_rate = args[:user_triggered_crawl_rate] if args.key?(:user_triggered_crawl_rate)
12833
13297
  end
12834
13298
  end
12835
13299
 
13300
+ # Metadata related to the progress of the CmekConfigService.DeleteCmekConfig
13301
+ # operation. This will be returned by the google.longrunning.Operation.metadata
13302
+ # field.
13303
+ class GoogleCloudDiscoveryengineV1alphaDeleteCmekConfigMetadata
13304
+ include Google::Apis::Core::Hashable
13305
+
13306
+ # Operation create time.
13307
+ # Corresponds to the JSON property `createTime`
13308
+ # @return [String]
13309
+ attr_accessor :create_time
13310
+
13311
+ # Operation last update time. If the operation is done, this is also the finish
13312
+ # time.
13313
+ # Corresponds to the JSON property `updateTime`
13314
+ # @return [String]
13315
+ attr_accessor :update_time
13316
+
13317
+ def initialize(**args)
13318
+ update!(**args)
13319
+ end
13320
+
13321
+ # Update properties of this object
13322
+ def update!(**args)
13323
+ @create_time = args[:create_time] if args.key?(:create_time)
13324
+ @update_time = args[:update_time] if args.key?(:update_time)
13325
+ end
13326
+ end
13327
+
12836
13328
  # Metadata related to the progress of the CollectionService.UpdateCollection
12837
13329
  # operation. This will be returned by the google.longrunning.Operation.metadata
12838
13330
  # field.
@@ -13495,6 +13987,17 @@ module Google
13495
13987
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfigAgentCreationConfig]
13496
13988
  attr_accessor :agent_creation_config
13497
13989
 
13990
+ # Optional. If the flag set to true, we allow the agent and engine are in
13991
+ # different locations, otherwise the agent and engine are required to be in the
13992
+ # same location. The flag is set to false by default. Note that the `
13993
+ # allow_cross_region` are one-time consumed by and passed to EngineService.
13994
+ # CreateEngine. It means they cannot be retrieved using EngineService.GetEngine
13995
+ # or EngineService.ListEngines API after engine creation.
13996
+ # Corresponds to the JSON property `allowCrossRegion`
13997
+ # @return [Boolean]
13998
+ attr_accessor :allow_cross_region
13999
+ alias_method :allow_cross_region?, :allow_cross_region
14000
+
13498
14001
  # The resource name of an exist Dialogflow agent to link to this Chat Engine.
13499
14002
  # Customers can either provide `agent_creation_config` to create agent or
13500
14003
  # provide an agent name that links the agent with the Chat engine. Format: `
@@ -13514,6 +14017,7 @@ module Google
13514
14017
  # Update properties of this object
13515
14018
  def update!(**args)
13516
14019
  @agent_creation_config = args[:agent_creation_config] if args.key?(:agent_creation_config)
14020
+ @allow_cross_region = args[:allow_cross_region] if args.key?(:allow_cross_region)
13517
14021
  @dialogflow_agent_to_link = args[:dialogflow_agent_to_link] if args.key?(:dialogflow_agent_to_link)
13518
14022
  end
13519
14023
  end
@@ -13929,44 +14433,6 @@ module Google
13929
14433
  end
13930
14434
  end
13931
14435
 
13932
- # Response message for SiteSearchEngineService.FetchSitemaps method.
13933
- class GoogleCloudDiscoveryengineV1alphaFetchSitemapsResponse
13934
- include Google::Apis::Core::Hashable
13935
-
13936
- # List of Sitemaps fetched.
13937
- # Corresponds to the JSON property `sitemapsMetadata`
13938
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaFetchSitemapsResponseSitemapMetadata>]
13939
- attr_accessor :sitemaps_metadata
13940
-
13941
- def initialize(**args)
13942
- update!(**args)
13943
- end
13944
-
13945
- # Update properties of this object
13946
- def update!(**args)
13947
- @sitemaps_metadata = args[:sitemaps_metadata] if args.key?(:sitemaps_metadata)
13948
- end
13949
- end
13950
-
13951
- # Contains a Sitemap and its metadata.
13952
- class GoogleCloudDiscoveryengineV1alphaFetchSitemapsResponseSitemapMetadata
13953
- include Google::Apis::Core::Hashable
13954
-
13955
- # A sitemap for the SiteSearchEngine.
13956
- # Corresponds to the JSON property `sitemap`
13957
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSitemap]
13958
- attr_accessor :sitemap
13959
-
13960
- def initialize(**args)
13961
- update!(**args)
13962
- end
13963
-
13964
- # Update properties of this object
13965
- def update!(**args)
13966
- @sitemap = args[:sitemap] if args.key?(:sitemap)
13967
- end
13968
- end
13969
-
13970
14436
  # Configurations for fields of a schema. For example, configuring a field is
13971
14437
  # indexable, or searchable.
13972
14438
  class GoogleCloudDiscoveryengineV1alphaFieldConfig
@@ -14165,6 +14631,70 @@ module Google
14165
14631
  end
14166
14632
  end
14167
14633
 
14634
+ # Config to data store for `HEALTHCARE_FHIR` vertical.
14635
+ class GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig
14636
+ include Google::Apis::Core::Hashable
14637
+
14638
+ # Whether to enable configurable schema for `HEALTHCARE_FHIR` vertical. If set
14639
+ # to `true`, the predefined healthcare fhir schema can be extended for more
14640
+ # customized searching and filtering.
14641
+ # Corresponds to the JSON property `enableConfigurableSchema`
14642
+ # @return [Boolean]
14643
+ attr_accessor :enable_configurable_schema
14644
+ alias_method :enable_configurable_schema?, :enable_configurable_schema
14645
+
14646
+ # Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If
14647
+ # set to `true`, the batch ingestion will be processed in a static indexing mode
14648
+ # which is slower but more capable of handling larger volume.
14649
+ # Corresponds to the JSON property `enableStaticIndexingForBatchIngestion`
14650
+ # @return [Boolean]
14651
+ attr_accessor :enable_static_indexing_for_batch_ingestion
14652
+ alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
14653
+
14654
+ def initialize(**args)
14655
+ update!(**args)
14656
+ end
14657
+
14658
+ # Update properties of this object
14659
+ def update!(**args)
14660
+ @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
14661
+ @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
14662
+ end
14663
+ end
14664
+
14665
+ # IdentityMappingEntry LongRunningOperation metadata for
14666
+ # IdentityMappingStoreService.ImportIdentityMappings and
14667
+ # IdentityMappingStoreService.PurgeIdentityMappings
14668
+ class GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata
14669
+ include Google::Apis::Core::Hashable
14670
+
14671
+ # The number of IdentityMappingEntries that failed to be processed.
14672
+ # Corresponds to the JSON property `failureCount`
14673
+ # @return [Fixnum]
14674
+ attr_accessor :failure_count
14675
+
14676
+ # The number of IdentityMappingEntries that were successfully processed.
14677
+ # Corresponds to the JSON property `successCount`
14678
+ # @return [Fixnum]
14679
+ attr_accessor :success_count
14680
+
14681
+ # The total number of IdentityMappingEntries that were processed.
14682
+ # Corresponds to the JSON property `totalCount`
14683
+ # @return [Fixnum]
14684
+ attr_accessor :total_count
14685
+
14686
+ def initialize(**args)
14687
+ update!(**args)
14688
+ end
14689
+
14690
+ # Update properties of this object
14691
+ def update!(**args)
14692
+ @failure_count = args[:failure_count] if args.key?(:failure_count)
14693
+ @success_count = args[:success_count] if args.key?(:success_count)
14694
+ @total_count = args[:total_count] if args.key?(:total_count)
14695
+ end
14696
+ end
14697
+
14168
14698
  # The configuration for the identity data synchronization runs.
14169
14699
  class GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig
14170
14700
  include Google::Apis::Core::Hashable
@@ -14409,6 +14939,25 @@ module Google
14409
14939
  end
14410
14940
  end
14411
14941
 
14942
+ # Response message for IdentityMappingStoreService.ImportIdentityMappings
14943
+ class GoogleCloudDiscoveryengineV1alphaImportIdentityMappingsResponse
14944
+ include Google::Apis::Core::Hashable
14945
+
14946
+ # A sample of errors encountered while processing the request.
14947
+ # Corresponds to the JSON property `errorSamples`
14948
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleRpcStatus>]
14949
+ attr_accessor :error_samples
14950
+
14951
+ def initialize(**args)
14952
+ update!(**args)
14953
+ end
14954
+
14955
+ # Update properties of this object
14956
+ def update!(**args)
14957
+ @error_samples = args[:error_samples] if args.key?(:error_samples)
14958
+ end
14959
+ end
14960
+
14412
14961
  # Metadata related to the progress of the ImportSampleQueries operation. This
14413
14962
  # will be returned by the google.longrunning.Operation.metadata field.
14414
14963
  class GoogleCloudDiscoveryengineV1alphaImportSampleQueriesMetadata
@@ -15336,6 +15885,16 @@ module Google
15336
15885
  # @return [Fixnum]
15337
15886
  attr_accessor :invalid_uris_count
15338
15887
 
15888
+ # URIs that have no index meta tag. Sample limited to 1000.
15889
+ # Corresponds to the JSON property `noindexUris`
15890
+ # @return [Array<String>]
15891
+ attr_accessor :noindex_uris
15892
+
15893
+ # Total number of URIs that have no index meta tag.
15894
+ # Corresponds to the JSON property `noindexUrisCount`
15895
+ # @return [Fixnum]
15896
+ attr_accessor :noindex_uris_count
15897
+
15339
15898
  # Total number of URIs that have yet to be crawled.
15340
15899
  # Corresponds to the JSON property `pendingCount`
15341
15900
  # @return [Fixnum]
@@ -15383,6 +15942,8 @@ module Google
15383
15942
  @create_time = args[:create_time] if args.key?(:create_time)
15384
15943
  @invalid_uris = args[:invalid_uris] if args.key?(:invalid_uris)
15385
15944
  @invalid_uris_count = args[:invalid_uris_count] if args.key?(:invalid_uris_count)
15945
+ @noindex_uris = args[:noindex_uris] if args.key?(:noindex_uris)
15946
+ @noindex_uris_count = args[:noindex_uris_count] if args.key?(:noindex_uris_count)
15386
15947
  @pending_count = args[:pending_count] if args.key?(:pending_count)
15387
15948
  @quota_exceeded_count = args[:quota_exceeded_count] if args.key?(:quota_exceeded_count)
15388
15949
  @success_count = args[:success_count] if args.key?(:success_count)
@@ -15707,14 +16268,19 @@ module Google
15707
16268
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCustomFineTuningSpec]
15708
16269
  attr_accessor :custom_fine_tuning_spec
15709
16270
 
15710
- # Specs defining DataStores to filter on in a search call and configurations for
15711
- # those data stores. This is only considered for Engines with multiple data
15712
- # stores. For engines with a single data store, the specs directly under
15713
- # SearchRequest should be used.
16271
+ # Specifications that define the specific [DataStore]s to be searched, along
16272
+ # with configurations for those data stores. This is only considered for Engines
16273
+ # with multiple data stores. For engines with a single data store, the specs
16274
+ # directly under SearchRequest should be used.
15714
16275
  # Corresponds to the JSON property `dataStoreSpecs`
15715
16276
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestDataStoreSpec>]
15716
16277
  attr_accessor :data_store_specs
15717
16278
 
16279
+ # Specifies features for display, like match highlighting.
16280
+ # Corresponds to the JSON property `displaySpec`
16281
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestDisplaySpec]
16282
+ attr_accessor :display_spec
16283
+
15718
16284
  # The specification that uses customized query embedding vector to do semantic
15719
16285
  # document retrieval.
15720
16286
  # Corresponds to the JSON property `embeddingSpec`
@@ -15833,21 +16399,41 @@ module Google
15833
16399
  attr_accessor :query_expansion_spec
15834
16400
 
15835
16401
  # The ranking expression controls the customized ranking on retrieval documents.
15836
- # This overrides ServingConfig.ranking_expression. The ranking expression is a
15837
- # single function or multiple functions that are joined by "+". *
15838
- # ranking_expression = function, ` " + ", function `; Supported functions: *
15839
- # double * relevance_score * double * dotProduct(embedding_field_path) Function
15840
- # variables: * `relevance_score`: pre-defined keywords, used for measure
15841
- # relevance between query and document. * `embedding_field_path`: the document
15842
- # embedding field used with query embedding vector. * `dotProduct`: embedding
15843
- # function between embedding_field_path and query embedding vector. Example
15844
- # ranking expression: If document has an embedding field doc_embedding, the
15845
- # ranking expression could be `0.5 * relevance_score + 0.3 * dotProduct(
15846
- # doc_embedding)`.
16402
+ # This overrides ServingConfig.ranking_expression. The syntax and supported
16403
+ # features depend on the ranking_expression_backend value. If
16404
+ # ranking_expression_backend is not provided, it defaults to BYOE. === BYOE ===
16405
+ # If ranking expression is not provided or set to BYOE, it should be a single
16406
+ # function or multiple functions that are joined by "+". * ranking_expression =
16407
+ # function, ` " + ", function `; Supported functions: * double * relevance_score
16408
+ # * double * dotProduct(embedding_field_path) Function variables: * `
16409
+ # relevance_score`: pre-defined keywords, used for measure relevance between
16410
+ # query and document. * `embedding_field_path`: the document embedding field
16411
+ # used with query embedding vector. * `dotProduct`: embedding function between
16412
+ # embedding_field_path and query embedding vector. Example ranking expression:
16413
+ # If document has an embedding field doc_embedding, the ranking expression could
16414
+ # be `0.5 * relevance_score + 0.3 * dotProduct(doc_embedding)`. === CLEARBOX ===
16415
+ # If ranking expression is set to CLEARBOX, the following expression types (and
16416
+ # combinations of those chained using + or * operators) are supported: * double *
16417
+ # signal * log(signal) * exp(signal) * rr(signal, double > 0) -- reciprocal
16418
+ # rank transformation with second argument being a denominator constant. *
16419
+ # is_nan(signal) -- returns 0 if signal is NaN, 1 otherwise. * fill_nan(signal1,
16420
+ # signal2 | double) -- if signal1 is NaN, returns signal2 | double, else returns
16421
+ # signal1. Examples: * 0.2 * gecko_score + 0.8 * log(bm25_score) * 0.2 * exp(
16422
+ # fill_nan(gecko_score, 0)) + 0.3 * is_nan(bm25_score) * 0.2 * rr(gecko_score,
16423
+ # 16) + 0.8 * rr(bm25_score, 32) The following signals are supported: *
16424
+ # gecko_score -- semantic similarity adjustment * bm25_score -- keyword match
16425
+ # adjustment * jetstream_score -- semantic relevance adjustment * pctr_rank --
16426
+ # predicted conversion rate adjustment as a rank * freshness_rank -- freshness
16427
+ # adjustment as a rank * base_rank -- the default rank of the result
15847
16428
  # Corresponds to the JSON property `rankingExpression`
15848
16429
  # @return [String]
15849
16430
  attr_accessor :ranking_expression
15850
16431
 
16432
+ # Optional. The backend to use for the ranking expression evaluation.
16433
+ # Corresponds to the JSON property `rankingExpressionBackend`
16434
+ # @return [String]
16435
+ attr_accessor :ranking_expression_backend
16436
+
15851
16437
  # The Unicode country/region code (CLDR) of a location, such as "US" and "419".
15852
16438
  # For more information, see [Standard fields](https://cloud.google.com/apis/
15853
16439
  # design/standard_fields). If set, then results will be boosted based on the
@@ -15856,9 +16442,15 @@ module Google
15856
16442
  # @return [String]
15857
16443
  attr_accessor :region_code
15858
16444
 
16445
+ # The specification for returning the document relevance score.
16446
+ # Corresponds to the JSON property `relevanceScoreSpec`
16447
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestRelevanceScoreSpec]
16448
+ attr_accessor :relevance_score_spec
16449
+
15859
16450
  # The relevance threshold of the search results. Default to Google defined
15860
16451
  # threshold, leveraging a balance of precision and recall to deliver both highly
15861
- # accurate results and comprehensive coverage of relevant information.
16452
+ # accurate results and comprehensive coverage of relevant information. This
16453
+ # feature is not supported for healthcare search.
15862
16454
  # Corresponds to the JSON property `relevanceThreshold`
15863
16455
  # @return [String]
15864
16456
  attr_accessor :relevance_threshold
@@ -15961,6 +16553,7 @@ module Google
15961
16553
  @content_search_spec = args[:content_search_spec] if args.key?(:content_search_spec)
15962
16554
  @custom_fine_tuning_spec = args[:custom_fine_tuning_spec] if args.key?(:custom_fine_tuning_spec)
15963
16555
  @data_store_specs = args[:data_store_specs] if args.key?(:data_store_specs)
16556
+ @display_spec = args[:display_spec] if args.key?(:display_spec)
15964
16557
  @embedding_spec = args[:embedding_spec] if args.key?(:embedding_spec)
15965
16558
  @facet_specs = args[:facet_specs] if args.key?(:facet_specs)
15966
16559
  @filter = args[:filter] if args.key?(:filter)
@@ -15977,7 +16570,9 @@ module Google
15977
16570
  @query = args[:query] if args.key?(:query)
15978
16571
  @query_expansion_spec = args[:query_expansion_spec] if args.key?(:query_expansion_spec)
15979
16572
  @ranking_expression = args[:ranking_expression] if args.key?(:ranking_expression)
16573
+ @ranking_expression_backend = args[:ranking_expression_backend] if args.key?(:ranking_expression_backend)
15980
16574
  @region_code = args[:region_code] if args.key?(:region_code)
16575
+ @relevance_score_spec = args[:relevance_score_spec] if args.key?(:relevance_score_spec)
15981
16576
  @relevance_threshold = args[:relevance_threshold] if args.key?(:relevance_threshold)
15982
16577
  @safe_search = args[:safe_search] if args.key?(:safe_search)
15983
16578
  @search_as_you_type_spec = args[:search_as_you_type_spec] if args.key?(:search_as_you_type_spec)
@@ -16515,6 +17110,25 @@ module Google
16515
17110
  end
16516
17111
  end
16517
17112
 
17113
+ # Specifies features for display, like match highlighting.
17114
+ class GoogleCloudDiscoveryengineV1alphaSearchRequestDisplaySpec
17115
+ include Google::Apis::Core::Hashable
17116
+
17117
+ # The condition under which match highlighting should occur.
17118
+ # Corresponds to the JSON property `matchHighlightingCondition`
17119
+ # @return [String]
17120
+ attr_accessor :match_highlighting_condition
17121
+
17122
+ def initialize(**args)
17123
+ update!(**args)
17124
+ end
17125
+
17126
+ # Update properties of this object
17127
+ def update!(**args)
17128
+ @match_highlighting_condition = args[:match_highlighting_condition] if args.key?(:match_highlighting_condition)
17129
+ end
17130
+ end
17131
+
16518
17132
  # The specification that uses customized query embedding vector to do semantic
16519
17133
  # document retrieval.
16520
17134
  class GoogleCloudDiscoveryengineV1alphaSearchRequestEmbeddingSpec
@@ -16808,6 +17422,27 @@ module Google
16808
17422
  end
16809
17423
  end
16810
17424
 
17425
+ # The specification for returning the document relevance score.
17426
+ class GoogleCloudDiscoveryengineV1alphaSearchRequestRelevanceScoreSpec
17427
+ include Google::Apis::Core::Hashable
17428
+
17429
+ # Optional. Whether to return the relevance score for search results. The higher
17430
+ # the score, the more relevant the document is to the query.
17431
+ # Corresponds to the JSON property `returnRelevanceScore`
17432
+ # @return [Boolean]
17433
+ attr_accessor :return_relevance_score
17434
+ alias_method :return_relevance_score?, :return_relevance_score
17435
+
17436
+ def initialize(**args)
17437
+ update!(**args)
17438
+ end
17439
+
17440
+ # Update properties of this object
17441
+ def update!(**args)
17442
+ @return_relevance_score = args[:return_relevance_score] if args.key?(:return_relevance_score)
17443
+ end
17444
+ end
17445
+
16811
17446
  # Specification for search as you type in search requests.
16812
17447
  class GoogleCloudDiscoveryengineV1alphaSearchRequestSearchAsYouTypeSpec
16813
17448
  include Google::Apis::Core::Hashable
@@ -16849,7 +17484,7 @@ module Google
16849
17484
  attr_accessor :query_id
16850
17485
 
16851
17486
  # The number of top search results to persist. The persisted search results can
16852
- # be used for the subsequent /answer api call. This field is simliar to the `
17487
+ # be used for the subsequent /answer api call. This field is similar to the `
16853
17488
  # summary_result_count` field in SearchRequest.ContentSearchSpec.SummarySpec.
16854
17489
  # summary_result_count. At most 10 results for documents mode, or 50 for chunks
16855
17490
  # mode.
@@ -17708,13 +18343,13 @@ module Google
17708
18343
  attr_accessor :is_default
17709
18344
  alias_method :is_default?, :is_default
17710
18345
 
17711
- # Kms key resource name which will be used to encrypt resources `projects/`
18346
+ # KMS key resource name which will be used to encrypt resources `projects/`
17712
18347
  # project`/locations/`location`/keyRings/`keyRing`/cryptoKeys/`keyId``.
17713
18348
  # Corresponds to the JSON property `kmsKey`
17714
18349
  # @return [String]
17715
18350
  attr_accessor :kms_key
17716
18351
 
17717
- # Kms key version resource name which will be used to encrypt resources `/
18352
+ # KMS key version resource name which will be used to encrypt resources `/
17718
18353
  # cryptoKeyVersions/`keyVersion``.
17719
18354
  # Corresponds to the JSON property `kmsKeyVersion`
17720
18355
  # @return [String]
@@ -17725,9 +18360,9 @@ module Google
17725
18360
  # @return [Fixnum]
17726
18361
  attr_accessor :last_rotation_timestamp_micros
17727
18362
 
17728
- # Required. Name of the CmekConfig, of the form `projects/`project`/locations/`
17729
- # location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/`
17730
- # cmekConfig``.
18363
+ # Required. The name of the CmekConfig of the form `projects/`project`/locations/
18364
+ # `location`/cmekConfig` or `projects/`project`/locations/`location`/cmekConfigs/
18365
+ # `cmekConfig``.
17731
18366
  # Corresponds to the JSON property `name`
17732
18367
  # @return [String]
17733
18368
  attr_accessor :name
@@ -17737,7 +18372,7 @@ module Google
17737
18372
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSingleRegionKey>]
17738
18373
  attr_accessor :single_region_keys
17739
18374
 
17740
- # Output only. State of the CmekConfig.
18375
+ # Output only. The states of the CmekConfig.
17741
18376
  # Corresponds to the JSON property `state`
17742
18377
  # @return [String]
17743
18378
  attr_accessor :state
@@ -17971,6 +18606,13 @@ module Google
17971
18606
  # @return [Float]
17972
18607
  attr_accessor :fixed_boost
17973
18608
 
18609
+ # Specification for custom ranking based on customer specified attribute value.
18610
+ # It provides more controls for customized ranking than the simple (condition,
18611
+ # boost) combination above.
18612
+ # Corresponds to the JSON property `interpolationBoostSpec`
18613
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaControlBoostActionInterpolationBoostSpec]
18614
+ attr_accessor :interpolation_boost_spec
18615
+
17974
18616
  def initialize(**args)
17975
18617
  update!(**args)
17976
18618
  end
@@ -17981,6 +18623,85 @@ module Google
17981
18623
  @data_store = args[:data_store] if args.key?(:data_store)
17982
18624
  @filter = args[:filter] if args.key?(:filter)
17983
18625
  @fixed_boost = args[:fixed_boost] if args.key?(:fixed_boost)
18626
+ @interpolation_boost_spec = args[:interpolation_boost_spec] if args.key?(:interpolation_boost_spec)
18627
+ end
18628
+ end
18629
+
18630
+ # Specification for custom ranking based on customer specified attribute value.
18631
+ # It provides more controls for customized ranking than the simple (condition,
18632
+ # boost) combination above.
18633
+ class GoogleCloudDiscoveryengineV1betaControlBoostActionInterpolationBoostSpec
18634
+ include Google::Apis::Core::Hashable
18635
+
18636
+ # Optional. The attribute type to be used to determine the boost amount. The
18637
+ # attribute value can be derived from the field value of the specified
18638
+ # field_name. In the case of numerical it is straightforward i.e.
18639
+ # attribute_value = numerical_field_value. In the case of freshness however,
18640
+ # attribute_value = (time.now() - datetime_field_value).
18641
+ # Corresponds to the JSON property `attributeType`
18642
+ # @return [String]
18643
+ attr_accessor :attribute_type
18644
+
18645
+ # Optional. The control points used to define the curve. The monotonic function (
18646
+ # defined through the interpolation_type above) passes through the control
18647
+ # points listed here.
18648
+ # Corresponds to the JSON property `controlPoints`
18649
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaControlBoostActionInterpolationBoostSpecControlPoint>]
18650
+ attr_accessor :control_points
18651
+
18652
+ # Optional. The name of the field whose value will be used to determine the
18653
+ # boost amount.
18654
+ # Corresponds to the JSON property `fieldName`
18655
+ # @return [String]
18656
+ attr_accessor :field_name
18657
+
18658
+ # Optional. The interpolation type to be applied to connect the control points
18659
+ # listed below.
18660
+ # Corresponds to the JSON property `interpolationType`
18661
+ # @return [String]
18662
+ attr_accessor :interpolation_type
18663
+
18664
+ def initialize(**args)
18665
+ update!(**args)
18666
+ end
18667
+
18668
+ # Update properties of this object
18669
+ def update!(**args)
18670
+ @attribute_type = args[:attribute_type] if args.key?(:attribute_type)
18671
+ @control_points = args[:control_points] if args.key?(:control_points)
18672
+ @field_name = args[:field_name] if args.key?(:field_name)
18673
+ @interpolation_type = args[:interpolation_type] if args.key?(:interpolation_type)
18674
+ end
18675
+ end
18676
+
18677
+ # The control points used to define the curve. The curve defined through these
18678
+ # control points can only be monotonically increasing or decreasing(constant
18679
+ # values are acceptable).
18680
+ class GoogleCloudDiscoveryengineV1betaControlBoostActionInterpolationBoostSpecControlPoint
18681
+ include Google::Apis::Core::Hashable
18682
+
18683
+ # Optional. Can be one of: 1. The numerical field value. 2. The duration spec
18684
+ # for freshness: The value must be formatted as an XSD `dayTimeDuration` value (
18685
+ # a restricted subset of an ISO 8601 duration value). The pattern for this is: `
18686
+ # nDnM]`.
18687
+ # Corresponds to the JSON property `attributeValue`
18688
+ # @return [String]
18689
+ attr_accessor :attribute_value
18690
+
18691
+ # Optional. The value between -1 to 1 by which to boost the score if the
18692
+ # attribute_value evaluates to the value specified above.
18693
+ # Corresponds to the JSON property `boostAmount`
18694
+ # @return [Float]
18695
+ attr_accessor :boost_amount
18696
+
18697
+ def initialize(**args)
18698
+ update!(**args)
18699
+ end
18700
+
18701
+ # Update properties of this object
18702
+ def update!(**args)
18703
+ @attribute_value = args[:attribute_value] if args.key?(:attribute_value)
18704
+ @boost_amount = args[:boost_amount] if args.key?(:boost_amount)
17984
18705
  end
17985
18706
  end
17986
18707
 
@@ -18084,6 +18805,28 @@ module Google
18084
18805
  end
18085
18806
  end
18086
18807
 
18808
+ # The historical crawl rate timeseries data, used for monitoring.
18809
+ class GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries
18810
+ include Google::Apis::Core::Hashable
18811
+
18812
+ # A collection of data points that describes the time-varying values of a metric.
18813
+ # A time series is identified by a combination of a fully-specified monitored
18814
+ # resource and a fully-specified metric. This type is used for both listing and
18815
+ # creating time series.
18816
+ # Corresponds to the JSON property `qpsTimeSeries`
18817
+ # @return [Google::Apis::DiscoveryengineV1::GoogleMonitoringV3TimeSeries]
18818
+ attr_accessor :qps_time_series
18819
+
18820
+ def initialize(**args)
18821
+ update!(**args)
18822
+ end
18823
+
18824
+ # Update properties of this object
18825
+ def update!(**args)
18826
+ @qps_time_series = args[:qps_time_series] if args.key?(:qps_time_series)
18827
+ end
18828
+ end
18829
+
18087
18830
  # Metadata related to the progress of the DataStoreService.CreateDataStore
18088
18831
  # operation. This will be returned by the google.longrunning.Operation.metadata
18089
18832
  # field.
@@ -18264,7 +19007,7 @@ module Google
18264
19007
  # @return [String]
18265
19008
  attr_accessor :create_time
18266
19009
 
18267
- # Output only. The id of the default Schema asscociated to this data store.
19010
+ # Output only. The id of the default Schema associated to this data store.
18268
19011
  # Corresponds to the JSON property `defaultSchemaId`
18269
19012
  # @return [String]
18270
19013
  attr_accessor :default_schema_id
@@ -18283,6 +19026,19 @@ module Google
18283
19026
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaDocumentProcessingConfig]
18284
19027
  attr_accessor :document_processing_config
18285
19028
 
19029
+ # Config to data store for `HEALTHCARE_FHIR` vertical.
19030
+ # Corresponds to the JSON property `healthcareFhirConfig`
19031
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaHealthcareFhirConfig]
19032
+ attr_accessor :healthcare_fhir_config
19033
+
19034
+ # Immutable. The fully qualified resource name of the associated
19035
+ # IdentityMappingStore. This field can only be set for acl_enabled DataStores
19036
+ # with `THIRD_PARTY` or `GSUITE` IdP. Format: `projects/`project`/locations/`
19037
+ # location`/identityMappingStores/`identity_mapping_store``.
19038
+ # Corresponds to the JSON property `identityMappingStore`
19039
+ # @return [String]
19040
+ attr_accessor :identity_mapping_store
19041
+
18286
19042
  # Immutable. The industry vertical that the data store registers.
18287
19043
  # Corresponds to the JSON property `industryVertical`
18288
19044
  # @return [String]
@@ -18357,6 +19113,8 @@ module Google
18357
19113
  @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id)
18358
19114
  @display_name = args[:display_name] if args.key?(:display_name)
18359
19115
  @document_processing_config = args[:document_processing_config] if args.key?(:document_processing_config)
19116
+ @healthcare_fhir_config = args[:healthcare_fhir_config] if args.key?(:healthcare_fhir_config)
19117
+ @identity_mapping_store = args[:identity_mapping_store] if args.key?(:identity_mapping_store)
18360
19118
  @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical)
18361
19119
  @is_infobot_faq_data_store = args[:is_infobot_faq_data_store] if args.key?(:is_infobot_faq_data_store)
18362
19120
  @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
@@ -18439,6 +19197,45 @@ module Google
18439
19197
  end
18440
19198
  end
18441
19199
 
19200
+ # The historical dedicated crawl rate timeseries data, used for monitoring.
19201
+ # Dedicated crawl is used by Vertex AI to crawl the user's website when dedicate
19202
+ # crawl is set.
19203
+ class GoogleCloudDiscoveryengineV1betaDedicatedCrawlRateTimeSeries
19204
+ include Google::Apis::Core::Hashable
19205
+
19206
+ # The historical crawl rate timeseries data, used for monitoring.
19207
+ # Corresponds to the JSON property `autoRefreshCrawlErrorRate`
19208
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
19209
+ attr_accessor :auto_refresh_crawl_error_rate
19210
+
19211
+ # The historical crawl rate timeseries data, used for monitoring.
19212
+ # Corresponds to the JSON property `autoRefreshCrawlRate`
19213
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
19214
+ attr_accessor :auto_refresh_crawl_rate
19215
+
19216
+ # The historical crawl rate timeseries data, used for monitoring.
19217
+ # Corresponds to the JSON property `userTriggeredCrawlErrorRate`
19218
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
19219
+ attr_accessor :user_triggered_crawl_error_rate
19220
+
19221
+ # The historical crawl rate timeseries data, used for monitoring.
19222
+ # Corresponds to the JSON property `userTriggeredCrawlRate`
19223
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
19224
+ attr_accessor :user_triggered_crawl_rate
19225
+
19226
+ def initialize(**args)
19227
+ update!(**args)
19228
+ end
19229
+
19230
+ # Update properties of this object
19231
+ def update!(**args)
19232
+ @auto_refresh_crawl_error_rate = args[:auto_refresh_crawl_error_rate] if args.key?(:auto_refresh_crawl_error_rate)
19233
+ @auto_refresh_crawl_rate = args[:auto_refresh_crawl_rate] if args.key?(:auto_refresh_crawl_rate)
19234
+ @user_triggered_crawl_error_rate = args[:user_triggered_crawl_error_rate] if args.key?(:user_triggered_crawl_error_rate)
19235
+ @user_triggered_crawl_rate = args[:user_triggered_crawl_rate] if args.key?(:user_triggered_crawl_rate)
19236
+ end
19237
+ end
19238
+
18442
19239
  # Metadata related to the progress of the DataStoreService.DeleteDataStore
18443
19240
  # operation. This will be returned by the google.longrunning.Operation.metadata
18444
19241
  # field.
@@ -18978,6 +19775,17 @@ module Google
18978
19775
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaEngineChatEngineConfigAgentCreationConfig]
18979
19776
  attr_accessor :agent_creation_config
18980
19777
 
19778
+ # Optional. If the flag set to true, we allow the agent and engine are in
19779
+ # different locations, otherwise the agent and engine are required to be in the
19780
+ # same location. The flag is set to false by default. Note that the `
19781
+ # allow_cross_region` are one-time consumed by and passed to EngineService.
19782
+ # CreateEngine. It means they cannot be retrieved using EngineService.GetEngine
19783
+ # or EngineService.ListEngines API after engine creation.
19784
+ # Corresponds to the JSON property `allowCrossRegion`
19785
+ # @return [Boolean]
19786
+ attr_accessor :allow_cross_region
19787
+ alias_method :allow_cross_region?, :allow_cross_region
19788
+
18981
19789
  # The resource name of an exist Dialogflow agent to link to this Chat Engine.
18982
19790
  # Customers can either provide `agent_creation_config` to create agent or
18983
19791
  # provide an agent name that links the agent with the Chat engine. Format: `
@@ -18997,6 +19805,7 @@ module Google
18997
19805
  # Update properties of this object
18998
19806
  def update!(**args)
18999
19807
  @agent_creation_config = args[:agent_creation_config] if args.key?(:agent_creation_config)
19808
+ @allow_cross_region = args[:allow_cross_region] if args.key?(:allow_cross_region)
19000
19809
  @dialogflow_agent_to_link = args[:dialogflow_agent_to_link] if args.key?(:dialogflow_agent_to_link)
19001
19810
  end
19002
19811
  end
@@ -19230,14 +20039,25 @@ module Google
19230
20039
  end
19231
20040
  end
19232
20041
 
19233
- # Response message for SiteSearchEngineService.FetchSitemaps method.
19234
- class GoogleCloudDiscoveryengineV1betaFetchSitemapsResponse
20042
+ # Config to data store for `HEALTHCARE_FHIR` vertical.
20043
+ class GoogleCloudDiscoveryengineV1betaHealthcareFhirConfig
19235
20044
  include Google::Apis::Core::Hashable
19236
20045
 
19237
- # List of Sitemaps fetched.
19238
- # Corresponds to the JSON property `sitemapsMetadata`
19239
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaFetchSitemapsResponseSitemapMetadata>]
19240
- attr_accessor :sitemaps_metadata
20046
+ # Whether to enable configurable schema for `HEALTHCARE_FHIR` vertical. If set
20047
+ # to `true`, the predefined healthcare fhir schema can be extended for more
20048
+ # customized searching and filtering.
20049
+ # Corresponds to the JSON property `enableConfigurableSchema`
20050
+ # @return [Boolean]
20051
+ attr_accessor :enable_configurable_schema
20052
+ alias_method :enable_configurable_schema?, :enable_configurable_schema
20053
+
20054
+ # Whether to enable static indexing for `HEALTHCARE_FHIR` batch ingestion. If
20055
+ # set to `true`, the batch ingestion will be processed in a static indexing mode
20056
+ # which is slower but more capable of handling larger volume.
20057
+ # Corresponds to the JSON property `enableStaticIndexingForBatchIngestion`
20058
+ # @return [Boolean]
20059
+ attr_accessor :enable_static_indexing_for_batch_ingestion
20060
+ alias_method :enable_static_indexing_for_batch_ingestion?, :enable_static_indexing_for_batch_ingestion
19241
20061
 
19242
20062
  def initialize(**args)
19243
20063
  update!(**args)
@@ -19245,18 +20065,31 @@ module Google
19245
20065
 
19246
20066
  # Update properties of this object
19247
20067
  def update!(**args)
19248
- @sitemaps_metadata = args[:sitemaps_metadata] if args.key?(:sitemaps_metadata)
20068
+ @enable_configurable_schema = args[:enable_configurable_schema] if args.key?(:enable_configurable_schema)
20069
+ @enable_static_indexing_for_batch_ingestion = args[:enable_static_indexing_for_batch_ingestion] if args.key?(:enable_static_indexing_for_batch_ingestion)
19249
20070
  end
19250
20071
  end
19251
20072
 
19252
- # Contains a Sitemap and its metadata.
19253
- class GoogleCloudDiscoveryengineV1betaFetchSitemapsResponseSitemapMetadata
20073
+ # IdentityMappingEntry LongRunningOperation metadata for
20074
+ # IdentityMappingStoreService.ImportIdentityMappings and
20075
+ # IdentityMappingStoreService.PurgeIdentityMappings
20076
+ class GoogleCloudDiscoveryengineV1betaIdentityMappingEntryOperationMetadata
19254
20077
  include Google::Apis::Core::Hashable
19255
20078
 
19256
- # A sitemap for the SiteSearchEngine.
19257
- # Corresponds to the JSON property `sitemap`
19258
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSitemap]
19259
- attr_accessor :sitemap
20079
+ # The number of IdentityMappingEntries that failed to be processed.
20080
+ # Corresponds to the JSON property `failureCount`
20081
+ # @return [Fixnum]
20082
+ attr_accessor :failure_count
20083
+
20084
+ # The number of IdentityMappingEntries that were successfully processed.
20085
+ # Corresponds to the JSON property `successCount`
20086
+ # @return [Fixnum]
20087
+ attr_accessor :success_count
20088
+
20089
+ # The total number of IdentityMappingEntries that were processed.
20090
+ # Corresponds to the JSON property `totalCount`
20091
+ # @return [Fixnum]
20092
+ attr_accessor :total_count
19260
20093
 
19261
20094
  def initialize(**args)
19262
20095
  update!(**args)
@@ -19264,7 +20097,9 @@ module Google
19264
20097
 
19265
20098
  # Update properties of this object
19266
20099
  def update!(**args)
19267
- @sitemap = args[:sitemap] if args.key?(:sitemap)
20100
+ @failure_count = args[:failure_count] if args.key?(:failure_count)
20101
+ @success_count = args[:success_count] if args.key?(:success_count)
20102
+ @total_count = args[:total_count] if args.key?(:total_count)
19268
20103
  end
19269
20104
  end
19270
20105
 
@@ -19427,6 +20262,25 @@ module Google
19427
20262
  end
19428
20263
  end
19429
20264
 
20265
+ # Response message for IdentityMappingStoreService.ImportIdentityMappings
20266
+ class GoogleCloudDiscoveryengineV1betaImportIdentityMappingsResponse
20267
+ include Google::Apis::Core::Hashable
20268
+
20269
+ # A sample of errors encountered while processing the request.
20270
+ # Corresponds to the JSON property `errorSamples`
20271
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleRpcStatus>]
20272
+ attr_accessor :error_samples
20273
+
20274
+ def initialize(**args)
20275
+ update!(**args)
20276
+ end
20277
+
20278
+ # Update properties of this object
20279
+ def update!(**args)
20280
+ @error_samples = args[:error_samples] if args.key?(:error_samples)
20281
+ end
20282
+ end
20283
+
19430
20284
  # Metadata related to the progress of the ImportSampleQueries operation. This
19431
20285
  # will be returned by the google.longrunning.Operation.metadata field.
19432
20286
  class GoogleCloudDiscoveryengineV1betaImportSampleQueriesMetadata
@@ -19734,6 +20588,83 @@ module Google
19734
20588
  end
19735
20589
  end
19736
20590
 
20591
+ # Response message for CrawlRateManagementService.ObtainCrawlRate method. The
20592
+ # response contains organcic or dedicated crawl rate time series data for
20593
+ # monitoring, depending on whether dedicated crawl rate is set.
20594
+ class GoogleCloudDiscoveryengineV1betaObtainCrawlRateResponse
20595
+ include Google::Apis::Core::Hashable
20596
+
20597
+ # The historical dedicated crawl rate timeseries data, used for monitoring.
20598
+ # Dedicated crawl is used by Vertex AI to crawl the user's website when dedicate
20599
+ # crawl is set.
20600
+ # Corresponds to the JSON property `dedicatedCrawlRateTimeSeries`
20601
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaDedicatedCrawlRateTimeSeries]
20602
+ attr_accessor :dedicated_crawl_rate_time_series
20603
+
20604
+ # The `Status` type defines a logical error model that is suitable for different
20605
+ # programming environments, including REST APIs and RPC APIs. It is used by [
20606
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
20607
+ # data: error code, error message, and error details. You can find out more
20608
+ # about this error model and how to work with it in the [API Design Guide](https:
20609
+ # //cloud.google.com/apis/design/errors).
20610
+ # Corresponds to the JSON property `error`
20611
+ # @return [Google::Apis::DiscoveryengineV1::GoogleRpcStatus]
20612
+ attr_accessor :error
20613
+
20614
+ # The historical organic crawl rate timeseries data, used for monitoring.
20615
+ # Organic crawl is auto-determined by Google to crawl the user's website when
20616
+ # dedicate crawl is not set. Crawl rate is the QPS of crawl request Google sends
20617
+ # to the user's website.
20618
+ # Corresponds to the JSON property `organicCrawlRateTimeSeries`
20619
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaOrganicCrawlRateTimeSeries]
20620
+ attr_accessor :organic_crawl_rate_time_series
20621
+
20622
+ # Output only. The state of the response.
20623
+ # Corresponds to the JSON property `state`
20624
+ # @return [String]
20625
+ attr_accessor :state
20626
+
20627
+ def initialize(**args)
20628
+ update!(**args)
20629
+ end
20630
+
20631
+ # Update properties of this object
20632
+ def update!(**args)
20633
+ @dedicated_crawl_rate_time_series = args[:dedicated_crawl_rate_time_series] if args.key?(:dedicated_crawl_rate_time_series)
20634
+ @error = args[:error] if args.key?(:error)
20635
+ @organic_crawl_rate_time_series = args[:organic_crawl_rate_time_series] if args.key?(:organic_crawl_rate_time_series)
20636
+ @state = args[:state] if args.key?(:state)
20637
+ end
20638
+ end
20639
+
20640
+ # The historical organic crawl rate timeseries data, used for monitoring.
20641
+ # Organic crawl is auto-determined by Google to crawl the user's website when
20642
+ # dedicate crawl is not set. Crawl rate is the QPS of crawl request Google sends
20643
+ # to the user's website.
20644
+ class GoogleCloudDiscoveryengineV1betaOrganicCrawlRateTimeSeries
20645
+ include Google::Apis::Core::Hashable
20646
+
20647
+ # The historical crawl rate timeseries data, used for monitoring.
20648
+ # Corresponds to the JSON property `googleOrganicCrawlRate`
20649
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
20650
+ attr_accessor :google_organic_crawl_rate
20651
+
20652
+ # The historical crawl rate timeseries data, used for monitoring.
20653
+ # Corresponds to the JSON property `vertexAiOrganicCrawlRate`
20654
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
20655
+ attr_accessor :vertex_ai_organic_crawl_rate
20656
+
20657
+ def initialize(**args)
20658
+ update!(**args)
20659
+ end
20660
+
20661
+ # Update properties of this object
20662
+ def update!(**args)
20663
+ @google_organic_crawl_rate = args[:google_organic_crawl_rate] if args.key?(:google_organic_crawl_rate)
20664
+ @vertex_ai_organic_crawl_rate = args[:vertex_ai_organic_crawl_rate] if args.key?(:vertex_ai_organic_crawl_rate)
20665
+ end
20666
+ end
20667
+
19737
20668
  # Metadata and configurations for a Google Cloud project in the service.
19738
20669
  class GoogleCloudDiscoveryengineV1betaProject
19739
20670
  include Google::Apis::Core::Hashable
@@ -20042,6 +20973,66 @@ module Google
20042
20973
  end
20043
20974
  end
20044
20975
 
20976
+ # Metadata related to the progress of the CrawlRateManagementService.
20977
+ # RemoveDedicatedCrawlRate operation. This will be returned by the google.
20978
+ # longrunning.Operation.metadata field.
20979
+ class GoogleCloudDiscoveryengineV1betaRemoveDedicatedCrawlRateMetadata
20980
+ include Google::Apis::Core::Hashable
20981
+
20982
+ # Operation create time.
20983
+ # Corresponds to the JSON property `createTime`
20984
+ # @return [String]
20985
+ attr_accessor :create_time
20986
+
20987
+ # Operation last update time. If the operation is done, this is also the finish
20988
+ # time.
20989
+ # Corresponds to the JSON property `updateTime`
20990
+ # @return [String]
20991
+ attr_accessor :update_time
20992
+
20993
+ def initialize(**args)
20994
+ update!(**args)
20995
+ end
20996
+
20997
+ # Update properties of this object
20998
+ def update!(**args)
20999
+ @create_time = args[:create_time] if args.key?(:create_time)
21000
+ @update_time = args[:update_time] if args.key?(:update_time)
21001
+ end
21002
+ end
21003
+
21004
+ # Response message for CrawlRateManagementService.RemoveDedicatedCrawlRate
21005
+ # method. It simply returns the state of the response, and an error message if
21006
+ # the state is FAILED.
21007
+ class GoogleCloudDiscoveryengineV1betaRemoveDedicatedCrawlRateResponse
21008
+ include Google::Apis::Core::Hashable
21009
+
21010
+ # The `Status` type defines a logical error model that is suitable for different
21011
+ # programming environments, including REST APIs and RPC APIs. It is used by [
21012
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
21013
+ # data: error code, error message, and error details. You can find out more
21014
+ # about this error model and how to work with it in the [API Design Guide](https:
21015
+ # //cloud.google.com/apis/design/errors).
21016
+ # Corresponds to the JSON property `error`
21017
+ # @return [Google::Apis::DiscoveryengineV1::GoogleRpcStatus]
21018
+ attr_accessor :error
21019
+
21020
+ # Output only. The state of the response.
21021
+ # Corresponds to the JSON property `state`
21022
+ # @return [String]
21023
+ attr_accessor :state
21024
+
21025
+ def initialize(**args)
21026
+ update!(**args)
21027
+ end
21028
+
21029
+ # Update properties of this object
21030
+ def update!(**args)
21031
+ @error = args[:error] if args.key?(:error)
21032
+ @state = args[:state] if args.key?(:state)
21033
+ end
21034
+ end
21035
+
20045
21036
  # Defines the structure and layout of a type of document data.
20046
21037
  class GoogleCloudDiscoveryengineV1betaSchema
20047
21038
  include Google::Apis::Core::Hashable
@@ -20157,10 +21148,10 @@ module Google
20157
21148
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestContentSearchSpec]
20158
21149
  attr_accessor :content_search_spec
20159
21150
 
20160
- # Specs defining DataStores to filter on in a search call and configurations for
20161
- # those data stores. This is only considered for Engines with multiple data
20162
- # stores. For engines with a single data store, the specs directly under
20163
- # SearchRequest should be used.
21151
+ # Specifications that define the specific [DataStore]s to be searched, along
21152
+ # with configurations for those data stores. This is only considered for Engines
21153
+ # with multiple data stores. For engines with a single data store, the specs
21154
+ # directly under SearchRequest should be used.
20164
21155
  # Corresponds to the JSON property `dataStoreSpecs`
20165
21156
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestDataStoreSpec>]
20166
21157
  attr_accessor :data_store_specs
@@ -20283,21 +21274,41 @@ module Google
20283
21274
  attr_accessor :query_expansion_spec
20284
21275
 
20285
21276
  # The ranking expression controls the customized ranking on retrieval documents.
20286
- # This overrides ServingConfig.ranking_expression. The ranking expression is a
20287
- # single function or multiple functions that are joined by "+". *
20288
- # ranking_expression = function, ` " + ", function `; Supported functions: *
20289
- # double * relevance_score * double * dotProduct(embedding_field_path) Function
20290
- # variables: * `relevance_score`: pre-defined keywords, used for measure
20291
- # relevance between query and document. * `embedding_field_path`: the document
20292
- # embedding field used with query embedding vector. * `dotProduct`: embedding
20293
- # function between embedding_field_path and query embedding vector. Example
20294
- # ranking expression: If document has an embedding field doc_embedding, the
20295
- # ranking expression could be `0.5 * relevance_score + 0.3 * dotProduct(
20296
- # doc_embedding)`.
21277
+ # This overrides ServingConfig.ranking_expression. The syntax and supported
21278
+ # features depend on the ranking_expression_backend value. If
21279
+ # ranking_expression_backend is not provided, it defaults to BYOE. === BYOE ===
21280
+ # If ranking expression is not provided or set to BYOE, it should be a single
21281
+ # function or multiple functions that are joined by "+". * ranking_expression =
21282
+ # function, ` " + ", function `; Supported functions: * double * relevance_score
21283
+ # * double * dotProduct(embedding_field_path) Function variables: * `
21284
+ # relevance_score`: pre-defined keywords, used for measure relevance between
21285
+ # query and document. * `embedding_field_path`: the document embedding field
21286
+ # used with query embedding vector. * `dotProduct`: embedding function between
21287
+ # embedding_field_path and query embedding vector. Example ranking expression:
21288
+ # If document has an embedding field doc_embedding, the ranking expression could
21289
+ # be `0.5 * relevance_score + 0.3 * dotProduct(doc_embedding)`. === CLEARBOX ===
21290
+ # If ranking expression is set to CLEARBOX, the following expression types (and
21291
+ # combinations of those chained using + or * operators) are supported: * double *
21292
+ # signal * log(signal) * exp(signal) * rr(signal, double > 0) -- reciprocal
21293
+ # rank transformation with second argument being a denominator constant. *
21294
+ # is_nan(signal) -- returns 0 if signal is NaN, 1 otherwise. * fill_nan(signal1,
21295
+ # signal2 | double) -- if signal1 is NaN, returns signal2 | double, else returns
21296
+ # signal1. Examples: * 0.2 * gecko_score + 0.8 * log(bm25_score) * 0.2 * exp(
21297
+ # fill_nan(gecko_score, 0)) + 0.3 * is_nan(bm25_score) * 0.2 * rr(gecko_score,
21298
+ # 16) + 0.8 * rr(bm25_score, 32) The following signals are supported: *
21299
+ # gecko_score -- semantic similarity adjustment * bm25_score -- keyword match
21300
+ # adjustment * jetstream_score -- semantic relevance adjustment * pctr_rank --
21301
+ # predicted conversion rate adjustment as a rank * freshness_rank -- freshness
21302
+ # adjustment as a rank * base_rank -- the default rank of the result
20297
21303
  # Corresponds to the JSON property `rankingExpression`
20298
21304
  # @return [String]
20299
21305
  attr_accessor :ranking_expression
20300
21306
 
21307
+ # Optional. The backend to use for the ranking expression evaluation.
21308
+ # Corresponds to the JSON property `rankingExpressionBackend`
21309
+ # @return [String]
21310
+ attr_accessor :ranking_expression_backend
21311
+
20301
21312
  # The Unicode country/region code (CLDR) of a location, such as "US" and "419".
20302
21313
  # For more information, see [Standard fields](https://cloud.google.com/apis/
20303
21314
  # design/standard_fields). If set, then results will be boosted based on the
@@ -20306,9 +21317,15 @@ module Google
20306
21317
  # @return [String]
20307
21318
  attr_accessor :region_code
20308
21319
 
21320
+ # The specification for returning the document relevance score.
21321
+ # Corresponds to the JSON property `relevanceScoreSpec`
21322
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestRelevanceScoreSpec]
21323
+ attr_accessor :relevance_score_spec
21324
+
20309
21325
  # The relevance threshold of the search results. Default to Google defined
20310
21326
  # threshold, leveraging a balance of precision and recall to deliver both highly
20311
- # accurate results and comprehensive coverage of relevant information.
21327
+ # accurate results and comprehensive coverage of relevant information. This
21328
+ # feature is not supported for healthcare search.
20312
21329
  # Corresponds to the JSON property `relevanceThreshold`
20313
21330
  # @return [String]
20314
21331
  attr_accessor :relevance_threshold
@@ -20426,7 +21443,9 @@ module Google
20426
21443
  @query = args[:query] if args.key?(:query)
20427
21444
  @query_expansion_spec = args[:query_expansion_spec] if args.key?(:query_expansion_spec)
20428
21445
  @ranking_expression = args[:ranking_expression] if args.key?(:ranking_expression)
21446
+ @ranking_expression_backend = args[:ranking_expression_backend] if args.key?(:ranking_expression_backend)
20429
21447
  @region_code = args[:region_code] if args.key?(:region_code)
21448
+ @relevance_score_spec = args[:relevance_score_spec] if args.key?(:relevance_score_spec)
20430
21449
  @relevance_threshold = args[:relevance_threshold] if args.key?(:relevance_threshold)
20431
21450
  @safe_search = args[:safe_search] if args.key?(:safe_search)
20432
21451
  @search_as_you_type_spec = args[:search_as_you_type_spec] if args.key?(:search_as_you_type_spec)
@@ -21257,6 +22276,27 @@ module Google
21257
22276
  end
21258
22277
  end
21259
22278
 
22279
+ # The specification for returning the document relevance score.
22280
+ class GoogleCloudDiscoveryengineV1betaSearchRequestRelevanceScoreSpec
22281
+ include Google::Apis::Core::Hashable
22282
+
22283
+ # Optional. Whether to return the relevance score for search results. The higher
22284
+ # the score, the more relevant the document is to the query.
22285
+ # Corresponds to the JSON property `returnRelevanceScore`
22286
+ # @return [Boolean]
22287
+ attr_accessor :return_relevance_score
22288
+ alias_method :return_relevance_score?, :return_relevance_score
22289
+
22290
+ def initialize(**args)
22291
+ update!(**args)
22292
+ end
22293
+
22294
+ # Update properties of this object
22295
+ def update!(**args)
22296
+ @return_relevance_score = args[:return_relevance_score] if args.key?(:return_relevance_score)
22297
+ end
22298
+ end
22299
+
21260
22300
  # Specification for search as you type in search requests.
21261
22301
  class GoogleCloudDiscoveryengineV1betaSearchRequestSearchAsYouTypeSpec
21262
22302
  include Google::Apis::Core::Hashable
@@ -21298,7 +22338,7 @@ module Google
21298
22338
  attr_accessor :query_id
21299
22339
 
21300
22340
  # The number of top search results to persist. The persisted search results can
21301
- # be used for the subsequent /answer api call. This field is simliar to the `
22341
+ # be used for the subsequent /answer api call. This field is similar to the `
21302
22342
  # summary_result_count` field in SearchRequest.ContentSearchSpec.SummarySpec.
21303
22343
  # summary_result_count. At most 10 results for documents mode, or 50 for chunks
21304
22344
  # mode.
@@ -21337,6 +22377,66 @@ module Google
21337
22377
  end
21338
22378
  end
21339
22379
 
22380
+ # Metadata related to the progress of the CrawlRateManagementService.
22381
+ # SetDedicatedCrawlRate operation. This will be returned by the google.
22382
+ # longrunning.Operation.metadata field.
22383
+ class GoogleCloudDiscoveryengineV1betaSetDedicatedCrawlRateMetadata
22384
+ include Google::Apis::Core::Hashable
22385
+
22386
+ # Operation create time.
22387
+ # Corresponds to the JSON property `createTime`
22388
+ # @return [String]
22389
+ attr_accessor :create_time
22390
+
22391
+ # Operation last update time. If the operation is done, this is also the finish
22392
+ # time.
22393
+ # Corresponds to the JSON property `updateTime`
22394
+ # @return [String]
22395
+ attr_accessor :update_time
22396
+
22397
+ def initialize(**args)
22398
+ update!(**args)
22399
+ end
22400
+
22401
+ # Update properties of this object
22402
+ def update!(**args)
22403
+ @create_time = args[:create_time] if args.key?(:create_time)
22404
+ @update_time = args[:update_time] if args.key?(:update_time)
22405
+ end
22406
+ end
22407
+
22408
+ # Response message for CrawlRateManagementService.SetDedicatedCrawlRate method.
22409
+ # It simply returns the state of the response, and an error message if the state
22410
+ # is FAILED.
22411
+ class GoogleCloudDiscoveryengineV1betaSetDedicatedCrawlRateResponse
22412
+ include Google::Apis::Core::Hashable
22413
+
22414
+ # The `Status` type defines a logical error model that is suitable for different
22415
+ # programming environments, including REST APIs and RPC APIs. It is used by [
22416
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
22417
+ # data: error code, error message, and error details. You can find out more
22418
+ # about this error model and how to work with it in the [API Design Guide](https:
22419
+ # //cloud.google.com/apis/design/errors).
22420
+ # Corresponds to the JSON property `error`
22421
+ # @return [Google::Apis::DiscoveryengineV1::GoogleRpcStatus]
22422
+ attr_accessor :error
22423
+
22424
+ # Output only. The state of the response.
22425
+ # Corresponds to the JSON property `state`
22426
+ # @return [String]
22427
+ attr_accessor :state
22428
+
22429
+ def initialize(**args)
22430
+ update!(**args)
22431
+ end
22432
+
22433
+ # Update properties of this object
22434
+ def update!(**args)
22435
+ @error = args[:error] if args.key?(:error)
22436
+ @state = args[:state] if args.key?(:state)
22437
+ end
22438
+ end
22439
+
21340
22440
  # Metadata for single-regional CMEKs.
21341
22441
  class GoogleCloudDiscoveryengineV1betaSingleRegionKey
21342
22442
  include Google::Apis::Core::Hashable