google-apis-discoveryengine_v1beta 0.54.0 → 0.55.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ef09ac888318b7d0799ace65f8901531895e5a1176e25a47e8d5163aa76fb393
4
- data.tar.gz: 4cf604dbad70a102fe119ed5b4ffdad624ef7a3c62068c9e3e3e48d0874d1fbe
3
+ metadata.gz: 137cbcd54a25995df886c456520245a5848182a362d56b04002b631c19f8b2a3
4
+ data.tar.gz: 82ff50691300b3d808d4519d5280b55b00129f0bf0e0afbe177ea72ad00bcf94
5
5
  SHA512:
6
- metadata.gz: 13d73e1314c5e696fd6ee9ced1fea10464d7f01c70bc4b0db4f21e5177ba4caddc3abe25fabe536d0809dde952d775a88b803ca23457303e3e02863dc202c987
7
- data.tar.gz: be4885c93590ebd7d8233115814b58f73410d10c933ceecc5e4fbcb13c9efd534574098951910f9b6c81bdc9869785f6e84e31bde761237fae0667624df9f987
6
+ metadata.gz: d6c89847c07b45872af14cd3b1952017c6c5d9e5d5080736ec85cf82d4be2f54429c35a9878ac3b142ac7625d0499cd0795510a862a7c1daebdcfd4bf52fea33
7
+ data.tar.gz: 882518bf6d46d7a5ca79ef5e4add4a0aa9dab2b4c1c14e46f9e8203eb8adc9c2b5324b91760ea3babce044f72bc77ad860fdff28f20435a7cd81662218a46213
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.55.0 (2025-01-12)
4
+
5
+ * Regenerated from discovery document revision 20250107
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.54.0 (2024-12-22)
4
9
 
5
10
  * Regenerated from discovery document revision 20241216
@@ -695,12 +695,26 @@ module Google
695
695
  class GoogleCloudDiscoveryengineV1AdvancedSiteSearchConfig
696
696
  include Google::Apis::Core::Hashable
697
697
 
698
+ # If set true, automatic refresh is disabled for the DataStore.
699
+ # Corresponds to the JSON property `disableAutomaticRefresh`
700
+ # @return [Boolean]
701
+ attr_accessor :disable_automatic_refresh
702
+ alias_method :disable_automatic_refresh?, :disable_automatic_refresh
703
+
704
+ # If set true, initial indexing is disabled for the DataStore.
705
+ # Corresponds to the JSON property `disableInitialIndex`
706
+ # @return [Boolean]
707
+ attr_accessor :disable_initial_index
708
+ alias_method :disable_initial_index?, :disable_initial_index
709
+
698
710
  def initialize(**args)
699
711
  update!(**args)
700
712
  end
701
713
 
702
714
  # Update properties of this object
703
715
  def update!(**args)
716
+ @disable_automatic_refresh = args[:disable_automatic_refresh] if args.key?(:disable_automatic_refresh)
717
+ @disable_initial_index = args[:disable_initial_index] if args.key?(:disable_initial_index)
704
718
  end
705
719
  end
706
720
 
@@ -997,8 +1011,8 @@ module Google
997
1011
  class GoogleCloudDiscoveryengineV1ControlBoostAction
998
1012
  include Google::Apis::Core::Hashable
999
1013
 
1000
- # Required. Strength of the boost, which should be in [-1, 1]. Negative boost
1001
- # means demotion. Default is 0.0 (No-op).
1014
+ # Strength of the boost, which should be in [-1, 1]. Negative boost means
1015
+ # demotion. Default is 0.0 (No-op).
1002
1016
  # Corresponds to the JSON property `boost`
1003
1017
  # @return [Float]
1004
1018
  attr_accessor :boost
@@ -1018,6 +1032,12 @@ module Google
1018
1032
  # @return [String]
1019
1033
  attr_accessor :filter
1020
1034
 
1035
+ # Optional. Strength of the boost, which should be in [-1, 1]. Negative boost
1036
+ # means demotion. Default is 0.0 (No-op).
1037
+ # Corresponds to the JSON property `fixedBoost`
1038
+ # @return [Float]
1039
+ attr_accessor :fixed_boost
1040
+
1021
1041
  def initialize(**args)
1022
1042
  update!(**args)
1023
1043
  end
@@ -1027,6 +1047,7 @@ module Google
1027
1047
  @boost = args[:boost] if args.key?(:boost)
1028
1048
  @data_store = args[:data_store] if args.key?(:data_store)
1029
1049
  @filter = args[:filter] if args.key?(:filter)
1050
+ @fixed_boost = args[:fixed_boost] if args.key?(:fixed_boost)
1030
1051
  end
1031
1052
  end
1032
1053
 
@@ -1487,6 +1508,34 @@ module Google
1487
1508
  end
1488
1509
  end
1489
1510
 
1511
+ # Metadata related to the progress of the IdentityMappingStoreService.
1512
+ # DeleteIdentityMappingStore operation. This will be returned by the google.
1513
+ # longrunning.Operation.metadata field.
1514
+ class GoogleCloudDiscoveryengineV1DeleteIdentityMappingStoreMetadata
1515
+ include Google::Apis::Core::Hashable
1516
+
1517
+ # Operation create time.
1518
+ # Corresponds to the JSON property `createTime`
1519
+ # @return [String]
1520
+ attr_accessor :create_time
1521
+
1522
+ # Operation last update time. If the operation is done, this is also the finish
1523
+ # time.
1524
+ # Corresponds to the JSON property `updateTime`
1525
+ # @return [String]
1526
+ attr_accessor :update_time
1527
+
1528
+ def initialize(**args)
1529
+ update!(**args)
1530
+ end
1531
+
1532
+ # Update properties of this object
1533
+ def update!(**args)
1534
+ @create_time = args[:create_time] if args.key?(:create_time)
1535
+ @update_time = args[:update_time] if args.key?(:update_time)
1536
+ end
1537
+ end
1538
+
1490
1539
  # Metadata for DeleteSchema LRO.
1491
1540
  class GoogleCloudDiscoveryengineV1DeleteSchemaMetadata
1492
1541
  include Google::Apis::Core::Hashable
@@ -3158,7 +3207,7 @@ module Google
3158
3207
  # The ranking expression controls the customized ranking on retrieval documents.
3159
3208
  # To leverage this, document embedding is required. The ranking expression
3160
3209
  # setting in ServingConfig applies to all search requests served by the serving
3161
- # config. However, if SearchRequest.ranking_expression is specified, it
3210
+ # config. However, if `SearchRequest.ranking_expression` is specified, it
3162
3211
  # overrides the ServingConfig ranking expression. The ranking expression is a
3163
3212
  # single function or multiple functions that are joined by "+". *
3164
3213
  # ranking_expression = function, ` " + ", function `; Supported functions: *
@@ -3364,7 +3413,7 @@ module Google
3364
3413
  class GoogleCloudDiscoveryengineV1TargetSite
3365
3414
  include Google::Apis::Core::Hashable
3366
3415
 
3367
- # Input only. If set to false, a uri_pattern is generated to include all pages
3416
+ # Immutable. If set to false, a uri_pattern is generated to include all pages
3368
3417
  # whose address contains the provided_uri_pattern. If set to true, an
3369
3418
  # uri_pattern is generated to try to be an exact match of the
3370
3419
  # provided_uri_pattern or just the specific page if the provided_uri_pattern is
@@ -3830,6 +3879,11 @@ module Google
3830
3879
  # @return [Array<String>]
3831
3880
  attr_accessor :related_questions
3832
3881
 
3882
+ # Optional. Safety ratings.
3883
+ # Corresponds to the JSON property `safetyRatings`
3884
+ # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSafetyRating>]
3885
+ attr_accessor :safety_ratings
3886
+
3833
3887
  # The state of the answer generation.
3834
3888
  # Corresponds to the JSON property `state`
3835
3889
  # @return [String]
@@ -3857,6 +3911,7 @@ module Google
3857
3911
  @query_understanding_info = args[:query_understanding_info] if args.key?(:query_understanding_info)
3858
3912
  @references = args[:references] if args.key?(:references)
3859
3913
  @related_questions = args[:related_questions] if args.key?(:related_questions)
3914
+ @safety_ratings = args[:safety_ratings] if args.key?(:safety_ratings)
3860
3915
  @state = args[:state] if args.key?(:state)
3861
3916
  @steps = args[:steps] if args.key?(:steps)
3862
3917
  end
@@ -4555,8 +4610,9 @@ module Google
4555
4610
 
4556
4611
  # Manages the connection to external data sources for all data stores grouped
4557
4612
  # under a Collection. It's a singleton resource of Collection. The
4558
- # initialization is only supported through SetUpDataConnector method, which will
4559
- # create a new Collection and initialize its DataConnector. //
4613
+ # initialization is only supported through DataConnectorService.
4614
+ # SetUpDataConnector method, which will create a new Collection and initialize
4615
+ # its DataConnector.
4560
4616
  # Corresponds to the JSON property `dataConnector`
4561
4617
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaDataConnector]
4562
4618
  attr_accessor :data_connector
@@ -4926,8 +4982,8 @@ module Google
4926
4982
  class GoogleCloudDiscoveryengineV1alphaControlBoostAction
4927
4983
  include Google::Apis::Core::Hashable
4928
4984
 
4929
- # Required. Strength of the boost, which should be in [-1, 1]. Negative boost
4930
- # means demotion. Default is 0.0 (No-op).
4985
+ # Strength of the boost, which should be in [-1, 1]. Negative boost means
4986
+ # demotion. Default is 0.0 (No-op).
4931
4987
  # Corresponds to the JSON property `boost`
4932
4988
  # @return [Float]
4933
4989
  attr_accessor :boost
@@ -4947,6 +5003,12 @@ module Google
4947
5003
  # @return [String]
4948
5004
  attr_accessor :filter
4949
5005
 
5006
+ # Optional. Strength of the boost, which should be in [-1, 1]. Negative boost
5007
+ # means demotion. Default is 0.0 (No-op).
5008
+ # Corresponds to the JSON property `fixedBoost`
5009
+ # @return [Float]
5010
+ attr_accessor :fixed_boost
5011
+
4950
5012
  def initialize(**args)
4951
5013
  update!(**args)
4952
5014
  end
@@ -4956,6 +5018,7 @@ module Google
4956
5018
  @boost = args[:boost] if args.key?(:boost)
4957
5019
  @data_store = args[:data_store] if args.key?(:data_store)
4958
5020
  @filter = args[:filter] if args.key?(:filter)
5021
+ @fixed_boost = args[:fixed_boost] if args.key?(:fixed_boost)
4959
5022
  end
4960
5023
  end
4961
5024
 
@@ -5253,8 +5316,9 @@ module Google
5253
5316
 
5254
5317
  # Manages the connection to external data sources for all data stores grouped
5255
5318
  # under a Collection. It's a singleton resource of Collection. The
5256
- # initialization is only supported through SetUpDataConnector method, which will
5257
- # create a new Collection and initialize its DataConnector. //
5319
+ # initialization is only supported through DataConnectorService.
5320
+ # SetUpDataConnector method, which will create a new Collection and initialize
5321
+ # its DataConnector.
5258
5322
  class GoogleCloudDiscoveryengineV1alphaDataConnector
5259
5323
  include Google::Apis::Core::Hashable
5260
5324
 
@@ -5843,6 +5907,34 @@ module Google
5843
5907
  end
5844
5908
  end
5845
5909
 
5910
+ # Metadata related to the progress of the IdentityMappingStoreService.
5911
+ # DeleteIdentityMappingStore operation. This will be returned by the google.
5912
+ # longrunning.Operation.metadata field.
5913
+ class GoogleCloudDiscoveryengineV1alphaDeleteIdentityMappingStoreMetadata
5914
+ include Google::Apis::Core::Hashable
5915
+
5916
+ # Operation create time.
5917
+ # Corresponds to the JSON property `createTime`
5918
+ # @return [String]
5919
+ attr_accessor :create_time
5920
+
5921
+ # Operation last update time. If the operation is done, this is also the finish
5922
+ # time.
5923
+ # Corresponds to the JSON property `updateTime`
5924
+ # @return [String]
5925
+ attr_accessor :update_time
5926
+
5927
+ def initialize(**args)
5928
+ update!(**args)
5929
+ end
5930
+
5931
+ # Update properties of this object
5932
+ def update!(**args)
5933
+ @create_time = args[:create_time] if args.key?(:create_time)
5934
+ @update_time = args[:update_time] if args.key?(:update_time)
5935
+ end
5936
+ end
5937
+
5846
5938
  # Metadata for DeleteSchema LRO.
5847
5939
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
5848
5940
  include Google::Apis::Core::Hashable
@@ -7068,6 +7160,24 @@ module Google
7068
7160
  class GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig
7069
7161
  include Google::Apis::Core::Hashable
7070
7162
 
7163
+ # Represents civil time (or occasionally physical time). This type can represent
7164
+ # a civil time in one of a few possible ways: * When utc_offset is set and
7165
+ # time_zone is unset: a civil time on a calendar day with a particular offset
7166
+ # from UTC. * When time_zone is set and utc_offset is unset: a civil time on a
7167
+ # calendar day in a particular time zone. * When neither time_zone nor
7168
+ # utc_offset is set: a civil time on a calendar day in local time. The date is
7169
+ # relative to the Proleptic Gregorian Calendar. If year, month, or day are 0,
7170
+ # the DateTime is considered not to have a specific year, month, or day
7171
+ # respectively. This type may also be used to represent a physical time if all
7172
+ # the date and time fields are set and either case of the `time_offset` oneof is
7173
+ # set. Consider using `Timestamp` message for physical time instead. If your use
7174
+ # case also would like to store the user's timezone, that can be done in another
7175
+ # field. This type is more flexible than some applications may want. Make sure
7176
+ # to document and validate your application's limitations.
7177
+ # Corresponds to the JSON property `nextSyncTime`
7178
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleTypeDateTime]
7179
+ attr_accessor :next_sync_time
7180
+
7071
7181
  # Optional. The refresh interval to sync the Access Control List information for
7072
7182
  # the documents ingested by this connector. If not set, the access control list
7073
7183
  # will be refreshed at the default interval of 30 minutes. The identity refresh
@@ -7082,6 +7192,7 @@ module Google
7082
7192
 
7083
7193
  # Update properties of this object
7084
7194
  def update!(**args)
7195
+ @next_sync_time = args[:next_sync_time] if args.key?(:next_sync_time)
7085
7196
  @refresh_interval = args[:refresh_interval] if args.key?(:refresh_interval)
7086
7197
  end
7087
7198
  end
@@ -8350,6 +8461,117 @@ module Google
8350
8461
  end
8351
8462
  end
8352
8463
 
8464
+ # Metadata related to the progress of the CrawlRateManagementService.
8465
+ # RemoveDedicatedCrawlRate operation. This will be returned by the google.
8466
+ # longrunning.Operation.metadata field.
8467
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateMetadata
8468
+ include Google::Apis::Core::Hashable
8469
+
8470
+ # Operation create time.
8471
+ # Corresponds to the JSON property `createTime`
8472
+ # @return [String]
8473
+ attr_accessor :create_time
8474
+
8475
+ # Operation last update time. If the operation is done, this is also the finish
8476
+ # time.
8477
+ # Corresponds to the JSON property `updateTime`
8478
+ # @return [String]
8479
+ attr_accessor :update_time
8480
+
8481
+ def initialize(**args)
8482
+ update!(**args)
8483
+ end
8484
+
8485
+ # Update properties of this object
8486
+ def update!(**args)
8487
+ @create_time = args[:create_time] if args.key?(:create_time)
8488
+ @update_time = args[:update_time] if args.key?(:update_time)
8489
+ end
8490
+ end
8491
+
8492
+ # Response message for CrawlRateManagementService.RemoveDedicatedCrawlRate
8493
+ # method. It simply returns the state of the response, and an error message if
8494
+ # the state is FAILED.
8495
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateResponse
8496
+ include Google::Apis::Core::Hashable
8497
+
8498
+ # The `Status` type defines a logical error model that is suitable for different
8499
+ # programming environments, including REST APIs and RPC APIs. It is used by [
8500
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
8501
+ # data: error code, error message, and error details. You can find out more
8502
+ # about this error model and how to work with it in the [API Design Guide](https:
8503
+ # //cloud.google.com/apis/design/errors).
8504
+ # Corresponds to the JSON property `error`
8505
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus]
8506
+ attr_accessor :error
8507
+
8508
+ # Output only. The state of the response.
8509
+ # Corresponds to the JSON property `state`
8510
+ # @return [String]
8511
+ attr_accessor :state
8512
+
8513
+ def initialize(**args)
8514
+ update!(**args)
8515
+ end
8516
+
8517
+ # Update properties of this object
8518
+ def update!(**args)
8519
+ @error = args[:error] if args.key?(:error)
8520
+ @state = args[:state] if args.key?(:state)
8521
+ end
8522
+ end
8523
+
8524
+ # Safety rating corresponding to the generated content.
8525
+ class GoogleCloudDiscoveryengineV1alphaSafetyRating
8526
+ include Google::Apis::Core::Hashable
8527
+
8528
+ # Output only. Indicates whether the content was filtered out because of this
8529
+ # rating.
8530
+ # Corresponds to the JSON property `blocked`
8531
+ # @return [Boolean]
8532
+ attr_accessor :blocked
8533
+ alias_method :blocked?, :blocked
8534
+
8535
+ # Output only. Harm category.
8536
+ # Corresponds to the JSON property `category`
8537
+ # @return [String]
8538
+ attr_accessor :category
8539
+
8540
+ # Output only. Harm probability levels in the content.
8541
+ # Corresponds to the JSON property `probability`
8542
+ # @return [String]
8543
+ attr_accessor :probability
8544
+
8545
+ # Output only. Harm probability score.
8546
+ # Corresponds to the JSON property `probabilityScore`
8547
+ # @return [Float]
8548
+ attr_accessor :probability_score
8549
+
8550
+ # Output only. Harm severity levels in the content.
8551
+ # Corresponds to the JSON property `severity`
8552
+ # @return [String]
8553
+ attr_accessor :severity
8554
+
8555
+ # Output only. Harm severity score.
8556
+ # Corresponds to the JSON property `severityScore`
8557
+ # @return [Float]
8558
+ attr_accessor :severity_score
8559
+
8560
+ def initialize(**args)
8561
+ update!(**args)
8562
+ end
8563
+
8564
+ # Update properties of this object
8565
+ def update!(**args)
8566
+ @blocked = args[:blocked] if args.key?(:blocked)
8567
+ @category = args[:category] if args.key?(:category)
8568
+ @probability = args[:probability] if args.key?(:probability)
8569
+ @probability_score = args[:probability_score] if args.key?(:probability_score)
8570
+ @severity = args[:severity] if args.key?(:severity)
8571
+ @severity_score = args[:severity_score] if args.key?(:severity_score)
8572
+ end
8573
+ end
8574
+
8353
8575
  # Defines the structure and layout of a type of document data.
8354
8576
  class GoogleCloudDiscoveryengineV1alphaSchema
8355
8577
  include Google::Apis::Core::Hashable
@@ -9503,8 +9725,8 @@ module Google
9503
9725
  class GoogleCloudDiscoveryengineV1alphaSearchRequestNaturalLanguageQueryUnderstandingSpec
9504
9726
  include Google::Apis::Core::Hashable
9505
9727
 
9506
- # The condition under which filter extraction should occur. Default to Condition.
9507
- # DISABLED.
9728
+ # The condition under which filter extraction should occur. Server behavior
9729
+ # defaults to `DISABLED`.
9508
9730
  # Corresponds to the JSON property `filterExtractionCondition`
9509
9731
  # @return [String]
9510
9732
  attr_accessor :filter_extraction_condition
@@ -9755,6 +9977,66 @@ module Google
9755
9977
  end
9756
9978
  end
9757
9979
 
9980
+ # Metadata related to the progress of the CrawlRateManagementService.
9981
+ # SetDedicatedCrawlRate operation. This will be returned by the google.
9982
+ # longrunning.Operation.metadata field.
9983
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateMetadata
9984
+ include Google::Apis::Core::Hashable
9985
+
9986
+ # Operation create time.
9987
+ # Corresponds to the JSON property `createTime`
9988
+ # @return [String]
9989
+ attr_accessor :create_time
9990
+
9991
+ # Operation last update time. If the operation is done, this is also the finish
9992
+ # time.
9993
+ # Corresponds to the JSON property `updateTime`
9994
+ # @return [String]
9995
+ attr_accessor :update_time
9996
+
9997
+ def initialize(**args)
9998
+ update!(**args)
9999
+ end
10000
+
10001
+ # Update properties of this object
10002
+ def update!(**args)
10003
+ @create_time = args[:create_time] if args.key?(:create_time)
10004
+ @update_time = args[:update_time] if args.key?(:update_time)
10005
+ end
10006
+ end
10007
+
10008
+ # Response message for CrawlRateManagementService.SetDedicatedCrawlRate method.
10009
+ # It simply returns the state of the response, and an error message if the state
10010
+ # is FAILED.
10011
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateResponse
10012
+ include Google::Apis::Core::Hashable
10013
+
10014
+ # The `Status` type defines a logical error model that is suitable for different
10015
+ # programming environments, including REST APIs and RPC APIs. It is used by [
10016
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
10017
+ # data: error code, error message, and error details. You can find out more
10018
+ # about this error model and how to work with it in the [API Design Guide](https:
10019
+ # //cloud.google.com/apis/design/errors).
10020
+ # Corresponds to the JSON property `error`
10021
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus]
10022
+ attr_accessor :error
10023
+
10024
+ # Output only. The state of the response.
10025
+ # Corresponds to the JSON property `state`
10026
+ # @return [String]
10027
+ attr_accessor :state
10028
+
10029
+ def initialize(**args)
10030
+ update!(**args)
10031
+ end
10032
+
10033
+ # Update properties of this object
10034
+ def update!(**args)
10035
+ @error = args[:error] if args.key?(:error)
10036
+ @state = args[:state] if args.key?(:state)
10037
+ end
10038
+ end
10039
+
9758
10040
  # Metadata for DataConnectorService.SetUpDataConnector method.
9759
10041
  class GoogleCloudDiscoveryengineV1alphaSetUpDataConnectorMetadata
9760
10042
  include Google::Apis::Core::Hashable
@@ -9892,7 +10174,7 @@ module Google
9892
10174
  class GoogleCloudDiscoveryengineV1alphaTargetSite
9893
10175
  include Google::Apis::Core::Hashable
9894
10176
 
9895
- # Input only. If set to false, a uri_pattern is generated to include all pages
10177
+ # Immutable. If set to false, a uri_pattern is generated to include all pages
9896
10178
  # whose address contains the provided_uri_pattern. If set to true, an
9897
10179
  # uri_pattern is generated to try to be an exact match of the
9898
10180
  # provided_uri_pattern or just the specific page if the provided_uri_pattern is
@@ -10656,12 +10938,26 @@ module Google
10656
10938
  class GoogleCloudDiscoveryengineV1betaAdvancedSiteSearchConfig
10657
10939
  include Google::Apis::Core::Hashable
10658
10940
 
10941
+ # If set true, automatic refresh is disabled for the DataStore.
10942
+ # Corresponds to the JSON property `disableAutomaticRefresh`
10943
+ # @return [Boolean]
10944
+ attr_accessor :disable_automatic_refresh
10945
+ alias_method :disable_automatic_refresh?, :disable_automatic_refresh
10946
+
10947
+ # If set true, initial indexing is disabled for the DataStore.
10948
+ # Corresponds to the JSON property `disableInitialIndex`
10949
+ # @return [Boolean]
10950
+ attr_accessor :disable_initial_index
10951
+ alias_method :disable_initial_index?, :disable_initial_index
10952
+
10659
10953
  def initialize(**args)
10660
10954
  update!(**args)
10661
10955
  end
10662
10956
 
10663
10957
  # Update properties of this object
10664
10958
  def update!(**args)
10959
+ @disable_automatic_refresh = args[:disable_automatic_refresh] if args.key?(:disable_automatic_refresh)
10960
+ @disable_initial_index = args[:disable_initial_index] if args.key?(:disable_initial_index)
10665
10961
  end
10666
10962
  end
10667
10963
 
@@ -10785,6 +11081,11 @@ module Google
10785
11081
  # @return [Array<String>]
10786
11082
  attr_accessor :related_questions
10787
11083
 
11084
+ # Optional. Safety ratings.
11085
+ # Corresponds to the JSON property `safetyRatings`
11086
+ # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSafetyRating>]
11087
+ attr_accessor :safety_ratings
11088
+
10788
11089
  # The state of the answer generation.
10789
11090
  # Corresponds to the JSON property `state`
10790
11091
  # @return [String]
@@ -10812,6 +11113,7 @@ module Google
10812
11113
  @query_understanding_info = args[:query_understanding_info] if args.key?(:query_understanding_info)
10813
11114
  @references = args[:references] if args.key?(:references)
10814
11115
  @related_questions = args[:related_questions] if args.key?(:related_questions)
11116
+ @safety_ratings = args[:safety_ratings] if args.key?(:safety_ratings)
10815
11117
  @state = args[:state] if args.key?(:state)
10816
11118
  @steps = args[:steps] if args.key?(:steps)
10817
11119
  end
@@ -11311,6 +11613,12 @@ module Google
11311
11613
  attr_accessor :enable
11312
11614
  alias_method :enable?, :enable
11313
11615
 
11616
+ # Optional. Safety settings. This settings are effective only when the
11617
+ # safety_spec.enable is true.
11618
+ # Corresponds to the JSON property `safetySettings`
11619
+ # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerQueryRequestSafetySpecSafetySetting>]
11620
+ attr_accessor :safety_settings
11621
+
11314
11622
  def initialize(**args)
11315
11623
  update!(**args)
11316
11624
  end
@@ -11318,6 +11626,32 @@ module Google
11318
11626
  # Update properties of this object
11319
11627
  def update!(**args)
11320
11628
  @enable = args[:enable] if args.key?(:enable)
11629
+ @safety_settings = args[:safety_settings] if args.key?(:safety_settings)
11630
+ end
11631
+ end
11632
+
11633
+ # Safety settings.
11634
+ class GoogleCloudDiscoveryengineV1betaAnswerQueryRequestSafetySpecSafetySetting
11635
+ include Google::Apis::Core::Hashable
11636
+
11637
+ # Required. Harm category.
11638
+ # Corresponds to the JSON property `category`
11639
+ # @return [String]
11640
+ attr_accessor :category
11641
+
11642
+ # Required. The harm block threshold.
11643
+ # Corresponds to the JSON property `threshold`
11644
+ # @return [String]
11645
+ attr_accessor :threshold
11646
+
11647
+ def initialize(**args)
11648
+ update!(**args)
11649
+ end
11650
+
11651
+ # Update properties of this object
11652
+ def update!(**args)
11653
+ @category = args[:category] if args.key?(:category)
11654
+ @threshold = args[:threshold] if args.key?(:threshold)
11321
11655
  end
11322
11656
  end
11323
11657
 
@@ -13340,8 +13674,8 @@ module Google
13340
13674
  class GoogleCloudDiscoveryengineV1betaControlBoostAction
13341
13675
  include Google::Apis::Core::Hashable
13342
13676
 
13343
- # Required. Strength of the boost, which should be in [-1, 1]. Negative boost
13344
- # means demotion. Default is 0.0 (No-op).
13677
+ # Strength of the boost, which should be in [-1, 1]. Negative boost means
13678
+ # demotion. Default is 0.0 (No-op).
13345
13679
  # Corresponds to the JSON property `boost`
13346
13680
  # @return [Float]
13347
13681
  attr_accessor :boost
@@ -13361,6 +13695,12 @@ module Google
13361
13695
  # @return [String]
13362
13696
  attr_accessor :filter
13363
13697
 
13698
+ # Optional. Strength of the boost, which should be in [-1, 1]. Negative boost
13699
+ # means demotion. Default is 0.0 (No-op).
13700
+ # Corresponds to the JSON property `fixedBoost`
13701
+ # @return [Float]
13702
+ attr_accessor :fixed_boost
13703
+
13364
13704
  def initialize(**args)
13365
13705
  update!(**args)
13366
13706
  end
@@ -13370,6 +13710,7 @@ module Google
13370
13710
  @boost = args[:boost] if args.key?(:boost)
13371
13711
  @data_store = args[:data_store] if args.key?(:data_store)
13372
13712
  @filter = args[:filter] if args.key?(:filter)
13713
+ @fixed_boost = args[:fixed_boost] if args.key?(:fixed_boost)
13373
13714
  end
13374
13715
  end
13375
13716
 
@@ -14240,6 +14581,34 @@ module Google
14240
14581
  end
14241
14582
  end
14242
14583
 
14584
+ # Metadata related to the progress of the IdentityMappingStoreService.
14585
+ # DeleteIdentityMappingStore operation. This will be returned by the google.
14586
+ # longrunning.Operation.metadata field.
14587
+ class GoogleCloudDiscoveryengineV1betaDeleteIdentityMappingStoreMetadata
14588
+ include Google::Apis::Core::Hashable
14589
+
14590
+ # Operation create time.
14591
+ # Corresponds to the JSON property `createTime`
14592
+ # @return [String]
14593
+ attr_accessor :create_time
14594
+
14595
+ # Operation last update time. If the operation is done, this is also the finish
14596
+ # time.
14597
+ # Corresponds to the JSON property `updateTime`
14598
+ # @return [String]
14599
+ attr_accessor :update_time
14600
+
14601
+ def initialize(**args)
14602
+ update!(**args)
14603
+ end
14604
+
14605
+ # Update properties of this object
14606
+ def update!(**args)
14607
+ @create_time = args[:create_time] if args.key?(:create_time)
14608
+ @update_time = args[:update_time] if args.key?(:update_time)
14609
+ end
14610
+ end
14611
+
14243
14612
  # Metadata for DeleteSchema LRO.
14244
14613
  class GoogleCloudDiscoveryengineV1betaDeleteSchemaMetadata
14245
14614
  include Google::Apis::Core::Hashable
@@ -14393,7 +14762,7 @@ module Google
14393
14762
  attr_accessor :derived_struct_data
14394
14763
 
14395
14764
  # Immutable. The identifier of the document. Id should conform to [RFC-1034](
14396
- # https://tools.ietf.org/html/rfc1034) standard with a length limit of 63
14765
+ # https://tools.ietf.org/html/rfc1034) standard with a length limit of 128
14397
14766
  # characters.
14398
14767
  # Corresponds to the JSON property `id`
14399
14768
  # @return [String]
@@ -17052,7 +17421,7 @@ module Google
17052
17421
  class GoogleCloudDiscoveryengineV1betaListEvaluationResultsResponse
17053
17422
  include Google::Apis::Core::Hashable
17054
17423
 
17055
- # The EvaluationResults.
17424
+ # The evaluation results for the SampleQuerys.
17056
17425
  # Corresponds to the JSON property `evaluationResults`
17057
17426
  # @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListEvaluationResultsResponseEvaluationResult>]
17058
17427
  attr_accessor :evaluation_results
@@ -18269,7 +18638,7 @@ module Google
18269
18638
  class GoogleCloudDiscoveryengineV1betaRecrawlUrisRequest
18270
18639
  include Google::Apis::Core::Hashable
18271
18640
 
18272
- # Optional. Full resource name of the SiteCredential, such as `projects/*/
18641
+ # Optional. Full resource name of the `SiteCredential`, such as `projects/*/
18273
18642
  # locations/*/collections/*/dataStores/*/siteSearchEngine/siteCredentials/*`.
18274
18643
  # Only set to crawl private URIs.
18275
18644
  # Corresponds to the JSON property `siteCredential`
@@ -18375,6 +18744,57 @@ module Google
18375
18744
  end
18376
18745
  end
18377
18746
 
18747
+ # Safety rating corresponding to the generated content.
18748
+ class GoogleCloudDiscoveryengineV1betaSafetyRating
18749
+ include Google::Apis::Core::Hashable
18750
+
18751
+ # Output only. Indicates whether the content was filtered out because of this
18752
+ # rating.
18753
+ # Corresponds to the JSON property `blocked`
18754
+ # @return [Boolean]
18755
+ attr_accessor :blocked
18756
+ alias_method :blocked?, :blocked
18757
+
18758
+ # Output only. Harm category.
18759
+ # Corresponds to the JSON property `category`
18760
+ # @return [String]
18761
+ attr_accessor :category
18762
+
18763
+ # Output only. Harm probability levels in the content.
18764
+ # Corresponds to the JSON property `probability`
18765
+ # @return [String]
18766
+ attr_accessor :probability
18767
+
18768
+ # Output only. Harm probability score.
18769
+ # Corresponds to the JSON property `probabilityScore`
18770
+ # @return [Float]
18771
+ attr_accessor :probability_score
18772
+
18773
+ # Output only. Harm severity levels in the content.
18774
+ # Corresponds to the JSON property `severity`
18775
+ # @return [String]
18776
+ attr_accessor :severity
18777
+
18778
+ # Output only. Harm severity score.
18779
+ # Corresponds to the JSON property `severityScore`
18780
+ # @return [Float]
18781
+ attr_accessor :severity_score
18782
+
18783
+ def initialize(**args)
18784
+ update!(**args)
18785
+ end
18786
+
18787
+ # Update properties of this object
18788
+ def update!(**args)
18789
+ @blocked = args[:blocked] if args.key?(:blocked)
18790
+ @category = args[:category] if args.key?(:category)
18791
+ @probability = args[:probability] if args.key?(:probability)
18792
+ @probability_score = args[:probability_score] if args.key?(:probability_score)
18793
+ @severity = args[:severity] if args.key?(:severity)
18794
+ @severity_score = args[:severity_score] if args.key?(:severity_score)
18795
+ end
18796
+ end
18797
+
18378
18798
  # Sample Query captures metadata to be used for evaluation.
18379
18799
  class GoogleCloudDiscoveryengineV1betaSampleQuery
18380
18800
  include Google::Apis::Core::Hashable
@@ -19695,8 +20115,8 @@ module Google
19695
20115
  class GoogleCloudDiscoveryengineV1betaSearchRequestNaturalLanguageQueryUnderstandingSpec
19696
20116
  include Google::Apis::Core::Hashable
19697
20117
 
19698
- # The condition under which filter extraction should occur. Default to Condition.
19699
- # DISABLED.
20118
+ # The condition under which filter extraction should occur. Server behavior
20119
+ # defaults to `DISABLED`.
19700
20120
  # Corresponds to the JSON property `filterExtractionCondition`
19701
20121
  # @return [String]
19702
20122
  attr_accessor :filter_extraction_condition
@@ -20835,7 +21255,7 @@ module Google
20835
21255
  # The ranking expression controls the customized ranking on retrieval documents.
20836
21256
  # To leverage this, document embedding is required. The ranking expression
20837
21257
  # setting in ServingConfig applies to all search requests served by the serving
20838
- # config. However, if SearchRequest.ranking_expression is specified, it
21258
+ # config. However, if `SearchRequest.ranking_expression` is specified, it
20839
21259
  # overrides the ServingConfig ranking expression. The ranking expression is a
20840
21260
  # single function or multiple functions that are joined by "+". *
20841
21261
  # ranking_expression = function, ` " + ", function `; Supported functions: *
@@ -21270,7 +21690,7 @@ module Google
21270
21690
  class GoogleCloudDiscoveryengineV1betaTargetSite
21271
21691
  include Google::Apis::Core::Hashable
21272
21692
 
21273
- # Input only. If set to false, a uri_pattern is generated to include all pages
21693
+ # Immutable. If set to false, a uri_pattern is generated to include all pages
21274
21694
  # whose address contains the provided_uri_pattern. If set to true, an
21275
21695
  # uri_pattern is generated to try to be an exact match of the
21276
21696
  # provided_uri_pattern or just the specific page if the provided_uri_pattern is
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1beta
18
18
  # Version of the google-apis-discoveryengine_v1beta gem
19
- GEM_VERSION = "0.54.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241216"
25
+ REVISION = "20250107"
26
26
  end
27
27
  end
28
28
  end
@@ -256,6 +256,12 @@ module Google
256
256
  include Google::Apis::Core::JsonObjectSupport
257
257
  end
258
258
 
259
+ class GoogleCloudDiscoveryengineV1DeleteIdentityMappingStoreMetadata
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
259
265
  class GoogleCloudDiscoveryengineV1DeleteSchemaMetadata
260
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
267
 
@@ -940,6 +946,12 @@ module Google
940
946
  include Google::Apis::Core::JsonObjectSupport
941
947
  end
942
948
 
949
+ class GoogleCloudDiscoveryengineV1alphaDeleteIdentityMappingStoreMetadata
950
+ class Representation < Google::Apis::Core::JsonRepresentation; end
951
+
952
+ include Google::Apis::Core::JsonObjectSupport
953
+ end
954
+
943
955
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
944
956
  class Representation < Google::Apis::Core::JsonRepresentation; end
945
957
 
@@ -1396,6 +1408,24 @@ module Google
1396
1408
  include Google::Apis::Core::JsonObjectSupport
1397
1409
  end
1398
1410
 
1411
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateMetadata
1412
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1413
+
1414
+ include Google::Apis::Core::JsonObjectSupport
1415
+ end
1416
+
1417
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateResponse
1418
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1419
+
1420
+ include Google::Apis::Core::JsonObjectSupport
1421
+ end
1422
+
1423
+ class GoogleCloudDiscoveryengineV1alphaSafetyRating
1424
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1425
+
1426
+ include Google::Apis::Core::JsonObjectSupport
1427
+ end
1428
+
1399
1429
  class GoogleCloudDiscoveryengineV1alphaSchema
1400
1430
  class Representation < Google::Apis::Core::JsonRepresentation; end
1401
1431
 
@@ -1564,6 +1594,18 @@ module Google
1564
1594
  include Google::Apis::Core::JsonObjectSupport
1565
1595
  end
1566
1596
 
1597
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateMetadata
1598
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1599
+
1600
+ include Google::Apis::Core::JsonObjectSupport
1601
+ end
1602
+
1603
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateResponse
1604
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1605
+
1606
+ include Google::Apis::Core::JsonObjectSupport
1607
+ end
1608
+
1567
1609
  class GoogleCloudDiscoveryengineV1alphaSetUpDataConnectorMetadata
1568
1610
  class Representation < Google::Apis::Core::JsonRepresentation; end
1569
1611
 
@@ -1834,6 +1876,12 @@ module Google
1834
1876
  include Google::Apis::Core::JsonObjectSupport
1835
1877
  end
1836
1878
 
1879
+ class GoogleCloudDiscoveryengineV1betaAnswerQueryRequestSafetySpecSafetySetting
1880
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1881
+
1882
+ include Google::Apis::Core::JsonObjectSupport
1883
+ end
1884
+
1837
1885
  class GoogleCloudDiscoveryengineV1betaAnswerQueryRequestSearchSpec
1838
1886
  class Representation < Google::Apis::Core::JsonRepresentation; end
1839
1887
 
@@ -2320,6 +2368,12 @@ module Google
2320
2368
  include Google::Apis::Core::JsonObjectSupport
2321
2369
  end
2322
2370
 
2371
+ class GoogleCloudDiscoveryengineV1betaDeleteIdentityMappingStoreMetadata
2372
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2373
+
2374
+ include Google::Apis::Core::JsonObjectSupport
2375
+ end
2376
+
2323
2377
  class GoogleCloudDiscoveryengineV1betaDeleteSchemaMetadata
2324
2378
  class Representation < Google::Apis::Core::JsonRepresentation; end
2325
2379
 
@@ -3088,6 +3142,12 @@ module Google
3088
3142
  include Google::Apis::Core::JsonObjectSupport
3089
3143
  end
3090
3144
 
3145
+ class GoogleCloudDiscoveryengineV1betaSafetyRating
3146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3147
+
3148
+ include Google::Apis::Core::JsonObjectSupport
3149
+ end
3150
+
3091
3151
  class GoogleCloudDiscoveryengineV1betaSampleQuery
3092
3152
  class Representation < Google::Apis::Core::JsonRepresentation; end
3093
3153
 
@@ -3835,6 +3895,8 @@ module Google
3835
3895
  class GoogleCloudDiscoveryengineV1AdvancedSiteSearchConfig
3836
3896
  # @private
3837
3897
  class Representation < Google::Apis::Core::JsonRepresentation
3898
+ property :disable_automatic_refresh, as: 'disableAutomaticRefresh'
3899
+ property :disable_initial_index, as: 'disableInitialIndex'
3838
3900
  end
3839
3901
  end
3840
3902
 
@@ -3924,6 +3986,7 @@ module Google
3924
3986
  property :boost, as: 'boost'
3925
3987
  property :data_store, as: 'dataStore'
3926
3988
  property :filter, as: 'filter'
3989
+ property :fixed_boost, as: 'fixedBoost'
3927
3990
  end
3928
3991
  end
3929
3992
 
@@ -4054,6 +4117,14 @@ module Google
4054
4117
  end
4055
4118
  end
4056
4119
 
4120
+ class GoogleCloudDiscoveryengineV1DeleteIdentityMappingStoreMetadata
4121
+ # @private
4122
+ class Representation < Google::Apis::Core::JsonRepresentation
4123
+ property :create_time, as: 'createTime'
4124
+ property :update_time, as: 'updateTime'
4125
+ end
4126
+ end
4127
+
4057
4128
  class GoogleCloudDiscoveryengineV1DeleteSchemaMetadata
4058
4129
  # @private
4059
4130
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4678,6 +4749,8 @@ module Google
4678
4749
  collection :references, as: 'references', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaAnswerReference, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaAnswerReference::Representation
4679
4750
 
4680
4751
  collection :related_questions, as: 'relatedQuestions'
4752
+ collection :safety_ratings, as: 'safetyRatings', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSafetyRating, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSafetyRating::Representation
4753
+
4681
4754
  property :state, as: 'state'
4682
4755
  collection :steps, as: 'steps', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaAnswerStep, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaAnswerStep::Representation
4683
4756
 
@@ -4990,6 +5063,7 @@ module Google
4990
5063
  property :boost, as: 'boost'
4991
5064
  property :data_store, as: 'dataStore'
4992
5065
  property :filter, as: 'filter'
5066
+ property :fixed_boost, as: 'fixedBoost'
4993
5067
  end
4994
5068
  end
4995
5069
 
@@ -5219,6 +5293,14 @@ module Google
5219
5293
  end
5220
5294
  end
5221
5295
 
5296
+ class GoogleCloudDiscoveryengineV1alphaDeleteIdentityMappingStoreMetadata
5297
+ # @private
5298
+ class Representation < Google::Apis::Core::JsonRepresentation
5299
+ property :create_time, as: 'createTime'
5300
+ property :update_time, as: 'updateTime'
5301
+ end
5302
+ end
5303
+
5222
5304
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
5223
5305
  # @private
5224
5306
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5563,6 +5645,8 @@ module Google
5563
5645
  class GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig
5564
5646
  # @private
5565
5647
  class Representation < Google::Apis::Core::JsonRepresentation
5648
+ property :next_sync_time, as: 'nextSyncTime', class: Google::Apis::DiscoveryengineV1beta::GoogleTypeDateTime, decorator: Google::Apis::DiscoveryengineV1beta::GoogleTypeDateTime::Representation
5649
+
5566
5650
  property :refresh_interval, as: 'refreshInterval'
5567
5651
  end
5568
5652
  end
@@ -5936,6 +6020,35 @@ module Google
5936
6020
  end
5937
6021
  end
5938
6022
 
6023
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateMetadata
6024
+ # @private
6025
+ class Representation < Google::Apis::Core::JsonRepresentation
6026
+ property :create_time, as: 'createTime'
6027
+ property :update_time, as: 'updateTime'
6028
+ end
6029
+ end
6030
+
6031
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateResponse
6032
+ # @private
6033
+ class Representation < Google::Apis::Core::JsonRepresentation
6034
+ property :error, as: 'error', class: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus::Representation
6035
+
6036
+ property :state, as: 'state'
6037
+ end
6038
+ end
6039
+
6040
+ class GoogleCloudDiscoveryengineV1alphaSafetyRating
6041
+ # @private
6042
+ class Representation < Google::Apis::Core::JsonRepresentation
6043
+ property :blocked, as: 'blocked'
6044
+ property :category, as: 'category'
6045
+ property :probability, as: 'probability'
6046
+ property :probability_score, as: 'probabilityScore'
6047
+ property :severity, as: 'severity'
6048
+ property :severity_score, as: 'severityScore'
6049
+ end
6050
+ end
6051
+
5939
6052
  class GoogleCloudDiscoveryengineV1alphaSchema
5940
6053
  # @private
5941
6054
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6252,6 +6365,23 @@ module Google
6252
6365
  end
6253
6366
  end
6254
6367
 
6368
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateMetadata
6369
+ # @private
6370
+ class Representation < Google::Apis::Core::JsonRepresentation
6371
+ property :create_time, as: 'createTime'
6372
+ property :update_time, as: 'updateTime'
6373
+ end
6374
+ end
6375
+
6376
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateResponse
6377
+ # @private
6378
+ class Representation < Google::Apis::Core::JsonRepresentation
6379
+ property :error, as: 'error', class: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus::Representation
6380
+
6381
+ property :state, as: 'state'
6382
+ end
6383
+ end
6384
+
6255
6385
  class GoogleCloudDiscoveryengineV1alphaSetUpDataConnectorMetadata
6256
6386
  # @private
6257
6387
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6510,6 +6640,8 @@ module Google
6510
6640
  class GoogleCloudDiscoveryengineV1betaAdvancedSiteSearchConfig
6511
6641
  # @private
6512
6642
  class Representation < Google::Apis::Core::JsonRepresentation
6643
+ property :disable_automatic_refresh, as: 'disableAutomaticRefresh'
6644
+ property :disable_initial_index, as: 'disableInitialIndex'
6513
6645
  end
6514
6646
  end
6515
6647
 
@@ -6543,6 +6675,8 @@ module Google
6543
6675
  collection :references, as: 'references', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerReference, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerReference::Representation
6544
6676
 
6545
6677
  collection :related_questions, as: 'relatedQuestions'
6678
+ collection :safety_ratings, as: 'safetyRatings', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSafetyRating, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSafetyRating::Representation
6679
+
6546
6680
  property :state, as: 'state'
6547
6681
  collection :steps, as: 'steps', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerStep, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerStep::Representation
6548
6682
 
@@ -6685,6 +6819,16 @@ module Google
6685
6819
  # @private
6686
6820
  class Representation < Google::Apis::Core::JsonRepresentation
6687
6821
  property :enable, as: 'enable'
6822
+ collection :safety_settings, as: 'safetySettings', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerQueryRequestSafetySpecSafetySetting, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerQueryRequestSafetySpecSafetySetting::Representation
6823
+
6824
+ end
6825
+ end
6826
+
6827
+ class GoogleCloudDiscoveryengineV1betaAnswerQueryRequestSafetySpecSafetySetting
6828
+ # @private
6829
+ class Representation < Google::Apis::Core::JsonRepresentation
6830
+ property :category, as: 'category'
6831
+ property :threshold, as: 'threshold'
6688
6832
  end
6689
6833
  end
6690
6834
 
@@ -7271,6 +7415,7 @@ module Google
7271
7415
  property :boost, as: 'boost'
7272
7416
  property :data_store, as: 'dataStore'
7273
7417
  property :filter, as: 'filter'
7418
+ property :fixed_boost, as: 'fixedBoost'
7274
7419
  end
7275
7420
  end
7276
7421
 
@@ -7513,6 +7658,14 @@ module Google
7513
7658
  end
7514
7659
  end
7515
7660
 
7661
+ class GoogleCloudDiscoveryengineV1betaDeleteIdentityMappingStoreMetadata
7662
+ # @private
7663
+ class Representation < Google::Apis::Core::JsonRepresentation
7664
+ property :create_time, as: 'createTime'
7665
+ property :update_time, as: 'updateTime'
7666
+ end
7667
+ end
7668
+
7516
7669
  class GoogleCloudDiscoveryengineV1betaDeleteSchemaMetadata
7517
7670
  # @private
7518
7671
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8742,6 +8895,18 @@ module Google
8742
8895
  end
8743
8896
  end
8744
8897
 
8898
+ class GoogleCloudDiscoveryengineV1betaSafetyRating
8899
+ # @private
8900
+ class Representation < Google::Apis::Core::JsonRepresentation
8901
+ property :blocked, as: 'blocked'
8902
+ property :category, as: 'category'
8903
+ property :probability, as: 'probability'
8904
+ property :probability_score, as: 'probabilityScore'
8905
+ property :severity, as: 'severity'
8906
+ property :severity_score, as: 'severityScore'
8907
+ end
8908
+ end
8909
+
8745
8910
  class GoogleCloudDiscoveryengineV1betaSampleQuery
8746
8911
  # @private
8747
8912
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -595,7 +595,7 @@ module Google
595
595
  # is returned. This field must be unique among all Documents with the same
596
596
  # parent. Otherwise, an `ALREADY_EXISTS` error is returned. This field must
597
597
  # conform to [RFC-1034](https://tools.ietf.org/html/rfc1034) standard with a
598
- # length limit of 63 characters. Otherwise, an `INVALID_ARGUMENT` error is
598
+ # length limit of 128 characters. Otherwise, an `INVALID_ARGUMENT` error is
599
599
  # returned.
600
600
  # @param [String] fields
601
601
  # Selector specifying which fields to include in a partial response.
@@ -5123,7 +5123,7 @@ module Google
5123
5123
  # is returned. This field must be unique among all Documents with the same
5124
5124
  # parent. Otherwise, an `ALREADY_EXISTS` error is returned. This field must
5125
5125
  # conform to [RFC-1034](https://tools.ietf.org/html/rfc1034) standard with a
5126
- # length limit of 63 characters. Otherwise, an `INVALID_ARGUMENT` error is
5126
+ # length limit of 128 characters. Otherwise, an `INVALID_ARGUMENT` error is
5127
5127
  # returned.
5128
5128
  # @param [String] fields
5129
5129
  # Selector specifying which fields to include in a partial response.
@@ -7679,12 +7679,14 @@ module Google
7679
7679
  # @param [String] evaluation
7680
7680
  # Required. The evaluation resource name, such as `projects/`project`/locations/`
7681
7681
  # location`/evaluations/`evaluation``. If the caller does not have permission to
7682
- # list EvaluationResult under this evaluation, regardless of whether or not this
7683
- # evaluation set exists, a `PERMISSION_DENIED` error is returned.
7682
+ # list ListEvaluationResultsResponse.EvaluationResult under this evaluation,
7683
+ # regardless of whether or not this evaluation set exists, a `PERMISSION_DENIED`
7684
+ # error is returned.
7684
7685
  # @param [Fixnum] page_size
7685
- # Maximum number of EvaluationResult to return. If unspecified, defaults to 100.
7686
- # The maximum allowed value is 1000. Values above 1000 will be coerced to 1000.
7687
- # If this field is negative, an `INVALID_ARGUMENT` error is returned.
7686
+ # Maximum number of ListEvaluationResultsResponse.EvaluationResult to return. If
7687
+ # unspecified, defaults to 100. The maximum allowed value is 1000. Values above
7688
+ # 1000 will be coerced to 1000. If this field is negative, an `INVALID_ARGUMENT`
7689
+ # error is returned.
7688
7690
  # @param [String] page_token
7689
7691
  # A page token ListEvaluationResultsResponse.next_page_token, received from a
7690
7692
  # previous EvaluationService.ListEvaluationResults call. Provide this to
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.54.0
4
+ version: 0.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-01-05 00:00:00.000000000 Z
10
+ date: 2025-01-12 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.54.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.55.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.2
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Discovery Engine API V1beta
82
79
  test_files: []