google-apis-contentwarehouse_v1 0.15.0 → 0.17.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.
@@ -9281,6 +9281,15 @@ module Google
|
|
9281
9281
|
# @return [String]
|
9282
9282
|
attr_accessor :enabled
|
9283
9283
|
|
9284
|
+
# If true, disable send message AppControl/SD flow. This is needed to suppress
|
9285
|
+
# the feature for specific device. If we decide to turn down this feature for
|
9286
|
+
# all devices, then this field will become obsolete and should be removed. See
|
9287
|
+
# context in b/275727627.
|
9288
|
+
# Corresponds to the JSON property `sendMessageSuppressed`
|
9289
|
+
# @return [Boolean]
|
9290
|
+
attr_accessor :send_message_suppressed
|
9291
|
+
alias_method :send_message_suppressed?, :send_message_suppressed
|
9292
|
+
|
9284
9293
|
def initialize(**args)
|
9285
9294
|
update!(**args)
|
9286
9295
|
end
|
@@ -9288,6 +9297,7 @@ module Google
|
|
9288
9297
|
# Update properties of this object
|
9289
9298
|
def update!(**args)
|
9290
9299
|
@enabled = args[:enabled] if args.key?(:enabled)
|
9300
|
+
@send_message_suppressed = args[:send_message_suppressed] if args.key?(:send_message_suppressed)
|
9291
9301
|
end
|
9292
9302
|
end
|
9293
9303
|
|
@@ -11821,16 +11831,22 @@ module Google
|
|
11821
11831
|
end
|
11822
11832
|
|
11823
11833
|
# Structure of each notification in the MessageNotification Bundle. Attribute
|
11824
|
-
# sender_name could be different in case of group messages. Next Id:
|
11834
|
+
# sender_name could be different in case of group messages. Next Id: 8
|
11825
11835
|
class AssistantApiCoreTypesMessageNotificationNotificationEntry
|
11826
11836
|
include Google::Apis::Core::Hashable
|
11827
11837
|
|
11838
|
+
# Count of characters in the message body in the notification.
|
11839
|
+
# Corresponds to the JSON property `charCount`
|
11840
|
+
# @return [Fixnum]
|
11841
|
+
attr_accessor :char_count
|
11842
|
+
|
11828
11843
|
# Uri for the attachment (image, audio, video etc.).
|
11829
11844
|
# Corresponds to the JSON property `dataUri`
|
11830
11845
|
# @return [String]
|
11831
11846
|
attr_accessor :data_uri
|
11832
11847
|
|
11833
|
-
#
|
11848
|
+
# Note that this is not present in production traffic. Content of the message
|
11849
|
+
# body in the notification.
|
11834
11850
|
# Corresponds to the JSON property `messageBody`
|
11835
11851
|
# @return [String]
|
11836
11852
|
attr_accessor :message_body
|
@@ -11851,17 +11867,24 @@ module Google
|
|
11851
11867
|
# @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesMessageNotificationPerson]
|
11852
11868
|
attr_accessor :sender
|
11853
11869
|
|
11870
|
+
# Count of words in the message body in the notification.
|
11871
|
+
# Corresponds to the JSON property `wordCount`
|
11872
|
+
# @return [Fixnum]
|
11873
|
+
attr_accessor :word_count
|
11874
|
+
|
11854
11875
|
def initialize(**args)
|
11855
11876
|
update!(**args)
|
11856
11877
|
end
|
11857
11878
|
|
11858
11879
|
# Update properties of this object
|
11859
11880
|
def update!(**args)
|
11881
|
+
@char_count = args[:char_count] if args.key?(:char_count)
|
11860
11882
|
@data_uri = args[:data_uri] if args.key?(:data_uri)
|
11861
11883
|
@message_body = args[:message_body] if args.key?(:message_body)
|
11862
11884
|
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
11863
11885
|
@post_time = args[:post_time] if args.key?(:post_time)
|
11864
11886
|
@sender = args[:sender] if args.key?(:sender)
|
11887
|
+
@word_count = args[:word_count] if args.key?(:word_count)
|
11865
11888
|
end
|
11866
11889
|
end
|
11867
11890
|
|
@@ -12484,7 +12507,7 @@ module Google
|
|
12484
12507
|
attr_accessor :location
|
12485
12508
|
|
12486
12509
|
# 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:
|
12510
|
+
# for any other purposes, such as branching on it. Next ID: 16
|
12488
12511
|
# Corresponds to the JSON property `loggingOnlyData`
|
12489
12512
|
# @return [Google::Apis::ContentwarehouseV1::AssistantApiLoggingOnlyData]
|
12490
12513
|
attr_accessor :logging_only_data
|
@@ -13283,14 +13306,13 @@ module Google
|
|
13283
13306
|
end
|
13284
13307
|
|
13285
13308
|
# 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:
|
13309
|
+
# for any other purposes, such as branching on it. Next ID: 16
|
13287
13310
|
class AssistantApiLoggingOnlyData
|
13288
13311
|
include Google::Apis::Core::Hashable
|
13289
13312
|
|
13290
13313
|
# The index of the account on the device. Useful when there are multiple
|
13291
|
-
# accounts on a device
|
13292
|
-
#
|
13293
|
-
# stable in practice.
|
13314
|
+
# accounts on a device. There is no guarantee that this is a stable number but
|
13315
|
+
# is relatively stable in practice.
|
13294
13316
|
# Corresponds to the JSON property `accountIndex`
|
13295
13317
|
# @return [Fixnum]
|
13296
13318
|
attr_accessor :account_index
|
@@ -13354,6 +13376,14 @@ module Google
|
|
13354
13376
|
# @return [String]
|
13355
13377
|
attr_accessor :initial_app_version
|
13356
13378
|
|
13379
|
+
# Boolean field to indicate whether a certain user is the primary user of a
|
13380
|
+
# device or not. This is useful for distinguishing the user0 from other users
|
13381
|
+
# given user0 might have certain privileges (Eg: Hubmode on Tangor)
|
13382
|
+
# Corresponds to the JSON property `isPrimaryUser`
|
13383
|
+
# @return [Boolean]
|
13384
|
+
attr_accessor :is_primary_user
|
13385
|
+
alias_method :is_primary_user?, :is_primary_user
|
13386
|
+
|
13357
13387
|
# default display name of device over mdns. This is specified at the factory,
|
13358
13388
|
# not specified by the user.
|
13359
13389
|
# Corresponds to the JSON property `mdnsDisplayName`
|
@@ -13388,6 +13418,7 @@ module Google
|
|
13388
13418
|
@device_model = args[:device_model] if args.key?(:device_model)
|
13389
13419
|
@embedder_build_info = args[:embedder_build_info] if args.key?(:embedder_build_info)
|
13390
13420
|
@initial_app_version = args[:initial_app_version] if args.key?(:initial_app_version)
|
13421
|
+
@is_primary_user = args[:is_primary_user] if args.key?(:is_primary_user)
|
13391
13422
|
@mdns_display_name = args[:mdns_display_name] if args.key?(:mdns_display_name)
|
13392
13423
|
@platform_build = args[:platform_build] if args.key?(:platform_build)
|
13393
13424
|
@virtual_release_channel = args[:virtual_release_channel] if args.key?(:virtual_release_channel)
|
@@ -15150,7 +15181,7 @@ module Google
|
|
15150
15181
|
attr_accessor :should_be_linked
|
15151
15182
|
alias_method :should_be_linked?, :should_be_linked
|
15152
15183
|
|
15153
|
-
# The call state of the device (i.e. whether
|
15184
|
+
# The call state of the device (i.e. whether a Duo call account has been setup
|
15154
15185
|
# on the device).
|
15155
15186
|
# Corresponds to the JSON property `state`
|
15156
15187
|
# @return [String]
|
@@ -16681,7 +16712,7 @@ module Google
|
|
16681
16712
|
attr_accessor :supported_client_op
|
16682
16713
|
|
16683
16714
|
# These are the set of features that are supported by the device. It's a part of
|
16684
|
-
# the SoftwareCapabilities of the device. Next ID:
|
16715
|
+
# the SoftwareCapabilities of the device. Next ID: 66
|
16685
16716
|
# Corresponds to the JSON property `supportedFeatures`
|
16686
16717
|
# @return [Google::Apis::ContentwarehouseV1::AssistantApiSupportedFeatures]
|
16687
16718
|
attr_accessor :supported_features
|
@@ -17075,7 +17106,7 @@ module Google
|
|
17075
17106
|
end
|
17076
17107
|
|
17077
17108
|
# These are the set of features that are supported by the device. It's a part of
|
17078
|
-
# the SoftwareCapabilities of the device. Next ID:
|
17109
|
+
# the SoftwareCapabilities of the device. Next ID: 66
|
17079
17110
|
class AssistantApiSupportedFeatures
|
17080
17111
|
include Google::Apis::Core::Hashable
|
17081
17112
|
|
@@ -17295,6 +17326,12 @@ module Google
|
|
17295
17326
|
attr_accessor :live_cards_supported
|
17296
17327
|
alias_method :live_cards_supported?, :live_cards_supported
|
17297
17328
|
|
17329
|
+
# Whether the client supports the Lottie animation library for the broadcast
|
17330
|
+
# feature.
|
17331
|
+
# Corresponds to the JSON property `lottieAnimationSupport`
|
17332
|
+
# @return [String]
|
17333
|
+
attr_accessor :lottie_animation_support
|
17334
|
+
|
17298
17335
|
# Whether the client supports Assistant dialogs within Maps. This field will be
|
17299
17336
|
# set only when the Maps on the surface supports Assistant dialogs embedded
|
17300
17337
|
# within Maps. go/gsa-gmm.
|
@@ -17369,6 +17406,13 @@ module Google
|
|
17369
17406
|
attr_accessor :privacy_aware_lockscreen_supported
|
17370
17407
|
alias_method :privacy_aware_lockscreen_supported?, :privacy_aware_lockscreen_supported
|
17371
17408
|
|
17409
|
+
# Whether the client supports tts tapering for the read messages flow. If set to
|
17410
|
+
# true the tapered tts variant would be used during the read messages flow.
|
17411
|
+
# Corresponds to the JSON property `readMessagesTtsTaperingSupported`
|
17412
|
+
# @return [Boolean]
|
17413
|
+
attr_accessor :read_messages_tts_tapering_supported
|
17414
|
+
alias_method :read_messages_tts_tapering_supported?, :read_messages_tts_tapering_supported
|
17415
|
+
|
17372
17416
|
# Whether the client has remote casting enabled. For ex: we want to disable this
|
17373
17417
|
# for clients like Auto.
|
17374
17418
|
# Corresponds to the JSON property `remoteCloudCastingEnabled`
|
@@ -17540,6 +17584,7 @@ module Google
|
|
17540
17584
|
@launch_keyboard_supported = args[:launch_keyboard_supported] if args.key?(:launch_keyboard_supported)
|
17541
17585
|
@lens_supported = args[:lens_supported] if args.key?(:lens_supported)
|
17542
17586
|
@live_cards_supported = args[:live_cards_supported] if args.key?(:live_cards_supported)
|
17587
|
+
@lottie_animation_support = args[:lottie_animation_support] if args.key?(:lottie_animation_support)
|
17543
17588
|
@maps_dialogs_supported = args[:maps_dialogs_supported] if args.key?(:maps_dialogs_supported)
|
17544
17589
|
@masquerade_mode_supported = args[:masquerade_mode_supported] if args.key?(:masquerade_mode_supported)
|
17545
17590
|
@media_control_support = args[:media_control_support] if args.key?(:media_control_support)
|
@@ -17550,6 +17595,7 @@ module Google
|
|
17550
17595
|
@parental_controls_supported = args[:parental_controls_supported] if args.key?(:parental_controls_supported)
|
17551
17596
|
@persistent_display_supported = args[:persistent_display_supported] if args.key?(:persistent_display_supported)
|
17552
17597
|
@privacy_aware_lockscreen_supported = args[:privacy_aware_lockscreen_supported] if args.key?(:privacy_aware_lockscreen_supported)
|
17598
|
+
@read_messages_tts_tapering_supported = args[:read_messages_tts_tapering_supported] if args.key?(:read_messages_tts_tapering_supported)
|
17553
17599
|
@remote_cloud_casting_enabled = args[:remote_cloud_casting_enabled] if args.key?(:remote_cloud_casting_enabled)
|
17554
17600
|
@server_generated_feedback_chips_enabled = args[:server_generated_feedback_chips_enabled] if args.key?(:server_generated_feedback_chips_enabled)
|
17555
17601
|
@sh_lock_screen_supported = args[:sh_lock_screen_supported] if args.key?(:sh_lock_screen_supported)
|
@@ -17651,6 +17697,13 @@ module Google
|
|
17651
17697
|
# @return [Google::Apis::ContentwarehouseV1::AssistantApiSurfacePropertiesExecutionCapabilities]
|
17652
17698
|
attr_accessor :execution_capabilities
|
17653
17699
|
|
17700
|
+
# Indicates if the surface prefers glanceable UI when rendering Assistant
|
17701
|
+
# response. (see go/mobile-dr-hbird-glanceable-comms-cuj for more context).
|
17702
|
+
# Corresponds to the JSON property `prefersGlanceableUi`
|
17703
|
+
# @return [Boolean]
|
17704
|
+
attr_accessor :prefers_glanceable_ui
|
17705
|
+
alias_method :prefers_glanceable_ui?, :prefers_glanceable_ui
|
17706
|
+
|
17654
17707
|
# If this field is unset, the response format is unknown
|
17655
17708
|
# Corresponds to the JSON property `responseDisplayFormat`
|
17656
17709
|
# @return [String]
|
@@ -17670,6 +17723,7 @@ module Google
|
|
17670
17723
|
# Update properties of this object
|
17671
17724
|
def update!(**args)
|
17672
17725
|
@execution_capabilities = args[:execution_capabilities] if args.key?(:execution_capabilities)
|
17726
|
+
@prefers_glanceable_ui = args[:prefers_glanceable_ui] if args.key?(:prefers_glanceable_ui)
|
17673
17727
|
@response_display_format = args[:response_display_format] if args.key?(:response_display_format)
|
17674
17728
|
@supports_multi_response = args[:supports_multi_response] if args.key?(:supports_multi_response)
|
17675
17729
|
end
|
@@ -18333,6 +18387,15 @@ module Google
|
|
18333
18387
|
attr_accessor :restrict_alarms_to_next_day
|
18334
18388
|
alias_method :restrict_alarms_to_next_day?, :restrict_alarms_to_next_day
|
18335
18389
|
|
18390
|
+
# Whether the client supports mutation of any alarm attribute such as
|
18391
|
+
# time_pattern, recurrence_pattern, etc through the MUTATE action. If this is
|
18392
|
+
# false, MUTATE may only be used for changing the alarm's status (to e.g.
|
18393
|
+
# disable or dismiss the alarm).
|
18394
|
+
# Corresponds to the JSON property `supportsGenericMutations`
|
18395
|
+
# @return [Boolean]
|
18396
|
+
attr_accessor :supports_generic_mutations
|
18397
|
+
alias_method :supports_generic_mutations?, :supports_generic_mutations
|
18398
|
+
|
18336
18399
|
# Whether the client supports the STOP alarm action. If this is false, stop
|
18337
18400
|
# actions will be represented by the MUTATE action, and the device may need to
|
18338
18401
|
# check alarm state to determine if there's a firing alarm that needs to be
|
@@ -18350,6 +18413,7 @@ module Google
|
|
18350
18413
|
def update!(**args)
|
18351
18414
|
@max_supported_alarms = args[:max_supported_alarms] if args.key?(:max_supported_alarms)
|
18352
18415
|
@restrict_alarms_to_next_day = args[:restrict_alarms_to_next_day] if args.key?(:restrict_alarms_to_next_day)
|
18416
|
+
@supports_generic_mutations = args[:supports_generic_mutations] if args.key?(:supports_generic_mutations)
|
18353
18417
|
@supports_stop_action = args[:supports_stop_action] if args.key?(:supports_stop_action)
|
18354
18418
|
end
|
18355
18419
|
end
|
@@ -19634,7 +19698,9 @@ module Google
|
|
19634
19698
|
end
|
19635
19699
|
end
|
19636
19700
|
|
19637
|
-
# Features to be extracted from Device GP for ranking in HGR.
|
19701
|
+
# Features to be extracted from Device GP for ranking in HGR. Each candidate
|
19702
|
+
# from Device GP will be associated with its own DeviceGroundingProviderFeatures.
|
19703
|
+
# Next ID: 5
|
19638
19704
|
class AssistantGroundingRankerDeviceGroundingProviderFeatures
|
19639
19705
|
include Google::Apis::Core::Hashable
|
19640
19706
|
|
@@ -19654,6 +19720,18 @@ module Google
|
|
19654
19720
|
# @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesGovernedDeviceId]
|
19655
19721
|
attr_accessor :device_id
|
19656
19722
|
|
19723
|
+
# Features generated by Device Targeting library (Lumos). See go/hgr-lumos-
|
19724
|
+
# integration and go/lumos-feature-extraction for more details.
|
19725
|
+
# Corresponds to the JSON property `deviceTargetingFeatures`
|
19726
|
+
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeatures]
|
19727
|
+
attr_accessor :device_targeting_features
|
19728
|
+
|
19729
|
+
# Labels tagged by Device Targeting library (Lumos). See go/hgr-lumos-
|
19730
|
+
# integration and go/lumos-feature-extraction for more details.
|
19731
|
+
# Corresponds to the JSON property `deviceTargetingLabels`
|
19732
|
+
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingLabels]
|
19733
|
+
attr_accessor :device_targeting_labels
|
19734
|
+
|
19657
19735
|
def initialize(**args)
|
19658
19736
|
update!(**args)
|
19659
19737
|
end
|
@@ -19661,6 +19739,127 @@ module Google
|
|
19661
19739
|
# Update properties of this object
|
19662
19740
|
def update!(**args)
|
19663
19741
|
@device_id = args[:device_id] if args.key?(:device_id)
|
19742
|
+
@device_targeting_features = args[:device_targeting_features] if args.key?(:device_targeting_features)
|
19743
|
+
@device_targeting_labels = args[:device_targeting_labels] if args.key?(:device_targeting_labels)
|
19744
|
+
end
|
19745
|
+
end
|
19746
|
+
|
19747
|
+
# Features generated by Device Targeting library (Lumos). See go/hgr-lumos-
|
19748
|
+
# integration and go/lumos-feature-extraction for more details.
|
19749
|
+
class AssistantGroundingRankerDeviceTargetingFeatures
|
19750
|
+
include Google::Apis::Core::Hashable
|
19751
|
+
|
19752
|
+
# The properties of the device. They are static and won't change.
|
19753
|
+
# Corresponds to the JSON property `properties`
|
19754
|
+
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeaturesProperties]
|
19755
|
+
attr_accessor :properties
|
19756
|
+
|
19757
|
+
# The states of the device. They are dynamic and may change based on the current
|
19758
|
+
# context.
|
19759
|
+
# Corresponds to the JSON property `states`
|
19760
|
+
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeaturesStates]
|
19761
|
+
attr_accessor :states
|
19762
|
+
|
19763
|
+
def initialize(**args)
|
19764
|
+
update!(**args)
|
19765
|
+
end
|
19766
|
+
|
19767
|
+
# Update properties of this object
|
19768
|
+
def update!(**args)
|
19769
|
+
@properties = args[:properties] if args.key?(:properties)
|
19770
|
+
@states = args[:states] if args.key?(:states)
|
19771
|
+
end
|
19772
|
+
end
|
19773
|
+
|
19774
|
+
# The properties of the device. They are static and won't change.
|
19775
|
+
class AssistantGroundingRankerDeviceTargetingFeaturesProperties
|
19776
|
+
include Google::Apis::Core::Hashable
|
19777
|
+
|
19778
|
+
# The model ID of the device. This should be globally unique across
|
19779
|
+
# manufacturers/OEMs.
|
19780
|
+
# Corresponds to the JSON property `deviceModelId`
|
19781
|
+
# @return [String]
|
19782
|
+
attr_accessor :device_model_id
|
19783
|
+
|
19784
|
+
# Indicate whether the device is owned by the user who is speaking.
|
19785
|
+
# Corresponds to the JSON property `isOwnedBySpeaker`
|
19786
|
+
# @return [Boolean]
|
19787
|
+
attr_accessor :is_owned_by_speaker
|
19788
|
+
alias_method :is_owned_by_speaker?, :is_owned_by_speaker
|
19789
|
+
|
19790
|
+
def initialize(**args)
|
19791
|
+
update!(**args)
|
19792
|
+
end
|
19793
|
+
|
19794
|
+
# Update properties of this object
|
19795
|
+
def update!(**args)
|
19796
|
+
@device_model_id = args[:device_model_id] if args.key?(:device_model_id)
|
19797
|
+
@is_owned_by_speaker = args[:is_owned_by_speaker] if args.key?(:is_owned_by_speaker)
|
19798
|
+
end
|
19799
|
+
end
|
19800
|
+
|
19801
|
+
# The states of the device. They are dynamic and may change based on the current
|
19802
|
+
# context.
|
19803
|
+
class AssistantGroundingRankerDeviceTargetingFeaturesStates
|
19804
|
+
include Google::Apis::Core::Hashable
|
19805
|
+
|
19806
|
+
# The distance of the device relative to others that hear the user's OKG.
|
19807
|
+
# Timestamp of when the device was last used. Should correspond to when the
|
19808
|
+
# AssistantRequestParams (in ASSISTANT_SNAPSHOT corpus) were last written for
|
19809
|
+
# this device.
|
19810
|
+
# Corresponds to the JSON property `distance`
|
19811
|
+
# @return [String]
|
19812
|
+
attr_accessor :distance
|
19813
|
+
|
19814
|
+
# Indicate whether the device is docked on a base.
|
19815
|
+
# Corresponds to the JSON property `isDocked`
|
19816
|
+
# @return [Boolean]
|
19817
|
+
attr_accessor :is_docked
|
19818
|
+
alias_method :is_docked?, :is_docked
|
19819
|
+
|
19820
|
+
# Indicate whether the device is locked.
|
19821
|
+
# Corresponds to the JSON property `isLocked`
|
19822
|
+
# @return [Boolean]
|
19823
|
+
attr_accessor :is_locked
|
19824
|
+
alias_method :is_locked?, :is_locked
|
19825
|
+
|
19826
|
+
# Indicate whether the device is tethered to another device.
|
19827
|
+
# Corresponds to the JSON property `isTethered`
|
19828
|
+
# @return [Boolean]
|
19829
|
+
attr_accessor :is_tethered
|
19830
|
+
alias_method :is_tethered?, :is_tethered
|
19831
|
+
|
19832
|
+
def initialize(**args)
|
19833
|
+
update!(**args)
|
19834
|
+
end
|
19835
|
+
|
19836
|
+
# Update properties of this object
|
19837
|
+
def update!(**args)
|
19838
|
+
@distance = args[:distance] if args.key?(:distance)
|
19839
|
+
@is_docked = args[:is_docked] if args.key?(:is_docked)
|
19840
|
+
@is_locked = args[:is_locked] if args.key?(:is_locked)
|
19841
|
+
@is_tethered = args[:is_tethered] if args.key?(:is_tethered)
|
19842
|
+
end
|
19843
|
+
end
|
19844
|
+
|
19845
|
+
# Labels tagged by Device Targeting library (Lumos). See go/hgr-lumos-
|
19846
|
+
# integration and go/lumos-feature-extraction for more details.
|
19847
|
+
class AssistantGroundingRankerDeviceTargetingLabels
|
19848
|
+
include Google::Apis::Core::Hashable
|
19849
|
+
|
19850
|
+
# Indicate whether the device is selected by Lumos as the target device.
|
19851
|
+
# Corresponds to the JSON property `isSelectedByLumos`
|
19852
|
+
# @return [Boolean]
|
19853
|
+
attr_accessor :is_selected_by_lumos
|
19854
|
+
alias_method :is_selected_by_lumos?, :is_selected_by_lumos
|
19855
|
+
|
19856
|
+
def initialize(**args)
|
19857
|
+
update!(**args)
|
19858
|
+
end
|
19859
|
+
|
19860
|
+
# Update properties of this object
|
19861
|
+
def update!(**args)
|
19862
|
+
@is_selected_by_lumos = args[:is_selected_by_lumos] if args.key?(:is_selected_by_lumos)
|
19664
19863
|
end
|
19665
19864
|
end
|
19666
19865
|
|
@@ -19673,12 +19872,14 @@ module Google
|
|
19673
19872
|
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerContactGroundingProviderFeatures]
|
19674
19873
|
attr_accessor :contact_grounding_provider_features
|
19675
19874
|
|
19676
|
-
# Features to be extracted from Device GP for ranking in HGR.
|
19875
|
+
# Features to be extracted from Device GP for ranking in HGR. Each candidate
|
19876
|
+
# from Device GP will be associated with its own DeviceGroundingProviderFeatures.
|
19877
|
+
# Next ID: 5
|
19677
19878
|
# Corresponds to the JSON property `deviceGroundingProviderFeatures`
|
19678
19879
|
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceGroundingProviderFeatures]
|
19679
19880
|
attr_accessor :device_grounding_provider_features
|
19680
19881
|
|
19681
|
-
# Features to be passed from Media GP to HGR. Next ID:
|
19882
|
+
# Features to be passed from Media GP to HGR. Next ID: 15
|
19682
19883
|
# Corresponds to the JSON property `mediaGroundingProviderFeatures`
|
19683
19884
|
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerMediaGroundingProviderFeatures]
|
19684
19885
|
attr_accessor :media_grounding_provider_features
|
@@ -19688,7 +19889,7 @@ module Google
|
|
19688
19889
|
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerPodcastGroundingProviderFeatures]
|
19689
19890
|
attr_accessor :podcast_grounding_provider_features
|
19690
19891
|
|
19691
|
-
# Features to be extracted from Provider GP for ranking in HGR. Next ID:
|
19892
|
+
# Features to be extracted from Provider GP for ranking in HGR. Next ID: 6
|
19692
19893
|
# Corresponds to the JSON property `providerGroundingProviderFeatures`
|
19693
19894
|
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerProviderGroundingProviderFeatures]
|
19694
19895
|
attr_accessor :provider_grounding_provider_features
|
@@ -19857,7 +20058,7 @@ module Google
|
|
19857
20058
|
end
|
19858
20059
|
end
|
19859
20060
|
|
19860
|
-
# Features to be passed from Media GP to HGR. Next ID:
|
20061
|
+
# Features to be passed from Media GP to HGR. Next ID: 15
|
19861
20062
|
class AssistantGroundingRankerMediaGroundingProviderFeatures
|
19862
20063
|
include Google::Apis::Core::Hashable
|
19863
20064
|
|
@@ -19905,6 +20106,12 @@ module Google
|
|
19905
20106
|
attr_accessor :is_seed_radio_request
|
19906
20107
|
alias_method :is_seed_radio_request?, :is_seed_radio_request
|
19907
20108
|
|
20109
|
+
# Indicates whether this is youtube content seeking music.
|
20110
|
+
# Corresponds to the JSON property `isYoutubeMusicSeeking`
|
20111
|
+
# @return [Boolean]
|
20112
|
+
attr_accessor :is_youtube_music_seeking
|
20113
|
+
alias_method :is_youtube_music_seeking?, :is_youtube_music_seeking
|
20114
|
+
|
19908
20115
|
# MediaAquaAction::media_content_type from interpretation. It can be used for
|
19909
20116
|
# cross-content type ranking, for example, if a candidate's content type does
|
19910
20117
|
# not match this content type from interpretation, this candidate will be
|
@@ -19963,6 +20170,7 @@ module Google
|
|
19963
20170
|
@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)
|
19964
20171
|
@is_seed_radio = args[:is_seed_radio] if args.key?(:is_seed_radio)
|
19965
20172
|
@is_seed_radio_request = args[:is_seed_radio_request] if args.key?(:is_seed_radio_request)
|
20173
|
+
@is_youtube_music_seeking = args[:is_youtube_music_seeking] if args.key?(:is_youtube_music_seeking)
|
19966
20174
|
@media_content_type = args[:media_content_type] if args.key?(:media_content_type)
|
19967
20175
|
@msc_rate = args[:msc_rate] if args.key?(:msc_rate)
|
19968
20176
|
@scubed_p_sai_music = args[:scubed_p_sai_music] if args.key?(:scubed_p_sai_music)
|
@@ -20004,7 +20212,7 @@ module Google
|
|
20004
20212
|
end
|
20005
20213
|
end
|
20006
20214
|
|
20007
|
-
# Features to be extracted from Provider GP for ranking in HGR. Next ID:
|
20215
|
+
# Features to be extracted from Provider GP for ranking in HGR. Next ID: 6
|
20008
20216
|
class AssistantGroundingRankerProviderGroundingProviderFeatures
|
20009
20217
|
include Google::Apis::Core::Hashable
|
20010
20218
|
|
@@ -20017,9 +20225,9 @@ module Google
|
|
20017
20225
|
|
20018
20226
|
# Cluster IDs for the provider. This field is repeated because some providers
|
20019
20227
|
# can be associated with multiple clusters. PRR specific feature.
|
20020
|
-
# Corresponds to the JSON property `
|
20021
|
-
# @return [Array<
|
20022
|
-
attr_accessor :
|
20228
|
+
# Corresponds to the JSON property `providerClusterIds`
|
20229
|
+
# @return [Array<Fixnum>]
|
20230
|
+
attr_accessor :provider_cluster_ids
|
20023
20231
|
|
20024
20232
|
# Identifier used to represent a single application (a.k.a. provider). This
|
20025
20233
|
# model represents the surface-agnostic counterpart for assistant.api.core_types.
|
@@ -20055,7 +20263,7 @@ module Google
|
|
20055
20263
|
# Update properties of this object
|
20056
20264
|
def update!(**args)
|
20057
20265
|
@is_in_app_provider = args[:is_in_app_provider] if args.key?(:is_in_app_provider)
|
20058
|
-
@
|
20266
|
+
@provider_cluster_ids = args[:provider_cluster_ids] if args.key?(:provider_cluster_ids)
|
20059
20267
|
@provider_id = args[:provider_id] if args.key?(:provider_id)
|
20060
20268
|
@psl_score = args[:psl_score] if args.key?(:psl_score)
|
20061
20269
|
end
|
@@ -21677,7 +21885,7 @@ module Google
|
|
21677
21885
|
|
21678
21886
|
# Signals to be used by the Prefulfillment Ranker. Derived from the
|
21679
21887
|
# ParsingSignals and GroundingSignals carried by the FunctionCall. LINT.IfChange
|
21680
|
-
# Next ID:
|
21888
|
+
# Next ID: 53
|
21681
21889
|
class AssistantPrefulfillmentRankerPrefulfillmentSignals
|
21682
21890
|
include Google::Apis::Core::Hashable
|
21683
21891
|
|
@@ -21807,6 +22015,12 @@ module Google
|
|
21807
22015
|
attr_accessor :is_podcast_intent
|
21808
22016
|
alias_method :is_podcast_intent?, :is_podcast_intent
|
21809
22017
|
|
22018
|
+
# Whether the intent is a media object tvm intent.
|
22019
|
+
# Corresponds to the JSON property `isTvmIntent`
|
22020
|
+
# @return [Boolean]
|
22021
|
+
attr_accessor :is_tvm_intent
|
22022
|
+
alias_method :is_tvm_intent?, :is_tvm_intent
|
22023
|
+
|
21810
22024
|
# Whether the intent is a media object video intent.
|
21811
22025
|
# Corresponds to the JSON property `isVideoIntent`
|
21812
22026
|
# @return [Boolean]
|
@@ -21976,6 +22190,7 @@ module Google
|
|
21976
22190
|
@is_media_control_intent = args[:is_media_control_intent] if args.key?(:is_media_control_intent)
|
21977
22191
|
@is_play_generic_music = args[:is_play_generic_music] if args.key?(:is_play_generic_music)
|
21978
22192
|
@is_podcast_intent = args[:is_podcast_intent] if args.key?(:is_podcast_intent)
|
22193
|
+
@is_tvm_intent = args[:is_tvm_intent] if args.key?(:is_tvm_intent)
|
21979
22194
|
@is_video_intent = args[:is_video_intent] if args.key?(:is_video_intent)
|
21980
22195
|
@kscorer_rank = args[:kscorer_rank] if args.key?(:kscorer_rank)
|
21981
22196
|
@laa_features = args[:laa_features] if args.key?(:laa_features)
|
@@ -36797,7 +37012,7 @@ module Google
|
|
36797
37012
|
|
36798
37013
|
# Indicates whether long-term parking is available at the feature; if true, long-
|
36799
37014
|
# term parking is available at the feature and parking allowances may be present
|
36800
|
-
# on this feature, or parking_provider_feature may indicate
|
37015
|
+
# on this feature, or parking_provider_feature may indicate deferred parking
|
36801
37016
|
# feature(s). If false, this is an explicit statement that there is no long-term
|
36802
37017
|
# parking associated with this feature. If unset, we don't know whether there is
|
36803
37018
|
# long-term parking associated with this feature. If false or unset, only
|
@@ -40406,7 +40621,7 @@ module Google
|
|
40406
40621
|
include Google::Apis::Core::Hashable
|
40407
40622
|
|
40408
40623
|
# The list of TYPE_INTERSECTION features that are toll points and form this toll
|
40409
|
-
# cluster. A toll
|
40624
|
+
# cluster. A toll cluster can consist of either a single or a group of
|
40410
40625
|
# intersection points called toll points at the end of various road segments in
|
40411
40626
|
# MapFacts that represent one or more lanes passing through a toll fixture that
|
40412
40627
|
# all go to the same routing destination. This relationship is reciprocal, as a
|
@@ -40577,12 +40792,12 @@ module Google
|
|
40577
40792
|
class GeostoreTransitStationProto
|
40578
40793
|
include Google::Apis::Core::Hashable
|
40579
40794
|
|
40580
|
-
#
|
40581
|
-
# by
|
40582
|
-
# more
|
40583
|
-
# Corresponds to the JSON property `
|
40584
|
-
# @return [Array<Google::Apis::ContentwarehouseV1::
|
40585
|
-
attr_accessor :
|
40795
|
+
# All the transit agencies which service this station. A station can be serviced
|
40796
|
+
# by multiple stations. There may only be one agency association per transit
|
40797
|
+
# agency. See go/transit-agency-relation-migration for more details.
|
40798
|
+
# Corresponds to the JSON property `agencyAssociations`
|
40799
|
+
# @return [Array<Google::Apis::ContentwarehouseV1::GeostoreTransitStationProtoTransitAgencyAssociationProto>]
|
40800
|
+
attr_accessor :agency_associations
|
40586
40801
|
|
40587
40802
|
def initialize(**args)
|
40588
40803
|
update!(**args)
|
@@ -40590,7 +40805,50 @@ module Google
|
|
40590
40805
|
|
40591
40806
|
# Update properties of this object
|
40592
40807
|
def update!(**args)
|
40593
|
-
@
|
40808
|
+
@agency_associations = args[:agency_associations] if args.key?(:agency_associations)
|
40809
|
+
end
|
40810
|
+
end
|
40811
|
+
|
40812
|
+
# The association between this station and the agency which services this
|
40813
|
+
# station.
|
40814
|
+
class GeostoreTransitStationProtoTransitAgencyAssociationProto
|
40815
|
+
include Google::Apis::Core::Hashable
|
40816
|
+
|
40817
|
+
# A globally unique identifier associated with each feature. We use 128-bit
|
40818
|
+
# identifiers so that we have lots of bits available to distinguish between
|
40819
|
+
# features. The feature id currently consists of a 64-bit "cell id" that **
|
40820
|
+
# sometimes** corresponds to the approximate centroid of the feature, plus a 64-
|
40821
|
+
# bit fingerprint of other identifying information. See more on each respective
|
40822
|
+
# field in its comments. Feature ids are first assigned when the data is created
|
40823
|
+
# in MapFacts. After initial creation of the feature, they are immutable. This
|
40824
|
+
# means that the only properties that you should rely on are that they are
|
40825
|
+
# unique, and that cell_ids often - but not always - preserve spatial locality.
|
40826
|
+
# The degree of locality varies as the feature undergoes geometry changes, and
|
40827
|
+
# should not in general be considered a firm guarantee of the location of any
|
40828
|
+
# particular feature. In fact, some locationless features have randomized cell
|
40829
|
+
# IDs! Consumers of FeatureProtos from Mapfacts are guaranteed that fprints in
|
40830
|
+
# the id field of features will be globally unique. Using the fprint allows
|
40831
|
+
# consumers who don't need the spatial benefit of cell ids to uniquely identify
|
40832
|
+
# features in a 64-bit address space. This property is not guaranteed for other
|
40833
|
+
# sources of FeatureProtos.
|
40834
|
+
# Corresponds to the JSON property `agency`
|
40835
|
+
# @return [Google::Apis::ContentwarehouseV1::GeostoreFeatureIdProto]
|
40836
|
+
attr_accessor :agency
|
40837
|
+
|
40838
|
+
# A station code uniquely identifies a transit station within the transit agency'
|
40839
|
+
# s network.
|
40840
|
+
# Corresponds to the JSON property `stationCode`
|
40841
|
+
# @return [String]
|
40842
|
+
attr_accessor :station_code
|
40843
|
+
|
40844
|
+
def initialize(**args)
|
40845
|
+
update!(**args)
|
40846
|
+
end
|
40847
|
+
|
40848
|
+
# Update properties of this object
|
40849
|
+
def update!(**args)
|
40850
|
+
@agency = args[:agency] if args.key?(:agency)
|
40851
|
+
@station_code = args[:station_code] if args.key?(:station_code)
|
40594
40852
|
end
|
40595
40853
|
end
|
40596
40854
|
|
@@ -44780,6 +45038,12 @@ module Google
|
|
44780
45038
|
# @return [Array<String>]
|
44781
45039
|
attr_accessor :document_creator_filter
|
44782
45040
|
|
45041
|
+
# Search the documents in the list. Format: projects/`project_number`/locations/`
|
45042
|
+
# location`/documents/`document_id`.
|
45043
|
+
# Corresponds to the JSON property `documentNameFilter`
|
45044
|
+
# @return [Array<String>]
|
45045
|
+
attr_accessor :document_name_filter
|
45046
|
+
|
44783
45047
|
# This filter specifies the exact document schema Document.document_schema_name
|
44784
45048
|
# of the documents to search against. If a value isn't specified, documents
|
44785
45049
|
# within the search results are associated with any schema. If multiple values
|
@@ -44871,6 +45135,7 @@ module Google
|
|
44871
45135
|
@custom_property_filter = args[:custom_property_filter] if args.key?(:custom_property_filter)
|
44872
45136
|
@custom_weights_metadata = args[:custom_weights_metadata] if args.key?(:custom_weights_metadata)
|
44873
45137
|
@document_creator_filter = args[:document_creator_filter] if args.key?(:document_creator_filter)
|
45138
|
+
@document_name_filter = args[:document_name_filter] if args.key?(:document_name_filter)
|
44874
45139
|
@document_schema_names = args[:document_schema_names] if args.key?(:document_schema_names)
|
44875
45140
|
@file_type_filter = args[:file_type_filter] if args.key?(:file_type_filter)
|
44876
45141
|
@folder_name_filter = args[:folder_name_filter] if args.key?(:folder_name_filter)
|
@@ -46675,6 +46940,11 @@ module Google
|
|
46675
46940
|
# @return [String]
|
46676
46941
|
attr_accessor :next_page_token
|
46677
46942
|
|
46943
|
+
# Experimental. Question answer from the query against the document.
|
46944
|
+
# Corresponds to the JSON property `questionAnswer`
|
46945
|
+
# @return [String]
|
46946
|
+
attr_accessor :question_answer
|
46947
|
+
|
46678
46948
|
# The total number of matched documents which is available only if the client
|
46679
46949
|
# set SearchDocumentsRequest.require_total_size to `true` or set
|
46680
46950
|
# SearchDocumentsRequest.total_result_size to `ESTIMATED_SIZE` or `ACTUAL_SIZE`.
|
@@ -46694,6 +46964,7 @@ module Google
|
|
46694
46964
|
@matching_documents = args[:matching_documents] if args.key?(:matching_documents)
|
46695
46965
|
@metadata = args[:metadata] if args.key?(:metadata)
|
46696
46966
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
46967
|
+
@question_answer = args[:question_answer] if args.key?(:question_answer)
|
46697
46968
|
@total_size = args[:total_size] if args.key?(:total_size)
|
46698
46969
|
end
|
46699
46970
|
end
|
@@ -48541,18 +48812,18 @@ module Google
|
|
48541
48812
|
include Google::Apis::Core::Hashable
|
48542
48813
|
|
48543
48814
|
# Represents a color in the RGBA color space. This representation is designed
|
48544
|
-
# for simplicity of conversion to
|
48815
|
+
# for simplicity of conversion to and from color representations in various
|
48545
48816
|
# languages over compactness. For example, the fields of this representation can
|
48546
48817
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
48547
48818
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
48548
48819
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
48549
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
48820
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
48550
48821
|
# information about the absolute color space that should be used to interpret
|
48551
|
-
# the RGB value
|
48822
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
48552
48823
|
# applications should assume the sRGB color space. When color equality needs to
|
48553
48824
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
48554
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
48555
|
-
# 1e-5
|
48825
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
48826
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
48556
48827
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
48557
48828
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
48558
48829
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -48658,18 +48929,18 @@ module Google
|
|
48658
48929
|
alias_method :superscript?, :superscript
|
48659
48930
|
|
48660
48931
|
# Represents a color in the RGBA color space. This representation is designed
|
48661
|
-
# for simplicity of conversion to
|
48932
|
+
# for simplicity of conversion to and from color representations in various
|
48662
48933
|
# languages over compactness. For example, the fields of this representation can
|
48663
48934
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
48664
48935
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
48665
48936
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
48666
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
48937
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
48667
48938
|
# information about the absolute color space that should be used to interpret
|
48668
|
-
# the RGB value
|
48939
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
48669
48940
|
# applications should assume the sRGB color space. When color equality needs to
|
48670
48941
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
48671
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
48672
|
-
# 1e-5
|
48942
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
48943
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
48673
48944
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
48674
48945
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
48675
48946
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -48965,18 +49236,18 @@ module Google
|
|
48965
49236
|
include Google::Apis::Core::Hashable
|
48966
49237
|
|
48967
49238
|
# Represents a color in the RGBA color space. This representation is designed
|
48968
|
-
# for simplicity of conversion to
|
49239
|
+
# for simplicity of conversion to and from color representations in various
|
48969
49240
|
# languages over compactness. For example, the fields of this representation can
|
48970
49241
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
48971
49242
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
48972
49243
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
48973
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
49244
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
48974
49245
|
# information about the absolute color space that should be used to interpret
|
48975
|
-
# the RGB value
|
49246
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
48976
49247
|
# applications should assume the sRGB color space. When color equality needs to
|
48977
49248
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
48978
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
48979
|
-
# 1e-5
|
49249
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
49250
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
48980
49251
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
48981
49252
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
48982
49253
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -49014,18 +49285,18 @@ module Google
|
|
49014
49285
|
attr_accessor :background_color
|
49015
49286
|
|
49016
49287
|
# Represents a color in the RGBA color space. This representation is designed
|
49017
|
-
# for simplicity of conversion to
|
49288
|
+
# for simplicity of conversion to and from color representations in various
|
49018
49289
|
# languages over compactness. For example, the fields of this representation can
|
49019
49290
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
49020
49291
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
49021
49292
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
49022
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
49293
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
49023
49294
|
# information about the absolute color space that should be used to interpret
|
49024
|
-
# the RGB value
|
49295
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
49025
49296
|
# applications should assume the sRGB color space. When color equality needs to
|
49026
49297
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
49027
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
49028
|
-
# 1e-5
|
49298
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
49299
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
49029
49300
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
49030
49301
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
49031
49302
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -49522,7 +49793,7 @@ module Google
|
|
49522
49793
|
class GoogleInternalAppsWaldoV1alphaAvailabilityPeriod
|
49523
49794
|
include Google::Apis::Core::Hashable
|
49524
49795
|
|
49525
|
-
# Day of week,
|
49796
|
+
# Day of week, 0 for Sunday, 1 for Monday, ...
|
49526
49797
|
# Corresponds to the JSON property `dayOfWeek`
|
49527
49798
|
# @return [Fixnum]
|
49528
49799
|
attr_accessor :day_of_week
|
@@ -50401,18 +50672,18 @@ module Google
|
|
50401
50672
|
end
|
50402
50673
|
|
50403
50674
|
# Represents a color in the RGBA color space. This representation is designed
|
50404
|
-
# for simplicity of conversion to
|
50675
|
+
# for simplicity of conversion to and from color representations in various
|
50405
50676
|
# languages over compactness. For example, the fields of this representation can
|
50406
50677
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
50407
50678
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
50408
50679
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
50409
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
50680
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
50410
50681
|
# information about the absolute color space that should be used to interpret
|
50411
|
-
# the RGB value
|
50682
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
50412
50683
|
# applications should assume the sRGB color space. When color equality needs to
|
50413
50684
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
50414
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
50415
|
-
# 1e-5
|
50685
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
50686
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
50416
50687
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
50417
50688
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
50418
50689
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -54419,7 +54690,7 @@ module Google
|
|
54419
54690
|
|
54420
54691
|
# This proto holds IPTC metadata. http://www.iptc.org/cms/site/index.html?
|
54421
54692
|
# channel=CH0099 Proto field name is same with IPTC property name except which
|
54422
|
-
# is clearly stated. Next Id:
|
54693
|
+
# is clearly stated. Next Id: 64
|
54423
54694
|
class ImageExifIptcMetadata
|
54424
54695
|
include Google::Apis::Core::Hashable
|
54425
54696
|
|
@@ -54473,6 +54744,11 @@ module Google
|
|
54473
54744
|
# @return [String]
|
54474
54745
|
attr_accessor :description
|
54475
54746
|
|
54747
|
+
# See go/gi-annotations-indexing for more information.
|
54748
|
+
# Corresponds to the JSON property `digitalSourceType`
|
54749
|
+
# @return [String]
|
54750
|
+
attr_accessor :digital_source_type
|
54751
|
+
|
54476
54752
|
#
|
54477
54753
|
# Corresponds to the JSON property `event`
|
54478
54754
|
# @return [String]
|
@@ -54564,6 +54840,7 @@ module Google
|
|
54564
54840
|
@date_expired = args[:date_expired] if args.key?(:date_expired)
|
54565
54841
|
@date_released = args[:date_released] if args.key?(:date_released)
|
54566
54842
|
@description = args[:description] if args.key?(:description)
|
54843
|
+
@digital_source_type = args[:digital_source_type] if args.key?(:digital_source_type)
|
54567
54844
|
@event = args[:event] if args.key?(:event)
|
54568
54845
|
@headline = args[:headline] if args.key?(:headline)
|
54569
54846
|
@image_supplier = args[:image_supplier] if args.key?(:image_supplier)
|
@@ -54975,7 +55252,7 @@ module Google
|
|
54975
55252
|
|
54976
55253
|
# This proto holds IPTC metadata. http://www.iptc.org/cms/site/index.html?
|
54977
55254
|
# channel=CH0099 Proto field name is same with IPTC property name except which
|
54978
|
-
# is clearly stated. Next Id:
|
55255
|
+
# is clearly stated. Next Id: 64
|
54979
55256
|
# Corresponds to the JSON property `iptc`
|
54980
55257
|
# @return [Google::Apis::ContentwarehouseV1::ImageExifIptcMetadata]
|
54981
55258
|
attr_accessor :iptc
|
@@ -55908,7 +56185,7 @@ module Google
|
|
55908
56185
|
# @return [Google::Apis::ContentwarehouseV1::ImageRepositoryAmarnaCloudSpeechSignals]
|
55909
56186
|
attr_accessor :s3_asr
|
55910
56187
|
|
55911
|
-
# Next Tag:
|
56188
|
+
# Next Tag: 10
|
55912
56189
|
# Corresponds to the JSON property `s3LanguageIdentification`
|
55913
56190
|
# @return [Google::Apis::ContentwarehouseV1::ImageRepositoryS3LangIdSignals]
|
55914
56191
|
attr_accessor :s3_language_identification
|
@@ -56306,7 +56583,60 @@ module Google
|
|
56306
56583
|
end
|
56307
56584
|
end
|
56308
56585
|
|
56309
|
-
#
|
56586
|
+
# For debugging only.
|
56587
|
+
class ImageRepositoryS3LangIdDebuggingInfo
|
56588
|
+
include Google::Apis::Core::Hashable
|
56589
|
+
|
56590
|
+
# Audio input processing cap.
|
56591
|
+
# Corresponds to the JSON property `audioInputCap`
|
56592
|
+
# @return [String]
|
56593
|
+
attr_accessor :audio_input_cap
|
56594
|
+
|
56595
|
+
# Number of failed segments. Successful segments are stored in `
|
56596
|
+
# langid_signals_for_segment`.
|
56597
|
+
# Corresponds to the JSON property `failedSegments`
|
56598
|
+
# @return [Fixnum]
|
56599
|
+
attr_accessor :failed_segments
|
56600
|
+
|
56601
|
+
# Number of processed segments.
|
56602
|
+
# Corresponds to the JSON property `processedSegments`
|
56603
|
+
# @return [Fixnum]
|
56604
|
+
attr_accessor :processed_segments
|
56605
|
+
|
56606
|
+
# Duration of each segment (except for the last one if capped).
|
56607
|
+
# Corresponds to the JSON property `segmentDuration`
|
56608
|
+
# @return [String]
|
56609
|
+
attr_accessor :segment_duration
|
56610
|
+
|
56611
|
+
# If >1, every N segment is processed.
|
56612
|
+
# Corresponds to the JSON property `segmentStride`
|
56613
|
+
# @return [Fixnum]
|
56614
|
+
attr_accessor :segment_stride
|
56615
|
+
|
56616
|
+
# A general-purpose buffer to contain sequences of samples. When representing a
|
56617
|
+
# waveform, the samples are the scalar values of an acoustic signal. When
|
56618
|
+
# representing a sequence of feature frames, the samples are vector-valued
|
56619
|
+
# frames.
|
56620
|
+
# Corresponds to the JSON property `waveHeader`
|
56621
|
+
# @return [Google::Apis::ContentwarehouseV1::SpeechWaveHeader]
|
56622
|
+
attr_accessor :wave_header
|
56623
|
+
|
56624
|
+
def initialize(**args)
|
56625
|
+
update!(**args)
|
56626
|
+
end
|
56627
|
+
|
56628
|
+
# Update properties of this object
|
56629
|
+
def update!(**args)
|
56630
|
+
@audio_input_cap = args[:audio_input_cap] if args.key?(:audio_input_cap)
|
56631
|
+
@failed_segments = args[:failed_segments] if args.key?(:failed_segments)
|
56632
|
+
@processed_segments = args[:processed_segments] if args.key?(:processed_segments)
|
56633
|
+
@segment_duration = args[:segment_duration] if args.key?(:segment_duration)
|
56634
|
+
@segment_stride = args[:segment_stride] if args.key?(:segment_stride)
|
56635
|
+
@wave_header = args[:wave_header] if args.key?(:wave_header)
|
56636
|
+
end
|
56637
|
+
end
|
56638
|
+
|
56639
|
+
# Next Tag: 10
|
56310
56640
|
class ImageRepositoryS3LangIdSignals
|
56311
56641
|
include Google::Apis::Core::Hashable
|
56312
56642
|
|
@@ -56316,6 +56646,11 @@ module Google
|
|
56316
56646
|
attr_accessor :contains_speech
|
56317
56647
|
alias_method :contains_speech?, :contains_speech
|
56318
56648
|
|
56649
|
+
# For debugging only.
|
56650
|
+
# Corresponds to the JSON property `debuggingInfo`
|
56651
|
+
# @return [Google::Apis::ContentwarehouseV1::ImageRepositoryS3LangIdDebuggingInfo]
|
56652
|
+
attr_accessor :debugging_info
|
56653
|
+
|
56319
56654
|
#
|
56320
56655
|
# Corresponds to the JSON property `endSec`
|
56321
56656
|
# @return [Fixnum]
|
@@ -56362,6 +56697,7 @@ module Google
|
|
56362
56697
|
# Update properties of this object
|
56363
56698
|
def update!(**args)
|
56364
56699
|
@contains_speech = args[:contains_speech] if args.key?(:contains_speech)
|
56700
|
+
@debugging_info = args[:debugging_info] if args.key?(:debugging_info)
|
56365
56701
|
@end_sec = args[:end_sec] if args.key?(:end_sec)
|
56366
56702
|
@langid_result = args[:langid_result] if args.key?(:langid_result)
|
56367
56703
|
@language_identification = args[:language_identification] if args.key?(:language_identification)
|
@@ -59020,11 +59356,26 @@ module Google
|
|
59020
59356
|
# @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
|
59021
59357
|
attr_accessor :chrome_counts
|
59022
59358
|
|
59023
|
-
#
|
59359
|
+
#
|
59024
59360
|
# Corresponds to the JSON property `creator`
|
59025
59361
|
# @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
|
59026
59362
|
attr_accessor :creator
|
59027
59363
|
|
59364
|
+
# LINT.ThenChange(//depot/google3/indexing/ames/spanner/schema/web-version.proto)
|
59365
|
+
# Corresponds to the JSON property `discoverSource`
|
59366
|
+
# @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
|
59367
|
+
attr_accessor :discover_source
|
59368
|
+
|
59369
|
+
#
|
59370
|
+
# Corresponds to the JSON property `discussion`
|
59371
|
+
# @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
|
59372
|
+
attr_accessor :discussion
|
59373
|
+
|
59374
|
+
#
|
59375
|
+
# Corresponds to the JSON property `documentIntent`
|
59376
|
+
# @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
|
59377
|
+
attr_accessor :document_intent
|
59378
|
+
|
59028
59379
|
#
|
59029
59380
|
# Corresponds to the JSON property `instantNavboost`
|
59030
59381
|
# @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
|
@@ -59074,6 +59425,9 @@ module Google
|
|
59074
59425
|
@accelerated_shopping_signal = args[:accelerated_shopping_signal] if args.key?(:accelerated_shopping_signal)
|
59075
59426
|
@chrome_counts = args[:chrome_counts] if args.key?(:chrome_counts)
|
59076
59427
|
@creator = args[:creator] if args.key?(:creator)
|
59428
|
+
@discover_source = args[:discover_source] if args.key?(:discover_source)
|
59429
|
+
@discussion = args[:discussion] if args.key?(:discussion)
|
59430
|
+
@document_intent = args[:document_intent] if args.key?(:document_intent)
|
59077
59431
|
@instant_navboost = args[:instant_navboost] if args.key?(:instant_navboost)
|
59078
59432
|
@localyp = args[:localyp] if args.key?(:localyp)
|
59079
59433
|
@modern_format_content = args[:modern_format_content] if args.key?(:modern_format_content)
|
@@ -61855,6 +62209,16 @@ module Google
|
|
61855
62209
|
# @return [String]
|
61856
62210
|
attr_accessor :gibberish_result
|
61857
62211
|
|
62212
|
+
# The number of the above segments that were classified as gibberish.
|
62213
|
+
# Corresponds to the JSON property `numGibberishSegments`
|
62214
|
+
# @return [Fixnum]
|
62215
|
+
attr_accessor :num_gibberish_segments
|
62216
|
+
|
62217
|
+
# The number of ASR segments that were sent for classification.
|
62218
|
+
# Corresponds to the JSON property `numSegmentsClassified`
|
62219
|
+
# @return [Fixnum]
|
62220
|
+
attr_accessor :num_segments_classified
|
62221
|
+
|
61858
62222
|
def initialize(**args)
|
61859
62223
|
update!(**args)
|
61860
62224
|
end
|
@@ -61862,6 +62226,8 @@ module Google
|
|
61862
62226
|
# Update properties of this object
|
61863
62227
|
def update!(**args)
|
61864
62228
|
@gibberish_result = args[:gibberish_result] if args.key?(:gibberish_result)
|
62229
|
+
@num_gibberish_segments = args[:num_gibberish_segments] if args.key?(:num_gibberish_segments)
|
62230
|
+
@num_segments_classified = args[:num_segments_classified] if args.key?(:num_segments_classified)
|
61865
62231
|
end
|
61866
62232
|
end
|
61867
62233
|
|
@@ -64328,7 +64694,7 @@ module Google
|
|
64328
64694
|
|
64329
64695
|
# Signals to be used by the Prefulfillment Ranker. Derived from the
|
64330
64696
|
# ParsingSignals and GroundingSignals carried by the FunctionCall. LINT.IfChange
|
64331
|
-
# Next ID:
|
64697
|
+
# Next ID: 53
|
64332
64698
|
# Corresponds to the JSON property `prefulfillmentSignals`
|
64333
64699
|
# @return [Google::Apis::ContentwarehouseV1::AssistantPrefulfillmentRankerPrefulfillmentSignals]
|
64334
64700
|
attr_accessor :prefulfillment_signals
|
@@ -81061,7 +81427,7 @@ module Google
|
|
81061
81427
|
class NlpSemanticParsingPersonalIntelligenceEntity
|
81062
81428
|
include Google::Apis::Core::Hashable
|
81063
81429
|
|
81064
|
-
# Next ID:
|
81430
|
+
# Next ID: 29
|
81065
81431
|
# Corresponds to the JSON property `airlineConfig`
|
81066
81432
|
# @return [Google::Apis::ContentwarehouseV1::TravelFlightsAirlineConfig]
|
81067
81433
|
attr_accessor :airline_config
|
@@ -95920,6 +96286,12 @@ module Google
|
|
95920
96286
|
# @return [Fixnum]
|
95921
96287
|
attr_accessor :non_displayable_organic_score_millis
|
95922
96288
|
|
96289
|
+
# This is experimental, not filled in yet and not intended to be used. Please
|
96290
|
+
# contact buyable-corpus@ before considering using this field.
|
96291
|
+
# Corresponds to the JSON property `nonDisplayableStaleAvailability`
|
96292
|
+
# @return [Google::Apis::ContentwarehouseV1::ShoppingWebentityShoppingAnnotationOfferAvailabilityInfo]
|
96293
|
+
attr_accessor :non_displayable_stale_availability
|
96294
|
+
|
95923
96295
|
#
|
95924
96296
|
# Corresponds to the JSON property `offerDocid`
|
95925
96297
|
# @return [Fixnum]
|
@@ -95954,6 +96326,7 @@ module Google
|
|
95954
96326
|
@non_displayable_brand_merchant_relationship = args[:non_displayable_brand_merchant_relationship] if args.key?(:non_displayable_brand_merchant_relationship)
|
95955
96327
|
@non_displayable_currency = args[:non_displayable_currency] if args.key?(:non_displayable_currency)
|
95956
96328
|
@non_displayable_organic_score_millis = args[:non_displayable_organic_score_millis] if args.key?(:non_displayable_organic_score_millis)
|
96329
|
+
@non_displayable_stale_availability = args[:non_displayable_stale_availability] if args.key?(:non_displayable_stale_availability)
|
95957
96330
|
@offer_docid = args[:offer_docid] if args.key?(:offer_docid)
|
95958
96331
|
@ref_type = args[:ref_type] if args.key?(:ref_type)
|
95959
96332
|
@sori_version_id = args[:sori_version_id] if args.key?(:sori_version_id)
|
@@ -96536,7 +96909,7 @@ module Google
|
|
96536
96909
|
|
96537
96910
|
# The following message contains info of sub image docs, it is populated in
|
96538
96911
|
# query_state and consumed in web image boost twiddler: (go/
|
96539
|
-
# WebImageBoostTwiddler). NextID:
|
96912
|
+
# WebImageBoostTwiddler). NextID: 26
|
96540
96913
|
# Corresponds to the JSON property `salientImage`
|
96541
96914
|
# @return [Google::Apis::ContentwarehouseV1::WwwResultInfoSubImageDocInfo]
|
96542
96915
|
attr_accessor :salient_image
|
@@ -100058,7 +100431,8 @@ module Google
|
|
100058
100431
|
attr_accessor :is_cluster_global
|
100059
100432
|
alias_method :is_cluster_global?, :is_cluster_global
|
100060
100433
|
|
100061
|
-
#
|
100434
|
+
# Documented at: google3/repository/webref/enricher/core/data/scored_entity_name.
|
100435
|
+
# h
|
100062
100436
|
# Corresponds to the JSON property `isDropped`
|
100063
100437
|
# @return [Boolean]
|
100064
100438
|
attr_accessor :is_dropped
|
@@ -100074,7 +100448,8 @@ module Google
|
|
100074
100448
|
attr_accessor :is_matchless_result_context
|
100075
100449
|
alias_method :is_matchless_result_context?, :is_matchless_result_context
|
100076
100450
|
|
100077
|
-
#
|
100451
|
+
# Documented at: google3/repository/webref/enricher/core/data/scored_entity_name.
|
100452
|
+
# h
|
100078
100453
|
# Corresponds to the JSON property `isPruned`
|
100079
100454
|
# @return [Boolean]
|
100080
100455
|
attr_accessor :is_pruned
|
@@ -100659,7 +101034,8 @@ module Google
|
|
100659
101034
|
# @return [Array<Google::Apis::ContentwarehouseV1::RepositoryWebrefGeoMetadataProtoAddressSynonym>]
|
100660
101035
|
attr_accessor :address_synonyms
|
100661
101036
|
|
100662
|
-
# Area in km^2 of the feature if the feature has polygon.
|
101037
|
+
# Area in km^2 of the feature if the feature has polygon. Only set by
|
101038
|
+
# qrefmetadata.
|
100663
101039
|
# Corresponds to the JSON property `areaKm2`
|
100664
101040
|
# @return [Float]
|
100665
101041
|
attr_accessor :area_km2
|
@@ -101031,12 +101407,6 @@ module Google
|
|
101031
101407
|
# @return [Array<Google::Apis::ContentwarehouseV1::RepositoryWebrefLatentEntity>]
|
101032
101408
|
attr_accessor :latent_entity
|
101033
101409
|
|
101034
|
-
# List of broader MIDs from the Sports Hierarchy. Named incorrectly, it does not
|
101035
|
-
# contain all latent mids.
|
101036
|
-
# Corresponds to the JSON property `latentMid`
|
101037
|
-
# @return [Array<String>]
|
101038
|
-
attr_accessor :latent_mid
|
101039
|
-
|
101040
101410
|
def initialize(**args)
|
101041
101411
|
update!(**args)
|
101042
101412
|
end
|
@@ -101044,7 +101414,6 @@ module Google
|
|
101044
101414
|
# Update properties of this object
|
101045
101415
|
def update!(**args)
|
101046
101416
|
@latent_entity = args[:latent_entity] if args.key?(:latent_entity)
|
101047
|
-
@latent_mid = args[:latent_mid] if args.key?(:latent_mid)
|
101048
101417
|
end
|
101049
101418
|
end
|
101050
101419
|
|
@@ -105594,6 +105963,12 @@ module Google
|
|
105594
105963
|
# @return [String]
|
105595
105964
|
attr_accessor :docid
|
105596
105965
|
|
105966
|
+
# ===================================================================== #
|
105967
|
+
# GenericFeatureVector Last tag used: 23
|
105968
|
+
# Corresponds to the JSON property `gfv`
|
105969
|
+
# @return [Google::Apis::ContentwarehouseV1::ResearchScamGenericFeatureVector]
|
105970
|
+
attr_accessor :gfv
|
105971
|
+
|
105597
105972
|
# Metadata about the neighbor. This is returned under some configurations as a
|
105598
105973
|
# serialized proto. The specific proto depends on which metadata is configured
|
105599
105974
|
# to be returned.
|
@@ -105611,6 +105986,7 @@ module Google
|
|
105611
105986
|
@crowding_attribute = args[:crowding_attribute] if args.key?(:crowding_attribute)
|
105612
105987
|
@distance = args[:distance] if args.key?(:distance)
|
105613
105988
|
@docid = args[:docid] if args.key?(:docid)
|
105989
|
+
@gfv = args[:gfv] if args.key?(:gfv)
|
105614
105990
|
@metadata = args[:metadata] if args.key?(:metadata)
|
105615
105991
|
end
|
105616
105992
|
end
|
@@ -111028,6 +111404,25 @@ module Google
|
|
111028
111404
|
end
|
111029
111405
|
end
|
111030
111406
|
|
111407
|
+
#
|
111408
|
+
class ShoppingWebentityShoppingAnnotationOfferAvailabilityInfo
|
111409
|
+
include Google::Apis::Core::Hashable
|
111410
|
+
|
111411
|
+
#
|
111412
|
+
# Corresponds to the JSON property `availability`
|
111413
|
+
# @return [String]
|
111414
|
+
attr_accessor :availability
|
111415
|
+
|
111416
|
+
def initialize(**args)
|
111417
|
+
update!(**args)
|
111418
|
+
end
|
111419
|
+
|
111420
|
+
# Update properties of this object
|
111421
|
+
def update!(**args)
|
111422
|
+
@availability = args[:availability] if args.key?(:availability)
|
111423
|
+
end
|
111424
|
+
end
|
111425
|
+
|
111031
111426
|
# Information about a rating provided for a product. This can represent an
|
111032
111427
|
# aggregated rating if count is set. Next Id: 7
|
111033
111428
|
class ShoppingWebentityShoppingAnnotationProductRating
|
@@ -112763,13 +113158,8 @@ module Google
|
|
112763
113158
|
class SocialGraphApiProtoLimitedProfileNameSettings
|
112764
113159
|
include Google::Apis::Core::Hashable
|
112765
113160
|
|
112766
|
-
#
|
112767
|
-
#
|
112768
|
-
# chose: partial_name_options ` given_name_spec ` show_all: true `
|
112769
|
-
# family_name_spec: ` show_initial: true truncation_indicator: PERIOD ` ` While
|
112770
|
-
# we'll in all cases serve the actual name chosen by the user for limited
|
112771
|
-
# profiles (stored below), we'll use this information to recompute the default
|
112772
|
-
# limited profile to be rendered to users when they change their core name.
|
113161
|
+
# For general information about Limited Profiles, see go/limited-profiles-api.
|
113162
|
+
# LINT.IfChange
|
112773
113163
|
# Corresponds to the JSON property `partialNameOptions`
|
112774
113164
|
# @return [Google::Apis::ContentwarehouseV1::SocialGraphApiProtoPartialNameOptions]
|
112775
113165
|
attr_accessor :partial_name_options
|
@@ -113040,7 +113430,8 @@ module Google
|
|
113040
113430
|
end
|
113041
113431
|
end
|
113042
113432
|
|
113043
|
-
#
|
113433
|
+
# For general information about Limited Profiles, see go/limited-profiles-api.
|
113434
|
+
# LINT.IfChange
|
113044
113435
|
class SocialGraphApiProtoPartialNameOptions
|
113045
113436
|
include Google::Apis::Core::Hashable
|
113046
113437
|
|
@@ -115083,6 +115474,125 @@ module Google
|
|
115083
115474
|
end
|
115084
115475
|
end
|
115085
115476
|
|
115477
|
+
# A general-purpose buffer to contain sequences of samples. When representing a
|
115478
|
+
# waveform, the samples are the scalar values of an acoustic signal. When
|
115479
|
+
# representing a sequence of feature frames, the samples are vector-valued
|
115480
|
+
# frames.
|
115481
|
+
class SpeechWaveHeader
|
115482
|
+
include Google::Apis::Core::Hashable
|
115483
|
+
|
115484
|
+
# Size of atomic type, in bytes.
|
115485
|
+
# Corresponds to the JSON property `atomicSize`
|
115486
|
+
# @return [Fixnum]
|
115487
|
+
attr_accessor :atomic_size
|
115488
|
+
|
115489
|
+
# Numeric type of data elements (if generic)
|
115490
|
+
# Corresponds to the JSON property `atomicType`
|
115491
|
+
# @return [String]
|
115492
|
+
attr_accessor :atomic_type
|
115493
|
+
|
115494
|
+
# For compressed signals with fixed bitrate, this is the number of bits per
|
115495
|
+
# second.
|
115496
|
+
# Corresponds to the JSON property `bitRate`
|
115497
|
+
# @return [Float]
|
115498
|
+
attr_accessor :bit_rate
|
115499
|
+
|
115500
|
+
# Byte-order of the atomic_type When atomic_type == "char", byte_order should be
|
115501
|
+
# always "1". When atomic_type == "int16", byte_order can be either "01" (Intel)
|
115502
|
+
# or "10" (Motorola). Byte order should default to Intel when in question.
|
115503
|
+
# Corresponds to the JSON property `byteOrder`
|
115504
|
+
# @return [String]
|
115505
|
+
attr_accessor :byte_order
|
115506
|
+
|
115507
|
+
# Typically contains the parameter settings of the program that created the file.
|
115508
|
+
# Corresponds to the JSON property `details`
|
115509
|
+
# @return [String]
|
115510
|
+
attr_accessor :details
|
115511
|
+
|
115512
|
+
# Array dimensions for a single sample. * For audio samples: * mono: rank==0,
|
115513
|
+
# dimension==[1] * stereo: rank==0, dimension==[2] (samples are interleaved) *
|
115514
|
+
# For typical ASR features representing energy, 12 MFCC coefficients, and first
|
115515
|
+
# and second derivatives: * rank==1 and dimension==[39].
|
115516
|
+
# Corresponds to the JSON property `dimension`
|
115517
|
+
# @return [Array<Fixnum>]
|
115518
|
+
attr_accessor :dimension
|
115519
|
+
|
115520
|
+
# The number of atomic elements stored per sample. This is the product of all
|
115521
|
+
# the entries in the dimension array. Written "out of order" in this file to be
|
115522
|
+
# close to the dimension field, from which it can always be computed.
|
115523
|
+
# Corresponds to the JSON property `elementsPerSample`
|
115524
|
+
# @return [Fixnum]
|
115525
|
+
attr_accessor :elements_per_sample
|
115526
|
+
|
115527
|
+
# The rank of each sample. For a waveform (signals that are sequences of scalar
|
115528
|
+
# values), this is 0. For vector-valued signals (used as signals containing
|
115529
|
+
# sequences of features, for example), this is 1. scalar=0, vector=1, matrix=2, .
|
115530
|
+
# ..
|
115531
|
+
# Corresponds to the JSON property `rank`
|
115532
|
+
# @return [Fixnum]
|
115533
|
+
attr_accessor :rank
|
115534
|
+
|
115535
|
+
# Sample encoding. Can be "ulaw".
|
115536
|
+
# Corresponds to the JSON property `sampleCoding`
|
115537
|
+
# @return [String]
|
115538
|
+
attr_accessor :sample_coding
|
115539
|
+
|
115540
|
+
# For periodic signals, this is the number samples per second, else 0.0
|
115541
|
+
# Corresponds to the JSON property `sampleRate`
|
115542
|
+
# @return [Float]
|
115543
|
+
attr_accessor :sample_rate
|
115544
|
+
|
115545
|
+
# Size of a single sample, in bytes.
|
115546
|
+
# Corresponds to the JSON property `sampleSize`
|
115547
|
+
# @return [Fixnum]
|
115548
|
+
attr_accessor :sample_size
|
115549
|
+
|
115550
|
+
# Structure of each sample. "generic" means that the samples are multi-
|
115551
|
+
# dimensional arrays of atomic_type with the specified rank.
|
115552
|
+
# Corresponds to the JSON property `sampleType`
|
115553
|
+
# @return [String]
|
115554
|
+
attr_accessor :sample_type
|
115555
|
+
|
115556
|
+
# Time origin for the signal, in seconds. Warning: Using float can result in
|
115557
|
+
# rounding errors: float's smallest distance between two representable values (1
|
115558
|
+
# ULP; see https://en.wikipedia.org/wiki/Unit_in_the_last_place) between 1024
|
115559
|
+
# and 2048 (representing ~17-34 min) is 0.0001220703125, what is approximately
|
115560
|
+
# double of what we need to represent 1 sample in a 16 kHz sample rate audio.
|
115561
|
+
# The error is double in the 2048s-4096s, 4x in the 4096s-8192s range etc.
|
115562
|
+
# Higher sample rate encounters rounding errors earlier: with 96 kHz, rounding
|
115563
|
+
# errors start at ~2 min (128s).
|
115564
|
+
# Corresponds to the JSON property `startTime`
|
115565
|
+
# @return [Float]
|
115566
|
+
attr_accessor :start_time
|
115567
|
+
|
115568
|
+
# The number of samples in file. Can be inferred for generics from file size.
|
115569
|
+
# Corresponds to the JSON property `totalSamples`
|
115570
|
+
# @return [Fixnum]
|
115571
|
+
attr_accessor :total_samples
|
115572
|
+
|
115573
|
+
def initialize(**args)
|
115574
|
+
update!(**args)
|
115575
|
+
end
|
115576
|
+
|
115577
|
+
# Update properties of this object
|
115578
|
+
def update!(**args)
|
115579
|
+
@atomic_size = args[:atomic_size] if args.key?(:atomic_size)
|
115580
|
+
@atomic_type = args[:atomic_type] if args.key?(:atomic_type)
|
115581
|
+
@bit_rate = args[:bit_rate] if args.key?(:bit_rate)
|
115582
|
+
@byte_order = args[:byte_order] if args.key?(:byte_order)
|
115583
|
+
@details = args[:details] if args.key?(:details)
|
115584
|
+
@dimension = args[:dimension] if args.key?(:dimension)
|
115585
|
+
@elements_per_sample = args[:elements_per_sample] if args.key?(:elements_per_sample)
|
115586
|
+
@rank = args[:rank] if args.key?(:rank)
|
115587
|
+
@sample_coding = args[:sample_coding] if args.key?(:sample_coding)
|
115588
|
+
@sample_rate = args[:sample_rate] if args.key?(:sample_rate)
|
115589
|
+
@sample_size = args[:sample_size] if args.key?(:sample_size)
|
115590
|
+
@sample_type = args[:sample_type] if args.key?(:sample_type)
|
115591
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
115592
|
+
@total_samples = args[:total_samples] if args.key?(:total_samples)
|
115593
|
+
end
|
115594
|
+
end
|
115595
|
+
|
115086
115596
|
# go/entity-authority NB: currently all facts associated with Authority Feedback
|
115087
115597
|
# are externally traceable to the requests from which they originate.
|
115088
115598
|
class StorageGraphBfgAuthorityFeedbackMetadata
|
@@ -116516,7 +117026,7 @@ module Google
|
|
116516
117026
|
end
|
116517
117027
|
end
|
116518
117028
|
|
116519
|
-
# Next ID:
|
117029
|
+
# Next ID: 29
|
116520
117030
|
class TravelFlightsAirlineConfig
|
116521
117031
|
include Google::Apis::Core::Hashable
|
116522
117032
|
|
@@ -116565,6 +117075,11 @@ module Google
|
|
116565
117075
|
# @return [Array<String>]
|
116566
117076
|
attr_accessor :fqtv_partner_code
|
116567
117077
|
|
117078
|
+
#
|
117079
|
+
# Corresponds to the JSON property `greenFaresInfo`
|
117080
|
+
# @return [Google::Apis::ContentwarehouseV1::TravelFlightsAirlineConfigGreenFaresInfo]
|
117081
|
+
attr_accessor :green_fares_info
|
117082
|
+
|
116568
117083
|
# Note that some iata_codes are reused (`dup_flag` field). For details,
|
116569
117084
|
# including how to resolve collisions for airlines shown in Google Flights, see:
|
116570
117085
|
# go/controlled-duplicate go/flights-data/airlines#resolving-iata-code-
|
@@ -116614,6 +117129,11 @@ module Google
|
|
116614
117129
|
# @return [Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto]
|
116615
117130
|
attr_accessor :short_names
|
116616
117131
|
|
117132
|
+
# URLs for airlines' sustainability programs.
|
117133
|
+
# Corresponds to the JSON property `sustainabilityProgramUrls`
|
117134
|
+
# @return [Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto]
|
117135
|
+
attr_accessor :sustainability_program_urls
|
117136
|
+
|
116617
117137
|
#
|
116618
117138
|
# Corresponds to the JSON property `type`
|
116619
117139
|
# @return [String]
|
@@ -116643,6 +117163,7 @@ module Google
|
|
116643
117163
|
@dup_flag = args[:dup_flag] if args.key?(:dup_flag)
|
116644
117164
|
@fare_family_urls = args[:fare_family_urls] if args.key?(:fare_family_urls)
|
116645
117165
|
@fqtv_partner_code = args[:fqtv_partner_code] if args.key?(:fqtv_partner_code)
|
117166
|
+
@green_fares_info = args[:green_fares_info] if args.key?(:green_fares_info)
|
116646
117167
|
@iata_code = args[:iata_code] if args.key?(:iata_code)
|
116647
117168
|
@icao_code = args[:icao_code] if args.key?(:icao_code)
|
116648
117169
|
@innovata_code = args[:innovata_code] if args.key?(:innovata_code)
|
@@ -116652,6 +117173,7 @@ module Google
|
|
116652
117173
|
@passenger_assistance_urls = args[:passenger_assistance_urls] if args.key?(:passenger_assistance_urls)
|
116653
117174
|
@popularity = args[:popularity] if args.key?(:popularity)
|
116654
117175
|
@short_names = args[:short_names] if args.key?(:short_names)
|
117176
|
+
@sustainability_program_urls = args[:sustainability_program_urls] if args.key?(:sustainability_program_urls)
|
116655
117177
|
@type = args[:type] if args.key?(:type)
|
116656
117178
|
@urls = args[:urls] if args.key?(:urls)
|
116657
117179
|
@waiver_summary_urls = args[:waiver_summary_urls] if args.key?(:waiver_summary_urls)
|
@@ -116708,6 +117230,49 @@ module Google
|
|
116708
117230
|
end
|
116709
117231
|
end
|
116710
117232
|
|
117233
|
+
#
|
117234
|
+
class TravelFlightsAirlineConfigGreenFaresInfo
|
117235
|
+
include Google::Apis::Core::Hashable
|
117236
|
+
|
117237
|
+
#
|
117238
|
+
# Corresponds to the JSON property `bonusMilesProgramName`
|
117239
|
+
# @return [String]
|
117240
|
+
attr_accessor :bonus_miles_program_name
|
117241
|
+
|
117242
|
+
#
|
117243
|
+
# Corresponds to the JSON property `bonusMilesQuantity`
|
117244
|
+
# @return [Fixnum]
|
117245
|
+
attr_accessor :bonus_miles_quantity
|
117246
|
+
|
117247
|
+
#
|
117248
|
+
# Corresponds to the JSON property `bonusMilesQuantityType`
|
117249
|
+
# @return [String]
|
117250
|
+
attr_accessor :bonus_miles_quantity_type
|
117251
|
+
|
117252
|
+
#
|
117253
|
+
# Corresponds to the JSON property `bonusMilesType`
|
117254
|
+
# @return [String]
|
117255
|
+
attr_accessor :bonus_miles_type
|
117256
|
+
|
117257
|
+
#
|
117258
|
+
# Corresponds to the JSON property `contributionFraming`
|
117259
|
+
# @return [String]
|
117260
|
+
attr_accessor :contribution_framing
|
117261
|
+
|
117262
|
+
def initialize(**args)
|
117263
|
+
update!(**args)
|
117264
|
+
end
|
117265
|
+
|
117266
|
+
# Update properties of this object
|
117267
|
+
def update!(**args)
|
117268
|
+
@bonus_miles_program_name = args[:bonus_miles_program_name] if args.key?(:bonus_miles_program_name)
|
117269
|
+
@bonus_miles_quantity = args[:bonus_miles_quantity] if args.key?(:bonus_miles_quantity)
|
117270
|
+
@bonus_miles_quantity_type = args[:bonus_miles_quantity_type] if args.key?(:bonus_miles_quantity_type)
|
117271
|
+
@bonus_miles_type = args[:bonus_miles_type] if args.key?(:bonus_miles_type)
|
117272
|
+
@contribution_framing = args[:contribution_framing] if args.key?(:contribution_framing)
|
117273
|
+
end
|
117274
|
+
end
|
117275
|
+
|
116711
117276
|
# Airline contact info grouped by language. The language locale subcode will
|
116712
117277
|
# determine the country.
|
116713
117278
|
class TravelFlightsAirlineConfigLocalizedContactInfo
|
@@ -117376,7 +117941,7 @@ module Google
|
|
117376
117941
|
# FetchReplyData. This data is meant to be logged, but not sent back in a fetch
|
117377
117942
|
# reply (it should be added *after* the reply is prepared). Use
|
117378
117943
|
# FetchResponsePreparatorImpl::AddTrawlerPrivateDataToFetchReplyData to add. See
|
117379
|
-
# also the comment in fetch_response_preparator_impl.cc. Next Tag:
|
117944
|
+
# also the comment in fetch_response_preparator_impl.cc. Next Tag: 45
|
117380
117945
|
# Corresponds to the JSON property `TrawlerPrivate`
|
117381
117946
|
# @return [Google::Apis::ContentwarehouseV1::TrawlerTrawlerPrivateFetchReplyData]
|
117382
117947
|
attr_accessor :trawler_private
|
@@ -118635,7 +119200,7 @@ module Google
|
|
118635
119200
|
# FetchReplyData. This data is meant to be logged, but not sent back in a fetch
|
118636
119201
|
# reply (it should be added *after* the reply is prepared). Use
|
118637
119202
|
# FetchResponsePreparatorImpl::AddTrawlerPrivateDataToFetchReplyData to add. See
|
118638
|
-
# also the comment in fetch_response_preparator_impl.cc. Next Tag:
|
119203
|
+
# also the comment in fetch_response_preparator_impl.cc. Next Tag: 45
|
118639
119204
|
class TrawlerTrawlerPrivateFetchReplyData
|
118640
119205
|
include Google::Apis::Core::Hashable
|
118641
119206
|
|
@@ -118832,6 +119397,12 @@ module Google
|
|
118832
119397
|
attr_accessor :is_bidi_streaming_fetch
|
118833
119398
|
alias_method :is_bidi_streaming_fetch?, :is_bidi_streaming_fetch
|
118834
119399
|
|
119400
|
+
#
|
119401
|
+
# Corresponds to the JSON property `isDedicatedHostload`
|
119402
|
+
# @return [Boolean]
|
119403
|
+
attr_accessor :is_dedicated_hostload
|
119404
|
+
alias_method :is_dedicated_hostload?, :is_dedicated_hostload
|
119405
|
+
|
118835
119406
|
# Whether or not this is a Floonet fetch request. Floonet requests have inherent
|
118836
119407
|
# lower availability (due to HOPE rejections when HOPE is in degraded mode, and
|
118837
119408
|
# other Floonet specific reasons). Therefore, it is important for debugging and
|
@@ -118938,6 +119509,7 @@ module Google
|
|
118938
119509
|
@download_file_name = args[:download_file_name] if args.key?(:download_file_name)
|
118939
119510
|
@http_version = args[:http_version] if args.key?(:http_version)
|
118940
119511
|
@is_bidi_streaming_fetch = args[:is_bidi_streaming_fetch] if args.key?(:is_bidi_streaming_fetch)
|
119512
|
+
@is_dedicated_hostload = args[:is_dedicated_hostload] if args.key?(:is_dedicated_hostload)
|
118941
119513
|
@is_floonet_fetch = args[:is_floonet_fetch] if args.key?(:is_floonet_fetch)
|
118942
119514
|
@is_from_grpc_proxy = args[:is_from_grpc_proxy] if args.key?(:is_from_grpc_proxy)
|
118943
119515
|
@is_vpc_traffic = args[:is_vpc_traffic] if args.key?(:is_vpc_traffic)
|
@@ -128779,7 +129351,7 @@ module Google
|
|
128779
129351
|
|
128780
129352
|
# The following message contains info of sub image docs, it is populated in
|
128781
129353
|
# query_state and consumed in web image boost twiddler: (go/
|
128782
|
-
# WebImageBoostTwiddler). NextID:
|
129354
|
+
# WebImageBoostTwiddler). NextID: 26
|
128783
129355
|
class WwwResultInfoSubImageDocInfo
|
128784
129356
|
include Google::Apis::Core::Hashable
|
128785
129357
|
|
@@ -128831,6 +129403,11 @@ module Google
|
|
128831
129403
|
# @return [Float]
|
128832
129404
|
attr_accessor :est_relevance
|
128833
129405
|
|
129406
|
+
# Estimated Sigma U calculated from U*.
|
129407
|
+
# Corresponds to the JSON property `estSigmaU`
|
129408
|
+
# @return [Float]
|
129409
|
+
attr_accessor :est_sigma_u
|
129410
|
+
|
128834
129411
|
# The subset of FlowProto that we want to go into production AND be stored in
|
128835
129412
|
# ContentSignals.
|
128836
129413
|
# Corresponds to the JSON property `flowOutput`
|
@@ -128932,6 +129509,7 @@ module Google
|
|
128932
129509
|
@document_trust = args[:document_trust] if args.key?(:document_trust)
|
128933
129510
|
@eq_star = args[:eq_star] if args.key?(:eq_star)
|
128934
129511
|
@est_relevance = args[:est_relevance] if args.key?(:est_relevance)
|
129512
|
+
@est_sigma_u = args[:est_sigma_u] if args.key?(:est_sigma_u)
|
128935
129513
|
@flow_output = args[:flow_output] if args.key?(:flow_output)
|
128936
129514
|
@height = args[:height] if args.key?(:height)
|
128937
129515
|
@height50k = args[:height50k] if args.key?(:height50k)
|