google-apis-cloudsearch_v1 0.23.0 → 0.24.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 504ef6bd545dea2403a251f92c2cd8e796ded94be6c696ba19fbfb47b22fc667
|
4
|
+
data.tar.gz: dea6910256282065c6b100a4b4e3cdf761d29aa7656ec261e428d3519884028d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aabd4bcb202c129e14a01c721115d6fd546acc8e9b9c1fb3667d8e146a41a0cbca77c50b96c5ea8078a809036d00dedfd9690140a0840e9a49fe8fc3765ce4b5
|
7
|
+
data.tar.gz: adf97c291b03664376c8c9bf81d90498819136ca855fca6f7a1e5485cea544e5c8ab2075cb13eeeca82935aad7cfebbbdc7a1174dddde056b50f2d06872d3573
|
data/CHANGELOG.md
CHANGED
@@ -1101,11 +1101,26 @@ module Google
|
|
1101
1101
|
# @return [Float]
|
1102
1102
|
attr_accessor :joined_spaces_affinity_score
|
1103
1103
|
|
1104
|
+
#
|
1105
|
+
# Corresponds to the JSON property `lastMessagePostedTimestampMicros`
|
1106
|
+
# @return [Fixnum]
|
1107
|
+
attr_accessor :last_message_posted_timestamp_micros
|
1108
|
+
|
1109
|
+
#
|
1110
|
+
# Corresponds to the JSON property `memberMetadataCount`
|
1111
|
+
# @return [Float]
|
1112
|
+
attr_accessor :member_metadata_count
|
1113
|
+
|
1104
1114
|
#
|
1105
1115
|
# Corresponds to the JSON property `messageScore`
|
1106
1116
|
# @return [Float]
|
1107
1117
|
attr_accessor :message_score
|
1108
1118
|
|
1119
|
+
#
|
1120
|
+
# Corresponds to the JSON property `numAucContacts`
|
1121
|
+
# @return [Fixnum]
|
1122
|
+
attr_accessor :num_auc_contacts
|
1123
|
+
|
1109
1124
|
#
|
1110
1125
|
# Corresponds to the JSON property `smallContactListAffinityScore`
|
1111
1126
|
# @return [Float]
|
@@ -1121,6 +1136,11 @@ module Google
|
|
1121
1136
|
# @return [Float]
|
1122
1137
|
attr_accessor :space_age_in_days
|
1123
1138
|
|
1139
|
+
#
|
1140
|
+
# Corresponds to the JSON property `spaceCreationTimestampMicros`
|
1141
|
+
# @return [Fixnum]
|
1142
|
+
attr_accessor :space_creation_timestamp_micros
|
1143
|
+
|
1124
1144
|
#
|
1125
1145
|
# Corresponds to the JSON property `topicalityScore`
|
1126
1146
|
# @return [Float]
|
@@ -1138,10 +1158,14 @@ module Google
|
|
1138
1158
|
@final_score = args[:final_score] if args.key?(:final_score)
|
1139
1159
|
@freshness_score = args[:freshness_score] if args.key?(:freshness_score)
|
1140
1160
|
@joined_spaces_affinity_score = args[:joined_spaces_affinity_score] if args.key?(:joined_spaces_affinity_score)
|
1161
|
+
@last_message_posted_timestamp_micros = args[:last_message_posted_timestamp_micros] if args.key?(:last_message_posted_timestamp_micros)
|
1162
|
+
@member_metadata_count = args[:member_metadata_count] if args.key?(:member_metadata_count)
|
1141
1163
|
@message_score = args[:message_score] if args.key?(:message_score)
|
1164
|
+
@num_auc_contacts = args[:num_auc_contacts] if args.key?(:num_auc_contacts)
|
1142
1165
|
@small_contact_list_affinity_score = args[:small_contact_list_affinity_score] if args.key?(:small_contact_list_affinity_score)
|
1143
1166
|
@small_unjoined_spaces_affinity_score = args[:small_unjoined_spaces_affinity_score] if args.key?(:small_unjoined_spaces_affinity_score)
|
1144
1167
|
@space_age_in_days = args[:space_age_in_days] if args.key?(:space_age_in_days)
|
1168
|
+
@space_creation_timestamp_micros = args[:space_creation_timestamp_micros] if args.key?(:space_creation_timestamp_micros)
|
1145
1169
|
@topicality_score = args[:topicality_score] if args.key?(:topicality_score)
|
1146
1170
|
end
|
1147
1171
|
end
|
@@ -5852,6 +5876,13 @@ module Google
|
|
5852
5876
|
class UserId
|
5853
5877
|
include Google::Apis::Core::Hashable
|
5854
5878
|
|
5879
|
+
# Optional. Opaque, server-assigned ID of the user profile associated with App/
|
5880
|
+
# user acting on behalf of the human user. This is currently only set when a 3P
|
5881
|
+
# application is acting on the user's behalf.
|
5882
|
+
# Corresponds to the JSON property `actingUserId`
|
5883
|
+
# @return [String]
|
5884
|
+
attr_accessor :acting_user_id
|
5885
|
+
|
5855
5886
|
# Opaque, server-assigned ID of the User.
|
5856
5887
|
# Corresponds to the JSON property `id`
|
5857
5888
|
# @return [String]
|
@@ -5876,6 +5907,7 @@ module Google
|
|
5876
5907
|
|
5877
5908
|
# Update properties of this object
|
5878
5909
|
def update!(**args)
|
5910
|
+
@acting_user_id = args[:acting_user_id] if args.key?(:acting_user_id)
|
5879
5911
|
@id = args[:id] if args.key?(:id)
|
5880
5912
|
@origin_app_id = args[:origin_app_id] if args.key?(:origin_app_id)
|
5881
5913
|
@type = args[:type] if args.key?(:type)
|
@@ -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.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220322"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1408,10 +1408,14 @@ module Google
|
|
1408
1408
|
property :final_score, as: 'finalScore'
|
1409
1409
|
property :freshness_score, as: 'freshnessScore'
|
1410
1410
|
property :joined_spaces_affinity_score, as: 'joinedSpacesAffinityScore'
|
1411
|
+
property :last_message_posted_timestamp_micros, :numeric_string => true, as: 'lastMessagePostedTimestampMicros'
|
1412
|
+
property :member_metadata_count, as: 'memberMetadataCount'
|
1411
1413
|
property :message_score, as: 'messageScore'
|
1414
|
+
property :num_auc_contacts, :numeric_string => true, as: 'numAucContacts'
|
1412
1415
|
property :small_contact_list_affinity_score, as: 'smallContactListAffinityScore'
|
1413
1416
|
property :small_unjoined_spaces_affinity_score, as: 'smallUnjoinedSpacesAffinityScore'
|
1414
1417
|
property :space_age_in_days, as: 'spaceAgeInDays'
|
1418
|
+
property :space_creation_timestamp_micros, :numeric_string => true, as: 'spaceCreationTimestampMicros'
|
1415
1419
|
property :topicality_score, as: 'topicalityScore'
|
1416
1420
|
end
|
1417
1421
|
end
|
@@ -2802,6 +2806,7 @@ module Google
|
|
2802
2806
|
class UserId
|
2803
2807
|
# @private
|
2804
2808
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2809
|
+
property :acting_user_id, as: 'actingUserId'
|
2805
2810
|
property :id, as: 'id'
|
2806
2811
|
property :origin_app_id, as: 'originAppId', class: Google::Apis::CloudsearchV1::AppId, decorator: Google::Apis::CloudsearchV1::AppId::Representation
|
2807
2812
|
|
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.24.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: 2022-
|
11
|
+
date: 2022-04-04 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.24.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: []
|