google-apis-cloudsearch_v1 0.45.0 → 0.46.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: 233d66701ef45125c9cf64a21c0d99621cead2026d37bff3f81ecaf7fd5705ed
|
|
4
|
+
data.tar.gz: 0c55b7f54deb23eebe13d42ac5370b535916eafa0edf74d54a8b557f306b2d93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a282f72fdacd36d3f827d88a9cde78666cc8c8bc16d34993a6571d69a3eb982f78fd1bd53ec7b8b8a5af9ee84d240cc947947975163447a0f0c6e186e5cd4444
|
|
7
|
+
data.tar.gz: 7b393e0a37770e9716a124854f9490a423d8e8b0c457bcd99e3e3b58238ec8cee068b669e80f40d9a980a768bf2f01025ee0b4c0623b0bbde50e6b84fe7b56ec
|
data/CHANGELOG.md
CHANGED
|
@@ -7329,7 +7329,8 @@ module Google
|
|
|
7329
7329
|
# scan_outcome should not be set. This flag is used to identify messages that
|
|
7330
7330
|
# DLP did not attempt to scan for monitoring scan coverage. Contents that DLP
|
|
7331
7331
|
# attempted to scan but skipped can be identified by DlpScanOutcome.
|
|
7332
|
-
# SCAN_SKIPPED_* reasons.
|
|
7332
|
+
# SCAN_SKIPPED_* reasons. DEPRECATED: The prober can determine this from the
|
|
7333
|
+
# context.
|
|
7333
7334
|
# Corresponds to the JSON property `scanNotApplicableForContext`
|
|
7334
7335
|
# @return [Boolean]
|
|
7335
7336
|
attr_accessor :scan_not_applicable_for_context
|
|
@@ -7780,6 +7781,11 @@ module Google
|
|
|
7780
7781
|
attr_accessor :creator_in_searcher_contact_list
|
|
7781
7782
|
alias_method :creator_in_searcher_contact_list?, :creator_in_searcher_contact_list
|
|
7782
7783
|
|
|
7784
|
+
#
|
|
7785
|
+
# Corresponds to the JSON property `crowdingMultiplier`
|
|
7786
|
+
# @return [Float]
|
|
7787
|
+
attr_accessor :crowding_multiplier
|
|
7788
|
+
|
|
7783
7789
|
#
|
|
7784
7790
|
# Corresponds to the JSON property `dasContactCount`
|
|
7785
7791
|
# @return [Fixnum]
|
|
@@ -7846,6 +7852,7 @@ module Google
|
|
|
7846
7852
|
@common_count_to_membership_count_ratio = args[:common_count_to_membership_count_ratio] if args.key?(:common_count_to_membership_count_ratio)
|
|
7847
7853
|
@creator_gaia_id = args[:creator_gaia_id] if args.key?(:creator_gaia_id)
|
|
7848
7854
|
@creator_in_searcher_contact_list = args[:creator_in_searcher_contact_list] if args.key?(:creator_in_searcher_contact_list)
|
|
7855
|
+
@crowding_multiplier = args[:crowding_multiplier] if args.key?(:crowding_multiplier)
|
|
7849
7856
|
@das_contact_count = args[:das_contact_count] if args.key?(:das_contact_count)
|
|
7850
7857
|
@final_score = args[:final_score] if args.key?(:final_score)
|
|
7851
7858
|
@freshness_score = args[:freshness_score] if args.key?(:freshness_score)
|
|
@@ -13404,13 +13411,6 @@ module Google
|
|
|
13404
13411
|
attr_accessor :deleted_by_vault
|
|
13405
13412
|
alias_method :deleted_by_vault?, :deleted_by_vault
|
|
13406
13413
|
|
|
13407
|
-
# Data Loss Prevention scan information for this message. Messages are evaluated
|
|
13408
|
-
# in the backend on create message/topic and edit message actions. DEPRECATED:
|
|
13409
|
-
# use dlp_scan_summary instead.
|
|
13410
|
-
# Corresponds to the JSON property `dlpScanOutcome`
|
|
13411
|
-
# @return [String]
|
|
13412
|
-
attr_accessor :dlp_scan_outcome
|
|
13413
|
-
|
|
13414
13414
|
# A summary of a DLP scan event. This is a summary and should contain the
|
|
13415
13415
|
# minimum amount of data required to identify and process DLP scans. It is
|
|
13416
13416
|
# written to Starcast and encoded & returned to the client on attachment upload.
|
|
@@ -13617,7 +13617,6 @@ module Google
|
|
|
13617
13617
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
|
13618
13618
|
@delete_time_for_requester = args[:delete_time_for_requester] if args.key?(:delete_time_for_requester)
|
|
13619
13619
|
@deleted_by_vault = args[:deleted_by_vault] if args.key?(:deleted_by_vault)
|
|
13620
|
-
@dlp_scan_outcome = args[:dlp_scan_outcome] if args.key?(:dlp_scan_outcome)
|
|
13621
13620
|
@dlp_scan_summary = args[:dlp_scan_summary] if args.key?(:dlp_scan_summary)
|
|
13622
13621
|
@editable_by = args[:editable_by] if args.key?(:editable_by)
|
|
13623
13622
|
@fallback_text = args[:fallback_text] if args.key?(:fallback_text)
|
|
@@ -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.46.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230228"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -5728,6 +5728,7 @@ module Google
|
|
|
5728
5728
|
property :common_count_to_membership_count_ratio, as: 'commonCountToMembershipCountRatio'
|
|
5729
5729
|
property :creator_gaia_id, :numeric_string => true, as: 'creatorGaiaId'
|
|
5730
5730
|
property :creator_in_searcher_contact_list, as: 'creatorInSearcherContactList'
|
|
5731
|
+
property :crowding_multiplier, as: 'crowdingMultiplier'
|
|
5731
5732
|
property :das_contact_count, :numeric_string => true, as: 'dasContactCount'
|
|
5732
5733
|
property :final_score, as: 'finalScore'
|
|
5733
5734
|
property :freshness_score, as: 'freshnessScore'
|
|
@@ -7355,7 +7356,6 @@ module Google
|
|
|
7355
7356
|
property :delete_time, :numeric_string => true, as: 'deleteTime'
|
|
7356
7357
|
property :delete_time_for_requester, :numeric_string => true, as: 'deleteTimeForRequester'
|
|
7357
7358
|
property :deleted_by_vault, as: 'deletedByVault'
|
|
7358
|
-
property :dlp_scan_outcome, as: 'dlpScanOutcome'
|
|
7359
7359
|
property :dlp_scan_summary, as: 'dlpScanSummary', class: Google::Apis::CloudsearchV1::DlpScanSummary, decorator: Google::Apis::CloudsearchV1::DlpScanSummary::Representation
|
|
7360
7360
|
|
|
7361
7361
|
property :editable_by, as: 'editableBy'
|
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.46.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-
|
|
11
|
+
date: 2023-03-05 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.46.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: []
|