google-apis-cloudsearch_v1 0.23.0 → 0.26.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: 1cbe11e1e52c032d523b70bed825a37a016b8cd970bad4249192a1950aa548b4
|
4
|
+
data.tar.gz: 7ce3d3052140952edfd604c1b838657a0fd4b449fcb7835cd82248839947340e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e1c49c4a186b5b1b5ebbc23b1784f0654e950cfbfacae79bdc94c04ac5cc91c85915e447ccb47c91739c0579e76faa4ec4795af821a67a7db2ba2a12155764d
|
7
|
+
data.tar.gz: ad3dcf2ca22d5815114b25979153eabf5846099742150e1366ee73f46dfffe9e5500fe93280ca94bf89637f462340f958b1d8c96d21564c3c8aa34dd84b5daca
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-cloudsearch_v1
|
2
2
|
|
3
|
+
### v0.26.0 (2022-04-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220411
|
6
|
+
|
7
|
+
### v0.25.0 (2022-04-07)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220404
|
10
|
+
|
11
|
+
### v0.24.0 (2022-03-29)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220322
|
14
|
+
|
3
15
|
### v0.23.0 (2022-03-16)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220310
|
@@ -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
|
@@ -5259,6 +5283,13 @@ module Google
|
|
5259
5283
|
# @return [Google::Apis::CloudsearchV1::GroupId]
|
5260
5284
|
attr_accessor :group_id
|
5261
5285
|
|
5286
|
+
# The email address of the user that invited the calling user to the room, if
|
5287
|
+
# available. This field will only be populated for direct invites, it will be
|
5288
|
+
# empty if the user was indirectly invited to the group.
|
5289
|
+
# Corresponds to the JSON property `inviterEmail`
|
5290
|
+
# @return [String]
|
5291
|
+
attr_accessor :inviter_email
|
5292
|
+
|
5262
5293
|
# Whether this is a space that enables guest access
|
5263
5294
|
# Corresponds to the JSON property `isExternal`
|
5264
5295
|
# @return [Boolean]
|
@@ -5290,6 +5321,7 @@ module Google
|
|
5290
5321
|
@avatar_url = args[:avatar_url] if args.key?(:avatar_url)
|
5291
5322
|
@description = args[:description] if args.key?(:description)
|
5292
5323
|
@group_id = args[:group_id] if args.key?(:group_id)
|
5324
|
+
@inviter_email = args[:inviter_email] if args.key?(:inviter_email)
|
5293
5325
|
@is_external = args[:is_external] if args.key?(:is_external)
|
5294
5326
|
@name = args[:name] if args.key?(:name)
|
5295
5327
|
@num_members = args[:num_members] if args.key?(:num_members)
|
@@ -5852,6 +5884,13 @@ module Google
|
|
5852
5884
|
class UserId
|
5853
5885
|
include Google::Apis::Core::Hashable
|
5854
5886
|
|
5887
|
+
# Optional. Opaque, server-assigned ID of the user profile associated with App/
|
5888
|
+
# user acting on behalf of the human user. This is currently only set when a 3P
|
5889
|
+
# application is acting on the user's behalf.
|
5890
|
+
# Corresponds to the JSON property `actingUserId`
|
5891
|
+
# @return [String]
|
5892
|
+
attr_accessor :acting_user_id
|
5893
|
+
|
5855
5894
|
# Opaque, server-assigned ID of the User.
|
5856
5895
|
# Corresponds to the JSON property `id`
|
5857
5896
|
# @return [String]
|
@@ -5876,6 +5915,7 @@ module Google
|
|
5876
5915
|
|
5877
5916
|
# Update properties of this object
|
5878
5917
|
def update!(**args)
|
5918
|
+
@acting_user_id = args[:acting_user_id] if args.key?(:acting_user_id)
|
5879
5919
|
@id = args[:id] if args.key?(:id)
|
5880
5920
|
@origin_app_id = args[:origin_app_id] if args.key?(:origin_app_id)
|
5881
5921
|
@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.26.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 = "20220411"
|
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
|
@@ -2615,6 +2619,7 @@ module Google
|
|
2615
2619
|
property :description, as: 'description'
|
2616
2620
|
property :group_id, as: 'groupId', class: Google::Apis::CloudsearchV1::GroupId, decorator: Google::Apis::CloudsearchV1::GroupId::Representation
|
2617
2621
|
|
2622
|
+
property :inviter_email, as: 'inviterEmail'
|
2618
2623
|
property :is_external, as: 'isExternal'
|
2619
2624
|
property :name, as: 'name'
|
2620
2625
|
property :num_members, as: 'numMembers'
|
@@ -2802,6 +2807,7 @@ module Google
|
|
2802
2807
|
class UserId
|
2803
2808
|
# @private
|
2804
2809
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2810
|
+
property :acting_user_id, as: 'actingUserId'
|
2805
2811
|
property :id, as: 'id'
|
2806
2812
|
property :origin_app_id, as: 'originAppId', class: Google::Apis::CloudsearchV1::AppId, decorator: Google::Apis::CloudsearchV1::AppId::Representation
|
2807
2813
|
|
@@ -51,8 +51,9 @@ module Google
|
|
51
51
|
@batch_path = 'batch'
|
52
52
|
end
|
53
53
|
|
54
|
-
# Checks whether an item is accessible by specified principal.
|
55
|
-
#
|
54
|
+
# Checks whether an item is accessible by specified principal. Principal must be
|
55
|
+
# a user; groups and domain values aren't supported. **Note:** This API requires
|
56
|
+
# an admin account to execute.
|
56
57
|
# @param [String] name
|
57
58
|
# Item name, format: datasources/`source_id`/items/`item_id`
|
58
59
|
# @param [Google::Apis::CloudsearchV1::Principal] principal_object
|
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.26.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-25 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.26.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: []
|