google-apis-contentwarehouse_v1 0.20.0 → 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c7e55900fe946bd2c37ec014c2de05f30aaf6551d94e402352d5c923181556d
4
- data.tar.gz: 452786504f1851bd08e3c26a2d054f64317edf33445049bbd8cfd6edfce72717
3
+ metadata.gz: 70c8d6cfcb53a30900cbbc68ddef521b35f589f49577334f09af29f417e7501f
4
+ data.tar.gz: a4306cc850b2263e340e5d0ff11c6bffe253499631be2c29a43e4c0d580fc214
5
5
  SHA512:
6
- metadata.gz: 37f356383c55ab66571fcf4ef2206eef1094306b0adad3cbdf46b8e22af0daa8f651ae451b085ebaa24af5244bea80a593b391195752177cca23b5c9a1372f27
7
- data.tar.gz: 999de7b72abddcc571a74fdaabbbb5b541b4eef1c3a0b8c9e585b8976329b576296cf654a0fc37ee4d1f6fa1e7533320e4aef207554684124869ae37f79d6a8a
6
+ metadata.gz: ccdf7cf48ce3f0f745aa1a7c9128aee339f8f281f70d38adff1e4fbc6a9b39a4a0e13b86453fa9ac6efaeab967f689c2ff1c3cc4cd9243db2c6f7acdc30e7826
7
+ data.tar.gz: 5f0bdd4588f4df7f9075f298494f8b92a399f0c6129394979c8f4b13f598ce7cb96cb964ad73aaadff7db595bee6cdeb4c8131640083b03898e2006e8e4c8512
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-contentwarehouse_v1
2
2
 
3
+ ### v0.21.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230711
6
+
3
7
  ### v0.20.0 (2023-07-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20230627
@@ -4888,7 +4888,7 @@ module Google
4888
4888
  class AppsPeopleOzExternalMergedpeopleapiLimitedProfileSettingsField
4889
4889
  include Google::Apis::Core::Hashable
4890
4890
 
4891
- # Next ID: 9
4891
+ # Next ID: 10
4892
4892
  # Corresponds to the JSON property `limitedProfileSettings`
4893
4893
  # @return [Google::Apis::ContentwarehouseV1::SocialGraphApiProtoLimitedProfileSettings]
4894
4894
  attr_accessor :limited_profile_settings
@@ -18937,6 +18937,11 @@ module Google
18937
18937
  # @return [Google::Apis::ContentwarehouseV1::AssistantDevicesPlatformProtoTimerCapability]
18938
18938
  attr_accessor :timer
18939
18939
 
18940
+ # Capabilities with regard to support of outputting TTS.
18941
+ # Corresponds to the JSON property `ttsOutput`
18942
+ # @return [Google::Apis::ContentwarehouseV1::AssistantDevicesPlatformProtoTtsOutputCapability]
18943
+ attr_accessor :tts_output
18944
+
18940
18945
  def initialize(**args)
18941
18946
  update!(**args)
18942
18947
  end
@@ -18949,6 +18954,7 @@ module Google
18949
18954
  @supported_device_ops = args[:supported_device_ops] if args.key?(:supported_device_ops)
18950
18955
  @supports_multi_response = args[:supports_multi_response] if args.key?(:supports_multi_response)
18951
18956
  @timer = args[:timer] if args.key?(:timer)
18957
+ @tts_output = args[:tts_output] if args.key?(:tts_output)
18952
18958
  end
18953
18959
  end
18954
18960
 
@@ -19615,6 +19621,29 @@ module Google
19615
19621
  end
19616
19622
  end
19617
19623
 
19624
+ # Capabilities with regard to support of outputting TTS.
19625
+ class AssistantDevicesPlatformProtoTtsOutputCapability
19626
+ include Google::Apis::Core::Hashable
19627
+
19628
+ # Specifies whether client supports out-of-band TTS synthesis. When this is
19629
+ # enabled, client could receive TTS request message in `SpeechOutputArgs.
19630
+ # structured_tts` which it can then use to make request to S3 for synthesizing
19631
+ # TTS audio.
19632
+ # Corresponds to the JSON property `supportsStructuredTts`
19633
+ # @return [Boolean]
19634
+ attr_accessor :supports_structured_tts
19635
+ alias_method :supports_structured_tts?, :supports_structured_tts
19636
+
19637
+ def initialize(**args)
19638
+ update!(**args)
19639
+ end
19640
+
19641
+ # Update properties of this object
19642
+ def update!(**args)
19643
+ @supports_structured_tts = args[:supports_structured_tts] if args.key?(:supports_structured_tts)
19644
+ end
19645
+ end
19646
+
19618
19647
  # Specifies the NLU level that Google performs, which determines the request
19619
19648
  # format sent to the 3P cloud.
19620
19649
  class AssistantDevicesPlatformProtoUnderstandingConfig
@@ -20103,7 +20132,28 @@ module Google
20103
20132
  end
20104
20133
  end
20105
20134
 
20106
- # Next ID: 6
20135
+ # Features to be extracted from Endpoint GP for ranking in HGR. Next ID: 2
20136
+ class AssistantGroundingRankerEndpointGroundingProviderFeatures
20137
+ include Google::Apis::Core::Hashable
20138
+
20139
+ # Proxy signal which tells whether the user provided a confirmation to a prompt
20140
+ # or not. See http://shortn/_XnZAJBIiwG for more details.
20141
+ # Corresponds to the JSON property `isUserConfirmed`
20142
+ # @return [Boolean]
20143
+ attr_accessor :is_user_confirmed
20144
+ alias_method :is_user_confirmed?, :is_user_confirmed
20145
+
20146
+ def initialize(**args)
20147
+ update!(**args)
20148
+ end
20149
+
20150
+ # Update properties of this object
20151
+ def update!(**args)
20152
+ @is_user_confirmed = args[:is_user_confirmed] if args.key?(:is_user_confirmed)
20153
+ end
20154
+ end
20155
+
20156
+ # Next ID: 7
20107
20157
  class AssistantGroundingRankerGroundingProviderFeatures
20108
20158
  include Google::Apis::Core::Hashable
20109
20159
 
@@ -20119,7 +20169,12 @@ module Google
20119
20169
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceGroundingProviderFeatures]
20120
20170
  attr_accessor :device_grounding_provider_features
20121
20171
 
20122
- # Features to be passed from Media GP to HGR. Next ID: 15
20172
+ # Features to be extracted from Endpoint GP for ranking in HGR. Next ID: 2
20173
+ # Corresponds to the JSON property `endpointGroundingProviderFeatures`
20174
+ # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerEndpointGroundingProviderFeatures]
20175
+ attr_accessor :endpoint_grounding_provider_features
20176
+
20177
+ # Features to be passed from Media GP to HGR. Next ID: 16
20123
20178
  # Corresponds to the JSON property `mediaGroundingProviderFeatures`
20124
20179
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerMediaGroundingProviderFeatures]
20125
20180
  attr_accessor :media_grounding_provider_features
@@ -20142,6 +20197,7 @@ module Google
20142
20197
  def update!(**args)
20143
20198
  @contact_grounding_provider_features = args[:contact_grounding_provider_features] if args.key?(:contact_grounding_provider_features)
20144
20199
  @device_grounding_provider_features = args[:device_grounding_provider_features] if args.key?(:device_grounding_provider_features)
20200
+ @endpoint_grounding_provider_features = args[:endpoint_grounding_provider_features] if args.key?(:endpoint_grounding_provider_features)
20145
20201
  @media_grounding_provider_features = args[:media_grounding_provider_features] if args.key?(:media_grounding_provider_features)
20146
20202
  @podcast_grounding_provider_features = args[:podcast_grounding_provider_features] if args.key?(:podcast_grounding_provider_features)
20147
20203
  @provider_grounding_provider_features = args[:provider_grounding_provider_features] if args.key?(:provider_grounding_provider_features)
@@ -20298,7 +20354,7 @@ module Google
20298
20354
  end
20299
20355
  end
20300
20356
 
20301
- # Features to be passed from Media GP to HGR. Next ID: 15
20357
+ # Features to be passed from Media GP to HGR. Next ID: 16
20302
20358
  class AssistantGroundingRankerMediaGroundingProviderFeatures
20303
20359
  include Google::Apis::Core::Hashable
20304
20360
 
@@ -20307,7 +20363,7 @@ module Google
20307
20363
  # @return [String]
20308
20364
  attr_accessor :album_release_type
20309
20365
 
20310
- # Temporary ambiguity classifier signal.
20366
+ # Temporary ambiguity classifier signals.
20311
20367
  # Corresponds to the JSON property `ambiguityClassifier`
20312
20368
  # @return [String]
20313
20369
  attr_accessor :ambiguity_classifier
@@ -20334,6 +20390,12 @@ module Google
20334
20390
  attr_accessor :is_media_search_query_subset_of_entity_name_and_artist
20335
20391
  alias_method :is_media_search_query_subset_of_entity_name_and_artist?, :is_media_search_query_subset_of_entity_name_and_artist
20336
20392
 
20393
+ #
20394
+ # Corresponds to the JSON property `isMostRecentSongAlbumAmbiguous`
20395
+ # @return [Boolean]
20396
+ attr_accessor :is_most_recent_song_album_ambiguous
20397
+ alias_method :is_most_recent_song_album_ambiguous?, :is_most_recent_song_album_ambiguous
20398
+
20337
20399
  # True if the media deeplink has tag SEED_RADIO.
20338
20400
  # Corresponds to the JSON property `isSeedRadio`
20339
20401
  # @return [Boolean]
@@ -20408,6 +20470,7 @@ module Google
20408
20470
  @has_type_semantic_edge = args[:has_type_semantic_edge] if args.key?(:has_type_semantic_edge)
20409
20471
  @is_cast_video = args[:is_cast_video] if args.key?(:is_cast_video)
20410
20472
  @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)
20473
+ @is_most_recent_song_album_ambiguous = args[:is_most_recent_song_album_ambiguous] if args.key?(:is_most_recent_song_album_ambiguous)
20411
20474
  @is_seed_radio = args[:is_seed_radio] if args.key?(:is_seed_radio)
20412
20475
  @is_seed_radio_request = args[:is_seed_radio_request] if args.key?(:is_seed_radio_request)
20413
20476
  @is_youtube_music_seeking = args[:is_youtube_music_seeking] if args.key?(:is_youtube_music_seeking)
@@ -22319,7 +22382,7 @@ module Google
22319
22382
  # @return [Float]
22320
22383
  attr_accessor :groundability_score
22321
22384
 
22322
- # Next ID: 6
22385
+ # Next ID: 7
22323
22386
  # Corresponds to the JSON property `groundingProviderFeatures`
22324
22387
  # @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerGroundingProviderFeatures]
22325
22388
  attr_accessor :grounding_provider_features
@@ -25892,7 +25955,7 @@ module Google
25892
25955
  # handle newly introduced data without modifying their code. Please also see the
25893
25956
  # comment of FieldProjector above. There are also some fields in DataInfo that
25894
25957
  # annotate who generates the data, the Index Signals or Goldmine annotator name.
25895
- # Next ID: 536
25958
+ # Next ID: 537
25896
25959
  # Corresponds to the JSON property `dataVersion`
25897
25960
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersion]
25898
25961
  attr_accessor :data_version
@@ -29324,10 +29387,16 @@ module Google
29324
29387
  end
29325
29388
  end
29326
29389
 
29327
- # The attributes of encoded thumbnail images. Next id: 8.
29390
+ # The attributes of encoded thumbnail images. Next id: 9.
29328
29391
  class DrishtiVesperEncodedThumbnail
29329
29392
  include Google::Apis::Core::Hashable
29330
29393
 
29394
+ # Image size in bytes. Meaningful when contents are not stored inline (e.g., via
29395
+ # `image_blob_id`).
29396
+ # Corresponds to the JSON property `byteSize`
29397
+ # @return [Fixnum]
29398
+ attr_accessor :byte_size
29399
+
29331
29400
  # JPEG/WEBP quality factor in range [0,100].
29332
29401
  # Corresponds to the JSON property `encodingQuality`
29333
29402
  # @return [Fixnum]
@@ -29373,6 +29442,7 @@ module Google
29373
29442
 
29374
29443
  # Update properties of this object
29375
29444
  def update!(**args)
29445
+ @byte_size = args[:byte_size] if args.key?(:byte_size)
29376
29446
  @encoding_quality = args[:encoding_quality] if args.key?(:encoding_quality)
29377
29447
  @encoding_type = args[:encoding_type] if args.key?(:encoding_type)
29378
29448
  @height = args[:height] if args.key?(:height)
@@ -39285,7 +39355,13 @@ module Google
39285
39355
  # together, a set of RestrictionProtos can be interpreted as an bool expression
39286
39356
  # in disjunctive normal form: (A and B) or (D and E and F) or (G and H) The
39287
39357
  # action is prohibited if this expression is true. Note that a restriction with
39288
- # no conditions is always true, i.e. its action is always prohibited.
39358
+ # no conditions is always true, i.e. its action is always prohibited. NOTE:
39359
+ # RestrictionProtos are often compared against one another (e.g. to check for
39360
+ # duplicate/redundant restrictions) by canonicalizing them via
39361
+ # GetCanonicalRestriction() in //geostore/base/public/restriction.cc. Any fields
39362
+ # that don't contribute to the definition of a restriction in the real world
39363
+ # should be bundled with the annotative fields near the bottom and excluded in
39364
+ # GetCanonicalRestriction(). LINT.IfChange
39289
39365
  class GeostoreRestrictionProto
39290
39366
  include Google::Apis::Core::Hashable
39291
39367
 
@@ -39628,6 +39704,11 @@ module Google
39628
39704
  # @return [String]
39629
39705
  attr_accessor :route_direction
39630
39706
 
39707
+ # The semantic type of sign.
39708
+ # Corresponds to the JSON property `semanticType`
39709
+ # @return [String]
39710
+ attr_accessor :semantic_type
39711
+
39631
39712
  # A name for a Feature (street name, point of interest, city, building, etc). We
39632
39713
  # currently use NameProto for two essentially disjoint purposes: 1. Common names,
39633
39714
  # which can be language-specific, or have other kinds of variations. 2. Opaque
@@ -39658,6 +39739,7 @@ module Google
39658
39739
  @major_position = args[:major_position] if args.key?(:major_position)
39659
39740
  @minor_position = args[:minor_position] if args.key?(:minor_position)
39660
39741
  @route_direction = args[:route_direction] if args.key?(:route_direction)
39742
+ @semantic_type = args[:semantic_type] if args.key?(:semantic_type)
39661
39743
  @text = args[:text] if args.key?(:text)
39662
39744
  @type = args[:type] if args.key?(:type)
39663
39745
  end
@@ -44570,7 +44652,7 @@ module Google
44570
44652
 
44571
44653
  # Information about the state of the device. This contains any state that
44572
44654
  # Assistant may need to know about in order to fulfill requests, for example
44573
- # which timers and alarms are set. Next ID: 10
44655
+ # which timers and alarms are set. Next ID: 11
44574
44656
  class GoogleAssistantAccessoryV1DeviceState
44575
44657
  include Google::Apis::Core::Hashable
44576
44658
 
@@ -44617,6 +44699,14 @@ module Google
44617
44699
  # @return [Google::Apis::ContentwarehouseV1::GoogleAssistantEmbeddedV1Timers]
44618
44700
  attr_accessor :timer_state
44619
44701
 
44702
+ # This indicates which specific settings are currently unavailable for
44703
+ # modification, despite being listed as a supported setting. Assistant can use
44704
+ # this field to trigger unavailability messages, rather than claiming that a
44705
+ # setting is entirely unsupported on device.
44706
+ # Corresponds to the JSON property `unavailableSettings`
44707
+ # @return [Array<String>]
44708
+ attr_accessor :unavailable_settings
44709
+
44620
44710
  def initialize(**args)
44621
44711
  update!(**args)
44622
44712
  end
@@ -44630,6 +44720,7 @@ module Google
44630
44720
  @do_not_disturb = args[:do_not_disturb] if args.key?(:do_not_disturb)
44631
44721
  @fitness_activities_state = args[:fitness_activities_state] if args.key?(:fitness_activities_state)
44632
44722
  @timer_state = args[:timer_state] if args.key?(:timer_state)
44723
+ @unavailable_settings = args[:unavailable_settings] if args.key?(:unavailable_settings)
44633
44724
  end
44634
44725
  end
44635
44726
 
@@ -44663,7 +44754,7 @@ module Google
44663
44754
 
44664
44755
  # Information about the state of the device. This contains any state that
44665
44756
  # Assistant may need to know about in order to fulfill requests, for example
44666
- # which timers and alarms are set. Next ID: 10
44757
+ # which timers and alarms are set. Next ID: 11
44667
44758
  # Corresponds to the JSON property `deviceState`
44668
44759
  # @return [Google::Apis::ContentwarehouseV1::GoogleAssistantAccessoryV1DeviceState]
44669
44760
  attr_accessor :device_state
@@ -44801,6 +44892,15 @@ module Google
44801
44892
  # @return [String]
44802
44893
  attr_accessor :alarm_id
44803
44894
 
44895
+ # The entity that created this alarm. Note this may be different from the device
44896
+ # that reported this alarm. In particular, this field is meant for remote alarms
44897
+ # which have been synced to the current device by the Clock app. Synced alarms
44898
+ # exist in each device's Clock app and can be managed by either device; this
44899
+ # field indicates their origin.
44900
+ # Corresponds to the JSON property `alarmSource`
44901
+ # @return [String]
44902
+ attr_accessor :alarm_source
44903
+
44804
44904
  # Represents a whole or partial calendar date, such as a birthday. The time of
44805
44905
  # day and time zone are either specified elsewhere or are insignificant. The
44806
44906
  # date is relative to the Gregorian Calendar. This can represent one of the
@@ -44850,6 +44950,7 @@ module Google
44850
44950
  # Update properties of this object
44851
44951
  def update!(**args)
44852
44952
  @alarm_id = args[:alarm_id] if args.key?(:alarm_id)
44953
+ @alarm_source = args[:alarm_source] if args.key?(:alarm_source)
44853
44954
  @date_pattern = args[:date_pattern] if args.key?(:date_pattern)
44854
44955
  @label = args[:label] if args.key?(:label)
44855
44956
  @recurrence_pattern = args[:recurrence_pattern] if args.key?(:recurrence_pattern)
@@ -57101,7 +57202,7 @@ module Google
57101
57202
 
57102
57203
  # SafeSearch video content classification scores are computed based on go/
57103
57204
  # golden7 video features. To access these scores see the library at: google3/
57104
- # quality/safesearch/video/api/video_score_info.h
57205
+ # quality/safesearch/video/api/video_score_info.h Next ID: 6
57105
57206
  # Corresponds to the JSON property `safesearchVideoContentSignals`
57106
57207
  # @return [Google::Apis::ContentwarehouseV1::SafesearchVideoContentSignals]
57107
57208
  attr_accessor :safesearch_video_content_signals
@@ -57349,6 +57450,11 @@ module Google
57349
57450
  class ImageRepositoryFrameIdentifier
57350
57451
  include Google::Apis::Core::Hashable
57351
57452
 
57453
+ # This variant defines the frame to be used as multiple thumbnails per miuntes.
57454
+ # Corresponds to the JSON property `multiThumbnailVariant`
57455
+ # @return [Google::Apis::ContentwarehouseV1::ImageRepositoryFrameIdentifierMultiThumbnailVariant]
57456
+ attr_accessor :multi_thumbnail_variant
57457
+
57352
57458
  # This variant defines the frame to be the first frame of the video's generated
57353
57459
  # preview.
57354
57460
  # Corresponds to the JSON property `previewFrameZeroVariant`
@@ -57371,12 +57477,26 @@ module Google
57371
57477
 
57372
57478
  # Update properties of this object
57373
57479
  def update!(**args)
57480
+ @multi_thumbnail_variant = args[:multi_thumbnail_variant] if args.key?(:multi_thumbnail_variant)
57374
57481
  @preview_frame_zero_variant = args[:preview_frame_zero_variant] if args.key?(:preview_frame_zero_variant)
57375
57482
  @thumbnail_variant = args[:thumbnail_variant] if args.key?(:thumbnail_variant)
57376
57483
  @timestamp_ms = args[:timestamp_ms] if args.key?(:timestamp_ms)
57377
57484
  end
57378
57485
  end
57379
57486
 
57487
+ # This variant defines the frame to be used as multiple thumbnails per miuntes.
57488
+ class ImageRepositoryFrameIdentifierMultiThumbnailVariant
57489
+ include Google::Apis::Core::Hashable
57490
+
57491
+ def initialize(**args)
57492
+ update!(**args)
57493
+ end
57494
+
57495
+ # Update properties of this object
57496
+ def update!(**args)
57497
+ end
57498
+ end
57499
+
57380
57500
  # This variant defines the frame to be the first frame of the video's generated
57381
57501
  # preview.
57382
57502
  class ImageRepositoryFrameIdentifierPreviewFrameZeroVariant
@@ -60252,7 +60372,7 @@ module Google
60252
60372
  # handle newly introduced data without modifying their code. Please also see the
60253
60373
  # comment of FieldProjector above. There are also some fields in DataInfo that
60254
60374
  # annotate who generates the data, the Index Signals or Goldmine annotator name.
60255
- # Next ID: 536
60375
+ # Next ID: 537
60256
60376
  class IndexingDocjoinerDataVersion
60257
60377
  include Google::Apis::Core::Hashable
60258
60378
 
@@ -61356,7 +61476,7 @@ module Google
61356
61476
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
61357
61477
  attr_accessor :news_corpus_news_corpus_annotation
61358
61478
 
61359
- # END DATA FIELDS
61479
+ #
61360
61480
  # Corresponds to the JSON property `newsCorpusNewsCorpusRootAnnotation`
61361
61481
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
61362
61482
  attr_accessor :news_corpus_news_corpus_root_annotation
@@ -62751,6 +62871,11 @@ module Google
62751
62871
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
62752
62872
  attr_accessor :travel_assistant_travel_doc_classification
62753
62873
 
62874
+ # END DATA FIELDS
62875
+ # Corresponds to the JSON property `ucpSignal`
62876
+ # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
62877
+ attr_accessor :ucp_signal
62878
+
62754
62879
  #
62755
62880
  # Corresponds to the JSON property `udrConverterDocumentShoppingData`
62756
62881
  # @return [Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo]
@@ -63411,6 +63536,7 @@ module Google
63411
63536
  @time_annotations = args[:time_annotations] if args.key?(:time_annotations)
63412
63537
  @time_range_annotations = args[:time_range_annotations] if args.key?(:time_range_annotations)
63413
63538
  @travel_assistant_travel_doc_classification = args[:travel_assistant_travel_doc_classification] if args.key?(:travel_assistant_travel_doc_classification)
63539
+ @ucp_signal = args[:ucp_signal] if args.key?(:ucp_signal)
63414
63540
  @udr_converter_document_shopping_data = args[:udr_converter_document_shopping_data] if args.key?(:udr_converter_document_shopping_data)
63415
63541
  @udr_converter_offer = args[:udr_converter_offer] if args.key?(:udr_converter_offer)
63416
63542
  @udr_converter_product_block_data = args[:udr_converter_product_block_data] if args.key?(:udr_converter_product_block_data)
@@ -74061,7 +74187,7 @@ module Google
74061
74187
  # @return [String]
74062
74188
  attr_accessor :property
74063
74189
 
74064
- #
74190
+ # Has not been useful since at least 2015 (before this was logged).
74065
74191
  # Corresponds to the JSON property `resolution`
74066
74192
  # @return [String]
74067
74193
  attr_accessor :resolution
@@ -80029,6 +80155,25 @@ module Google
80029
80155
  end
80030
80156
  end
80031
80157
 
80158
+ #
80159
+ class NlpSemanticParsingLocalEvChargingStationPaymentConstraint
80160
+ include Google::Apis::Core::Hashable
80161
+
80162
+ #
80163
+ # Corresponds to the JSON property `paymentNetworkMid`
80164
+ # @return [String]
80165
+ attr_accessor :payment_network_mid
80166
+
80167
+ def initialize(**args)
80168
+ update!(**args)
80169
+ end
80170
+
80171
+ # Update properties of this object
80172
+ def update!(**args)
80173
+ @payment_network_mid = args[:payment_network_mid] if args.key?(:payment_network_mid)
80174
+ end
80175
+ end
80176
+
80032
80177
  # There is an implicit AND relation if multiple EVCS constraint types are
80033
80178
  # specified.
80034
80179
  class NlpSemanticParsingLocalEvChargingStationSpeedConstraint
@@ -80888,7 +81033,7 @@ module Google
80888
81033
  # location and can be nested accordingly. E.g., for a compound location the
80889
81034
  # constraint may be associated with the entire location or with either of the
80890
81035
  # two internal locations (loc_1 and loc_2). There is an implicit AND relation
80891
- # between the different constraints. Next ID: 25.
81036
+ # between the different constraints. Next ID: 26.
80892
81037
  class NlpSemanticParsingLocalLocationConstraint
80893
81038
  include Google::Apis::Core::Hashable
80894
81039
 
@@ -80915,6 +81060,12 @@ module Google
80915
81060
  # @return [Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalEvChargingStationConnectorConstraint]
80916
81061
  attr_accessor :evcs_connector_constraint
80917
81062
 
81063
+ # Used for populating ElectricVehiclePaymentRefinement from QBF go/evcs-qbf-
81064
+ # payment
81065
+ # Corresponds to the JSON property `evcsPaymentConstraint`
81066
+ # @return [Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalEvChargingStationPaymentConstraint]
81067
+ attr_accessor :evcs_payment_constraint
81068
+
80918
81069
  # There is an implicit AND relation if multiple EVCS constraint types are
80919
81070
  # specified.
80920
81071
  # Corresponds to the JSON property `evcsSpeedConstraint`
@@ -81041,6 +81192,7 @@ module Google
81041
81192
  @chain_member = args[:chain_member] if args.key?(:chain_member)
81042
81193
  @cuisine = args[:cuisine] if args.key?(:cuisine)
81043
81194
  @evcs_connector_constraint = args[:evcs_connector_constraint] if args.key?(:evcs_connector_constraint)
81195
+ @evcs_payment_constraint = args[:evcs_payment_constraint] if args.key?(:evcs_payment_constraint)
81044
81196
  @evcs_speed_constraint = args[:evcs_speed_constraint] if args.key?(:evcs_speed_constraint)
81045
81197
  @gcid_constraint = args[:gcid_constraint] if args.key?(:gcid_constraint)
81046
81198
  @health_insurance = args[:health_insurance] if args.key?(:health_insurance)
@@ -89922,7 +90074,7 @@ module Google
89922
90074
 
89923
90075
  # PerDocData for fringe-query-prior (built into the shards for eventual
89924
90076
  # consumption at Fringe classification time). Not stored in DocJoins. NEXT ID:
89925
- # 12
90077
+ # 13
89926
90078
  # Corresponds to the JSON property `fringeQueryPrior`
89927
90079
  # @return [Google::Apis::ContentwarehouseV1::QualityFringeFringeQueryPriorPerDocData]
89928
90080
  attr_accessor :fringe_query_prior
@@ -93526,12 +93678,6 @@ module Google
93526
93678
  class PornFlagData
93527
93679
  include Google::Apis::Core::Hashable
93528
93680
 
93529
- # Score predicting how likely an image is offensive or suggestive about CSAI (
93530
- # child sexual abuse imagery).
93531
- # Corresponds to the JSON property `csaiScore`
93532
- # @return [Float]
93533
- attr_accessor :csai_score
93534
-
93535
93681
  # DebugInfo stores debug information from the overall classifier. This allows
93536
93682
  # for instance to update counters related to blacklisting without running the
93537
93683
  # full classifier again.
@@ -93659,7 +93805,6 @@ module Google
93659
93805
 
93660
93806
  # Update properties of this object
93661
93807
  def update!(**args)
93662
- @csai_score = args[:csai_score] if args.key?(:csai_score)
93663
93808
  @debug_info = args[:debug_info] if args.key?(:debug_info)
93664
93809
  @final_offensive_score = args[:final_offensive_score] if args.key?(:final_offensive_score)
93665
93810
  @final_violence_score = args[:final_violence_score] if args.key?(:final_violence_score)
@@ -96061,11 +96206,6 @@ module Google
96061
96206
  class QualityDniExtendedNewsPreviews
96062
96207
  include Google::Apis::Core::Hashable
96063
96208
 
96064
- # Publisher's country code (ISO-3166) Used in V0.
96065
- # Corresponds to the JSON property `countryCode`
96066
- # @return [String]
96067
- attr_accessor :country_code
96068
-
96069
96209
  # List of countries that desnippet the publisher. ISO 3166-1-alpha-2 country
96070
96210
  # code (such as FR). See go/iiuse#region-identifiers. Used in V1.
96071
96211
  # Corresponds to the JSON property `desnippetedCountryCode`
@@ -96097,7 +96237,6 @@ module Google
96097
96237
 
96098
96238
  # Update properties of this object
96099
96239
  def update!(**args)
96100
- @country_code = args[:country_code] if args.key?(:country_code)
96101
96240
  @desnippeted_country_code = args[:desnippeted_country_code] if args.key?(:desnippeted_country_code)
96102
96241
  @policy_criteria_base64 = args[:policy_criteria_base64] if args.key?(:policy_criteria_base64)
96103
96242
  @status = args[:status] if args.key?(:status)
@@ -96107,7 +96246,7 @@ module Google
96107
96246
 
96108
96247
  # PerDocData for fringe-query-prior (built into the shards for eventual
96109
96248
  # consumption at Fringe classification time). Not stored in DocJoins. NEXT ID:
96110
- # 12
96249
+ # 13
96111
96250
  class QualityFringeFringeQueryPriorPerDocData
96112
96251
  include Google::Apis::Core::Hashable
96113
96252
 
@@ -96121,6 +96260,11 @@ module Google
96121
96260
  # @return [Fixnum]
96122
96261
  attr_accessor :encoded_chard_xlq_hoax_prediction
96123
96262
 
96263
+ # An encoding of the Chard XLQ prediction on translated content in [0,1].
96264
+ # Corresponds to the JSON property `encodedChardXlqTranslatedPrediction`
96265
+ # @return [Fixnum]
96266
+ attr_accessor :encoded_chard_xlq_translated_prediction
96267
+
96124
96268
  # An encoding of the Chard XLQ-YMYL prediction in [0,1].
96125
96269
  # Corresponds to the JSON property `encodedChardXlqYmylPrediction`
96126
96270
  # @return [Fixnum]
@@ -96197,6 +96341,7 @@ module Google
96197
96341
  def update!(**args)
96198
96342
  @encoded_calibrated_fringe_site_prior_score = args[:encoded_calibrated_fringe_site_prior_score] if args.key?(:encoded_calibrated_fringe_site_prior_score)
96199
96343
  @encoded_chard_xlq_hoax_prediction = args[:encoded_chard_xlq_hoax_prediction] if args.key?(:encoded_chard_xlq_hoax_prediction)
96344
+ @encoded_chard_xlq_translated_prediction = args[:encoded_chard_xlq_translated_prediction] if args.key?(:encoded_chard_xlq_translated_prediction)
96200
96345
  @encoded_chard_xlq_ymyl_prediction = args[:encoded_chard_xlq_ymyl_prediction] if args.key?(:encoded_chard_xlq_ymyl_prediction)
96201
96346
  @encoded_document_fringe_vulnerability = args[:encoded_document_fringe_vulnerability] if args.key?(:encoded_document_fringe_vulnerability)
96202
96347
  @encoded_entity_prior_score = args[:encoded_entity_prior_score] if args.key?(:encoded_entity_prior_score)
@@ -99386,6 +99531,12 @@ module Google
99386
99531
  class QualityRankembedMustangMustangRankEmbedInfo
99387
99532
  include Google::Apis::Core::Hashable
99388
99533
 
99534
+ # Each of the repeated elements in this field has the same scheme as '
99535
+ # fixed_point_encoding'; See go/rankembed-astro-rule-set-dd
99536
+ # Corresponds to the JSON property `additionalFixedPointEncodings`
99537
+ # @return [Array<String>]
99538
+ attr_accessor :additional_fixed_point_encodings
99539
+
99389
99540
  # Each uint64 encodes 8 8-bit values for the quantized document embedding
99390
99541
  # Corresponds to the JSON property `compressedDocumentEmbedding`
99391
99542
  # @return [Google::Apis::ContentwarehouseV1::QualityRankembedMustangMustangRankEmbedInfoCompressedEmbedding]
@@ -99438,6 +99589,7 @@ module Google
99438
99589
 
99439
99590
  # Update properties of this object
99440
99591
  def update!(**args)
99592
+ @additional_fixed_point_encodings = args[:additional_fixed_point_encodings] if args.key?(:additional_fixed_point_encodings)
99441
99593
  @compressed_document_embedding = args[:compressed_document_embedding] if args.key?(:compressed_document_embedding)
99442
99594
  @fixed_point_encoding = args[:fixed_point_encoding] if args.key?(:fixed_point_encoding)
99443
99595
  @scaled_fixed_point4_encoding = args[:scaled_fixed_point4_encoding] if args.key?(:scaled_fixed_point4_encoding)
@@ -105724,11 +105876,6 @@ module Google
105724
105876
  # @return [String]
105725
105877
  attr_accessor :property
105726
105878
 
105727
- #
105728
- # Corresponds to the JSON property `resolution`
105729
- # @return [String]
105730
- attr_accessor :resolution
105731
-
105732
105879
  def initialize(**args)
105733
105880
  update!(**args)
105734
105881
  end
@@ -105741,7 +105888,6 @@ module Google
105741
105888
  @latent_entity = args[:latent_entity] if args.key?(:latent_entity)
105742
105889
  @mdvc = args[:mdvc] if args.key?(:mdvc)
105743
105890
  @property = args[:property] if args.key?(:property)
105744
- @resolution = args[:resolution] if args.key?(:resolution)
105745
105891
  end
105746
105892
  end
105747
105893
 
@@ -108110,7 +108256,7 @@ module Google
108110
108256
  end
108111
108257
 
108112
108258
  # Represents an information which is very close to composite doc, but compresses
108113
- # how the anchors are represented to save space. Next available tag: 16.
108259
+ # how the anchors are represented to save space. Next available tag: 17.
108114
108260
  class RepositoryWebrefSimplifiedCompositeDoc
108115
108261
  include Google::Apis::Core::Hashable
108116
108262
 
@@ -108131,6 +108277,15 @@ module Google
108131
108277
  # @return [Google::Apis::ContentwarehouseV1::RepositoryWebrefRefconDocumentMentionSpans]
108132
108278
  attr_accessor :document_mention_spans
108133
108279
 
108280
+ # Forwarding dups generated by merging existing forwarding dups within
108281
+ # cdoc_container and URLs from ReferencePageCandidateList. Populated only before
108282
+ # writing to online CDocs Spanner table and used for keeping an index on non
108283
+ # canonical URLs in table. [!] Do not use unless fetching CDocs from Enricher's
108284
+ # online Spanner CDocs database knowledge-enricher-cdocs-spanner.
108285
+ # Corresponds to the JSON property `forwardingDups`
108286
+ # @return [Array<Google::Apis::ContentwarehouseV1::RepositoryWebrefSimplifiedForwardingDup>]
108287
+ attr_accessor :forwarding_dups
108288
+
108134
108289
  # Proto with metadata related to why a particular cdoc was selected for an
108135
108290
  # entityjoin.
108136
108291
  # Corresponds to the JSON property `matchingMetadata`
@@ -108172,6 +108327,7 @@ module Google
108172
108327
  @anchors = args[:anchors] if args.key?(:anchors)
108173
108328
  @cdoc_container = args[:cdoc_container] if args.key?(:cdoc_container)
108174
108329
  @document_mention_spans = args[:document_mention_spans] if args.key?(:document_mention_spans)
108330
+ @forwarding_dups = args[:forwarding_dups] if args.key?(:forwarding_dups)
108175
108331
  @matching_metadata = args[:matching_metadata] if args.key?(:matching_metadata)
108176
108332
  @refcon_document_metadata = args[:refcon_document_metadata] if args.key?(:refcon_document_metadata)
108177
108333
  @source_snapshot_type = args[:source_snapshot_type] if args.key?(:source_snapshot_type)
@@ -108181,6 +108337,25 @@ module Google
108181
108337
  end
108182
108338
  end
108183
108339
 
108340
+ #
108341
+ class RepositoryWebrefSimplifiedForwardingDup
108342
+ include Google::Apis::Core::Hashable
108343
+
108344
+ #
108345
+ # Corresponds to the JSON property `url`
108346
+ # @return [String]
108347
+ attr_accessor :url
108348
+
108349
+ def initialize(**args)
108350
+ update!(**args)
108351
+ end
108352
+
108353
+ # Update properties of this object
108354
+ def update!(**args)
108355
+ @url = args[:url] if args.key?(:url)
108356
+ end
108357
+ end
108358
+
108184
108359
  # LINT.IfChange Some document segments may consist of multiple sub-segments (e.g.
108185
108360
  # a document might have multiple anchors or navboost queries). SubSegmentIndex
108186
108361
  # contains all information needed to identify the sub-segment (e.g. specific
@@ -111819,10 +111994,16 @@ module Google
111819
111994
 
111820
111995
  # SafeSearch video content classification scores are computed based on go/
111821
111996
  # golden7 video features. To access these scores see the library at: google3/
111822
- # quality/safesearch/video/api/video_score_info.h
111997
+ # quality/safesearch/video/api/video_score_info.h Next ID: 6
111823
111998
  class SafesearchVideoContentSignals
111824
111999
  include Google::Apis::Core::Hashable
111825
112000
 
112001
+ # Information about multi-label classification result (the scores and whether
112002
+ # frame features were used).
112003
+ # Corresponds to the JSON property `internalMultiLabelClassification`
112004
+ # @return [Google::Apis::ContentwarehouseV1::SafesearchVideoContentSignalsMultiLabelClassificationInfo]
112005
+ attr_accessor :internal_multi_label_classification
112006
+
111826
112007
  # This is used by Amarna to determine whether it should notify Raffia for
111827
112008
  # immediate reprocessing. This field will be generated in Amarna's
111828
112009
  # image_metadata corpus and exported to references_video_search corpus and
@@ -111864,6 +112045,7 @@ module Google
111864
112045
 
111865
112046
  # Update properties of this object
111866
112047
  def update!(**args)
112048
+ @internal_multi_label_classification = args[:internal_multi_label_classification] if args.key?(:internal_multi_label_classification)
111867
112049
  @is_abuse_with_high_confidence = args[:is_abuse_with_high_confidence] if args.key?(:is_abuse_with_high_confidence)
111868
112050
  @scores = args[:scores] if args.key?(:scores)
111869
112051
  @version_tag = args[:version_tag] if args.key?(:version_tag)
@@ -111871,6 +112053,76 @@ module Google
111871
112053
  end
111872
112054
  end
111873
112055
 
112056
+ # Information about multi-label classification result (the scores and whether
112057
+ # frame features were used).
112058
+ class SafesearchVideoContentSignalsMultiLabelClassificationInfo
112059
+ include Google::Apis::Core::Hashable
112060
+
112061
+ #
112062
+ # Corresponds to the JSON property `frameFeaturesPresent`
112063
+ # @return [Boolean]
112064
+ attr_accessor :frame_features_present
112065
+ alias_method :frame_features_present?, :frame_features_present
112066
+
112067
+ # Output of Multi-Label video classifier.
112068
+ # Corresponds to the JSON property `output`
112069
+ # @return [Google::Apis::ContentwarehouseV1::SafesearchVideoContentSignalsMultiLabelOutput]
112070
+ attr_accessor :output
112071
+
112072
+ def initialize(**args)
112073
+ update!(**args)
112074
+ end
112075
+
112076
+ # Update properties of this object
112077
+ def update!(**args)
112078
+ @frame_features_present = args[:frame_features_present] if args.key?(:frame_features_present)
112079
+ @output = args[:output] if args.key?(:output)
112080
+ end
112081
+ end
112082
+
112083
+ # Output of Multi-Label video classifier.
112084
+ class SafesearchVideoContentSignalsMultiLabelOutput
112085
+ include Google::Apis::Core::Hashable
112086
+
112087
+ #
112088
+ # Corresponds to the JSON property `ageIndeterminate`
112089
+ # @return [Float]
112090
+ attr_accessor :age_indeterminate
112091
+
112092
+ #
112093
+ # Corresponds to the JSON property `csam`
112094
+ # @return [Float]
112095
+ attr_accessor :csam
112096
+
112097
+ #
112098
+ # Corresponds to the JSON property `porn`
112099
+ # @return [Float]
112100
+ attr_accessor :porn
112101
+
112102
+ #
112103
+ # Corresponds to the JSON property `racy`
112104
+ # @return [Float]
112105
+ attr_accessor :racy
112106
+
112107
+ #
112108
+ # Corresponds to the JSON property `violence`
112109
+ # @return [Float]
112110
+ attr_accessor :violence
112111
+
112112
+ def initialize(**args)
112113
+ update!(**args)
112114
+ end
112115
+
112116
+ # Update properties of this object
112117
+ def update!(**args)
112118
+ @age_indeterminate = args[:age_indeterminate] if args.key?(:age_indeterminate)
112119
+ @csam = args[:csam] if args.key?(:csam)
112120
+ @porn = args[:porn] if args.key?(:porn)
112121
+ @racy = args[:racy] if args.key?(:racy)
112122
+ @violence = args[:violence] if args.key?(:violence)
112123
+ end
112124
+ end
112125
+
111874
112126
  #
111875
112127
  class ScienceCitation
111876
112128
  include Google::Apis::Core::Hashable
@@ -117295,10 +117547,16 @@ module Google
117295
117547
  end
117296
117548
  end
117297
117549
 
117298
- # Next ID: 9
117550
+ # Next ID: 10
117299
117551
  class SocialGraphApiProtoLimitedProfileSettings
117300
117552
  include Google::Apis::Core::Hashable
117301
117553
 
117554
+ # Created with user input in Android Messages.
117555
+ # Corresponds to the JSON property `androidMessages`
117556
+ # @return [Boolean]
117557
+ attr_accessor :android_messages
117558
+ alias_method :android_messages?, :android_messages
117559
+
117302
117560
  # Indicates why the limited profile has been disabled. Will be set iff the
117303
117561
  # limited profile is disabled. Note: When mutating limited profiles, in order to
117304
117562
  # disable them, MutateDataRequest.DisableLimitedProfile must be true. Currently,
@@ -117307,7 +117565,8 @@ module Google
117307
117565
  # @return [String]
117308
117566
  attr_accessor :disable_reason
117309
117567
 
117310
- # Created with user input in GPay OOBE.
117568
+ # Created with user input in GPay OOBE. This is not currently used because GPay
117569
+ # does not setup mini profile, this might change in the future.
117311
117570
  # Corresponds to the JSON property `gpayOobe`
117312
117571
  # @return [Boolean]
117313
117572
  attr_accessor :gpay_oobe
@@ -117347,6 +117606,7 @@ module Google
117347
117606
 
117348
117607
  # Update properties of this object
117349
117608
  def update!(**args)
117609
+ @android_messages = args[:android_messages] if args.key?(:android_messages)
117350
117610
  @disable_reason = args[:disable_reason] if args.key?(:disable_reason)
117351
117611
  @gpay_oobe = args[:gpay_oobe] if args.key?(:gpay_oobe)
117352
117612
  @last_update_time = args[:last_update_time] if args.key?(:last_update_time)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContentwarehouseV1
18
18
  # Version of the google-apis-contentwarehouse_v1 gem
19
- GEM_VERSION = "0.20.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230627"
25
+ REVISION = "20230711"
26
26
  end
27
27
  end
28
28
  end
@@ -2596,6 +2596,12 @@ module Google
2596
2596
  include Google::Apis::Core::JsonObjectSupport
2597
2597
  end
2598
2598
 
2599
+ class AssistantDevicesPlatformProtoTtsOutputCapability
2600
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2601
+
2602
+ include Google::Apis::Core::JsonObjectSupport
2603
+ end
2604
+
2599
2605
  class AssistantDevicesPlatformProtoUnderstandingConfig
2600
2606
  class Representation < Google::Apis::Core::JsonRepresentation; end
2601
2607
 
@@ -2656,6 +2662,12 @@ module Google
2656
2662
  include Google::Apis::Core::JsonObjectSupport
2657
2663
  end
2658
2664
 
2665
+ class AssistantGroundingRankerEndpointGroundingProviderFeatures
2666
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2667
+
2668
+ include Google::Apis::Core::JsonObjectSupport
2669
+ end
2670
+
2659
2671
  class AssistantGroundingRankerGroundingProviderFeatures
2660
2672
  class Representation < Google::Apis::Core::JsonRepresentation; end
2661
2673
 
@@ -7108,6 +7120,12 @@ module Google
7108
7120
  include Google::Apis::Core::JsonObjectSupport
7109
7121
  end
7110
7122
 
7123
+ class ImageRepositoryFrameIdentifierMultiThumbnailVariant
7124
+ class Representation < Google::Apis::Core::JsonRepresentation; end
7125
+
7126
+ include Google::Apis::Core::JsonObjectSupport
7127
+ end
7128
+
7111
7129
  class ImageRepositoryFrameIdentifierPreviewFrameZeroVariant
7112
7130
  class Representation < Google::Apis::Core::JsonRepresentation; end
7113
7131
 
@@ -9580,6 +9598,12 @@ module Google
9580
9598
  include Google::Apis::Core::JsonObjectSupport
9581
9599
  end
9582
9600
 
9601
+ class NlpSemanticParsingLocalEvChargingStationPaymentConstraint
9602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
9603
+
9604
+ include Google::Apis::Core::JsonObjectSupport
9605
+ end
9606
+
9583
9607
  class NlpSemanticParsingLocalEvChargingStationSpeedConstraint
9584
9608
  class Representation < Google::Apis::Core::JsonRepresentation; end
9585
9609
 
@@ -12424,6 +12448,12 @@ module Google
12424
12448
  include Google::Apis::Core::JsonObjectSupport
12425
12449
  end
12426
12450
 
12451
+ class RepositoryWebrefSimplifiedForwardingDup
12452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
12453
+
12454
+ include Google::Apis::Core::JsonObjectSupport
12455
+ end
12456
+
12427
12457
  class RepositoryWebrefSubSegmentIndex
12428
12458
  class Representation < Google::Apis::Core::JsonRepresentation; end
12429
12459
 
@@ -12832,6 +12862,18 @@ module Google
12832
12862
  include Google::Apis::Core::JsonObjectSupport
12833
12863
  end
12834
12864
 
12865
+ class SafesearchVideoContentSignalsMultiLabelClassificationInfo
12866
+ class Representation < Google::Apis::Core::JsonRepresentation; end
12867
+
12868
+ include Google::Apis::Core::JsonObjectSupport
12869
+ end
12870
+
12871
+ class SafesearchVideoContentSignalsMultiLabelOutput
12872
+ class Representation < Google::Apis::Core::JsonRepresentation; end
12873
+
12874
+ include Google::Apis::Core::JsonObjectSupport
12875
+ end
12876
+
12835
12877
  class ScienceCitation
12836
12878
  class Representation < Google::Apis::Core::JsonRepresentation; end
12837
12879
 
@@ -20161,6 +20203,8 @@ module Google
20161
20203
  property :supports_multi_response, as: 'supportsMultiResponse'
20162
20204
  property :timer, as: 'timer', class: Google::Apis::ContentwarehouseV1::AssistantDevicesPlatformProtoTimerCapability, decorator: Google::Apis::ContentwarehouseV1::AssistantDevicesPlatformProtoTimerCapability::Representation
20163
20205
 
20206
+ property :tts_output, as: 'ttsOutput', class: Google::Apis::ContentwarehouseV1::AssistantDevicesPlatformProtoTtsOutputCapability, decorator: Google::Apis::ContentwarehouseV1::AssistantDevicesPlatformProtoTtsOutputCapability::Representation
20207
+
20164
20208
  end
20165
20209
  end
20166
20210
 
@@ -20367,6 +20411,13 @@ module Google
20367
20411
  end
20368
20412
  end
20369
20413
 
20414
+ class AssistantDevicesPlatformProtoTtsOutputCapability
20415
+ # @private
20416
+ class Representation < Google::Apis::Core::JsonRepresentation
20417
+ property :supports_structured_tts, as: 'supportsStructuredTts'
20418
+ end
20419
+ end
20420
+
20370
20421
  class AssistantDevicesPlatformProtoUnderstandingConfig
20371
20422
  # @private
20372
20423
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -20484,6 +20535,13 @@ module Google
20484
20535
  end
20485
20536
  end
20486
20537
 
20538
+ class AssistantGroundingRankerEndpointGroundingProviderFeatures
20539
+ # @private
20540
+ class Representation < Google::Apis::Core::JsonRepresentation
20541
+ property :is_user_confirmed, as: 'isUserConfirmed'
20542
+ end
20543
+ end
20544
+
20487
20545
  class AssistantGroundingRankerGroundingProviderFeatures
20488
20546
  # @private
20489
20547
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -20491,6 +20549,8 @@ module Google
20491
20549
 
20492
20550
  property :device_grounding_provider_features, as: 'deviceGroundingProviderFeatures', class: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceGroundingProviderFeatures, decorator: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceGroundingProviderFeatures::Representation
20493
20551
 
20552
+ property :endpoint_grounding_provider_features, as: 'endpointGroundingProviderFeatures', class: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerEndpointGroundingProviderFeatures, decorator: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerEndpointGroundingProviderFeatures::Representation
20553
+
20494
20554
  property :media_grounding_provider_features, as: 'mediaGroundingProviderFeatures', class: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerMediaGroundingProviderFeatures, decorator: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerMediaGroundingProviderFeatures::Representation
20495
20555
 
20496
20556
  property :podcast_grounding_provider_features, as: 'podcastGroundingProviderFeatures', class: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerPodcastGroundingProviderFeatures, decorator: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerPodcastGroundingProviderFeatures::Representation
@@ -20566,6 +20626,7 @@ module Google
20566
20626
  property :has_type_semantic_edge, as: 'hasTypeSemanticEdge'
20567
20627
  property :is_cast_video, as: 'isCastVideo'
20568
20628
  property :is_media_search_query_subset_of_entity_name_and_artist, as: 'isMediaSearchQuerySubsetOfEntityNameAndArtist'
20629
+ property :is_most_recent_song_album_ambiguous, as: 'isMostRecentSongAlbumAmbiguous'
20569
20630
  property :is_seed_radio, as: 'isSeedRadio'
20570
20631
  property :is_seed_radio_request, as: 'isSeedRadioRequest'
20571
20632
  property :is_youtube_music_seeking, as: 'isYoutubeMusicSeeking'
@@ -22819,6 +22880,7 @@ module Google
22819
22880
  class DrishtiVesperEncodedThumbnail
22820
22881
  # @private
22821
22882
  class Representation < Google::Apis::Core::JsonRepresentation
22883
+ property :byte_size, :numeric_string => true, as: 'byteSize'
22822
22884
  property :encoding_quality, as: 'encodingQuality'
22823
22885
  property :encoding_type, as: 'encodingType'
22824
22886
  property :height, as: 'height'
@@ -25198,6 +25260,7 @@ module Google
25198
25260
  property :major_position, as: 'majorPosition'
25199
25261
  property :minor_position, as: 'minorPosition'
25200
25262
  property :route_direction, as: 'routeDirection'
25263
+ property :semantic_type, as: 'semanticType'
25201
25264
  property :text, as: 'text', class: Google::Apis::ContentwarehouseV1::GeostoreNameProto, decorator: Google::Apis::ContentwarehouseV1::GeostoreNameProto::Representation
25202
25265
 
25203
25266
  property :type, as: 'type'
@@ -26372,6 +26435,7 @@ module Google
26372
26435
 
26373
26436
  property :timer_state, as: 'timerState', class: Google::Apis::ContentwarehouseV1::GoogleAssistantEmbeddedV1Timers, decorator: Google::Apis::ContentwarehouseV1::GoogleAssistantEmbeddedV1Timers::Representation
26374
26437
 
26438
+ collection :unavailable_settings, as: 'unavailableSettings'
26375
26439
  end
26376
26440
  end
26377
26441
 
@@ -26417,6 +26481,7 @@ module Google
26417
26481
  # @private
26418
26482
  class Representation < Google::Apis::Core::JsonRepresentation
26419
26483
  property :alarm_id, as: 'alarmId'
26484
+ property :alarm_source, as: 'alarmSource'
26420
26485
  property :date_pattern, as: 'datePattern', class: Google::Apis::ContentwarehouseV1::GoogleTypeDate, decorator: Google::Apis::ContentwarehouseV1::GoogleTypeDate::Representation
26421
26486
 
26422
26487
  property :label, as: 'label'
@@ -29649,6 +29714,8 @@ module Google
29649
29714
  class ImageRepositoryFrameIdentifier
29650
29715
  # @private
29651
29716
  class Representation < Google::Apis::Core::JsonRepresentation
29717
+ property :multi_thumbnail_variant, as: 'multiThumbnailVariant', class: Google::Apis::ContentwarehouseV1::ImageRepositoryFrameIdentifierMultiThumbnailVariant, decorator: Google::Apis::ContentwarehouseV1::ImageRepositoryFrameIdentifierMultiThumbnailVariant::Representation
29718
+
29652
29719
  property :preview_frame_zero_variant, as: 'previewFrameZeroVariant', class: Google::Apis::ContentwarehouseV1::ImageRepositoryFrameIdentifierPreviewFrameZeroVariant, decorator: Google::Apis::ContentwarehouseV1::ImageRepositoryFrameIdentifierPreviewFrameZeroVariant::Representation
29653
29720
 
29654
29721
  property :thumbnail_variant, as: 'thumbnailVariant', class: Google::Apis::ContentwarehouseV1::ImageRepositoryFrameIdentifierThumbnailVariant, decorator: Google::Apis::ContentwarehouseV1::ImageRepositoryFrameIdentifierThumbnailVariant::Representation
@@ -29657,6 +29724,12 @@ module Google
29657
29724
  end
29658
29725
  end
29659
29726
 
29727
+ class ImageRepositoryFrameIdentifierMultiThumbnailVariant
29728
+ # @private
29729
+ class Representation < Google::Apis::Core::JsonRepresentation
29730
+ end
29731
+ end
29732
+
29660
29733
  class ImageRepositoryFrameIdentifierPreviewFrameZeroVariant
29661
29734
  # @private
29662
29735
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -31370,6 +31443,8 @@ module Google
31370
31443
 
31371
31444
  property :travel_assistant_travel_doc_classification, as: 'travelAssistantTravelDocClassification', class: Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo, decorator: Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo::Representation
31372
31445
 
31446
+ property :ucp_signal, as: 'ucpSignal', class: Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo, decorator: Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo::Representation
31447
+
31373
31448
  property :udr_converter_document_shopping_data, as: 'udrConverterDocumentShoppingData', class: Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo, decorator: Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo::Representation
31374
31449
 
31375
31450
  property :udr_converter_offer, as: 'udrConverterOffer', class: Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo, decorator: Google::Apis::ContentwarehouseV1::IndexingDocjoinerDataVersionVersionInfo::Representation
@@ -35708,6 +35783,13 @@ module Google
35708
35783
  end
35709
35784
  end
35710
35785
 
35786
+ class NlpSemanticParsingLocalEvChargingStationPaymentConstraint
35787
+ # @private
35788
+ class Representation < Google::Apis::Core::JsonRepresentation
35789
+ property :payment_network_mid, as: 'paymentNetworkMid'
35790
+ end
35791
+ end
35792
+
35711
35793
  class NlpSemanticParsingLocalEvChargingStationSpeedConstraint
35712
35794
  # @private
35713
35795
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -35891,6 +35973,8 @@ module Google
35891
35973
 
35892
35974
  property :evcs_connector_constraint, as: 'evcsConnectorConstraint', class: Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalEvChargingStationConnectorConstraint, decorator: Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalEvChargingStationConnectorConstraint::Representation
35893
35975
 
35976
+ property :evcs_payment_constraint, as: 'evcsPaymentConstraint', class: Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalEvChargingStationPaymentConstraint, decorator: Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalEvChargingStationPaymentConstraint::Representation
35977
+
35894
35978
  property :evcs_speed_constraint, as: 'evcsSpeedConstraint', class: Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalEvChargingStationSpeedConstraint, decorator: Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalEvChargingStationSpeedConstraint::Representation
35895
35979
 
35896
35980
  property :gcid_constraint, as: 'gcidConstraint', class: Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalGcidConstraint, decorator: Google::Apis::ContentwarehouseV1::NlpSemanticParsingLocalGcidConstraint::Representation
@@ -38813,7 +38897,6 @@ module Google
38813
38897
  class PornFlagData
38814
38898
  # @private
38815
38899
  class Representation < Google::Apis::Core::JsonRepresentation
38816
- property :csai_score, as: 'csaiScore'
38817
38900
  collection :debug_info, as: 'debugInfo', class: Google::Apis::ContentwarehouseV1::ImagePornDebugInfo, decorator: Google::Apis::ContentwarehouseV1::ImagePornDebugInfo::Representation
38818
38901
 
38819
38902
  property :final_offensive_score, as: 'finalOffensiveScore'
@@ -39409,7 +39492,6 @@ module Google
39409
39492
  class QualityDniExtendedNewsPreviews
39410
39493
  # @private
39411
39494
  class Representation < Google::Apis::Core::JsonRepresentation
39412
- property :country_code, as: 'countryCode'
39413
39495
  collection :desnippeted_country_code, as: 'desnippetedCountryCode'
39414
39496
  property :policy_criteria_base64, as: 'policyCriteriaBase64'
39415
39497
  property :status, as: 'status'
@@ -39422,6 +39504,7 @@ module Google
39422
39504
  class Representation < Google::Apis::Core::JsonRepresentation
39423
39505
  property :encoded_calibrated_fringe_site_prior_score, as: 'encodedCalibratedFringeSitePriorScore'
39424
39506
  property :encoded_chard_xlq_hoax_prediction, as: 'encodedChardXlqHoaxPrediction'
39507
+ property :encoded_chard_xlq_translated_prediction, as: 'encodedChardXlqTranslatedPrediction'
39425
39508
  property :encoded_chard_xlq_ymyl_prediction, as: 'encodedChardXlqYmylPrediction'
39426
39509
  property :encoded_document_fringe_vulnerability, as: 'encodedDocumentFringeVulnerability'
39427
39510
  property :encoded_entity_prior_score, as: 'encodedEntityPriorScore'
@@ -40187,6 +40270,7 @@ module Google
40187
40270
  class QualityRankembedMustangMustangRankEmbedInfo
40188
40271
  # @private
40189
40272
  class Representation < Google::Apis::Core::JsonRepresentation
40273
+ collection :additional_fixed_point_encodings, as: 'additionalFixedPointEncodings'
40190
40274
  property :compressed_document_embedding, as: 'compressedDocumentEmbedding', class: Google::Apis::ContentwarehouseV1::QualityRankembedMustangMustangRankEmbedInfoCompressedEmbedding, decorator: Google::Apis::ContentwarehouseV1::QualityRankembedMustangMustangRankEmbedInfoCompressedEmbedding::Representation
40191
40275
 
40192
40276
  property :fixed_point_encoding, :base64 => true, as: 'fixedPointEncoding'
@@ -41789,7 +41873,6 @@ module Google
41789
41873
  property :latent_entity, as: 'latentEntity'
41790
41874
  property :mdvc, as: 'mdvc'
41791
41875
  property :property, as: 'property'
41792
- property :resolution, as: 'resolution'
41793
41876
  end
41794
41877
  end
41795
41878
 
@@ -42390,6 +42473,8 @@ module Google
42390
42473
 
42391
42474
  property :document_mention_spans, as: 'documentMentionSpans', class: Google::Apis::ContentwarehouseV1::RepositoryWebrefRefconDocumentMentionSpans, decorator: Google::Apis::ContentwarehouseV1::RepositoryWebrefRefconDocumentMentionSpans::Representation
42392
42475
 
42476
+ collection :forwarding_dups, as: 'forwardingDups', class: Google::Apis::ContentwarehouseV1::RepositoryWebrefSimplifiedForwardingDup, decorator: Google::Apis::ContentwarehouseV1::RepositoryWebrefSimplifiedForwardingDup::Representation
42477
+
42393
42478
  property :matching_metadata, as: 'matchingMetadata', class: Google::Apis::ContentwarehouseV1::RepositoryWebrefPreprocessingUrlMatchingMetadata, decorator: Google::Apis::ContentwarehouseV1::RepositoryWebrefPreprocessingUrlMatchingMetadata::Representation
42394
42479
 
42395
42480
  property :refcon_document_metadata, as: 'refconDocumentMetadata', class: Google::Apis::ContentwarehouseV1::RepositoryWebrefRefconRefconDocumentMetadata, decorator: Google::Apis::ContentwarehouseV1::RepositoryWebrefRefconRefconDocumentMetadata::Representation
@@ -42403,6 +42488,13 @@ module Google
42403
42488
  end
42404
42489
  end
42405
42490
 
42491
+ class RepositoryWebrefSimplifiedForwardingDup
42492
+ # @private
42493
+ class Representation < Google::Apis::Core::JsonRepresentation
42494
+ property :url, as: 'url'
42495
+ end
42496
+ end
42497
+
42406
42498
  class RepositoryWebrefSubSegmentIndex
42407
42499
  # @private
42408
42500
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -43257,6 +43349,8 @@ module Google
43257
43349
  class SafesearchVideoContentSignals
43258
43350
  # @private
43259
43351
  class Representation < Google::Apis::Core::JsonRepresentation
43352
+ property :internal_multi_label_classification, as: 'internalMultiLabelClassification', class: Google::Apis::ContentwarehouseV1::SafesearchVideoContentSignalsMultiLabelClassificationInfo, decorator: Google::Apis::ContentwarehouseV1::SafesearchVideoContentSignalsMultiLabelClassificationInfo::Representation
43353
+
43260
43354
  property :is_abuse_with_high_confidence, as: 'isAbuseWithHighConfidence'
43261
43355
  hash :scores, as: 'scores'
43262
43356
  property :version_tag, as: 'versionTag'
@@ -43265,6 +43359,26 @@ module Google
43265
43359
  end
43266
43360
  end
43267
43361
 
43362
+ class SafesearchVideoContentSignalsMultiLabelClassificationInfo
43363
+ # @private
43364
+ class Representation < Google::Apis::Core::JsonRepresentation
43365
+ property :frame_features_present, as: 'frameFeaturesPresent'
43366
+ property :output, as: 'output', class: Google::Apis::ContentwarehouseV1::SafesearchVideoContentSignalsMultiLabelOutput, decorator: Google::Apis::ContentwarehouseV1::SafesearchVideoContentSignalsMultiLabelOutput::Representation
43367
+
43368
+ end
43369
+ end
43370
+
43371
+ class SafesearchVideoContentSignalsMultiLabelOutput
43372
+ # @private
43373
+ class Representation < Google::Apis::Core::JsonRepresentation
43374
+ property :age_indeterminate, as: 'ageIndeterminate'
43375
+ property :csam, as: 'csam'
43376
+ property :porn, as: 'porn'
43377
+ property :racy, as: 'racy'
43378
+ property :violence, as: 'violence'
43379
+ end
43380
+ end
43381
+
43268
43382
  class ScienceCitation
43269
43383
  # @private
43270
43384
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -44628,6 +44742,7 @@ module Google
44628
44742
  class SocialGraphApiProtoLimitedProfileSettings
44629
44743
  # @private
44630
44744
  class Representation < Google::Apis::Core::JsonRepresentation
44745
+ property :android_messages, as: 'androidMessages'
44631
44746
  property :disable_reason, as: 'disableReason'
44632
44747
  property :gpay_oobe, as: 'gpayOobe'
44633
44748
  property :last_update_time, as: 'lastUpdateTime'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-contentwarehouse_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-02 00:00:00.000000000 Z
11
+ date: 2023-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contentwarehouse_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-contentwarehouse_v1/v0.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contentwarehouse_v1/v0.21.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contentwarehouse_v1
63
63
  post_install_message:
64
64
  rdoc_options: []