google-apis-cloudsearch_v1 0.20.0 → 0.23.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: 7790240370bba3d766cd8437fd6da27339be752a598010409be7d3f97a34d668
4
- data.tar.gz: 4a8957a9d1389d4a7fc38d0f6cc5f3bfd490621b54589bb8617d4b40f5c7121a
3
+ metadata.gz: 85ccba92ef2c137f80964ec8a9b130307e358f3ddd83b6a5f8a90339aa293e0a
4
+ data.tar.gz: 0df0b3155b4e6c07b014340bded58f273933d22d9e9c8749ddb37d118811fcef
5
5
  SHA512:
6
- metadata.gz: '075069afe496b4da4247622ef2c5e09c4bcf876f4fb45f764ceacef274e8bc519c44d35074c5c3379da9c2e2f7b4cb046aaf5c13bfd7a4ceed00f2985fabeb9c'
7
- data.tar.gz: 3c504f81d395a235102e2e1e8e601fef46252cf29e9e07c2a520e57bc744e7def2f5216f9fa3da56eea9f286b2fd78385903848b98aa477f318d4d7a74d142b5
6
+ metadata.gz: a52529b91b0aa387b4a46da56d48a93aaca5a706e2117264677e4ee92239240b536e23e33ef8a32286e1e9a485d69c6d2fda3aac7895e2841e0e833db8344f9d
7
+ data.tar.gz: 6d0af179c556849d614e549a5c0873f1fd0aa0186c679a5e430cf33a4944bd17ef1def03b9987319eb47490826aa95f20072d31f48d41456641ed78d6b55a4b6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.23.0 (2022-03-16)
4
+
5
+ * Regenerated from discovery document revision 20220310
6
+
7
+ ### v0.22.0 (2022-03-08)
8
+
9
+ * Regenerated from discovery document revision 20220301
10
+
11
+ ### v0.21.0 (2022-02-22)
12
+
13
+ * Regenerated from discovery document revision 20220215
14
+
3
15
  ### v0.20.0 (2022-02-15)
4
16
 
5
17
  * Regenerated from discovery document revision 20220207
@@ -1066,6 +1066,86 @@ module Google
1066
1066
  end
1067
1067
  end
1068
1068
 
1069
+ # This is the proto for holding space level scoring information. This data is
1070
+ # used for logging in query-api server and for testing purposes.
1071
+ class DynamiteSpacesScoringInfo
1072
+ include Google::Apis::Core::Hashable
1073
+
1074
+ #
1075
+ # Corresponds to the JSON property `affinityScore`
1076
+ # @return [Float]
1077
+ attr_accessor :affinity_score
1078
+
1079
+ #
1080
+ # Corresponds to the JSON property `commonContactCountAffinityScore`
1081
+ # @return [Float]
1082
+ attr_accessor :common_contact_count_affinity_score
1083
+
1084
+ #
1085
+ # Corresponds to the JSON property `contactsIntersectionCount`
1086
+ # @return [Float]
1087
+ attr_accessor :contacts_intersection_count
1088
+
1089
+ #
1090
+ # Corresponds to the JSON property `finalScore`
1091
+ # @return [Float]
1092
+ attr_accessor :final_score
1093
+
1094
+ #
1095
+ # Corresponds to the JSON property `freshnessScore`
1096
+ # @return [Float]
1097
+ attr_accessor :freshness_score
1098
+
1099
+ #
1100
+ # Corresponds to the JSON property `joinedSpacesAffinityScore`
1101
+ # @return [Float]
1102
+ attr_accessor :joined_spaces_affinity_score
1103
+
1104
+ #
1105
+ # Corresponds to the JSON property `messageScore`
1106
+ # @return [Float]
1107
+ attr_accessor :message_score
1108
+
1109
+ #
1110
+ # Corresponds to the JSON property `smallContactListAffinityScore`
1111
+ # @return [Float]
1112
+ attr_accessor :small_contact_list_affinity_score
1113
+
1114
+ #
1115
+ # Corresponds to the JSON property `smallUnjoinedSpacesAffinityScore`
1116
+ # @return [Float]
1117
+ attr_accessor :small_unjoined_spaces_affinity_score
1118
+
1119
+ #
1120
+ # Corresponds to the JSON property `spaceAgeInDays`
1121
+ # @return [Float]
1122
+ attr_accessor :space_age_in_days
1123
+
1124
+ #
1125
+ # Corresponds to the JSON property `topicalityScore`
1126
+ # @return [Float]
1127
+ attr_accessor :topicality_score
1128
+
1129
+ def initialize(**args)
1130
+ update!(**args)
1131
+ end
1132
+
1133
+ # Update properties of this object
1134
+ def update!(**args)
1135
+ @affinity_score = args[:affinity_score] if args.key?(:affinity_score)
1136
+ @common_contact_count_affinity_score = args[:common_contact_count_affinity_score] if args.key?(:common_contact_count_affinity_score)
1137
+ @contacts_intersection_count = args[:contacts_intersection_count] if args.key?(:contacts_intersection_count)
1138
+ @final_score = args[:final_score] if args.key?(:final_score)
1139
+ @freshness_score = args[:freshness_score] if args.key?(:freshness_score)
1140
+ @joined_spaces_affinity_score = args[:joined_spaces_affinity_score] if args.key?(:joined_spaces_affinity_score)
1141
+ @message_score = args[:message_score] if args.key?(:message_score)
1142
+ @small_contact_list_affinity_score = args[:small_contact_list_affinity_score] if args.key?(:small_contact_list_affinity_score)
1143
+ @small_unjoined_spaces_affinity_score = args[:small_unjoined_spaces_affinity_score] if args.key?(:small_unjoined_spaces_affinity_score)
1144
+ @space_age_in_days = args[:space_age_in_days] if args.key?(:space_age_in_days)
1145
+ @topicality_score = args[:topicality_score] if args.key?(:topicality_score)
1146
+ end
1147
+ end
1148
+
1069
1149
  # A person's email address.
1070
1150
  class EmailAddress
1071
1151
  include Google::Apis::Core::Hashable
@@ -5163,6 +5243,11 @@ module Google
5163
5243
  # @return [Google::Apis::CloudsearchV1::AvatarInfo]
5164
5244
  attr_accessor :avatar_info
5165
5245
 
5246
+ #
5247
+ # Corresponds to the JSON property `avatarUrl`
5248
+ # @return [String]
5249
+ attr_accessor :avatar_url
5250
+
5166
5251
  #
5167
5252
  # Corresponds to the JSON property `description`
5168
5253
  # @return [String]
@@ -5174,6 +5259,12 @@ module Google
5174
5259
  # @return [Google::Apis::CloudsearchV1::GroupId]
5175
5260
  attr_accessor :group_id
5176
5261
 
5262
+ # Whether this is a space that enables guest access
5263
+ # Corresponds to the JSON property `isExternal`
5264
+ # @return [Boolean]
5265
+ attr_accessor :is_external
5266
+ alias_method :is_external?, :is_external
5267
+
5177
5268
  #
5178
5269
  # Corresponds to the JSON property `name`
5179
5270
  # @return [String]
@@ -5196,8 +5287,10 @@ module Google
5196
5287
  # Update properties of this object
5197
5288
  def update!(**args)
5198
5289
  @avatar_info = args[:avatar_info] if args.key?(:avatar_info)
5290
+ @avatar_url = args[:avatar_url] if args.key?(:avatar_url)
5199
5291
  @description = args[:description] if args.key?(:description)
5200
5292
  @group_id = args[:group_id] if args.key?(:group_id)
5293
+ @is_external = args[:is_external] if args.key?(:is_external)
5201
5294
  @name = args[:name] if args.key?(:name)
5202
5295
  @num_members = args[:num_members] if args.key?(:num_members)
5203
5296
  @user_membership_state = args[:user_membership_state] if args.key?(:user_membership_state)
@@ -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.20.0"
19
+ GEM_VERSION = "0.23.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 = "20220207"
25
+ REVISION = "20220310"
26
26
  end
27
27
  end
28
28
  end
@@ -232,6 +232,12 @@ module Google
232
232
  include Google::Apis::Core::JsonObjectSupport
233
233
  end
234
234
 
235
+ class DynamiteSpacesScoringInfo
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
235
241
  class EmailAddress
236
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
243
 
@@ -1393,6 +1399,23 @@ module Google
1393
1399
  end
1394
1400
  end
1395
1401
 
1402
+ class DynamiteSpacesScoringInfo
1403
+ # @private
1404
+ class Representation < Google::Apis::Core::JsonRepresentation
1405
+ property :affinity_score, as: 'affinityScore'
1406
+ property :common_contact_count_affinity_score, as: 'commonContactCountAffinityScore'
1407
+ property :contacts_intersection_count, as: 'contactsIntersectionCount'
1408
+ property :final_score, as: 'finalScore'
1409
+ property :freshness_score, as: 'freshnessScore'
1410
+ property :joined_spaces_affinity_score, as: 'joinedSpacesAffinityScore'
1411
+ property :message_score, as: 'messageScore'
1412
+ property :small_contact_list_affinity_score, as: 'smallContactListAffinityScore'
1413
+ property :small_unjoined_spaces_affinity_score, as: 'smallUnjoinedSpacesAffinityScore'
1414
+ property :space_age_in_days, as: 'spaceAgeInDays'
1415
+ property :topicality_score, as: 'topicalityScore'
1416
+ end
1417
+ end
1418
+
1396
1419
  class EmailAddress
1397
1420
  # @private
1398
1421
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2588,9 +2611,11 @@ module Google
2588
2611
  class Representation < Google::Apis::Core::JsonRepresentation
2589
2612
  property :avatar_info, as: 'avatarInfo', class: Google::Apis::CloudsearchV1::AvatarInfo, decorator: Google::Apis::CloudsearchV1::AvatarInfo::Representation
2590
2613
 
2614
+ property :avatar_url, as: 'avatarUrl'
2591
2615
  property :description, as: 'description'
2592
2616
  property :group_id, as: 'groupId', class: Google::Apis::CloudsearchV1::GroupId, decorator: Google::Apis::CloudsearchV1::GroupId::Representation
2593
2617
 
2618
+ property :is_external, as: 'isExternal'
2594
2619
  property :name, as: 'name'
2595
2620
  property :num_members, as: 'numMembers'
2596
2621
  property :user_membership_state, as: 'userMembershipState'
@@ -1169,8 +1169,8 @@ module Google
1169
1169
  # If you are asked by Google to help with debugging, set this field. Otherwise,
1170
1170
  # ignore this field.
1171
1171
  # @param [Fixnum] page_size
1172
- # Maximum number of datasources to fetch in a request. The max value is 100. The
1173
- # default value is 10
1172
+ # Maximum number of datasources to fetch in a request. The max value is 1000.
1173
+ # The default value is 1000.
1174
1174
  # @param [String] page_token
1175
1175
  # Starting index of the results.
1176
1176
  # @param [String] fields
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.20.0
4
+ version: 0.23.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-02-21 00:00:00.000000000 Z
11
+ date: 2022-03-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-cloudsearch_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.23.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: []