google-apis-contentwarehouse_v1 0.15.0 → 0.16.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5726af47dd8e1c472e3f17b648cc99d6e9f82f0e9656a1a604dafb389fa24924
|
4
|
+
data.tar.gz: 37f4202c3837cc5e559e5f8f6158a502f111c0c8cf7a77d9215c714fc447c816
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b229b84f90f5652e7e8c7b82d1c59459c70f5e6145abcbb1a691c25e22e54fbc906aafda44aa54903ed2e814ba5af7f71df571a3bf64e77e98b6803485a8d1f5
|
7
|
+
data.tar.gz: c878924370867f4aaf958fe3228c98c9f67ffc369523664c7499dfe948819745e2aeecb0abaa921ef34632fba44a44ba93877cf353ad57900053948b3192eb22
|
data/CHANGELOG.md
CHANGED
@@ -14792,13 +14792,6 @@ module Google
|
|
14792
14792
|
# @return [Google::Apis::ContentwarehouseV1::AssistantApiSettingsDeviceLogsOptIn]
|
14793
14793
|
attr_accessor :opt_in_status
|
14794
14794
|
|
14795
|
-
# DEPRECATED: Use DeviceCapabilities.OutputRestrictions.personal_data instead.
|
14796
|
-
# Whether the user has enabled payments for this device.
|
14797
|
-
# Corresponds to the JSON property `paymentsEnabled`
|
14798
|
-
# @return [Boolean]
|
14799
|
-
attr_accessor :payments_enabled
|
14800
|
-
alias_method :payments_enabled?, :payments_enabled
|
14801
|
-
|
14802
14795
|
# Metadata about how personalization settings were configured.
|
14803
14796
|
# Corresponds to the JSON property `personalizationMetadata`
|
14804
14797
|
# @return [Google::Apis::ContentwarehouseV1::AssistantApiSettingsPersonalizationMetadata]
|
@@ -14980,7 +14973,6 @@ module Google
|
|
14980
14973
|
@oauth_client_id = args[:oauth_client_id] if args.key?(:oauth_client_id)
|
14981
14974
|
@on_device_app_settings = args[:on_device_app_settings] if args.key?(:on_device_app_settings)
|
14982
14975
|
@opt_in_status = args[:opt_in_status] if args.key?(:opt_in_status)
|
14983
|
-
@payments_enabled = args[:payments_enabled] if args.key?(:payments_enabled)
|
14984
14976
|
@personalization_metadata = args[:personalization_metadata] if args.key?(:personalization_metadata)
|
14985
14977
|
@polite_mode = args[:polite_mode] if args.key?(:polite_mode)
|
14986
14978
|
@postal_code = args[:postal_code] if args.key?(:postal_code)
|
@@ -17651,6 +17643,13 @@ module Google
|
|
17651
17643
|
# @return [Google::Apis::ContentwarehouseV1::AssistantApiSurfacePropertiesExecutionCapabilities]
|
17652
17644
|
attr_accessor :execution_capabilities
|
17653
17645
|
|
17646
|
+
# Indicates if the surface prefers glanceable UI when rendering Assistant
|
17647
|
+
# response. (see go/mobile-dr-hbird-glanceable-comms-cuj for more context).
|
17648
|
+
# Corresponds to the JSON property `prefersGlanceableUi`
|
17649
|
+
# @return [Boolean]
|
17650
|
+
attr_accessor :prefers_glanceable_ui
|
17651
|
+
alias_method :prefers_glanceable_ui?, :prefers_glanceable_ui
|
17652
|
+
|
17654
17653
|
# If this field is unset, the response format is unknown
|
17655
17654
|
# Corresponds to the JSON property `responseDisplayFormat`
|
17656
17655
|
# @return [String]
|
@@ -17670,6 +17669,7 @@ module Google
|
|
17670
17669
|
# Update properties of this object
|
17671
17670
|
def update!(**args)
|
17672
17671
|
@execution_capabilities = args[:execution_capabilities] if args.key?(:execution_capabilities)
|
17672
|
+
@prefers_glanceable_ui = args[:prefers_glanceable_ui] if args.key?(:prefers_glanceable_ui)
|
17673
17673
|
@response_display_format = args[:response_display_format] if args.key?(:response_display_format)
|
17674
17674
|
@supports_multi_response = args[:supports_multi_response] if args.key?(:supports_multi_response)
|
17675
17675
|
end
|
@@ -19634,7 +19634,9 @@ module Google
|
|
19634
19634
|
end
|
19635
19635
|
end
|
19636
19636
|
|
19637
|
-
# Features to be extracted from Device GP for ranking in HGR.
|
19637
|
+
# Features to be extracted from Device GP for ranking in HGR. Each candidate
|
19638
|
+
# from Device GP will be associated with its own DeviceGroundingProviderFeatures.
|
19639
|
+
# Next ID: 5
|
19638
19640
|
class AssistantGroundingRankerDeviceGroundingProviderFeatures
|
19639
19641
|
include Google::Apis::Core::Hashable
|
19640
19642
|
|
@@ -19654,6 +19656,18 @@ module Google
|
|
19654
19656
|
# @return [Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesGovernedDeviceId]
|
19655
19657
|
attr_accessor :device_id
|
19656
19658
|
|
19659
|
+
# Features generated by Device Targeting library (Lumos). See go/hgr-lumos-
|
19660
|
+
# integration and go/lumos-feature-extraction for more details.
|
19661
|
+
# Corresponds to the JSON property `deviceTargetingFeatures`
|
19662
|
+
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeatures]
|
19663
|
+
attr_accessor :device_targeting_features
|
19664
|
+
|
19665
|
+
# Labels tagged by Device Targeting library (Lumos). See go/hgr-lumos-
|
19666
|
+
# integration and go/lumos-feature-extraction for more details.
|
19667
|
+
# Corresponds to the JSON property `deviceTargetingLabels`
|
19668
|
+
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingLabels]
|
19669
|
+
attr_accessor :device_targeting_labels
|
19670
|
+
|
19657
19671
|
def initialize(**args)
|
19658
19672
|
update!(**args)
|
19659
19673
|
end
|
@@ -19661,6 +19675,127 @@ module Google
|
|
19661
19675
|
# Update properties of this object
|
19662
19676
|
def update!(**args)
|
19663
19677
|
@device_id = args[:device_id] if args.key?(:device_id)
|
19678
|
+
@device_targeting_features = args[:device_targeting_features] if args.key?(:device_targeting_features)
|
19679
|
+
@device_targeting_labels = args[:device_targeting_labels] if args.key?(:device_targeting_labels)
|
19680
|
+
end
|
19681
|
+
end
|
19682
|
+
|
19683
|
+
# Features generated by Device Targeting library (Lumos). See go/hgr-lumos-
|
19684
|
+
# integration and go/lumos-feature-extraction for more details.
|
19685
|
+
class AssistantGroundingRankerDeviceTargetingFeatures
|
19686
|
+
include Google::Apis::Core::Hashable
|
19687
|
+
|
19688
|
+
# The properties of the device. They are static and won't change.
|
19689
|
+
# Corresponds to the JSON property `properties`
|
19690
|
+
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeaturesProperties]
|
19691
|
+
attr_accessor :properties
|
19692
|
+
|
19693
|
+
# The states of the device. They are dynamic and may change based on the current
|
19694
|
+
# context.
|
19695
|
+
# Corresponds to the JSON property `states`
|
19696
|
+
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeaturesStates]
|
19697
|
+
attr_accessor :states
|
19698
|
+
|
19699
|
+
def initialize(**args)
|
19700
|
+
update!(**args)
|
19701
|
+
end
|
19702
|
+
|
19703
|
+
# Update properties of this object
|
19704
|
+
def update!(**args)
|
19705
|
+
@properties = args[:properties] if args.key?(:properties)
|
19706
|
+
@states = args[:states] if args.key?(:states)
|
19707
|
+
end
|
19708
|
+
end
|
19709
|
+
|
19710
|
+
# The properties of the device. They are static and won't change.
|
19711
|
+
class AssistantGroundingRankerDeviceTargetingFeaturesProperties
|
19712
|
+
include Google::Apis::Core::Hashable
|
19713
|
+
|
19714
|
+
# The model ID of the device. This should be globally unique across
|
19715
|
+
# manufacturers/OEMs.
|
19716
|
+
# Corresponds to the JSON property `deviceModelId`
|
19717
|
+
# @return [String]
|
19718
|
+
attr_accessor :device_model_id
|
19719
|
+
|
19720
|
+
# Indicate whether the device is owned by the user who is speaking.
|
19721
|
+
# Corresponds to the JSON property `isOwnedBySpeaker`
|
19722
|
+
# @return [Boolean]
|
19723
|
+
attr_accessor :is_owned_by_speaker
|
19724
|
+
alias_method :is_owned_by_speaker?, :is_owned_by_speaker
|
19725
|
+
|
19726
|
+
def initialize(**args)
|
19727
|
+
update!(**args)
|
19728
|
+
end
|
19729
|
+
|
19730
|
+
# Update properties of this object
|
19731
|
+
def update!(**args)
|
19732
|
+
@device_model_id = args[:device_model_id] if args.key?(:device_model_id)
|
19733
|
+
@is_owned_by_speaker = args[:is_owned_by_speaker] if args.key?(:is_owned_by_speaker)
|
19734
|
+
end
|
19735
|
+
end
|
19736
|
+
|
19737
|
+
# The states of the device. They are dynamic and may change based on the current
|
19738
|
+
# context.
|
19739
|
+
class AssistantGroundingRankerDeviceTargetingFeaturesStates
|
19740
|
+
include Google::Apis::Core::Hashable
|
19741
|
+
|
19742
|
+
# The distance of the device relative to others that hear the user's OKG.
|
19743
|
+
# Timestamp of when the device was last used. Should correspond to when the
|
19744
|
+
# AssistantRequestParams (in ASSISTANT_SNAPSHOT corpus) were last written for
|
19745
|
+
# this device.
|
19746
|
+
# Corresponds to the JSON property `distance`
|
19747
|
+
# @return [String]
|
19748
|
+
attr_accessor :distance
|
19749
|
+
|
19750
|
+
# Indicate whether the device is docked on a base.
|
19751
|
+
# Corresponds to the JSON property `isDocked`
|
19752
|
+
# @return [Boolean]
|
19753
|
+
attr_accessor :is_docked
|
19754
|
+
alias_method :is_docked?, :is_docked
|
19755
|
+
|
19756
|
+
# Indicate whether the device is locked.
|
19757
|
+
# Corresponds to the JSON property `isLocked`
|
19758
|
+
# @return [Boolean]
|
19759
|
+
attr_accessor :is_locked
|
19760
|
+
alias_method :is_locked?, :is_locked
|
19761
|
+
|
19762
|
+
# Indicate whether the device is tethered to another device.
|
19763
|
+
# Corresponds to the JSON property `isTethered`
|
19764
|
+
# @return [Boolean]
|
19765
|
+
attr_accessor :is_tethered
|
19766
|
+
alias_method :is_tethered?, :is_tethered
|
19767
|
+
|
19768
|
+
def initialize(**args)
|
19769
|
+
update!(**args)
|
19770
|
+
end
|
19771
|
+
|
19772
|
+
# Update properties of this object
|
19773
|
+
def update!(**args)
|
19774
|
+
@distance = args[:distance] if args.key?(:distance)
|
19775
|
+
@is_docked = args[:is_docked] if args.key?(:is_docked)
|
19776
|
+
@is_locked = args[:is_locked] if args.key?(:is_locked)
|
19777
|
+
@is_tethered = args[:is_tethered] if args.key?(:is_tethered)
|
19778
|
+
end
|
19779
|
+
end
|
19780
|
+
|
19781
|
+
# Labels tagged by Device Targeting library (Lumos). See go/hgr-lumos-
|
19782
|
+
# integration and go/lumos-feature-extraction for more details.
|
19783
|
+
class AssistantGroundingRankerDeviceTargetingLabels
|
19784
|
+
include Google::Apis::Core::Hashable
|
19785
|
+
|
19786
|
+
# Indicate whether the device is selected by Lumos as the target device.
|
19787
|
+
# Corresponds to the JSON property `isSelectedByLumos`
|
19788
|
+
# @return [Boolean]
|
19789
|
+
attr_accessor :is_selected_by_lumos
|
19790
|
+
alias_method :is_selected_by_lumos?, :is_selected_by_lumos
|
19791
|
+
|
19792
|
+
def initialize(**args)
|
19793
|
+
update!(**args)
|
19794
|
+
end
|
19795
|
+
|
19796
|
+
# Update properties of this object
|
19797
|
+
def update!(**args)
|
19798
|
+
@is_selected_by_lumos = args[:is_selected_by_lumos] if args.key?(:is_selected_by_lumos)
|
19664
19799
|
end
|
19665
19800
|
end
|
19666
19801
|
|
@@ -19673,7 +19808,9 @@ module Google
|
|
19673
19808
|
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerContactGroundingProviderFeatures]
|
19674
19809
|
attr_accessor :contact_grounding_provider_features
|
19675
19810
|
|
19676
|
-
# Features to be extracted from Device GP for ranking in HGR.
|
19811
|
+
# Features to be extracted from Device GP for ranking in HGR. Each candidate
|
19812
|
+
# from Device GP will be associated with its own DeviceGroundingProviderFeatures.
|
19813
|
+
# Next ID: 5
|
19677
19814
|
# Corresponds to the JSON property `deviceGroundingProviderFeatures`
|
19678
19815
|
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceGroundingProviderFeatures]
|
19679
19816
|
attr_accessor :device_grounding_provider_features
|
@@ -19688,7 +19825,7 @@ module Google
|
|
19688
19825
|
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerPodcastGroundingProviderFeatures]
|
19689
19826
|
attr_accessor :podcast_grounding_provider_features
|
19690
19827
|
|
19691
|
-
# Features to be extracted from Provider GP for ranking in HGR. Next ID:
|
19828
|
+
# Features to be extracted from Provider GP for ranking in HGR. Next ID: 6
|
19692
19829
|
# Corresponds to the JSON property `providerGroundingProviderFeatures`
|
19693
19830
|
# @return [Google::Apis::ContentwarehouseV1::AssistantGroundingRankerProviderGroundingProviderFeatures]
|
19694
19831
|
attr_accessor :provider_grounding_provider_features
|
@@ -20004,7 +20141,7 @@ module Google
|
|
20004
20141
|
end
|
20005
20142
|
end
|
20006
20143
|
|
20007
|
-
# Features to be extracted from Provider GP for ranking in HGR. Next ID:
|
20144
|
+
# Features to be extracted from Provider GP for ranking in HGR. Next ID: 6
|
20008
20145
|
class AssistantGroundingRankerProviderGroundingProviderFeatures
|
20009
20146
|
include Google::Apis::Core::Hashable
|
20010
20147
|
|
@@ -20015,12 +20152,17 @@ module Google
|
|
20015
20152
|
attr_accessor :is_in_app_provider
|
20016
20153
|
alias_method :is_in_app_provider?, :is_in_app_provider
|
20017
20154
|
|
20018
|
-
#
|
20019
|
-
# can be associated with multiple clusters. PRR specific feature.
|
20155
|
+
# This field is deprecated in favor of the integer field below.
|
20020
20156
|
# Corresponds to the JSON property `providerClusterIdDeprecated`
|
20021
20157
|
# @return [Array<String>]
|
20022
20158
|
attr_accessor :provider_cluster_id_deprecated
|
20023
20159
|
|
20160
|
+
# Cluster IDs for the provider. This field is repeated because some providers
|
20161
|
+
# can be associated with multiple clusters. PRR specific feature.
|
20162
|
+
# Corresponds to the JSON property `providerClusterIds`
|
20163
|
+
# @return [Array<Fixnum>]
|
20164
|
+
attr_accessor :provider_cluster_ids
|
20165
|
+
|
20024
20166
|
# Identifier used to represent a single application (a.k.a. provider). This
|
20025
20167
|
# model represents the surface-agnostic counterpart for assistant.api.core_types.
|
20026
20168
|
# Provider. E.g. it should avoid directly using package names for Android,
|
@@ -20056,6 +20198,7 @@ module Google
|
|
20056
20198
|
def update!(**args)
|
20057
20199
|
@is_in_app_provider = args[:is_in_app_provider] if args.key?(:is_in_app_provider)
|
20058
20200
|
@provider_cluster_id_deprecated = args[:provider_cluster_id_deprecated] if args.key?(:provider_cluster_id_deprecated)
|
20201
|
+
@provider_cluster_ids = args[:provider_cluster_ids] if args.key?(:provider_cluster_ids)
|
20059
20202
|
@provider_id = args[:provider_id] if args.key?(:provider_id)
|
20060
20203
|
@psl_score = args[:psl_score] if args.key?(:psl_score)
|
20061
20204
|
end
|
@@ -54419,7 +54562,7 @@ module Google
|
|
54419
54562
|
|
54420
54563
|
# This proto holds IPTC metadata. http://www.iptc.org/cms/site/index.html?
|
54421
54564
|
# channel=CH0099 Proto field name is same with IPTC property name except which
|
54422
|
-
# is clearly stated. Next Id:
|
54565
|
+
# is clearly stated. Next Id: 64
|
54423
54566
|
class ImageExifIptcMetadata
|
54424
54567
|
include Google::Apis::Core::Hashable
|
54425
54568
|
|
@@ -54473,6 +54616,11 @@ module Google
|
|
54473
54616
|
# @return [String]
|
54474
54617
|
attr_accessor :description
|
54475
54618
|
|
54619
|
+
# See go/gi-annotations-indexing for more information.
|
54620
|
+
# Corresponds to the JSON property `digitalSourceType`
|
54621
|
+
# @return [String]
|
54622
|
+
attr_accessor :digital_source_type
|
54623
|
+
|
54476
54624
|
#
|
54477
54625
|
# Corresponds to the JSON property `event`
|
54478
54626
|
# @return [String]
|
@@ -54564,6 +54712,7 @@ module Google
|
|
54564
54712
|
@date_expired = args[:date_expired] if args.key?(:date_expired)
|
54565
54713
|
@date_released = args[:date_released] if args.key?(:date_released)
|
54566
54714
|
@description = args[:description] if args.key?(:description)
|
54715
|
+
@digital_source_type = args[:digital_source_type] if args.key?(:digital_source_type)
|
54567
54716
|
@event = args[:event] if args.key?(:event)
|
54568
54717
|
@headline = args[:headline] if args.key?(:headline)
|
54569
54718
|
@image_supplier = args[:image_supplier] if args.key?(:image_supplier)
|
@@ -54975,7 +55124,7 @@ module Google
|
|
54975
55124
|
|
54976
55125
|
# This proto holds IPTC metadata. http://www.iptc.org/cms/site/index.html?
|
54977
55126
|
# channel=CH0099 Proto field name is same with IPTC property name except which
|
54978
|
-
# is clearly stated. Next Id:
|
55127
|
+
# is clearly stated. Next Id: 64
|
54979
55128
|
# Corresponds to the JSON property `iptc`
|
54980
55129
|
# @return [Google::Apis::ContentwarehouseV1::ImageExifIptcMetadata]
|
54981
55130
|
attr_accessor :iptc
|
@@ -55908,7 +56057,7 @@ module Google
|
|
55908
56057
|
# @return [Google::Apis::ContentwarehouseV1::ImageRepositoryAmarnaCloudSpeechSignals]
|
55909
56058
|
attr_accessor :s3_asr
|
55910
56059
|
|
55911
|
-
# Next Tag:
|
56060
|
+
# Next Tag: 10
|
55912
56061
|
# Corresponds to the JSON property `s3LanguageIdentification`
|
55913
56062
|
# @return [Google::Apis::ContentwarehouseV1::ImageRepositoryS3LangIdSignals]
|
55914
56063
|
attr_accessor :s3_language_identification
|
@@ -56306,7 +56455,60 @@ module Google
|
|
56306
56455
|
end
|
56307
56456
|
end
|
56308
56457
|
|
56309
|
-
#
|
56458
|
+
# For debugging only.
|
56459
|
+
class ImageRepositoryS3LangIdDebuggingInfo
|
56460
|
+
include Google::Apis::Core::Hashable
|
56461
|
+
|
56462
|
+
# Audio input processing cap.
|
56463
|
+
# Corresponds to the JSON property `audioInputCap`
|
56464
|
+
# @return [String]
|
56465
|
+
attr_accessor :audio_input_cap
|
56466
|
+
|
56467
|
+
# Number of failed segments. Successful segments are stored in `
|
56468
|
+
# langid_signals_for_segment`.
|
56469
|
+
# Corresponds to the JSON property `failedSegments`
|
56470
|
+
# @return [Fixnum]
|
56471
|
+
attr_accessor :failed_segments
|
56472
|
+
|
56473
|
+
# Number of processed segments.
|
56474
|
+
# Corresponds to the JSON property `processedSegments`
|
56475
|
+
# @return [Fixnum]
|
56476
|
+
attr_accessor :processed_segments
|
56477
|
+
|
56478
|
+
# Duration of each segment (except for the last one if capped).
|
56479
|
+
# Corresponds to the JSON property `segmentDuration`
|
56480
|
+
# @return [String]
|
56481
|
+
attr_accessor :segment_duration
|
56482
|
+
|
56483
|
+
# If >1, every N segment is processed.
|
56484
|
+
# Corresponds to the JSON property `segmentStride`
|
56485
|
+
# @return [Fixnum]
|
56486
|
+
attr_accessor :segment_stride
|
56487
|
+
|
56488
|
+
# A general-purpose buffer to contain sequences of samples. When representing a
|
56489
|
+
# waveform, the samples are the scalar values of an acoustic signal. When
|
56490
|
+
# representing a sequence of feature frames, the samples are vector-valued
|
56491
|
+
# frames.
|
56492
|
+
# Corresponds to the JSON property `waveHeader`
|
56493
|
+
# @return [Google::Apis::ContentwarehouseV1::SpeechWaveHeader]
|
56494
|
+
attr_accessor :wave_header
|
56495
|
+
|
56496
|
+
def initialize(**args)
|
56497
|
+
update!(**args)
|
56498
|
+
end
|
56499
|
+
|
56500
|
+
# Update properties of this object
|
56501
|
+
def update!(**args)
|
56502
|
+
@audio_input_cap = args[:audio_input_cap] if args.key?(:audio_input_cap)
|
56503
|
+
@failed_segments = args[:failed_segments] if args.key?(:failed_segments)
|
56504
|
+
@processed_segments = args[:processed_segments] if args.key?(:processed_segments)
|
56505
|
+
@segment_duration = args[:segment_duration] if args.key?(:segment_duration)
|
56506
|
+
@segment_stride = args[:segment_stride] if args.key?(:segment_stride)
|
56507
|
+
@wave_header = args[:wave_header] if args.key?(:wave_header)
|
56508
|
+
end
|
56509
|
+
end
|
56510
|
+
|
56511
|
+
# Next Tag: 10
|
56310
56512
|
class ImageRepositoryS3LangIdSignals
|
56311
56513
|
include Google::Apis::Core::Hashable
|
56312
56514
|
|
@@ -56316,6 +56518,11 @@ module Google
|
|
56316
56518
|
attr_accessor :contains_speech
|
56317
56519
|
alias_method :contains_speech?, :contains_speech
|
56318
56520
|
|
56521
|
+
# For debugging only.
|
56522
|
+
# Corresponds to the JSON property `debuggingInfo`
|
56523
|
+
# @return [Google::Apis::ContentwarehouseV1::ImageRepositoryS3LangIdDebuggingInfo]
|
56524
|
+
attr_accessor :debugging_info
|
56525
|
+
|
56319
56526
|
#
|
56320
56527
|
# Corresponds to the JSON property `endSec`
|
56321
56528
|
# @return [Fixnum]
|
@@ -56362,6 +56569,7 @@ module Google
|
|
56362
56569
|
# Update properties of this object
|
56363
56570
|
def update!(**args)
|
56364
56571
|
@contains_speech = args[:contains_speech] if args.key?(:contains_speech)
|
56572
|
+
@debugging_info = args[:debugging_info] if args.key?(:debugging_info)
|
56365
56573
|
@end_sec = args[:end_sec] if args.key?(:end_sec)
|
56366
56574
|
@langid_result = args[:langid_result] if args.key?(:langid_result)
|
56367
56575
|
@language_identification = args[:language_identification] if args.key?(:language_identification)
|
@@ -81061,7 +81269,7 @@ module Google
|
|
81061
81269
|
class NlpSemanticParsingPersonalIntelligenceEntity
|
81062
81270
|
include Google::Apis::Core::Hashable
|
81063
81271
|
|
81064
|
-
# Next ID:
|
81272
|
+
# Next ID: 29
|
81065
81273
|
# Corresponds to the JSON property `airlineConfig`
|
81066
81274
|
# @return [Google::Apis::ContentwarehouseV1::TravelFlightsAirlineConfig]
|
81067
81275
|
attr_accessor :airline_config
|
@@ -100058,7 +100266,8 @@ module Google
|
|
100058
100266
|
attr_accessor :is_cluster_global
|
100059
100267
|
alias_method :is_cluster_global?, :is_cluster_global
|
100060
100268
|
|
100061
|
-
#
|
100269
|
+
# Documented at: google3/repository/webref/enricher/core/data/scored_entity_name.
|
100270
|
+
# h
|
100062
100271
|
# Corresponds to the JSON property `isDropped`
|
100063
100272
|
# @return [Boolean]
|
100064
100273
|
attr_accessor :is_dropped
|
@@ -100074,7 +100283,8 @@ module Google
|
|
100074
100283
|
attr_accessor :is_matchless_result_context
|
100075
100284
|
alias_method :is_matchless_result_context?, :is_matchless_result_context
|
100076
100285
|
|
100077
|
-
#
|
100286
|
+
# Documented at: google3/repository/webref/enricher/core/data/scored_entity_name.
|
100287
|
+
# h
|
100078
100288
|
# Corresponds to the JSON property `isPruned`
|
100079
100289
|
# @return [Boolean]
|
100080
100290
|
attr_accessor :is_pruned
|
@@ -100659,7 +100869,8 @@ module Google
|
|
100659
100869
|
# @return [Array<Google::Apis::ContentwarehouseV1::RepositoryWebrefGeoMetadataProtoAddressSynonym>]
|
100660
100870
|
attr_accessor :address_synonyms
|
100661
100871
|
|
100662
|
-
# Area in km^2 of the feature if the feature has polygon.
|
100872
|
+
# Area in km^2 of the feature if the feature has polygon. Only set by
|
100873
|
+
# qrefmetadata.
|
100663
100874
|
# Corresponds to the JSON property `areaKm2`
|
100664
100875
|
# @return [Float]
|
100665
100876
|
attr_accessor :area_km2
|
@@ -101031,12 +101242,6 @@ module Google
|
|
101031
101242
|
# @return [Array<Google::Apis::ContentwarehouseV1::RepositoryWebrefLatentEntity>]
|
101032
101243
|
attr_accessor :latent_entity
|
101033
101244
|
|
101034
|
-
# List of broader MIDs from the Sports Hierarchy. Named incorrectly, it does not
|
101035
|
-
# contain all latent mids.
|
101036
|
-
# Corresponds to the JSON property `latentMid`
|
101037
|
-
# @return [Array<String>]
|
101038
|
-
attr_accessor :latent_mid
|
101039
|
-
|
101040
101245
|
def initialize(**args)
|
101041
101246
|
update!(**args)
|
101042
101247
|
end
|
@@ -101044,7 +101249,6 @@ module Google
|
|
101044
101249
|
# Update properties of this object
|
101045
101250
|
def update!(**args)
|
101046
101251
|
@latent_entity = args[:latent_entity] if args.key?(:latent_entity)
|
101047
|
-
@latent_mid = args[:latent_mid] if args.key?(:latent_mid)
|
101048
101252
|
end
|
101049
101253
|
end
|
101050
101254
|
|
@@ -115083,6 +115287,125 @@ module Google
|
|
115083
115287
|
end
|
115084
115288
|
end
|
115085
115289
|
|
115290
|
+
# A general-purpose buffer to contain sequences of samples. When representing a
|
115291
|
+
# waveform, the samples are the scalar values of an acoustic signal. When
|
115292
|
+
# representing a sequence of feature frames, the samples are vector-valued
|
115293
|
+
# frames.
|
115294
|
+
class SpeechWaveHeader
|
115295
|
+
include Google::Apis::Core::Hashable
|
115296
|
+
|
115297
|
+
# Size of atomic type, in bytes.
|
115298
|
+
# Corresponds to the JSON property `atomicSize`
|
115299
|
+
# @return [Fixnum]
|
115300
|
+
attr_accessor :atomic_size
|
115301
|
+
|
115302
|
+
# Numeric type of data elements (if generic)
|
115303
|
+
# Corresponds to the JSON property `atomicType`
|
115304
|
+
# @return [String]
|
115305
|
+
attr_accessor :atomic_type
|
115306
|
+
|
115307
|
+
# For compressed signals with fixed bitrate, this is the number of bits per
|
115308
|
+
# second.
|
115309
|
+
# Corresponds to the JSON property `bitRate`
|
115310
|
+
# @return [Float]
|
115311
|
+
attr_accessor :bit_rate
|
115312
|
+
|
115313
|
+
# Byte-order of the atomic_type When atomic_type == "char", byte_order should be
|
115314
|
+
# always "1". When atomic_type == "int16", byte_order can be either "01" (Intel)
|
115315
|
+
# or "10" (Motorola). Byte order should default to Intel when in question.
|
115316
|
+
# Corresponds to the JSON property `byteOrder`
|
115317
|
+
# @return [String]
|
115318
|
+
attr_accessor :byte_order
|
115319
|
+
|
115320
|
+
# Typically contains the parameter settings of the program that created the file.
|
115321
|
+
# Corresponds to the JSON property `details`
|
115322
|
+
# @return [String]
|
115323
|
+
attr_accessor :details
|
115324
|
+
|
115325
|
+
# Array dimensions for a single sample. * For audio samples: * mono: rank==0,
|
115326
|
+
# dimension==[1] * stereo: rank==0, dimension==[2] (samples are interleaved) *
|
115327
|
+
# For typical ASR features representing energy, 12 MFCC coefficients, and first
|
115328
|
+
# and second derivatives: * rank==1 and dimension==[39].
|
115329
|
+
# Corresponds to the JSON property `dimension`
|
115330
|
+
# @return [Array<Fixnum>]
|
115331
|
+
attr_accessor :dimension
|
115332
|
+
|
115333
|
+
# The number of atomic elements stored per sample. This is the product of all
|
115334
|
+
# the entries in the dimension array. Written "out of order" in this file to be
|
115335
|
+
# close to the dimension field, from which it can always be computed.
|
115336
|
+
# Corresponds to the JSON property `elementsPerSample`
|
115337
|
+
# @return [Fixnum]
|
115338
|
+
attr_accessor :elements_per_sample
|
115339
|
+
|
115340
|
+
# The rank of each sample. For a waveform (signals that are sequences of scalar
|
115341
|
+
# values), this is 0. For vector-valued signals (used as signals containing
|
115342
|
+
# sequences of features, for example), this is 1. scalar=0, vector=1, matrix=2, .
|
115343
|
+
# ..
|
115344
|
+
# Corresponds to the JSON property `rank`
|
115345
|
+
# @return [Fixnum]
|
115346
|
+
attr_accessor :rank
|
115347
|
+
|
115348
|
+
# Sample encoding. Can be "ulaw".
|
115349
|
+
# Corresponds to the JSON property `sampleCoding`
|
115350
|
+
# @return [String]
|
115351
|
+
attr_accessor :sample_coding
|
115352
|
+
|
115353
|
+
# For periodic signals, this is the number samples per second, else 0.0
|
115354
|
+
# Corresponds to the JSON property `sampleRate`
|
115355
|
+
# @return [Float]
|
115356
|
+
attr_accessor :sample_rate
|
115357
|
+
|
115358
|
+
# Size of a single sample, in bytes.
|
115359
|
+
# Corresponds to the JSON property `sampleSize`
|
115360
|
+
# @return [Fixnum]
|
115361
|
+
attr_accessor :sample_size
|
115362
|
+
|
115363
|
+
# Structure of each sample. "generic" means that the samples are multi-
|
115364
|
+
# dimensional arrays of atomic_type with the specified rank.
|
115365
|
+
# Corresponds to the JSON property `sampleType`
|
115366
|
+
# @return [String]
|
115367
|
+
attr_accessor :sample_type
|
115368
|
+
|
115369
|
+
# Time origin for the signal, in seconds. Warning: Using float can result in
|
115370
|
+
# rounding errors: float's smallest distance between two representable values (1
|
115371
|
+
# ULP; see https://en.wikipedia.org/wiki/Unit_in_the_last_place) between 1024
|
115372
|
+
# and 2048 (representing ~17-34 min) is 0.0001220703125, what is approximately
|
115373
|
+
# double of what we need to represent 1 sample in a 16 kHz sample rate audio.
|
115374
|
+
# The error is double in the 2048s-4096s, 4x in the 4096s-8192s range etc.
|
115375
|
+
# Higher sample rate encounters rounding errors earlier: with 96 kHz, rounding
|
115376
|
+
# errors start at ~2 min (128s).
|
115377
|
+
# Corresponds to the JSON property `startTime`
|
115378
|
+
# @return [Float]
|
115379
|
+
attr_accessor :start_time
|
115380
|
+
|
115381
|
+
# The number of samples in file. Can be inferred for generics from file size.
|
115382
|
+
# Corresponds to the JSON property `totalSamples`
|
115383
|
+
# @return [Fixnum]
|
115384
|
+
attr_accessor :total_samples
|
115385
|
+
|
115386
|
+
def initialize(**args)
|
115387
|
+
update!(**args)
|
115388
|
+
end
|
115389
|
+
|
115390
|
+
# Update properties of this object
|
115391
|
+
def update!(**args)
|
115392
|
+
@atomic_size = args[:atomic_size] if args.key?(:atomic_size)
|
115393
|
+
@atomic_type = args[:atomic_type] if args.key?(:atomic_type)
|
115394
|
+
@bit_rate = args[:bit_rate] if args.key?(:bit_rate)
|
115395
|
+
@byte_order = args[:byte_order] if args.key?(:byte_order)
|
115396
|
+
@details = args[:details] if args.key?(:details)
|
115397
|
+
@dimension = args[:dimension] if args.key?(:dimension)
|
115398
|
+
@elements_per_sample = args[:elements_per_sample] if args.key?(:elements_per_sample)
|
115399
|
+
@rank = args[:rank] if args.key?(:rank)
|
115400
|
+
@sample_coding = args[:sample_coding] if args.key?(:sample_coding)
|
115401
|
+
@sample_rate = args[:sample_rate] if args.key?(:sample_rate)
|
115402
|
+
@sample_size = args[:sample_size] if args.key?(:sample_size)
|
115403
|
+
@sample_type = args[:sample_type] if args.key?(:sample_type)
|
115404
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
115405
|
+
@total_samples = args[:total_samples] if args.key?(:total_samples)
|
115406
|
+
end
|
115407
|
+
end
|
115408
|
+
|
115086
115409
|
# go/entity-authority NB: currently all facts associated with Authority Feedback
|
115087
115410
|
# are externally traceable to the requests from which they originate.
|
115088
115411
|
class StorageGraphBfgAuthorityFeedbackMetadata
|
@@ -116516,7 +116839,7 @@ module Google
|
|
116516
116839
|
end
|
116517
116840
|
end
|
116518
116841
|
|
116519
|
-
# Next ID:
|
116842
|
+
# Next ID: 29
|
116520
116843
|
class TravelFlightsAirlineConfig
|
116521
116844
|
include Google::Apis::Core::Hashable
|
116522
116845
|
|
@@ -116565,6 +116888,11 @@ module Google
|
|
116565
116888
|
# @return [Array<String>]
|
116566
116889
|
attr_accessor :fqtv_partner_code
|
116567
116890
|
|
116891
|
+
#
|
116892
|
+
# Corresponds to the JSON property `greenFaresInfo`
|
116893
|
+
# @return [Array<Google::Apis::ContentwarehouseV1::TravelFlightsAirlineConfigGreenFaresInfo>]
|
116894
|
+
attr_accessor :green_fares_info
|
116895
|
+
|
116568
116896
|
# Note that some iata_codes are reused (`dup_flag` field). For details,
|
116569
116897
|
# including how to resolve collisions for airlines shown in Google Flights, see:
|
116570
116898
|
# go/controlled-duplicate go/flights-data/airlines#resolving-iata-code-
|
@@ -116614,6 +116942,11 @@ module Google
|
|
116614
116942
|
# @return [Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto]
|
116615
116943
|
attr_accessor :short_names
|
116616
116944
|
|
116945
|
+
# URLs for airlines' sustainability programs.
|
116946
|
+
# Corresponds to the JSON property `sustainabilityProgramUrls`
|
116947
|
+
# @return [Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto]
|
116948
|
+
attr_accessor :sustainability_program_urls
|
116949
|
+
|
116617
116950
|
#
|
116618
116951
|
# Corresponds to the JSON property `type`
|
116619
116952
|
# @return [String]
|
@@ -116643,6 +116976,7 @@ module Google
|
|
116643
116976
|
@dup_flag = args[:dup_flag] if args.key?(:dup_flag)
|
116644
116977
|
@fare_family_urls = args[:fare_family_urls] if args.key?(:fare_family_urls)
|
116645
116978
|
@fqtv_partner_code = args[:fqtv_partner_code] if args.key?(:fqtv_partner_code)
|
116979
|
+
@green_fares_info = args[:green_fares_info] if args.key?(:green_fares_info)
|
116646
116980
|
@iata_code = args[:iata_code] if args.key?(:iata_code)
|
116647
116981
|
@icao_code = args[:icao_code] if args.key?(:icao_code)
|
116648
116982
|
@innovata_code = args[:innovata_code] if args.key?(:innovata_code)
|
@@ -116652,6 +116986,7 @@ module Google
|
|
116652
116986
|
@passenger_assistance_urls = args[:passenger_assistance_urls] if args.key?(:passenger_assistance_urls)
|
116653
116987
|
@popularity = args[:popularity] if args.key?(:popularity)
|
116654
116988
|
@short_names = args[:short_names] if args.key?(:short_names)
|
116989
|
+
@sustainability_program_urls = args[:sustainability_program_urls] if args.key?(:sustainability_program_urls)
|
116655
116990
|
@type = args[:type] if args.key?(:type)
|
116656
116991
|
@urls = args[:urls] if args.key?(:urls)
|
116657
116992
|
@waiver_summary_urls = args[:waiver_summary_urls] if args.key?(:waiver_summary_urls)
|
@@ -116708,6 +117043,49 @@ module Google
|
|
116708
117043
|
end
|
116709
117044
|
end
|
116710
117045
|
|
117046
|
+
#
|
117047
|
+
class TravelFlightsAirlineConfigGreenFaresInfo
|
117048
|
+
include Google::Apis::Core::Hashable
|
117049
|
+
|
117050
|
+
#
|
117051
|
+
# Corresponds to the JSON property `bonusMilesProgramName`
|
117052
|
+
# @return [String]
|
117053
|
+
attr_accessor :bonus_miles_program_name
|
117054
|
+
|
117055
|
+
#
|
117056
|
+
# Corresponds to the JSON property `bonusMilesQuantity`
|
117057
|
+
# @return [Fixnum]
|
117058
|
+
attr_accessor :bonus_miles_quantity
|
117059
|
+
|
117060
|
+
#
|
117061
|
+
# Corresponds to the JSON property `bonusMilesQuantityType`
|
117062
|
+
# @return [String]
|
117063
|
+
attr_accessor :bonus_miles_quantity_type
|
117064
|
+
|
117065
|
+
#
|
117066
|
+
# Corresponds to the JSON property `bonusMilesType`
|
117067
|
+
# @return [String]
|
117068
|
+
attr_accessor :bonus_miles_type
|
117069
|
+
|
117070
|
+
#
|
117071
|
+
# Corresponds to the JSON property `contributionFraming`
|
117072
|
+
# @return [String]
|
117073
|
+
attr_accessor :contribution_framing
|
117074
|
+
|
117075
|
+
def initialize(**args)
|
117076
|
+
update!(**args)
|
117077
|
+
end
|
117078
|
+
|
117079
|
+
# Update properties of this object
|
117080
|
+
def update!(**args)
|
117081
|
+
@bonus_miles_program_name = args[:bonus_miles_program_name] if args.key?(:bonus_miles_program_name)
|
117082
|
+
@bonus_miles_quantity = args[:bonus_miles_quantity] if args.key?(:bonus_miles_quantity)
|
117083
|
+
@bonus_miles_quantity_type = args[:bonus_miles_quantity_type] if args.key?(:bonus_miles_quantity_type)
|
117084
|
+
@bonus_miles_type = args[:bonus_miles_type] if args.key?(:bonus_miles_type)
|
117085
|
+
@contribution_framing = args[:contribution_framing] if args.key?(:contribution_framing)
|
117086
|
+
end
|
117087
|
+
end
|
117088
|
+
|
116711
117089
|
# Airline contact info grouped by language. The language locale subcode will
|
116712
117090
|
# determine the country.
|
116713
117091
|
class TravelFlightsAirlineConfigLocalizedContactInfo
|
@@ -117376,7 +117754,7 @@ module Google
|
|
117376
117754
|
# FetchReplyData. This data is meant to be logged, but not sent back in a fetch
|
117377
117755
|
# reply (it should be added *after* the reply is prepared). Use
|
117378
117756
|
# FetchResponsePreparatorImpl::AddTrawlerPrivateDataToFetchReplyData to add. See
|
117379
|
-
# also the comment in fetch_response_preparator_impl.cc. Next Tag:
|
117757
|
+
# also the comment in fetch_response_preparator_impl.cc. Next Tag: 45
|
117380
117758
|
# Corresponds to the JSON property `TrawlerPrivate`
|
117381
117759
|
# @return [Google::Apis::ContentwarehouseV1::TrawlerTrawlerPrivateFetchReplyData]
|
117382
117760
|
attr_accessor :trawler_private
|
@@ -118635,7 +119013,7 @@ module Google
|
|
118635
119013
|
# FetchReplyData. This data is meant to be logged, but not sent back in a fetch
|
118636
119014
|
# reply (it should be added *after* the reply is prepared). Use
|
118637
119015
|
# FetchResponsePreparatorImpl::AddTrawlerPrivateDataToFetchReplyData to add. See
|
118638
|
-
# also the comment in fetch_response_preparator_impl.cc. Next Tag:
|
119016
|
+
# also the comment in fetch_response_preparator_impl.cc. Next Tag: 45
|
118639
119017
|
class TrawlerTrawlerPrivateFetchReplyData
|
118640
119018
|
include Google::Apis::Core::Hashable
|
118641
119019
|
|
@@ -118832,6 +119210,12 @@ module Google
|
|
118832
119210
|
attr_accessor :is_bidi_streaming_fetch
|
118833
119211
|
alias_method :is_bidi_streaming_fetch?, :is_bidi_streaming_fetch
|
118834
119212
|
|
119213
|
+
#
|
119214
|
+
# Corresponds to the JSON property `isDedicatedHostload`
|
119215
|
+
# @return [Boolean]
|
119216
|
+
attr_accessor :is_dedicated_hostload
|
119217
|
+
alias_method :is_dedicated_hostload?, :is_dedicated_hostload
|
119218
|
+
|
118835
119219
|
# Whether or not this is a Floonet fetch request. Floonet requests have inherent
|
118836
119220
|
# lower availability (due to HOPE rejections when HOPE is in degraded mode, and
|
118837
119221
|
# other Floonet specific reasons). Therefore, it is important for debugging and
|
@@ -118938,6 +119322,7 @@ module Google
|
|
118938
119322
|
@download_file_name = args[:download_file_name] if args.key?(:download_file_name)
|
118939
119323
|
@http_version = args[:http_version] if args.key?(:http_version)
|
118940
119324
|
@is_bidi_streaming_fetch = args[:is_bidi_streaming_fetch] if args.key?(:is_bidi_streaming_fetch)
|
119325
|
+
@is_dedicated_hostload = args[:is_dedicated_hostload] if args.key?(:is_dedicated_hostload)
|
118941
119326
|
@is_floonet_fetch = args[:is_floonet_fetch] if args.key?(:is_floonet_fetch)
|
118942
119327
|
@is_from_grpc_proxy = args[:is_from_grpc_proxy] if args.key?(:is_from_grpc_proxy)
|
118943
119328
|
@is_vpc_traffic = args[:is_vpc_traffic] if args.key?(:is_vpc_traffic)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.16.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 = "
|
25
|
+
REVISION = "20230512"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2596,6 +2596,30 @@ module Google
|
|
2596
2596
|
include Google::Apis::Core::JsonObjectSupport
|
2597
2597
|
end
|
2598
2598
|
|
2599
|
+
class AssistantGroundingRankerDeviceTargetingFeatures
|
2600
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2601
|
+
|
2602
|
+
include Google::Apis::Core::JsonObjectSupport
|
2603
|
+
end
|
2604
|
+
|
2605
|
+
class AssistantGroundingRankerDeviceTargetingFeaturesProperties
|
2606
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2607
|
+
|
2608
|
+
include Google::Apis::Core::JsonObjectSupport
|
2609
|
+
end
|
2610
|
+
|
2611
|
+
class AssistantGroundingRankerDeviceTargetingFeaturesStates
|
2612
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2613
|
+
|
2614
|
+
include Google::Apis::Core::JsonObjectSupport
|
2615
|
+
end
|
2616
|
+
|
2617
|
+
class AssistantGroundingRankerDeviceTargetingLabels
|
2618
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2619
|
+
|
2620
|
+
include Google::Apis::Core::JsonObjectSupport
|
2621
|
+
end
|
2622
|
+
|
2599
2623
|
class AssistantGroundingRankerGroundingProviderFeatures
|
2600
2624
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2601
2625
|
|
@@ -6976,6 +7000,12 @@ module Google
|
|
6976
7000
|
include Google::Apis::Core::JsonObjectSupport
|
6977
7001
|
end
|
6978
7002
|
|
7003
|
+
class ImageRepositoryS3LangIdDebuggingInfo
|
7004
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
7005
|
+
|
7006
|
+
include Google::Apis::Core::JsonObjectSupport
|
7007
|
+
end
|
7008
|
+
|
6979
7009
|
class ImageRepositoryS3LangIdSignals
|
6980
7010
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6981
7011
|
|
@@ -13690,6 +13720,12 @@ module Google
|
|
13690
13720
|
include Google::Apis::Core::JsonObjectSupport
|
13691
13721
|
end
|
13692
13722
|
|
13723
|
+
class SpeechWaveHeader
|
13724
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
13725
|
+
|
13726
|
+
include Google::Apis::Core::JsonObjectSupport
|
13727
|
+
end
|
13728
|
+
|
13693
13729
|
class StorageGraphBfgAuthorityFeedbackMetadata
|
13694
13730
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
13695
13731
|
|
@@ -13816,6 +13852,12 @@ module Google
|
|
13816
13852
|
include Google::Apis::Core::JsonObjectSupport
|
13817
13853
|
end
|
13818
13854
|
|
13855
|
+
class TravelFlightsAirlineConfigGreenFaresInfo
|
13856
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
13857
|
+
|
13858
|
+
include Google::Apis::Core::JsonObjectSupport
|
13859
|
+
end
|
13860
|
+
|
13819
13861
|
class TravelFlightsAirlineConfigLocalizedContactInfo
|
13820
13862
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
13821
13863
|
|
@@ -18957,7 +18999,6 @@ module Google
|
|
18957
18999
|
|
18958
19000
|
property :opt_in_status, as: 'optInStatus', class: Google::Apis::ContentwarehouseV1::AssistantApiSettingsDeviceLogsOptIn, decorator: Google::Apis::ContentwarehouseV1::AssistantApiSettingsDeviceLogsOptIn::Representation
|
18959
19001
|
|
18960
|
-
property :payments_enabled, as: 'paymentsEnabled'
|
18961
19002
|
property :personalization_metadata, as: 'personalizationMetadata', class: Google::Apis::ContentwarehouseV1::AssistantApiSettingsPersonalizationMetadata, decorator: Google::Apis::ContentwarehouseV1::AssistantApiSettingsPersonalizationMetadata::Representation
|
18962
19003
|
|
18963
19004
|
property :polite_mode, as: 'politeMode', class: Google::Apis::ContentwarehouseV1::AssistantApiSettingsPoliteMode, decorator: Google::Apis::ContentwarehouseV1::AssistantApiSettingsPoliteMode::Representation
|
@@ -19633,6 +19674,7 @@ module Google
|
|
19633
19674
|
class Representation < Google::Apis::Core::JsonRepresentation
|
19634
19675
|
property :execution_capabilities, as: 'executionCapabilities', class: Google::Apis::ContentwarehouseV1::AssistantApiSurfacePropertiesExecutionCapabilities, decorator: Google::Apis::ContentwarehouseV1::AssistantApiSurfacePropertiesExecutionCapabilities::Representation
|
19635
19676
|
|
19677
|
+
property :prefers_glanceable_ui, as: 'prefersGlanceableUi'
|
19636
19678
|
property :response_display_format, as: 'responseDisplayFormat'
|
19637
19679
|
property :supports_multi_response, as: 'supportsMultiResponse'
|
19638
19680
|
end
|
@@ -20180,6 +20222,45 @@ module Google
|
|
20180
20222
|
class Representation < Google::Apis::Core::JsonRepresentation
|
20181
20223
|
property :device_id, as: 'deviceId', class: Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesGovernedDeviceId, decorator: Google::Apis::ContentwarehouseV1::AssistantApiCoreTypesGovernedDeviceId::Representation
|
20182
20224
|
|
20225
|
+
property :device_targeting_features, as: 'deviceTargetingFeatures', class: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeatures, decorator: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeatures::Representation
|
20226
|
+
|
20227
|
+
property :device_targeting_labels, as: 'deviceTargetingLabels', class: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingLabels, decorator: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingLabels::Representation
|
20228
|
+
|
20229
|
+
end
|
20230
|
+
end
|
20231
|
+
|
20232
|
+
class AssistantGroundingRankerDeviceTargetingFeatures
|
20233
|
+
# @private
|
20234
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
20235
|
+
property :properties, as: 'properties', class: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeaturesProperties, decorator: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeaturesProperties::Representation
|
20236
|
+
|
20237
|
+
property :states, as: 'states', class: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeaturesStates, decorator: Google::Apis::ContentwarehouseV1::AssistantGroundingRankerDeviceTargetingFeaturesStates::Representation
|
20238
|
+
|
20239
|
+
end
|
20240
|
+
end
|
20241
|
+
|
20242
|
+
class AssistantGroundingRankerDeviceTargetingFeaturesProperties
|
20243
|
+
# @private
|
20244
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
20245
|
+
property :device_model_id, as: 'deviceModelId'
|
20246
|
+
property :is_owned_by_speaker, as: 'isOwnedBySpeaker'
|
20247
|
+
end
|
20248
|
+
end
|
20249
|
+
|
20250
|
+
class AssistantGroundingRankerDeviceTargetingFeaturesStates
|
20251
|
+
# @private
|
20252
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
20253
|
+
property :distance, as: 'distance'
|
20254
|
+
property :is_docked, as: 'isDocked'
|
20255
|
+
property :is_locked, as: 'isLocked'
|
20256
|
+
property :is_tethered, as: 'isTethered'
|
20257
|
+
end
|
20258
|
+
end
|
20259
|
+
|
20260
|
+
class AssistantGroundingRankerDeviceTargetingLabels
|
20261
|
+
# @private
|
20262
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
20263
|
+
property :is_selected_by_lumos, as: 'isSelectedByLumos'
|
20183
20264
|
end
|
20184
20265
|
end
|
20185
20266
|
|
@@ -20290,6 +20371,7 @@ module Google
|
|
20290
20371
|
class Representation < Google::Apis::Core::JsonRepresentation
|
20291
20372
|
property :is_in_app_provider, as: 'isInAppProvider'
|
20292
20373
|
collection :provider_cluster_id_deprecated, as: 'providerClusterIdDeprecated'
|
20374
|
+
collection :provider_cluster_ids, as: 'providerClusterIds'
|
20293
20375
|
property :provider_id, as: 'providerId', class: Google::Apis::ContentwarehouseV1::AssistantContextProviderId, decorator: Google::Apis::ContentwarehouseV1::AssistantContextProviderId::Representation
|
20294
20376
|
|
20295
20377
|
property :psl_score, as: 'pslScore'
|
@@ -28739,6 +28821,7 @@ module Google
|
|
28739
28821
|
property :date_expired, :numeric_string => true, as: 'dateExpired'
|
28740
28822
|
property :date_released, :numeric_string => true, as: 'dateReleased'
|
28741
28823
|
property :description, as: 'description'
|
28824
|
+
property :digital_source_type, as: 'digitalSourceType'
|
28742
28825
|
property :event, as: 'event'
|
28743
28826
|
property :headline, as: 'headline'
|
28744
28827
|
property :image_supplier, as: 'imageSupplier'
|
@@ -29204,10 +29287,25 @@ module Google
|
|
29204
29287
|
end
|
29205
29288
|
end
|
29206
29289
|
|
29290
|
+
class ImageRepositoryS3LangIdDebuggingInfo
|
29291
|
+
# @private
|
29292
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
29293
|
+
property :audio_input_cap, as: 'audioInputCap'
|
29294
|
+
property :failed_segments, as: 'failedSegments'
|
29295
|
+
property :processed_segments, as: 'processedSegments'
|
29296
|
+
property :segment_duration, as: 'segmentDuration'
|
29297
|
+
property :segment_stride, as: 'segmentStride'
|
29298
|
+
property :wave_header, as: 'waveHeader', class: Google::Apis::ContentwarehouseV1::SpeechWaveHeader, decorator: Google::Apis::ContentwarehouseV1::SpeechWaveHeader::Representation
|
29299
|
+
|
29300
|
+
end
|
29301
|
+
end
|
29302
|
+
|
29207
29303
|
class ImageRepositoryS3LangIdSignals
|
29208
29304
|
# @private
|
29209
29305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
29210
29306
|
property :contains_speech, as: 'containsSpeech'
|
29307
|
+
property :debugging_info, as: 'debuggingInfo', class: Google::Apis::ContentwarehouseV1::ImageRepositoryS3LangIdDebuggingInfo, decorator: Google::Apis::ContentwarehouseV1::ImageRepositoryS3LangIdDebuggingInfo::Representation
|
29308
|
+
|
29211
29309
|
property :end_sec, :numeric_string => true, as: 'endSec'
|
29212
29310
|
property :langid_result, as: 'langidResult', class: Google::Apis::ContentwarehouseV1::SpeechS3LanguageIdentificationResult, decorator: Google::Apis::ContentwarehouseV1::SpeechS3LanguageIdentificationResult::Representation
|
29213
29311
|
|
@@ -40156,7 +40254,6 @@ module Google
|
|
40156
40254
|
class Representation < Google::Apis::Core::JsonRepresentation
|
40157
40255
|
collection :latent_entity, as: 'latentEntity', class: Google::Apis::ContentwarehouseV1::RepositoryWebrefLatentEntity, decorator: Google::Apis::ContentwarehouseV1::RepositoryWebrefLatentEntity::Representation
|
40158
40256
|
|
40159
|
-
collection :latent_mid, as: 'latentMid'
|
40160
40257
|
end
|
40161
40258
|
end
|
40162
40259
|
|
@@ -43637,6 +43734,26 @@ module Google
|
|
43637
43734
|
end
|
43638
43735
|
end
|
43639
43736
|
|
43737
|
+
class SpeechWaveHeader
|
43738
|
+
# @private
|
43739
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
43740
|
+
property :atomic_size, as: 'atomicSize'
|
43741
|
+
property :atomic_type, as: 'atomicType'
|
43742
|
+
property :bit_rate, as: 'bitRate'
|
43743
|
+
property :byte_order, as: 'byteOrder'
|
43744
|
+
property :details, as: 'details'
|
43745
|
+
collection :dimension, as: 'dimension'
|
43746
|
+
property :elements_per_sample, as: 'elementsPerSample'
|
43747
|
+
property :rank, as: 'rank'
|
43748
|
+
property :sample_coding, as: 'sampleCoding'
|
43749
|
+
property :sample_rate, as: 'sampleRate'
|
43750
|
+
property :sample_size, as: 'sampleSize'
|
43751
|
+
property :sample_type, as: 'sampleType'
|
43752
|
+
property :start_time, as: 'startTime'
|
43753
|
+
property :total_samples, :numeric_string => true, as: 'totalSamples'
|
43754
|
+
end
|
43755
|
+
end
|
43756
|
+
|
43640
43757
|
class StorageGraphBfgAuthorityFeedbackMetadata
|
43641
43758
|
# @private
|
43642
43759
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -43943,6 +44060,8 @@ module Google
|
|
43943
44060
|
property :fare_family_urls, as: 'fareFamilyUrls', class: Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto, decorator: Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto::Representation
|
43944
44061
|
|
43945
44062
|
collection :fqtv_partner_code, as: 'fqtvPartnerCode'
|
44063
|
+
collection :green_fares_info, as: 'greenFaresInfo', class: Google::Apis::ContentwarehouseV1::TravelFlightsAirlineConfigGreenFaresInfo, decorator: Google::Apis::ContentwarehouseV1::TravelFlightsAirlineConfigGreenFaresInfo::Representation
|
44064
|
+
|
43946
44065
|
property :iata_code, as: 'iataCode'
|
43947
44066
|
property :icao_code, as: 'icaoCode'
|
43948
44067
|
property :innovata_code, as: 'innovataCode'
|
@@ -43956,6 +44075,8 @@ module Google
|
|
43956
44075
|
property :popularity, as: 'popularity'
|
43957
44076
|
property :short_names, as: 'shortNames', class: Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto, decorator: Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto::Representation
|
43958
44077
|
|
44078
|
+
property :sustainability_program_urls, as: 'sustainabilityProgramUrls', class: Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto, decorator: Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto::Representation
|
44079
|
+
|
43959
44080
|
property :type, as: 'type'
|
43960
44081
|
property :urls, as: 'urls', class: Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto, decorator: Google::Apis::ContentwarehouseV1::TravelFlightsNameCatalogProto::Representation
|
43961
44082
|
|
@@ -43981,6 +44102,17 @@ module Google
|
|
43981
44102
|
end
|
43982
44103
|
end
|
43983
44104
|
|
44105
|
+
class TravelFlightsAirlineConfigGreenFaresInfo
|
44106
|
+
# @private
|
44107
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
44108
|
+
property :bonus_miles_program_name, as: 'bonusMilesProgramName'
|
44109
|
+
property :bonus_miles_quantity, :numeric_string => true, as: 'bonusMilesQuantity'
|
44110
|
+
property :bonus_miles_quantity_type, as: 'bonusMilesQuantityType'
|
44111
|
+
property :bonus_miles_type, as: 'bonusMilesType'
|
44112
|
+
property :contribution_framing, as: 'contributionFraming'
|
44113
|
+
end
|
44114
|
+
end
|
44115
|
+
|
43984
44116
|
class TravelFlightsAirlineConfigLocalizedContactInfo
|
43985
44117
|
# @private
|
43986
44118
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -44423,6 +44555,7 @@ module Google
|
|
44423
44555
|
property :download_file_name, as: 'downloadFileName'
|
44424
44556
|
property :http_version, as: 'httpVersion'
|
44425
44557
|
property :is_bidi_streaming_fetch, as: 'isBidiStreamingFetch'
|
44558
|
+
property :is_dedicated_hostload, as: 'isDedicatedHostload'
|
44426
44559
|
property :is_floonet_fetch, as: 'isFloonetFetch'
|
44427
44560
|
property :is_from_grpc_proxy, as: 'isFromGrpcProxy'
|
44428
44561
|
property :is_vpc_traffic, as: 'isVpcTraffic'
|
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.
|
4
|
+
version: 0.16.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-05-
|
11
|
+
date: 2023-05-21 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contentwarehouse_v1/v0.16.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: []
|