google-apis-cloudsearch_v1 0.42.0 → 0.43.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: e7a1eef789314c62a97363e4e5f30aa54292b7d33813d239cd38502277b75e2b
|
4
|
+
data.tar.gz: 49bf2d03f63d961487d6eb79edc0add9c9de82c099dbef493f7691557637b328
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d8f37a55e606d6d086a07b26920e4d1bfa571c351cf0a3b5508f1144a2f8d13b8d3a54b50f01d9f6acee52ae0a86cdfac89114f346097c31d2e50b0eb04bd31
|
7
|
+
data.tar.gz: b7e17ae41b5eb4bbca2d199c03120eaefbe6fab4062a73223b59f8649ff33bffa613b593076217a7c39a81299994e7e7e6feccd694e22d596f200dd2ecbf9301
|
data/CHANGELOG.md
CHANGED
@@ -7709,6 +7709,37 @@ module Google
|
|
7709
7709
|
class DynamiteMessagesScoringInfo
|
7710
7710
|
include Google::Apis::Core::Hashable
|
7711
7711
|
|
7712
|
+
#
|
7713
|
+
# Corresponds to the JSON property `commonContactCount`
|
7714
|
+
# @return [Fixnum]
|
7715
|
+
attr_accessor :common_contact_count
|
7716
|
+
|
7717
|
+
#
|
7718
|
+
# Corresponds to the JSON property `commonCountToContactListCountRatio`
|
7719
|
+
# @return [Float]
|
7720
|
+
attr_accessor :common_count_to_contact_list_count_ratio
|
7721
|
+
|
7722
|
+
#
|
7723
|
+
# Corresponds to the JSON property `commonCountToMembershipCountRatio`
|
7724
|
+
# @return [Float]
|
7725
|
+
attr_accessor :common_count_to_membership_count_ratio
|
7726
|
+
|
7727
|
+
#
|
7728
|
+
# Corresponds to the JSON property `creatorGaiaId`
|
7729
|
+
# @return [Fixnum]
|
7730
|
+
attr_accessor :creator_gaia_id
|
7731
|
+
|
7732
|
+
#
|
7733
|
+
# Corresponds to the JSON property `creatorInSearcherContactList`
|
7734
|
+
# @return [Boolean]
|
7735
|
+
attr_accessor :creator_in_searcher_contact_list
|
7736
|
+
alias_method :creator_in_searcher_contact_list?, :creator_in_searcher_contact_list
|
7737
|
+
|
7738
|
+
#
|
7739
|
+
# Corresponds to the JSON property `dasContactCount`
|
7740
|
+
# @return [Fixnum]
|
7741
|
+
attr_accessor :das_contact_count
|
7742
|
+
|
7712
7743
|
#
|
7713
7744
|
# Corresponds to the JSON property `finalScore`
|
7714
7745
|
# @return [Float]
|
@@ -7734,6 +7765,16 @@ module Google
|
|
7734
7765
|
# @return [Float]
|
7735
7766
|
attr_accessor :message_sender_affinity_score
|
7736
7767
|
|
7768
|
+
#
|
7769
|
+
# Corresponds to the JSON property `spaceId`
|
7770
|
+
# @return [Fixnum]
|
7771
|
+
attr_accessor :space_id
|
7772
|
+
|
7773
|
+
#
|
7774
|
+
# Corresponds to the JSON property `spaceMembershipCount`
|
7775
|
+
# @return [Fixnum]
|
7776
|
+
attr_accessor :space_membership_count
|
7777
|
+
|
7737
7778
|
#
|
7738
7779
|
# Corresponds to the JSON property `topicalityScore`
|
7739
7780
|
# @return [Float]
|
@@ -7750,11 +7791,19 @@ module Google
|
|
7750
7791
|
|
7751
7792
|
# Update properties of this object
|
7752
7793
|
def update!(**args)
|
7794
|
+
@common_contact_count = args[:common_contact_count] if args.key?(:common_contact_count)
|
7795
|
+
@common_count_to_contact_list_count_ratio = args[:common_count_to_contact_list_count_ratio] if args.key?(:common_count_to_contact_list_count_ratio)
|
7796
|
+
@common_count_to_membership_count_ratio = args[:common_count_to_membership_count_ratio] if args.key?(:common_count_to_membership_count_ratio)
|
7797
|
+
@creator_gaia_id = args[:creator_gaia_id] if args.key?(:creator_gaia_id)
|
7798
|
+
@creator_in_searcher_contact_list = args[:creator_in_searcher_contact_list] if args.key?(:creator_in_searcher_contact_list)
|
7799
|
+
@das_contact_count = args[:das_contact_count] if args.key?(:das_contact_count)
|
7753
7800
|
@final_score = args[:final_score] if args.key?(:final_score)
|
7754
7801
|
@freshness_score = args[:freshness_score] if args.key?(:freshness_score)
|
7755
7802
|
@joined_space_affinity_score = args[:joined_space_affinity_score] if args.key?(:joined_space_affinity_score)
|
7756
7803
|
@message_age_in_days = args[:message_age_in_days] if args.key?(:message_age_in_days)
|
7757
7804
|
@message_sender_affinity_score = args[:message_sender_affinity_score] if args.key?(:message_sender_affinity_score)
|
7805
|
+
@space_id = args[:space_id] if args.key?(:space_id)
|
7806
|
+
@space_membership_count = args[:space_membership_count] if args.key?(:space_membership_count)
|
7758
7807
|
@topicality_score = args[:topicality_score] if args.key?(:topicality_score)
|
7759
7808
|
@unjoined_space_affinity_score = args[:unjoined_space_affinity_score] if args.key?(:unjoined_space_affinity_score)
|
7760
7809
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudsearchV1
|
18
18
|
# Version of the google-apis-cloudsearch_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230124"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -5699,11 +5699,19 @@ module Google
|
|
5699
5699
|
class DynamiteMessagesScoringInfo
|
5700
5700
|
# @private
|
5701
5701
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5702
|
+
property :common_contact_count, :numeric_string => true, as: 'commonContactCount'
|
5703
|
+
property :common_count_to_contact_list_count_ratio, as: 'commonCountToContactListCountRatio'
|
5704
|
+
property :common_count_to_membership_count_ratio, as: 'commonCountToMembershipCountRatio'
|
5705
|
+
property :creator_gaia_id, :numeric_string => true, as: 'creatorGaiaId'
|
5706
|
+
property :creator_in_searcher_contact_list, as: 'creatorInSearcherContactList'
|
5707
|
+
property :das_contact_count, :numeric_string => true, as: 'dasContactCount'
|
5702
5708
|
property :final_score, as: 'finalScore'
|
5703
5709
|
property :freshness_score, as: 'freshnessScore'
|
5704
5710
|
property :joined_space_affinity_score, as: 'joinedSpaceAffinityScore'
|
5705
5711
|
property :message_age_in_days, as: 'messageAgeInDays'
|
5706
5712
|
property :message_sender_affinity_score, as: 'messageSenderAffinityScore'
|
5713
|
+
property :space_id, :numeric_string => true, as: 'spaceId'
|
5714
|
+
property :space_membership_count, :numeric_string => true, as: 'spaceMembershipCount'
|
5707
5715
|
property :topicality_score, as: 'topicalityScore'
|
5708
5716
|
property :unjoined_space_affinity_score, as: 'unjoinedSpaceAffinityScore'
|
5709
5717
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudsearch_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.43.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-
|
11
|
+
date: 2023-02-05 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-cloudsearch_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.43.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsearch_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|