google-apis-cloudsearch_v1 0.21.0 → 0.22.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: 29660f994060996339bd9efb55b361807ca27f5e8a4f6afe2fc6a84aae41a053
4
- data.tar.gz: 85709337cd3c3d22374a15e112c0c2e8dc7e58005e59d1a14a6070fe1e296f3e
3
+ metadata.gz: c0ce151c9e44ec331b624cdc5aa2a294ae9aaa89738e9fc19b8f15bdd393ecbc
4
+ data.tar.gz: ce30316af1e83154cd80e81e8f81156e2f7e3d8d7059f05e42ca79306c3f52ef
5
5
  SHA512:
6
- metadata.gz: b278da815aa25785f217daffc1706900e443e19d3bea97614aa05c94d0feab62af6f3472fe9da96ab7160ee63f41f13f97f60859096317bd31b62cd238777e1b
7
- data.tar.gz: 4cad4c1f6e1d28b9a0f0345f069f309c7c19b4697a4ad4f716736813b2fd7ba08b3bc02154b8d69fabe560d5750c339f315dd01612b2febac1204b36ffba9f87
6
+ metadata.gz: 9f40f242bb5d42b74dba2218c1ebe8430ebc7abe9319175f6289968042bd1b558c8d2dc8bc9cf39c2b6da2bcc9eb512c3c981ccf752f9e296f0ace3e599b3452
7
+ data.tar.gz: db2dd4468960e63b36996ea92076271dae07465f5f89a56df8a6d20079dbfaa5af52c5868404243103c621f542cfcdb81b3cb3b82e33df0aa3569872dc826544
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.22.0 (2022-03-08)
4
+
5
+ * Regenerated from discovery document revision 20220301
6
+
3
7
  ### v0.21.0 (2022-02-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20220215
@@ -1066,6 +1066,50 @@ 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 `finalScore`
1076
+ # @return [Float]
1077
+ attr_accessor :final_score
1078
+
1079
+ #
1080
+ # Corresponds to the JSON property `freshnessScore`
1081
+ # @return [Float]
1082
+ attr_accessor :freshness_score
1083
+
1084
+ #
1085
+ # Corresponds to the JSON property `messageScore`
1086
+ # @return [Float]
1087
+ attr_accessor :message_score
1088
+
1089
+ #
1090
+ # Corresponds to the JSON property `spaceAgeInDays`
1091
+ # @return [Float]
1092
+ attr_accessor :space_age_in_days
1093
+
1094
+ #
1095
+ # Corresponds to the JSON property `topicalityScore`
1096
+ # @return [Float]
1097
+ attr_accessor :topicality_score
1098
+
1099
+ def initialize(**args)
1100
+ update!(**args)
1101
+ end
1102
+
1103
+ # Update properties of this object
1104
+ def update!(**args)
1105
+ @final_score = args[:final_score] if args.key?(:final_score)
1106
+ @freshness_score = args[:freshness_score] if args.key?(:freshness_score)
1107
+ @message_score = args[:message_score] if args.key?(:message_score)
1108
+ @space_age_in_days = args[:space_age_in_days] if args.key?(:space_age_in_days)
1109
+ @topicality_score = args[:topicality_score] if args.key?(:topicality_score)
1110
+ end
1111
+ end
1112
+
1069
1113
  # A person's email address.
1070
1114
  class EmailAddress
1071
1115
  include Google::Apis::Core::Hashable
@@ -5179,6 +5223,12 @@ module Google
5179
5223
  # @return [Google::Apis::CloudsearchV1::GroupId]
5180
5224
  attr_accessor :group_id
5181
5225
 
5226
+ # Whether this is an external space outside of user's organization
5227
+ # Corresponds to the JSON property `isExternal`
5228
+ # @return [Boolean]
5229
+ attr_accessor :is_external
5230
+ alias_method :is_external?, :is_external
5231
+
5182
5232
  #
5183
5233
  # Corresponds to the JSON property `name`
5184
5234
  # @return [String]
@@ -5204,6 +5254,7 @@ module Google
5204
5254
  @avatar_url = args[:avatar_url] if args.key?(:avatar_url)
5205
5255
  @description = args[:description] if args.key?(:description)
5206
5256
  @group_id = args[:group_id] if args.key?(:group_id)
5257
+ @is_external = args[:is_external] if args.key?(:is_external)
5207
5258
  @name = args[:name] if args.key?(:name)
5208
5259
  @num_members = args[:num_members] if args.key?(:num_members)
5209
5260
  @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.21.0"
19
+ GEM_VERSION = "0.22.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 = "20220215"
25
+ REVISION = "20220301"
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,17 @@ module Google
1393
1399
  end
1394
1400
  end
1395
1401
 
1402
+ class DynamiteSpacesScoringInfo
1403
+ # @private
1404
+ class Representation < Google::Apis::Core::JsonRepresentation
1405
+ property :final_score, as: 'finalScore'
1406
+ property :freshness_score, as: 'freshnessScore'
1407
+ property :message_score, as: 'messageScore'
1408
+ property :space_age_in_days, as: 'spaceAgeInDays'
1409
+ property :topicality_score, as: 'topicalityScore'
1410
+ end
1411
+ end
1412
+
1396
1413
  class EmailAddress
1397
1414
  # @private
1398
1415
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2592,6 +2609,7 @@ module Google
2592
2609
  property :description, as: 'description'
2593
2610
  property :group_id, as: 'groupId', class: Google::Apis::CloudsearchV1::GroupId, decorator: Google::Apis::CloudsearchV1::GroupId::Representation
2594
2611
 
2612
+ property :is_external, as: 'isExternal'
2595
2613
  property :name, as: 'name'
2596
2614
  property :num_members, as: 'numMembers'
2597
2615
  property :user_membership_state, as: 'userMembershipState'
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.21.0
4
+ version: 0.22.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-28 00:00:00.000000000 Z
11
+ date: 2022-03-14 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.21.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.22.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: []