google-apis-discoveryengine_v1 0.26.0 → 0.27.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: 23f66ff044e3c2818b2e8b48fad81221ec9b77766db6f539e557df7618084351
4
- data.tar.gz: d9ea790d2da253ba6228c6ad40ee75d1da4bd4574d16ef9b8ea710cae8247d68
3
+ metadata.gz: ddcd8cbac434a9d19d466bac2590b6f36369db1dd787f3b39346423378e378bb
4
+ data.tar.gz: f32b37faaba2c6a874e6f8cbc65c5ac8939ca5d5b9534695006eb640ef71ac41
5
5
  SHA512:
6
- metadata.gz: f1b7e05af52921dde1dcce2c1277c84c836ea9c275b76994ea79a8357413145f0c4ef8f7b7f3397a5da21d52537a978ed43e93f1ffe5de72ca11d6252599905e
7
- data.tar.gz: e43d052e939c4c78275707e5ce5695356205579a046d873a82fdb89638e5ab6e53ac920fb4b3b066e36c1cd1e2633ed32e3808889c0976a32ebe1620723d74f8
6
+ metadata.gz: aff44be96682652692943045ab2f67c7a420a0d74c21518e4a1a43c4455c30423f199ca835a67d872e71d0099fd43255978ef234af9a0fa175a663debcb917b8
7
+ data.tar.gz: e02f1addb5019929ebf00fbd1337de4d667a26692b16bf25eb3e2d2fd4ebcd873daa89bff7919f8afc893e6e8f8a6488ea481f4c0bf3ef499f1623fb02178139
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.27.0 (2025-01-12)
4
+
5
+ * Regenerated from discovery document revision 20250107
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.26.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
 
@@ -824,6 +838,11 @@ module Google
824
838
  # @return [Array<String>]
825
839
  attr_accessor :related_questions
826
840
 
841
+ # Optional. Safety ratings.
842
+ # Corresponds to the JSON property `safetyRatings`
843
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SafetyRating>]
844
+ attr_accessor :safety_ratings
845
+
827
846
  # The state of the answer generation.
828
847
  # Corresponds to the JSON property `state`
829
848
  # @return [String]
@@ -851,6 +870,7 @@ module Google
851
870
  @query_understanding_info = args[:query_understanding_info] if args.key?(:query_understanding_info)
852
871
  @references = args[:references] if args.key?(:references)
853
872
  @related_questions = args[:related_questions] if args.key?(:related_questions)
873
+ @safety_ratings = args[:safety_ratings] if args.key?(:safety_ratings)
854
874
  @state = args[:state] if args.key?(:state)
855
875
  @steps = args[:steps] if args.key?(:steps)
856
876
  end
@@ -1350,6 +1370,12 @@ module Google
1350
1370
  attr_accessor :enable
1351
1371
  alias_method :enable?, :enable
1352
1372
 
1373
+ # Optional. Safety settings. This settings are effective only when the
1374
+ # safety_spec.enable is true.
1375
+ # Corresponds to the JSON property `safetySettings`
1376
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestSafetySpecSafetySetting>]
1377
+ attr_accessor :safety_settings
1378
+
1353
1379
  def initialize(**args)
1354
1380
  update!(**args)
1355
1381
  end
@@ -1357,6 +1383,32 @@ module Google
1357
1383
  # Update properties of this object
1358
1384
  def update!(**args)
1359
1385
  @enable = args[:enable] if args.key?(:enable)
1386
+ @safety_settings = args[:safety_settings] if args.key?(:safety_settings)
1387
+ end
1388
+ end
1389
+
1390
+ # Safety settings.
1391
+ class GoogleCloudDiscoveryengineV1AnswerQueryRequestSafetySpecSafetySetting
1392
+ include Google::Apis::Core::Hashable
1393
+
1394
+ # Required. Harm category.
1395
+ # Corresponds to the JSON property `category`
1396
+ # @return [String]
1397
+ attr_accessor :category
1398
+
1399
+ # Required. The harm block threshold.
1400
+ # Corresponds to the JSON property `threshold`
1401
+ # @return [String]
1402
+ attr_accessor :threshold
1403
+
1404
+ def initialize(**args)
1405
+ update!(**args)
1406
+ end
1407
+
1408
+ # Update properties of this object
1409
+ def update!(**args)
1410
+ @category = args[:category] if args.key?(:category)
1411
+ @threshold = args[:threshold] if args.key?(:threshold)
1360
1412
  end
1361
1413
  end
1362
1414
 
@@ -3372,8 +3424,8 @@ module Google
3372
3424
  class GoogleCloudDiscoveryengineV1ControlBoostAction
3373
3425
  include Google::Apis::Core::Hashable
3374
3426
 
3375
- # Required. Strength of the boost, which should be in [-1, 1]. Negative boost
3376
- # means demotion. Default is 0.0 (No-op).
3427
+ # Strength of the boost, which should be in [-1, 1]. Negative boost means
3428
+ # demotion. Default is 0.0 (No-op).
3377
3429
  # Corresponds to the JSON property `boost`
3378
3430
  # @return [Float]
3379
3431
  attr_accessor :boost
@@ -3393,6 +3445,12 @@ module Google
3393
3445
  # @return [String]
3394
3446
  attr_accessor :filter
3395
3447
 
3448
+ # Optional. Strength of the boost, which should be in [-1, 1]. Negative boost
3449
+ # means demotion. Default is 0.0 (No-op).
3450
+ # Corresponds to the JSON property `fixedBoost`
3451
+ # @return [Float]
3452
+ attr_accessor :fixed_boost
3453
+
3396
3454
  def initialize(**args)
3397
3455
  update!(**args)
3398
3456
  end
@@ -3402,6 +3460,7 @@ module Google
3402
3460
  @boost = args[:boost] if args.key?(:boost)
3403
3461
  @data_store = args[:data_store] if args.key?(:data_store)
3404
3462
  @filter = args[:filter] if args.key?(:filter)
3463
+ @fixed_boost = args[:fixed_boost] if args.key?(:fixed_boost)
3405
3464
  end
3406
3465
  end
3407
3466
 
@@ -4213,6 +4272,34 @@ module Google
4213
4272
  end
4214
4273
  end
4215
4274
 
4275
+ # Metadata related to the progress of the IdentityMappingStoreService.
4276
+ # DeleteIdentityMappingStore operation. This will be returned by the google.
4277
+ # longrunning.Operation.metadata field.
4278
+ class GoogleCloudDiscoveryengineV1DeleteIdentityMappingStoreMetadata
4279
+ include Google::Apis::Core::Hashable
4280
+
4281
+ # Operation create time.
4282
+ # Corresponds to the JSON property `createTime`
4283
+ # @return [String]
4284
+ attr_accessor :create_time
4285
+
4286
+ # Operation last update time. If the operation is done, this is also the finish
4287
+ # time.
4288
+ # Corresponds to the JSON property `updateTime`
4289
+ # @return [String]
4290
+ attr_accessor :update_time
4291
+
4292
+ def initialize(**args)
4293
+ update!(**args)
4294
+ end
4295
+
4296
+ # Update properties of this object
4297
+ def update!(**args)
4298
+ @create_time = args[:create_time] if args.key?(:create_time)
4299
+ @update_time = args[:update_time] if args.key?(:update_time)
4300
+ end
4301
+ end
4302
+
4216
4303
  # Metadata for DeleteSchema LRO.
4217
4304
  class GoogleCloudDiscoveryengineV1DeleteSchemaMetadata
4218
4305
  include Google::Apis::Core::Hashable
@@ -4338,7 +4425,7 @@ module Google
4338
4425
  attr_accessor :derived_struct_data
4339
4426
 
4340
4427
  # Immutable. The identifier of the document. Id should conform to [RFC-1034](
4341
- # https://tools.ietf.org/html/rfc1034) standard with a length limit of 63
4428
+ # https://tools.ietf.org/html/rfc1034) standard with a length limit of 128
4342
4429
  # characters.
4343
4430
  # Corresponds to the JSON property `id`
4344
4431
  # @return [String]
@@ -7639,7 +7726,7 @@ module Google
7639
7726
  class GoogleCloudDiscoveryengineV1RecrawlUrisRequest
7640
7727
  include Google::Apis::Core::Hashable
7641
7728
 
7642
- # Optional. Full resource name of the SiteCredential, such as `projects/*/
7729
+ # Optional. Full resource name of the `SiteCredential`, such as `projects/*/
7643
7730
  # locations/*/collections/*/dataStores/*/siteSearchEngine/siteCredentials/*`.
7644
7731
  # Only set to crawl private URIs.
7645
7732
  # Corresponds to the JSON property `siteCredential`
@@ -7683,6 +7770,57 @@ module Google
7683
7770
  end
7684
7771
  end
7685
7772
 
7773
+ # Safety rating corresponding to the generated content.
7774
+ class GoogleCloudDiscoveryengineV1SafetyRating
7775
+ include Google::Apis::Core::Hashable
7776
+
7777
+ # Output only. Indicates whether the content was filtered out because of this
7778
+ # rating.
7779
+ # Corresponds to the JSON property `blocked`
7780
+ # @return [Boolean]
7781
+ attr_accessor :blocked
7782
+ alias_method :blocked?, :blocked
7783
+
7784
+ # Output only. Harm category.
7785
+ # Corresponds to the JSON property `category`
7786
+ # @return [String]
7787
+ attr_accessor :category
7788
+
7789
+ # Output only. Harm probability levels in the content.
7790
+ # Corresponds to the JSON property `probability`
7791
+ # @return [String]
7792
+ attr_accessor :probability
7793
+
7794
+ # Output only. Harm probability score.
7795
+ # Corresponds to the JSON property `probabilityScore`
7796
+ # @return [Float]
7797
+ attr_accessor :probability_score
7798
+
7799
+ # Output only. Harm severity levels in the content.
7800
+ # Corresponds to the JSON property `severity`
7801
+ # @return [String]
7802
+ attr_accessor :severity
7803
+
7804
+ # Output only. Harm severity score.
7805
+ # Corresponds to the JSON property `severityScore`
7806
+ # @return [Float]
7807
+ attr_accessor :severity_score
7808
+
7809
+ def initialize(**args)
7810
+ update!(**args)
7811
+ end
7812
+
7813
+ # Update properties of this object
7814
+ def update!(**args)
7815
+ @blocked = args[:blocked] if args.key?(:blocked)
7816
+ @category = args[:category] if args.key?(:category)
7817
+ @probability = args[:probability] if args.key?(:probability)
7818
+ @probability_score = args[:probability_score] if args.key?(:probability_score)
7819
+ @severity = args[:severity] if args.key?(:severity)
7820
+ @severity_score = args[:severity_score] if args.key?(:severity_score)
7821
+ end
7822
+ end
7823
+
7686
7824
  # Defines the structure and layout of a type of document data.
7687
7825
  class GoogleCloudDiscoveryengineV1Schema
7688
7826
  include Google::Apis::Core::Hashable
@@ -9445,7 +9583,7 @@ module Google
9445
9583
  # The ranking expression controls the customized ranking on retrieval documents.
9446
9584
  # To leverage this, document embedding is required. The ranking expression
9447
9585
  # setting in ServingConfig applies to all search requests served by the serving
9448
- # config. However, if SearchRequest.ranking_expression is specified, it
9586
+ # config. However, if `SearchRequest.ranking_expression` is specified, it
9449
9587
  # overrides the ServingConfig ranking expression. The ranking expression is a
9450
9588
  # single function or multiple functions that are joined by "+". *
9451
9589
  # ranking_expression = function, ` " + ", function `; Supported functions: *
@@ -9845,7 +9983,7 @@ module Google
9845
9983
  class GoogleCloudDiscoveryengineV1TargetSite
9846
9984
  include Google::Apis::Core::Hashable
9847
9985
 
9848
- # Input only. If set to false, a uri_pattern is generated to include all pages
9986
+ # Immutable. If set to false, a uri_pattern is generated to include all pages
9849
9987
  # whose address contains the provided_uri_pattern. If set to true, an
9850
9988
  # uri_pattern is generated to try to be an exact match of the
9851
9989
  # provided_uri_pattern or just the specific page if the provided_uri_pattern is
@@ -10750,6 +10888,11 @@ module Google
10750
10888
  # @return [Array<String>]
10751
10889
  attr_accessor :related_questions
10752
10890
 
10891
+ # Optional. Safety ratings.
10892
+ # Corresponds to the JSON property `safetyRatings`
10893
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSafetyRating>]
10894
+ attr_accessor :safety_ratings
10895
+
10753
10896
  # The state of the answer generation.
10754
10897
  # Corresponds to the JSON property `state`
10755
10898
  # @return [String]
@@ -10777,6 +10920,7 @@ module Google
10777
10920
  @query_understanding_info = args[:query_understanding_info] if args.key?(:query_understanding_info)
10778
10921
  @references = args[:references] if args.key?(:references)
10779
10922
  @related_questions = args[:related_questions] if args.key?(:related_questions)
10923
+ @safety_ratings = args[:safety_ratings] if args.key?(:safety_ratings)
10780
10924
  @state = args[:state] if args.key?(:state)
10781
10925
  @steps = args[:steps] if args.key?(:steps)
10782
10926
  end
@@ -11475,8 +11619,9 @@ module Google
11475
11619
 
11476
11620
  # Manages the connection to external data sources for all data stores grouped
11477
11621
  # under a Collection. It's a singleton resource of Collection. The
11478
- # initialization is only supported through SetUpDataConnector method, which will
11479
- # create a new Collection and initialize its DataConnector. //
11622
+ # initialization is only supported through DataConnectorService.
11623
+ # SetUpDataConnector method, which will create a new Collection and initialize
11624
+ # its DataConnector.
11480
11625
  # Corresponds to the JSON property `dataConnector`
11481
11626
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaDataConnector]
11482
11627
  attr_accessor :data_connector
@@ -11846,8 +11991,8 @@ module Google
11846
11991
  class GoogleCloudDiscoveryengineV1alphaControlBoostAction
11847
11992
  include Google::Apis::Core::Hashable
11848
11993
 
11849
- # Required. Strength of the boost, which should be in [-1, 1]. Negative boost
11850
- # means demotion. Default is 0.0 (No-op).
11994
+ # Strength of the boost, which should be in [-1, 1]. Negative boost means
11995
+ # demotion. Default is 0.0 (No-op).
11851
11996
  # Corresponds to the JSON property `boost`
11852
11997
  # @return [Float]
11853
11998
  attr_accessor :boost
@@ -11867,6 +12012,12 @@ module Google
11867
12012
  # @return [String]
11868
12013
  attr_accessor :filter
11869
12014
 
12015
+ # Optional. Strength of the boost, which should be in [-1, 1]. Negative boost
12016
+ # means demotion. Default is 0.0 (No-op).
12017
+ # Corresponds to the JSON property `fixedBoost`
12018
+ # @return [Float]
12019
+ attr_accessor :fixed_boost
12020
+
11870
12021
  def initialize(**args)
11871
12022
  update!(**args)
11872
12023
  end
@@ -11876,6 +12027,7 @@ module Google
11876
12027
  @boost = args[:boost] if args.key?(:boost)
11877
12028
  @data_store = args[:data_store] if args.key?(:data_store)
11878
12029
  @filter = args[:filter] if args.key?(:filter)
12030
+ @fixed_boost = args[:fixed_boost] if args.key?(:fixed_boost)
11879
12031
  end
11880
12032
  end
11881
12033
 
@@ -12173,8 +12325,9 @@ module Google
12173
12325
 
12174
12326
  # Manages the connection to external data sources for all data stores grouped
12175
12327
  # under a Collection. It's a singleton resource of Collection. The
12176
- # initialization is only supported through SetUpDataConnector method, which will
12177
- # create a new Collection and initialize its DataConnector. //
12328
+ # initialization is only supported through DataConnectorService.
12329
+ # SetUpDataConnector method, which will create a new Collection and initialize
12330
+ # its DataConnector.
12178
12331
  class GoogleCloudDiscoveryengineV1alphaDataConnector
12179
12332
  include Google::Apis::Core::Hashable
12180
12333
 
@@ -12763,6 +12916,34 @@ module Google
12763
12916
  end
12764
12917
  end
12765
12918
 
12919
+ # Metadata related to the progress of the IdentityMappingStoreService.
12920
+ # DeleteIdentityMappingStore operation. This will be returned by the google.
12921
+ # longrunning.Operation.metadata field.
12922
+ class GoogleCloudDiscoveryengineV1alphaDeleteIdentityMappingStoreMetadata
12923
+ include Google::Apis::Core::Hashable
12924
+
12925
+ # Operation create time.
12926
+ # Corresponds to the JSON property `createTime`
12927
+ # @return [String]
12928
+ attr_accessor :create_time
12929
+
12930
+ # Operation last update time. If the operation is done, this is also the finish
12931
+ # time.
12932
+ # Corresponds to the JSON property `updateTime`
12933
+ # @return [String]
12934
+ attr_accessor :update_time
12935
+
12936
+ def initialize(**args)
12937
+ update!(**args)
12938
+ end
12939
+
12940
+ # Update properties of this object
12941
+ def update!(**args)
12942
+ @create_time = args[:create_time] if args.key?(:create_time)
12943
+ @update_time = args[:update_time] if args.key?(:update_time)
12944
+ end
12945
+ end
12946
+
12766
12947
  # Metadata for DeleteSchema LRO.
12767
12948
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
12768
12949
  include Google::Apis::Core::Hashable
@@ -13988,6 +14169,24 @@ module Google
13988
14169
  class GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig
13989
14170
  include Google::Apis::Core::Hashable
13990
14171
 
14172
+ # Represents civil time (or occasionally physical time). This type can represent
14173
+ # a civil time in one of a few possible ways: * When utc_offset is set and
14174
+ # time_zone is unset: a civil time on a calendar day with a particular offset
14175
+ # from UTC. * When time_zone is set and utc_offset is unset: a civil time on a
14176
+ # calendar day in a particular time zone. * When neither time_zone nor
14177
+ # utc_offset is set: a civil time on a calendar day in local time. The date is
14178
+ # relative to the Proleptic Gregorian Calendar. If year, month, or day are 0,
14179
+ # the DateTime is considered not to have a specific year, month, or day
14180
+ # respectively. This type may also be used to represent a physical time if all
14181
+ # the date and time fields are set and either case of the `time_offset` oneof is
14182
+ # set. Consider using `Timestamp` message for physical time instead. If your use
14183
+ # case also would like to store the user's timezone, that can be done in another
14184
+ # field. This type is more flexible than some applications may want. Make sure
14185
+ # to document and validate your application's limitations.
14186
+ # Corresponds to the JSON property `nextSyncTime`
14187
+ # @return [Google::Apis::DiscoveryengineV1::GoogleTypeDateTime]
14188
+ attr_accessor :next_sync_time
14189
+
13991
14190
  # Optional. The refresh interval to sync the Access Control List information for
13992
14191
  # the documents ingested by this connector. If not set, the access control list
13993
14192
  # will be refreshed at the default interval of 30 minutes. The identity refresh
@@ -14002,6 +14201,7 @@ module Google
14002
14201
 
14003
14202
  # Update properties of this object
14004
14203
  def update!(**args)
14204
+ @next_sync_time = args[:next_sync_time] if args.key?(:next_sync_time)
14005
14205
  @refresh_interval = args[:refresh_interval] if args.key?(:refresh_interval)
14006
14206
  end
14007
14207
  end
@@ -15270,6 +15470,117 @@ module Google
15270
15470
  end
15271
15471
  end
15272
15472
 
15473
+ # Metadata related to the progress of the CrawlRateManagementService.
15474
+ # RemoveDedicatedCrawlRate operation. This will be returned by the google.
15475
+ # longrunning.Operation.metadata field.
15476
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateMetadata
15477
+ include Google::Apis::Core::Hashable
15478
+
15479
+ # Operation create time.
15480
+ # Corresponds to the JSON property `createTime`
15481
+ # @return [String]
15482
+ attr_accessor :create_time
15483
+
15484
+ # Operation last update time. If the operation is done, this is also the finish
15485
+ # time.
15486
+ # Corresponds to the JSON property `updateTime`
15487
+ # @return [String]
15488
+ attr_accessor :update_time
15489
+
15490
+ def initialize(**args)
15491
+ update!(**args)
15492
+ end
15493
+
15494
+ # Update properties of this object
15495
+ def update!(**args)
15496
+ @create_time = args[:create_time] if args.key?(:create_time)
15497
+ @update_time = args[:update_time] if args.key?(:update_time)
15498
+ end
15499
+ end
15500
+
15501
+ # Response message for CrawlRateManagementService.RemoveDedicatedCrawlRate
15502
+ # method. It simply returns the state of the response, and an error message if
15503
+ # the state is FAILED.
15504
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateResponse
15505
+ include Google::Apis::Core::Hashable
15506
+
15507
+ # The `Status` type defines a logical error model that is suitable for different
15508
+ # programming environments, including REST APIs and RPC APIs. It is used by [
15509
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
15510
+ # data: error code, error message, and error details. You can find out more
15511
+ # about this error model and how to work with it in the [API Design Guide](https:
15512
+ # //cloud.google.com/apis/design/errors).
15513
+ # Corresponds to the JSON property `error`
15514
+ # @return [Google::Apis::DiscoveryengineV1::GoogleRpcStatus]
15515
+ attr_accessor :error
15516
+
15517
+ # Output only. The state of the response.
15518
+ # Corresponds to the JSON property `state`
15519
+ # @return [String]
15520
+ attr_accessor :state
15521
+
15522
+ def initialize(**args)
15523
+ update!(**args)
15524
+ end
15525
+
15526
+ # Update properties of this object
15527
+ def update!(**args)
15528
+ @error = args[:error] if args.key?(:error)
15529
+ @state = args[:state] if args.key?(:state)
15530
+ end
15531
+ end
15532
+
15533
+ # Safety rating corresponding to the generated content.
15534
+ class GoogleCloudDiscoveryengineV1alphaSafetyRating
15535
+ include Google::Apis::Core::Hashable
15536
+
15537
+ # Output only. Indicates whether the content was filtered out because of this
15538
+ # rating.
15539
+ # Corresponds to the JSON property `blocked`
15540
+ # @return [Boolean]
15541
+ attr_accessor :blocked
15542
+ alias_method :blocked?, :blocked
15543
+
15544
+ # Output only. Harm category.
15545
+ # Corresponds to the JSON property `category`
15546
+ # @return [String]
15547
+ attr_accessor :category
15548
+
15549
+ # Output only. Harm probability levels in the content.
15550
+ # Corresponds to the JSON property `probability`
15551
+ # @return [String]
15552
+ attr_accessor :probability
15553
+
15554
+ # Output only. Harm probability score.
15555
+ # Corresponds to the JSON property `probabilityScore`
15556
+ # @return [Float]
15557
+ attr_accessor :probability_score
15558
+
15559
+ # Output only. Harm severity levels in the content.
15560
+ # Corresponds to the JSON property `severity`
15561
+ # @return [String]
15562
+ attr_accessor :severity
15563
+
15564
+ # Output only. Harm severity score.
15565
+ # Corresponds to the JSON property `severityScore`
15566
+ # @return [Float]
15567
+ attr_accessor :severity_score
15568
+
15569
+ def initialize(**args)
15570
+ update!(**args)
15571
+ end
15572
+
15573
+ # Update properties of this object
15574
+ def update!(**args)
15575
+ @blocked = args[:blocked] if args.key?(:blocked)
15576
+ @category = args[:category] if args.key?(:category)
15577
+ @probability = args[:probability] if args.key?(:probability)
15578
+ @probability_score = args[:probability_score] if args.key?(:probability_score)
15579
+ @severity = args[:severity] if args.key?(:severity)
15580
+ @severity_score = args[:severity_score] if args.key?(:severity_score)
15581
+ end
15582
+ end
15583
+
15273
15584
  # Defines the structure and layout of a type of document data.
15274
15585
  class GoogleCloudDiscoveryengineV1alphaSchema
15275
15586
  include Google::Apis::Core::Hashable
@@ -16423,8 +16734,8 @@ module Google
16423
16734
  class GoogleCloudDiscoveryengineV1alphaSearchRequestNaturalLanguageQueryUnderstandingSpec
16424
16735
  include Google::Apis::Core::Hashable
16425
16736
 
16426
- # The condition under which filter extraction should occur. Default to Condition.
16427
- # DISABLED.
16737
+ # The condition under which filter extraction should occur. Server behavior
16738
+ # defaults to `DISABLED`.
16428
16739
  # Corresponds to the JSON property `filterExtractionCondition`
16429
16740
  # @return [String]
16430
16741
  attr_accessor :filter_extraction_condition
@@ -16675,6 +16986,66 @@ module Google
16675
16986
  end
16676
16987
  end
16677
16988
 
16989
+ # Metadata related to the progress of the CrawlRateManagementService.
16990
+ # SetDedicatedCrawlRate operation. This will be returned by the google.
16991
+ # longrunning.Operation.metadata field.
16992
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateMetadata
16993
+ include Google::Apis::Core::Hashable
16994
+
16995
+ # Operation create time.
16996
+ # Corresponds to the JSON property `createTime`
16997
+ # @return [String]
16998
+ attr_accessor :create_time
16999
+
17000
+ # Operation last update time. If the operation is done, this is also the finish
17001
+ # time.
17002
+ # Corresponds to the JSON property `updateTime`
17003
+ # @return [String]
17004
+ attr_accessor :update_time
17005
+
17006
+ def initialize(**args)
17007
+ update!(**args)
17008
+ end
17009
+
17010
+ # Update properties of this object
17011
+ def update!(**args)
17012
+ @create_time = args[:create_time] if args.key?(:create_time)
17013
+ @update_time = args[:update_time] if args.key?(:update_time)
17014
+ end
17015
+ end
17016
+
17017
+ # Response message for CrawlRateManagementService.SetDedicatedCrawlRate method.
17018
+ # It simply returns the state of the response, and an error message if the state
17019
+ # is FAILED.
17020
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateResponse
17021
+ include Google::Apis::Core::Hashable
17022
+
17023
+ # The `Status` type defines a logical error model that is suitable for different
17024
+ # programming environments, including REST APIs and RPC APIs. It is used by [
17025
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
17026
+ # data: error code, error message, and error details. You can find out more
17027
+ # about this error model and how to work with it in the [API Design Guide](https:
17028
+ # //cloud.google.com/apis/design/errors).
17029
+ # Corresponds to the JSON property `error`
17030
+ # @return [Google::Apis::DiscoveryengineV1::GoogleRpcStatus]
17031
+ attr_accessor :error
17032
+
17033
+ # Output only. The state of the response.
17034
+ # Corresponds to the JSON property `state`
17035
+ # @return [String]
17036
+ attr_accessor :state
17037
+
17038
+ def initialize(**args)
17039
+ update!(**args)
17040
+ end
17041
+
17042
+ # Update properties of this object
17043
+ def update!(**args)
17044
+ @error = args[:error] if args.key?(:error)
17045
+ @state = args[:state] if args.key?(:state)
17046
+ end
17047
+ end
17048
+
16678
17049
  # Metadata for DataConnectorService.SetUpDataConnector method.
16679
17050
  class GoogleCloudDiscoveryengineV1alphaSetUpDataConnectorMetadata
16680
17051
  include Google::Apis::Core::Hashable
@@ -16812,7 +17183,7 @@ module Google
16812
17183
  class GoogleCloudDiscoveryengineV1alphaTargetSite
16813
17184
  include Google::Apis::Core::Hashable
16814
17185
 
16815
- # Input only. If set to false, a uri_pattern is generated to include all pages
17186
+ # Immutable. If set to false, a uri_pattern is generated to include all pages
16816
17187
  # whose address contains the provided_uri_pattern. If set to true, an
16817
17188
  # uri_pattern is generated to try to be an exact match of the
16818
17189
  # provided_uri_pattern or just the specific page if the provided_uri_pattern is
@@ -17257,12 +17628,26 @@ module Google
17257
17628
  class GoogleCloudDiscoveryengineV1betaAdvancedSiteSearchConfig
17258
17629
  include Google::Apis::Core::Hashable
17259
17630
 
17631
+ # If set true, automatic refresh is disabled for the DataStore.
17632
+ # Corresponds to the JSON property `disableAutomaticRefresh`
17633
+ # @return [Boolean]
17634
+ attr_accessor :disable_automatic_refresh
17635
+ alias_method :disable_automatic_refresh?, :disable_automatic_refresh
17636
+
17637
+ # If set true, initial indexing is disabled for the DataStore.
17638
+ # Corresponds to the JSON property `disableInitialIndex`
17639
+ # @return [Boolean]
17640
+ attr_accessor :disable_initial_index
17641
+ alias_method :disable_initial_index?, :disable_initial_index
17642
+
17260
17643
  def initialize(**args)
17261
17644
  update!(**args)
17262
17645
  end
17263
17646
 
17264
17647
  # Update properties of this object
17265
17648
  def update!(**args)
17649
+ @disable_automatic_refresh = args[:disable_automatic_refresh] if args.key?(:disable_automatic_refresh)
17650
+ @disable_initial_index = args[:disable_initial_index] if args.key?(:disable_initial_index)
17266
17651
  end
17267
17652
  end
17268
17653
 
@@ -17559,8 +17944,8 @@ module Google
17559
17944
  class GoogleCloudDiscoveryengineV1betaControlBoostAction
17560
17945
  include Google::Apis::Core::Hashable
17561
17946
 
17562
- # Required. Strength of the boost, which should be in [-1, 1]. Negative boost
17563
- # means demotion. Default is 0.0 (No-op).
17947
+ # Strength of the boost, which should be in [-1, 1]. Negative boost means
17948
+ # demotion. Default is 0.0 (No-op).
17564
17949
  # Corresponds to the JSON property `boost`
17565
17950
  # @return [Float]
17566
17951
  attr_accessor :boost
@@ -17580,6 +17965,12 @@ module Google
17580
17965
  # @return [String]
17581
17966
  attr_accessor :filter
17582
17967
 
17968
+ # Optional. Strength of the boost, which should be in [-1, 1]. Negative boost
17969
+ # means demotion. Default is 0.0 (No-op).
17970
+ # Corresponds to the JSON property `fixedBoost`
17971
+ # @return [Float]
17972
+ attr_accessor :fixed_boost
17973
+
17583
17974
  def initialize(**args)
17584
17975
  update!(**args)
17585
17976
  end
@@ -17589,6 +17980,7 @@ module Google
17589
17980
  @boost = args[:boost] if args.key?(:boost)
17590
17981
  @data_store = args[:data_store] if args.key?(:data_store)
17591
17982
  @filter = args[:filter] if args.key?(:filter)
17983
+ @fixed_boost = args[:fixed_boost] if args.key?(:fixed_boost)
17592
17984
  end
17593
17985
  end
17594
17986
 
@@ -18102,6 +18494,34 @@ module Google
18102
18494
  end
18103
18495
  end
18104
18496
 
18497
+ # Metadata related to the progress of the IdentityMappingStoreService.
18498
+ # DeleteIdentityMappingStore operation. This will be returned by the google.
18499
+ # longrunning.Operation.metadata field.
18500
+ class GoogleCloudDiscoveryengineV1betaDeleteIdentityMappingStoreMetadata
18501
+ include Google::Apis::Core::Hashable
18502
+
18503
+ # Operation create time.
18504
+ # Corresponds to the JSON property `createTime`
18505
+ # @return [String]
18506
+ attr_accessor :create_time
18507
+
18508
+ # Operation last update time. If the operation is done, this is also the finish
18509
+ # time.
18510
+ # Corresponds to the JSON property `updateTime`
18511
+ # @return [String]
18512
+ attr_accessor :update_time
18513
+
18514
+ def initialize(**args)
18515
+ update!(**args)
18516
+ end
18517
+
18518
+ # Update properties of this object
18519
+ def update!(**args)
18520
+ @create_time = args[:create_time] if args.key?(:create_time)
18521
+ @update_time = args[:update_time] if args.key?(:update_time)
18522
+ end
18523
+ end
18524
+
18105
18525
  # Metadata for DeleteSchema LRO.
18106
18526
  class GoogleCloudDiscoveryengineV1betaDeleteSchemaMetadata
18107
18527
  include Google::Apis::Core::Hashable
@@ -20763,8 +21183,8 @@ module Google
20763
21183
  class GoogleCloudDiscoveryengineV1betaSearchRequestNaturalLanguageQueryUnderstandingSpec
20764
21184
  include Google::Apis::Core::Hashable
20765
21185
 
20766
- # The condition under which filter extraction should occur. Default to Condition.
20767
- # DISABLED.
21186
+ # The condition under which filter extraction should occur. Server behavior
21187
+ # defaults to `DISABLED`.
20768
21188
  # Corresponds to the JSON property `filterExtractionCondition`
20769
21189
  # @return [String]
20770
21190
  attr_accessor :filter_extraction_condition
@@ -21000,7 +21420,7 @@ module Google
21000
21420
  class GoogleCloudDiscoveryengineV1betaTargetSite
21001
21421
  include Google::Apis::Core::Hashable
21002
21422
 
21003
- # Input only. If set to false, a uri_pattern is generated to include all pages
21423
+ # Immutable. If set to false, a uri_pattern is generated to include all pages
21004
21424
  # whose address contains the provided_uri_pattern. If set to true, an
21005
21425
  # uri_pattern is generated to try to be an exact match of the
21006
21426
  # 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 DiscoveryengineV1
18
18
  # Version of the google-apis-discoveryengine_v1 gem
19
- GEM_VERSION = "0.26.0"
19
+ GEM_VERSION = "0.27.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
@@ -226,6 +226,12 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
+ class GoogleCloudDiscoveryengineV1AnswerQueryRequestSafetySpecSafetySetting
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
229
235
  class GoogleCloudDiscoveryengineV1AnswerQueryRequestSearchSpec
230
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
237
 
@@ -700,6 +706,12 @@ module Google
700
706
  include Google::Apis::Core::JsonObjectSupport
701
707
  end
702
708
 
709
+ class GoogleCloudDiscoveryengineV1DeleteIdentityMappingStoreMetadata
710
+ class Representation < Google::Apis::Core::JsonRepresentation; end
711
+
712
+ include Google::Apis::Core::JsonObjectSupport
713
+ end
714
+
703
715
  class GoogleCloudDiscoveryengineV1DeleteSchemaMetadata
704
716
  class Representation < Google::Apis::Core::JsonRepresentation; end
705
717
 
@@ -1330,6 +1342,12 @@ module Google
1330
1342
  include Google::Apis::Core::JsonObjectSupport
1331
1343
  end
1332
1344
 
1345
+ class GoogleCloudDiscoveryengineV1SafetyRating
1346
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1347
+
1348
+ include Google::Apis::Core::JsonObjectSupport
1349
+ end
1350
+
1333
1351
  class GoogleCloudDiscoveryengineV1Schema
1334
1352
  class Representation < Google::Apis::Core::JsonRepresentation; end
1335
1353
 
@@ -2026,6 +2044,12 @@ module Google
2026
2044
  include Google::Apis::Core::JsonObjectSupport
2027
2045
  end
2028
2046
 
2047
+ class GoogleCloudDiscoveryengineV1alphaDeleteIdentityMappingStoreMetadata
2048
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2049
+
2050
+ include Google::Apis::Core::JsonObjectSupport
2051
+ end
2052
+
2029
2053
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
2030
2054
  class Representation < Google::Apis::Core::JsonRepresentation; end
2031
2055
 
@@ -2482,6 +2506,24 @@ module Google
2482
2506
  include Google::Apis::Core::JsonObjectSupport
2483
2507
  end
2484
2508
 
2509
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateMetadata
2510
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2511
+
2512
+ include Google::Apis::Core::JsonObjectSupport
2513
+ end
2514
+
2515
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateResponse
2516
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2517
+
2518
+ include Google::Apis::Core::JsonObjectSupport
2519
+ end
2520
+
2521
+ class GoogleCloudDiscoveryengineV1alphaSafetyRating
2522
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2523
+
2524
+ include Google::Apis::Core::JsonObjectSupport
2525
+ end
2526
+
2485
2527
  class GoogleCloudDiscoveryengineV1alphaSchema
2486
2528
  class Representation < Google::Apis::Core::JsonRepresentation; end
2487
2529
 
@@ -2650,6 +2692,18 @@ module Google
2650
2692
  include Google::Apis::Core::JsonObjectSupport
2651
2693
  end
2652
2694
 
2695
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateMetadata
2696
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2697
+
2698
+ include Google::Apis::Core::JsonObjectSupport
2699
+ end
2700
+
2701
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateResponse
2702
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2703
+
2704
+ include Google::Apis::Core::JsonObjectSupport
2705
+ end
2706
+
2653
2707
  class GoogleCloudDiscoveryengineV1alphaSetUpDataConnectorMetadata
2654
2708
  class Representation < Google::Apis::Core::JsonRepresentation; end
2655
2709
 
@@ -2914,6 +2968,12 @@ module Google
2914
2968
  include Google::Apis::Core::JsonObjectSupport
2915
2969
  end
2916
2970
 
2971
+ class GoogleCloudDiscoveryengineV1betaDeleteIdentityMappingStoreMetadata
2972
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2973
+
2974
+ include Google::Apis::Core::JsonObjectSupport
2975
+ end
2976
+
2917
2977
  class GoogleCloudDiscoveryengineV1betaDeleteSchemaMetadata
2918
2978
  class Representation < Google::Apis::Core::JsonRepresentation; end
2919
2979
 
@@ -3679,6 +3739,8 @@ module Google
3679
3739
  class GoogleCloudDiscoveryengineV1AdvancedSiteSearchConfig
3680
3740
  # @private
3681
3741
  class Representation < Google::Apis::Core::JsonRepresentation
3742
+ property :disable_automatic_refresh, as: 'disableAutomaticRefresh'
3743
+ property :disable_initial_index, as: 'disableInitialIndex'
3682
3744
  end
3683
3745
  end
3684
3746
 
@@ -3712,6 +3774,8 @@ module Google
3712
3774
  collection :references, as: 'references', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerReference, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerReference::Representation
3713
3775
 
3714
3776
  collection :related_questions, as: 'relatedQuestions'
3777
+ collection :safety_ratings, as: 'safetyRatings', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SafetyRating, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SafetyRating::Representation
3778
+
3715
3779
  property :state, as: 'state'
3716
3780
  collection :steps, as: 'steps', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerStep, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerStep::Representation
3717
3781
 
@@ -3854,6 +3918,16 @@ module Google
3854
3918
  # @private
3855
3919
  class Representation < Google::Apis::Core::JsonRepresentation
3856
3920
  property :enable, as: 'enable'
3921
+ collection :safety_settings, as: 'safetySettings', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestSafetySpecSafetySetting, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestSafetySpecSafetySetting::Representation
3922
+
3923
+ end
3924
+ end
3925
+
3926
+ class GoogleCloudDiscoveryengineV1AnswerQueryRequestSafetySpecSafetySetting
3927
+ # @private
3928
+ class Representation < Google::Apis::Core::JsonRepresentation
3929
+ property :category, as: 'category'
3930
+ property :threshold, as: 'threshold'
3857
3931
  end
3858
3932
  end
3859
3933
 
@@ -4438,6 +4512,7 @@ module Google
4438
4512
  property :boost, as: 'boost'
4439
4513
  property :data_store, as: 'dataStore'
4440
4514
  property :filter, as: 'filter'
4515
+ property :fixed_boost, as: 'fixedBoost'
4441
4516
  end
4442
4517
  end
4443
4518
 
@@ -4661,6 +4736,14 @@ module Google
4661
4736
  end
4662
4737
  end
4663
4738
 
4739
+ class GoogleCloudDiscoveryengineV1DeleteIdentityMappingStoreMetadata
4740
+ # @private
4741
+ class Representation < Google::Apis::Core::JsonRepresentation
4742
+ property :create_time, as: 'createTime'
4743
+ property :update_time, as: 'updateTime'
4744
+ end
4745
+ end
4746
+
4664
4747
  class GoogleCloudDiscoveryengineV1DeleteSchemaMetadata
4665
4748
  # @private
4666
4749
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5668,6 +5751,18 @@ module Google
5668
5751
  end
5669
5752
  end
5670
5753
 
5754
+ class GoogleCloudDiscoveryengineV1SafetyRating
5755
+ # @private
5756
+ class Representation < Google::Apis::Core::JsonRepresentation
5757
+ property :blocked, as: 'blocked'
5758
+ property :category, as: 'category'
5759
+ property :probability, as: 'probability'
5760
+ property :probability_score, as: 'probabilityScore'
5761
+ property :severity, as: 'severity'
5762
+ property :severity_score, as: 'severityScore'
5763
+ end
5764
+ end
5765
+
5671
5766
  class GoogleCloudDiscoveryengineV1Schema
5672
5767
  # @private
5673
5768
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6400,6 +6495,8 @@ module Google
6400
6495
  collection :references, as: 'references', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAnswerReference, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAnswerReference::Representation
6401
6496
 
6402
6497
  collection :related_questions, as: 'relatedQuestions'
6498
+ collection :safety_ratings, as: 'safetyRatings', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSafetyRating, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSafetyRating::Representation
6499
+
6403
6500
  property :state, as: 'state'
6404
6501
  collection :steps, as: 'steps', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAnswerStep, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAnswerStep::Representation
6405
6502
 
@@ -6712,6 +6809,7 @@ module Google
6712
6809
  property :boost, as: 'boost'
6713
6810
  property :data_store, as: 'dataStore'
6714
6811
  property :filter, as: 'filter'
6812
+ property :fixed_boost, as: 'fixedBoost'
6715
6813
  end
6716
6814
  end
6717
6815
 
@@ -6941,6 +7039,14 @@ module Google
6941
7039
  end
6942
7040
  end
6943
7041
 
7042
+ class GoogleCloudDiscoveryengineV1alphaDeleteIdentityMappingStoreMetadata
7043
+ # @private
7044
+ class Representation < Google::Apis::Core::JsonRepresentation
7045
+ property :create_time, as: 'createTime'
7046
+ property :update_time, as: 'updateTime'
7047
+ end
7048
+ end
7049
+
6944
7050
  class GoogleCloudDiscoveryengineV1alphaDeleteSchemaMetadata
6945
7051
  # @private
6946
7052
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7285,6 +7391,8 @@ module Google
7285
7391
  class GoogleCloudDiscoveryengineV1alphaIdentityScheduleConfig
7286
7392
  # @private
7287
7393
  class Representation < Google::Apis::Core::JsonRepresentation
7394
+ property :next_sync_time, as: 'nextSyncTime', class: Google::Apis::DiscoveryengineV1::GoogleTypeDateTime, decorator: Google::Apis::DiscoveryengineV1::GoogleTypeDateTime::Representation
7395
+
7288
7396
  property :refresh_interval, as: 'refreshInterval'
7289
7397
  end
7290
7398
  end
@@ -7658,6 +7766,35 @@ module Google
7658
7766
  end
7659
7767
  end
7660
7768
 
7769
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateMetadata
7770
+ # @private
7771
+ class Representation < Google::Apis::Core::JsonRepresentation
7772
+ property :create_time, as: 'createTime'
7773
+ property :update_time, as: 'updateTime'
7774
+ end
7775
+ end
7776
+
7777
+ class GoogleCloudDiscoveryengineV1alphaRemoveDedicatedCrawlRateResponse
7778
+ # @private
7779
+ class Representation < Google::Apis::Core::JsonRepresentation
7780
+ property :error, as: 'error', class: Google::Apis::DiscoveryengineV1::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1::GoogleRpcStatus::Representation
7781
+
7782
+ property :state, as: 'state'
7783
+ end
7784
+ end
7785
+
7786
+ class GoogleCloudDiscoveryengineV1alphaSafetyRating
7787
+ # @private
7788
+ class Representation < Google::Apis::Core::JsonRepresentation
7789
+ property :blocked, as: 'blocked'
7790
+ property :category, as: 'category'
7791
+ property :probability, as: 'probability'
7792
+ property :probability_score, as: 'probabilityScore'
7793
+ property :severity, as: 'severity'
7794
+ property :severity_score, as: 'severityScore'
7795
+ end
7796
+ end
7797
+
7661
7798
  class GoogleCloudDiscoveryengineV1alphaSchema
7662
7799
  # @private
7663
7800
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7974,6 +8111,23 @@ module Google
7974
8111
  end
7975
8112
  end
7976
8113
 
8114
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateMetadata
8115
+ # @private
8116
+ class Representation < Google::Apis::Core::JsonRepresentation
8117
+ property :create_time, as: 'createTime'
8118
+ property :update_time, as: 'updateTime'
8119
+ end
8120
+ end
8121
+
8122
+ class GoogleCloudDiscoveryengineV1alphaSetDedicatedCrawlRateResponse
8123
+ # @private
8124
+ class Representation < Google::Apis::Core::JsonRepresentation
8125
+ property :error, as: 'error', class: Google::Apis::DiscoveryengineV1::GoogleRpcStatus, decorator: Google::Apis::DiscoveryengineV1::GoogleRpcStatus::Representation
8126
+
8127
+ property :state, as: 'state'
8128
+ end
8129
+ end
8130
+
7977
8131
  class GoogleCloudDiscoveryengineV1alphaSetUpDataConnectorMetadata
7978
8132
  # @private
7979
8133
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8147,6 +8301,8 @@ module Google
8147
8301
  class GoogleCloudDiscoveryengineV1betaAdvancedSiteSearchConfig
8148
8302
  # @private
8149
8303
  class Representation < Google::Apis::Core::JsonRepresentation
8304
+ property :disable_automatic_refresh, as: 'disableAutomaticRefresh'
8305
+ property :disable_initial_index, as: 'disableInitialIndex'
8150
8306
  end
8151
8307
  end
8152
8308
 
@@ -8236,6 +8392,7 @@ module Google
8236
8392
  property :boost, as: 'boost'
8237
8393
  property :data_store, as: 'dataStore'
8238
8394
  property :filter, as: 'filter'
8395
+ property :fixed_boost, as: 'fixedBoost'
8239
8396
  end
8240
8397
  end
8241
8398
 
@@ -8384,6 +8541,14 @@ module Google
8384
8541
  end
8385
8542
  end
8386
8543
 
8544
+ class GoogleCloudDiscoveryengineV1betaDeleteIdentityMappingStoreMetadata
8545
+ # @private
8546
+ class Representation < Google::Apis::Core::JsonRepresentation
8547
+ property :create_time, as: 'createTime'
8548
+ property :update_time, as: 'updateTime'
8549
+ end
8550
+ end
8551
+
8387
8552
  class GoogleCloudDiscoveryengineV1betaDeleteSchemaMetadata
8388
8553
  # @private
8389
8554
  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.
@@ -4733,7 +4733,7 @@ module Google
4733
4733
  # is returned. This field must be unique among all Documents with the same
4734
4734
  # parent. Otherwise, an `ALREADY_EXISTS` error is returned. This field must
4735
4735
  # conform to [RFC-1034](https://tools.ietf.org/html/rfc1034) standard with a
4736
- # length limit of 63 characters. Otherwise, an `INVALID_ARGUMENT` error is
4736
+ # length limit of 128 characters. Otherwise, an `INVALID_ARGUMENT` error is
4737
4737
  # returned.
4738
4738
  # @param [String] fields
4739
4739
  # Selector specifying which fields to include in a partial response.
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.27.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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.26.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.27.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
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 V1
82
79
  test_files: []