google-apis-contentwarehouse_v1 0.16.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3145,6 +3145,33 @@ module Google
3145
3145
  end
3146
3146
  end
3147
3147
 
3148
+ # Contact level People Prompt settings. This message is a pure wrapper of the
3149
+ # shared ContactPromptSettings message so that it can be a top-level person
3150
+ # field. No other fields should be added to the message.
3151
+ class AppsPeopleOzExternalMergedpeopleapiContactPromptSettingsInfo
3152
+ include Google::Apis::Core::Hashable
3153
+
3154
+ #
3155
+ # Corresponds to the JSON property `contactPromptSettings`
3156
+ # @return [Google::Apis::ContentwarehouseV1::SocialGraphApiProtoContactPromptSettings]
3157
+ attr_accessor :contact_prompt_settings
3158
+
3159
+ # Metadata for a single Person field. See go/understanding-merged-person
3160
+ # Corresponds to the JSON property `metadata`
3161
+ # @return [Google::Apis::ContentwarehouseV1::AppsPeopleOzExternalMergedpeopleapiPersonFieldMetadata]
3162
+ attr_accessor :metadata
3163
+
3164
+ def initialize(**args)
3165
+ update!(**args)
3166
+ end
3167
+
3168
+ # Update properties of this object
3169
+ def update!(**args)
3170
+ @contact_prompt_settings = args[:contact_prompt_settings] if args.key?(:contact_prompt_settings)
3171
+ @metadata = args[:metadata] if args.key?(:metadata)
3172
+ end
3173
+ end
3174
+
3148
3175
  # Contact state and related metadata. See go/fbs-contacts-trash. This message is
3149
3176
  # a pure wrapper of the shared ContactState message so that it can be a top-
3150
3177
  # level person field. No other fields should be added to the message.
@@ -6016,6 +6043,11 @@ module Google
6016
6043
  # @return [Array<Google::Apis::ContentwarehouseV1::AppsPeopleOzExternalMergedpeopleapiContactGroupMembership>]
6017
6044
  attr_accessor :contact_group_membership
6018
6045
 
6046
+ #
6047
+ # Corresponds to the JSON property `contactPromptSettingsInfo`
6048
+ # @return [Array<Google::Apis::ContentwarehouseV1::AppsPeopleOzExternalMergedpeopleapiContactPromptSettingsInfo>]
6049
+ attr_accessor :contact_prompt_settings_info
6050
+
6019
6051
  # Contact state and related metadata. See go/fbs-contacts-trash. If this field
6020
6052
  # was requested but is not set on the Person then the contact is in the DEFAULT
6021
6053
  # contact state. This field is read-only, and should not be set on a mutate (e.g.
@@ -6369,6 +6401,7 @@ module Google
6369
6401
  @contact_create_context_info = args[:contact_create_context_info] if args.key?(:contact_create_context_info)
6370
6402
  @contact_edit_context_info = args[:contact_edit_context_info] if args.key?(:contact_edit_context_info)
6371
6403
  @contact_group_membership = args[:contact_group_membership] if args.key?(:contact_group_membership)
6404
+ @contact_prompt_settings_info = args[:contact_prompt_settings_info] if args.key?(:contact_prompt_settings_info)
6372
6405
  @contact_state_info = args[:contact_state_info] if args.key?(:contact_state_info)
6373
6406
  @cover_photo = args[:cover_photo] if args.key?(:cover_photo)
6374
6407
  @custom_schema_field = args[:custom_schema_field] if args.key?(:custom_schema_field)
@@ -8990,34 +9023,6 @@ module Google
8990
9023
  end
8991
9024
  end
8992
9025
 
8993
- # Access settings for providers.
8994
- class AssistantApiAccessControlOutput
8995
- include Google::Apis::Core::Hashable
8996
-
8997
- # If true, the user consented to use YouTube Kids as a video provider for non-
8998
- # unicorn users(voice recognized adults or guest). Unicorn accounts shouldn’t
8999
- # use this setting.
9000
- # Corresponds to the JSON property `allowNonUnicornUserAccessYoutubeKids`
9001
- # @return [Boolean]
9002
- attr_accessor :allow_non_unicorn_user_access_youtube_kids
9003
- alias_method :allow_non_unicorn_user_access_youtube_kids?, :allow_non_unicorn_user_access_youtube_kids
9004
-
9005
- #
9006
- # Corresponds to the JSON property `guestAccessOnYoutube`
9007
- # @return [String]
9008
- attr_accessor :guest_access_on_youtube
9009
-
9010
- def initialize(**args)
9011
- update!(**args)
9012
- end
9013
-
9014
- # Update properties of this object
9015
- def update!(**args)
9016
- @allow_non_unicorn_user_access_youtube_kids = args[:allow_non_unicorn_user_access_youtube_kids] if args.key?(:allow_non_unicorn_user_access_youtube_kids)
9017
- @guest_access_on_youtube = args[:guest_access_on_youtube] if args.key?(:guest_access_on_youtube)
9018
- end
9019
- end
9020
-
9021
9026
  # The features supported by the ActionV2 protocol. Note that after we move on to
9022
9027
  # ConversationProto for all surfaces we can remove this message.
9023
9028
  class AssistantApiActionV2SupportedFeatures
@@ -9281,6 +9286,15 @@ module Google
9281
9286
  # @return [String]
9282
9287
  attr_accessor :enabled
9283
9288
 
9289
+ # If true, disable send message AppControl/SD flow. This is needed to suppress
9290
+ # the feature for specific device. If we decide to turn down this feature for
9291
+ # all devices, then this field will become obsolete and should be removed. See
9292
+ # context in b/275727627.
9293
+ # Corresponds to the JSON property `sendMessageSuppressed`
9294
+ # @return [Boolean]
9295
+ attr_accessor :send_message_suppressed
9296
+ alias_method :send_message_suppressed?, :send_message_suppressed
9297
+
9284
9298
  def initialize(**args)
9285
9299
  update!(**args)
9286
9300
  end
@@ -9288,6 +9302,7 @@ module Google
9288
9302
  # Update properties of this object
9289
9303
  def update!(**args)
9290
9304
  @enabled = args[:enabled] if args.key?(:enabled)
9305
+ @send_message_suppressed = args[:send_message_suppressed] if args.key?(:send_message_suppressed)
9291
9306
  end
9292
9307
  end
9293
9308
 
@@ -9456,7 +9471,7 @@ module Google
9456
9471
  # @return [Array<String>]
9457
9472
  attr_accessor :supported_recipient_types
9458
9473
 
9459
- # Whether the surface supports Duo calling email endpoints.
9474
+ #
9460
9475
  # Corresponds to the JSON property `supportsDuoEmailEndpoint`
9461
9476
  # @return [Boolean]
9462
9477
  attr_accessor :supports_duo_email_endpoint
@@ -11439,6 +11454,84 @@ module Google
11439
11454
  end
11440
11455
  end
11441
11456
 
11457
+ # The set of information that helps the server identify the surface. This
11458
+ # replaces the User-Agent string within the Assistant Server. Note: The
11459
+ # SurfaceIdentity proto should only be used to derive the capabilities of a
11460
+ # surface. It should not be accessed outside of the CapabilityBuilder or
11461
+ # CapabilityChecker. NEXT ID: 5 LINT.IfChange
11462
+ class AssistantApiCoreTypesGovernedSurfaceIdentity
11463
+ include Google::Apis::Core::Hashable
11464
+
11465
+ # LINT.IfChange(DeviceId) Specifies identifier of a device AKA surface. Note
11466
+ # there may be multiple device ids for the same physical device E.g. Allo app
11467
+ # and Assistant app on Nexus. Note: DeviceId usage is complicated. Please do not
11468
+ # depend on it for surface specific logic. Please use google3/assistant/api/
11469
+ # capabilities.proto instead. IMPORTANT: When checking for equality between two `
11470
+ # DeviceId`s, you should always use an `isSameDevice`As`` function to check for
11471
+ # equality, as deep equality between `DeviceId`'s is not guaranteed. * C++: http:
11472
+ # //google3/assistant/assistant_server/util/device_id_util.cc;l=23;rcl=421295740
11473
+ # * Dart: http://google3/assistant/context/util/lib/device_id.dart;l=26;rcl=
11474
+ # 442126145 * Java: http://google3/java/com/google/assistant/assistantserver/
11475
+ # utils/DeviceIdHelper.java;l=9;rcl=390378522 See http://go/deviceid-equality
11476
+ # for more details. Next ID: 14
11477
+ # Corresponds to the JSON property `deviceId`
11478
+ # @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesDeviceId]
11479
+ attr_accessor :device_id
11480
+
11481
+ # The device's surface type. The types are defined at google3/assistant/api/
11482
+ # core_types/surfaces.gcl.
11483
+ # Corresponds to the JSON property `surfaceType`
11484
+ # @return [String]
11485
+ attr_accessor :surface_type
11486
+
11487
+ # The version of the surface/client. New surfaces are encouraged to only use the
11488
+ # “major” field to keep track of version number. The “minor” field may be used
11489
+ # for surfaces that rely on both the “major” and “minor” fields to define their
11490
+ # version.
11491
+ # Corresponds to the JSON property `surfaceVersion`
11492
+ # @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesGovernedSurfaceVersion]
11493
+ attr_accessor :surface_version
11494
+
11495
+ def initialize(**args)
11496
+ update!(**args)
11497
+ end
11498
+
11499
+ # Update properties of this object
11500
+ def update!(**args)
11501
+ @device_id = args[:device_id] if args.key?(:device_id)
11502
+ @surface_type = args[:surface_type] if args.key?(:surface_type)
11503
+ @surface_version = args[:surface_version] if args.key?(:surface_version)
11504
+ end
11505
+ end
11506
+
11507
+ # The version of the surface/client. New surfaces are encouraged to only use the
11508
+ # “major” field to keep track of version number. The “minor” field may be used
11509
+ # for surfaces that rely on both the “major” and “minor” fields to define their
11510
+ # version.
11511
+ class AssistantApiCoreTypesGovernedSurfaceVersion
11512
+ include Google::Apis::Core::Hashable
11513
+
11514
+ #
11515
+ # Corresponds to the JSON property `major`
11516
+ # @return [Fixnum]
11517
+ attr_accessor :major
11518
+
11519
+ #
11520
+ # Corresponds to the JSON property `minor`
11521
+ # @return [Fixnum]
11522
+ attr_accessor :minor
11523
+
11524
+ def initialize(**args)
11525
+ update!(**args)
11526
+ end
11527
+
11528
+ # Update properties of this object
11529
+ def update!(**args)
11530
+ @major = args[:major] if args.key?(:major)
11531
+ @minor = args[:minor] if args.key?(:minor)
11532
+ end
11533
+ end
11534
+
11442
11535
  # The Home app information of the provider. Next ID: 3
11443
11536
  class AssistantApiCoreTypesHomeAppInfo
11444
11537
  include Google::Apis::Core::Hashable
@@ -11679,8 +11772,9 @@ module Google
11679
11772
  end
11680
11773
  end
11681
11774
 
11682
- # This proto captures the contents of a messaging app notification that is
11683
- # typically part of a conversation thread. Next Id: 20
11775
+ # LINT.IfChange(ungoverned_message_notification) This proto captures the
11776
+ # contents of a messaging app notification that is typically part of a
11777
+ # conversation thread. Next Id: 20
11684
11778
  class AssistantApiCoreTypesMessageNotification
11685
11779
  include Google::Apis::Core::Hashable
11686
11780
 
@@ -11821,16 +11915,22 @@ module Google
11821
11915
  end
11822
11916
 
11823
11917
  # Structure of each notification in the MessageNotification Bundle. Attribute
11824
- # sender_name could be different in case of group messages. Next Id: 6
11918
+ # sender_name could be different in case of group messages. Next Id: 8
11825
11919
  class AssistantApiCoreTypesMessageNotificationNotificationEntry
11826
11920
  include Google::Apis::Core::Hashable
11827
11921
 
11922
+ # Count of characters in the message body in the notification.
11923
+ # Corresponds to the JSON property `charCount`
11924
+ # @return [Fixnum]
11925
+ attr_accessor :char_count
11926
+
11828
11927
  # Uri for the attachment (image, audio, video etc.).
11829
11928
  # Corresponds to the JSON property `dataUri`
11830
11929
  # @return [String]
11831
11930
  attr_accessor :data_uri
11832
11931
 
11833
- # Content of the message body in the notification.
11932
+ # Note that this is not present in production traffic. Content of the message
11933
+ # body in the notification.
11834
11934
  # Corresponds to the JSON property `messageBody`
11835
11935
  # @return [String]
11836
11936
  attr_accessor :message_body
@@ -11851,17 +11951,24 @@ module Google
11851
11951
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesMessageNotificationPerson]
11852
11952
  attr_accessor :sender
11853
11953
 
11954
+ # Count of words in the message body in the notification.
11955
+ # Corresponds to the JSON property `wordCount`
11956
+ # @return [Fixnum]
11957
+ attr_accessor :word_count
11958
+
11854
11959
  def initialize(**args)
11855
11960
  update!(**args)
11856
11961
  end
11857
11962
 
11858
11963
  # Update properties of this object
11859
11964
  def update!(**args)
11965
+ @char_count = args[:char_count] if args.key?(:char_count)
11860
11966
  @data_uri = args[:data_uri] if args.key?(:data_uri)
11861
11967
  @message_body = args[:message_body] if args.key?(:message_body)
11862
11968
  @mime_type = args[:mime_type] if args.key?(:mime_type)
11863
11969
  @post_time = args[:post_time] if args.key?(:post_time)
11864
11970
  @sender = args[:sender] if args.key?(:sender)
11971
+ @word_count = args[:word_count] if args.key?(:word_count)
11865
11972
  end
11866
11973
  end
11867
11974
 
@@ -12484,7 +12591,7 @@ module Google
12484
12591
  attr_accessor :location
12485
12592
 
12486
12593
  # Data which is produced for logging and debugging. Servers MUST NOT use this
12487
- # for any other purposes, such as branching on it. Next ID: 15
12594
+ # for any other purposes, such as branching on it. Next ID: 16
12488
12595
  # Corresponds to the JSON property `loggingOnlyData`
12489
12596
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiLoggingOnlyData]
12490
12597
  attr_accessor :logging_only_data
@@ -12551,7 +12658,7 @@ module Google
12551
12658
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiSoftwareCapabilities]
12552
12659
  attr_accessor :software
12553
12660
 
12554
- # DEPRECATED These capabilties are associated with speech detection on devices.
12661
+ # DEPRECATED These capabilities are associated with speech detection on devices.
12555
12662
  # Corresponds to the JSON property `speechCapabilities`
12556
12663
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiSpeechCapabilities]
12557
12664
  attr_accessor :speech_capabilities
@@ -12846,7 +12953,7 @@ module Google
12846
12953
  end
12847
12954
  end
12848
12955
 
12849
- # DEPRECATED: Use AccessControlOutput instead. Access settings for guests.
12956
+ # Access settings for guests.
12850
12957
  class AssistantApiGuestAccessOutput
12851
12958
  include Google::Apis::Core::Hashable
12852
12959
 
@@ -13238,8 +13345,8 @@ module Google
13238
13345
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesProvider]
13239
13346
  attr_accessor :provider_info
13240
13347
 
13241
- # An provider enum string for OTT providers. The available key can be found in
13242
- # go/ump-provider-enum For Tuner provider, the provider key would be an ID the
13348
+ # A provider enum string for OTT providers. The available key can be found in go/
13349
+ # ump-provider-enum For Tuner provider, the provider key would be an ID the
13243
13350
  # tuner app uploaded from TIF. See https://source.android.com/devices/tv
13244
13351
  # Corresponds to the JSON property `providerKey`
13245
13352
  # @return [String]
@@ -13283,18 +13390,10 @@ module Google
13283
13390
  end
13284
13391
 
13285
13392
  # Data which is produced for logging and debugging. Servers MUST NOT use this
13286
- # for any other purposes, such as branching on it. Next ID: 15
13393
+ # for any other purposes, such as branching on it. Next ID: 16
13287
13394
  class AssistantApiLoggingOnlyData
13288
13395
  include Google::Apis::Core::Hashable
13289
13396
 
13290
- # The index of the account on the device. Useful when there are multiple
13291
- # accounts on a device such as distinguishing primary user data from secondary
13292
- # users. There is no guarantee that this is a stable number but is relatively
13293
- # stable in practice.
13294
- # Corresponds to the JSON property `accountIndex`
13295
- # @return [Fixnum]
13296
- attr_accessor :account_index
13297
-
13298
13397
  # A user-readable string describing the ACP version (go/acp-version) of the
13299
13398
  # client app used by the user to originate the conversation.
13300
13399
  # Corresponds to the JSON property `acpVersion`
@@ -13354,6 +13453,14 @@ module Google
13354
13453
  # @return [String]
13355
13454
  attr_accessor :initial_app_version
13356
13455
 
13456
+ # Boolean field to indicate whether a certain user is the primary user of a
13457
+ # device or not. This is useful for distinguishing the user0 from other users
13458
+ # given user0 might have certain privileges (Eg: Hubmode on Tangor)
13459
+ # Corresponds to the JSON property `isPrimaryUser`
13460
+ # @return [Boolean]
13461
+ attr_accessor :is_primary_user
13462
+ alias_method :is_primary_user?, :is_primary_user
13463
+
13357
13464
  # default display name of device over mdns. This is specified at the factory,
13358
13465
  # not specified by the user.
13359
13466
  # Corresponds to the JSON property `mdnsDisplayName`
@@ -13377,7 +13484,6 @@ module Google
13377
13484
 
13378
13485
  # Update properties of this object
13379
13486
  def update!(**args)
13380
- @account_index = args[:account_index] if args.key?(:account_index)
13381
13487
  @acp_version = args[:acp_version] if args.key?(:acp_version)
13382
13488
  @android_id = args[:android_id] if args.key?(:android_id)
13383
13489
  @app_version = args[:app_version] if args.key?(:app_version)
@@ -13388,6 +13494,7 @@ module Google
13388
13494
  @device_model = args[:device_model] if args.key?(:device_model)
13389
13495
  @embedder_build_info = args[:embedder_build_info] if args.key?(:embedder_build_info)
13390
13496
  @initial_app_version = args[:initial_app_version] if args.key?(:initial_app_version)
13497
+ @is_primary_user = args[:is_primary_user] if args.key?(:is_primary_user)
13391
13498
  @mdns_display_name = args[:mdns_display_name] if args.key?(:mdns_display_name)
13392
13499
  @platform_build = args[:platform_build] if args.key?(:platform_build)
13393
13500
  @virtual_release_channel = args[:virtual_release_channel] if args.key?(:virtual_release_channel)
@@ -13719,17 +13826,12 @@ module Google
13719
13826
  class AssistantApiOutputRestrictions
13720
13827
  include Google::Apis::Core::Hashable
13721
13828
 
13722
- # Access settings for providers.
13723
- # Corresponds to the JSON property `accessControlOutput`
13724
- # @return [Google::Apis::ContentwarehouseV1::AssistantApiAccessControlOutput]
13725
- attr_accessor :access_control_output
13726
-
13727
13829
  # The type of Google Photo content which the device can output.
13728
13830
  # Corresponds to the JSON property `googlePhotoContent`
13729
13831
  # @return [String]
13730
13832
  attr_accessor :google_photo_content
13731
13833
 
13732
- # DEPRECATED: Use AccessControlOutput instead. Access settings for guests.
13834
+ # Access settings for guests.
13733
13835
  # Corresponds to the JSON property `guestAccessOutput`
13734
13836
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiGuestAccessOutput]
13735
13837
  attr_accessor :guest_access_output
@@ -13774,7 +13876,6 @@ module Google
13774
13876
 
13775
13877
  # Update properties of this object
13776
13878
  def update!(**args)
13777
- @access_control_output = args[:access_control_output] if args.key?(:access_control_output)
13778
13879
  @google_photo_content = args[:google_photo_content] if args.key?(:google_photo_content)
13779
13880
  @guest_access_output = args[:guest_access_output] if args.key?(:guest_access_output)
13780
13881
  @personal_data = args[:personal_data] if args.key?(:personal_data)
@@ -13825,14 +13926,6 @@ module Google
13825
13926
  # @return [String]
13826
13927
  attr_accessor :photos_proactive
13827
13928
 
13828
- # Whether a device supports proactive output. Note that this is assumed to be
13829
- # true for all Smart Display devices, but surfaces that newly start supporting
13830
- # proactive_output should set this bit.
13831
- # Corresponds to the JSON property `supportsProactiveOutput`
13832
- # @return [Boolean]
13833
- attr_accessor :supports_proactive_output
13834
- alias_method :supports_proactive_output?, :supports_proactive_output
13835
-
13836
13929
  # Settings for displaying personal data on proactive surfaces with face match
13837
13930
  # capability.
13838
13931
  # Corresponds to the JSON property `userMatchProactive`
@@ -13849,7 +13942,6 @@ module Google
13849
13942
  @android_tv_assistant_settings_source = args[:android_tv_assistant_settings_source] if args.key?(:android_tv_assistant_settings_source)
13850
13943
  @health_and_fitness_proactive = args[:health_and_fitness_proactive] if args.key?(:health_and_fitness_proactive)
13851
13944
  @photos_proactive = args[:photos_proactive] if args.key?(:photos_proactive)
13852
- @supports_proactive_output = args[:supports_proactive_output] if args.key?(:supports_proactive_output)
13853
13945
  @user_match_proactive = args[:user_match_proactive] if args.key?(:user_match_proactive)
13854
13946
  end
13855
13947
  end
@@ -14069,7 +14161,7 @@ module Google
14069
14161
  # @return [Array<String>]
14070
14162
  attr_accessor :supported_screen_states
14071
14163
 
14072
- # Whether the device enabled vision help features in accessiblity settings. The
14164
+ # Whether the device enabled vision help features in accessibility settings. The
14073
14165
  # settings is config in Assistant App and on-device settings, and stored in
14074
14166
  # footprints. When enabled, font, color and TTS will be adjusted.
14075
14167
  # Corresponds to the JSON property `visionHelpEnabled`
@@ -14271,7 +14363,7 @@ module Google
14271
14363
  end
14272
14364
  end
14273
14365
 
14274
- # These capabilties are associated with Assistant Settings on devices.
14366
+ # These capabilities are associated with Assistant Settings on devices.
14275
14367
  class AssistantApiSettingsAppCapabilities
14276
14368
  include Google::Apis::Core::Hashable
14277
14369
 
@@ -14792,6 +14884,13 @@ module Google
14792
14884
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiSettingsDeviceLogsOptIn]
14793
14885
  attr_accessor :opt_in_status
14794
14886
 
14887
+ # DEPRECATED: Use DeviceCapabilities.OutputRestrictions.personal_data instead.
14888
+ # Whether the user has enabled payments for this device.
14889
+ # Corresponds to the JSON property `paymentsEnabled`
14890
+ # @return [Boolean]
14891
+ attr_accessor :payments_enabled
14892
+ alias_method :payments_enabled?, :payments_enabled
14893
+
14795
14894
  # Metadata about how personalization settings were configured.
14796
14895
  # Corresponds to the JSON property `personalizationMetadata`
14797
14896
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiSettingsPersonalizationMetadata]
@@ -14878,14 +14977,6 @@ module Google
14878
14977
  # @return [String]
14879
14978
  attr_accessor :truncated_local_network_id
14880
14979
 
14881
- # DEPRECATED: Use speech_settings instead. Indicates whether the user has
14882
- # enabled trusted voice for this device. See go/hotword-settings-on-cloud for
14883
- # more info on this project.
14884
- # Corresponds to the JSON property `trustedVoiceEnabled`
14885
- # @return [Boolean]
14886
- attr_accessor :trusted_voice_enabled
14887
- alias_method :trusted_voice_enabled?, :trusted_voice_enabled
14888
-
14889
14980
  # The type of the device. Note: this should only be used for grouping devices
14890
14981
  # for UI presentation purpose. Use |capabilities| to decide what the device can
14891
14982
  # do.
@@ -14973,6 +15064,7 @@ module Google
14973
15064
  @oauth_client_id = args[:oauth_client_id] if args.key?(:oauth_client_id)
14974
15065
  @on_device_app_settings = args[:on_device_app_settings] if args.key?(:on_device_app_settings)
14975
15066
  @opt_in_status = args[:opt_in_status] if args.key?(:opt_in_status)
15067
+ @payments_enabled = args[:payments_enabled] if args.key?(:payments_enabled)
14976
15068
  @personalization_metadata = args[:personalization_metadata] if args.key?(:personalization_metadata)
14977
15069
  @polite_mode = args[:polite_mode] if args.key?(:polite_mode)
14978
15070
  @postal_code = args[:postal_code] if args.key?(:postal_code)
@@ -14986,7 +15078,6 @@ module Google
14986
15078
  @tethered_info = args[:tethered_info] if args.key?(:tethered_info)
14987
15079
  @time_zone = args[:time_zone] if args.key?(:time_zone)
14988
15080
  @truncated_local_network_id = args[:truncated_local_network_id] if args.key?(:truncated_local_network_id)
14989
- @trusted_voice_enabled = args[:trusted_voice_enabled] if args.key?(:trusted_voice_enabled)
14990
15081
  @type = args[:type] if args.key?(:type)
14991
15082
  @verbose_tts_for_chromecast_enabled = args[:verbose_tts_for_chromecast_enabled] if args.key?(:verbose_tts_for_chromecast_enabled)
14992
15083
  @vm_last_used_coarse_timestamp = args[:vm_last_used_coarse_timestamp] if args.key?(:vm_last_used_coarse_timestamp)
@@ -15142,7 +15233,7 @@ module Google
15142
15233
  attr_accessor :should_be_linked
15143
15234
  alias_method :should_be_linked?, :should_be_linked
15144
15235
 
15145
- # The call state of the device (i.e. whether an Duo call account has been setup
15236
+ # The call state of the device (i.e. whether a Duo call account has been setup
15146
15237
  # on the device).
15147
15238
  # Corresponds to the JSON property `state`
15148
15239
  # @return [String]
@@ -16662,7 +16753,7 @@ module Google
16662
16753
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiSelinaCapabilites]
16663
16754
  attr_accessor :selina_capabilities
16664
16755
 
16665
- # These capabilties are associated with Assistant Settings on devices.
16756
+ # These capabilities are associated with Assistant Settings on devices.
16666
16757
  # Corresponds to the JSON property `settingsAppCapabilities`
16667
16758
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiSettingsAppCapabilities]
16668
16759
  attr_accessor :settings_app_capabilities
@@ -16673,7 +16764,7 @@ module Google
16673
16764
  attr_accessor :supported_client_op
16674
16765
 
16675
16766
  # These are the set of features that are supported by the device. It's a part of
16676
- # the SoftwareCapabilities of the device. Next ID: 64
16767
+ # the SoftwareCapabilities of the device. Next ID: 66
16677
16768
  # Corresponds to the JSON property `supportedFeatures`
16678
16769
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiSupportedFeatures]
16679
16770
  attr_accessor :supported_features
@@ -16731,7 +16822,7 @@ module Google
16731
16822
  end
16732
16823
  end
16733
16824
 
16734
- # DEPRECATED These capabilties are associated with speech detection on devices.
16825
+ # DEPRECATED These capabilities are associated with speech detection on devices.
16735
16826
  class AssistantApiSpeechCapabilities
16736
16827
  include Google::Apis::Core::Hashable
16737
16828
 
@@ -17067,7 +17158,7 @@ module Google
17067
17158
  end
17068
17159
 
17069
17160
  # These are the set of features that are supported by the device. It's a part of
17070
- # the SoftwareCapabilities of the device. Next ID: 64
17161
+ # the SoftwareCapabilities of the device. Next ID: 66
17071
17162
  class AssistantApiSupportedFeatures
17072
17163
  include Google::Apis::Core::Hashable
17073
17164
 
@@ -17287,6 +17378,12 @@ module Google
17287
17378
  attr_accessor :live_cards_supported
17288
17379
  alias_method :live_cards_supported?, :live_cards_supported
17289
17380
 
17381
+ # Whether the client supports the Lottie animation library for the broadcast
17382
+ # feature.
17383
+ # Corresponds to the JSON property `lottieAnimationSupport`
17384
+ # @return [String]
17385
+ attr_accessor :lottie_animation_support
17386
+
17290
17387
  # Whether the client supports Assistant dialogs within Maps. This field will be
17291
17388
  # set only when the Maps on the surface supports Assistant dialogs embedded
17292
17389
  # within Maps. go/gsa-gmm.
@@ -17361,6 +17458,13 @@ module Google
17361
17458
  attr_accessor :privacy_aware_lockscreen_supported
17362
17459
  alias_method :privacy_aware_lockscreen_supported?, :privacy_aware_lockscreen_supported
17363
17460
 
17461
+ # Whether the client supports tts tapering for the read messages flow. If set to
17462
+ # true the tapered tts variant would be used during the read messages flow.
17463
+ # Corresponds to the JSON property `readMessagesTtsTaperingSupported`
17464
+ # @return [Boolean]
17465
+ attr_accessor :read_messages_tts_tapering_supported
17466
+ alias_method :read_messages_tts_tapering_supported?, :read_messages_tts_tapering_supported
17467
+
17364
17468
  # Whether the client has remote casting enabled. For ex: we want to disable this
17365
17469
  # for clients like Auto.
17366
17470
  # Corresponds to the JSON property `remoteCloudCastingEnabled`
@@ -17532,6 +17636,7 @@ module Google
17532
17636
  @launch_keyboard_supported = args[:launch_keyboard_supported] if args.key?(:launch_keyboard_supported)
17533
17637
  @lens_supported = args[:lens_supported] if args.key?(:lens_supported)
17534
17638
  @live_cards_supported = args[:live_cards_supported] if args.key?(:live_cards_supported)
17639
+ @lottie_animation_support = args[:lottie_animation_support] if args.key?(:lottie_animation_support)
17535
17640
  @maps_dialogs_supported = args[:maps_dialogs_supported] if args.key?(:maps_dialogs_supported)
17536
17641
  @masquerade_mode_supported = args[:masquerade_mode_supported] if args.key?(:masquerade_mode_supported)
17537
17642
  @media_control_support = args[:media_control_support] if args.key?(:media_control_support)
@@ -17542,6 +17647,7 @@ module Google
17542
17647
  @parental_controls_supported = args[:parental_controls_supported] if args.key?(:parental_controls_supported)
17543
17648
  @persistent_display_supported = args[:persistent_display_supported] if args.key?(:persistent_display_supported)
17544
17649
  @privacy_aware_lockscreen_supported = args[:privacy_aware_lockscreen_supported] if args.key?(:privacy_aware_lockscreen_supported)
17650
+ @read_messages_tts_tapering_supported = args[:read_messages_tts_tapering_supported] if args.key?(:read_messages_tts_tapering_supported)
17545
17651
  @remote_cloud_casting_enabled = args[:remote_cloud_casting_enabled] if args.key?(:remote_cloud_casting_enabled)
17546
17652
  @server_generated_feedback_chips_enabled = args[:server_generated_feedback_chips_enabled] if args.key?(:server_generated_feedback_chips_enabled)
17547
17653
  @sh_lock_screen_supported = args[:sh_lock_screen_supported] if args.key?(:sh_lock_screen_supported)
@@ -18261,6 +18367,74 @@ module Google
18261
18367
  end
18262
18368
  end
18263
18369
 
18370
+ # Identifies a business policy used for selecting a given content provider in
18371
+ # the form of a name and a resulting scoring action.
18372
+ class AssistantContextProviderSelectionPolicy
18373
+ include Google::Apis::Core::Hashable
18374
+
18375
+ # Result of applying the policy.
18376
+ # Corresponds to the JSON property `policyAction`
18377
+ # @return [String]
18378
+ attr_accessor :policy_action
18379
+
18380
+ # Name of the policy.
18381
+ # Corresponds to the JSON property `policyName`
18382
+ # @return [String]
18383
+ attr_accessor :policy_name
18384
+
18385
+ def initialize(**args)
18386
+ update!(**args)
18387
+ end
18388
+
18389
+ # Update properties of this object
18390
+ def update!(**args)
18391
+ @policy_action = args[:policy_action] if args.key?(:policy_action)
18392
+ @policy_name = args[:policy_name] if args.key?(:policy_name)
18393
+ end
18394
+ end
18395
+
18396
+ # Message that gets returned from the Provider Selection Library (PSL). It
18397
+ # encodes the scores, applied policies, and pruning decisions for a given
18398
+ # provider candidate.
18399
+ class AssistantContextProviderSelectionResult
18400
+ include Google::Apis::Core::Hashable
18401
+
18402
+ # Alternative bucketed score for use by downstream ranking providers. A raw
18403
+ # numeric score is subject to semantic-drift, while a bucket is not.
18404
+ # Corresponds to the JSON property `bucketedFinalScore`
18405
+ # @return [String]
18406
+ attr_accessor :bucketed_final_score
18407
+
18408
+ # Final score in the range [0,1] that can be used for ranking providers.
18409
+ # Incorporates both policy rules and quality considerations.
18410
+ # Corresponds to the JSON property `finalScore`
18411
+ # @return [Float]
18412
+ attr_accessor :final_score
18413
+
18414
+ # List of business policies applied to the candidate.
18415
+ # Corresponds to the JSON property `policyApplied`
18416
+ # @return [Array<Google::Apis::ContentwarehouseV1::AssistantContextProviderSelectionPolicy>]
18417
+ attr_accessor :policy_applied
18418
+
18419
+ # Indicates whether the candidate should be pruned.
18420
+ # Corresponds to the JSON property `shouldPrune`
18421
+ # @return [Boolean]
18422
+ attr_accessor :should_prune
18423
+ alias_method :should_prune?, :should_prune
18424
+
18425
+ def initialize(**args)
18426
+ update!(**args)
18427
+ end
18428
+
18429
+ # Update properties of this object
18430
+ def update!(**args)
18431
+ @bucketed_final_score = args[:bucketed_final_score] if args.key?(:bucketed_final_score)
18432
+ @final_score = args[:final_score] if args.key?(:final_score)
18433
+ @policy_applied = args[:policy_applied] if args.key?(:policy_applied)
18434
+ @should_prune = args[:should_prune] if args.key?(:should_prune)
18435
+ end
18436
+ end
18437
+
18264
18438
  # Note: As of May 2021, multiple providers use the same mids (e.g. YouTube Main,
18265
18439
  # YouTube Go, and YouTube Music all have the same mids). However, quite often we
18266
18440
  # end up using surface specific identifiers (e.g. Android package names, iOS
@@ -18333,6 +18507,15 @@ module Google
18333
18507
  attr_accessor :restrict_alarms_to_next_day
18334
18508
  alias_method :restrict_alarms_to_next_day?, :restrict_alarms_to_next_day
18335
18509
 
18510
+ # Whether the client supports mutation of any alarm attribute such as
18511
+ # time_pattern, recurrence_pattern, etc through the MUTATE action. If this is
18512
+ # false, MUTATE may only be used for changing the alarm's status (to e.g.
18513
+ # disable or dismiss the alarm).
18514
+ # Corresponds to the JSON property `supportsGenericMutations`
18515
+ # @return [Boolean]
18516
+ attr_accessor :supports_generic_mutations
18517
+ alias_method :supports_generic_mutations?, :supports_generic_mutations
18518
+
18336
18519
  # Whether the client supports the STOP alarm action. If this is false, stop
18337
18520
  # actions will be represented by the MUTATE action, and the device may need to
18338
18521
  # check alarm state to determine if there's a firing alarm that needs to be
@@ -18350,6 +18533,7 @@ module Google
18350
18533
  def update!(**args)
18351
18534
  @max_supported_alarms = args[:max_supported_alarms] if args.key?(:max_supported_alarms)
18352
18535
  @restrict_alarms_to_next_day = args[:restrict_alarms_to_next_day] if args.key?(:restrict_alarms_to_next_day)
18536
+ @supports_generic_mutations = args[:supports_generic_mutations] if args.key?(:supports_generic_mutations)
18353
18537
  @supports_stop_action = args[:supports_stop_action] if args.key?(:supports_stop_action)
18354
18538
  end
18355
18539
  end
@@ -19418,6 +19602,83 @@ module Google
19418
19602
  end
19419
19603
  end
19420
19604
 
19605
+ # Message containing the processed provider signals. This message is consumed by
19606
+ # systems outside of the Provider GP, such as the HGR. For use of provider
19607
+ # signals within the Provider GP, please refer to the CTF-governed
19608
+ # PackedProviderSignals defined in: cs/google3/assistant/context/proto/
19609
+ # packed_provider_signals.proto;rcl=486224300;l=68
19610
+ class AssistantGroundingProviderProviderSignalResult
19611
+ include Google::Apis::Core::Hashable
19612
+
19613
+ # Whether the provider is the default provider for the BII and entity type. Also
19614
+ # known as the 'preferred_provider'.
19615
+ # Corresponds to the JSON property `isDefaultProvider`
19616
+ # @return [Boolean]
19617
+ attr_accessor :is_default_provider
19618
+ alias_method :is_default_provider?, :is_default_provider
19619
+
19620
+ # Whether the provider is currently open in the foreground on the device.
19621
+ # Corresponds to the JSON property `isForegroundProvider`
19622
+ # @return [Boolean]
19623
+ attr_accessor :is_foreground_provider
19624
+ alias_method :is_foreground_provider?, :is_foreground_provider
19625
+
19626
+ # Indicates that fulfillment on this provider will happen within the provider
19627
+ # app
19628
+ # Corresponds to the JSON property `isInAppProvider`
19629
+ # @return [Boolean]
19630
+ attr_accessor :is_in_app_provider
19631
+ alias_method :is_in_app_provider?, :is_in_app_provider
19632
+
19633
+ # Whether the provider is installed, or otherwise reachable, from the device.
19634
+ # Corresponds to the JSON property `isInstalled`
19635
+ # @return [Boolean]
19636
+ attr_accessor :is_installed
19637
+ alias_method :is_installed?, :is_installed
19638
+
19639
+ # Whether the provider was the last-used provider for this intent on the device.
19640
+ # Also known as the 'sticky_provider'.
19641
+ # Corresponds to the JSON property `isLastUsedProvider`
19642
+ # @return [Boolean]
19643
+ attr_accessor :is_last_used_provider
19644
+ alias_method :is_last_used_provider?, :is_last_used_provider
19645
+
19646
+ # Whether the provider was specified by the query.
19647
+ # Corresponds to the JSON property `isQueryRestrictedProvider`
19648
+ # @return [Boolean]
19649
+ attr_accessor :is_query_restricted_provider
19650
+ alias_method :is_query_restricted_provider?, :is_query_restricted_provider
19651
+
19652
+ # Message that gets returned from the Provider Selection Library (PSL). It
19653
+ # encodes the scores, applied policies, and pruning decisions for a given
19654
+ # provider candidate.
19655
+ # Corresponds to the JSON property `providerSelectionResult`
19656
+ # @return [Google::Apis::ContentwarehouseV1::AssistantContextProviderSelectionResult]
19657
+ attr_accessor :provider_selection_result
19658
+
19659
+ # Contains the "fulfillment type" of provider eg whether it's 0p or System API
19660
+ # provider.
19661
+ # Corresponds to the JSON property `providerTypeSignal`
19662
+ # @return [String]
19663
+ attr_accessor :provider_type_signal
19664
+
19665
+ def initialize(**args)
19666
+ update!(**args)
19667
+ end
19668
+
19669
+ # Update properties of this object
19670
+ def update!(**args)
19671
+ @is_default_provider = args[:is_default_provider] if args.key?(:is_default_provider)
19672
+ @is_foreground_provider = args[:is_foreground_provider] if args.key?(:is_foreground_provider)
19673
+ @is_in_app_provider = args[:is_in_app_provider] if args.key?(:is_in_app_provider)
19674
+ @is_installed = args[:is_installed] if args.key?(:is_installed)
19675
+ @is_last_used_provider = args[:is_last_used_provider] if args.key?(:is_last_used_provider)
19676
+ @is_query_restricted_provider = args[:is_query_restricted_provider] if args.key?(:is_query_restricted_provider)
19677
+ @provider_selection_result = args[:provider_selection_result] if args.key?(:provider_selection_result)
19678
+ @provider_type_signal = args[:provider_type_signal] if args.key?(:provider_type_signal)
19679
+ end
19680
+ end
19681
+
19421
19682
  #
19422
19683
  class AssistantGroundingRankerAssistantInteractionFeatures
19423
19684
  include Google::Apis::Core::Hashable
@@ -19668,6 +19929,15 @@ module Google
19668
19929
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingLabels]
19669
19930
  attr_accessor :device_targeting_labels
19670
19931
 
19932
+ # The set of information that helps the server identify the surface. This
19933
+ # replaces the User-Agent string within the Assistant Server. Note: The
19934
+ # SurfaceIdentity proto should only be used to derive the capabilities of a
19935
+ # surface. It should not be accessed outside of the CapabilityBuilder or
19936
+ # CapabilityChecker. NEXT ID: 5 LINT.IfChange
19937
+ # Corresponds to the JSON property `surfaceIdentity`
19938
+ # @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesGovernedSurfaceIdentity]
19939
+ attr_accessor :surface_identity
19940
+
19671
19941
  def initialize(**args)
19672
19942
  update!(**args)
19673
19943
  end
@@ -19677,6 +19947,7 @@ module Google
19677
19947
  @device_id = args[:device_id] if args.key?(:device_id)
19678
19948
  @device_targeting_features = args[:device_targeting_features] if args.key?(:device_targeting_features)
19679
19949
  @device_targeting_labels = args[:device_targeting_labels] if args.key?(:device_targeting_labels)
19950
+ @surface_identity = args[:surface_identity] if args.key?(:surface_identity)
19680
19951
  end
19681
19952
  end
19682
19953
 
@@ -19815,17 +20086,17 @@ module Google
19815
20086
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceGroundingProviderFeatures]
19816
20087
  attr_accessor :device_grounding_provider_features
19817
20088
 
19818
- # Features to be passed from Media GP to HGR. Next ID: 14
20089
+ # Features to be passed from Media GP to HGR. Next ID: 15
19819
20090
  # Corresponds to the JSON property `mediaGroundingProviderFeatures`
19820
20091
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerMediaGroundingProviderFeatures]
19821
20092
  attr_accessor :media_grounding_provider_features
19822
20093
 
19823
- # Features to be extracted from Podcast GP for ranking in HGR. Next ID: 4
20094
+ # Features to be extracted from Podcast GP for ranking in HGR. Next ID: 6
19824
20095
  # Corresponds to the JSON property `podcastGroundingProviderFeatures`
19825
20096
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerPodcastGroundingProviderFeatures]
19826
20097
  attr_accessor :podcast_grounding_provider_features
19827
20098
 
19828
- # Features to be extracted from Provider GP for ranking in HGR. Next ID: 6
20099
+ # Features to be extracted from Provider GP for ranking in HGR. Next ID: 7
19829
20100
  # Corresponds to the JSON property `providerGroundingProviderFeatures`
19830
20101
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerProviderGroundingProviderFeatures]
19831
20102
  attr_accessor :provider_grounding_provider_features
@@ -19994,7 +20265,7 @@ module Google
19994
20265
  end
19995
20266
  end
19996
20267
 
19997
- # Features to be passed from Media GP to HGR. Next ID: 14
20268
+ # Features to be passed from Media GP to HGR. Next ID: 15
19998
20269
  class AssistantGroundingRankerMediaGroundingProviderFeatures
19999
20270
  include Google::Apis::Core::Hashable
20000
20271
 
@@ -20042,6 +20313,12 @@ module Google
20042
20313
  attr_accessor :is_seed_radio_request
20043
20314
  alias_method :is_seed_radio_request?, :is_seed_radio_request
20044
20315
 
20316
+ # Indicates whether this is youtube content seeking music.
20317
+ # Corresponds to the JSON property `isYoutubeMusicSeeking`
20318
+ # @return [Boolean]
20319
+ attr_accessor :is_youtube_music_seeking
20320
+ alias_method :is_youtube_music_seeking?, :is_youtube_music_seeking
20321
+
20045
20322
  # MediaAquaAction::media_content_type from interpretation. It can be used for
20046
20323
  # cross-content type ranking, for example, if a candidate's content type does
20047
20324
  # not match this content type from interpretation, this candidate will be
@@ -20100,6 +20377,7 @@ module Google
20100
20377
  @is_media_search_query_subset_of_entity_name_and_artist = args[:is_media_search_query_subset_of_entity_name_and_artist] if args.key?(:is_media_search_query_subset_of_entity_name_and_artist)
20101
20378
  @is_seed_radio = args[:is_seed_radio] if args.key?(:is_seed_radio)
20102
20379
  @is_seed_radio_request = args[:is_seed_radio_request] if args.key?(:is_seed_radio_request)
20380
+ @is_youtube_music_seeking = args[:is_youtube_music_seeking] if args.key?(:is_youtube_music_seeking)
20103
20381
  @media_content_type = args[:media_content_type] if args.key?(:media_content_type)
20104
20382
  @msc_rate = args[:msc_rate] if args.key?(:msc_rate)
20105
20383
  @scubed_p_sai_music = args[:scubed_p_sai_music] if args.key?(:scubed_p_sai_music)
@@ -20109,7 +20387,7 @@ module Google
20109
20387
  end
20110
20388
  end
20111
20389
 
20112
- # Features to be extracted from Podcast GP for ranking in HGR. Next ID: 4
20390
+ # Features to be extracted from Podcast GP for ranking in HGR. Next ID: 6
20113
20391
  class AssistantGroundingRankerPodcastGroundingProviderFeatures
20114
20392
  include Google::Apis::Core::Hashable
20115
20393
 
@@ -20119,6 +20397,16 @@ module Google
20119
20397
  attr_accessor :is_exclusive
20120
20398
  alias_method :is_exclusive?, :is_exclusive
20121
20399
 
20400
+ # The count of the unique users that listened to the podcast in the last 28 days.
20401
+ # Corresponds to the JSON property `podcastListenersCount`
20402
+ # @return [Fixnum]
20403
+ attr_accessor :podcast_listeners_count
20404
+
20405
+ # Provider popularity score. More details are here go/ps-to-kg.
20406
+ # Corresponds to the JSON property `popularityScore`
20407
+ # @return [Float]
20408
+ attr_accessor :popularity_score
20409
+
20122
20410
  # The relevance score from Scubed.
20123
20411
  # Corresponds to the JSON property `scubedNg3ModelScore`
20124
20412
  # @return [Float]
@@ -20136,27 +20424,17 @@ module Google
20136
20424
  # Update properties of this object
20137
20425
  def update!(**args)
20138
20426
  @is_exclusive = args[:is_exclusive] if args.key?(:is_exclusive)
20427
+ @podcast_listeners_count = args[:podcast_listeners_count] if args.key?(:podcast_listeners_count)
20428
+ @popularity_score = args[:popularity_score] if args.key?(:popularity_score)
20139
20429
  @scubed_ng3_model_score = args[:scubed_ng3_model_score] if args.key?(:scubed_ng3_model_score)
20140
20430
  @scubed_tstar_score = args[:scubed_tstar_score] if args.key?(:scubed_tstar_score)
20141
20431
  end
20142
20432
  end
20143
20433
 
20144
- # Features to be extracted from Provider GP for ranking in HGR. Next ID: 6
20434
+ # Features to be extracted from Provider GP for ranking in HGR. Next ID: 7
20145
20435
  class AssistantGroundingRankerProviderGroundingProviderFeatures
20146
20436
  include Google::Apis::Core::Hashable
20147
20437
 
20148
- # Indicates that fulfillment on this provider will happen within the provider
20149
- # app.
20150
- # Corresponds to the JSON property `isInAppProvider`
20151
- # @return [Boolean]
20152
- attr_accessor :is_in_app_provider
20153
- alias_method :is_in_app_provider?, :is_in_app_provider
20154
-
20155
- # This field is deprecated in favor of the integer field below.
20156
- # Corresponds to the JSON property `providerClusterIdDeprecated`
20157
- # @return [Array<String>]
20158
- attr_accessor :provider_cluster_id_deprecated
20159
-
20160
20438
  # Cluster IDs for the provider. This field is repeated because some providers
20161
20439
  # can be associated with multiple clusters. PRR specific feature.
20162
20440
  # Corresponds to the JSON property `providerClusterIds`
@@ -20184,6 +20462,15 @@ module Google
20184
20462
  # @return [Google::Apis::ContentwarehouseV1::AssistantContextProviderId]
20185
20463
  attr_accessor :provider_id
20186
20464
 
20465
+ # Message containing the processed provider signals. This message is consumed by
20466
+ # systems outside of the Provider GP, such as the HGR. For use of provider
20467
+ # signals within the Provider GP, please refer to the CTF-governed
20468
+ # PackedProviderSignals defined in: cs/google3/assistant/context/proto/
20469
+ # packed_provider_signals.proto;rcl=486224300;l=68
20470
+ # Corresponds to the JSON property `providerSignalResult`
20471
+ # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingProviderProviderSignalResult]
20472
+ attr_accessor :provider_signal_result
20473
+
20187
20474
  # Provider quality score in the range [0,1] that can be used for ranking
20188
20475
  # providers. Incorporates both policy rules and quality considerations.
20189
20476
  # Corresponds to the JSON property `pslScore`
@@ -20196,10 +20483,9 @@ module Google
20196
20483
 
20197
20484
  # Update properties of this object
20198
20485
  def update!(**args)
20199
- @is_in_app_provider = args[:is_in_app_provider] if args.key?(:is_in_app_provider)
20200
- @provider_cluster_id_deprecated = args[:provider_cluster_id_deprecated] if args.key?(:provider_cluster_id_deprecated)
20201
20486
  @provider_cluster_ids = args[:provider_cluster_ids] if args.key?(:provider_cluster_ids)
20202
20487
  @provider_id = args[:provider_id] if args.key?(:provider_id)
20488
+ @provider_signal_result = args[:provider_signal_result] if args.key?(:provider_signal_result)
20203
20489
  @psl_score = args[:psl_score] if args.key?(:psl_score)
20204
20490
  end
20205
20491
  end
@@ -21820,7 +22106,7 @@ module Google
21820
22106
 
21821
22107
  # Signals to be used by the Prefulfillment Ranker. Derived from the
21822
22108
  # ParsingSignals and GroundingSignals carried by the FunctionCall. LINT.IfChange
21823
- # Next ID: 52
22109
+ # Next ID: 57
21824
22110
  class AssistantPrefulfillmentRankerPrefulfillmentSignals
21825
22111
  include Google::Apis::Core::Hashable
21826
22112
 
@@ -21829,11 +22115,25 @@ module Google
21829
22115
  # @return [Float]
21830
22116
  attr_accessor :binding_set_auis
21831
22117
 
22118
+ # BindingSet level invalid reason. This is only useful when the bindingset is
22119
+ # invalid after running the horizontal check in HGR. More details: go/gb-
22120
+ # infeasible.
22121
+ # Corresponds to the JSON property `bindingSetInvalidReason`
22122
+ # @return [String]
22123
+ attr_accessor :binding_set_invalid_reason
22124
+
21832
22125
  # Pauis score for the binding set
21833
22126
  # Corresponds to the JSON property `bindingSetPauis`
21834
22127
  # @return [Float]
21835
22128
  attr_accessor :binding_set_pauis
21836
22129
 
22130
+ # BindingSet level validity. When one of the GPs returns invalid resolution, or
22131
+ # the combined bindingset is invalid, this enum will indidate the validity. More
22132
+ # details: go/gb-infeasible.
22133
+ # Corresponds to the JSON property `bindingSetValidity`
22134
+ # @return [String]
22135
+ attr_accessor :binding_set_validity
22136
+
21837
22137
  # A parsing score that is independently calibrated by each parser/IG.
21838
22138
  # Corresponds to the JSON property `calibratedParsingScore`
21839
22139
  # @return [Float]
@@ -21950,6 +22250,24 @@ module Google
21950
22250
  attr_accessor :is_podcast_intent
21951
22251
  alias_method :is_podcast_intent?, :is_podcast_intent
21952
22252
 
22253
+ # Whether this intent was generated by Sage.
22254
+ # Corresponds to the JSON property `isSageIntent`
22255
+ # @return [Boolean]
22256
+ attr_accessor :is_sage_intent
22257
+ alias_method :is_sage_intent?, :is_sage_intent
22258
+
22259
+ # Whether the intent is a media object tvm intent.
22260
+ # Corresponds to the JSON property `isTvmIntent`
22261
+ # @return [Boolean]
22262
+ attr_accessor :is_tvm_intent
22263
+ alias_method :is_tvm_intent?, :is_tvm_intent
22264
+
22265
+ # Whether the intent is a Smarthome-domain intent with valid device arguments.
22266
+ # Corresponds to the JSON property `isValidSmarthomeIntent`
22267
+ # @return [Boolean]
22268
+ attr_accessor :is_valid_smarthome_intent
22269
+ alias_method :is_valid_smarthome_intent?, :is_valid_smarthome_intent
22270
+
21953
22271
  # Whether the intent is a media object video intent.
21954
22272
  # Corresponds to the JSON property `isVideoIntent`
21955
22273
  # @return [Boolean]
@@ -22099,7 +22417,9 @@ module Google
22099
22417
  # Update properties of this object
22100
22418
  def update!(**args)
22101
22419
  @binding_set_auis = args[:binding_set_auis] if args.key?(:binding_set_auis)
22420
+ @binding_set_invalid_reason = args[:binding_set_invalid_reason] if args.key?(:binding_set_invalid_reason)
22102
22421
  @binding_set_pauis = args[:binding_set_pauis] if args.key?(:binding_set_pauis)
22422
+ @binding_set_validity = args[:binding_set_validity] if args.key?(:binding_set_validity)
22103
22423
  @calibrated_parsing_score = args[:calibrated_parsing_score] if args.key?(:calibrated_parsing_score)
22104
22424
  @deep_media_dominant = args[:deep_media_dominant] if args.key?(:deep_media_dominant)
22105
22425
  @dominant = args[:dominant] if args.key?(:dominant)
@@ -22119,6 +22439,9 @@ module Google
22119
22439
  @is_media_control_intent = args[:is_media_control_intent] if args.key?(:is_media_control_intent)
22120
22440
  @is_play_generic_music = args[:is_play_generic_music] if args.key?(:is_play_generic_music)
22121
22441
  @is_podcast_intent = args[:is_podcast_intent] if args.key?(:is_podcast_intent)
22442
+ @is_sage_intent = args[:is_sage_intent] if args.key?(:is_sage_intent)
22443
+ @is_tvm_intent = args[:is_tvm_intent] if args.key?(:is_tvm_intent)
22444
+ @is_valid_smarthome_intent = args[:is_valid_smarthome_intent] if args.key?(:is_valid_smarthome_intent)
22122
22445
  @is_video_intent = args[:is_video_intent] if args.key?(:is_video_intent)
22123
22446
  @kscorer_rank = args[:kscorer_rank] if args.key?(:kscorer_rank)
22124
22447
  @laa_features = args[:laa_features] if args.key?(:laa_features)
@@ -32585,6 +32908,267 @@ module Google
32585
32908
  end
32586
32909
  end
32587
32910
 
32911
+ # CityJsonProto is a custom proto representation of the portion of the CityJSON
32912
+ # spec (https://www.cityjson.org/) relevant to internal projects. See go/
32913
+ # cityjsonproto-design for more information about the modeling and design
32914
+ # decisions implemented here.
32915
+ class GeostoreCityJsonProto
32916
+ include Google::Apis::Core::Hashable
32917
+
32918
+ # City objects associated with this CityJsonProto.
32919
+ # Corresponds to the JSON property `cityObjects`
32920
+ # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreCityJsonProtoCityObject>]
32921
+ attr_accessor :city_objects
32922
+
32923
+ # Information for transforming a point from an "old" to "new" coordinate frame.
32924
+ # Applied as follows: vertex_new = scale * vertex_old + translate
32925
+ # Corresponds to the JSON property `transform`
32926
+ # @return [Google::Apis::ContentwarehouseV1::GeostoreCityJsonProtoTransform]
32927
+ attr_accessor :transform
32928
+
32929
+ # Vertices as local coordinates represented as a flattened list: [x1,y1,z1,x2,y2,
32930
+ # z2,x3,y3,z3]. Vertices are relative to a local coordinate system and rounded
32931
+ # to their nearest integer value. See `transform` for how vertices can be
32932
+ # transformed from a local coordinate system into an Earth-centered, Earth-fixed
32933
+ # coordinate system. Vertices are flattened for space efficiency, memory
32934
+ # locality, and processing performance. To access the x,y,z coordinates of
32935
+ # vertex N, read the values at indices 3N, 3N+1, and 3N+2.
32936
+ # Corresponds to the JSON property `vertexXyz`
32937
+ # @return [Array<Fixnum>]
32938
+ attr_accessor :vertex_xyz
32939
+
32940
+ def initialize(**args)
32941
+ update!(**args)
32942
+ end
32943
+
32944
+ # Update properties of this object
32945
+ def update!(**args)
32946
+ @city_objects = args[:city_objects] if args.key?(:city_objects)
32947
+ @transform = args[:transform] if args.key?(:transform)
32948
+ @vertex_xyz = args[:vertex_xyz] if args.key?(:vertex_xyz)
32949
+ end
32950
+ end
32951
+
32952
+ # Representation of an object with geometry.
32953
+ class GeostoreCityJsonProtoCityObject
32954
+ include Google::Apis::Core::Hashable
32955
+
32956
+ # Geometries associated with this object.
32957
+ # Corresponds to the JSON property `geometries`
32958
+ # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreCityJsonProtoCityObjectGeometry>]
32959
+ attr_accessor :geometries
32960
+
32961
+ # The ID of this CityObject, which must be unique within this CityJsonProto. The
32962
+ # ID does not have a meaning outside this CityJsonProto.
32963
+ # Corresponds to the JSON property `id`
32964
+ # @return [String]
32965
+ attr_accessor :id
32966
+
32967
+ # Type of object represented, e.g. building.
32968
+ # Corresponds to the JSON property `type`
32969
+ # @return [String]
32970
+ attr_accessor :type
32971
+
32972
+ def initialize(**args)
32973
+ update!(**args)
32974
+ end
32975
+
32976
+ # Update properties of this object
32977
+ def update!(**args)
32978
+ @geometries = args[:geometries] if args.key?(:geometries)
32979
+ @id = args[:id] if args.key?(:id)
32980
+ @type = args[:type] if args.key?(:type)
32981
+ end
32982
+ end
32983
+
32984
+ # Representation of geometry. Geometries vary both in type and in level-of-
32985
+ # detail, enabling representation of any shape at any level of granularity.
32986
+ class GeostoreCityJsonProtoCityObjectGeometry
32987
+ include Google::Apis::Core::Hashable
32988
+
32989
+ # Level-of-detail (LoD) indicates how intricate the geometric representation is.
32990
+ # May be a single digit per CityGML standards or X.Y per TU Delft (visual
32991
+ # depiction at https://3d.bk.tudelft.nl/lod/). `CityObject`s may have multiple
32992
+ # geometries with the same LoD.
32993
+ # Corresponds to the JSON property `lod`
32994
+ # @return [String]
32995
+ attr_accessor :lod
32996
+
32997
+ # A single line, loop, or set of points.
32998
+ # Corresponds to the JSON property `multipoint`
32999
+ # @return [Google::Apis::ContentwarehouseV1::GeostoreCityJsonProtoCityObjectGeometryMultiPoint]
33000
+ attr_accessor :multipoint
33001
+
33002
+ # A collection of arbitrary surfaces that have no prescribed topological
33003
+ # relationship.
33004
+ # Corresponds to the JSON property `multisurface`
33005
+ # @return [Google::Apis::ContentwarehouseV1::GeostoreCityJsonProtoCityObjectGeometryMultiSurface]
33006
+ attr_accessor :multisurface
33007
+
33008
+ # A 3D shape, composed of a watertight exterior shell with optional interior
33009
+ # watertight shells.
33010
+ # Corresponds to the JSON property `solid`
33011
+ # @return [Google::Apis::ContentwarehouseV1::GeostoreCityJsonProtoCityObjectGeometrySolid]
33012
+ attr_accessor :solid
33013
+
33014
+ def initialize(**args)
33015
+ update!(**args)
33016
+ end
33017
+
33018
+ # Update properties of this object
33019
+ def update!(**args)
33020
+ @lod = args[:lod] if args.key?(:lod)
33021
+ @multipoint = args[:multipoint] if args.key?(:multipoint)
33022
+ @multisurface = args[:multisurface] if args.key?(:multisurface)
33023
+ @solid = args[:solid] if args.key?(:solid)
33024
+ end
33025
+ end
33026
+
33027
+ # A single line, loop, or set of points.
33028
+ class GeostoreCityJsonProtoCityObjectGeometryMultiPoint
33029
+ include Google::Apis::Core::Hashable
33030
+
33031
+ # A collection of references to vertices in `CityJsonProto.vertex_xyz`. `
33032
+ # CityJsonProto.vertex_xyz` is a flattened list of vertex coordinates. A value
33033
+ # in `x_indices` should be the index of the x-coordinate of the desired vertex V;
33034
+ # the full coordinates of vertex V can then be found at indices [V,V+1,V+2].
33035
+ # For example, an `x_indices` containing 3, 0, and 12 references three vertices,
33036
+ # whose complete x,y,z coordinates can respectively be found at `CityJsonProto.
33037
+ # vertex_xyz` indices [3,4,5], [0,1,2], and [12,13,14].
33038
+ # Corresponds to the JSON property `xIndices`
33039
+ # @return [Array<Fixnum>]
33040
+ attr_accessor :x_indices
33041
+
33042
+ def initialize(**args)
33043
+ update!(**args)
33044
+ end
33045
+
33046
+ # Update properties of this object
33047
+ def update!(**args)
33048
+ @x_indices = args[:x_indices] if args.key?(:x_indices)
33049
+ end
33050
+ end
33051
+
33052
+ # A collection of arbitrary surfaces that have no prescribed topological
33053
+ # relationship.
33054
+ class GeostoreCityJsonProtoCityObjectGeometryMultiSurface
33055
+ include Google::Apis::Core::Hashable
33056
+
33057
+ # All surfaces are standalone entities with no relationship to each other.
33058
+ # Corresponds to the JSON property `surfaces`
33059
+ # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreCityJsonProtoCityObjectGeometrySurface>]
33060
+ attr_accessor :surfaces
33061
+
33062
+ def initialize(**args)
33063
+ update!(**args)
33064
+ end
33065
+
33066
+ # Update properties of this object
33067
+ def update!(**args)
33068
+ @surfaces = args[:surfaces] if args.key?(:surfaces)
33069
+ end
33070
+ end
33071
+
33072
+ # A 3D shape, composed of a watertight exterior shell with optional interior
33073
+ # watertight shells.
33074
+ class GeostoreCityJsonProtoCityObjectGeometrySolid
33075
+ include Google::Apis::Core::Hashable
33076
+
33077
+ # The first shell is exterior; any additional are interior.
33078
+ # Corresponds to the JSON property `shells`
33079
+ # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreCityJsonProtoCityObjectGeometryMultiSurface>]
33080
+ attr_accessor :shells
33081
+
33082
+ def initialize(**args)
33083
+ update!(**args)
33084
+ end
33085
+
33086
+ # Update properties of this object
33087
+ def update!(**args)
33088
+ @shells = args[:shells] if args.key?(:shells)
33089
+ end
33090
+ end
33091
+
33092
+ # A polygonal surface, composed of a closed exterior loop with optional closed
33093
+ # interior loops.
33094
+ class GeostoreCityJsonProtoCityObjectGeometrySurface
33095
+ include Google::Apis::Core::Hashable
33096
+
33097
+ # The first loop is exterior; any additional are interior.
33098
+ # Corresponds to the JSON property `loops`
33099
+ # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreCityJsonProtoCityObjectGeometryMultiPoint>]
33100
+ attr_accessor :loops
33101
+
33102
+ def initialize(**args)
33103
+ update!(**args)
33104
+ end
33105
+
33106
+ # Update properties of this object
33107
+ def update!(**args)
33108
+ @loops = args[:loops] if args.key?(:loops)
33109
+ end
33110
+ end
33111
+
33112
+ # Information for transforming a point from an "old" to "new" coordinate frame.
33113
+ # Applied as follows: vertex_new = scale * vertex_old + translate
33114
+ class GeostoreCityJsonProtoTransform
33115
+ include Google::Apis::Core::Hashable
33116
+
33117
+ # Relative scale of the vertices in the new coordinate system relative to the
33118
+ # old coordinate system. Applies to all three x,y,z coordinates.
33119
+ # Corresponds to the JSON property `scale`
33120
+ # @return [Float]
33121
+ attr_accessor :scale
33122
+
33123
+ # Vector of length three whose values respectively correspond to the x, y, and z
33124
+ # axes.
33125
+ # Corresponds to the JSON property `translate`
33126
+ # @return [Google::Apis::ContentwarehouseV1::GeostoreCityJsonProtoTransformXyzVector]
33127
+ attr_accessor :translate
33128
+
33129
+ def initialize(**args)
33130
+ update!(**args)
33131
+ end
33132
+
33133
+ # Update properties of this object
33134
+ def update!(**args)
33135
+ @scale = args[:scale] if args.key?(:scale)
33136
+ @translate = args[:translate] if args.key?(:translate)
33137
+ end
33138
+ end
33139
+
33140
+ # Vector of length three whose values respectively correspond to the x, y, and z
33141
+ # axes.
33142
+ class GeostoreCityJsonProtoTransformXyzVector
33143
+ include Google::Apis::Core::Hashable
33144
+
33145
+ #
33146
+ # Corresponds to the JSON property `x`
33147
+ # @return [Float]
33148
+ attr_accessor :x
33149
+
33150
+ #
33151
+ # Corresponds to the JSON property `y`
33152
+ # @return [Float]
33153
+ attr_accessor :y
33154
+
33155
+ #
33156
+ # Corresponds to the JSON property `z`
33157
+ # @return [Float]
33158
+ attr_accessor :z
33159
+
33160
+ def initialize(**args)
33161
+ update!(**args)
33162
+ end
33163
+
33164
+ # Update properties of this object
33165
+ def update!(**args)
33166
+ @x = args[:x] if args.key?(:x)
33167
+ @y = args[:y] if args.key?(:y)
33168
+ @z = args[:z] if args.key?(:z)
33169
+ end
33170
+ end
33171
+
32588
33172
  # Generic item proto. This is intended to have only certain aspects filled (e.g.
32589
33173
  # photo only, name + price). Valid combinations of properties are enforced by
32590
33174
  # linters.
@@ -32725,6 +33309,26 @@ module Google
32725
33309
  end
32726
33310
  end
32727
33311
 
33312
+ #
33313
+ class GeostoreCurvatureProto
33314
+ include Google::Apis::Core::Hashable
33315
+
33316
+ # Curvature values at points along the flowline. A linear interpolation between
33317
+ # two successive points will yield the curvature value at intermediate points.
33318
+ # Corresponds to the JSON property `pointCurvature`
33319
+ # @return [Array<Google::Apis::ContentwarehouseV1::GeostorePointCurvatureProto>]
33320
+ attr_accessor :point_curvature
33321
+
33322
+ def initialize(**args)
33323
+ update!(**args)
33324
+ end
33325
+
33326
+ # Update properties of this object
33327
+ def update!(**args)
33328
+ @point_curvature = args[:point_curvature] if args.key?(:point_curvature)
33329
+ end
33330
+ end
33331
+
32728
33332
  # Protocol buffer describing a curve that connects two externally specified
32729
33333
  # endpoints.
32730
33334
  class GeostoreCurveConnectionProto
@@ -34174,6 +34778,12 @@ module Google
34174
34778
  # @return [Google::Apis::ContentwarehouseV1::GeostoreFeatureIdProto]
34175
34779
  attr_accessor :future_geometry_for
34176
34780
 
34781
+ # A Geometry Store ID and, in some contexts, geometry materialized from the
34782
+ # record associated with that ID.
34783
+ # Corresponds to the JSON property `geometry3d`
34784
+ # @return [Google::Apis::ContentwarehouseV1::GeostoreGeometryStoreReferenceProto]
34785
+ attr_accessor :geometry3d
34786
+
34177
34787
  # If set, the feature's actual location can be assumed to be somewhere within a
34178
34788
  # circle of this radius, centered on the feature's location. More information on
34179
34789
  # this field at go/gpm-definition-update. NOTE: Only applicable to features with
@@ -34784,6 +35394,12 @@ module Google
34784
35394
  # @return [Google::Apis::ContentwarehouseV1::GeostoreVerticalOrderingProto]
34785
35395
  attr_accessor :vertical_ordering
34786
35396
 
35397
+ # A Geometry Store ID and, in some contexts, geometry materialized from the
35398
+ # record associated with that ID.
35399
+ # Corresponds to the JSON property `visualizationArea`
35400
+ # @return [Google::Apis::ContentwarehouseV1::GeostoreGeometryStoreReferenceProto]
35401
+ attr_accessor :visualization_area
35402
+
34787
35403
  # A general non-self-intersecting spherical polygon, consisting of one or more
34788
35404
  # loops defining multiple disconnected regions possibly with holes. All loops
34789
35405
  # should be oriented CCW around the region they define. This applies to the
@@ -34830,6 +35446,7 @@ module Google
34830
35446
  @exempt_regulated_area = args[:exempt_regulated_area] if args.key?(:exempt_regulated_area)
34831
35447
  @future_geometry = args[:future_geometry] if args.key?(:future_geometry)
34832
35448
  @future_geometry_for = args[:future_geometry_for] if args.key?(:future_geometry_for)
35449
+ @geometry3d = args[:geometry3d] if args.key?(:geometry3d)
34833
35450
  @geometry_precision_meters = args[:geometry_precision_meters] if args.key?(:geometry_precision_meters)
34834
35451
  @geopolitical_geometry = args[:geopolitical_geometry] if args.key?(:geopolitical_geometry)
34835
35452
  @html_text = args[:html_text] if args.key?(:html_text)
@@ -34892,6 +35509,7 @@ module Google
34892
35509
  @transit_station = args[:transit_station] if args.key?(:transit_station)
34893
35510
  @type = args[:type] if args.key?(:type)
34894
35511
  @vertical_ordering = args[:vertical_ordering] if args.key?(:vertical_ordering)
35512
+ @visualization_area = args[:visualization_area] if args.key?(:visualization_area)
34895
35513
  @water_removed_polygon = args[:water_removed_polygon] if args.key?(:water_removed_polygon)
34896
35514
  @website = args[:website] if args.key?(:website)
34897
35515
  end
@@ -34998,6 +35616,11 @@ module Google
34998
35616
  class GeostoreFlowLineProto
34999
35617
  include Google::Apis::Core::Hashable
35000
35618
 
35619
+ # RESERVED
35620
+ # Corresponds to the JSON property `curvature`
35621
+ # @return [Google::Apis::ContentwarehouseV1::GeostoreCurvatureProto]
35622
+ attr_accessor :curvature
35623
+
35001
35624
  #
35002
35625
  # Corresponds to the JSON property `track`
35003
35626
  # @return [Google::Apis::ContentwarehouseV1::GeostoreTrackProto]
@@ -35009,6 +35632,7 @@ module Google
35009
35632
 
35010
35633
  # Update properties of this object
35011
35634
  def update!(**args)
35635
+ @curvature = args[:curvature] if args.key?(:curvature)
35012
35636
  @track = args[:track] if args.key?(:track)
35013
35637
  end
35014
35638
  end
@@ -35256,6 +35880,43 @@ module Google
35256
35880
  end
35257
35881
  end
35258
35882
 
35883
+ # A Geometry Store ID and, in some contexts, geometry materialized from the
35884
+ # record associated with that ID.
35885
+ class GeostoreGeometryStoreReferenceProto
35886
+ include Google::Apis::Core::Hashable
35887
+
35888
+ # Geometry (in STGeography format) materialized from the footprint field of the
35889
+ # Geometry Store record associated with the geometry_id referenced above.
35890
+ # Corresponds to the JSON property `footprint`
35891
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
35892
+ # @return [String]
35893
+ attr_accessor :footprint
35894
+
35895
+ # CityJsonProto is a custom proto representation of the portion of the CityJSON
35896
+ # spec (https://www.cityjson.org/) relevant to internal projects. See go/
35897
+ # cityjsonproto-design for more information about the modeling and design
35898
+ # decisions implemented here.
35899
+ # Corresponds to the JSON property `geometry`
35900
+ # @return [Google::Apis::ContentwarehouseV1::GeostoreCityJsonProto]
35901
+ attr_accessor :geometry
35902
+
35903
+ # The ID of a record in the Geometry Store.
35904
+ # Corresponds to the JSON property `geometryId`
35905
+ # @return [String]
35906
+ attr_accessor :geometry_id
35907
+
35908
+ def initialize(**args)
35909
+ update!(**args)
35910
+ end
35911
+
35912
+ # Update properties of this object
35913
+ def update!(**args)
35914
+ @footprint = args[:footprint] if args.key?(:footprint)
35915
+ @geometry = args[:geometry] if args.key?(:geometry)
35916
+ @geometry_id = args[:geometry_id] if args.key?(:geometry_id)
35917
+ end
35918
+ end
35919
+
35259
35920
  # Geopolitical (unsimplified) polygons for a feature for different geopolitical
35260
35921
  # use cases. See go/unsimplified-poly.
35261
35922
  class GeostoreGeopoliticalGeometryProto
@@ -36940,7 +37601,7 @@ module Google
36940
37601
 
36941
37602
  # Indicates whether long-term parking is available at the feature; if true, long-
36942
37603
  # term parking is available at the feature and parking allowances may be present
36943
- # on this feature, or parking_provider_feature may indicate defered parking
37604
+ # on this feature, or parking_provider_feature may indicate deferred parking
36944
37605
  # feature(s). If false, this is an explicit statement that there is no long-term
36945
37606
  # parking associated with this feature. If unset, we don't know whether there is
36946
37607
  # long-term parking associated with this feature. If false or unset, only
@@ -37194,6 +37855,39 @@ module Google
37194
37855
  end
37195
37856
  end
37196
37857
 
37858
+ #
37859
+ class GeostorePointCurvatureProto
37860
+ include Google::Apis::Core::Hashable
37861
+
37862
+ #
37863
+ # Corresponds to the JSON property `curvatureStatus`
37864
+ # @return [String]
37865
+ attr_accessor :curvature_status
37866
+
37867
+ # Curvature in radians per meter. Negative is a curve to the left and positive
37868
+ # is a curve to the right.
37869
+ # Corresponds to the JSON property `radiansPerMeter`
37870
+ # @return [Float]
37871
+ attr_accessor :radians_per_meter
37872
+
37873
+ # How far along the line this curvature value starts to apply, in the format of
37874
+ # decimal between 0 and 1.
37875
+ # Corresponds to the JSON property `startPointFraction`
37876
+ # @return [Float]
37877
+ attr_accessor :start_point_fraction
37878
+
37879
+ def initialize(**args)
37880
+ update!(**args)
37881
+ end
37882
+
37883
+ # Update properties of this object
37884
+ def update!(**args)
37885
+ @curvature_status = args[:curvature_status] if args.key?(:curvature_status)
37886
+ @radians_per_meter = args[:radians_per_meter] if args.key?(:radians_per_meter)
37887
+ @start_point_fraction = args[:start_point_fraction] if args.key?(:start_point_fraction)
37888
+ end
37889
+ end
37890
+
37197
37891
  #
37198
37892
  class GeostorePointProto
37199
37893
  include Google::Apis::Core::Hashable
@@ -38442,6 +39136,12 @@ module Google
38442
39136
  # @return [Google::Apis::ContentwarehouseV1::GeostoreFeatureIdProto]
38443
39137
  attr_accessor :restriction_group
38444
39138
 
39139
+ # A token that can be used to identify the version of the data about this
39140
+ # restriction.
39141
+ # Corresponds to the JSON property `restrictionToken`
39142
+ # @return [String]
39143
+ attr_accessor :restriction_token
39144
+
38445
39145
  # When specified, restriction applies only at particular times (operating hours
38446
39146
  # or times of the year: reversing lanes, seasonal roads, no left turns from 3-
38447
39147
  # 5pm Mon-Fri except holidays). Otherwise, restriction is in effect at all times.
@@ -38458,11 +39158,11 @@ module Google
38458
39158
  # to the side of road that the containing segment represents. That sibling's
38459
39159
  # pedestrian facility is restricted in both directions. Schema constraints: -
38460
39160
  # SCOPE_SIDE must be set if and only if travel_mode == [TRAVEL_PEDESTRIAN] and
38461
- # the segment containing the restriction has PEDESTRIAN_FACILITY_PRESENT. Such
38462
- # restrictions must have no subpath. - All other restrictions must have this
38463
- # field set to SCOPE_DIRECTION (whether explicitly or implicitly). This
38464
- # distinction is necessary for cases such as pedestrian facility on one-way
38465
- # segment/sibling roads.
39161
+ # the segment containing the restriction has the pedestrian_facility field set
39162
+ # and is not set to PEDESTRIAN_FACILITY_UNKNOWN. Such restrictions must have no
39163
+ # subpath. - All other restrictions must have this field set to SCOPE_DIRECTION (
39164
+ # whether explicitly or implicitly). This distinction is necessary for cases
39165
+ # such as pedestrian facility on one-way segment/sibling roads.
38466
39166
  # Corresponds to the JSON property `scope`
38467
39167
  # @return [String]
38468
39168
  attr_accessor :scope
@@ -38559,6 +39259,7 @@ module Google
38559
39259
  @intersection_group = args[:intersection_group] if args.key?(:intersection_group)
38560
39260
  @metadata = args[:metadata] if args.key?(:metadata)
38561
39261
  @restriction_group = args[:restriction_group] if args.key?(:restriction_group)
39262
+ @restriction_token = args[:restriction_token] if args.key?(:restriction_token)
38562
39263
  @schedule = args[:schedule] if args.key?(:schedule)
38563
39264
  @scope = args[:scope] if args.key?(:scope)
38564
39265
  @style = args[:style] if args.key?(:style)
@@ -40549,7 +41250,7 @@ module Google
40549
41250
  include Google::Apis::Core::Hashable
40550
41251
 
40551
41252
  # The list of TYPE_INTERSECTION features that are toll points and form this toll
40552
- # cluster. A toll cluser can consist of either a single or a group of
41253
+ # cluster. A toll cluster can consist of either a single or a group of
40553
41254
  # intersection points called toll points at the end of various road segments in
40554
41255
  # MapFacts that represent one or more lanes passing through a toll fixture that
40555
41256
  # all go to the same routing destination. This relationship is reciprocal, as a
@@ -40720,12 +41421,12 @@ module Google
40720
41421
  class GeostoreTransitStationProto
40721
41422
  include Google::Apis::Core::Hashable
40722
41423
 
40723
- # Transit agencies which service this transit station. A station can be serviced
40724
- # by one or more transit agencies. See go/transit-agency-relation-migration for
40725
- # more information.
40726
- # Corresponds to the JSON property `agencies`
40727
- # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreFeatureIdProto>]
40728
- attr_accessor :agencies
41424
+ # All the transit agencies which service this station. A station can be serviced
41425
+ # by multiple stations. There may only be one agency association per transit
41426
+ # agency. See go/transit-agency-relation-migration for more details.
41427
+ # Corresponds to the JSON property `agencyAssociations`
41428
+ # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreTransitStationProtoTransitAgencyAssociationProto>]
41429
+ attr_accessor :agency_associations
40729
41430
 
40730
41431
  def initialize(**args)
40731
41432
  update!(**args)
@@ -40733,7 +41434,50 @@ module Google
40733
41434
 
40734
41435
  # Update properties of this object
40735
41436
  def update!(**args)
40736
- @agencies = args[:agencies] if args.key?(:agencies)
41437
+ @agency_associations = args[:agency_associations] if args.key?(:agency_associations)
41438
+ end
41439
+ end
41440
+
41441
+ # The association between this station and the agency which services this
41442
+ # station.
41443
+ class GeostoreTransitStationProtoTransitAgencyAssociationProto
41444
+ include Google::Apis::Core::Hashable
41445
+
41446
+ # A globally unique identifier associated with each feature. We use 128-bit
41447
+ # identifiers so that we have lots of bits available to distinguish between
41448
+ # features. The feature id currently consists of a 64-bit "cell id" that **
41449
+ # sometimes** corresponds to the approximate centroid of the feature, plus a 64-
41450
+ # bit fingerprint of other identifying information. See more on each respective
41451
+ # field in its comments. Feature ids are first assigned when the data is created
41452
+ # in MapFacts. After initial creation of the feature, they are immutable. This
41453
+ # means that the only properties that you should rely on are that they are
41454
+ # unique, and that cell_ids often - but not always - preserve spatial locality.
41455
+ # The degree of locality varies as the feature undergoes geometry changes, and
41456
+ # should not in general be considered a firm guarantee of the location of any
41457
+ # particular feature. In fact, some locationless features have randomized cell
41458
+ # IDs! Consumers of FeatureProtos from Mapfacts are guaranteed that fprints in
41459
+ # the id field of features will be globally unique. Using the fprint allows
41460
+ # consumers who don't need the spatial benefit of cell ids to uniquely identify
41461
+ # features in a 64-bit address space. This property is not guaranteed for other
41462
+ # sources of FeatureProtos.
41463
+ # Corresponds to the JSON property `agency`
41464
+ # @return [Google::Apis::ContentwarehouseV1::GeostoreFeatureIdProto]
41465
+ attr_accessor :agency
41466
+
41467
+ # A station code uniquely identifies a transit station within the transit agency'
41468
+ # s network.
41469
+ # Corresponds to the JSON property `stationCode`
41470
+ # @return [String]
41471
+ attr_accessor :station_code
41472
+
41473
+ def initialize(**args)
41474
+ update!(**args)
41475
+ end
41476
+
41477
+ # Update properties of this object
41478
+ def update!(**args)
41479
+ @agency = args[:agency] if args.key?(:agency)
41480
+ @station_code = args[:station_code] if args.key?(:station_code)
40737
41481
  end
40738
41482
  end
40739
41483
 
@@ -44923,6 +45667,12 @@ module Google
44923
45667
  # @return [Array<String>]
44924
45668
  attr_accessor :document_creator_filter
44925
45669
 
45670
+ # Search the documents in the list. Format: projects/`project_number`/locations/`
45671
+ # location`/documents/`document_id`.
45672
+ # Corresponds to the JSON property `documentNameFilter`
45673
+ # @return [Array<String>]
45674
+ attr_accessor :document_name_filter
45675
+
44926
45676
  # This filter specifies the exact document schema Document.document_schema_name
44927
45677
  # of the documents to search against. If a value isn't specified, documents
44928
45678
  # within the search results are associated with any schema. If multiple values
@@ -45014,6 +45764,7 @@ module Google
45014
45764
  @custom_property_filter = args[:custom_property_filter] if args.key?(:custom_property_filter)
45015
45765
  @custom_weights_metadata = args[:custom_weights_metadata] if args.key?(:custom_weights_metadata)
45016
45766
  @document_creator_filter = args[:document_creator_filter] if args.key?(:document_creator_filter)
45767
+ @document_name_filter = args[:document_name_filter] if args.key?(:document_name_filter)
45017
45768
  @document_schema_names = args[:document_schema_names] if args.key?(:document_schema_names)
45018
45769
  @file_type_filter = args[:file_type_filter] if args.key?(:file_type_filter)
45019
45770
  @folder_name_filter = args[:folder_name_filter] if args.key?(:folder_name_filter)
@@ -45481,6 +46232,12 @@ module Google
45481
46232
  # @return [String]
45482
46233
  attr_accessor :document_creator_default_role
45483
46234
 
46235
+ # Optional. Whether to enable CAL user email logging.
46236
+ # Corresponds to the JSON property `enableCalUserEmailLogging`
46237
+ # @return [Boolean]
46238
+ attr_accessor :enable_cal_user_email_logging
46239
+ alias_method :enable_cal_user_email_logging?, :enable_cal_user_email_logging
46240
+
45484
46241
  # Optional. The KMS key used for CMEK encryption. It is required that the kms
45485
46242
  # key is in the same region as the endpoint. The same key will be used for all
45486
46243
  # provisioned resources, if encryption is available. If the kms_key is left
@@ -45498,6 +46255,7 @@ module Google
45498
46255
  @access_control_mode = args[:access_control_mode] if args.key?(:access_control_mode)
45499
46256
  @database_type = args[:database_type] if args.key?(:database_type)
45500
46257
  @document_creator_default_role = args[:document_creator_default_role] if args.key?(:document_creator_default_role)
46258
+ @enable_cal_user_email_logging = args[:enable_cal_user_email_logging] if args.key?(:enable_cal_user_email_logging)
45501
46259
  @kms_key = args[:kms_key] if args.key?(:kms_key)
45502
46260
  end
45503
46261
  end
@@ -46818,6 +47576,11 @@ module Google
46818
47576
  # @return [String]
46819
47577
  attr_accessor :next_page_token
46820
47578
 
47579
+ # Experimental. Question answer from the query against the document.
47580
+ # Corresponds to the JSON property `questionAnswer`
47581
+ # @return [String]
47582
+ attr_accessor :question_answer
47583
+
46821
47584
  # The total number of matched documents which is available only if the client
46822
47585
  # set SearchDocumentsRequest.require_total_size to `true` or set
46823
47586
  # SearchDocumentsRequest.total_result_size to `ESTIMATED_SIZE` or `ACTUAL_SIZE`.
@@ -46837,6 +47600,7 @@ module Google
46837
47600
  @matching_documents = args[:matching_documents] if args.key?(:matching_documents)
46838
47601
  @metadata = args[:metadata] if args.key?(:metadata)
46839
47602
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
47603
+ @question_answer = args[:question_answer] if args.key?(:question_answer)
46840
47604
  @total_size = args[:total_size] if args.key?(:total_size)
46841
47605
  end
46842
47606
  end
@@ -47595,9 +48359,8 @@ module Google
47595
48359
  # @return [Google::Apis::ContentwarehouseV1::GoogleRpcStatus]
47596
48360
  attr_accessor :error
47597
48361
 
47598
- # An IANA published MIME type (also referred to as media type). For more
47599
- # information, see https://www.iana.org/assignments/media-types/media-types.
47600
- # xhtml.
48362
+ # An IANA published [media type (MIME type)](https://www.iana.org/assignments/
48363
+ # media-types/media-types.xhtml).
47601
48364
  # Corresponds to the JSON property `mimeType`
47602
48365
  # @return [String]
47603
48366
  attr_accessor :mime_type
@@ -47916,7 +48679,7 @@ module Google
47916
48679
  # @return [Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentPageImage]
47917
48680
  attr_accessor :image
47918
48681
 
47919
- # Image Quality Scores for the page image
48682
+ # Image quality scores for the page image.
47920
48683
  # Corresponds to the JSON property `imageQualityScores`
47921
48684
  # @return [Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentPageImageQualityScores]
47922
48685
  attr_accessor :image_quality_scores
@@ -48137,8 +48900,8 @@ module Google
48137
48900
  # @return [Float]
48138
48901
  attr_accessor :confidence
48139
48902
 
48140
- # The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information,
48141
- # see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
48903
+ # The [BCP-47 language code](https://www.unicode.org/reports/tr35/#
48904
+ # Unicode_locale_identifier), such as `en-US` or `sr-Latn`.
48142
48905
  # Corresponds to the JSON property `languageCode`
48143
48906
  # @return [String]
48144
48907
  attr_accessor :language_code
@@ -48268,7 +49031,8 @@ module Google
48268
49031
  # @return [Fixnum]
48269
49032
  attr_accessor :height
48270
49033
 
48271
- # Encoding mime type for the image.
49034
+ # Encoding [media type (MIME type)](https://www.iana.org/assignments/media-types/
49035
+ # media-types.xhtml) for the image.
48272
49036
  # Corresponds to the JSON property `mimeType`
48273
49037
  # @return [String]
48274
49038
  attr_accessor :mime_type
@@ -48291,7 +49055,7 @@ module Google
48291
49055
  end
48292
49056
  end
48293
49057
 
48294
- # Image Quality Scores for the page image
49058
+ # Image quality scores for the page image.
48295
49059
  class GoogleCloudDocumentaiV1DocumentPageImageQualityScores
48296
49060
  include Google::Apis::Core::Hashable
48297
49061
 
@@ -48300,7 +49064,7 @@ module Google
48300
49064
  # @return [Array<Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentPageImageQualityScoresDetectedDefect>]
48301
49065
  attr_accessor :detected_defects
48302
49066
 
48303
- # The overall quality score. Range `[0, 1]` where 1 is perfect quality.
49067
+ # The overall quality score. Range `[0, 1]` where `1` is perfect quality.
48304
49068
  # Corresponds to the JSON property `qualityScore`
48305
49069
  # @return [Float]
48306
49070
  attr_accessor :quality_score
@@ -48320,8 +49084,8 @@ module Google
48320
49084
  class GoogleCloudDocumentaiV1DocumentPageImageQualityScoresDetectedDefect
48321
49085
  include Google::Apis::Core::Hashable
48322
49086
 
48323
- # Confidence of detected defect. Range `[0, 1]` where 1 indicates strong
48324
- # confidence of that the defect exists.
49087
+ # Confidence of detected defect. Range `[0, 1]` where `1` indicates strong
49088
+ # confidence that the defect exists.
48325
49089
  # Corresponds to the JSON property `confidence`
48326
49090
  # @return [Float]
48327
49091
  attr_accessor :confidence
@@ -48684,18 +49448,18 @@ module Google
48684
49448
  include Google::Apis::Core::Hashable
48685
49449
 
48686
49450
  # Represents a color in the RGBA color space. This representation is designed
48687
- # for simplicity of conversion to/from color representations in various
49451
+ # for simplicity of conversion to and from color representations in various
48688
49452
  # languages over compactness. For example, the fields of this representation can
48689
49453
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
48690
49454
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
48691
49455
  # method in iOS; and, with just a little work, it can be easily formatted into a
48692
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
49456
+ # CSS `rgba()` string in JavaScript. This reference page doesn't have
48693
49457
  # information about the absolute color space that should be used to interpret
48694
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
49458
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
48695
49459
  # applications should assume the sRGB color space. When color equality needs to
48696
49460
  # be decided, implementations, unless documented otherwise, treat two colors as
48697
- # equal if all their red, green, blue, and alpha values each differ by at most
48698
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
49461
+ # equal if all their red, green, blue, and alpha values each differ by at most `
49462
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
48699
49463
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
48700
49464
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
48701
49465
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -48801,18 +49565,18 @@ module Google
48801
49565
  alias_method :superscript?, :superscript
48802
49566
 
48803
49567
  # Represents a color in the RGBA color space. This representation is designed
48804
- # for simplicity of conversion to/from color representations in various
49568
+ # for simplicity of conversion to and from color representations in various
48805
49569
  # languages over compactness. For example, the fields of this representation can
48806
49570
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
48807
49571
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
48808
49572
  # method in iOS; and, with just a little work, it can be easily formatted into a
48809
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
49573
+ # CSS `rgba()` string in JavaScript. This reference page doesn't have
48810
49574
  # information about the absolute color space that should be used to interpret
48811
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
49575
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
48812
49576
  # applications should assume the sRGB color space. When color equality needs to
48813
49577
  # be decided, implementations, unless documented otherwise, treat two colors as
48814
- # equal if all their red, green, blue, and alpha values each differ by at most
48815
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
49578
+ # equal if all their red, green, blue, and alpha values each differ by at most `
49579
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
48816
49580
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
48817
49581
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
48818
49582
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -49108,18 +49872,18 @@ module Google
49108
49872
  include Google::Apis::Core::Hashable
49109
49873
 
49110
49874
  # Represents a color in the RGBA color space. This representation is designed
49111
- # for simplicity of conversion to/from color representations in various
49875
+ # for simplicity of conversion to and from color representations in various
49112
49876
  # languages over compactness. For example, the fields of this representation can
49113
49877
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
49114
49878
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
49115
49879
  # method in iOS; and, with just a little work, it can be easily formatted into a
49116
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
49880
+ # CSS `rgba()` string in JavaScript. This reference page doesn't have
49117
49881
  # information about the absolute color space that should be used to interpret
49118
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
49882
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
49119
49883
  # applications should assume the sRGB color space. When color equality needs to
49120
49884
  # be decided, implementations, unless documented otherwise, treat two colors as
49121
- # equal if all their red, green, blue, and alpha values each differ by at most
49122
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
49885
+ # equal if all their red, green, blue, and alpha values each differ by at most `
49886
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
49123
49887
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
49124
49888
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
49125
49889
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -49157,18 +49921,18 @@ module Google
49157
49921
  attr_accessor :background_color
49158
49922
 
49159
49923
  # Represents a color in the RGBA color space. This representation is designed
49160
- # for simplicity of conversion to/from color representations in various
49924
+ # for simplicity of conversion to and from color representations in various
49161
49925
  # languages over compactness. For example, the fields of this representation can
49162
49926
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
49163
49927
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
49164
49928
  # method in iOS; and, with just a little work, it can be easily formatted into a
49165
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
49929
+ # CSS `rgba()` string in JavaScript. This reference page doesn't have
49166
49930
  # information about the absolute color space that should be used to interpret
49167
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
49931
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
49168
49932
  # applications should assume the sRGB color space. When color equality needs to
49169
49933
  # be decided, implementations, unless documented otherwise, treat two colors as
49170
- # equal if all their red, green, blue, and alpha values each differ by at most
49171
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
49934
+ # equal if all their red, green, blue, and alpha values each differ by at most `
49935
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
49172
49936
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
49173
49937
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
49174
49938
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -49216,8 +49980,8 @@ module Google
49216
49980
  # @return [Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentStyleFontSize]
49217
49981
  attr_accessor :font_size
49218
49982
 
49219
- # Font weight. Possible values are normal, bold, bolder, and lighter. https://
49220
- # www.w3schools.com/cssref/pr_font_weight.asp
49983
+ # [Font weight](https://www.w3schools.com/cssref/pr_font_weight.asp). Possible
49984
+ # values are `normal`, `bold`, `bolder`, and `lighter`.
49221
49985
  # Corresponds to the JSON property `fontWeight`
49222
49986
  # @return [String]
49223
49987
  attr_accessor :font_weight
@@ -49227,14 +49991,14 @@ module Google
49227
49991
  # @return [Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentTextAnchor]
49228
49992
  attr_accessor :text_anchor
49229
49993
 
49230
- # Text decoration. Follows CSS standard. https://www.w3schools.com/cssref/
49231
- # pr_text_text-decoration.asp
49994
+ # [Text decoration](https://www.w3schools.com/cssref/pr_text_text-decoration.asp)
49995
+ # . Follows CSS standard.
49232
49996
  # Corresponds to the JSON property `textDecoration`
49233
49997
  # @return [String]
49234
49998
  attr_accessor :text_decoration
49235
49999
 
49236
- # Text style. Possible values are normal, italic, and oblique. https://www.
49237
- # w3schools.com/cssref/pr_font_font-style.asp
50000
+ # [Text style](https://www.w3schools.com/cssref/pr_font_font-style.asp).
50001
+ # Possible values are `normal`, `italic`, and `oblique`.
49238
50002
  # Corresponds to the JSON property `textStyle`
49239
50003
  # @return [String]
49240
50004
  attr_accessor :text_style
@@ -49265,7 +50029,7 @@ module Google
49265
50029
  # @return [Float]
49266
50030
  attr_accessor :size
49267
50031
 
49268
- # Unit for the font size. Follows CSS naming (in, px, pt, etc.).
50032
+ # Unit for the font size. Follows CSS naming (such as `in`, `px`, and `pt`).
49269
50033
  # Corresponds to the JSON property `unit`
49270
50034
  # @return [String]
49271
50035
  attr_accessor :unit
@@ -49665,7 +50429,7 @@ module Google
49665
50429
  class GoogleInternalAppsWaldoV1alphaAvailabilityPeriod
49666
50430
  include Google::Apis::Core::Hashable
49667
50431
 
49668
- # Day of week, 1 for Monday, ..., 7 for Sunday.
50432
+ # Day of week, 0 for Sunday, 1 for Monday, ...
49669
50433
  # Corresponds to the JSON property `dayOfWeek`
49670
50434
  # @return [Fixnum]
49671
50435
  attr_accessor :day_of_week
@@ -50544,18 +51308,18 @@ module Google
50544
51308
  end
50545
51309
 
50546
51310
  # Represents a color in the RGBA color space. This representation is designed
50547
- # for simplicity of conversion to/from color representations in various
51311
+ # for simplicity of conversion to and from color representations in various
50548
51312
  # languages over compactness. For example, the fields of this representation can
50549
51313
  # be trivially provided to the constructor of `java.awt.Color` in Java; it can
50550
51314
  # also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
50551
51315
  # method in iOS; and, with just a little work, it can be easily formatted into a
50552
- # CSS `rgba()` string in JavaScript. This reference page doesn't carry
51316
+ # CSS `rgba()` string in JavaScript. This reference page doesn't have
50553
51317
  # information about the absolute color space that should be used to interpret
50554
- # the RGB value (e.g. sRGB, Adobe RGB, DCI-P3, BT.2020, etc.). By default,
51318
+ # the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
50555
51319
  # applications should assume the sRGB color space. When color equality needs to
50556
51320
  # be decided, implementations, unless documented otherwise, treat two colors as
50557
- # equal if all their red, green, blue, and alpha values each differ by at most
50558
- # 1e-5. Example (Java): import com.google.type.Color; // ... public static java.
51321
+ # equal if all their red, green, blue, and alpha values each differ by at most `
51322
+ # 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
50559
51323
  # awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
50560
51324
  # protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
50561
51325
  # getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
@@ -59223,16 +59987,46 @@ module Google
59223
59987
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
59224
59988
  attr_accessor :accelerated_shopping_signal
59225
59989
 
59990
+ #
59991
+ # Corresponds to the JSON property `authenticSiteRankData`
59992
+ # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
59993
+ attr_accessor :authentic_site_rank_data
59994
+
59226
59995
  #
59227
59996
  # Corresponds to the JSON property `chromeCounts`
59228
59997
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
59229
59998
  attr_accessor :chrome_counts
59230
59999
 
59231
- # LINT.ThenChange(//depot/google3/indexing/ames/spanner/schema/web-version.proto)
60000
+ #
59232
60001
  # Corresponds to the JSON property `creator`
59233
60002
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
59234
60003
  attr_accessor :creator
59235
60004
 
60005
+ #
60006
+ # Corresponds to the JSON property `discoverSource`
60007
+ # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
60008
+ attr_accessor :discover_source
60009
+
60010
+ #
60011
+ # Corresponds to the JSON property `discussion`
60012
+ # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
60013
+ attr_accessor :discussion
60014
+
60015
+ #
60016
+ # Corresponds to the JSON property `documentIntent`
60017
+ # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
60018
+ attr_accessor :document_intent
60019
+
60020
+ #
60021
+ # Corresponds to the JSON property `extractedBookInfo`
60022
+ # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
60023
+ attr_accessor :extracted_book_info
60024
+
60025
+ #
60026
+ # Corresponds to the JSON property `instantChromeViews`
60027
+ # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
60028
+ attr_accessor :instant_chrome_views
60029
+
59236
60030
  #
59237
60031
  # Corresponds to the JSON property `instantNavboost`
59238
60032
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
@@ -59248,16 +60042,26 @@ module Google
59248
60042
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
59249
60043
  attr_accessor :modern_format_content
59250
60044
 
59251
- # LINT.IfChange
60045
+ #
59252
60046
  # Corresponds to the JSON property `navboost`
59253
60047
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
59254
60048
  attr_accessor :navboost
59255
60049
 
60050
+ #
60051
+ # Corresponds to the JSON property `predictedAuthenticity`
60052
+ # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
60053
+ attr_accessor :predicted_authenticity
60054
+
59256
60055
  #
59257
60056
  # Corresponds to the JSON property `rankembed`
59258
60057
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
59259
60058
  attr_accessor :rankembed
59260
60059
 
60060
+ #
60061
+ # Corresponds to the JSON property `rosettaLanguage`
60062
+ # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
60063
+ attr_accessor :rosetta_language
60064
+
59261
60065
  #
59262
60066
  # Corresponds to the JSON property `universalFacts`
59263
60067
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
@@ -59280,13 +60084,21 @@ module Google
59280
60084
  # Update properties of this object
59281
60085
  def update!(**args)
59282
60086
  @accelerated_shopping_signal = args[:accelerated_shopping_signal] if args.key?(:accelerated_shopping_signal)
60087
+ @authentic_site_rank_data = args[:authentic_site_rank_data] if args.key?(:authentic_site_rank_data)
59283
60088
  @chrome_counts = args[:chrome_counts] if args.key?(:chrome_counts)
59284
60089
  @creator = args[:creator] if args.key?(:creator)
60090
+ @discover_source = args[:discover_source] if args.key?(:discover_source)
60091
+ @discussion = args[:discussion] if args.key?(:discussion)
60092
+ @document_intent = args[:document_intent] if args.key?(:document_intent)
60093
+ @extracted_book_info = args[:extracted_book_info] if args.key?(:extracted_book_info)
60094
+ @instant_chrome_views = args[:instant_chrome_views] if args.key?(:instant_chrome_views)
59285
60095
  @instant_navboost = args[:instant_navboost] if args.key?(:instant_navboost)
59286
60096
  @localyp = args[:localyp] if args.key?(:localyp)
59287
60097
  @modern_format_content = args[:modern_format_content] if args.key?(:modern_format_content)
59288
60098
  @navboost = args[:navboost] if args.key?(:navboost)
60099
+ @predicted_authenticity = args[:predicted_authenticity] if args.key?(:predicted_authenticity)
59289
60100
  @rankembed = args[:rankembed] if args.key?(:rankembed)
60101
+ @rosetta_language = args[:rosetta_language] if args.key?(:rosetta_language)
59290
60102
  @universal_facts = args[:universal_facts] if args.key?(:universal_facts)
59291
60103
  @video_scoring_signal = args[:video_scoring_signal] if args.key?(:video_scoring_signal)
59292
60104
  @volt = args[:volt] if args.key?(:volt)
@@ -62063,6 +62875,16 @@ module Google
62063
62875
  # @return [String]
62064
62876
  attr_accessor :gibberish_result
62065
62877
 
62878
+ # The number of the above segments that were classified as gibberish.
62879
+ # Corresponds to the JSON property `numGibberishSegments`
62880
+ # @return [Fixnum]
62881
+ attr_accessor :num_gibberish_segments
62882
+
62883
+ # The number of ASR segments that were sent for classification.
62884
+ # Corresponds to the JSON property `numSegmentsClassified`
62885
+ # @return [Fixnum]
62886
+ attr_accessor :num_segments_classified
62887
+
62066
62888
  def initialize(**args)
62067
62889
  update!(**args)
62068
62890
  end
@@ -62070,6 +62892,8 @@ module Google
62070
62892
  # Update properties of this object
62071
62893
  def update!(**args)
62072
62894
  @gibberish_result = args[:gibberish_result] if args.key?(:gibberish_result)
62895
+ @num_gibberish_segments = args[:num_gibberish_segments] if args.key?(:num_gibberish_segments)
62896
+ @num_segments_classified = args[:num_segments_classified] if args.key?(:num_segments_classified)
62073
62897
  end
62074
62898
  end
62075
62899
 
@@ -63936,8 +64760,9 @@ module Google
63936
64760
  # @return [Google::Apis::ContentwarehouseV1::NlpSemanticParsingModelsMediaMediaAnnotation]
63937
64761
  attr_accessor :media
63938
64762
 
63939
- # This proto captures the contents of a messaging app notification that is
63940
- # typically part of a conversation thread. Next Id: 20
64763
+ # LINT.IfChange(ungoverned_message_notification) This proto captures the
64764
+ # contents of a messaging app notification that is typically part of a
64765
+ # conversation thread. Next Id: 20
63941
64766
  # Corresponds to the JSON property `messageNotification`
63942
64767
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesMessageNotification]
63943
64768
  attr_accessor :message_notification
@@ -64536,7 +65361,7 @@ module Google
64536
65361
 
64537
65362
  # Signals to be used by the Prefulfillment Ranker. Derived from the
64538
65363
  # ParsingSignals and GroundingSignals carried by the FunctionCall. LINT.IfChange
64539
- # Next ID: 52
65364
+ # Next ID: 57
64540
65365
  # Corresponds to the JSON property `prefulfillmentSignals`
64541
65366
  # @return [Google::Apis::ContentwarehouseV1::AssistantPrefulfillmentRankerPrefulfillmentSignals]
64542
65367
  attr_accessor :prefulfillment_signals
@@ -95263,8 +96088,8 @@ module Google
95263
96088
  # @return [String]
95264
96089
  attr_accessor :scaled_shifted_fixed_point4_encoding
95265
96090
 
95266
- # First 7 bits encode the version, then each chunck of 5 bits encode the index
95267
- # of a potential improv query (lsb to msb) -------|-----|-----|-----|-----|-----
96091
+ # First 7 bits encode the version, then each chunk of 5 bits encode the index of
96092
+ # a potential improv query (lsb to msb) -------|-----|-----|-----|-----|-----
95268
96093
  # version| id1 | id2 | id3 | id4 | id5 where id1 is the index of the first
95269
96094
  # improv query in the improv debug table. As of cl/270008220, this field only
95270
96095
  # contains the version info. For backward compatibility, version still only uses
@@ -96128,6 +96953,12 @@ module Google
96128
96953
  # @return [Fixnum]
96129
96954
  attr_accessor :non_displayable_organic_score_millis
96130
96955
 
96956
+ # This is experimental, not filled in yet and not intended to be used. Please
96957
+ # contact buyable-corpus@ before considering using this field.
96958
+ # Corresponds to the JSON property `nonDisplayableStaleAvailability`
96959
+ # @return [Google::Apis::ContentwarehouseV1::ShoppingWebentityShoppingAnnotationOfferAvailabilityInfo]
96960
+ attr_accessor :non_displayable_stale_availability
96961
+
96131
96962
  #
96132
96963
  # Corresponds to the JSON property `offerDocid`
96133
96964
  # @return [Fixnum]
@@ -96162,6 +96993,7 @@ module Google
96162
96993
  @non_displayable_brand_merchant_relationship = args[:non_displayable_brand_merchant_relationship] if args.key?(:non_displayable_brand_merchant_relationship)
96163
96994
  @non_displayable_currency = args[:non_displayable_currency] if args.key?(:non_displayable_currency)
96164
96995
  @non_displayable_organic_score_millis = args[:non_displayable_organic_score_millis] if args.key?(:non_displayable_organic_score_millis)
96996
+ @non_displayable_stale_availability = args[:non_displayable_stale_availability] if args.key?(:non_displayable_stale_availability)
96165
96997
  @offer_docid = args[:offer_docid] if args.key?(:offer_docid)
96166
96998
  @ref_type = args[:ref_type] if args.key?(:ref_type)
96167
96999
  @sori_version_id = args[:sori_version_id] if args.key?(:sori_version_id)
@@ -96744,7 +97576,7 @@ module Google
96744
97576
 
96745
97577
  # The following message contains info of sub image docs, it is populated in
96746
97578
  # query_state and consumed in web image boost twiddler: (go/
96747
- # WebImageBoostTwiddler). NextID: 25
97579
+ # WebImageBoostTwiddler). NextID: 26
96748
97580
  # Corresponds to the JSON property `salientImage`
96749
97581
  # @return [Google::Apis::ContentwarehouseV1::WwwResultInfoSubImageDocInfo]
96750
97582
  attr_accessor :salient_image
@@ -99447,7 +100279,7 @@ module Google
99447
100279
  end
99448
100280
  end
99449
100281
 
99450
- # Detailed scores about the topicality of an entity. Next available tag: 16
100282
+ # Detailed scores about the topicality of an entity. Next available tag: 17
99451
100283
  class RepositoryWebrefDetailedEntityScores
99452
100284
  include Google::Apis::Core::Hashable
99453
100285
 
@@ -99513,6 +100345,11 @@ module Google
99513
100345
  # @return [Float]
99514
100346
  attr_accessor :normalized_topicality
99515
100347
 
100348
+ # Contains the link to the author's profile url on the platform.
100349
+ # Corresponds to the JSON property `profileUrl`
100350
+ # @return [String]
100351
+ attr_accessor :profile_url
100352
+
99516
100353
  # Signals used for mining new reference pages, set by the reference-page-scorer
99517
100354
  # processor.
99518
100355
  # Corresponds to the JSON property `referencePageScores`
@@ -99541,6 +100378,7 @@ module Google
99541
100378
  @is_reference_page = args[:is_reference_page] if args.key?(:is_reference_page)
99542
100379
  @local_entity_location_confidence = args[:local_entity_location_confidence] if args.key?(:local_entity_location_confidence)
99543
100380
  @normalized_topicality = args[:normalized_topicality] if args.key?(:normalized_topicality)
100381
+ @profile_url = args[:profile_url] if args.key?(:profile_url)
99544
100382
  @reference_page_scores = args[:reference_page_scores] if args.key?(:reference_page_scores)
99545
100383
  @relevance_score = args[:relevance_score] if args.key?(:relevance_score)
99546
100384
  end
@@ -99831,7 +100669,7 @@ module Google
99831
100669
  # @return [Google::Apis::ContentwarehouseV1::RepositoryWebrefAnnotationDebugInfo]
99832
100670
  attr_accessor :debug_info
99833
100671
 
99834
- # Detailed scores about the topicality of an entity. Next available tag: 16
100672
+ # Detailed scores about the topicality of an entity. Next available tag: 17
99835
100673
  # Corresponds to the JSON property `detailedEntityScores`
99836
100674
  # @return [Google::Apis::ContentwarehouseV1::RepositoryWebrefDetailedEntityScores]
99837
100675
  attr_accessor :detailed_entity_scores
@@ -105798,6 +106636,12 @@ module Google
105798
106636
  # @return [String]
105799
106637
  attr_accessor :docid
105800
106638
 
106639
+ # ===================================================================== #
106640
+ # GenericFeatureVector Last tag used: 23
106641
+ # Corresponds to the JSON property `gfv`
106642
+ # @return [Google::Apis::ContentwarehouseV1::ResearchScamGenericFeatureVector]
106643
+ attr_accessor :gfv
106644
+
105801
106645
  # Metadata about the neighbor. This is returned under some configurations as a
105802
106646
  # serialized proto. The specific proto depends on which metadata is configured
105803
106647
  # to be returned.
@@ -105815,6 +106659,7 @@ module Google
105815
106659
  @crowding_attribute = args[:crowding_attribute] if args.key?(:crowding_attribute)
105816
106660
  @distance = args[:distance] if args.key?(:distance)
105817
106661
  @docid = args[:docid] if args.key?(:docid)
106662
+ @gfv = args[:gfv] if args.key?(:gfv)
105818
106663
  @metadata = args[:metadata] if args.key?(:metadata)
105819
106664
  end
105820
106665
  end
@@ -107606,7 +108451,7 @@ module Google
107606
108451
  # message with a new extension declaration. For more details on extension
107607
108452
  # declaration please refer to http://go/proto-proposals/extension-declarations.
107608
108453
  # Please refer to http://go/proto2-extensions for details on message extensions.
107609
- # LINT.IfChange next extension id: 5
108454
+ # LINT.IfChange next extension id: 6
107610
108455
  class SafesearchVideoClassifierOutput
107611
108456
  include Google::Apis::Core::Hashable
107612
108457
 
@@ -107655,7 +108500,7 @@ module Google
107655
108500
  # message with a new extension declaration. For more details on extension
107656
108501
  # declaration please refer to http://go/proto-proposals/extension-declarations.
107657
108502
  # Please refer to http://go/proto2-extensions for details on message extensions.
107658
- # LINT.IfChange next extension id: 5
108503
+ # LINT.IfChange next extension id: 6
107659
108504
  # Corresponds to the JSON property `videoClassifierOutput`
107660
108505
  # @return [Google::Apis::ContentwarehouseV1::SafesearchVideoClassifierOutput]
107661
108506
  attr_accessor :video_classifier_output
@@ -107713,6 +108558,16 @@ module Google
107713
108558
  # @return [String]
107714
108559
  attr_accessor :abstract_text
107715
108560
 
108561
+ # The original (unnormalized) type of an abstract. AbstractDisplay holds a
108562
+ # normalized type deduced from things like tagnames, tag-attributes, keywords in
108563
+ # documents or the placement of the abstract in the document. This field is
108564
+ # meant for the type of the abstract identified explicitly by the source
108565
+ # document. E.g., the value of the 'abstract-type' attribute from a tag in XML ('
108566
+ # primary abstract', 'summary', 'highlights' etc.).
108567
+ # Corresponds to the JSON property `AbstractTypeFromSource`
108568
+ # @return [String]
108569
+ attr_accessor :abstract_type_from_source
108570
+
107716
108571
  # Fingerprint of the URL after applying crawl and aggregate rewrites. Different
107717
108572
  # citations with the same AlternateVersionID must have the same VersionID, but
107718
108573
  # not necessarily vice versa. Omitted when identical to the VersionID.
@@ -107775,6 +108630,11 @@ module Google
107775
108630
  # @return [Fixnum]
107776
108631
  attr_accessor :citation_source
107777
108632
 
108633
+ # Seconds since the epoch, should be consistent with CitationSourceUrl.
108634
+ # Corresponds to the JSON property `CitationSourceCrawlTimestamp`
108635
+ # @return [Fixnum]
108636
+ attr_accessor :citation_source_crawl_timestamp
108637
+
107778
108638
  # url where record came from
107779
108639
  # Corresponds to the JSON property `CitationSourceUrl`
107780
108640
  # @return [String]
@@ -108267,6 +109127,7 @@ module Google
108267
109127
  @abstract_language = args[:abstract_language] if args.key?(:abstract_language)
108268
109128
  @abstract_source = args[:abstract_source] if args.key?(:abstract_source)
108269
109129
  @abstract_text = args[:abstract_text] if args.key?(:abstract_text)
109130
+ @abstract_type_from_source = args[:abstract_type_from_source] if args.key?(:abstract_type_from_source)
108270
109131
  @alternate_version_id = args[:alternate_version_id] if args.key?(:alternate_version_id)
108271
109132
  @anchors = args[:anchors] if args.key?(:anchors)
108272
109133
  @arxiv_section = args[:arxiv_section] if args.key?(:arxiv_section)
@@ -108278,6 +109139,7 @@ module Google
108278
109139
  @borrowed_fields = args[:borrowed_fields] if args.key?(:borrowed_fields)
108279
109140
  @chapter = args[:chapter] if args.key?(:chapter)
108280
109141
  @citation_source = args[:citation_source] if args.key?(:citation_source)
109142
+ @citation_source_crawl_timestamp = args[:citation_source_crawl_timestamp] if args.key?(:citation_source_crawl_timestamp)
108281
109143
  @citation_source_url = args[:citation_source_url] if args.key?(:citation_source_url)
108282
109144
  @citation_src = args[:citation_src] if args.key?(:citation_src)
108283
109145
  @cleared_reason = args[:cleared_reason] if args.key?(:cleared_reason)
@@ -108441,6 +109303,16 @@ module Google
108441
109303
  # @return [String]
108442
109304
  attr_accessor :abstract_text
108443
109305
 
109306
+ # The original (unnormalized) type of an abstract. AbstractDisplay holds a
109307
+ # normalized type deduced from things like tagnames, tag-attributes, keywords in
109308
+ # documents or the placement of the abstract in the document. This field is
109309
+ # meant for the type of the abstract identified explicitly by the source
109310
+ # document. E.g., the value of the 'abstract-type' attribute from a tag in XML ('
109311
+ # primary abstract', 'summary', 'highlights' etc.).
109312
+ # Corresponds to the JSON property `AbstractTypeFromSource`
109313
+ # @return [String]
109314
+ attr_accessor :abstract_type_from_source
109315
+
108444
109316
  def initialize(**args)
108445
109317
  update!(**args)
108446
109318
  end
@@ -108452,6 +109324,7 @@ module Google
108452
109324
  @abstract_html_left_over = args[:abstract_html_left_over] if args.key?(:abstract_html_left_over)
108453
109325
  @abstract_language = args[:abstract_language] if args.key?(:abstract_language)
108454
109326
  @abstract_text = args[:abstract_text] if args.key?(:abstract_text)
109327
+ @abstract_type_from_source = args[:abstract_type_from_source] if args.key?(:abstract_type_from_source)
108455
109328
  end
108456
109329
  end
108457
109330
 
@@ -111232,6 +112105,25 @@ module Google
111232
112105
  end
111233
112106
  end
111234
112107
 
112108
+ #
112109
+ class ShoppingWebentityShoppingAnnotationOfferAvailabilityInfo
112110
+ include Google::Apis::Core::Hashable
112111
+
112112
+ #
112113
+ # Corresponds to the JSON property `availability`
112114
+ # @return [String]
112115
+ attr_accessor :availability
112116
+
112117
+ def initialize(**args)
112118
+ update!(**args)
112119
+ end
112120
+
112121
+ # Update properties of this object
112122
+ def update!(**args)
112123
+ @availability = args[:availability] if args.key?(:availability)
112124
+ end
112125
+ end
112126
+
111235
112127
  # Information about a rating provided for a product. This can represent an
111236
112128
  # aggregated rating if count is set. Next Id: 7
111237
112129
  class ShoppingWebentityShoppingAnnotationProductRating
@@ -112967,13 +113859,8 @@ module Google
112967
113859
  class SocialGraphApiProtoLimitedProfileNameSettings
112968
113860
  include Google::Apis::Core::Hashable
112969
113861
 
112970
- # Required. Describes which shortening option the user implicitly chose for
112971
- # their limited profile. E.g., if 'John Doe' chose 'John D.', they implicitly
112972
- # chose: partial_name_options ` given_name_spec ` show_all: true `
112973
- # family_name_spec: ` show_initial: true truncation_indicator: PERIOD ` ` While
112974
- # we'll in all cases serve the actual name chosen by the user for limited
112975
- # profiles (stored below), we'll use this information to recompute the default
112976
- # limited profile to be rendered to users when they change their core name.
113862
+ # For general information about Limited Profiles, see go/limited-profiles-api.
113863
+ # LINT.IfChange
112977
113864
  # Corresponds to the JSON property `partialNameOptions`
112978
113865
  # @return [Google::Apis::ContentwarehouseV1::SocialGraphApiProtoPartialNameOptions]
112979
113866
  attr_accessor :partial_name_options
@@ -113244,7 +114131,8 @@ module Google
113244
114131
  end
113245
114132
  end
113246
114133
 
113247
- #
114134
+ # For general information about Limited Profiles, see go/limited-profiles-api.
114135
+ # LINT.IfChange
113248
114136
  class SocialGraphApiProtoPartialNameOptions
113249
114137
  include Google::Apis::Core::Hashable
113250
114138
 
@@ -116890,7 +117778,7 @@ module Google
116890
117778
 
116891
117779
  #
116892
117780
  # Corresponds to the JSON property `greenFaresInfo`
116893
- # @return [Array<Google::Apis::ContentwarehouseV1::TravelFlightsAirlineConfigGreenFaresInfo>]
117781
+ # @return [Google::Apis::ContentwarehouseV1::TravelFlightsAirlineConfigGreenFaresInfo]
116894
117782
  attr_accessor :green_fares_info
116895
117783
 
116896
117784
  # Note that some iata_codes are reused (`dup_flag` field). For details,
@@ -129164,7 +130052,7 @@ module Google
129164
130052
 
129165
130053
  # The following message contains info of sub image docs, it is populated in
129166
130054
  # query_state and consumed in web image boost twiddler: (go/
129167
- # WebImageBoostTwiddler). NextID: 25
130055
+ # WebImageBoostTwiddler). NextID: 26
129168
130056
  class WwwResultInfoSubImageDocInfo
129169
130057
  include Google::Apis::Core::Hashable
129170
130058
 
@@ -129216,6 +130104,11 @@ module Google
129216
130104
  # @return [Float]
129217
130105
  attr_accessor :est_relevance
129218
130106
 
130107
+ # Estimated Sigma U calculated from U*.
130108
+ # Corresponds to the JSON property `estSigmaU`
130109
+ # @return [Float]
130110
+ attr_accessor :est_sigma_u
130111
+
129219
130112
  # The subset of FlowProto that we want to go into production AND be stored in
129220
130113
  # ContentSignals.
129221
130114
  # Corresponds to the JSON property `flowOutput`
@@ -129317,6 +130210,7 @@ module Google
129317
130210
  @document_trust = args[:document_trust] if args.key?(:document_trust)
129318
130211
  @eq_star = args[:eq_star] if args.key?(:eq_star)
129319
130212
  @est_relevance = args[:est_relevance] if args.key?(:est_relevance)
130213
+ @est_sigma_u = args[:est_sigma_u] if args.key?(:est_sigma_u)
129320
130214
  @flow_output = args[:flow_output] if args.key?(:flow_output)
129321
130215
  @height = args[:height] if args.key?(:height)
129322
130216
  @height50k = args[:height50k] if args.key?(:height50k)