google-apis-contentwarehouse_v1 0.9.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -3653,9 +3653,9 @@ module Google
3653
3653
  # @return [String]
3654
3654
  attr_accessor :contact_group_id
3655
3655
 
3656
- # If the Preference was implicitly set by PeopleApi. A preference with this bit
3657
- # will not be saved. See go/contact-group-email-preference-papi-problem for more
3658
- # info.
3656
+ # If the Preference was implicitly set by PeopleApi/Contacts Service. A
3657
+ # preference with this bit will not be saved to storage. See go/contact-group-
3658
+ # email-preference-papi-problem for more info.
3659
3659
  # Corresponds to the JSON property `isSynthetic`
3660
3660
  # @return [Boolean]
3661
3661
  attr_accessor :is_synthetic
@@ -7180,7 +7180,9 @@ module Google
7180
7180
 
7181
7181
  # A reference to a photo in either Photos Backend or SGI storage. This message
7182
7182
  # should be treated as an opaque blob to avoid a dependency on a specific
7183
- # storage backend.
7183
+ # storage backend. This version of ImageReference is visible outside of SGBE. Do
7184
+ # not add fields that should not be exposed outside of Profile Service and Image
7185
+ # Service.
7184
7186
  # Corresponds to the JSON property `originalPhoto`
7185
7187
  # @return [Google::Apis::ContentwarehouseV1::SocialGraphApiProtoImageReference]
7186
7188
  attr_accessor :original_photo
@@ -7903,6 +7905,13 @@ module Google
7903
7905
  # @return [Google::Apis::ContentwarehouseV1::AppsPeopleOzExternalMergedpeopleapiProfileOwnerStats]
7904
7906
  attr_accessor :profile_owner_stats
7905
7907
 
7908
+ # Returned only when explicitly requested in the request mask as
7909
+ # read_only_profile_info.unjoined_email_certificates. Equivalent to fetching the
7910
+ # Emails & the Email Certificates with the acls ignored.
7911
+ # Corresponds to the JSON property `unjoinedEmailCertificates`
7912
+ # @return [Array<Google::Apis::ContentwarehouseV1::AppsPeopleOzExternalMergedpeopleapiEmail>]
7913
+ attr_accessor :unjoined_email_certificates
7914
+
7906
7915
  def initialize(**args)
7907
7916
  update!(**args)
7908
7917
  end
@@ -7921,6 +7930,7 @@ module Google
7921
7930
  @owner_user_type = args[:owner_user_type] if args.key?(:owner_user_type)
7922
7931
  @plus_page_type = args[:plus_page_type] if args.key?(:plus_page_type)
7923
7932
  @profile_owner_stats = args[:profile_owner_stats] if args.key?(:profile_owner_stats)
7933
+ @unjoined_email_certificates = args[:unjoined_email_certificates] if args.key?(:unjoined_email_certificates)
7924
7934
  end
7925
7935
  end
7926
7936
 
@@ -9341,6 +9351,26 @@ module Google
9341
9351
  end
9342
9352
  end
9343
9353
 
9354
+ # Bluetooth capabilities related to usage of a feature.
9355
+ class AssistantApiBluetoothCapabilities
9356
+ include Google::Apis::Core::Hashable
9357
+
9358
+ # If this surface needs to bluetooth pair a phone before using a feature.
9359
+ # Corresponds to the JSON property `isBluetoothConnectedProfileRequired`
9360
+ # @return [Boolean]
9361
+ attr_accessor :is_bluetooth_connected_profile_required
9362
+ alias_method :is_bluetooth_connected_profile_required?, :is_bluetooth_connected_profile_required
9363
+
9364
+ def initialize(**args)
9365
+ update!(**args)
9366
+ end
9367
+
9368
+ # Update properties of this object
9369
+ def update!(**args)
9370
+ @is_bluetooth_connected_profile_required = args[:is_bluetooth_connected_profile_required] if args.key?(:is_bluetooth_connected_profile_required)
9371
+ end
9372
+ end
9373
+
9344
9374
  # CallCapabilities supported by a surface. See go/call-capabilities. Next ID: 7
9345
9375
  class AssistantApiCallCapabilities
9346
9376
  include Google::Apis::Core::Hashable
@@ -9451,6 +9481,28 @@ module Google
9451
9481
  end
9452
9482
  end
9453
9483
 
9484
+ # Information about the readiness of Home app features on the device. As of
9485
+ # January 2023, this is only populated by Assistant on Android.
9486
+ class AssistantApiCapabilitiesHomeAppCapabilities
9487
+ include Google::Apis::Core::Hashable
9488
+
9489
+ # The app's installation and setup state. This is most pertinent for Tangor,
9490
+ # where lock screen Smart Home queries are fulfilled by a Home app activity that
9491
+ # may be blocked if this value is not `SETUP_STATE_COMPLETE`.
9492
+ # Corresponds to the JSON property `setupState`
9493
+ # @return [String]
9494
+ attr_accessor :setup_state
9495
+
9496
+ def initialize(**args)
9497
+ update!(**args)
9498
+ end
9499
+
9500
+ # Update properties of this object
9501
+ def update!(**args)
9502
+ @setup_state = args[:setup_state] if args.key?(:setup_state)
9503
+ end
9504
+ end
9505
+
9454
9506
  # Capabilities that are associated with Assistants on auto surfaces. This is
9455
9507
  # different from other capabilities such as CarSettingsCapabilities,
9456
9508
  # CloudCarCapabilities since they are specific to settings and 3P cloud
@@ -12055,7 +12107,7 @@ module Google
12055
12107
  # enum. A surface's capabilities can differ from the device's. An example would
12056
12108
  # be ANDROID_ALLO running on Pixel. Allo does not support AudioInput while the
12057
12109
  # Pixel does. In this case, audio_input will be set to false for Assistant Allo
12058
- # requests while it might be set to true for OPA_NEXUS requests. Next ID: 34
12110
+ # requests while it might be set to true for OPA_NEXUS requests. Next ID: 35
12059
12111
  class AssistantApiDeviceCapabilities
12060
12112
  include Google::Apis::Core::Hashable
12061
12113
 
@@ -12080,6 +12132,11 @@ module Google
12080
12132
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiAudioOutput]
12081
12133
  attr_accessor :audio_output
12082
12134
 
12135
+ # Bluetooth capabilities related to usage of a feature.
12136
+ # Corresponds to the JSON property `bluetoothCapabilities`
12137
+ # @return [Google::Apis::ContentwarehouseV1::AssistantApiBluetoothCapabilities]
12138
+ attr_accessor :bluetooth_capabilities
12139
+
12083
12140
  # CallCapabilities supported by a surface. See go/call-capabilities. Next ID: 7
12084
12141
  # Corresponds to the JSON property `callCapabilities`
12085
12142
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiCallCapabilities]
@@ -12222,7 +12279,7 @@ module Google
12222
12279
 
12223
12280
  # These capabilities represent what software features the client supports. This
12224
12281
  # should be determined based on the client's various software versions (OS, GSA
12225
- # version, etc). Next ID: 26
12282
+ # version, etc). Next ID: 27
12226
12283
  # Corresponds to the JSON property `software`
12227
12284
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiSoftwareCapabilities]
12228
12285
  attr_accessor :software
@@ -12281,6 +12338,7 @@ module Google
12281
12338
  @android_intent_capabilities = args[:android_intent_capabilities] if args.key?(:android_intent_capabilities)
12282
12339
  @audio_input = args[:audio_input] if args.key?(:audio_input)
12283
12340
  @audio_output = args[:audio_output] if args.key?(:audio_output)
12341
+ @bluetooth_capabilities = args[:bluetooth_capabilities] if args.key?(:bluetooth_capabilities)
12284
12342
  @call_capabilities = args[:call_capabilities] if args.key?(:call_capabilities)
12285
12343
  @camera = args[:camera] if args.key?(:camera)
12286
12344
  @car_ux_restrictions = args[:car_ux_restrictions] if args.key?(:car_ux_restrictions)
@@ -14181,7 +14239,7 @@ module Google
14181
14239
  # enum. A surface's capabilities can differ from the device's. An example would
14182
14240
  # be ANDROID_ALLO running on Pixel. Allo does not support AudioInput while the
14183
14241
  # Pixel does. In this case, audio_input will be set to false for Assistant Allo
14184
- # requests while it might be set to true for OPA_NEXUS requests. Next ID: 34
14242
+ # requests while it might be set to true for OPA_NEXUS requests. Next ID: 35
14185
14243
  # Corresponds to the JSON property `capabilities`
14186
14244
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiDeviceCapabilities]
14187
14245
  attr_accessor :capabilities
@@ -16238,7 +16296,7 @@ module Google
16238
16296
 
16239
16297
  # These capabilities represent what software features the client supports. This
16240
16298
  # should be determined based on the client's various software versions (OS, GSA
16241
- # version, etc). Next ID: 26
16299
+ # version, etc). Next ID: 27
16242
16300
  class AssistantApiSoftwareCapabilities
16243
16301
  include Google::Apis::Core::Hashable
16244
16302
 
@@ -16300,6 +16358,12 @@ module Google
16300
16358
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiGcmCapabilities]
16301
16359
  attr_accessor :gcm_capabilities
16302
16360
 
16361
+ # Information about the readiness of Home app features on the device. As of
16362
+ # January 2023, this is only populated by Assistant on Android.
16363
+ # Corresponds to the JSON property `homeAppCapabilities`
16364
+ # @return [Google::Apis::ContentwarehouseV1::AssistantApiCapabilitiesHomeAppCapabilities]
16365
+ attr_accessor :home_app_capabilities
16366
+
16303
16367
  # Capabilities related to live TV channels.
16304
16368
  # Corresponds to the JSON property `liveTvChannelCapabilities`
16305
16369
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiLiveTvChannelCapabilities]
@@ -16356,7 +16420,7 @@ module Google
16356
16420
  attr_accessor :supported_client_op
16357
16421
 
16358
16422
  # These are the set of features that are supported by the device. It's a part of
16359
- # the SoftwareCapabilities of the device. Next ID: 62
16423
+ # the SoftwareCapabilities of the device. Next ID: 63
16360
16424
  # Corresponds to the JSON property `supportedFeatures`
16361
16425
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiSupportedFeatures]
16362
16426
  attr_accessor :supported_features
@@ -16396,6 +16460,7 @@ module Google
16396
16460
  @cross_device_execution_capabilities = args[:cross_device_execution_capabilities] if args.key?(:cross_device_execution_capabilities)
16397
16461
  @gacs_capabilities = args[:gacs_capabilities] if args.key?(:gacs_capabilities)
16398
16462
  @gcm_capabilities = args[:gcm_capabilities] if args.key?(:gcm_capabilities)
16463
+ @home_app_capabilities = args[:home_app_capabilities] if args.key?(:home_app_capabilities)
16399
16464
  @live_tv_channel_capabilities = args[:live_tv_channel_capabilities] if args.key?(:live_tv_channel_capabilities)
16400
16465
  @oem_capabilities = args[:oem_capabilities] if args.key?(:oem_capabilities)
16401
16466
  @on_device_assistant_capabilities = args[:on_device_assistant_capabilities] if args.key?(:on_device_assistant_capabilities)
@@ -16451,21 +16516,6 @@ module Google
16451
16516
  attr_accessor :click_impersonation_supported
16452
16517
  alias_method :click_impersonation_supported?, :click_impersonation_supported
16453
16518
 
16454
- # Whether client supports suggestion chips with colored background/border.
16455
- # Deprecated in favor of go/color-token-suggestion-chip.
16456
- # Corresponds to the JSON property `coloredChipBackgroundBorderSupported`
16457
- # @return [Boolean]
16458
- attr_accessor :colored_chip_background_border_supported
16459
- alias_method :colored_chip_background_border_supported?, :colored_chip_background_border_supported
16460
-
16461
- # Whether client supports suggestion chips with colored text. See design doc:
16462
- # http://go/opa-suggestions-ux-eng-design. Deprecated in favor of go/color-token-
16463
- # suggestion-chip.
16464
- # Corresponds to the JSON property `coloredChipTextSupported`
16465
- # @return [Boolean]
16466
- attr_accessor :colored_chip_text_supported
16467
- alias_method :colored_chip_text_supported?, :colored_chip_text_supported
16468
-
16469
16519
  # Whether client supports suggestions debug data to be displayed.
16470
16520
  # Corresponds to the JSON property `debugDataSupported`
16471
16521
  # @return [Boolean]
@@ -16569,8 +16619,6 @@ module Google
16569
16619
  # Update properties of this object
16570
16620
  def update!(**args)
16571
16621
  @click_impersonation_supported = args[:click_impersonation_supported] if args.key?(:click_impersonation_supported)
16572
- @colored_chip_background_border_supported = args[:colored_chip_background_border_supported] if args.key?(:colored_chip_background_border_supported)
16573
- @colored_chip_text_supported = args[:colored_chip_text_supported] if args.key?(:colored_chip_text_supported)
16574
16622
  @debug_data_supported = args[:debug_data_supported] if args.key?(:debug_data_supported)
16575
16623
  @drl_history_chip_supported = args[:drl_history_chip_supported] if args.key?(:drl_history_chip_supported)
16576
16624
  @escape_hatch_supported = args[:escape_hatch_supported] if args.key?(:escape_hatch_supported)
@@ -16766,7 +16814,7 @@ module Google
16766
16814
  end
16767
16815
 
16768
16816
  # These are the set of features that are supported by the device. It's a part of
16769
- # the SoftwareCapabilities of the device. Next ID: 62
16817
+ # the SoftwareCapabilities of the device. Next ID: 63
16770
16818
  class AssistantApiSupportedFeatures
16771
16819
  include Google::Apis::Core::Hashable
16772
16820
 
@@ -16842,6 +16890,14 @@ module Google
16842
16890
  attr_accessor :client_op_result_batching_supported
16843
16891
  alias_method :client_op_result_batching_supported?, :client_op_result_batching_supported
16844
16892
 
16893
+ # Whether the client supports confirmation flow before announcement of multiple
16894
+ # messages. If set to true the user will be prompted once and confirmation will
16895
+ # be taken before all the messages are announced.
16896
+ # Corresponds to the JSON property `confirmationBeforeReadingMultipleMessagesSupported`
16897
+ # @return [Boolean]
16898
+ attr_accessor :confirmation_before_reading_multiple_messages_supported
16899
+ alias_method :confirmation_before_reading_multiple_messages_supported?, :confirmation_before_reading_multiple_messages_supported
16900
+
16845
16901
  # Whether the client supports cross-device broadcast (i.e. on Torus).
16846
16902
  # Corresponds to the JSON property `crossDeviceBroadcastSupported`
16847
16903
  # @return [Boolean]
@@ -17194,6 +17250,7 @@ module Google
17194
17250
  @bypass_msg_notification_dismissal = args[:bypass_msg_notification_dismissal] if args.key?(:bypass_msg_notification_dismissal)
17195
17251
  @client1m_providers_supported = args[:client1m_providers_supported] if args.key?(:client1m_providers_supported)
17196
17252
  @client_op_result_batching_supported = args[:client_op_result_batching_supported] if args.key?(:client_op_result_batching_supported)
17253
+ @confirmation_before_reading_multiple_messages_supported = args[:confirmation_before_reading_multiple_messages_supported] if args.key?(:confirmation_before_reading_multiple_messages_supported)
17197
17254
  @cross_device_broadcast_supported = args[:cross_device_broadcast_supported] if args.key?(:cross_device_broadcast_supported)
17198
17255
  @cross_device_broadcast_version = args[:cross_device_broadcast_version] if args.key?(:cross_device_broadcast_version)
17199
17256
  @csat_visual_overlay_supported = args[:csat_visual_overlay_supported] if args.key?(:csat_visual_overlay_supported)
@@ -19011,7 +19068,7 @@ module Google
19011
19068
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerContactGroundingProviderFeatures]
19012
19069
  attr_accessor :contact_grounding_provider_features
19013
19070
 
19014
- # Features to be passed from Media GP to HGR. Next ID: 6
19071
+ # Features to be passed from Media GP to HGR. Next ID: 9
19015
19072
  # Corresponds to the JSON property `mediaGroundingProviderFeatures`
19016
19073
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerMediaGroundingProviderFeatures]
19017
19074
  attr_accessor :media_grounding_provider_features
@@ -19152,10 +19209,21 @@ module Google
19152
19209
  end
19153
19210
  end
19154
19211
 
19155
- # Features to be passed from Media GP to HGR. Next ID: 6
19212
+ # Features to be passed from Media GP to HGR. Next ID: 9
19156
19213
  class AssistantGroundingRankerMediaGroundingProviderFeatures
19157
19214
  include Google::Apis::Core::Hashable
19158
19215
 
19216
+ # Release type for an album container.
19217
+ # Corresponds to the JSON property `albumReleaseType`
19218
+ # @return [String]
19219
+ attr_accessor :album_release_type
19220
+
19221
+ # True if the argument's type was explicitly mentioned in the query.
19222
+ # Corresponds to the JSON property `hasTypeSemanticEdge`
19223
+ # @return [Boolean]
19224
+ attr_accessor :has_type_semantic_edge
19225
+ alias_method :has_type_semantic_edge?, :has_type_semantic_edge
19226
+
19159
19227
  # Whether the candidate is YouTube CAST_VIDEO candidate. CAST_VIDEO is a
19160
19228
  # deeplink platform. This signal will be used to promote YouTube Music screenful
19161
19229
  # candidates with CAST_VIDEO platform for free users because free users cannot
@@ -19196,17 +19264,25 @@ module Google
19196
19264
  # @return [Float]
19197
19265
  attr_accessor :scubed_p_sai_music
19198
19266
 
19267
+ # Type of the media item.
19268
+ # Corresponds to the JSON property `type`
19269
+ # @return [String]
19270
+ attr_accessor :type
19271
+
19199
19272
  def initialize(**args)
19200
19273
  update!(**args)
19201
19274
  end
19202
19275
 
19203
19276
  # Update properties of this object
19204
19277
  def update!(**args)
19278
+ @album_release_type = args[:album_release_type] if args.key?(:album_release_type)
19279
+ @has_type_semantic_edge = args[:has_type_semantic_edge] if args.key?(:has_type_semantic_edge)
19205
19280
  @is_cast_video = args[:is_cast_video] if args.key?(:is_cast_video)
19206
19281
  @is_seed_radio = args[:is_seed_radio] if args.key?(:is_seed_radio)
19207
19282
  @is_seed_radio_request = args[:is_seed_radio_request] if args.key?(:is_seed_radio_request)
19208
19283
  @msc_rate = args[:msc_rate] if args.key?(:msc_rate)
19209
19284
  @scubed_p_sai_music = args[:scubed_p_sai_music] if args.key?(:scubed_p_sai_music)
19285
+ @type = args[:type] if args.key?(:type)
19210
19286
  end
19211
19287
  end
19212
19288
 
@@ -20482,6 +20558,11 @@ module Google
20482
20558
  # @return [Fixnum]
20483
20559
  attr_accessor :device_arbitration_creation_timestamp_ms
20484
20560
 
20561
+ # The timestamp that DeviceTargetingInput is built in milliseconds.
20562
+ # Corresponds to the JSON property `deviceTargetingInputCreationTimestampMs`
20563
+ # @return [Fixnum]
20564
+ attr_accessor :device_targeting_input_creation_timestamp_ms
20565
+
20485
20566
  #
20486
20567
  # Corresponds to the JSON property `eliminatedByFurtherDistance`
20487
20568
  # @return [Fixnum]
@@ -20544,6 +20625,7 @@ module Google
20544
20625
  # Update properties of this object
20545
20626
  def update!(**args)
20546
20627
  @device_arbitration_creation_timestamp_ms = args[:device_arbitration_creation_timestamp_ms] if args.key?(:device_arbitration_creation_timestamp_ms)
20628
+ @device_targeting_input_creation_timestamp_ms = args[:device_targeting_input_creation_timestamp_ms] if args.key?(:device_targeting_input_creation_timestamp_ms)
20547
20629
  @eliminated_by_further_distance = args[:eliminated_by_further_distance] if args.key?(:eliminated_by_further_distance)
20548
20630
  @eliminated_by_local_closest = args[:eliminated_by_local_closest] if args.key?(:eliminated_by_local_closest)
20549
20631
  @eliminated_by_unknown_different_room = args[:eliminated_by_unknown_different_room] if args.key?(:eliminated_by_unknown_different_room)
@@ -20558,10 +20640,23 @@ module Google
20558
20640
  end
20559
20641
  end
20560
20642
 
20561
- # Provider annotation annotated from the query.
20643
+ # Provider annotation annotated from the query. These fields contain the
20644
+ # detailed information for the provider. (e.g. for Youtube, package_names
20645
+ # contains "com.google.android.youtube", localized_names contains "youtube", and
20646
+ # lang contains "en" from "en-US" which depends on user's setting.)
20562
20647
  class AssistantLogsProviderAnnotationLog
20563
20648
  include Google::Apis::Core::Hashable
20564
20649
 
20650
+ #
20651
+ # Corresponds to the JSON property `lang`
20652
+ # @return [String]
20653
+ attr_accessor :lang
20654
+
20655
+ #
20656
+ # Corresponds to the JSON property `localizedNames`
20657
+ # @return [Array<String>]
20658
+ attr_accessor :localized_names
20659
+
20565
20660
  #
20566
20661
  # Corresponds to the JSON property `packageNames`
20567
20662
  # @return [Array<String>]
@@ -20573,6 +20668,8 @@ module Google
20573
20668
 
20574
20669
  # Update properties of this object
20575
20670
  def update!(**args)
20671
+ @lang = args[:lang] if args.key?(:lang)
20672
+ @localized_names = args[:localized_names] if args.key?(:localized_names)
20576
20673
  @package_names = args[:package_names] if args.key?(:package_names)
20577
20674
  end
20578
20675
  end
@@ -20591,7 +20688,10 @@ module Google
20591
20688
  # @return [Array<Google::Apis::ContentwarehouseV1::AssistantLogsDeviceAnnotationLog>]
20592
20689
  attr_accessor :device_annotations
20593
20690
 
20594
- # Provider annotation annotated from the query.
20691
+ # Provider annotation annotated from the query. These fields contain the
20692
+ # detailed information for the provider. (e.g. for Youtube, package_names
20693
+ # contains "com.google.android.youtube", localized_names contains "youtube", and
20694
+ # lang contains "en" from "en-US" which depends on user's setting.)
20595
20695
  # Corresponds to the JSON property `providerAnnotation`
20596
20696
  # @return [Google::Apis::ContentwarehouseV1::AssistantLogsProviderAnnotationLog]
20597
20697
  attr_accessor :provider_annotation
@@ -20821,7 +20921,7 @@ module Google
20821
20921
 
20822
20922
  # Signals to be used by the Prefulfillment Ranker. Derived from the
20823
20923
  # ParsingSignals and GroundingSignals carried by the FunctionCall. LINT.IfChange
20824
- # Next ID: 39
20924
+ # Next ID: 47
20825
20925
  class AssistantPrefulfillmentRankerPrefulfillmentSignals
20826
20926
  include Google::Apis::Core::Hashable
20827
20927
 
@@ -20878,6 +20978,13 @@ module Google
20878
20978
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerGroundingProviderFeatures]
20879
20979
  attr_accessor :grounding_provider_features
20880
20980
 
20981
+ # Whether the interpretation has a Search answer group object, signifying it
20982
+ # came from Search resolution.
20983
+ # Corresponds to the JSON property `hasAnswerGroup`
20984
+ # @return [Boolean]
20985
+ attr_accessor :has_answer_group
20986
+ alias_method :has_answer_group?, :has_answer_group
20987
+
20881
20988
  # This is a cross-intent feature which is calculated by iterating all intent
20882
20989
  # candidates. This feature should be populated in post-IG stage (before GB).
20883
20990
  # Corresponds to the JSON property `inQueryMaxEffectiveArgSpanLength`
@@ -20908,6 +21015,30 @@ module Google
20908
21015
  attr_accessor :is_feasible
20909
21016
  alias_method :is_feasible?, :is_feasible
20910
21017
 
21018
+ # Whether the intent is fully grounded.
21019
+ # Corresponds to the JSON property `isFullyGrounded`
21020
+ # @return [Boolean]
21021
+ attr_accessor :is_fully_grounded
21022
+ alias_method :is_fully_grounded?, :is_fully_grounded
21023
+
21024
+ # Whether the intent is a media control intent.
21025
+ # Corresponds to the JSON property `isMediaControlIntent`
21026
+ # @return [Boolean]
21027
+ attr_accessor :is_media_control_intent
21028
+ alias_method :is_media_control_intent?, :is_media_control_intent
21029
+
21030
+ # Whether the intent is a PlayGenericMusic-type intent.
21031
+ # Corresponds to the JSON property `isPlayGenericMusic`
21032
+ # @return [Boolean]
21033
+ attr_accessor :is_play_generic_music
21034
+ alias_method :is_play_generic_music?, :is_play_generic_music
21035
+
21036
+ # Whether the intent is a podcast intent.
21037
+ # Corresponds to the JSON property `isPodcastIntent`
21038
+ # @return [Boolean]
21039
+ attr_accessor :is_podcast_intent
21040
+ alias_method :is_podcast_intent?, :is_podcast_intent
21041
+
20911
21042
  # The rank order of the interpretation as determined by kscorer. The kscorer-
20912
21043
  # determined dominant interpretation, if any, gets a rank of 0. The remaining N
20913
21044
  # interpretations get a rank of 1 through N.
@@ -20936,6 +21067,11 @@ module Google
20936
21067
  # @return [Float]
20937
21068
  attr_accessor :max_hgr_score_across_binding_sets
20938
21069
 
21070
+ # Rank of the intent as reported by NSP.
21071
+ # Corresponds to the JSON property `nspRank`
21072
+ # @return [Fixnum]
21073
+ attr_accessor :nsp_rank
21074
+
20939
21075
  # Number of alternative hypotheses from speech recognition(S3).
20940
21076
  # Corresponds to the JSON property `numAlternativeHypothesis`
20941
21077
  # @return [Float]
@@ -20976,6 +21112,11 @@ module Google
20976
21112
  # @return [Float]
20977
21113
  attr_accessor :num_variables_grounded
20978
21114
 
21115
+ # A ID corresponding to which bucket a given parsing score belongs in.
21116
+ # Corresponds to the JSON property `parsingScoreMse8BucketId`
21117
+ # @return [Fixnum]
21118
+ attr_accessor :parsing_score_mse8_bucket_id
21119
+
20979
21120
  # Cosine similarity between predicted query-to-term model and assistant intent-
20980
21121
  # type-based salient terms. This is intended to be only used for ACE ranking and
20981
21122
  # only populated for assistant traffic.
@@ -20996,6 +21137,12 @@ module Google
20996
21137
  # @return [Float]
20997
21138
  attr_accessor :predicted_intent_confidence
20998
21139
 
21140
+ # Used in HGR to modify the ranker based on input experimental flag and intent
21141
+ # name.
21142
+ # Corresponds to the JSON property `rankerName`
21143
+ # @return [String]
21144
+ attr_accessor :ranker_name
21145
+
20999
21146
  # The determination made by the SearchDispatchingConfig as to whether and how
21000
21147
  # this interpretation should be dispatched to Search.
21001
21148
  # Corresponds to the JSON property `searchDispatch`
@@ -21030,15 +21177,21 @@ module Google
21030
21177
  @fulfillable_dominant_media = args[:fulfillable_dominant_media] if args.key?(:fulfillable_dominant_media)
21031
21178
  @groundability_score = args[:groundability_score] if args.key?(:groundability_score)
21032
21179
  @grounding_provider_features = args[:grounding_provider_features] if args.key?(:grounding_provider_features)
21180
+ @has_answer_group = args[:has_answer_group] if args.key?(:has_answer_group)
21033
21181
  @in_query_max_effective_arg_span_length = args[:in_query_max_effective_arg_span_length] if args.key?(:in_query_max_effective_arg_span_length)
21034
21182
  @intent_name = args[:intent_name] if args.key?(:intent_name)
21035
21183
  @intent_name_auis_score = args[:intent_name_auis_score] if args.key?(:intent_name_auis_score)
21036
21184
  @intent_name_auis_score_exp = args[:intent_name_auis_score_exp] if args.key?(:intent_name_auis_score_exp)
21037
21185
  @is_feasible = args[:is_feasible] if args.key?(:is_feasible)
21186
+ @is_fully_grounded = args[:is_fully_grounded] if args.key?(:is_fully_grounded)
21187
+ @is_media_control_intent = args[:is_media_control_intent] if args.key?(:is_media_control_intent)
21188
+ @is_play_generic_music = args[:is_play_generic_music] if args.key?(:is_play_generic_music)
21189
+ @is_podcast_intent = args[:is_podcast_intent] if args.key?(:is_podcast_intent)
21038
21190
  @kscorer_rank = args[:kscorer_rank] if args.key?(:kscorer_rank)
21039
21191
  @laa_features = args[:laa_features] if args.key?(:laa_features)
21040
21192
  @mask_candidate_level_features = args[:mask_candidate_level_features] if args.key?(:mask_candidate_level_features)
21041
21193
  @max_hgr_score_across_binding_sets = args[:max_hgr_score_across_binding_sets] if args.key?(:max_hgr_score_across_binding_sets)
21194
+ @nsp_rank = args[:nsp_rank] if args.key?(:nsp_rank)
21042
21195
  @num_alternative_hypothesis = args[:num_alternative_hypothesis] if args.key?(:num_alternative_hypothesis)
21043
21196
  @num_constraints = args[:num_constraints] if args.key?(:num_constraints)
21044
21197
  @num_constraints_satisfied = args[:num_constraints_satisfied] if args.key?(:num_constraints_satisfied)
@@ -21046,9 +21199,11 @@ module Google
21046
21199
  @num_grounded_args = args[:num_grounded_args] if args.key?(:num_grounded_args)
21047
21200
  @num_variables = args[:num_variables] if args.key?(:num_variables)
21048
21201
  @num_variables_grounded = args[:num_variables_grounded] if args.key?(:num_variables_grounded)
21202
+ @parsing_score_mse8_bucket_id = args[:parsing_score_mse8_bucket_id] if args.key?(:parsing_score_mse8_bucket_id)
21049
21203
  @pq2t_vs_assistant_ibst_cosine = args[:pq2t_vs_assistant_ibst_cosine] if args.key?(:pq2t_vs_assistant_ibst_cosine)
21050
21204
  @pq2t_vs_ibst_cosine = args[:pq2t_vs_ibst_cosine] if args.key?(:pq2t_vs_ibst_cosine)
21051
21205
  @predicted_intent_confidence = args[:predicted_intent_confidence] if args.key?(:predicted_intent_confidence)
21206
+ @ranker_name = args[:ranker_name] if args.key?(:ranker_name)
21052
21207
  @search_dispatch = args[:search_dispatch] if args.key?(:search_dispatch)
21053
21208
  @top_hypothesis_confidence = args[:top_hypothesis_confidence] if args.key?(:top_hypothesis_confidence)
21054
21209
  @vertical_confidence_score = args[:vertical_confidence_score] if args.key?(:vertical_confidence_score)
@@ -24683,11 +24838,6 @@ module Google
24683
24838
  # @return [Google::Apis::ContentwarehouseV1::QualityTimebasedLastSignificantUpdate]
24684
24839
  attr_accessor :last_significant_update
24685
24840
 
24686
- #
24687
- # Corresponds to the JSON property `oldnessInfo`
24688
- # @return [Google::Apis::ContentwarehouseV1::QualityTimebasedOldnessInfo]
24689
- attr_accessor :oldness_info
24690
-
24691
24841
  #
24692
24842
  # Corresponds to the JSON property `pagetype`
24693
24843
  # @return [Google::Apis::ContentwarehouseV1::QualityTimebasedPageType]
@@ -24700,7 +24850,6 @@ module Google
24700
24850
  # Update properties of this object
24701
24851
  def update!(**args)
24702
24852
  @last_significant_update = args[:last_significant_update] if args.key?(:last_significant_update)
24703
- @oldness_info = args[:oldness_info] if args.key?(:oldness_info)
24704
24853
  @pagetype = args[:pagetype] if args.key?(:pagetype)
24705
24854
  end
24706
24855
  end
@@ -24731,7 +24880,7 @@ module Google
24731
24880
  # Mustang and TeraGoogle. For TeraGoogle, this message is included in perdocdata
24732
24881
  # which means it can be used in preliminary scoring. CAREFUL: For TeraGoogle,
24733
24882
  # this data resides in very limited serving memory (Flash storage) for a huge
24734
- # number of documents. Next id: 40
24883
+ # number of documents. Next id: 42
24735
24884
  class CompressedQualitySignals
24736
24885
  include Google::Apis::Core::Hashable
24737
24886
 
@@ -24918,6 +25067,18 @@ module Google
24918
25067
  # @return [Fixnum]
24919
25068
  attr_accessor :product_review_p_promote_site
24920
25069
 
25070
+ # Fields product_review_p_review_page and product_review_p_uhq_page are for
25071
+ # promoting/demoting HQ/LQ review pages in NGS. See go/pr-boosts for details.
25072
+ # The possibility of a page being a review page.
25073
+ # Corresponds to the JSON property `productReviewPReviewPage`
25074
+ # @return [Fixnum]
25075
+ attr_accessor :product_review_p_review_page
25076
+
25077
+ # The possibility of a page being a high quality review page.
25078
+ # Corresponds to the JSON property `productReviewPUhqPage`
25079
+ # @return [Fixnum]
25080
+ attr_accessor :product_review_p_uhq_page
25081
+
24921
25082
  # Scam model score. Used as one of the web page quality qstar signals. Value
24922
25083
  # range from 0 to 1023.
24923
25084
  # Corresponds to the JSON property `scamness`
@@ -24985,6 +25146,8 @@ module Google
24985
25146
  @product_review_p_demote_site = args[:product_review_p_demote_site] if args.key?(:product_review_p_demote_site)
24986
25147
  @product_review_p_promote_page = args[:product_review_p_promote_page] if args.key?(:product_review_p_promote_page)
24987
25148
  @product_review_p_promote_site = args[:product_review_p_promote_site] if args.key?(:product_review_p_promote_site)
25149
+ @product_review_p_review_page = args[:product_review_p_review_page] if args.key?(:product_review_p_review_page)
25150
+ @product_review_p_uhq_page = args[:product_review_p_uhq_page] if args.key?(:product_review_p_uhq_page)
24988
25151
  @scamness = args[:scamness] if args.key?(:scamness)
24989
25152
  @serp_demotion = args[:serp_demotion] if args.key?(:serp_demotion)
24990
25153
  @site_authority = args[:site_authority] if args.key?(:site_authority)
@@ -31304,7 +31467,14 @@ module Google
31304
31467
  # @return [String]
31305
31468
  attr_accessor :release
31306
31469
 
31307
- # The release date of this data.
31470
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
31471
+ # time type. Direct usage is error-prone due to the conflation of physical time
31472
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
31473
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
31474
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
31475
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
31476
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
31477
+ # conversion functions between DateTimeProto and Abseil's civil time types.
31308
31478
  # Corresponds to the JSON property `releaseDate`
31309
31479
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
31310
31480
  attr_accessor :release_date
@@ -31339,7 +31509,14 @@ module Google
31339
31509
  end
31340
31510
  end
31341
31511
 
31342
- #
31512
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
31513
+ # time type. Direct usage is error-prone due to the conflation of physical time
31514
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
31515
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
31516
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
31517
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
31518
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
31519
+ # conversion functions between DateTimeProto and Abseil's civil time types.
31343
31520
  class GeostoreDateTimeProto
31344
31521
  include Google::Apis::Core::Hashable
31345
31522
 
@@ -31826,12 +32003,26 @@ module Google
31826
32003
  attr_accessor :closed
31827
32004
  alias_method :closed?, :closed
31828
32005
 
31829
- # RESERVED
32006
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
32007
+ # time type. Direct usage is error-prone due to the conflation of physical time
32008
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
32009
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
32010
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
32011
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
32012
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
32013
+ # conversion functions between DateTimeProto and Abseil's civil time types.
31830
32014
  # Corresponds to the JSON property `endAsOfDate`
31831
32015
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
31832
32016
  attr_accessor :end_as_of_date
31833
32017
 
31834
- #
32018
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
32019
+ # time type. Direct usage is error-prone due to the conflation of physical time
32020
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
32021
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
32022
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
32023
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
32024
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
32025
+ # conversion functions between DateTimeProto and Abseil's civil time types.
31835
32026
  # Corresponds to the JSON property `endDate`
31836
32027
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
31837
32028
  attr_accessor :end_date
@@ -31864,15 +32055,14 @@ module Google
31864
32055
  # @return [String]
31865
32056
  attr_accessor :removed_reason
31866
32057
 
31867
- # (Initial) opening and (permanent) closing dates of the establishment, such
31868
- # that start_date is the first day open and end_date is the first day closed.
31869
- # The only allowed precisions are PRECISION_DAY, PRECISION_MONTH, PRECISION_YEAR.
31870
- # DateTimeProto.seconds should have the lowest legal value for the desired date/
31871
- # time and precision. E.g. for PRECISION_MONTH, 2019-02-15 21:10:30 is not valid,
31872
- # it should be 2019-02-01 00:00:00 instead. NOTE: The start_date and end_date
31873
- # are stored in UTC but should be interpreted as being in the local timezone. So
31874
- # clients should convert the DateTimeProto to local (civil) time using UTC+0,
31875
- # and then treat the result as local to the feature.
32058
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
32059
+ # time type. Direct usage is error-prone due to the conflation of physical time
32060
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
32061
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
32062
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
32063
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
32064
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
32065
+ # conversion functions between DateTimeProto and Abseil's civil time types.
31876
32066
  # Corresponds to the JSON property `startDate`
31877
32067
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
31878
32068
  attr_accessor :start_date
@@ -32581,10 +32771,16 @@ module Google
32581
32771
  # @return [Google::Apis::ContentwarehouseV1::GeostoreFeatureIdProto]
32582
32772
  attr_accessor :id
32583
32773
 
32584
- # Inferred geometry defines the geometry of a feature through the geometry of
32585
- # other features. For instance, the geometry of a timezone can be specified as
32586
- # the union of all the countries it applies to. See: go/inferred-geometry and go/
32587
- # geo-schema:composite-geometry-editor for more details.
32774
+ # Inferred geometry defines the geometry of a feature as the union or exclusion
32775
+ # of the geometry of other features. For instance, the geometry of a timezone
32776
+ # can be specified as the union of all the countries it applies to. In this
32777
+ # scenario, the timezone will can be considered a "composite feature", while the
32778
+ # countries are its "composing features". A composite feature must have a
32779
+ # bidirectional reference between itself and all its composing features. A
32780
+ # composite feature refers to its composing features via `geometry_composition`,
32781
+ # while the composing features must refer back to the composing feature via `
32782
+ # defines_geometry_for`. See: go/inferred-geometry and go/geo-schema:composite-
32783
+ # geometry-editor for more details.
32588
32784
  # Corresponds to the JSON property `inferredGeometry`
32589
32785
  # @return [Google::Apis::ContentwarehouseV1::GeostoreInferredGeometryProto]
32590
32786
  attr_accessor :inferred_geometry
@@ -32822,9 +33018,9 @@ module Google
32822
33018
  # loops defining multiple disconnected regions possibly with holes. All loops
32823
33019
  # should be oriented CCW around the region they define. This applies to the
32824
33020
  # exterior loop(s) as well as any holes. Within MapFacts (and underlying
32825
- # infrastructure) the data fields may be replaced by a single shape_id; see
32826
- # comments on shape_id below. Any such PolygonProtos shouldn't be expected to
32827
- # work with public functions in //geostore/base/public/polygon.h.
33021
+ # infrastructure) the data fields may be replaced by a single shape_id stored in
33022
+ # internal_feature. Any such PolygonProtos shouldn't be expected to work with
33023
+ # public functions in //geostore/base/public/polygon.h.
32828
33024
  # Corresponds to the JSON property `polygonForDisplay`
32829
33025
  # @return [Google::Apis::ContentwarehouseV1::GeostorePolygonProto]
32830
33026
  attr_accessor :polygon_for_display
@@ -33054,7 +33250,7 @@ module Google
33054
33250
  # @return [Google::Apis::ContentwarehouseV1::GeostoreExistenceProto]
33055
33251
  attr_accessor :status
33056
33252
 
33057
- # Represents information about the store front geoemtry. Only
33253
+ # Represents information about the store front geometry. Only
33058
33254
  # TYPE_ESTABLISHMENT_POI should have this field set.
33059
33255
  # Corresponds to the JSON property `storefrontGeometry`
33060
33256
  # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreAnchoredGeometryProto>]
@@ -33147,9 +33343,9 @@ module Google
33147
33343
  # loops defining multiple disconnected regions possibly with holes. All loops
33148
33344
  # should be oriented CCW around the region they define. This applies to the
33149
33345
  # exterior loop(s) as well as any holes. Within MapFacts (and underlying
33150
- # infrastructure) the data fields may be replaced by a single shape_id; see
33151
- # comments on shape_id below. Any such PolygonProtos shouldn't be expected to
33152
- # work with public functions in //geostore/base/public/polygon.h.
33346
+ # infrastructure) the data fields may be replaced by a single shape_id stored in
33347
+ # internal_feature. Any such PolygonProtos shouldn't be expected to work with
33348
+ # public functions in //geostore/base/public/polygon.h.
33153
33349
  # Corresponds to the JSON property `waterRemovedPolygon`
33154
33350
  # @return [Google::Apis::ContentwarehouseV1::GeostorePolygonProto]
33155
33351
  attr_accessor :water_removed_polygon
@@ -33307,7 +33503,7 @@ module Google
33307
33503
 
33308
33504
  # Proto used to represent rights for a field type. See go/geo-rights for more
33309
33505
  # details. NOTE: Use google3/geostore/provenance/public/rights.h or google3/java/
33310
- # com/google/geostore/provenance/rights/Rights.swig instead of accessing this
33506
+ # com/google/geostore/provenance/rights/Rights.java instead of accessing this
33311
33507
  # proto directly.
33312
33508
  class GeostoreFieldWithRightsProto
33313
33509
  include Google::Apis::Core::Hashable
@@ -33624,9 +33820,9 @@ module Google
33624
33820
  # loops defining multiple disconnected regions possibly with holes. All loops
33625
33821
  # should be oriented CCW around the region they define. This applies to the
33626
33822
  # exterior loop(s) as well as any holes. Within MapFacts (and underlying
33627
- # infrastructure) the data fields may be replaced by a single shape_id; see
33628
- # comments on shape_id below. Any such PolygonProtos shouldn't be expected to
33629
- # work with public functions in //geostore/base/public/polygon.h.
33823
+ # infrastructure) the data fields may be replaced by a single shape_id stored in
33824
+ # internal_feature. Any such PolygonProtos shouldn't be expected to work with
33825
+ # public functions in //geostore/base/public/polygon.h.
33630
33826
  # Corresponds to the JSON property `restOfWorldPolygon`
33631
33827
  # @return [Google::Apis::ContentwarehouseV1::GeostorePolygonProto]
33632
33828
  attr_accessor :rest_of_world_polygon
@@ -33635,9 +33831,9 @@ module Google
33635
33831
  # loops defining multiple disconnected regions possibly with holes. All loops
33636
33832
  # should be oriented CCW around the region they define. This applies to the
33637
33833
  # exterior loop(s) as well as any holes. Within MapFacts (and underlying
33638
- # infrastructure) the data fields may be replaced by a single shape_id; see
33639
- # comments on shape_id below. Any such PolygonProtos shouldn't be expected to
33640
- # work with public functions in //geostore/base/public/polygon.h.
33834
+ # infrastructure) the data fields may be replaced by a single shape_id stored in
33835
+ # internal_feature. Any such PolygonProtos shouldn't be expected to work with
33836
+ # public functions in //geostore/base/public/polygon.h.
33641
33837
  # Corresponds to the JSON property `selfPolygon`
33642
33838
  # @return [Google::Apis::ContentwarehouseV1::GeostorePolygonProto]
33643
33839
  attr_accessor :self_polygon
@@ -33726,10 +33922,16 @@ module Google
33726
33922
  end
33727
33923
  end
33728
33924
 
33729
- # Inferred geometry defines the geometry of a feature through the geometry of
33730
- # other features. For instance, the geometry of a timezone can be specified as
33731
- # the union of all the countries it applies to. See: go/inferred-geometry and go/
33732
- # geo-schema:composite-geometry-editor for more details.
33925
+ # Inferred geometry defines the geometry of a feature as the union or exclusion
33926
+ # of the geometry of other features. For instance, the geometry of a timezone
33927
+ # can be specified as the union of all the countries it applies to. In this
33928
+ # scenario, the timezone will can be considered a "composite feature", while the
33929
+ # countries are its "composing features". A composite feature must have a
33930
+ # bidirectional reference between itself and all its composing features. A
33931
+ # composite feature refers to its composing features via `geometry_composition`,
33932
+ # while the composing features must refer back to the composing feature via `
33933
+ # defines_geometry_for`. See: go/inferred-geometry and go/geo-schema:composite-
33934
+ # geometry-editor for more details.
33733
33935
  class GeostoreInferredGeometryProto
33734
33936
  include Google::Apis::Core::Hashable
33735
33937
 
@@ -33776,7 +33978,7 @@ module Google
33776
33978
 
33777
33979
  # Proto used to represent rights for FeatureProto. See go/geo-rights for more
33778
33980
  # details. NOTE: Use google3/geostore/provenance/public/rights.h or google3/java/
33779
- # com/google/geostore/provenance/rights/Rights.swig instead of accessing this
33981
+ # com/google/geostore/provenance/rights/Rights.java instead of accessing this
33780
33982
  # proto directly.
33781
33983
  # Corresponds to the JSON property `rightsStatus`
33782
33984
  # @return [Google::Apis::ContentwarehouseV1::GeostoreRightsStatusProto]
@@ -34530,6 +34732,14 @@ module Google
34530
34732
  # @return [Google::Apis::ContentwarehouseV1::GeostoreFeatureIdProto]
34531
34733
  attr_accessor :segment
34532
34734
 
34735
+ # The inverse of the primary connection bit that provides a hint that this
34736
+ # connection is part of a merge and a vehicle following this connection should
34737
+ # yield to vehicles following other incoming connections.
34738
+ # Corresponds to the JSON property `yieldToOtherConnections`
34739
+ # @return [Boolean]
34740
+ attr_accessor :yield_to_other_connections
34741
+ alias_method :yield_to_other_connections?, :yield_to_other_connections
34742
+
34533
34743
  def initialize(**args)
34534
34744
  update!(**args)
34535
34745
  end
@@ -34543,6 +34753,7 @@ module Google
34543
34753
  @lane_number = args[:lane_number] if args.key?(:lane_number)
34544
34754
  @primary_connection = args[:primary_connection] if args.key?(:primary_connection)
34545
34755
  @segment = args[:segment] if args.key?(:segment)
34756
+ @yield_to_other_connections = args[:yield_to_other_connections] if args.key?(:yield_to_other_connections)
34546
34757
  end
34547
34758
  end
34548
34759
 
@@ -35646,9 +35857,9 @@ module Google
35646
35857
  # loops defining multiple disconnected regions possibly with holes. All loops
35647
35858
  # should be oriented CCW around the region they define. This applies to the
35648
35859
  # exterior loop(s) as well as any holes. Within MapFacts (and underlying
35649
- # infrastructure) the data fields may be replaced by a single shape_id; see
35650
- # comments on shape_id below. Any such PolygonProtos shouldn't be expected to
35651
- # work with public functions in //geostore/base/public/polygon.h.
35860
+ # infrastructure) the data fields may be replaced by a single shape_id stored in
35861
+ # internal_feature. Any such PolygonProtos shouldn't be expected to work with
35862
+ # public functions in //geostore/base/public/polygon.h.
35652
35863
  class GeostorePolygonProto
35653
35864
  include Google::Apis::Core::Hashable
35654
35865
 
@@ -35706,17 +35917,6 @@ module Google
35706
35917
  # @return [Google::Apis::ContentwarehouseV1::GeostoreFieldMetadataProto]
35707
35918
  attr_accessor :metadata
35708
35919
 
35709
- # A unique identifier for this polygon's data which is being held externally in
35710
- # Shapestore (see go/shapestore). This is only ever set internally within
35711
- # MapFacts or underlying infrastructure and if set is set in lieu of other
35712
- # fields. Clients of MapFacts (or anyone downstream of them) can rely on the
35713
- # guarantee that this field will never be set and that the actual data for the
35714
- # polygon will be present instead. This field has been deprecated in favor of
35715
- # FeatureProto.internal.polygon_shape_id
35716
- # Corresponds to the JSON property `shapeId`
35717
- # @return [String]
35718
- attr_accessor :shape_id
35719
-
35720
35920
  # This is proto2's version of MessageSet.
35721
35921
  # Corresponds to the JSON property `temporaryData`
35722
35922
  # @return [Google::Apis::ContentwarehouseV1::Proto2BridgeMessageSet]
@@ -35748,7 +35948,6 @@ module Google
35748
35948
  @height_meters = args[:height_meters] if args.key?(:height_meters)
35749
35949
  @loop = args[:loop] if args.key?(:loop)
35750
35950
  @metadata = args[:metadata] if args.key?(:metadata)
35751
- @shape_id = args[:shape_id] if args.key?(:shape_id)
35752
35951
  @temporary_data = args[:temporary_data] if args.key?(:temporary_data)
35753
35952
  @unsuitable_for_display = args[:unsuitable_for_display] if args.key?(:unsuitable_for_display)
35754
35953
  end
@@ -35766,7 +35965,8 @@ module Google
35766
35965
  class GeostorePoseProto
35767
35966
  include Google::Apis::Core::Hashable
35768
35967
 
35769
- # The height of the poses above the WGS-84 ellipsoid in meters.
35968
+ # The height of the pose. A positive height is above the WGS-84 ellipsoid in
35969
+ # meters; negative is below.
35770
35970
  # Corresponds to the JSON property `altitude`
35771
35971
  # @return [Float]
35772
35972
  attr_accessor :altitude
@@ -36868,7 +37068,7 @@ module Google
36868
37068
 
36869
37069
  # Proto used to represent rights for FeatureProto. See go/geo-rights for more
36870
37070
  # details. NOTE: Use google3/geostore/provenance/public/rights.h or google3/java/
36871
- # com/google/geostore/provenance/rights/Rights.swig instead of accessing this
37071
+ # com/google/geostore/provenance/rights/Rights.java instead of accessing this
36872
37072
  # proto directly.
36873
37073
  class GeostoreRightsStatusProto
36874
37074
  include Google::Apis::Core::Hashable
@@ -37282,12 +37482,26 @@ module Google
37282
37482
  # @return [Google::Apis::ContentwarehouseV1::GeostoreFieldMetadataProto]
37283
37483
  attr_accessor :condition_metadata
37284
37484
 
37285
- # If known, the date that construction is scheduled to begin.
37485
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
37486
+ # time type. Direct usage is error-prone due to the conflation of physical time
37487
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
37488
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
37489
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
37490
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
37491
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
37492
+ # conversion functions between DateTimeProto and Abseil's civil time types.
37286
37493
  # Corresponds to the JSON property `constructionBeginDate`
37287
37494
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
37288
37495
  attr_accessor :construction_begin_date
37289
37496
 
37290
- # If known, the date that construction is scheduled to end.
37497
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
37498
+ # time type. Direct usage is error-prone due to the conflation of physical time
37499
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
37500
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
37501
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
37502
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
37503
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
37504
+ # conversion functions between DateTimeProto and Abseil's civil time types.
37291
37505
  # Corresponds to the JSON property `constructionEndDate`
37292
37506
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
37293
37507
  attr_accessor :construction_end_date
@@ -37590,9 +37804,13 @@ module Google
37590
37804
  # @return [Google::Apis::ContentwarehouseV1::GeostoreFeatureIdProto]
37591
37805
  attr_accessor :sibling
37592
37806
 
37807
+ # RESERVED
37808
+ # Corresponds to the JSON property `slope`
37809
+ # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreSlopeProto>]
37810
+ attr_accessor :slope
37811
+
37593
37812
  # clang-format on LINT.ThenChange(//depot/google3/geostore/base/proto/lane.proto)
37594
- # If this option is missing it means that the surface is unknown. Specific
37595
- # lanes may override this segment-level surface type.
37813
+ # Specific lanes may override this segment-level surface type.
37596
37814
  # Corresponds to the JSON property `surface`
37597
37815
  # @return [String]
37598
37816
  attr_accessor :surface
@@ -37685,6 +37903,7 @@ module Google
37685
37903
  @route_association = args[:route_association] if args.key?(:route_association)
37686
37904
  @separated_roadways = args[:separated_roadways] if args.key?(:separated_roadways)
37687
37905
  @sibling = args[:sibling] if args.key?(:sibling)
37906
+ @slope = args[:slope] if args.key?(:slope)
37688
37907
  @surface = args[:surface] if args.key?(:surface)
37689
37908
  @surface_metadata = args[:surface_metadata] if args.key?(:surface_metadata)
37690
37909
  @sweep = args[:sweep] if args.key?(:sweep)
@@ -37832,6 +38051,34 @@ module Google
37832
38051
  end
37833
38052
  end
37834
38053
 
38054
+ #
38055
+ class GeostoreSlopeProto
38056
+ include Google::Apis::Core::Hashable
38057
+
38058
+ # Slope value as elevation change divided by horizontal distance, in the format
38059
+ # of decimal, e.g., ‘0.1234’ means a 12.34% slope. If a slope_value is unset, it
38060
+ # indicates we don’t have enough information to compute slope at this location.
38061
+ # Corresponds to the JSON property `slopeValue`
38062
+ # @return [Float]
38063
+ attr_accessor :slope_value
38064
+
38065
+ # Indicates how far along the segment this slope value starts to apply, in the
38066
+ # format of decimal between 0 and 1.
38067
+ # Corresponds to the JSON property `startPointFraction`
38068
+ # @return [Float]
38069
+ attr_accessor :start_point_fraction
38070
+
38071
+ def initialize(**args)
38072
+ update!(**args)
38073
+ end
38074
+
38075
+ # Update properties of this object
38076
+ def update!(**args)
38077
+ @slope_value = args[:slope_value] if args.key?(:slope_value)
38078
+ @start_point_fraction = args[:start_point_fraction] if args.key?(:start_point_fraction)
38079
+ end
38080
+ end
38081
+
37835
38082
  # MapFacts GAIA ID assigned to this feature. These values are virtual GAIA IDs
37836
38083
  # from MapFacts, and as such are not stored in Focus.
37837
38084
  class GeostoreSocialReferenceProto
@@ -37887,9 +38134,14 @@ module Google
37887
38134
  # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreUrlProto>]
37888
38135
  attr_accessor :attribution_url
37889
38136
 
37890
- # The time that this particular piece of data was collected. If different
37891
- # attributes were collected on different dates, this is the date of the most
37892
- # recent edit.
38137
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
38138
+ # time type. Direct usage is error-prone due to the conflation of physical time
38139
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
38140
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
38141
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
38142
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
38143
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
38144
+ # conversion functions between DateTimeProto and Abseil's civil time types.
37893
38145
  # Corresponds to the JSON property `collectionDate`
37894
38146
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
37895
38147
  attr_accessor :collection_date
@@ -38063,6 +38315,11 @@ module Google
38063
38315
  # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreRoadConditionalProto>]
38064
38316
  attr_accessor :condition
38065
38317
 
38318
+ # The source of the speed limit.
38319
+ # Corresponds to the JSON property `sourceType`
38320
+ # @return [String]
38321
+ attr_accessor :source_type
38322
+
38066
38323
  # A speed value and unit.
38067
38324
  # Corresponds to the JSON property `speedWithUnit`
38068
38325
  # @return [Google::Apis::ContentwarehouseV1::GeostoreSpeedProto]
@@ -38088,6 +38345,7 @@ module Google
38088
38345
  def update!(**args)
38089
38346
  @category = args[:category] if args.key?(:category)
38090
38347
  @condition = args[:condition] if args.key?(:condition)
38348
+ @source_type = args[:source_type] if args.key?(:source_type)
38091
38349
  @speed_with_unit = args[:speed_with_unit] if args.key?(:speed_with_unit)
38092
38350
  @unlimited_speed = args[:unlimited_speed] if args.key?(:unlimited_speed)
38093
38351
  @variable_speed = args[:variable_speed] if args.key?(:variable_speed)
@@ -38098,12 +38356,12 @@ module Google
38098
38356
  class GeostoreSpeedProto
38099
38357
  include Google::Apis::Core::Hashable
38100
38358
 
38101
- #
38359
+ # All speed values are stored in kilometers per hour.
38102
38360
  # Corresponds to the JSON property `speed`
38103
38361
  # @return [Float]
38104
38362
  attr_accessor :speed
38105
38363
 
38106
- #
38364
+ # Mapfacts only allows unit to be KILOMETERS_PER_HOUR.
38107
38365
  # Corresponds to the JSON property `unit`
38108
38366
  # @return [String]
38109
38367
  attr_accessor :unit
@@ -38216,9 +38474,9 @@ module Google
38216
38474
  # loops defining multiple disconnected regions possibly with holes. All loops
38217
38475
  # should be oriented CCW around the region they define. This applies to the
38218
38476
  # exterior loop(s) as well as any holes. Within MapFacts (and underlying
38219
- # infrastructure) the data fields may be replaced by a single shape_id; see
38220
- # comments on shape_id below. Any such PolygonProtos shouldn't be expected to
38221
- # work with public functions in //geostore/base/public/polygon.h.
38477
+ # infrastructure) the data fields may be replaced by a single shape_id stored in
38478
+ # internal_feature. Any such PolygonProtos shouldn't be expected to work with
38479
+ # public functions in //geostore/base/public/polygon.h.
38222
38480
  # Corresponds to the JSON property `polygon`
38223
38481
  # @return [Google::Apis::ContentwarehouseV1::GeostorePolygonProto]
38224
38482
  attr_accessor :polygon
@@ -38355,24 +38613,50 @@ module Google
38355
38613
  class GeostoreTemporaryClosureProto
38356
38614
  include Google::Apis::Core::Hashable
38357
38615
 
38358
- # The latest when this closure may end, if the exact date is unknown. If set,
38359
- # the feature is operational again no later than this date.
38616
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
38617
+ # time type. Direct usage is error-prone due to the conflation of physical time
38618
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
38619
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
38620
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
38621
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
38622
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
38623
+ # conversion functions between DateTimeProto and Abseil's civil time types.
38360
38624
  # Corresponds to the JSON property `endAsOfDate`
38361
38625
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
38362
38626
  attr_accessor :end_as_of_date
38363
38627
 
38364
- # RESERVED
38628
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
38629
+ # time type. Direct usage is error-prone due to the conflation of physical time
38630
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
38631
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
38632
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
38633
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
38634
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
38635
+ # conversion functions between DateTimeProto and Abseil's civil time types.
38365
38636
  # Corresponds to the JSON property `endDate`
38366
38637
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
38367
38638
  attr_accessor :end_date
38368
38639
 
38369
- # The latest when this closure may start, if the exact date is unknown. If set,
38370
- # the feature is temporarily closed starting no later than this date.
38640
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
38641
+ # time type. Direct usage is error-prone due to the conflation of physical time
38642
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
38643
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
38644
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
38645
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
38646
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
38647
+ # conversion functions between DateTimeProto and Abseil's civil time types.
38371
38648
  # Corresponds to the JSON property `startAsOfDate`
38372
38649
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
38373
38650
  attr_accessor :start_as_of_date
38374
38651
 
38375
- # RESERVED
38652
+ # WARNING: Outside of FeatureProto, please avoid in favor of a standard civil
38653
+ # time type. Direct usage is error-prone due to the conflation of physical time
38654
+ # and civil time (go/httat). In a protocol buffer, please use google.type.Date,
38655
+ # with an additional google.type.TimeOfDay for precision finer-grained than a
38656
+ # day. (For google.type.DateTime, go/prototime#types cites go/httat#
38657
+ # zoned_datetime as a caveat). In a programming language, see go/time-devguide/
38658
+ # languages. Additionally in C++, google3/geostore/base/public/datetime.h has
38659
+ # conversion functions between DateTimeProto and Abseil's civil time types.
38376
38660
  # Corresponds to the JSON property `startDate`
38377
38661
  # @return [Google::Apis::ContentwarehouseV1::GeostoreDateTimeProto]
38378
38662
  attr_accessor :start_date
@@ -41746,11 +42030,6 @@ module Google
41746
42030
  class GoogleAssistantAccessoryV1DeviceConfig
41747
42031
  include Google::Apis::Core::Hashable
41748
42032
 
41749
- # Contains fields to identify the device which sent the request.
41750
- # Corresponds to the JSON property `deviceBuild`
41751
- # @return [Google::Apis::ContentwarehouseV1::GoogleAssistantEmbeddedV1DeviceBuild]
41752
- attr_accessor :device_build
41753
-
41754
42033
  # Device model capabilities override from client.
41755
42034
  # Corresponds to the JSON property `deviceModelCapabilitiesOverride`
41756
42035
  # @return [Google::Apis::ContentwarehouseV1::GoogleAssistantEmbeddedV1DeviceModelCapabilitiesOverride]
@@ -41762,15 +42041,20 @@ module Google
41762
42041
  # @return [String]
41763
42042
  attr_accessor :heterodyne_token
41764
42043
 
42044
+ # Contains fields to identify the device which sent the request.
42045
+ # Corresponds to the JSON property `surfaceIdentity`
42046
+ # @return [Google::Apis::ContentwarehouseV1::GoogleAssistantEmbeddedV1SurfaceIdentity]
42047
+ attr_accessor :surface_identity
42048
+
41765
42049
  def initialize(**args)
41766
42050
  update!(**args)
41767
42051
  end
41768
42052
 
41769
42053
  # Update properties of this object
41770
42054
  def update!(**args)
41771
- @device_build = args[:device_build] if args.key?(:device_build)
41772
42055
  @device_model_capabilities_override = args[:device_model_capabilities_override] if args.key?(:device_model_capabilities_override)
41773
42056
  @heterodyne_token = args[:heterodyne_token] if args.key?(:heterodyne_token)
42057
+ @surface_identity = args[:surface_identity] if args.key?(:surface_identity)
41774
42058
  end
41775
42059
  end
41776
42060
 
@@ -42120,25 +42404,6 @@ module Google
42120
42404
  end
42121
42405
  end
42122
42406
 
42123
- # Contains fields to identify the device which sent the request.
42124
- class GoogleAssistantEmbeddedV1DeviceBuild
42125
- include Google::Apis::Core::Hashable
42126
-
42127
- # * Fully formed user agent suffix string.
42128
- # Corresponds to the JSON property `userAgentSuffix`
42129
- # @return [String]
42130
- attr_accessor :user_agent_suffix
42131
-
42132
- def initialize(**args)
42133
- update!(**args)
42134
- end
42135
-
42136
- # Update properties of this object
42137
- def update!(**args)
42138
- @user_agent_suffix = args[:user_agent_suffix] if args.key?(:user_agent_suffix)
42139
- end
42140
- end
42141
-
42142
42407
  # Device model capabilities override from client.
42143
42408
  class GoogleAssistantEmbeddedV1DeviceModelCapabilitiesOverride
42144
42409
  include Google::Apis::Core::Hashable
@@ -42239,6 +42504,31 @@ module Google
42239
42504
  end
42240
42505
  end
42241
42506
 
42507
+ # Contains fields to identify the device which sent the request.
42508
+ class GoogleAssistantEmbeddedV1SurfaceIdentity
42509
+ include Google::Apis::Core::Hashable
42510
+
42511
+ # Surface type that the device identifies as.
42512
+ # Corresponds to the JSON property `surfaceType`
42513
+ # @return [String]
42514
+ attr_accessor :surface_type
42515
+
42516
+ # * Fully formed user agent suffix string.
42517
+ # Corresponds to the JSON property `userAgentSuffix`
42518
+ # @return [String]
42519
+ attr_accessor :user_agent_suffix
42520
+
42521
+ def initialize(**args)
42522
+ update!(**args)
42523
+ end
42524
+
42525
+ # Update properties of this object
42526
+ def update!(**args)
42527
+ @surface_type = args[:surface_type] if args.key?(:surface_type)
42528
+ @user_agent_suffix = args[:user_agent_suffix] if args.key?(:user_agent_suffix)
42529
+ end
42530
+ end
42531
+
42242
42532
  # Conceptually, timers are clocks that count down from an initial duration and
42243
42533
  # ring when they reach 0. In practice, as a timer is running, it holds a stable
42244
42534
  # expiration time and computes the remaining duration using the current time.
@@ -42650,6 +42940,11 @@ module Google
42650
42940
  # @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1Document]
42651
42941
  attr_accessor :document
42652
42942
 
42943
+ # post-processing LROs
42944
+ # Corresponds to the JSON property `longRunningOperations`
42945
+ # @return [Array<Google::Apis::ContentwarehouseV1::GoogleLongrunningOperation>]
42946
+ attr_accessor :long_running_operations
42947
+
42653
42948
  # Additional information returned to client, such as debugging information.
42654
42949
  # Corresponds to the JSON property `metadata`
42655
42950
  # @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ResponseMetadata]
@@ -42667,6 +42962,7 @@ module Google
42667
42962
  # Update properties of this object
42668
42963
  def update!(**args)
42669
42964
  @document = args[:document] if args.key?(:document)
42965
+ @long_running_operations = args[:long_running_operations] if args.key?(:long_running_operations)
42670
42966
  @metadata = args[:metadata] if args.key?(:metadata)
42671
42967
  @rule_engine_output = args[:rule_engine_output] if args.key?(:rule_engine_output)
42672
42968
  end
@@ -42692,6 +42988,74 @@ module Google
42692
42988
  end
42693
42989
  end
42694
42990
 
42991
+ # Describes a data export job.
42992
+ class GoogleCloudContentwarehouseV1DataExportJob
42993
+ include Google::Apis::Core::Hashable
42994
+
42995
+ # The create time of the job.
42996
+ # Corresponds to the JSON property `createTime`
42997
+ # @return [String]
42998
+ attr_accessor :create_time
42999
+
43000
+ # BigQuery dataset name.
43001
+ # Corresponds to the JSON property `dataset`
43002
+ # @return [String]
43003
+ attr_accessor :dataset
43004
+
43005
+ # Frequency of the data export job.
43006
+ # Corresponds to the JSON property `frequency`
43007
+ # @return [String]
43008
+ attr_accessor :frequency
43009
+
43010
+ # The data export job ID.
43011
+ # Corresponds to the JSON property `id`
43012
+ # @return [String]
43013
+ attr_accessor :id
43014
+
43015
+ # Location of document warehouse API.
43016
+ # Corresponds to the JSON property `location`
43017
+ # @return [String]
43018
+ attr_accessor :location
43019
+
43020
+ # User project number. The project should have document warehouse API enabled.
43021
+ # The BigQuery database should also be in the same project.
43022
+ # Corresponds to the JSON property `projectNumber`
43023
+ # @return [Fixnum]
43024
+ attr_accessor :project_number
43025
+
43026
+ # The current state of the data export job.
43027
+ # Corresponds to the JSON property `state`
43028
+ # @return [String]
43029
+ attr_accessor :state
43030
+
43031
+ # BigQuery table name.
43032
+ # Corresponds to the JSON property `table`
43033
+ # @return [String]
43034
+ attr_accessor :table
43035
+
43036
+ # The last update time of the job.
43037
+ # Corresponds to the JSON property `updateTime`
43038
+ # @return [String]
43039
+ attr_accessor :update_time
43040
+
43041
+ def initialize(**args)
43042
+ update!(**args)
43043
+ end
43044
+
43045
+ # Update properties of this object
43046
+ def update!(**args)
43047
+ @create_time = args[:create_time] if args.key?(:create_time)
43048
+ @dataset = args[:dataset] if args.key?(:dataset)
43049
+ @frequency = args[:frequency] if args.key?(:frequency)
43050
+ @id = args[:id] if args.key?(:id)
43051
+ @location = args[:location] if args.key?(:location)
43052
+ @project_number = args[:project_number] if args.key?(:project_number)
43053
+ @state = args[:state] if args.key?(:state)
43054
+ @table = args[:table] if args.key?(:table)
43055
+ @update_time = args[:update_time] if args.key?(:update_time)
43056
+ end
43057
+ end
43058
+
42695
43059
  # Represents the action responsible for properties update operations.
42696
43060
  class GoogleCloudContentwarehouseV1DataUpdateAction
42697
43061
  include Google::Apis::Core::Hashable
@@ -43354,10 +43718,17 @@ module Google
43354
43718
  class GoogleCloudContentwarehouseV1ExportToCdwPipeline
43355
43719
  include Google::Apis::Core::Hashable
43356
43720
 
43357
- # The list of all the documents to be processed.
43358
- # Corresponds to the JSON property `documentIds`
43721
+ # The CDW dataset resource name. Format: projects/`project`/locations/`location`/
43722
+ # processors/`processor`/dataset
43723
+ # Corresponds to the JSON property `docAiDataset`
43724
+ # @return [String]
43725
+ attr_accessor :doc_ai_dataset
43726
+
43727
+ # The list of all the resource names of the documents to be processed. Format:
43728
+ # projects/`project_number`/locations/`location`/documents/`document_id`.
43729
+ # Corresponds to the JSON property `documents`
43359
43730
  # @return [Array<String>]
43360
- attr_accessor :document_ids
43731
+ attr_accessor :documents
43361
43732
 
43362
43733
  # The Cloud Storage folder path used to store the exported documents before
43363
43734
  # being sent to CDW. Format: gs:///.
@@ -43365,10 +43736,12 @@ module Google
43365
43736
  # @return [String]
43366
43737
  attr_accessor :export_folder_path
43367
43738
 
43368
- # The DocAI processor information.
43369
- # Corresponds to the JSON property `processorInfo`
43370
- # @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ProcessorInfo]
43371
- attr_accessor :processor_info
43739
+ # Ratio of training dataset split. When importing into Document AI Workbench,
43740
+ # documents will be automatically split into training and test split category
43741
+ # with the specified ratio.
43742
+ # Corresponds to the JSON property `trainingSplitRatio`
43743
+ # @return [Float]
43744
+ attr_accessor :training_split_ratio
43372
43745
 
43373
43746
  def initialize(**args)
43374
43747
  update!(**args)
@@ -43376,9 +43749,10 @@ module Google
43376
43749
 
43377
43750
  # Update properties of this object
43378
43751
  def update!(**args)
43379
- @document_ids = args[:document_ids] if args.key?(:document_ids)
43752
+ @doc_ai_dataset = args[:doc_ai_dataset] if args.key?(:doc_ai_dataset)
43753
+ @documents = args[:documents] if args.key?(:documents)
43380
43754
  @export_folder_path = args[:export_folder_path] if args.key?(:export_folder_path)
43381
- @processor_info = args[:processor_info] if args.key?(:processor_info)
43755
+ @training_split_ratio = args[:training_split_ratio] if args.key?(:training_split_ratio)
43382
43756
  end
43383
43757
  end
43384
43758
 
@@ -43521,6 +43895,13 @@ module Google
43521
43895
  # @return [String]
43522
43896
  attr_accessor :input_path
43523
43897
 
43898
+ # The Doc AI processor type name. Only used when the format of ingested files is
43899
+ # Doc AI Document proto format. Reference: https://source.corp.google.com/piper//
43900
+ # /depot/google3/cloud/ai/documentai/core/c/proto/processor.proto;l=21
43901
+ # Corresponds to the JSON property `processorType`
43902
+ # @return [String]
43903
+ attr_accessor :processor_type
43904
+
43524
43905
  # The Document Warehouse schema resource name. All documents processed by this
43525
43906
  # pipeline will use this schema. Format: projects/`project_number`/locations/`
43526
43907
  # location`/documentSchemas/`document_schema_id`.
@@ -43535,6 +43916,7 @@ module Google
43535
43916
  # Update properties of this object
43536
43917
  def update!(**args)
43537
43918
  @input_path = args[:input_path] if args.key?(:input_path)
43919
+ @processor_type = args[:processor_type] if args.key?(:processor_type)
43538
43920
  @schema_name = args[:schema_name] if args.key?(:schema_name)
43539
43921
  end
43540
43922
  end
@@ -43544,12 +43926,9 @@ module Google
43544
43926
  class GoogleCloudContentwarehouseV1GcsIngestWithDocAiProcessorsPipeline
43545
43927
  include Google::Apis::Core::Hashable
43546
43928
 
43547
- # The DocAI processor information.
43548
- # Corresponds to the JSON property `classifySplitProcessorInfos`
43549
- # @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ProcessorInfo]
43550
- attr_accessor :classify_split_processor_infos
43551
-
43552
- # The entity or key-value pair extracting processor information.
43929
+ # The extract processors information. One matched extract processor will be used
43930
+ # to process documents based on the classify processor result. If no classify
43931
+ # processor is specificied, the first extract processor will be used.
43553
43932
  # Corresponds to the JSON property `extractProcessorInfos`
43554
43933
  # @return [Array<Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ProcessorInfo>]
43555
43934
  attr_accessor :extract_processor_infos
@@ -43566,16 +43945,21 @@ module Google
43566
43945
  # @return [String]
43567
43946
  attr_accessor :processor_results_folder_path
43568
43947
 
43948
+ # The DocAI processor information.
43949
+ # Corresponds to the JSON property `splitClassifyProcessorInfo`
43950
+ # @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ProcessorInfo]
43951
+ attr_accessor :split_classify_processor_info
43952
+
43569
43953
  def initialize(**args)
43570
43954
  update!(**args)
43571
43955
  end
43572
43956
 
43573
43957
  # Update properties of this object
43574
43958
  def update!(**args)
43575
- @classify_split_processor_infos = args[:classify_split_processor_infos] if args.key?(:classify_split_processor_infos)
43576
43959
  @extract_processor_infos = args[:extract_processor_infos] if args.key?(:extract_processor_infos)
43577
43960
  @input_path = args[:input_path] if args.key?(:input_path)
43578
43961
  @processor_results_folder_path = args[:processor_results_folder_path] if args.key?(:processor_results_folder_path)
43962
+ @split_classify_processor_info = args[:split_classify_processor_info] if args.key?(:split_classify_processor_info)
43579
43963
  end
43580
43964
  end
43581
43965
 
@@ -44010,6 +44394,31 @@ module Google
44010
44394
  end
44011
44395
  end
44012
44396
 
44397
+ # Request message for DocumentService.LockDocument.
44398
+ class GoogleCloudContentwarehouseV1LockDocumentRequest
44399
+ include Google::Apis::Core::Hashable
44400
+
44401
+ # The collection the document connects to.
44402
+ # Corresponds to the JSON property `collectionId`
44403
+ # @return [String]
44404
+ attr_accessor :collection_id
44405
+
44406
+ # The user information.
44407
+ # Corresponds to the JSON property `lockingUser`
44408
+ # @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1UserInfo]
44409
+ attr_accessor :locking_user
44410
+
44411
+ def initialize(**args)
44412
+ update!(**args)
44413
+ end
44414
+
44415
+ # Update properties of this object
44416
+ def update!(**args)
44417
+ @collection_id = args[:collection_id] if args.key?(:collection_id)
44418
+ @locking_user = args[:locking_user] if args.key?(:locking_user)
44419
+ end
44420
+ end
44421
+
44013
44422
  # Map property value. Represents a structured entries of key value pairs,
44014
44423
  # consisting of field names which map to dynamically typed values.
44015
44424
  class GoogleCloudContentwarehouseV1MapProperty
@@ -44079,6 +44488,47 @@ module Google
44079
44488
  end
44080
44489
  end
44081
44490
 
44491
+ # The configuration of processing documents in Document Warehouse with DocAi
44492
+ # processors pipeline.
44493
+ class GoogleCloudContentwarehouseV1ProcessWithDocAiPipeline
44494
+ include Google::Apis::Core::Hashable
44495
+
44496
+ # The list of all the resource names of the documents to be processed. Format:
44497
+ # projects/`project_number`/locations/`location`/documents/`document_id`.
44498
+ # Corresponds to the JSON property `documents`
44499
+ # @return [Array<String>]
44500
+ attr_accessor :documents
44501
+
44502
+ # The Cloud Storage folder path used to store the exported documents before
44503
+ # being sent to CDW. Format: gs:///.
44504
+ # Corresponds to the JSON property `exportFolderPath`
44505
+ # @return [String]
44506
+ attr_accessor :export_folder_path
44507
+
44508
+ # The DocAI processor information.
44509
+ # Corresponds to the JSON property `processorInfo`
44510
+ # @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ProcessorInfo]
44511
+ attr_accessor :processor_info
44512
+
44513
+ # The Cloud Storage folder path used to store the raw results from processors.
44514
+ # Format: gs:///.
44515
+ # Corresponds to the JSON property `processorResultsFolderPath`
44516
+ # @return [String]
44517
+ attr_accessor :processor_results_folder_path
44518
+
44519
+ def initialize(**args)
44520
+ update!(**args)
44521
+ end
44522
+
44523
+ # Update properties of this object
44524
+ def update!(**args)
44525
+ @documents = args[:documents] if args.key?(:documents)
44526
+ @export_folder_path = args[:export_folder_path] if args.key?(:export_folder_path)
44527
+ @processor_info = args[:processor_info] if args.key?(:processor_info)
44528
+ @processor_results_folder_path = args[:processor_results_folder_path] if args.key?(:processor_results_folder_path)
44529
+ end
44530
+ end
44531
+
44082
44532
  # The DocAI processor information.
44083
44533
  class GoogleCloudContentwarehouseV1ProcessorInfo
44084
44534
  include Google::Apis::Core::Hashable
@@ -44756,6 +45206,17 @@ module Google
44756
45206
  # @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1GcsIngestWithDocAiProcessorsPipeline]
44757
45207
  attr_accessor :gcs_ingest_with_doc_ai_processors_pipeline
44758
45208
 
45209
+ # The configuration of processing documents in Document Warehouse with DocAi
45210
+ # processors pipeline.
45211
+ # Corresponds to the JSON property `processWithDocAiPipeline`
45212
+ # @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1ProcessWithDocAiPipeline]
45213
+ attr_accessor :process_with_doc_ai_pipeline
45214
+
45215
+ # Meta information is used to improve the performance of the service.
45216
+ # Corresponds to the JSON property `requestMetadata`
45217
+ # @return [Google::Apis::ContentwarehouseV1::GoogleCloudContentwarehouseV1RequestMetadata]
45218
+ attr_accessor :request_metadata
45219
+
44759
45220
  def initialize(**args)
44760
45221
  update!(**args)
44761
45222
  end
@@ -44765,6 +45226,8 @@ module Google
44765
45226
  @export_cdw_pipeline = args[:export_cdw_pipeline] if args.key?(:export_cdw_pipeline)
44766
45227
  @gcs_ingest_pipeline = args[:gcs_ingest_pipeline] if args.key?(:gcs_ingest_pipeline)
44767
45228
  @gcs_ingest_with_doc_ai_processors_pipeline = args[:gcs_ingest_with_doc_ai_processors_pipeline] if args.key?(:gcs_ingest_with_doc_ai_processors_pipeline)
45229
+ @process_with_doc_ai_pipeline = args[:process_with_doc_ai_pipeline] if args.key?(:process_with_doc_ai_pipeline)
45230
+ @request_metadata = args[:request_metadata] if args.key?(:request_metadata)
44768
45231
  end
44769
45232
  end
44770
45233
 
@@ -47589,7 +48052,7 @@ module Google
47589
48052
  # @return [String]
47590
48053
  attr_accessor :committed_until
47591
48054
 
47592
- # TODO(b/265939748) To be removed, always false from User Status Service.
48055
+ # TODO(b/265939748) To be removed, always false.
47593
48056
  # Corresponds to the JSON property `committedUntilIsMixed`
47594
48057
  # @return [Boolean]
47595
48058
  attr_accessor :committed_until_is_mixed
@@ -47673,7 +48136,7 @@ module Google
47673
48136
  # @return [String]
47674
48137
  attr_accessor :committed_until
47675
48138
 
47676
- # TODO(b/265939748) To be removed, always false from User Status Service.
48139
+ # TODO(b/265939748) To be removed, always false.
47677
48140
  # Corresponds to the JSON property `committedUntilIsMixed`
47678
48141
  # @return [Boolean]
47679
48142
  attr_accessor :committed_until_is_mixed
@@ -47730,7 +48193,7 @@ module Google
47730
48193
  # @return [String]
47731
48194
  attr_accessor :committed_until
47732
48195
 
47733
- # TODO(b/265939748) To be removed, always false from User Status Service.
48196
+ # TODO(b/265939748) To be removed, always false.
47734
48197
  # Corresponds to the JSON property `committedUntilIsMixed`
47735
48198
  # @return [Boolean]
47736
48199
  attr_accessor :committed_until_is_mixed
@@ -47831,6 +48294,11 @@ module Google
47831
48294
  # @return [String]
47832
48295
  attr_accessor :experimental_floor_id
47833
48296
 
48297
+ # The display label of this office location. For example a building name.
48298
+ # Corresponds to the JSON property `label`
48299
+ # @return [String]
48300
+ attr_accessor :label
48301
+
47834
48302
  def initialize(**args)
47835
48303
  update!(**args)
47836
48304
  end
@@ -47840,6 +48308,7 @@ module Google
47840
48308
  @experimental_building_id = args[:experimental_building_id] if args.key?(:experimental_building_id)
47841
48309
  @experimental_desk_id = args[:experimental_desk_id] if args.key?(:experimental_desk_id)
47842
48310
  @experimental_floor_id = args[:experimental_floor_id] if args.key?(:experimental_floor_id)
48311
+ @label = args[:label] if args.key?(:label)
47843
48312
  end
47844
48313
  end
47845
48314
 
@@ -47863,7 +48332,7 @@ module Google
47863
48332
  # @return [String]
47864
48333
  attr_accessor :committed_until
47865
48334
 
47866
- # TODO(b/265939748) To be removed, always false from User Status Service.
48335
+ # TODO(b/265939748) To be removed, always false.
47867
48336
  # Corresponds to the JSON property `committedUntilIsMixed`
47868
48337
  # @return [Boolean]
47869
48338
  attr_accessor :committed_until_is_mixed
@@ -51486,6 +51955,18 @@ module Google
51486
51955
  # @return [String]
51487
51956
  attr_accessor :type
51488
51957
 
51958
+ # The end timestamp of the video segment in microseconds that this preview is
51959
+ # generated from. Used for segmented video previews.
51960
+ # Corresponds to the JSON property `videoSegmentEndUs`
51961
+ # @return [Fixnum]
51962
+ attr_accessor :video_segment_end_us
51963
+
51964
+ # The start timestamp of the video segment in microseconds that this preview is
51965
+ # generated from. Used for segmented video previews.
51966
+ # Corresponds to the JSON property `videoSegmentStartUs`
51967
+ # @return [Fixnum]
51968
+ attr_accessor :video_segment_start_us
51969
+
51489
51970
  # Width of the stored preview.
51490
51971
  # Corresponds to the JSON property `width`
51491
51972
  # @return [Fixnum]
@@ -51507,6 +51988,8 @@ module Google
51507
51988
  @state = args[:state] if args.key?(:state)
51508
51989
  @timestamp = args[:timestamp] if args.key?(:timestamp)
51509
51990
  @type = args[:type] if args.key?(:type)
51991
+ @video_segment_end_us = args[:video_segment_end_us] if args.key?(:video_segment_end_us)
51992
+ @video_segment_start_us = args[:video_segment_start_us] if args.key?(:video_segment_start_us)
51510
51993
  @width = args[:width] if args.key?(:width)
51511
51994
  end
51512
51995
  end
@@ -52049,13 +52532,11 @@ module Google
52049
52532
  # @return [Google::Apis::ContentwarehouseV1::FaceIndexing]
52050
52533
  attr_accessor :packed_full_face_info
52051
52534
 
52052
- # This message holds person attributes from the LookNet-Person model (go/looknet-
52053
- # person) and the Style AI Iconic Person Scorer (http://go/styleai-indexing-
52054
- # g3doc#iconic-person-scorer) for the most iconic person in a style image. There
52055
- # is an ongoing collaboration with the Human Sensing team on LookNet-Person v3 (
52056
- # go/looknet-person-v3-collaboration) that deals with some of these signals
52057
- # together. Hence, the combined proto definition. Discretization of float values
52058
- # is recommended by CDS for cheaper and more efficient storage. Next ID: 11
52535
+ # This message holds person attributes from the Person Interpreter model (go/
52536
+ # person-interpreter) and the Style AI Iconic Person Scorer (go/styleai-indexing-
52537
+ # g3doc#iconic-person-scorer) for the most iconic person in a style image.
52538
+ # Discretization of float values is recommended by CDS for cheaper and more
52539
+ # efficient storage. Next ID: 11
52059
52540
  # Corresponds to the JSON property `personAttributes`
52060
52541
  # @return [Google::Apis::ContentwarehouseV1::LensDiscoveryStylePersonAttributes]
52061
52542
  attr_accessor :person_attributes
@@ -53830,7 +54311,7 @@ module Google
53830
54311
  end
53831
54312
  end
53832
54313
 
53833
- # Next Tag: 48
54314
+ # Next Tag: 49
53834
54315
  class ImageRepositoryContentBasedVideoMetadata
53835
54316
  include Google::Apis::Core::Hashable
53836
54317
 
@@ -53911,6 +54392,11 @@ module Google
53911
54392
  # @return [Google::Apis::ContentwarehouseV1::ImageData]
53912
54393
  attr_accessor :representative_frame_data
53913
54394
 
54395
+ # Next Tag: 8
54396
+ # Corresponds to the JSON property `s3Asr`
54397
+ # @return [Google::Apis::ContentwarehouseV1::ImageRepositoryAmarnaCloudSpeechSignals]
54398
+ attr_accessor :s3_asr
54399
+
53914
54400
  # Next Tag: 9
53915
54401
  # Corresponds to the JSON property `s3LanguageIdentification`
53916
54402
  # @return [Google::Apis::ContentwarehouseV1::ImageRepositoryS3LangIdSignals]
@@ -54064,6 +54550,7 @@ module Google
54064
54550
  @loudness_data = args[:loudness_data] if args.key?(:loudness_data)
54065
54551
  @media_info = args[:media_info] if args.key?(:media_info)
54066
54552
  @representative_frame_data = args[:representative_frame_data] if args.key?(:representative_frame_data)
54553
+ @s3_asr = args[:s3_asr] if args.key?(:s3_asr)
54067
54554
  @s3_language_identification = args[:s3_language_identification] if args.key?(:s3_language_identification)
54068
54555
  @safesearch_video_content_signals = args[:safesearch_video_content_signals] if args.key?(:safesearch_video_content_signals)
54069
54556
  @search_docid = args[:search_docid] if args.key?(:search_docid)
@@ -54957,7 +55444,7 @@ module Google
54957
55444
  attr_accessor :audio_only
54958
55445
  alias_method :audio_only?, :audio_only
54959
55446
 
54960
- # Next Tag: 48
55447
+ # Next Tag: 49
54961
55448
  # Corresponds to the JSON property `contentBasedMetadata`
54962
55449
  # @return [Google::Apis::ContentwarehouseV1::ImageRepositoryContentBasedVideoMetadata]
54963
55450
  attr_accessor :content_based_metadata
@@ -55180,10 +55667,15 @@ module Google
55180
55667
  end
55181
55668
  end
55182
55669
 
55183
- #
55670
+ # A protocol buffer to store the OCR annotation. Next available tag id: 10.
55184
55671
  class ImageSafesearchContentOcrAnnotation
55185
55672
  include Google::Apis::Core::Hashable
55186
55673
 
55674
+ # A string that indicates the version of SafeSearch OCR annotation.
55675
+ # Corresponds to the JSON property `ocrAnnotationVersion`
55676
+ # @return [String]
55677
+ attr_accessor :ocr_annotation_version
55678
+
55187
55679
  # The score produced by Aksara geometry and spoof score. Describes the '
55188
55680
  # visibility' or 'importance' of the text on the image [0, 1]
55189
55681
  # Corresponds to the JSON property `ocrProminenceScore`
@@ -55227,6 +55719,7 @@ module Google
55227
55719
 
55228
55720
  # Update properties of this object
55229
55721
  def update!(**args)
55722
+ @ocr_annotation_version = args[:ocr_annotation_version] if args.key?(:ocr_annotation_version)
55230
55723
  @ocr_prominence_score = args[:ocr_prominence_score] if args.key?(:ocr_prominence_score)
55231
55724
  @porn_score = args[:porn_score] if args.key?(:porn_score)
55232
55725
  @prominent_offensive_score = args[:prominent_offensive_score] if args.key?(:prominent_offensive_score)
@@ -57016,8 +57509,12 @@ module Google
57016
57509
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
57017
57510
  attr_accessor :chrome_counts
57018
57511
 
57019
- # LINT.ThenChange(//depot/google3/indexing/ames/spanner/schema/websearch_main.
57020
- # sdl)
57512
+ # LINT.ThenChange(//depot/google3/indexing/ames/spanner/schema/web-version.proto)
57513
+ # Corresponds to the JSON property `creator`
57514
+ # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
57515
+ attr_accessor :creator
57516
+
57517
+ #
57021
57518
  # Corresponds to the JSON property `instantNavboost`
57022
57519
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
57023
57520
  attr_accessor :instant_navboost
@@ -57027,31 +57524,16 @@ module Google
57027
57524
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
57028
57525
  attr_accessor :localyp
57029
57526
 
57030
- #
57031
- # Corresponds to the JSON property `localypVersion`
57032
- # @return [String]
57033
- attr_accessor :localyp_version
57034
-
57035
57527
  #
57036
57528
  # Corresponds to the JSON property `modernFormatContent`
57037
57529
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
57038
57530
  attr_accessor :modern_format_content
57039
57531
 
57040
- #
57041
- # Corresponds to the JSON property `modernFormatContentVersion`
57042
- # @return [String]
57043
- attr_accessor :modern_format_content_version
57044
-
57045
57532
  # LINT.IfChange
57046
57533
  # Corresponds to the JSON property `navboost`
57047
57534
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
57048
57535
  attr_accessor :navboost
57049
57536
 
57050
- # DEPRECATED
57051
- # Corresponds to the JSON property `navboostVersion`
57052
- # @return [String]
57053
- attr_accessor :navboost_version
57054
-
57055
57537
  #
57056
57538
  # Corresponds to the JSON property `rankembed`
57057
57539
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
@@ -57067,21 +57549,11 @@ module Google
57067
57549
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
57068
57550
  attr_accessor :video_scoring_signal
57069
57551
 
57070
- #
57071
- # Corresponds to the JSON property `videoScoringSignalVersion`
57072
- # @return [String]
57073
- attr_accessor :video_scoring_signal_version
57074
-
57075
57552
  #
57076
57553
  # Corresponds to the JSON property `volt`
57077
57554
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
57078
57555
  attr_accessor :volt
57079
57556
 
57080
- #
57081
- # Corresponds to the JSON property `voltVersion`
57082
- # @return [String]
57083
- attr_accessor :volt_version
57084
-
57085
57557
  def initialize(**args)
57086
57558
  update!(**args)
57087
57559
  end
@@ -57090,19 +57562,15 @@ module Google
57090
57562
  def update!(**args)
57091
57563
  @accelerated_shopping_signal = args[:accelerated_shopping_signal] if args.key?(:accelerated_shopping_signal)
57092
57564
  @chrome_counts = args[:chrome_counts] if args.key?(:chrome_counts)
57565
+ @creator = args[:creator] if args.key?(:creator)
57093
57566
  @instant_navboost = args[:instant_navboost] if args.key?(:instant_navboost)
57094
57567
  @localyp = args[:localyp] if args.key?(:localyp)
57095
- @localyp_version = args[:localyp_version] if args.key?(:localyp_version)
57096
57568
  @modern_format_content = args[:modern_format_content] if args.key?(:modern_format_content)
57097
- @modern_format_content_version = args[:modern_format_content_version] if args.key?(:modern_format_content_version)
57098
57569
  @navboost = args[:navboost] if args.key?(:navboost)
57099
- @navboost_version = args[:navboost_version] if args.key?(:navboost_version)
57100
57570
  @rankembed = args[:rankembed] if args.key?(:rankembed)
57101
57571
  @universal_facts = args[:universal_facts] if args.key?(:universal_facts)
57102
57572
  @video_scoring_signal = args[:video_scoring_signal] if args.key?(:video_scoring_signal)
57103
- @video_scoring_signal_version = args[:video_scoring_signal_version] if args.key?(:video_scoring_signal_version)
57104
57573
  @volt = args[:volt] if args.key?(:volt)
57105
- @volt_version = args[:volt_version] if args.key?(:volt_version)
57106
57574
  end
57107
57575
  end
57108
57576
 
@@ -62148,7 +62616,7 @@ module Google
62148
62616
  # @return [Google::Apis::ContentwarehouseV1::KnowledgeAnswersSensitivitySensitivity]
62149
62617
  attr_accessor :sensitivity
62150
62618
 
62151
- # Next ID: 35
62619
+ # Next ID: 36
62152
62620
  # Corresponds to the JSON property `signals`
62153
62621
  # @return [Google::Apis::ContentwarehouseV1::KnowledgeAnswersIntentQueryFunctionCallSignals]
62154
62622
  attr_accessor :signals
@@ -62180,7 +62648,7 @@ module Google
62180
62648
  end
62181
62649
  end
62182
62650
 
62183
- # Next ID: 35
62651
+ # Next ID: 36
62184
62652
  class KnowledgeAnswersIntentQueryFunctionCallSignals
62185
62653
  include Google::Apis::Core::Hashable
62186
62654
 
@@ -62349,7 +62817,7 @@ module Google
62349
62817
 
62350
62818
  # Signals to be used by the Prefulfillment Ranker. Derived from the
62351
62819
  # ParsingSignals and GroundingSignals carried by the FunctionCall. LINT.IfChange
62352
- # Next ID: 39
62820
+ # Next ID: 47
62353
62821
  # Corresponds to the JSON property `prefulfillmentSignals`
62354
62822
  # @return [Google::Apis::ContentwarehouseV1::AssistantPrefulfillmentRankerPrefulfillmentSignals]
62355
62823
  attr_accessor :prefulfillment_signals
@@ -62367,6 +62835,12 @@ module Google
62367
62835
  # @return [String]
62368
62836
  attr_accessor :refx_summary_node_id
62369
62837
 
62838
+ # SRM signal data. Properties here should be nonsemantic. Semantic properties
62839
+ # should be modeled directly in the SRM.
62840
+ # Corresponds to the JSON property `responseMeaningSignals`
62841
+ # @return [Google::Apis::ContentwarehouseV1::KnowledgeAnswersIntentQueryResponseMeaningSignalsResponseMeaningSignals]
62842
+ attr_accessor :response_meaning_signals
62843
+
62370
62844
  # The list of result supports for this FunctionCall.
62371
62845
  # Corresponds to the JSON property `resultSupport`
62372
62846
  # @return [Array<Google::Apis::ContentwarehouseV1::UniversalsearchNewPackerKnowledgeResultSupport>]
@@ -62436,6 +62910,7 @@ module Google
62436
62910
  @prefulfillment_signals = args[:prefulfillment_signals] if args.key?(:prefulfillment_signals)
62437
62911
  @referential_resolution = args[:referential_resolution] if args.key?(:referential_resolution)
62438
62912
  @refx_summary_node_id = args[:refx_summary_node_id] if args.key?(:refx_summary_node_id)
62913
+ @response_meaning_signals = args[:response_meaning_signals] if args.key?(:response_meaning_signals)
62439
62914
  @result_support = args[:result_support] if args.key?(:result_support)
62440
62915
  @role = args[:role] if args.key?(:role)
62441
62916
  @selected_by_prefulfillment_ranking = args[:selected_by_prefulfillment_ranking] if args.key?(:selected_by_prefulfillment_ranking)
@@ -63077,6 +63552,26 @@ module Google
63077
63552
  end
63078
63553
  end
63079
63554
 
63555
+ # SRM signal data. Properties here should be nonsemantic. Semantic properties
63556
+ # should be modeled directly in the SRM.
63557
+ class KnowledgeAnswersIntentQueryResponseMeaningSignalsResponseMeaningSignals
63558
+ include Google::Apis::Core::Hashable
63559
+
63560
+ #
63561
+ # Corresponds to the JSON property `propertyValue`
63562
+ # @return [Array<Google::Apis::ContentwarehouseV1::FreebasePropertyValue>]
63563
+ attr_accessor :property_value
63564
+
63565
+ def initialize(**args)
63566
+ update!(**args)
63567
+ end
63568
+
63569
+ # Update properties of this object
63570
+ def update!(**args)
63571
+ @property_value = args[:property_value] if args.key?(:property_value)
63572
+ end
63573
+ end
63574
+
63080
63575
  # Signals derived from overlapping saft annotations.
63081
63576
  class KnowledgeAnswersIntentQuerySaftSignals
63082
63577
  include Google::Apis::Core::Hashable
@@ -65861,7 +66356,7 @@ module Google
65861
66356
  # process* the triple. Read: fields below really shouldn't be part of the cross-
65862
66357
  # system Triple proto at all. But because Triple is used both as an internal and
65863
66358
  # an external KG API, we at least want to "hide" those fields that ought to be
65864
- # purely part of the internal source <-> LG contract. Next id: 5
66359
+ # purely part of the internal source <-> LG contract. Next id: 6
65865
66360
  # Corresponds to the JSON property `lgMetadata`
65866
66361
  # @return [Google::Apis::ContentwarehouseV1::StorageGraphBfgLivegraphProvenanceMetadata]
65867
66362
  attr_accessor :lg_metadata
@@ -66651,13 +67146,11 @@ module Google
66651
67146
  end
66652
67147
  end
66653
67148
 
66654
- # This message holds person attributes from the LookNet-Person model (go/looknet-
66655
- # person) and the Style AI Iconic Person Scorer (http://go/styleai-indexing-
66656
- # g3doc#iconic-person-scorer) for the most iconic person in a style image. There
66657
- # is an ongoing collaboration with the Human Sensing team on LookNet-Person v3 (
66658
- # go/looknet-person-v3-collaboration) that deals with some of these signals
66659
- # together. Hence, the combined proto definition. Discretization of float values
66660
- # is recommended by CDS for cheaper and more efficient storage. Next ID: 11
67149
+ # This message holds person attributes from the Person Interpreter model (go/
67150
+ # person-interpreter) and the Style AI Iconic Person Scorer (go/styleai-indexing-
67151
+ # g3doc#iconic-person-scorer) for the most iconic person in a style image.
67152
+ # Discretization of float values is recommended by CDS for cheaper and more
67153
+ # efficient storage. Next ID: 11
66661
67154
  class LensDiscoveryStylePersonAttributes
66662
67155
  include Google::Apis::Core::Hashable
66663
67156
 
@@ -73629,6 +74122,25 @@ module Google
73629
74122
  end
73630
74123
  end
73631
74124
 
74125
+ #
74126
+ class NlpSemanticParsingLocalEvChargingStationConnectorConstraint
74127
+ include Google::Apis::Core::Hashable
74128
+
74129
+ #
74130
+ # Corresponds to the JSON property `connectorType`
74131
+ # @return [String]
74132
+ attr_accessor :connector_type
74133
+
74134
+ def initialize(**args)
74135
+ update!(**args)
74136
+ end
74137
+
74138
+ # Update properties of this object
74139
+ def update!(**args)
74140
+ @connector_type = args[:connector_type] if args.key?(:connector_type)
74141
+ end
74142
+ end
74143
+
73632
74144
  # There is an implicit AND relation if multiple EVCS constraint types are
73633
74145
  # specified.
73634
74146
  class NlpSemanticParsingLocalEvChargingStationSpeedConstraint
@@ -74488,7 +75000,7 @@ module Google
74488
75000
  # location and can be nested accordingly. E.g., for a compound location the
74489
75001
  # constraint may be associated with the entire location or with either of the
74490
75002
  # two internal locations (loc_1 and loc_2). There is an implicit AND relation
74491
- # between the different constraints. Next ID: 24.
75003
+ # between the different constraints. Next ID: 25.
74492
75004
  class NlpSemanticParsingLocalLocationConstraint
74493
75005
  include Google::Apis::Core::Hashable
74494
75006
 
@@ -74509,6 +75021,12 @@ module Google
74509
75021
  # @return [Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalCuisineConstraint]
74510
75022
  attr_accessor :cuisine
74511
75023
 
75024
+ # Used for populating ElectricVehicleConnectorRefinement from QBF go/evcs-qbf-
75025
+ # connector
75026
+ # Corresponds to the JSON property `evcsConnectorConstraint`
75027
+ # @return [Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalEvChargingStationConnectorConstraint]
75028
+ attr_accessor :evcs_connector_constraint
75029
+
74512
75030
  # There is an implicit AND relation if multiple EVCS constraint types are
74513
75031
  # specified.
74514
75032
  # Corresponds to the JSON property `evcsSpeedConstraint`
@@ -74634,6 +75152,7 @@ module Google
74634
75152
  @amenities = args[:amenities] if args.key?(:amenities)
74635
75153
  @chain_member = args[:chain_member] if args.key?(:chain_member)
74636
75154
  @cuisine = args[:cuisine] if args.key?(:cuisine)
75155
+ @evcs_connector_constraint = args[:evcs_connector_constraint] if args.key?(:evcs_connector_constraint)
74637
75156
  @evcs_speed_constraint = args[:evcs_speed_constraint] if args.key?(:evcs_speed_constraint)
74638
75157
  @gcid_constraint = args[:gcid_constraint] if args.key?(:gcid_constraint)
74639
75158
  @health_insurance = args[:health_insurance] if args.key?(:health_insurance)
@@ -83350,7 +83869,7 @@ module Google
83350
83869
  # @return [Google::Apis::ContentwarehouseV1::QualityCalypsoAppsLink]
83351
83870
  attr_accessor :apps_link
83352
83871
 
83353
- # For indexing Asteroid Belt intent scores. See go/asteroid-belt for details.
83872
+ # Next ID: 7
83354
83873
  # Corresponds to the JSON property `asteroidBeltIntents`
83355
83874
  # @return [Google::Apis::ContentwarehouseV1::QualityOrbitAsteroidBeltDocumentIntentScores]
83356
83875
  attr_accessor :asteroid_belt_intents
@@ -83402,7 +83921,7 @@ module Google
83402
83921
  # Mustang and TeraGoogle. For TeraGoogle, this message is included in perdocdata
83403
83922
  # which means it can be used in preliminary scoring. CAREFUL: For TeraGoogle,
83404
83923
  # this data resides in very limited serving memory (Flash storage) for a huge
83405
- # number of documents. Next id: 40
83924
+ # number of documents. Next id: 42
83406
83925
  # Corresponds to the JSON property `compressedQualitySignals`
83407
83926
  # @return [Google::Apis::ContentwarehouseV1::CompressedQualitySignals]
83408
83927
  attr_accessor :compressed_quality_signals
@@ -83754,6 +84273,11 @@ module Google
83754
84273
  # @return [Google::Apis::ContentwarehouseV1::RepositoryAnnotationsRdfaRdfaRichSnippetsApplication]
83755
84274
  attr_accessor :rs_application
83756
84275
 
84276
+ # S3 based Audio language information about a Watch Page.
84277
+ # Corresponds to the JSON property `s3AudioLanguage`
84278
+ # @return [Google::Apis::ContentwarehouseV1::S3AudioLanguageS3AudioLanguage]
84279
+ attr_accessor :s3_audio_language
84280
+
83757
84281
  # Top document language as generated by SAFT LangID. For now we store bare
83758
84282
  # minimum: just the top 1 language value, converted to the language enum, and
83759
84283
  # only when different from the first value in 'languages'.
@@ -84111,6 +84635,7 @@ module Google
84111
84635
  @queries_for_which_official = args[:queries_for_which_official] if args.key?(:queries_for_which_official)
84112
84636
  @rosetta_languages = args[:rosetta_languages] if args.key?(:rosetta_languages)
84113
84637
  @rs_application = args[:rs_application] if args.key?(:rs_application)
84638
+ @s3_audio_language = args[:s3_audio_language] if args.key?(:s3_audio_language)
84114
84639
  @saft_language_int = args[:saft_language_int] if args.key?(:saft_language_int)
84115
84640
  @scaled_selection_tier_rank = args[:scaled_selection_tier_rank] if args.key?(:scaled_selection_tier_rank)
84116
84641
  @science_doctype = args[:science_doctype] if args.key?(:science_doctype)
@@ -87093,8 +87618,7 @@ module Google
87093
87618
  # @return [Fixnum]
87094
87619
  attr_accessor :number_faces
87095
87620
 
87096
- # Information about image OCR text. For details see image/safesearch/content/
87097
- # public/ocr_annotation.proto.
87621
+ # A protocol buffer to store the OCR annotation. Next available tag id: 10.
87098
87622
  # Corresponds to the JSON property `ocrAnnotation`
87099
87623
  # @return [Google::Apis::ContentwarehouseV1::ImageSafesearchContentOcrAnnotation]
87100
87624
  attr_accessor :ocr_annotation
@@ -90650,7 +91174,7 @@ module Google
90650
91174
  # @return [Google::Apis::ContentwarehouseV1::QualityNsrNsrChunksProto]
90651
91175
  attr_accessor :nsr_chunks
90652
91176
 
90653
- # These are annotated in the Goldmine NSR annotator.
91177
+ # Annotated in the SitechunksAnnotator and copied over in NsrAnnotator.
90654
91178
  # Corresponds to the JSON property `siteChunkSource`
90655
91179
  # @return [String]
90656
91180
  attr_accessor :site_chunk_source
@@ -91100,6 +91624,17 @@ module Google
91100
91624
  # @return [Array<String>]
91101
91625
  attr_accessor :raffia_lookup_keys
91102
91626
 
91627
+ # The url used by NsrSignalMerger (http://google3/indexing/signals/signal-merger.
91628
+ # h;l=1801;rcl=509297232) to select which NsrData value to keep. The
91629
+ # SignalMerger merges all the NsrData coming from the dup url cluster, and
91630
+ # select the NsrData value to return by choosing a single url in the cluster (
91631
+ # see NsrSignalMerger class for details). NOTE: This field is populated only
91632
+ # when there *is* a cluster. If there is no cluster, this is empty and the key
91633
+ # used is the canonical (and only) url.
91634
+ # Corresponds to the JSON property `raffiaSignalMergerUrl`
91635
+ # @return [String]
91636
+ attr_accessor :raffia_signal_merger_url
91637
+
91103
91638
  def initialize(**args)
91104
91639
  update!(**args)
91105
91640
  end
@@ -91116,6 +91651,7 @@ module Google
91116
91651
  @raffia_lookup_key = args[:raffia_lookup_key] if args.key?(:raffia_lookup_key)
91117
91652
  @raffia_lookup_key_per_field = args[:raffia_lookup_key_per_field] if args.key?(:raffia_lookup_key_per_field)
91118
91653
  @raffia_lookup_keys = args[:raffia_lookup_keys] if args.key?(:raffia_lookup_keys)
91654
+ @raffia_signal_merger_url = args[:raffia_signal_merger_url] if args.key?(:raffia_signal_merger_url)
91119
91655
  end
91120
91656
  end
91121
91657
 
@@ -91280,10 +91816,22 @@ module Google
91280
91816
  end
91281
91817
  end
91282
91818
 
91283
- #
91819
+ # Next ID: 7
91284
91820
  class QualityOrbitAsteroidBeltDocumentIntentScores
91285
91821
  include Google::Apis::Core::Hashable
91286
91822
 
91823
+ # Same as above, but for intents below triggering threshold. It can be assumed
91824
+ # that any intent in this list has trigger=false. Most intents do not have below-
91825
+ # threshold annotations.
91826
+ # Corresponds to the JSON property `belowThresholdIntents`
91827
+ # @return [Array<String>]
91828
+ attr_accessor :below_threshold_intents
91829
+
91830
+ #
91831
+ # Corresponds to the JSON property `belowThresholdScores`
91832
+ # @return [Array<Fixnum>]
91833
+ attr_accessor :below_threshold_scores
91834
+
91287
91835
  # Map of imageid key to ImageIntentScores, for images on cdoc.doc_images
91288
91836
  # Corresponds to the JSON property `imageIntentScores`
91289
91837
  # @return [Hash<String,Google::Apis::ContentwarehouseV1::QualityOrbitAsteroidBeltImageIntentScores>]
@@ -91315,6 +91863,8 @@ module Google
91315
91863
 
91316
91864
  # Update properties of this object
91317
91865
  def update!(**args)
91866
+ @below_threshold_intents = args[:below_threshold_intents] if args.key?(:below_threshold_intents)
91867
+ @below_threshold_scores = args[:below_threshold_scores] if args.key?(:below_threshold_scores)
91318
91868
  @image_intent_scores = args[:image_intent_scores] if args.key?(:image_intent_scores)
91319
91869
  @intents = args[:intents] if args.key?(:intents)
91320
91870
  @scores = args[:scores] if args.key?(:scores)
@@ -94777,26 +95327,6 @@ module Google
94777
95327
  end
94778
95328
  end
94779
95329
 
94780
- #
94781
- class QualityTimebasedOldnessInfo
94782
- include Google::Apis::Core::Hashable
94783
-
94784
- # Set to true if this page is considered old.
94785
- # Corresponds to the JSON property `isOldPage`
94786
- # @return [Boolean]
94787
- attr_accessor :is_old_page
94788
- alias_method :is_old_page?, :is_old_page
94789
-
94790
- def initialize(**args)
94791
- update!(**args)
94792
- end
94793
-
94794
- # Update properties of this object
94795
- def update!(**args)
94796
- @is_old_page = args[:is_old_page] if args.key?(:is_old_page)
94797
- end
94798
- end
94799
-
94800
95330
  #
94801
95331
  class QualityTimebasedPageType
94802
95332
  include Google::Apis::Core::Hashable
@@ -97319,11 +97849,6 @@ module Google
97319
97849
  class RepositoryWebrefDocumentMetadata
97320
97850
  include Google::Apis::Core::Hashable
97321
97851
 
97322
- # This is proto2's version of MessageSet.
97323
- # Corresponds to the JSON property `cdocAttachments`
97324
- # @return [Google::Apis::ContentwarehouseV1::Proto2BridgeMessageSet]
97325
- attr_accessor :cdoc_attachments
97326
-
97327
97852
  # The timestamp of when the document was crawled (if known). Copied from
97328
97853
  # CompositeDoc.Content.CrawlTime.
97329
97854
  # Corresponds to the JSON property `crawlTime`
@@ -97369,13 +97894,6 @@ module Google
97369
97894
  # @return [Float]
97370
97895
  attr_accessor :num_incoming_anchors
97371
97896
 
97372
- # Copies of selected repeated extensions from cdoc, controlled by: --
97373
- # webref_doc_metadata_copy_images (copies the repeated doc_images field (TypeId
97374
- # 8798074), defined in image/search/imagedoc.proto).
97375
- # Corresponds to the JSON property `repeatedCdocAttachments`
97376
- # @return [Array<Google::Apis::ContentwarehouseV1::Proto2BridgeMessageSet>]
97377
- attr_accessor :repeated_cdoc_attachments
97378
-
97379
97897
  # SalientTermSet is a collection of terms (unigrams and bigrams) with associated
97380
97898
  # weights that can describe something. The "salient terms".
97381
97899
  # Corresponds to the JSON property `salientTerms`
@@ -97405,7 +97923,6 @@ module Google
97405
97923
 
97406
97924
  # Update properties of this object
97407
97925
  def update!(**args)
97408
- @cdoc_attachments = args[:cdoc_attachments] if args.key?(:cdoc_attachments)
97409
97926
  @crawl_time = args[:crawl_time] if args.key?(:crawl_time)
97410
97927
  @doc_fp = args[:doc_fp] if args.key?(:doc_fp)
97411
97928
  @doc_id = args[:doc_id] if args.key?(:doc_id)
@@ -97413,7 +97930,6 @@ module Google
97413
97930
  @is_disambiguation_page = args[:is_disambiguation_page] if args.key?(:is_disambiguation_page)
97414
97931
  @language = args[:language] if args.key?(:language)
97415
97932
  @num_incoming_anchors = args[:num_incoming_anchors] if args.key?(:num_incoming_anchors)
97416
- @repeated_cdoc_attachments = args[:repeated_cdoc_attachments] if args.key?(:repeated_cdoc_attachments)
97417
97933
  @salient_terms = args[:salient_terms] if args.key?(:salient_terms)
97418
97934
  @title = args[:title] if args.key?(:title)
97419
97935
  @total_clicks = args[:total_clicks] if args.key?(:total_clicks)
@@ -98991,12 +99507,13 @@ module Google
98991
99507
  end
98992
99508
 
98993
99509
  # A single understood lexicon of the |category| on byte range from |begin_offset|
98994
- # (inclusive) to |end_offset| (exclusive). The byte range could be a subtoken
98995
- # range or span across multiple tokens.
99510
+ # (inclusive) to |end_offset| (exclusive). The offsets are all byte offsets
99511
+ # relative to the full original query and cover both the mentions and
99512
+ # surrounding markers.
98996
99513
  class RepositoryWebrefLexicalRange
98997
99514
  include Google::Apis::Core::Hashable
98998
99515
 
98999
- # Byte offset of the begin of the |category|.
99516
+ # Begin byte offset relative to the full original query.
99000
99517
  # Corresponds to the JSON property `beginOffset`
99001
99518
  # @return [Fixnum]
99002
99519
  attr_accessor :begin_offset
@@ -99011,7 +99528,7 @@ module Google
99011
99528
  # @return [String]
99012
99529
  attr_accessor :direction
99013
99530
 
99014
- # Byte offset of the end of the |category|.
99531
+ # End byte offset relative to the full original query.
99015
99532
  # Corresponds to the JSON property `endOffset`
99016
99533
  # @return [Fixnum]
99017
99534
  attr_accessor :end_offset
@@ -101643,11 +102160,6 @@ module Google
101643
102160
  # @return [Google::Apis::ContentwarehouseV1::RepositoryWebrefPreprocessingUrlMatchingMetadata]
101644
102161
  attr_accessor :matching_metadata
101645
102162
 
101646
- #
101647
- # Corresponds to the JSON property `obsoleteAnchorsWithoutInterwiki`
101648
- # @return [Google::Apis::ContentwarehouseV1::RepositoryWebrefSimplifiedAnchors]
101649
- attr_accessor :obsolete_anchors_without_interwiki
101650
-
101651
102163
  # Encapsulates additional CDoc metadata needed by Refcon.
101652
102164
  # Corresponds to the JSON property `refconDocumentMetadata`
101653
102165
  # @return [Google::Apis::ContentwarehouseV1::RepositoryWebrefRefconRefconDocumentMetadata]
@@ -101679,7 +102191,6 @@ module Google
101679
102191
  @cdoc_container = args[:cdoc_container] if args.key?(:cdoc_container)
101680
102192
  @document_mention_spans = args[:document_mention_spans] if args.key?(:document_mention_spans)
101681
102193
  @matching_metadata = args[:matching_metadata] if args.key?(:matching_metadata)
101682
- @obsolete_anchors_without_interwiki = args[:obsolete_anchors_without_interwiki] if args.key?(:obsolete_anchors_without_interwiki)
101683
102194
  @refcon_document_metadata = args[:refcon_document_metadata] if args.key?(:refcon_document_metadata)
101684
102195
  @source_snapshot_type = args[:source_snapshot_type] if args.key?(:source_snapshot_type)
101685
102196
  @url = args[:url] if args.key?(:url)
@@ -105198,6 +105709,38 @@ module Google
105198
105709
  end
105199
105710
  end
105200
105711
 
105712
+ # S3 based Audio language information about a Watch Page.
105713
+ class S3AudioLanguageS3AudioLanguage
105714
+ include Google::Apis::Core::Hashable
105715
+
105716
+ # Audio language of video classified by Automatic Language Identification. It
105717
+ # corresponds to the langid_result in S3LangIdSignals.
105718
+ # Corresponds to the JSON property `language`
105719
+ # @return [String]
105720
+ attr_accessor :language
105721
+
105722
+ # Confidence interval of the recognized language.
105723
+ # Corresponds to the JSON property `languageConfidence`
105724
+ # @return [String]
105725
+ attr_accessor :language_confidence
105726
+
105727
+ # Type of detected speech.
105728
+ # Corresponds to the JSON property `speechClass`
105729
+ # @return [String]
105730
+ attr_accessor :speech_class
105731
+
105732
+ def initialize(**args)
105733
+ update!(**args)
105734
+ end
105735
+
105736
+ # Update properties of this object
105737
+ def update!(**args)
105738
+ @language = args[:language] if args.key?(:language)
105739
+ @language_confidence = args[:language_confidence] if args.key?(:language_confidence)
105740
+ @speech_class = args[:speech_class] if args.key?(:speech_class)
105741
+ end
105742
+ end
105743
+
105201
105744
  # A proto that stores SafeSearch internal signals that are not exported to
105202
105745
  # clients.
105203
105746
  class SafesearchInternalImageSignals
@@ -105258,6 +105801,17 @@ module Google
105258
105801
  class SafesearchVideoContentSignals
105259
105802
  include Google::Apis::Core::Hashable
105260
105803
 
105804
+ # This is used by Amarna to determine whether it should notify Raffia for
105805
+ # immediate reprocessing. This field will be generated in Amarna's
105806
+ # image_metadata corpus and exported to references_video_search corpus and
105807
+ # written to ExportState.module_state.critical_metadata_checksum for determining
105808
+ # whether Amarna should immediately notify Raffia whenever
105809
+ # is_abuse_with_high_confidence's value changes.
105810
+ # Corresponds to the JSON property `isAbuseWithHighConfidence`
105811
+ # @return [Boolean]
105812
+ attr_accessor :is_abuse_with_high_confidence
105813
+ alias_method :is_abuse_with_high_confidence?, :is_abuse_with_high_confidence
105814
+
105261
105815
  #
105262
105816
  # Corresponds to the JSON property `scores`
105263
105817
  # @return [Hash<String,Float>]
@@ -105288,6 +105842,7 @@ module Google
105288
105842
 
105289
105843
  # Update properties of this object
105290
105844
  def update!(**args)
105845
+ @is_abuse_with_high_confidence = args[:is_abuse_with_high_confidence] if args.key?(:is_abuse_with_high_confidence)
105291
105846
  @scores = args[:scores] if args.key?(:scores)
105292
105847
  @version_tag = args[:version_tag] if args.key?(:version_tag)
105293
105848
  @video_classifier_output = args[:video_classifier_output] if args.key?(:video_classifier_output)
@@ -107324,6 +107879,11 @@ module Google
107324
107879
  # @return [Google::Apis::ContentwarehouseV1::SearchPolicyRankableSensitivityFollowOn]
107325
107880
  attr_accessor :followon
107326
107881
 
107882
+ # Marks that sensitivity is from a Grounding Provider.
107883
+ # Corresponds to the JSON property `groundingProvider`
107884
+ # @return [Google::Apis::ContentwarehouseV1::SearchPolicyRankableSensitivityGroundingProvider]
107885
+ attr_accessor :grounding_provider
107886
+
107327
107887
  # Deprecated, do not use.
107328
107888
  # Corresponds to the JSON property `prefilter`
107329
107889
  # @return [Google::Apis::ContentwarehouseV1::SearchPolicyRankableSensitivityPrefilter]
@@ -107339,7 +107899,7 @@ module Google
107339
107899
  # @return [String]
107340
107900
  attr_accessor :sensitivity_mode
107341
107901
 
107342
- # Marks that this sensitivity is form a synthetic intent.
107902
+ # Marks that this sensitivity is from a synthetic intent.
107343
107903
  # Corresponds to the JSON property `syntheticIntent`
107344
107904
  # @return [Google::Apis::ContentwarehouseV1::SearchPolicyRankableSensitivitySyntheticIntent]
107345
107905
  attr_accessor :synthetic_intent
@@ -107359,6 +107919,7 @@ module Google
107359
107919
  @attentional_entity = args[:attentional_entity] if args.key?(:attentional_entity)
107360
107920
  @dasher_user = args[:dasher_user] if args.key?(:dasher_user)
107361
107921
  @followon = args[:followon] if args.key?(:followon)
107922
+ @grounding_provider = args[:grounding_provider] if args.key?(:grounding_provider)
107362
107923
  @prefilter = args[:prefilter] if args.key?(:prefilter)
107363
107924
  @qu = args[:qu] if args.key?(:qu)
107364
107925
  @sensitivity_mode = args[:sensitivity_mode] if args.key?(:sensitivity_mode)
@@ -107435,6 +107996,19 @@ module Google
107435
107996
  end
107436
107997
  end
107437
107998
 
107999
+ # Marks that sensitivity is from a Grounding Provider.
108000
+ class SearchPolicyRankableSensitivityGroundingProvider
108001
+ include Google::Apis::Core::Hashable
108002
+
108003
+ def initialize(**args)
108004
+ update!(**args)
108005
+ end
108006
+
108007
+ # Update properties of this object
108008
+ def update!(**args)
108009
+ end
108010
+ end
108011
+
107438
108012
  # Deprecated, do not use.
107439
108013
  class SearchPolicyRankableSensitivityPrefilter
107440
108014
  include Google::Apis::Core::Hashable
@@ -107486,7 +108060,7 @@ module Google
107486
108060
  end
107487
108061
  end
107488
108062
 
107489
- # Marks that this sensitivity is form a synthetic intent.
108063
+ # Marks that this sensitivity is from a synthetic intent.
107490
108064
  class SearchPolicyRankableSensitivitySyntheticIntent
107491
108065
  include Google::Apis::Core::Hashable
107492
108066
 
@@ -108774,11 +109348,22 @@ module Google
108774
109348
  # @return [Fixnum]
108775
109349
  attr_accessor :inferred_image_id
108776
109350
 
109351
+ #
109352
+ # Corresponds to the JSON property `inferredImageSource`
109353
+ # @return [String]
109354
+ attr_accessor :inferred_image_source
109355
+
108777
109356
  #
108778
109357
  # Corresponds to the JSON property `inferredImageType`
108779
109358
  # @return [String]
108780
109359
  attr_accessor :inferred_image_type
108781
109360
 
109361
+ # This field will only be populated if the inferred image is a neardup of an
109362
+ # inferred image. It stores the type and source of the images it is a neardup of.
109363
+ # Corresponds to the JSON property `neardupInfo`
109364
+ # @return [Array<Google::Apis::ContentwarehouseV1::ShoppingWebentityShoppingAnnotationInferredImageNeardupInfo>]
109365
+ attr_accessor :neardup_info
109366
+
108782
109367
  def initialize(**args)
108783
109368
  update!(**args)
108784
109369
  end
@@ -108786,6 +109371,33 @@ module Google
108786
109371
  # Update properties of this object
108787
109372
  def update!(**args)
108788
109373
  @inferred_image_id = args[:inferred_image_id] if args.key?(:inferred_image_id)
109374
+ @inferred_image_source = args[:inferred_image_source] if args.key?(:inferred_image_source)
109375
+ @inferred_image_type = args[:inferred_image_type] if args.key?(:inferred_image_type)
109376
+ @neardup_info = args[:neardup_info] if args.key?(:neardup_info)
109377
+ end
109378
+ end
109379
+
109380
+ #
109381
+ class ShoppingWebentityShoppingAnnotationInferredImageNeardupInfo
109382
+ include Google::Apis::Core::Hashable
109383
+
109384
+ #
109385
+ # Corresponds to the JSON property `inferredImageSource`
109386
+ # @return [String]
109387
+ attr_accessor :inferred_image_source
109388
+
109389
+ #
109390
+ # Corresponds to the JSON property `inferredImageType`
109391
+ # @return [String]
109392
+ attr_accessor :inferred_image_type
109393
+
109394
+ def initialize(**args)
109395
+ update!(**args)
109396
+ end
109397
+
109398
+ # Update properties of this object
109399
+ def update!(**args)
109400
+ @inferred_image_source = args[:inferred_image_source] if args.key?(:inferred_image_source)
108789
109401
  @inferred_image_type = args[:inferred_image_type] if args.key?(:inferred_image_type)
108790
109402
  end
108791
109403
  end
@@ -109017,7 +109629,7 @@ module Google
109017
109629
  attr_accessor :deprecated_mobile_homepage_docid
109018
109630
 
109019
109631
  # Indicates if the page is violating mobile ads density interstitial policy and
109020
- # the voilation strength. See go/interstitials-for-ads and http://ariane/268642
109632
+ # the violation strength. See go/interstitials-for-ads and http://ariane/268642
109021
109633
  # for details. To save indexing space, we convert the double values in [0.0, 1.0]
109022
109634
  # to intergers in range [0, 1000] by using floor(value * 1000).
109023
109635
  # Corresponds to the JSON property `adsDensityInterstitialViolationStrength`
@@ -109404,7 +110016,7 @@ module Google
109404
110016
  end
109405
110017
  end
109406
110018
 
109407
- # Next ID: 14
110019
+ # Next ID: 15
109408
110020
  class SnippetExtraInfoSnippetCandidateInfo
109409
110021
  include Google::Apis::Core::Hashable
109410
110022
 
@@ -109413,6 +110025,11 @@ module Google
109413
110025
  # @return [Array<Google::Apis::ContentwarehouseV1::QualitySnippetsTruncationSnippetBoldedRange>]
109414
110026
  attr_accessor :bolded_ranges
109415
110027
 
110028
+ # The extended version of this snippet.
110029
+ # Corresponds to the JSON property `extendedSnippet`
110030
+ # @return [Google::Apis::ContentwarehouseV1::SnippetExtraInfoSnippetCandidateInfoExtendedSnippet]
110031
+ attr_accessor :extended_snippet
110032
+
109416
110033
  # Candidate identifier number, unique among all snippet candidates under each
109417
110034
  # document in each request. What does this number mean: - Muppet candidates:
109418
110035
  # This equals to the candidate's rank by Muppet snippets scorer. - Superroot
@@ -109474,6 +110091,7 @@ module Google
109474
110091
  # Update properties of this object
109475
110092
  def update!(**args)
109476
110093
  @bolded_ranges = args[:bolded_ranges] if args.key?(:bolded_ranges)
110094
+ @extended_snippet = args[:extended_snippet] if args.key?(:extended_snippet)
109477
110095
  @id = args[:id] if args.key?(:id)
109478
110096
  @is_muppet_selected_snippet = args[:is_muppet_selected_snippet] if args.key?(:is_muppet_selected_snippet)
109479
110097
  @is_snippet_brain_bolding_triggered = args[:is_snippet_brain_bolding_triggered] if args.key?(:is_snippet_brain_bolding_triggered)
@@ -109486,6 +110104,31 @@ module Google
109486
110104
  end
109487
110105
  end
109488
110106
 
110107
+ # The extended version of this snippet.
110108
+ class SnippetExtraInfoSnippetCandidateInfoExtendedSnippet
110109
+ include Google::Apis::Core::Hashable
110110
+
110111
+ #
110112
+ # Corresponds to the JSON property `numChars`
110113
+ # @return [Fixnum]
110114
+ attr_accessor :num_chars
110115
+
110116
+ #
110117
+ # Corresponds to the JSON property `snippetText`
110118
+ # @return [String]
110119
+ attr_accessor :snippet_text
110120
+
110121
+ def initialize(**args)
110122
+ update!(**args)
110123
+ end
110124
+
110125
+ # Update properties of this object
110126
+ def update!(**args)
110127
+ @num_chars = args[:num_chars] if args.key?(:num_chars)
110128
+ @snippet_text = args[:snippet_text] if args.key?(:snippet_text)
110129
+ end
110130
+ end
110131
+
109489
110132
  # Next ID: 9
109490
110133
  class SnippetExtraInfoSnippetScoringInfo
109491
110134
  include Google::Apis::Core::Hashable
@@ -110428,10 +111071,18 @@ module Google
110428
111071
 
110429
111072
  # A reference to a photo in either Photos Backend or SGI storage. This message
110430
111073
  # should be treated as an opaque blob to avoid a dependency on a specific
110431
- # storage backend.
111074
+ # storage backend. This version of ImageReference is visible outside of SGBE. Do
111075
+ # not add fields that should not be exposed outside of Profile Service and Image
111076
+ # Service.
110432
111077
  class SocialGraphApiProtoImageReference
110433
111078
  include Google::Apis::Core::Hashable
110434
111079
 
111080
+ # Identifies the most recent version of this photo. Use this as a FIFE param (ie
111081
+ # -iv12) to prevent reads of a stale version.
111082
+ # Corresponds to the JSON property `contentVersion`
111083
+ # @return [Fixnum]
111084
+ attr_accessor :content_version
111085
+
110435
111086
  # Unique identifier for the photo. For now, this will always be a Photos Backend
110436
111087
  # media key.
110437
111088
  # Corresponds to the JSON property `mediaId`
@@ -110444,6 +111095,7 @@ module Google
110444
111095
 
110445
111096
  # Update properties of this object
110446
111097
  def update!(**args)
111098
+ @content_version = args[:content_version] if args.key?(:content_version)
110447
111099
  @media_id = args[:media_id] if args.key?(:media_id)
110448
111100
  end
110449
111101
  end
@@ -112795,10 +113447,19 @@ module Google
112795
113447
  # process* the triple. Read: fields below really shouldn't be part of the cross-
112796
113448
  # system Triple proto at all. But because Triple is used both as an internal and
112797
113449
  # an external KG API, we at least want to "hide" those fields that ought to be
112798
- # purely part of the internal source <-> LG contract. Next id: 5
113450
+ # purely part of the internal source <-> LG contract. Next id: 6
112799
113451
  class StorageGraphBfgLivegraphProvenanceMetadata
112800
113452
  include Google::Apis::Core::Hashable
112801
113453
 
113454
+ # If one triple is directly-written after recon by LG without going through
113455
+ # Composer, we add the record id it's from. Otherwise, it's empty. Note: 1) LG
113456
+ # will dedup record ids before updating it. So this field shouldn't see
113457
+ # duplicated record ids. 2) This is used internally by LG only. So if set by
113458
+ # clients, they will be dropped by LG.
113459
+ # Corresponds to the JSON property `directWriteRecordIds`
113460
+ # @return [Array<String>]
113461
+ attr_accessor :direct_write_record_ids
113462
+
112802
113463
  # Identifies the LG internal writers that asserted the triple. This is the same
112803
113464
  # as 'origin_id' in LG. This will only be populated by the LG writers to
112804
113465
  # FactStore
@@ -112851,6 +113512,7 @@ module Google
112851
113512
 
112852
113513
  # Update properties of this object
112853
113514
  def update!(**args)
113515
+ @direct_write_record_ids = args[:direct_write_record_ids] if args.key?(:direct_write_record_ids)
112854
113516
  @lg_internal_writer_id = args[:lg_internal_writer_id] if args.key?(:lg_internal_writer_id)
112855
113517
  @provenance_only_addition = args[:provenance_only_addition] if args.key?(:provenance_only_addition)
112856
113518
  @triangulation_key = args[:triangulation_key] if args.key?(:triangulation_key)
@@ -112980,6 +113642,12 @@ module Google
112980
113642
  # @return [Google::Apis::ContentwarehouseV1::StorageGraphBfgLmsPolicyMetadata]
112981
113643
  attr_accessor :lms_policy_metadata
112982
113644
 
113645
+ # This triple is protected by the policies with PolicyDataScope identified by
113646
+ # these global unique ids.
113647
+ # Corresponds to the JSON property `policyDataScopeKeys`
113648
+ # @return [Array<Fixnum>]
113649
+ attr_accessor :policy_data_scope_keys
113650
+
112983
113651
  # Policy metadata are VERTICAL by default. Vertical policy makers / providers
112984
113652
  # does not need to set this field explicitly.
112985
113653
  # Corresponds to the JSON property `policySourceType`
@@ -113005,6 +113673,7 @@ module Google
113005
113673
  @legal_allowed_regions = args[:legal_allowed_regions] if args.key?(:legal_allowed_regions)
113006
113674
  @legal_removal_regions = args[:legal_removal_regions] if args.key?(:legal_removal_regions)
113007
113675
  @lms_policy_metadata = args[:lms_policy_metadata] if args.key?(:lms_policy_metadata)
113676
+ @policy_data_scope_keys = args[:policy_data_scope_keys] if args.key?(:policy_data_scope_keys)
113008
113677
  @policy_source_type = args[:policy_source_type] if args.key?(:policy_source_type)
113009
113678
  @ump_policy_metadata = args[:ump_policy_metadata] if args.key?(:ump_policy_metadata)
113010
113679
  end
@@ -113147,7 +113816,7 @@ module Google
113147
113816
  # process* the triple. Read: fields below really shouldn't be part of the cross-
113148
113817
  # system Triple proto at all. But because Triple is used both as an internal and
113149
113818
  # an external KG API, we at least want to "hide" those fields that ought to be
113150
- # purely part of the internal source <-> LG contract. Next id: 5
113819
+ # purely part of the internal source <-> LG contract. Next id: 6
113151
113820
  # Corresponds to the JSON property `lgMetadata`
113152
113821
  # @return [Google::Apis::ContentwarehouseV1::StorageGraphBfgLivegraphProvenanceMetadata]
113153
113822
  attr_accessor :lg_metadata
@@ -117322,7 +117991,7 @@ module Google
117322
117991
  end
117323
117992
  end
117324
117993
 
117325
- # Contains anchor level features that apply to all anchor types. Next id: 18.
117994
+ # Contains anchor level features that apply to all anchor types. Next id: 22.
117326
117995
  class VideoContentSearchAnchorCommonFeatureSet
117327
117996
  include Google::Apis::Core::Hashable
117328
117997
 
@@ -117332,6 +118001,16 @@ module Google
117332
118001
  # @return [Float]
117333
118002
  attr_accessor :anchor_qbst_distance
117334
118003
 
118004
+ # Average of babel similarity between the anchor and all asr sentences.
118005
+ # Corresponds to the JSON property `asrAverageBabelSimilarityScore`
118006
+ # @return [Float]
118007
+ attr_accessor :asr_average_babel_similarity_score
118008
+
118009
+ # Maximum babel similarity between the anchor and the asr sentences.
118010
+ # Corresponds to the JSON property `asrMaximumBabelSimilarityScore`
118011
+ # @return [Float]
118012
+ attr_accessor :asr_maximum_babel_similarity_score
118013
+
117335
118014
  # Contains features needed for Bleurt inference.
117336
118015
  # Corresponds to the JSON property `bleurtFeatures`
117337
118016
  # @return [Google::Apis::ContentwarehouseV1::VideoContentSearchBleurtFeatures]
@@ -117347,6 +118026,16 @@ module Google
117347
118026
  # @return [Float]
117348
118027
  attr_accessor :descartes_score_with_title
117349
118028
 
118029
+ # Average of babel similarity between the anchor and all description sentences.
118030
+ # Corresponds to the JSON property `descriptionAverageBabelSimilarityScore`
118031
+ # @return [Float]
118032
+ attr_accessor :description_average_babel_similarity_score
118033
+
118034
+ # Maximum babel similarity between the anchor and the description sentences.
118035
+ # Corresponds to the JSON property `descriptionMaximumBabelSimilarityScore`
118036
+ # @return [Float]
118037
+ attr_accessor :description_maximum_babel_similarity_score
118038
+
117350
118039
  # The predicted descriptiveness and usefulness rating scores generated by the
117351
118040
  # Unified Dolphin model. Rating template: experimental/video/
117352
118041
  # video_anchors_oneside_without_thumbnail/template.jhtml
@@ -117433,9 +118122,13 @@ module Google
117433
118122
  # Update properties of this object
117434
118123
  def update!(**args)
117435
118124
  @anchor_qbst_distance = args[:anchor_qbst_distance] if args.key?(:anchor_qbst_distance)
118125
+ @asr_average_babel_similarity_score = args[:asr_average_babel_similarity_score] if args.key?(:asr_average_babel_similarity_score)
118126
+ @asr_maximum_babel_similarity_score = args[:asr_maximum_babel_similarity_score] if args.key?(:asr_maximum_babel_similarity_score)
117436
118127
  @bleurt_features = args[:bleurt_features] if args.key?(:bleurt_features)
117437
118128
  @bleurt_score = args[:bleurt_score] if args.key?(:bleurt_score)
117438
118129
  @descartes_score_with_title = args[:descartes_score_with_title] if args.key?(:descartes_score_with_title)
118130
+ @description_average_babel_similarity_score = args[:description_average_babel_similarity_score] if args.key?(:description_average_babel_similarity_score)
118131
+ @description_maximum_babel_similarity_score = args[:description_maximum_babel_similarity_score] if args.key?(:description_maximum_babel_similarity_score)
117439
118132
  @dolphin_descriptiveness_score = args[:dolphin_descriptiveness_score] if args.key?(:dolphin_descriptiveness_score)
117440
118133
  @dolphin_ensemble_score = args[:dolphin_ensemble_score] if args.key?(:dolphin_ensemble_score)
117441
118134
  @dolphin_features = args[:dolphin_features] if args.key?(:dolphin_features)
@@ -121366,7 +122059,7 @@ module Google
121366
122059
  class VideoContentSearchVideoAnchorScoreInfo
121367
122060
  include Google::Apis::Core::Hashable
121368
122061
 
121369
- # Contains anchor level features that apply to all anchor types. Next id: 18.
122062
+ # Contains anchor level features that apply to all anchor types. Next id: 22.
121370
122063
  # Corresponds to the JSON property `anchorCommonFeatureSet`
121371
122064
  # @return [Google::Apis::ContentwarehouseV1::VideoContentSearchAnchorCommonFeatureSet]
121372
122065
  attr_accessor :anchor_common_feature_set