google-apis-contentwarehouse_v1 0.14.0 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1715,6 +1715,57 @@ module Google
1715
1715
  end
1716
1716
  end
1717
1717
 
1718
+ # Contains info on membership count for member types: HUMAN_USER, APP_USER &
1719
+ # ROSTER_MEMBER different states: INVITED, JOINED
1720
+ class AppsDynamiteSharedSegmentedMembershipCount
1721
+ include Google::Apis::Core::Hashable
1722
+
1723
+ #
1724
+ # Corresponds to the JSON property `memberType`
1725
+ # @return [String]
1726
+ attr_accessor :member_type
1727
+
1728
+ # count of members with given type and state
1729
+ # Corresponds to the JSON property `membershipCount`
1730
+ # @return [Fixnum]
1731
+ attr_accessor :membership_count
1732
+
1733
+ #
1734
+ # Corresponds to the JSON property `membershipState`
1735
+ # @return [String]
1736
+ attr_accessor :membership_state
1737
+
1738
+ def initialize(**args)
1739
+ update!(**args)
1740
+ end
1741
+
1742
+ # Update properties of this object
1743
+ def update!(**args)
1744
+ @member_type = args[:member_type] if args.key?(:member_type)
1745
+ @membership_count = args[:membership_count] if args.key?(:membership_count)
1746
+ @membership_state = args[:membership_state] if args.key?(:membership_state)
1747
+ end
1748
+ end
1749
+
1750
+ #
1751
+ class AppsDynamiteSharedSegmentedMembershipCounts
1752
+ include Google::Apis::Core::Hashable
1753
+
1754
+ #
1755
+ # Corresponds to the JSON property `value`
1756
+ # @return [Array<Google::Apis::ContentwarehouseV1::AppsDynamiteSharedSegmentedMembershipCount>]
1757
+ attr_accessor :value
1758
+
1759
+ def initialize(**args)
1760
+ update!(**args)
1761
+ end
1762
+
1763
+ # Update properties of this object
1764
+ def update!(**args)
1765
+ @value = args[:value] if args.key?(:value)
1766
+ end
1767
+ end
1768
+
1718
1769
  # A DestinationStream is a /namespace/id[0]/id[1]/.../id[n] that represents a
1719
1770
  # collection of Activities. Example destinations: -The Profile Stream on http://
1720
1771
  # plus.google.com/+JohnDoe/posts -A Square Stream on http://plus.google.com/
@@ -4606,8 +4657,9 @@ module Google
4606
4657
  end
4607
4658
 
4608
4659
  # This is deprecated in PEOPLE_API/SHARPEN, and should only be used for PROFILES.
4609
- # Which apps the person has indicated they are reachable at for the requester.
4610
- # See go/d13y and com.google.focus.proto.InAppReachability.
4660
+ # Clients should use InAppNotificationTarget field instead. Which apps the
4661
+ # person has indicated they are reachable at for the requester. See go/d13y and
4662
+ # com.google.focus.proto.InAppReachability.
4611
4663
  class AppsPeopleOzExternalMergedpeopleapiInAppReachability
4612
4664
  include Google::Apis::Core::Hashable
4613
4665
 
@@ -9856,7 +9908,7 @@ module Google
9856
9908
  end
9857
9909
  end
9858
9910
 
9859
- # The android app information of the provider. Like, Spotify. Next ID: 16 LINT.
9911
+ # The android app information of the provider. Like, Spotify. Next ID: 17 LINT.
9860
9912
  # IfChange
9861
9913
  class AssistantApiCoreTypesAndroidAppInfo
9862
9914
  include Google::Apis::Core::Hashable
@@ -9866,6 +9918,11 @@ module Google
9866
9918
  # @return [String]
9867
9919
  attr_accessor :account_type
9868
9920
 
9921
+ # General information about activities in the app.
9922
+ # Corresponds to the JSON property `activityInfo`
9923
+ # @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesAndroidAppInfoActivityInfo]
9924
+ attr_accessor :activity_info
9925
+
9869
9926
  # Intent associated with the app. We include intents here as different versions
9870
9927
  # of the same app may support different intents. In those cases, the
9871
9928
  # package_name is not enough to identify the app and we should use the
@@ -9978,6 +10035,7 @@ module Google
9978
10035
  # Update properties of this object
9979
10036
  def update!(**args)
9980
10037
  @account_type = args[:account_type] if args.key?(:account_type)
10038
+ @activity_info = args[:activity_info] if args.key?(:activity_info)
9981
10039
  @android_intent = args[:android_intent] if args.key?(:android_intent)
9982
10040
  @app_unique_id = args[:app_unique_id] if args.key?(:app_unique_id)
9983
10041
  @app_version = args[:app_version] if args.key?(:app_version)
@@ -9995,12 +10053,59 @@ module Google
9995
10053
  end
9996
10054
  end
9997
10055
 
10056
+ # General information about activities in the app.
10057
+ class AssistantApiCoreTypesAndroidAppInfoActivityInfo
10058
+ include Google::Apis::Core::Hashable
10059
+
10060
+ # Activities that are currently active and tagged as ACTION_MAIN and
10061
+ # CATEGORY_LAUNCHER. Includes the activity corresponding to android_intent if it
10062
+ # falls under CATEGORY_LAUNCHER.
10063
+ # Corresponds to the JSON property `activeLaunchableActivities`
10064
+ # @return [Array<Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesAndroidAppInfoActivityInfoActivity>]
10065
+ attr_accessor :active_launchable_activities
10066
+
10067
+ def initialize(**args)
10068
+ update!(**args)
10069
+ end
10070
+
10071
+ # Update properties of this object
10072
+ def update!(**args)
10073
+ @active_launchable_activities = args[:active_launchable_activities] if args.key?(:active_launchable_activities)
10074
+ end
10075
+ end
10076
+
10077
+ # Information about an individual activity.
10078
+ class AssistantApiCoreTypesAndroidAppInfoActivityInfoActivity
10079
+ include Google::Apis::Core::Hashable
10080
+
10081
+ # The localized user visible activity name.
10082
+ # Corresponds to the JSON property `localizedActivityName`
10083
+ # @return [String]
10084
+ attr_accessor :localized_activity_name
10085
+
10086
+ # Short class name for activity, following https://developer.android.com/
10087
+ # reference/android/content/ComponentName#getShortClassName()
10088
+ # Corresponds to the JSON property `shortClassName`
10089
+ # @return [String]
10090
+ attr_accessor :short_class_name
10091
+
10092
+ def initialize(**args)
10093
+ update!(**args)
10094
+ end
10095
+
10096
+ # Update properties of this object
10097
+ def update!(**args)
10098
+ @localized_activity_name = args[:localized_activity_name] if args.key?(:localized_activity_name)
10099
+ @short_class_name = args[:short_class_name] if args.key?(:short_class_name)
10100
+ end
10101
+ end
10102
+
9998
10103
  # The change of AndroidAppInfo, e.g. app installation or deletion for
9999
10104
  # incremental delta app info upload.
10000
10105
  class AssistantApiCoreTypesAndroidAppInfoDelta
10001
10106
  include Google::Apis::Core::Hashable
10002
10107
 
10003
- # The android app information of the provider. Like, Spotify. Next ID: 16 LINT.
10108
+ # The android app information of the provider. Like, Spotify. Next ID: 17 LINT.
10004
10109
  # IfChange
10005
10110
  # Corresponds to the JSON property `androidAppInfo`
10006
10111
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesAndroidAppInfo]
@@ -11797,7 +11902,7 @@ module Google
11797
11902
  class AssistantApiCoreTypesProvider
11798
11903
  include Google::Apis::Core::Hashable
11799
11904
 
11800
- # The android app information of the provider. Like, Spotify. Next ID: 16 LINT.
11905
+ # The android app information of the provider. Like, Spotify. Next ID: 17 LINT.
11801
11906
  # IfChange
11802
11907
  # Corresponds to the JSON property `androidAppInfo`
11803
11908
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesAndroidAppInfo]
@@ -14539,19 +14644,6 @@ module Google
14539
14644
  attr_accessor :face_match_enabled
14540
14645
  alias_method :face_match_enabled?, :face_match_enabled
14541
14646
 
14542
- # When true, allow data collection of audio on this device for Federated
14543
- # Learning.
14544
- # Corresponds to the JSON property `flAudioCacheEnabled`
14545
- # @return [Boolean]
14546
- attr_accessor :fl_audio_cache_enabled
14547
- alias_method :fl_audio_cache_enabled?, :fl_audio_cache_enabled
14548
-
14549
- # When true, allow data collection of frames on this device.
14550
- # Corresponds to the JSON property `flVisualFramesCacheEnabled`
14551
- # @return [Boolean]
14552
- attr_accessor :fl_visual_frames_cache_enabled
14553
- alias_method :fl_visual_frames_cache_enabled?, :fl_visual_frames_cache_enabled
14554
-
14555
14647
  # Stores GCM info associated with a device. See go/quartz-design-doc for more
14556
14648
  # info.
14557
14649
  # Corresponds to the JSON property `gcmSettings`
@@ -14864,8 +14956,6 @@ module Google
14864
14956
  @face_enrollment_errors = args[:face_enrollment_errors] if args.key?(:face_enrollment_errors)
14865
14957
  @face_enrollment_status = args[:face_enrollment_status] if args.key?(:face_enrollment_status)
14866
14958
  @face_match_enabled = args[:face_match_enabled] if args.key?(:face_match_enabled)
14867
- @fl_audio_cache_enabled = args[:fl_audio_cache_enabled] if args.key?(:fl_audio_cache_enabled)
14868
- @fl_visual_frames_cache_enabled = args[:fl_visual_frames_cache_enabled] if args.key?(:fl_visual_frames_cache_enabled)
14869
14959
  @gcm_settings = args[:gcm_settings] if args.key?(:gcm_settings)
14870
14960
  @home_graph_data = args[:home_graph_data] if args.key?(:home_graph_data)
14871
14961
  @home_graph_id = args[:home_graph_id] if args.key?(:home_graph_id)
@@ -16591,7 +16681,7 @@ module Google
16591
16681
  attr_accessor :supported_client_op
16592
16682
 
16593
16683
  # These are the set of features that are supported by the device. It's a part of
16594
- # the SoftwareCapabilities of the device. Next ID: 63
16684
+ # the SoftwareCapabilities of the device. Next ID: 64
16595
16685
  # Corresponds to the JSON property `supportedFeatures`
16596
16686
  # @return [Google::Apis::ContentwarehouseV1::AssistantApiSupportedFeatures]
16597
16687
  attr_accessor :supported_features
@@ -16985,7 +17075,7 @@ module Google
16985
17075
  end
16986
17076
 
16987
17077
  # These are the set of features that are supported by the device. It's a part of
16988
- # the SoftwareCapabilities of the device. Next ID: 63
17078
+ # the SoftwareCapabilities of the device. Next ID: 64
16989
17079
  class AssistantApiSupportedFeatures
16990
17080
  include Google::Apis::Core::Hashable
16991
17081
 
@@ -17177,6 +17267,14 @@ module Google
17177
17267
  attr_accessor :is_paired_phone_needed_for_comms
17178
17268
  alias_method :is_paired_phone_needed_for_comms?, :is_paired_phone_needed_for_comms
17179
17269
 
17270
+ # Whether the client supports confirmation flow when a permission is missing. If
17271
+ # set to true, the user will be prompted and on confirmation the original flow
17272
+ # will continue.
17273
+ # Corresponds to the JSON property `justInTimeSupported`
17274
+ # @return [Boolean]
17275
+ attr_accessor :just_in_time_supported
17276
+ alias_method :just_in_time_supported?, :just_in_time_supported
17277
+
17180
17278
  # Which way of launching the keyboard the client supports.
17181
17279
  # Corresponds to the JSON property `launchKeyboardSupported`
17182
17280
  # @return [String]
@@ -17438,6 +17536,7 @@ module Google
17438
17536
  @in_dialog_account_linking_supported = args[:in_dialog_account_linking_supported] if args.key?(:in_dialog_account_linking_supported)
17439
17537
  @is_paired_phone_contact_upload_needed_for_comms = args[:is_paired_phone_contact_upload_needed_for_comms] if args.key?(:is_paired_phone_contact_upload_needed_for_comms)
17440
17538
  @is_paired_phone_needed_for_comms = args[:is_paired_phone_needed_for_comms] if args.key?(:is_paired_phone_needed_for_comms)
17539
+ @just_in_time_supported = args[:just_in_time_supported] if args.key?(:just_in_time_supported)
17441
17540
  @launch_keyboard_supported = args[:launch_keyboard_supported] if args.key?(:launch_keyboard_supported)
17442
17541
  @lens_supported = args[:lens_supported] if args.key?(:lens_supported)
17443
17542
  @live_cards_supported = args[:live_cards_supported] if args.key?(:live_cards_supported)
@@ -18128,12 +18227,6 @@ module Google
18128
18227
  # @return [String]
18129
18228
  attr_accessor :mid
18130
18229
 
18131
- # Represents how to naturally identify a provider. A copy of google3/assistant/
18132
- # serviceengine/proto/serving/natural_provider_id.proto.
18133
- # Corresponds to the JSON property `naturalProviderId`
18134
- # @return [Google::Apis::ContentwarehouseV1::AssistantContextProviderIdNaturalProviderId]
18135
- attr_accessor :natural_provider_id
18136
-
18137
18230
  # ID issued by the Provider Corpus to uniquely identify a provider entity e.g.
18138
18231
  # an Android app, a Cast app or a Cloud provider. In practice, a single partner
18139
18232
  # can have multiple providers entities. For more detail, see go/se-storage-
@@ -18163,38 +18256,11 @@ module Google
18163
18256
  @ecosystem_type = args[:ecosystem_type] if args.key?(:ecosystem_type)
18164
18257
  @media_provider_id = args[:media_provider_id] if args.key?(:media_provider_id)
18165
18258
  @mid = args[:mid] if args.key?(:mid)
18166
- @natural_provider_id = args[:natural_provider_id] if args.key?(:natural_provider_id)
18167
18259
  @provider_corpus_id = args[:provider_corpus_id] if args.key?(:provider_corpus_id)
18168
18260
  @provider_variant = args[:provider_variant] if args.key?(:provider_variant)
18169
18261
  end
18170
18262
  end
18171
18263
 
18172
- # Represents how to naturally identify a provider. A copy of google3/assistant/
18173
- # serviceengine/proto/serving/natural_provider_id.proto.
18174
- class AssistantContextProviderIdNaturalProviderId
18175
- include Google::Apis::Core::Hashable
18176
-
18177
- # ProviderType is an enum to represent the category of where this id is from.
18178
- # Corresponds to the JSON property `providerType`
18179
- # @return [String]
18180
- attr_accessor :provider_type
18181
-
18182
- # String of provider_id_value is the actual value of the id.
18183
- # Corresponds to the JSON property `value`
18184
- # @return [String]
18185
- attr_accessor :value
18186
-
18187
- def initialize(**args)
18188
- update!(**args)
18189
- end
18190
-
18191
- # Update properties of this object
18192
- def update!(**args)
18193
- @provider_type = args[:provider_type] if args.key?(:provider_type)
18194
- @value = args[:value] if args.key?(:value)
18195
- end
18196
- end
18197
-
18198
18264
  # Note: As of May 2021, multiple providers use the same mids (e.g. YouTube Main,
18199
18265
  # YouTube Go, and YouTube Music all have the same mids). However, quite often we
18200
18266
  # end up using surface specific identifiers (e.g. Android package names, iOS
@@ -19617,7 +19683,7 @@ module Google
19617
19683
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerMediaGroundingProviderFeatures]
19618
19684
  attr_accessor :media_grounding_provider_features
19619
19685
 
19620
- # Features to be extracted from Podcast GP for ranking in HGR. Next ID: 2
19686
+ # Features to be extracted from Podcast GP for ranking in HGR. Next ID: 4
19621
19687
  # Corresponds to the JSON property `podcastGroundingProviderFeatures`
19622
19688
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerPodcastGroundingProviderFeatures]
19623
19689
  attr_accessor :podcast_grounding_provider_features
@@ -19641,6 +19707,31 @@ module Google
19641
19707
  end
19642
19708
  end
19643
19709
 
19710
+ #
19711
+ class AssistantGroundingRankerLaaFeature
19712
+ include Google::Apis::Core::Hashable
19713
+
19714
+ #
19715
+ # Corresponds to the JSON property `name`
19716
+ # @return [String]
19717
+ attr_accessor :name
19718
+
19719
+ #
19720
+ # Corresponds to the JSON property `value`
19721
+ # @return [Float]
19722
+ attr_accessor :value
19723
+
19724
+ def initialize(**args)
19725
+ update!(**args)
19726
+ end
19727
+
19728
+ # Update properties of this object
19729
+ def update!(**args)
19730
+ @name = args[:name] if args.key?(:name)
19731
+ @value = args[:value] if args.key?(:value)
19732
+ end
19733
+ end
19734
+
19644
19735
  #
19645
19736
  class AssistantGroundingRankerLaaFeatures
19646
19737
  include Google::Apis::Core::Hashable
@@ -19660,6 +19751,11 @@ module Google
19660
19751
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerLaaFeaturesContact]
19661
19752
  attr_accessor :contact
19662
19753
 
19754
+ #
19755
+ # Corresponds to the JSON property `features`
19756
+ # @return [Array<Google::Apis::ContentwarehouseV1::AssistantGroundingRankerLaaFeature>]
19757
+ attr_accessor :features
19758
+
19663
19759
  #
19664
19760
  # Corresponds to the JSON property `provider`
19665
19761
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerLaaFeaturesProvider]
@@ -19674,6 +19770,7 @@ module Google
19674
19770
  @binding_set = args[:binding_set] if args.key?(:binding_set)
19675
19771
  @communication_endpoint = args[:communication_endpoint] if args.key?(:communication_endpoint)
19676
19772
  @contact = args[:contact] if args.key?(:contact)
19773
+ @features = args[:features] if args.key?(:features)
19677
19774
  @provider = args[:provider] if args.key?(:provider)
19678
19775
  end
19679
19776
  end
@@ -19875,7 +19972,7 @@ module Google
19875
19972
  end
19876
19973
  end
19877
19974
 
19878
- # Features to be extracted from Podcast GP for ranking in HGR. Next ID: 2
19975
+ # Features to be extracted from Podcast GP for ranking in HGR. Next ID: 4
19879
19976
  class AssistantGroundingRankerPodcastGroundingProviderFeatures
19880
19977
  include Google::Apis::Core::Hashable
19881
19978
 
@@ -19885,6 +19982,16 @@ module Google
19885
19982
  attr_accessor :is_exclusive
19886
19983
  alias_method :is_exclusive?, :is_exclusive
19887
19984
 
19985
+ # The relevance score from Scubed.
19986
+ # Corresponds to the JSON property `scubedNg3ModelScore`
19987
+ # @return [Float]
19988
+ attr_accessor :scubed_ng3_model_score
19989
+
19990
+ # Tstar score is a signal that indicates the quality of the entity.
19991
+ # Corresponds to the JSON property `scubedTstarScore`
19992
+ # @return [Float]
19993
+ attr_accessor :scubed_tstar_score
19994
+
19888
19995
  def initialize(**args)
19889
19996
  update!(**args)
19890
19997
  end
@@ -19892,6 +19999,8 @@ module Google
19892
19999
  # Update properties of this object
19893
20000
  def update!(**args)
19894
20001
  @is_exclusive = args[:is_exclusive] if args.key?(:is_exclusive)
20002
+ @scubed_ng3_model_score = args[:scubed_ng3_model_score] if args.key?(:scubed_ng3_model_score)
20003
+ @scubed_tstar_score = args[:scubed_tstar_score] if args.key?(:scubed_tstar_score)
19895
20004
  end
19896
20005
  end
19897
20006
 
@@ -19908,9 +20017,9 @@ module Google
19908
20017
 
19909
20018
  # Cluster IDs for the provider. This field is repeated because some providers
19910
20019
  # can be associated with multiple clusters. PRR specific feature.
19911
- # Corresponds to the JSON property `providerClusterId`
20020
+ # Corresponds to the JSON property `providerClusterIdDeprecated`
19912
20021
  # @return [Array<String>]
19913
- attr_accessor :provider_cluster_id
20022
+ attr_accessor :provider_cluster_id_deprecated
19914
20023
 
19915
20024
  # Identifier used to represent a single application (a.k.a. provider). This
19916
20025
  # model represents the surface-agnostic counterpart for assistant.api.core_types.
@@ -19946,7 +20055,7 @@ module Google
19946
20055
  # Update properties of this object
19947
20056
  def update!(**args)
19948
20057
  @is_in_app_provider = args[:is_in_app_provider] if args.key?(:is_in_app_provider)
19949
- @provider_cluster_id = args[:provider_cluster_id] if args.key?(:provider_cluster_id)
20058
+ @provider_cluster_id_deprecated = args[:provider_cluster_id_deprecated] if args.key?(:provider_cluster_id_deprecated)
19950
20059
  @provider_id = args[:provider_id] if args.key?(:provider_id)
19951
20060
  @psl_score = args[:psl_score] if args.key?(:psl_score)
19952
20061
  end
@@ -21568,7 +21677,7 @@ module Google
21568
21677
 
21569
21678
  # Signals to be used by the Prefulfillment Ranker. Derived from the
21570
21679
  # ParsingSignals and GroundingSignals carried by the FunctionCall. LINT.IfChange
21571
- # Next ID: 48
21680
+ # Next ID: 52
21572
21681
  class AssistantPrefulfillmentRankerPrefulfillmentSignals
21573
21682
  include Google::Apis::Core::Hashable
21574
21683
 
@@ -21614,6 +21723,13 @@ module Google
21614
21723
  attr_accessor :fulfillable_dominant_media
21615
21724
  alias_method :fulfillable_dominant_media?, :fulfillable_dominant_media
21616
21725
 
21726
+ # Whether or not the intent was generated by a legacy Aqua domain that PFR
21727
+ # should care about.
21728
+ # Corresponds to the JSON property `generatedByLegacyAquaDomain`
21729
+ # @return [Boolean]
21730
+ attr_accessor :generated_by_legacy_aqua_domain
21731
+ alias_method :generated_by_legacy_aqua_domain?, :generated_by_legacy_aqua_domain
21732
+
21617
21733
  # Grounding Signals. Score indicating how grounded the intent is, populated by
21618
21734
  # the Grounding Box.
21619
21735
  # Corresponds to the JSON property `groundabilityScore`
@@ -21655,6 +21771,11 @@ module Google
21655
21771
  # @return [Float]
21656
21772
  attr_accessor :intent_name_auis_score_exp
21657
21773
 
21774
+ # Intent level Pauis User Interaction Score.
21775
+ # Corresponds to the JSON property `intentNamePauis`
21776
+ # @return [Float]
21777
+ attr_accessor :intent_name_pauis
21778
+
21658
21779
  # Feasibility of fulfilling the binding set. Eg: For PlayMedia, this is
21659
21780
  # equivalent to playability. More details: go/hgr-feasibility-feature.
21660
21781
  # Corresponds to the JSON property `isFeasible`
@@ -21686,6 +21807,12 @@ module Google
21686
21807
  attr_accessor :is_podcast_intent
21687
21808
  alias_method :is_podcast_intent?, :is_podcast_intent
21688
21809
 
21810
+ # Whether the intent is a media object video intent.
21811
+ # Corresponds to the JSON property `isVideoIntent`
21812
+ # @return [Boolean]
21813
+ attr_accessor :is_video_intent
21814
+ alias_method :is_video_intent?, :is_video_intent
21815
+
21689
21816
  # The rank order of the interpretation as determined by kscorer. The kscorer-
21690
21817
  # determined dominant interpretation, if any, gets a rank of 0. The remaining N
21691
21818
  # interpretations get a rank of 1 through N.
@@ -21764,6 +21891,11 @@ module Google
21764
21891
  # @return [Fixnum]
21765
21892
  attr_accessor :parsing_score_mse8_bucket_id
21766
21893
 
21894
+ # Query understanding phase the intent was produced in.
21895
+ # Corresponds to the JSON property `phase`
21896
+ # @return [String]
21897
+ attr_accessor :phase
21898
+
21767
21899
  # Cosine similarity between predicted query-to-term model and assistant intent-
21768
21900
  # type-based salient terms. This is intended to be only used for ACE ranking and
21769
21901
  # only populated for assistant traffic.
@@ -21830,6 +21962,7 @@ module Google
21830
21962
  @dominant = args[:dominant] if args.key?(:dominant)
21831
21963
  @effective_arg_span_length = args[:effective_arg_span_length] if args.key?(:effective_arg_span_length)
21832
21964
  @fulfillable_dominant_media = args[:fulfillable_dominant_media] if args.key?(:fulfillable_dominant_media)
21965
+ @generated_by_legacy_aqua_domain = args[:generated_by_legacy_aqua_domain] if args.key?(:generated_by_legacy_aqua_domain)
21833
21966
  @groundability_score = args[:groundability_score] if args.key?(:groundability_score)
21834
21967
  @grounding_provider_features = args[:grounding_provider_features] if args.key?(:grounding_provider_features)
21835
21968
  @has_answer_group = args[:has_answer_group] if args.key?(:has_answer_group)
@@ -21837,11 +21970,13 @@ module Google
21837
21970
  @intent_name = args[:intent_name] if args.key?(:intent_name)
21838
21971
  @intent_name_auis_score = args[:intent_name_auis_score] if args.key?(:intent_name_auis_score)
21839
21972
  @intent_name_auis_score_exp = args[:intent_name_auis_score_exp] if args.key?(:intent_name_auis_score_exp)
21973
+ @intent_name_pauis = args[:intent_name_pauis] if args.key?(:intent_name_pauis)
21840
21974
  @is_feasible = args[:is_feasible] if args.key?(:is_feasible)
21841
21975
  @is_fully_grounded = args[:is_fully_grounded] if args.key?(:is_fully_grounded)
21842
21976
  @is_media_control_intent = args[:is_media_control_intent] if args.key?(:is_media_control_intent)
21843
21977
  @is_play_generic_music = args[:is_play_generic_music] if args.key?(:is_play_generic_music)
21844
21978
  @is_podcast_intent = args[:is_podcast_intent] if args.key?(:is_podcast_intent)
21979
+ @is_video_intent = args[:is_video_intent] if args.key?(:is_video_intent)
21845
21980
  @kscorer_rank = args[:kscorer_rank] if args.key?(:kscorer_rank)
21846
21981
  @laa_features = args[:laa_features] if args.key?(:laa_features)
21847
21982
  @mask_candidate_level_features = args[:mask_candidate_level_features] if args.key?(:mask_candidate_level_features)
@@ -21855,6 +21990,7 @@ module Google
21855
21990
  @num_variables = args[:num_variables] if args.key?(:num_variables)
21856
21991
  @num_variables_grounded = args[:num_variables_grounded] if args.key?(:num_variables_grounded)
21857
21992
  @parsing_score_mse8_bucket_id = args[:parsing_score_mse8_bucket_id] if args.key?(:parsing_score_mse8_bucket_id)
21993
+ @phase = args[:phase] if args.key?(:phase)
21858
21994
  @pq2t_vs_assistant_ibst_cosine = args[:pq2t_vs_assistant_ibst_cosine] if args.key?(:pq2t_vs_assistant_ibst_cosine)
21859
21995
  @pq2t_vs_ibst_cosine = args[:pq2t_vs_ibst_cosine] if args.key?(:pq2t_vs_ibst_cosine)
21860
21996
  @predicted_intent_confidence = args[:predicted_intent_confidence] if args.key?(:predicted_intent_confidence)
@@ -24073,7 +24209,7 @@ module Google
24073
24209
  # @return [Google::Apis::ContentwarehouseV1::ClassifierPornClassifierData]
24074
24210
  attr_accessor :classifierdata
24075
24211
 
24076
- # Next ID: 52
24212
+ # Next ID: 53
24077
24213
  # Corresponds to the JSON property `sitedata`
24078
24214
  # @return [Google::Apis::ContentwarehouseV1::ClassifierPornSiteData]
24079
24215
  attr_accessor :sitedata
@@ -24271,7 +24407,7 @@ module Google
24271
24407
  end
24272
24408
  end
24273
24409
 
24274
- # Next ID: 52
24410
+ # Next ID: 53
24275
24411
  class ClassifierPornSiteData
24276
24412
  include Google::Apis::Core::Hashable
24277
24413
 
@@ -24316,6 +24452,11 @@ module Google
24316
24452
  # @return [Array<Google::Apis::ContentwarehouseV1::ClassifierPornSiteDataVersionedScore>]
24317
24453
  attr_accessor :versionedscore
24318
24454
 
24455
+ # The cubic mean aggregation of violence page scores in the site.
24456
+ # Corresponds to the JSON property `violenceScore`
24457
+ # @return [Float]
24458
+ attr_accessor :violence_score
24459
+
24319
24460
  # Next ID: 6
24320
24461
  # Corresponds to the JSON property `violenceStats`
24321
24462
  # @return [Google::Apis::ContentwarehouseV1::ClassifierPornSiteViolenceStats]
@@ -24335,6 +24476,7 @@ module Google
24335
24476
  @site_porn_ratio = args[:site_porn_ratio] if args.key?(:site_porn_ratio)
24336
24477
  @site_softporn_ratio = args[:site_softporn_ratio] if args.key?(:site_softporn_ratio)
24337
24478
  @versionedscore = args[:versionedscore] if args.key?(:versionedscore)
24479
+ @violence_score = args[:violence_score] if args.key?(:violence_score)
24338
24480
  @violence_stats = args[:violence_stats] if args.key?(:violence_stats)
24339
24481
  end
24340
24482
  end
@@ -25205,7 +25347,7 @@ module Google
25205
25347
  # MustangContentInfo` for protocols used during search and/or docinfo. Next
25206
25348
  # available tag deprecated, use this (and look for commented out fields): blaze-
25207
25349
  # bin/net/proto_compiler/protocol-compiler --freetags \ indexer/perdocdata/
25208
- # perdocdata.proto Next tag: 221
25350
+ # perdocdata.proto Next tag: 222
25209
25351
  # Corresponds to the JSON property `perDocData`
25210
25352
  # @return [Google::Apis::ContentwarehouseV1::PerDocData]
25211
25353
  attr_accessor :per_doc_data
@@ -25569,7 +25711,7 @@ module Google
25569
25711
  # MustangContentInfo` for protocols used during search and/or docinfo. Next
25570
25712
  # available tag deprecated, use this (and look for commented out fields): blaze-
25571
25713
  # bin/net/proto_compiler/protocol-compiler --freetags \ indexer/perdocdata/
25572
- # perdocdata.proto Next tag: 221
25714
+ # perdocdata.proto Next tag: 222
25573
25715
  # Corresponds to the JSON property `perDocData`
25574
25716
  # @return [Google::Apis::ContentwarehouseV1::PerDocData]
25575
25717
  attr_accessor :per_doc_data
@@ -38854,11 +38996,12 @@ module Google
38854
38996
 
38855
38997
  # Detailed information about each lane in this direction, if available. Lanes
38856
38998
  # are numbered from inside of the road outward, i.e. the lane next to the center
38857
- # line is lane 0. Note that lanes that are valid for travel in both directions
38858
- # appear in both segments of a segment pair (left turn lanes, one-lane roads,
38859
- # some passing lanes, reversing lanes). Some lanes may not be usable by cars,
38860
- # such as bike lanes. Also, some lanes may not exist along the entire segment, e.
38861
- # g. left- or right-turn lanes that appear just before the intersection.
38999
+ # line has lane_number 0. Note that lanes that are valid for travel in both
39000
+ # directions appear in both segments of a segment pair (left turn lanes, one-
39001
+ # lane roads, some passing lanes, reversing lanes). Some lanes may not be usable
39002
+ # by cars, such as bike lanes. Also, some lanes may not exist along the entire
39003
+ # segment, e.g. left- or right-turn lanes that appear just before the
39004
+ # intersection.
38862
39005
  # Corresponds to the JSON property `lane`
38863
39006
  # @return [Array<Google::Apis::ContentwarehouseV1::GeostoreLaneProto>]
38864
39007
  attr_accessor :lane
@@ -43331,7 +43474,7 @@ module Google
43331
43474
 
43332
43475
  # Information about the state of the device. This contains any state that
43333
43476
  # Assistant may need to know about in order to fulfill requests, for example
43334
- # which timers and alarms are set. Next ID: 9
43477
+ # which timers and alarms are set. Next ID: 10
43335
43478
  class GoogleAssistantAccessoryV1DeviceState
43336
43479
  include Google::Apis::Core::Hashable
43337
43480
 
@@ -43424,7 +43567,7 @@ module Google
43424
43567
 
43425
43568
  # Information about the state of the device. This contains any state that
43426
43569
  # Assistant may need to know about in order to fulfill requests, for example
43427
- # which timers and alarms are set. Next ID: 9
43570
+ # which timers and alarms are set. Next ID: 10
43428
43571
  # Corresponds to the JSON property `deviceState`
43429
43572
  # @return [Google::Apis::ContentwarehouseV1::GoogleAssistantAccessoryV1DeviceState]
43430
43573
  attr_accessor :device_state
@@ -44433,6 +44576,12 @@ module Google
44433
44576
  # @return [String]
44434
44577
  attr_accessor :display_uri
44435
44578
 
44579
+ # Output only. If linked to a Collection with RetentionPolicy, the date when the
44580
+ # document becomes mutable.
44581
+ # Corresponds to the JSON property `dispositionTime`
44582
+ # @return [String]
44583
+ attr_accessor :disposition_time
44584
+
44436
44585
  # The Document schema name. Format: projects/`project_number`/locations/`
44437
44586
  # location`/documentSchemas/`document_schema_id`.
44438
44587
  # Corresponds to the JSON property `documentSchemaName`
@@ -44520,6 +44669,7 @@ module Google
44520
44669
  @creator = args[:creator] if args.key?(:creator)
44521
44670
  @display_name = args[:display_name] if args.key?(:display_name)
44522
44671
  @display_uri = args[:display_uri] if args.key?(:display_uri)
44672
+ @disposition_time = args[:disposition_time] if args.key?(:disposition_time)
44523
44673
  @document_schema_name = args[:document_schema_name] if args.key?(:document_schema_name)
44524
44674
  @inline_raw_document = args[:inline_raw_document] if args.key?(:inline_raw_document)
44525
44675
  @name = args[:name] if args.key?(:name)
@@ -46295,6 +46445,11 @@ module Google
46295
46445
  # @return [Array<String>]
46296
46446
  attr_accessor :documents
46297
46447
 
46448
+ # The output Cloud Storage folder in this pipeline.
46449
+ # Corresponds to the JSON property `outputPath`
46450
+ # @return [String]
46451
+ attr_accessor :output_path
46452
+
46298
46453
  def initialize(**args)
46299
46454
  update!(**args)
46300
46455
  end
@@ -46303,6 +46458,7 @@ module Google
46303
46458
  def update!(**args)
46304
46459
  @doc_ai_dataset = args[:doc_ai_dataset] if args.key?(:doc_ai_dataset)
46305
46460
  @documents = args[:documents] if args.key?(:documents)
46461
+ @output_path = args[:output_path] if args.key?(:output_path)
46306
46462
  end
46307
46463
  end
46308
46464
 
@@ -47337,9 +47493,9 @@ module Google
47337
47493
  attr_accessor :text_styles
47338
47494
 
47339
47495
  # Optional. Currently supports Google Cloud Storage URI of the form `gs://
47340
- # bucket_name/object_name`. Object versioning is not supported. See [Google
47341
- # Cloud Storage Request URIs](https://cloud.google.com/storage/docs/reference-
47342
- # uris) for more info.
47496
+ # bucket_name/object_name`. Object versioning is not supported. For more
47497
+ # information, refer to [Google Cloud Storage Request URIs](https://cloud.google.
47498
+ # com/storage/docs/reference-uris).
47343
47499
  # Corresponds to the JSON property `uri`
47344
47500
  # @return [String]
47345
47501
  attr_accessor :uri
@@ -48433,13 +48589,13 @@ module Google
48433
48589
  # @return [Google::Apis::ContentwarehouseV1::GoogleTypeColor]
48434
48590
  attr_accessor :background_color
48435
48591
 
48436
- # Whether the text is bold (equivalent to font weight >= 700).
48592
+ # Whether the text is bold (equivalent to font_weight is at least `700`).
48437
48593
  # Corresponds to the JSON property `bold`
48438
48594
  # @return [Boolean]
48439
48595
  attr_accessor :bold
48440
48596
  alias_method :bold?, :bold
48441
48597
 
48442
- # Font size in points (1 point is 1/72").
48598
+ # Font size in points (`1` point is `¹⁄₇₂` inches).
48443
48599
  # Corresponds to the JSON property `fontSize`
48444
48600
  # @return [Fixnum]
48445
48601
  attr_accessor :font_size
@@ -48449,8 +48605,8 @@ module Google
48449
48605
  # @return [String]
48450
48606
  attr_accessor :font_type
48451
48607
 
48452
- # TrueType weight on a scale 100 (Thin) to 1000 (Ultra-heavy). Normal is 400,
48453
- # Bold is 700.
48608
+ # TrueType weight on a scale `100` (thin) to `1000` (ultra-heavy). Normal is `
48609
+ # 400`, bold is `700`.
48454
48610
  # Corresponds to the JSON property `fontWeight`
48455
48611
  # @return [Fixnum]
48456
48612
  attr_accessor :font_weight
@@ -48472,12 +48628,12 @@ module Google
48472
48628
  # @return [Float]
48473
48629
  attr_accessor :letter_spacing
48474
48630
 
48475
- # Font size in pixels, equal to unrounded_fontsize * resolution / 72.0.
48631
+ # Font size in pixels, equal to _unrounded font_size_ * _resolution_ ÷ `72.0`.
48476
48632
  # Corresponds to the JSON property `pixelFontSize`
48477
48633
  # @return [Float]
48478
48634
  attr_accessor :pixel_font_size
48479
48635
 
48480
- # Whether the text are small caps.
48636
+ # Whether the text is in small caps.
48481
48637
  # Corresponds to the JSON property `smallcaps`
48482
48638
  # @return [Boolean]
48483
48639
  attr_accessor :smallcaps
@@ -53608,7 +53764,7 @@ module Google
53608
53764
  # @return [Fixnum]
53609
53765
  attr_accessor :expiration_timestamp
53610
53766
 
53611
- # Next tag value: 381.
53767
+ # Next tag value: 382.
53612
53768
  # Corresponds to the JSON property `extendedExif`
53613
53769
  # @return [Google::Apis::ContentwarehouseV1::PhotosImageMetadata]
53614
53770
  attr_accessor :extended_exif
@@ -55230,6 +55386,34 @@ module Google
55230
55386
  end
55231
55387
  end
55232
55388
 
55389
+ # Goldmine annotation in the CDoc to store the hrid of the 5 entities with
55390
+ # higher topicality in the document. Used by the Skin Tone Twiddler to determine
55391
+ # if the result set shows mostly one specific KG entity. go/result-set-signal
55392
+ class ImageQualitySensitiveMediaOrPeopleEntities
55393
+ include Google::Apis::Core::Hashable
55394
+
55395
+ # Similar to above, but for media entities (movie name, fictional character,
55396
+ # musical band)
55397
+ # Corresponds to the JSON property `mediaEntitiesId`
55398
+ # @return [Array<Fixnum>]
55399
+ attr_accessor :media_entities_id
55400
+
55401
+ # hrid of the 5 people entities with higher topicality in the document
55402
+ # Corresponds to the JSON property `peopleEntitiesId`
55403
+ # @return [Array<Fixnum>]
55404
+ attr_accessor :people_entities_id
55405
+
55406
+ def initialize(**args)
55407
+ update!(**args)
55408
+ end
55409
+
55410
+ # Update properties of this object
55411
+ def update!(**args)
55412
+ @media_entities_id = args[:media_entities_id] if args.key?(:media_entities_id)
55413
+ @people_entities_id = args[:people_entities_id] if args.key?(:people_entities_id)
55414
+ end
55415
+ end
55416
+
55233
55417
  # A single region within an image. NEXT_ID: 11
55234
55418
  class ImageRegionsImageRegion
55235
55419
  include Google::Apis::Core::Hashable
@@ -55758,7 +55942,7 @@ module Google
55758
55942
  # @return [Google::Apis::ContentwarehouseV1::IndexingSpeechSpeechPropertiesProto]
55759
55943
  attr_accessor :speech_properties
55760
55944
 
55761
- # LINT.IfChange Score calculated from a thumbnail. NextID: 15
55945
+ # LINT.IfChange Score calculated from a thumbnail. NextID: 16
55762
55946
  # Corresponds to the JSON property `thumbnailQualityScore`
55763
55947
  # @return [Google::Apis::ContentwarehouseV1::VideoThumbnailsThumbnailScore]
55764
55948
  attr_accessor :thumbnail_quality_score
@@ -62427,7 +62611,7 @@ module Google
62427
62611
  attr_accessor :name
62428
62612
 
62429
62613
  # A message representing the signals associated with an argument. NEXT ID TO USE:
62430
- # 57 For //depot/google3/logs/proto/knowledge/interpretation/intent_query.proto
62614
+ # 58 For //depot/google3/logs/proto/knowledge/interpretation/intent_query.proto
62431
62615
  # in the "ThenChange", fields under Argument.signals in the serving proto are
62432
62616
  # stored directly under Argument on the logging side. For example, see http://
62433
62617
  # google3/nlp/semantic_parsing/data_management/logs/web_logs/
@@ -62932,7 +63116,7 @@ module Google
62932
63116
  end
62933
63117
 
62934
63118
  # A message representing the signals associated with an argument. NEXT ID TO USE:
62935
- # 57 For //depot/google3/logs/proto/knowledge/interpretation/intent_query.proto
63119
+ # 58 For //depot/google3/logs/proto/knowledge/interpretation/intent_query.proto
62936
63120
  # in the "ThenChange", fields under Argument.signals in the serving proto are
62937
63121
  # stored directly under Argument on the logging side. For example, see http://
62938
63122
  # google3/nlp/semantic_parsing/data_management/logs/web_logs/
@@ -63242,6 +63426,12 @@ module Google
63242
63426
  attr_accessor :resolved_from_pronoun
63243
63427
  alias_method :resolved_from_pronoun?, :resolved_from_pronoun
63244
63428
 
63429
+ # SRM signal data. Properties here should be nonsemantic. Semantic properties
63430
+ # should be modeled directly in the SRM.
63431
+ # Corresponds to the JSON property `responseMeaningSignals`
63432
+ # @return [Google::Apis::ContentwarehouseV1::KnowledgeAnswersIntentQueryResponseMeaningSignalsResponseMeaningSignals]
63433
+ attr_accessor :response_meaning_signals
63434
+
63245
63435
  # The list of result supports for this Argument.
63246
63436
  # Corresponds to the JSON property `resultSupport`
63247
63437
  # @return [Array<Google::Apis::ContentwarehouseV1::UniversalsearchNewPackerKnowledgeResultSupport>]
@@ -63344,6 +63534,7 @@ module Google
63344
63534
  @relatedness_signals = args[:relatedness_signals] if args.key?(:relatedness_signals)
63345
63535
  @resolved_from_context = args[:resolved_from_context] if args.key?(:resolved_from_context)
63346
63536
  @resolved_from_pronoun = args[:resolved_from_pronoun] if args.key?(:resolved_from_pronoun)
63537
+ @response_meaning_signals = args[:response_meaning_signals] if args.key?(:response_meaning_signals)
63347
63538
  @result_support = args[:result_support] if args.key?(:result_support)
63348
63539
  @saft_signals = args[:saft_signals] if args.key?(:saft_signals)
63349
63540
  @shopping_ids = args[:shopping_ids] if args.key?(:shopping_ids)
@@ -64137,7 +64328,7 @@ module Google
64137
64328
 
64138
64329
  # Signals to be used by the Prefulfillment Ranker. Derived from the
64139
64330
  # ParsingSignals and GroundingSignals carried by the FunctionCall. LINT.IfChange
64140
- # Next ID: 48
64331
+ # Next ID: 52
64141
64332
  # Corresponds to the JSON property `prefulfillmentSignals`
64142
64333
  # @return [Google::Apis::ContentwarehouseV1::AssistantPrefulfillmentRankerPrefulfillmentSignals]
64143
64334
  attr_accessor :prefulfillment_signals
@@ -64884,23 +65075,61 @@ module Google
64884
65075
  end
64885
65076
  end
64886
65077
 
65078
+ #
65079
+ class KnowledgeAnswersIntentQueryResponseMeaningSignalsAnswersHeaderSignals
65080
+ include Google::Apis::Core::Hashable
65081
+
65082
+ #
65083
+ # Corresponds to the JSON property `answersValueGender`
65084
+ # @return [String]
65085
+ attr_accessor :answers_value_gender
65086
+
65087
+ #
65088
+ # Corresponds to the JSON property `numAnswers`
65089
+ # @return [Fixnum]
65090
+ attr_accessor :num_answers
65091
+
65092
+ def initialize(**args)
65093
+ update!(**args)
65094
+ end
65095
+
65096
+ # Update properties of this object
65097
+ def update!(**args)
65098
+ @answers_value_gender = args[:answers_value_gender] if args.key?(:answers_value_gender)
65099
+ @num_answers = args[:num_answers] if args.key?(:num_answers)
65100
+ end
65101
+ end
65102
+
64887
65103
  # SRM signal data. Properties here should be nonsemantic. Semantic properties
64888
65104
  # should be modeled directly in the SRM.
64889
65105
  class KnowledgeAnswersIntentQueryResponseMeaningSignalsResponseMeaningSignals
64890
65106
  include Google::Apis::Core::Hashable
64891
65107
 
65108
+ # Signals that are used to generate answers header.
65109
+ # Corresponds to the JSON property `answersHeaderSignals`
65110
+ # @return [Google::Apis::ContentwarehouseV1::KnowledgeAnswersIntentQueryResponseMeaningSignalsAnswersHeaderSignals]
65111
+ attr_accessor :answers_header_signals
65112
+
64892
65113
  #
64893
65114
  # Corresponds to the JSON property `propertyValue`
64894
65115
  # @return [Array<Google::Apis::ContentwarehouseV1::FreebasePropertyValue>]
64895
65116
  attr_accessor :property_value
64896
65117
 
65118
+ # The intended application this response meaning is used for. It is intended for
65119
+ # downstream dispatching.
65120
+ # Corresponds to the JSON property `responseMeaningApplication`
65121
+ # @return [String]
65122
+ attr_accessor :response_meaning_application
65123
+
64897
65124
  def initialize(**args)
64898
65125
  update!(**args)
64899
65126
  end
64900
65127
 
64901
65128
  # Update properties of this object
64902
65129
  def update!(**args)
65130
+ @answers_header_signals = args[:answers_header_signals] if args.key?(:answers_header_signals)
64903
65131
  @property_value = args[:property_value] if args.key?(:property_value)
65132
+ @response_meaning_application = args[:response_meaning_application] if args.key?(:response_meaning_application)
64904
65133
  end
64905
65134
  end
64906
65135
 
@@ -84990,7 +85219,7 @@ module Google
84990
85219
  # MustangContentInfo` for protocols used during search and/or docinfo. Next
84991
85220
  # available tag deprecated, use this (and look for commented out fields): blaze-
84992
85221
  # bin/net/proto_compiler/protocol-compiler --freetags \ indexer/perdocdata/
84993
- # perdocdata.proto Next tag: 221
85222
+ # perdocdata.proto Next tag: 222
84994
85223
  class PerDocData
84995
85224
  include Google::Apis::Core::Hashable
84996
85225
 
@@ -85320,7 +85549,7 @@ module Google
85320
85549
 
85321
85550
  # PerDocData for fringe-query-prior (built into the shards for eventual
85322
85551
  # consumption at Fringe classification time). Not stored in DocJoins. NEXT ID:
85323
- # 11
85552
+ # 12
85324
85553
  # Corresponds to the JSON property `fringeQueryPrior`
85325
85554
  # @return [Google::Apis::ContentwarehouseV1::QualityFringeFringeQueryPriorPerDocData]
85326
85555
  attr_accessor :fringe_query_prior
@@ -85427,13 +85656,20 @@ module Google
85427
85656
  # @return [Google::Apis::ContentwarehouseV1::IndexingDupsLocalizedLocalizedCluster]
85428
85657
  attr_accessor :localized_cluster
85429
85658
 
85659
+ # Goldmine annotation in the CDoc to store the hrid of the 5 entities with
85660
+ # higher topicality in the document. Used by the Skin Tone Twiddler to determine
85661
+ # if the result set shows mostly one specific KG entity. go/result-set-signal
85662
+ # Corresponds to the JSON property `mediaOrPeopleEntities`
85663
+ # @return [Google::Apis::ContentwarehouseV1::ImageQualitySensitiveMediaOrPeopleEntities]
85664
+ attr_accessor :media_or_people_entities
85665
+
85430
85666
  # If not 0, we should not show the image in overlay mode in image snippets
85431
85667
  # Corresponds to the JSON property `noimageframeoverlayreason`
85432
85668
  # @return [Fixnum]
85433
85669
  attr_accessor :noimageframeoverlayreason
85434
85670
 
85435
85671
  # NOTE: When adding a new field to be propagated to Raffia check if
85436
- # NsrPatternSignalSpec needs to be updated. Next ID: 52
85672
+ # NsrPatternSignalSpec needs to be updated. Next ID: 53
85437
85673
  # Corresponds to the JSON property `nsrDataProto`
85438
85674
  # @return [Google::Apis::ContentwarehouseV1::QualityNsrNsrData]
85439
85675
  attr_accessor :nsr_data_proto
@@ -85899,6 +86135,7 @@ module Google
85899
86135
  @launch_app_info = args[:launch_app_info] if args.key?(:launch_app_info)
85900
86136
  @live_results_data = args[:live_results_data] if args.key?(:live_results_data)
85901
86137
  @localized_cluster = args[:localized_cluster] if args.key?(:localized_cluster)
86138
+ @media_or_people_entities = args[:media_or_people_entities] if args.key?(:media_or_people_entities)
85902
86139
  @noimageframeoverlayreason = args[:noimageframeoverlayreason] if args.key?(:noimageframeoverlayreason)
85903
86140
  @nsr_data_proto = args[:nsr_data_proto] if args.key?(:nsr_data_proto)
85904
86141
  @nsr_is_covid_local_authority = args[:nsr_is_covid_local_authority] if args.key?(:nsr_is_covid_local_authority)
@@ -86357,7 +86594,58 @@ module Google
86357
86594
  end
86358
86595
  end
86359
86596
 
86360
- # Next tag value: 381.
86597
+ # HDR Metadata describes in what way an image expresses high dynamic range
86598
+ # information (e.g. using a gainmap or a specialized color space).
86599
+ class PhotosHdrMetadata
86600
+ include Google::Apis::Core::Hashable
86601
+
86602
+ # Details about gainmap-based HDR formats (e.g. go/ghdr). Notably, images can
86603
+ # adhere to multiple gainmap specifications concurrently.
86604
+ # Corresponds to the JSON property `gainmap`
86605
+ # @return [Google::Apis::ContentwarehouseV1::PhotosHdrMetadataGainmap]
86606
+ attr_accessor :gainmap
86607
+
86608
+ def initialize(**args)
86609
+ update!(**args)
86610
+ end
86611
+
86612
+ # Update properties of this object
86613
+ def update!(**args)
86614
+ @gainmap = args[:gainmap] if args.key?(:gainmap)
86615
+ end
86616
+ end
86617
+
86618
+ # Details about gainmap-based HDR formats (e.g. go/ghdr). Notably, images can
86619
+ # adhere to multiple gainmap specifications concurrently.
86620
+ class PhotosHdrMetadataGainmap
86621
+ include Google::Apis::Core::Hashable
86622
+
86623
+ # Indicates that this image can be processed as an Adobe HDR (FlexDR) image by
86624
+ # reading the MPF segments.
86625
+ # Corresponds to the JSON property `adobeHdr`
86626
+ # @return [Boolean]
86627
+ attr_accessor :adobe_hdr
86628
+ alias_method :adobe_hdr?, :adobe_hdr
86629
+
86630
+ # Indicates that this image can be processed as a go/ghdr (UltraHDR) image by
86631
+ # reading the GContainer in the primary XMP block.
86632
+ # Corresponds to the JSON property `googleHdr`
86633
+ # @return [Boolean]
86634
+ attr_accessor :google_hdr
86635
+ alias_method :google_hdr?, :google_hdr
86636
+
86637
+ def initialize(**args)
86638
+ update!(**args)
86639
+ end
86640
+
86641
+ # Update properties of this object
86642
+ def update!(**args)
86643
+ @adobe_hdr = args[:adobe_hdr] if args.key?(:adobe_hdr)
86644
+ @google_hdr = args[:google_hdr] if args.key?(:google_hdr)
86645
+ end
86646
+ end
86647
+
86648
+ # Next tag value: 382.
86361
86649
  class PhotosImageMetadata
86362
86650
  include Google::Apis::Core::Hashable
86363
86651
 
@@ -87243,6 +87531,12 @@ module Google
87243
87531
  attr_accessor :has_alpha
87244
87532
  alias_method :has_alpha?, :has_alpha
87245
87533
 
87534
+ # HDR Metadata describes in what way an image expresses high dynamic range
87535
+ # information (e.g. using a gainmap or a specialized color space).
87536
+ # Corresponds to the JSON property `hdrMetadata`
87537
+ # @return [Google::Apis::ContentwarehouseV1::PhotosHdrMetadata]
87538
+ attr_accessor :hdr_metadata
87539
+
87246
87540
  #
87247
87541
  # Corresponds to the JSON property `headline`
87248
87542
  # @return [String]
@@ -87702,9 +87996,11 @@ module Google
87702
87996
  # @return [Fixnum]
87703
87997
  attr_accessor :resolutionunit
87704
87998
 
87705
- # being returned to caller Use values defined in "MIME_TYPE" This field is
87706
- # deprecated. Rotation is now accomplished via ImageInfo.exif_orientation and
87707
- # ImageInfo.edit_list. Number of degrees (0, 90, 180,
87999
+ # This field is deprecated. Rotation is now accomplished via ImageInfo.
88000
+ # exif_orientation and ImageInfo.edit_list. WARNING: the presence of rotate is
88001
+ # used by FIFE to identify older images. Setting this (even to the correct
88002
+ # number of degrees) on newer images can cause incorrectly rotated thumbnails.
88003
+ # This was the cause of omg/58543 Number of degrees (0, 90, 180, 270)
87708
88004
  # Corresponds to the JSON property `rotate`
87709
88005
  # @return [Fixnum]
87710
88006
  attr_accessor :rotate
@@ -88161,6 +88457,7 @@ module Google
88161
88457
  @grayresponsecurve = args[:grayresponsecurve] if args.key?(:grayresponsecurve)
88162
88458
  @grayresponseunit = args[:grayresponseunit] if args.key?(:grayresponseunit)
88163
88459
  @has_alpha = args[:has_alpha] if args.key?(:has_alpha)
88460
+ @hdr_metadata = args[:hdr_metadata] if args.key?(:hdr_metadata)
88164
88461
  @headline = args[:headline] if args.key?(:headline)
88165
88462
  @height = args[:height] if args.key?(:height)
88166
88463
  @hostcomputer = args[:hostcomputer] if args.key?(:hostcomputer)
@@ -91444,7 +91741,7 @@ module Google
91444
91741
 
91445
91742
  # PerDocData for fringe-query-prior (built into the shards for eventual
91446
91743
  # consumption at Fringe classification time). Not stored in DocJoins. NEXT ID:
91447
- # 11
91744
+ # 12
91448
91745
  class QualityFringeFringeQueryPriorPerDocData
91449
91746
  include Google::Apis::Core::Hashable
91450
91747
 
@@ -91520,6 +91817,12 @@ module Google
91520
91817
  # @return [Fixnum]
91521
91818
  attr_accessor :encoded_proximity_score
91522
91819
 
91820
+ # Indices on the repository_webref::WebrefEntities::entity field of entities
91821
+ # that represent a person or a group of people (aka sensitive entities).
91822
+ # Corresponds to the JSON property `sensitiveEntitiesIndices`
91823
+ # @return [Array<Fixnum>]
91824
+ attr_accessor :sensitive_entities_indices
91825
+
91523
91826
  def initialize(**args)
91524
91827
  update!(**args)
91525
91828
  end
@@ -91536,6 +91839,7 @@ module Google
91536
91839
  @encoded_fringe_site_prior_score_for_qfs_training = args[:encoded_fringe_site_prior_score_for_qfs_training] if args.key?(:encoded_fringe_site_prior_score_for_qfs_training)
91537
91840
  @encoded_predicted_xlq_score_and_confidence = args[:encoded_predicted_xlq_score_and_confidence] if args.key?(:encoded_predicted_xlq_score_and_confidence)
91538
91841
  @encoded_proximity_score = args[:encoded_proximity_score] if args.key?(:encoded_proximity_score)
91842
+ @sensitive_entities_indices = args[:sensitive_entities_indices] if args.key?(:sensitive_entities_indices)
91539
91843
  end
91540
91844
  end
91541
91845
 
@@ -92484,7 +92788,7 @@ module Google
92484
92788
  end
92485
92789
 
92486
92790
  # NOTE: When adding a new field to be propagated to Raffia check if
92487
- # NsrPatternSignalSpec needs to be updated. Next ID: 52
92791
+ # NsrPatternSignalSpec needs to be updated. Next ID: 53
92488
92792
  class QualityNsrNsrData
92489
92793
  include Google::Apis::Core::Hashable
92490
92794
 
@@ -92642,6 +92946,11 @@ module Google
92642
92946
  # @return [Float]
92643
92947
  attr_accessor :pnav
92644
92948
 
92949
+ # denominator for the pnav computation
92950
+ # Corresponds to the JSON property `pnavClicks`
92951
+ # @return [Float]
92952
+ attr_accessor :pnav_clicks
92953
+
92645
92954
  # NSR - prior. Estimate of whether the site is above/below average NSR in its
92646
92955
  # slice.
92647
92956
  # Corresponds to the JSON property `priorAdjustedNsr`
@@ -92724,11 +93033,6 @@ module Google
92724
93033
  # @return [String]
92725
93034
  attr_accessor :url
92726
93035
 
92727
- # Versioned map of ASR (authenticity) values.
92728
- # Corresponds to the JSON property `versionedAsrData`
92729
- # @return [Array<Google::Apis::ContentwarehouseV1::QualityNsrVersionedFloatSignal>]
92730
- attr_accessor :versioned_asr_data
92731
-
92732
93036
  # Versioned map of NSR values for experimenting with the next release.
92733
93037
  # Corresponds to the JSON property `versionedData`
92734
93038
  # @return [Array<Google::Apis::ContentwarehouseV1::QualityNsrNsrVersionedData>]
@@ -92787,6 +93091,7 @@ module Google
92787
93091
  @nsr_variance = args[:nsr_variance] if args.key?(:nsr_variance)
92788
93092
  @nsrdata_from_fallback_pattern_key = args[:nsrdata_from_fallback_pattern_key] if args.key?(:nsrdata_from_fallback_pattern_key)
92789
93093
  @pnav = args[:pnav] if args.key?(:pnav)
93094
+ @pnav_clicks = args[:pnav_clicks] if args.key?(:pnav_clicks)
92790
93095
  @prior_adjusted_nsr = args[:prior_adjusted_nsr] if args.key?(:prior_adjusted_nsr)
92791
93096
  @secondary_site_chunk = args[:secondary_site_chunk] if args.key?(:secondary_site_chunk)
92792
93097
  @shopping_score = args[:shopping_score] if args.key?(:shopping_score)
@@ -92802,7 +93107,6 @@ module Google
92802
93107
  @tofu = args[:tofu] if args.key?(:tofu)
92803
93108
  @ugc_score = args[:ugc_score] if args.key?(:ugc_score)
92804
93109
  @url = args[:url] if args.key?(:url)
92805
- @versioned_asr_data = args[:versioned_asr_data] if args.key?(:versioned_asr_data)
92806
93110
  @versioned_data = args[:versioned_data] if args.key?(:versioned_data)
92807
93111
  @video_score = args[:video_score] if args.key?(:video_score)
92808
93112
  @vlq = args[:vlq] if args.key?(:vlq)
@@ -99722,12 +100026,6 @@ module Google
99722
100026
  # @return [Array<Google::Apis::ContentwarehouseV1::RepositoryWebrefPreprocessingNameVariantSignals>]
99723
100027
  attr_accessor :debug_variant_signals
99724
100028
 
99725
- # Next available tag: 35. Represents all the information that we have for a
99726
- # given entity.
99727
- # Corresponds to the JSON property `entity`
99728
- # @return [Google::Apis::ContentwarehouseV1::RepositoryWebrefEntityJoin]
99729
- attr_accessor :entity
99730
-
99731
100029
  # Stores region specific score ratios for the entity when it is significantly
99732
100030
  # different from the language version above.
99733
100031
  # Corresponds to the JSON property `extendedScoreRatio`
@@ -99845,7 +100143,6 @@ module Google
99845
100143
  @confidence = args[:confidence] if args.key?(:confidence)
99846
100144
  @debug_info = args[:debug_info] if args.key?(:debug_info)
99847
100145
  @debug_variant_signals = args[:debug_variant_signals] if args.key?(:debug_variant_signals)
99848
- @entity = args[:entity] if args.key?(:entity)
99849
100146
  @extended_score_ratio = args[:extended_score_ratio] if args.key?(:extended_score_ratio)
99850
100147
  @include_in_model = args[:include_in_model] if args.key?(:include_in_model)
99851
100148
  @internal_bootstrap_is_open_world = args[:internal_bootstrap_is_open_world] if args.key?(:internal_bootstrap_is_open_world)
@@ -111841,6 +112138,38 @@ module Google
111841
112138
  end
111842
112139
  end
111843
112140
 
112141
+ # SearchLink metadata, for SEARCH_LINK segments. For a search link, the "text"
112142
+ # field should contain the display text. This is currently not indexed.
112143
+ class SocialCommonSearchLinkData
112144
+ include Google::Apis::Core::Hashable
112145
+
112146
+ # For lightweight scoring in serving time.
112147
+ # Corresponds to the JSON property `kgEntityConfidence`
112148
+ # @return [Float]
112149
+ attr_accessor :kg_entity_confidence
112150
+
112151
+ # MID of the KG entity being linked.
112152
+ # Corresponds to the JSON property `mid`
112153
+ # @return [String]
112154
+ attr_accessor :mid
112155
+
112156
+ #
112157
+ # Corresponds to the JSON property `queryBroadnessScore`
112158
+ # @return [Float]
112159
+ attr_accessor :query_broadness_score
112160
+
112161
+ def initialize(**args)
112162
+ update!(**args)
112163
+ end
112164
+
112165
+ # Update properties of this object
112166
+ def update!(**args)
112167
+ @kg_entity_confidence = args[:kg_entity_confidence] if args.key?(:kg_entity_confidence)
112168
+ @mid = args[:mid] if args.key?(:mid)
112169
+ @query_broadness_score = args[:query_broadness_score] if args.key?(:query_broadness_score)
112170
+ end
112171
+ end
112172
+
111844
112173
  #
111845
112174
  class SocialCommonSegment
111846
112175
  include Google::Apis::Core::Hashable
@@ -111866,6 +112195,12 @@ module Google
111866
112195
  # @return [Google::Apis::ContentwarehouseV1::SocialCommonLinkData]
111867
112196
  attr_accessor :link_data
111868
112197
 
112198
+ # SearchLink metadata, for SEARCH_LINK segments. For a search link, the "text"
112199
+ # field should contain the display text. This is currently not indexed.
112200
+ # Corresponds to the JSON property `searchLinkData`
112201
+ # @return [Google::Apis::ContentwarehouseV1::SocialCommonSearchLinkData]
112202
+ attr_accessor :search_link_data
112203
+
111869
112204
  # Text content of the Segment. As a general rule, this field should contain the
111870
112205
  # actual text that should be rendered in the UI. Thus, for a hashtag, it should
111871
112206
  # be "#Foo", and for a link, it should be the display text. Clients that do not
@@ -111910,6 +112245,7 @@ module Google
111910
112245
  @formatting = args[:formatting] if args.key?(:formatting)
111911
112246
  @hashtag_data = args[:hashtag_data] if args.key?(:hashtag_data)
111912
112247
  @link_data = args[:link_data] if args.key?(:link_data)
112248
+ @search_link_data = args[:search_link_data] if args.key?(:search_link_data)
111913
112249
  @text = args[:text] if args.key?(:text)
111914
112250
  @type = args[:type] if args.key?(:type)
111915
112251
  @user_mention_data = args[:user_mention_data] if args.key?(:user_mention_data)
@@ -114112,8 +114448,16 @@ module Google
114112
114448
  # @return [String]
114113
114449
  attr_accessor :entity_type
114114
114450
 
114115
- # Number of members (direct or indirect) in a Google Group. Only an estimate for
114116
- # large groups (currently > 1K direct / indirect members).
114451
+ # Whether caller has visibility into the direct members of the roster. NEXT TAG:
114452
+ # 11
114453
+ # Corresponds to the JSON property `isMembershipVisibleToCaller`
114454
+ # @return [Boolean]
114455
+ attr_accessor :is_membership_visible_to_caller
114456
+ alias_method :is_membership_visible_to_caller?, :is_membership_visible_to_caller
114457
+
114458
+ # DEPRECATED: use segmented_membership_counts instead. Number of members (direct
114459
+ # or indirect) in a Google Group. Only an estimate for large groups (currently >
114460
+ # 1K direct / indirect members).
114117
114461
  # Corresponds to the JSON property `memberCount`
114118
114462
  # @return [Fixnum]
114119
114463
  attr_accessor :member_count
@@ -114128,6 +114472,12 @@ module Google
114128
114472
  # @return [String]
114129
114473
  attr_accessor :presence_prop
114130
114474
 
114475
+ # Represents the direct membership counts of a Google Group. May contain counts
114476
+ # based on member type and membership state.
114477
+ # Corresponds to the JSON property `segmentedMembershipCounts`
114478
+ # @return [Google::Apis::ContentwarehouseV1::AppsDynamiteSharedSegmentedMembershipCounts]
114479
+ attr_accessor :segmented_membership_counts
114480
+
114131
114481
  def initialize(**args)
114132
114482
  update!(**args)
114133
114483
  end
@@ -114139,9 +114489,11 @@ module Google
114139
114489
  @developer_name = args[:developer_name] if args.key?(:developer_name)
114140
114490
  @dnd_state = args[:dnd_state] if args.key?(:dnd_state)
114141
114491
  @entity_type = args[:entity_type] if args.key?(:entity_type)
114492
+ @is_membership_visible_to_caller = args[:is_membership_visible_to_caller] if args.key?(:is_membership_visible_to_caller)
114142
114493
  @member_count = args[:member_count] if args.key?(:member_count)
114143
114494
  @organization_info = args[:organization_info] if args.key?(:organization_info)
114144
114495
  @presence_prop = args[:presence_prop] if args.key?(:presence_prop)
114496
+ @segmented_membership_counts = args[:segmented_membership_counts] if args.key?(:segmented_membership_counts)
114145
114497
  end
114146
114498
  end
114147
114499
 
@@ -116168,11 +116520,6 @@ module Google
116168
116520
  class TravelFlightsAirlineConfig
116169
116521
  include Google::Apis::Core::Hashable
116170
116522
 
116171
- # Populated using airlines_company_ids.csv for AdWords company map
116172
- # Corresponds to the JSON property `adwordsCid`
116173
- # @return [Fixnum]
116174
- attr_accessor :adwords_cid
116175
-
116176
116523
  # STAR_ALLIANCE
116177
116524
  # Corresponds to the JSON property `alliance`
116178
116525
  # @return [String]
@@ -116288,7 +116635,6 @@ module Google
116288
116635
 
116289
116636
  # Update properties of this object
116290
116637
  def update!(**args)
116291
- @adwords_cid = args[:adwords_cid] if args.key?(:adwords_cid)
116292
116638
  @alliance = args[:alliance] if args.key?(:alliance)
116293
116639
  @baggage_carryon_limitations_urls = args[:baggage_carryon_limitations_urls] if args.key?(:baggage_carryon_limitations_urls)
116294
116640
  @baggage_fee_urls = args[:baggage_fee_urls] if args.key?(:baggage_fee_urls)
@@ -120347,7 +120693,7 @@ module Google
120347
120693
  # Intended to be simpler to work with than the ExportedStanza it's derived from
120348
120694
  # See documentation: https://g3doc.corp.google.com/company/teams/youtube/
120349
120695
  # community_intelligence/eng_resources/data_sources.md#ministanza Next available:
120350
- # 77
120696
+ # 78
120351
120697
  # Corresponds to the JSON property `miniStanza`
120352
120698
  # @return [Google::Apis::ContentwarehouseV1::YoutubeCommentsClusteringMiniStanza]
120353
120699
  attr_accessor :mini_stanza
@@ -125079,6 +125425,31 @@ module Google
125079
125425
  end
125080
125426
  end
125081
125427
 
125428
+ # YT app video information. (go/yt-create-vsi-data)
125429
+ class VideoGoogleVideoClipInfo
125430
+ include Google::Apis::Core::Hashable
125431
+
125432
+ # YT app version (ie. YT Create app version).
125433
+ # Corresponds to the JSON property `appVersion`
125434
+ # @return [String]
125435
+ attr_accessor :app_version
125436
+
125437
+ # List of YT media asset logging ids.
125438
+ # Corresponds to the JSON property `assetLoggingId`
125439
+ # @return [Array<String>]
125440
+ attr_accessor :asset_logging_id
125441
+
125442
+ def initialize(**args)
125443
+ update!(**args)
125444
+ end
125445
+
125446
+ # Update properties of this object
125447
+ def update!(**args)
125448
+ @app_version = args[:app_version] if args.key?(:app_version)
125449
+ @asset_logging_id = args[:asset_logging_id] if args.key?(:asset_logging_id)
125450
+ end
125451
+ end
125452
+
125082
125453
  #
125083
125454
  class VideoLegosLegosAnnotationsSet
125084
125455
  include Google::Apis::Core::Hashable
@@ -125735,7 +126106,7 @@ module Google
125735
126106
  # in that source. Fields like lengths, fps, etc. are not guaranteed to be the
125736
126107
  # same as those of transcodes. If the relevant info in source is too broken, the
125737
126108
  # corresponding fields (e.g., lengths) could be unset or with the default value,
125738
- # meaning VSI cannot compute them from the given info. Next id: 82
126109
+ # meaning VSI cannot compute them from the given info. Next id: 83
125739
126110
  # Corresponds to the JSON property `info`
125740
126111
  # @return [Google::Apis::ContentwarehouseV1::VideoVideoStreamInfo]
125741
126112
  attr_accessor :info
@@ -125942,7 +126313,7 @@ module Google
125942
126313
  end
125943
126314
  end
125944
126315
 
125945
- # LINT.IfChange Score calculated from a thumbnail. NextID: 15
126316
+ # LINT.IfChange Score calculated from a thumbnail. NextID: 16
125946
126317
  class VideoThumbnailsThumbnailScore
125947
126318
  include Google::Apis::Core::Hashable
125948
126319
 
@@ -125968,6 +126339,19 @@ module Google
125968
126339
  # @return [Google::Apis::ContentwarehouseV1::DrishtiFeatureExtra]
125969
126340
  attr_accessor :dense_general_extra_features
125970
126341
 
126342
+ # A unique identifier for the image that is independent of the resolution. The
126343
+ # Image ID accompanies the image bytes through its lifecycle, from creation till
126344
+ # vanishing. Image ID is not based on image content; it is different than
126345
+ # checksum (e.g. two different images with the same bytes may not have the same
126346
+ # image ID). This ID is used as a unique identifier for clients such as T&S and
126347
+ # classifiers. For more info refer to go/thumbnail-id-ts-ab-testing Note: Image
126348
+ # ID's are still in development and are currently not exposed externally (may be
126349
+ # done in the future). Please contact yt-thumbnails-core@ before using it. Do
126350
+ # not use externally or in logs before contacting yt-thumbnails-core@
126351
+ # Corresponds to the JSON property `externalImageId`
126352
+ # @return [String]
126353
+ attr_accessor :external_image_id
126354
+
125971
126355
  # If true, score is manually assigned.
125972
126356
  # Corresponds to the JSON property `isAssigned`
125973
126357
  # @return [Boolean]
@@ -126032,6 +126416,7 @@ module Google
126032
126416
  @color_sampling = args[:color_sampling] if args.key?(:color_sampling)
126033
126417
  @dense_features = args[:dense_features] if args.key?(:dense_features)
126034
126418
  @dense_general_extra_features = args[:dense_general_extra_features] if args.key?(:dense_general_extra_features)
126419
+ @external_image_id = args[:external_image_id] if args.key?(:external_image_id)
126035
126420
  @is_assigned = args[:is_assigned] if args.key?(:is_assigned)
126036
126421
  @is_instant = args[:is_instant] if args.key?(:is_instant)
126037
126422
  @model_version = args[:model_version] if args.key?(:model_version)
@@ -126467,7 +126852,7 @@ module Google
126467
126852
  # in that source. Fields like lengths, fps, etc. are not guaranteed to be the
126468
126853
  # same as those of transcodes. If the relevant info in source is too broken, the
126469
126854
  # corresponding fields (e.g., lengths) could be unset or with the default value,
126470
- # meaning VSI cannot compute them from the given info. Next id: 82
126855
+ # meaning VSI cannot compute them from the given info. Next id: 83
126471
126856
  class VideoVideoStreamInfo
126472
126857
  include Google::Apis::Core::Hashable
126473
126858
 
@@ -126631,6 +127016,11 @@ module Google
126631
127016
  # @return [Fixnum]
126632
127017
  attr_accessor :file_type
126633
127018
 
127019
+ # YT app video information. (go/yt-create-vsi-data)
127020
+ # Corresponds to the JSON property `googleVideoClipInfo`
127021
+ # @return [Google::Apis::ContentwarehouseV1::VideoGoogleVideoClipInfo]
127022
+ attr_accessor :google_video_clip_info
127023
+
126634
127024
  #
126635
127025
  # Corresponds to the JSON property `imageStream`
126636
127026
  # @return [Array<Google::Apis::ContentwarehouseV1::VideoVideoStreamInfoVideoStream>]
@@ -126916,6 +127306,7 @@ module Google
126916
127306
  @file_name = args[:file_name] if args.key?(:file_name)
126917
127307
  @file_size = args[:file_size] if args.key?(:file_size)
126918
127308
  @file_type = args[:file_type] if args.key?(:file_type)
127309
+ @google_video_clip_info = args[:google_video_clip_info] if args.key?(:google_video_clip_info)
126919
127310
  @image_stream = args[:image_stream] if args.key?(:image_stream)
126920
127311
  @is_asf = args[:is_asf] if args.key?(:is_asf)
126921
127312
  @is_image_file = args[:is_image_file] if args.key?(:is_image_file)
@@ -129206,7 +129597,7 @@ module Google
129206
129597
  # Intended to be simpler to work with than the ExportedStanza it's derived from
129207
129598
  # See documentation: https://g3doc.corp.google.com/company/teams/youtube/
129208
129599
  # community_intelligence/eng_resources/data_sources.md#ministanza Next available:
129209
- # 77
129600
+ # 78
129210
129601
  class YoutubeCommentsClusteringMiniStanza
129211
129602
  include Google::Apis::Core::Hashable
129212
129603
 
@@ -129343,6 +129734,11 @@ module Google
129343
129734
  attr_accessor :has_creator_reply
129344
129735
  alias_method :has_creator_reply?, :has_creator_reply
129345
129736
 
129737
+ # Impersonation scores map. Keyed by secondary key (score type).
129738
+ # Corresponds to the JSON property `impersonationScores`
129739
+ # @return [Hash<String,Float>]
129740
+ attr_accessor :impersonation_scores
129741
+
129346
129742
  # If the author is a channel member (sponsor).
129347
129743
  # Corresponds to the JSON property `isAuthorSponsor`
129348
129744
  # @return [Boolean]
@@ -129627,6 +130023,7 @@ module Google
129627
130023
  @fds = args[:fds] if args.key?(:fds)
129628
130024
  @has_creator_heart = args[:has_creator_heart] if args.key?(:has_creator_heart)
129629
130025
  @has_creator_reply = args[:has_creator_reply] if args.key?(:has_creator_reply)
130026
+ @impersonation_scores = args[:impersonation_scores] if args.key?(:impersonation_scores)
129630
130027
  @is_author_sponsor = args[:is_author_sponsor] if args.key?(:is_author_sponsor)
129631
130028
  @is_deleted = args[:is_deleted] if args.key?(:is_deleted)
129632
130029
  @is_pinned = args[:is_pinned] if args.key?(:is_pinned)