google-apis-cloudsearch_v1 0.43.0 → 0.44.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: 29a124695739e03e41ba22bf4a500f1539435f2e66738dc1fd68a1885da8c38f
|
|
4
|
+
data.tar.gz: e2763479b00afc7b5bec8a62349f9ae8a2dabdfac9b2cd34a91f994cfab271c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f1ec8799a30442c900afecd4227052210eb6b8dbc87607c8d597847602cb055e4a4009efda4112961805fbb06a4561b01b5753fdd426d346bbd0f1543e5e332
|
|
7
|
+
data.tar.gz: 8e4ae9e212cf9e776afc6b2a546e5128b8526798e26a01cddaa210f5e5130571e3bcf1b8e9a1a5233998f22760c1fddde83dfc2ee6ed39d282ebf384f5d76696
|
data/CHANGELOG.md
CHANGED
|
@@ -382,9 +382,11 @@ module Google
|
|
|
382
382
|
# @return [Fixnum]
|
|
383
383
|
attr_accessor :length
|
|
384
384
|
|
|
385
|
-
# A
|
|
386
|
-
#
|
|
387
|
-
#
|
|
385
|
+
# * A client-assigned ID for this annotation. This is helpful in matching the
|
|
386
|
+
# back-filled annotations to the original annotations on client side, without
|
|
387
|
+
# having to re-parse the message. There is no guarantee an annotation has a
|
|
388
|
+
# local_id, it's a purely client used and controlled field with no guarantee of
|
|
389
|
+
# uniqueness.
|
|
388
390
|
# Corresponds to the JSON property `localId`
|
|
389
391
|
# @return [String]
|
|
390
392
|
attr_accessor :local_id
|
|
@@ -434,8 +436,13 @@ module Google
|
|
|
434
436
|
# @return [String]
|
|
435
437
|
attr_accessor :type
|
|
436
438
|
|
|
437
|
-
# A unique server-assigned ID for this annotation. This is helpful in matching
|
|
438
|
-
# annotation objects when fetched from service.
|
|
439
|
+
# * A unique server-assigned ID for this annotation. This is helpful in matching
|
|
440
|
+
# annotation objects when fetched from service. All uploads should have a
|
|
441
|
+
# unique_id after the message they are attached to is successfully sent. Url
|
|
442
|
+
# annotations that originally were uploads (i.e. policy violations) will have a
|
|
443
|
+
# unique_id after the message they are attached to is successfully sent. No
|
|
444
|
+
# other url annotations should have a unique_id. All drive annotations should
|
|
445
|
+
# have a unique_id after the message they are attached to is successfully sent.
|
|
439
446
|
# Corresponds to the JSON property `uniqueId`
|
|
440
447
|
# @return [String]
|
|
441
448
|
attr_accessor :unique_id
|
|
@@ -7755,6 +7762,11 @@ module Google
|
|
|
7755
7762
|
# @return [Float]
|
|
7756
7763
|
attr_accessor :joined_space_affinity_score
|
|
7757
7764
|
|
|
7765
|
+
#
|
|
7766
|
+
# Corresponds to the JSON property `lastReadTimestampAgeInDays`
|
|
7767
|
+
# @return [Float]
|
|
7768
|
+
attr_accessor :last_read_timestamp_age_in_days
|
|
7769
|
+
|
|
7758
7770
|
#
|
|
7759
7771
|
# Corresponds to the JSON property `messageAgeInDays`
|
|
7760
7772
|
# @return [Float]
|
|
@@ -7800,6 +7812,7 @@ module Google
|
|
|
7800
7812
|
@final_score = args[:final_score] if args.key?(:final_score)
|
|
7801
7813
|
@freshness_score = args[:freshness_score] if args.key?(:freshness_score)
|
|
7802
7814
|
@joined_space_affinity_score = args[:joined_space_affinity_score] if args.key?(:joined_space_affinity_score)
|
|
7815
|
+
@last_read_timestamp_age_in_days = args[:last_read_timestamp_age_in_days] if args.key?(:last_read_timestamp_age_in_days)
|
|
7803
7816
|
@message_age_in_days = args[:message_age_in_days] if args.key?(:message_age_in_days)
|
|
7804
7817
|
@message_sender_affinity_score = args[:message_sender_affinity_score] if args.key?(:message_sender_affinity_score)
|
|
7805
7818
|
@space_id = args[:space_id] if args.key?(:space_id)
|
|
@@ -20434,8 +20447,9 @@ module Google
|
|
|
20434
20447
|
class UploadMetadata
|
|
20435
20448
|
include Google::Apis::Core::Hashable
|
|
20436
20449
|
|
|
20437
|
-
# Opaque token. Clients shall simply pass it back to the Backend.
|
|
20438
|
-
#
|
|
20450
|
+
# Opaque token. Clients shall simply pass it back to the Backend. There is no
|
|
20451
|
+
# guarantee the attachment_token returned on subsequent reads is the same even
|
|
20452
|
+
# if nothing has changed. This field will NOT be saved into storage.
|
|
20439
20453
|
# Corresponds to the JSON property `attachmentToken`
|
|
20440
20454
|
# @return [String]
|
|
20441
20455
|
attr_accessor :attachment_token
|
|
@@ -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.44.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 = "20230131"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -5708,6 +5708,7 @@ module Google
|
|
|
5708
5708
|
property :final_score, as: 'finalScore'
|
|
5709
5709
|
property :freshness_score, as: 'freshnessScore'
|
|
5710
5710
|
property :joined_space_affinity_score, as: 'joinedSpaceAffinityScore'
|
|
5711
|
+
property :last_read_timestamp_age_in_days, as: 'lastReadTimestampAgeInDays'
|
|
5711
5712
|
property :message_age_in_days, as: 'messageAgeInDays'
|
|
5712
5713
|
property :message_sender_affinity_score, as: 'messageSenderAffinityScore'
|
|
5713
5714
|
property :space_id, :numeric_string => true, as: 'spaceId'
|
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.44.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-02-
|
|
11
|
+
date: 2023-02-12 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.44.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: []
|