google-apis-cloudsearch_v1 0.45.0 → 0.47.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55315fcb4de9636b71e89547ec824d0bd6c7fd13f5fbbf6e72dfa00a0dd16952
|
4
|
+
data.tar.gz: 2e1419b646729c00283e79cae554371cfc68228e647e442610e8bb80d32b3025
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18def3b5e930c2eb70649769e76b91aa2c289a558a787855f67c542daf611fc3c61d36d4b099eaa456abbe886e8c471f8111d466151e00d6993947f10cd5b9aa
|
7
|
+
data.tar.gz: ca865c07875eaa6ae8e62ddb17addec1eec16072820528bec30bd7c5358c77bcad035696703d0c94ebcbc5218526358a70ff7aacb9be9e8861182d93ba4ad30f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudsearch_v1
|
2
2
|
|
3
|
+
### v0.47.0 (2023-03-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230307
|
6
|
+
|
7
|
+
### v0.46.0 (2023-03-05)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230228
|
10
|
+
|
3
11
|
### v0.45.0 (2023-02-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230221
|
@@ -3297,6 +3297,15 @@ module Google
|
|
3297
3297
|
# @return [String]
|
3298
3298
|
attr_accessor :known_icon
|
3299
3299
|
|
3300
|
+
# A [Google Font Icon](https://fonts.google.com/icons), which includes over 2500+
|
3301
|
+
# options. For example, to display a [check box icon](https://fonts.google.com/
|
3302
|
+
# icons?selected=Material%20Symbols%20Outlined%3Acheck_box%3AFILL%400%3Bwght%
|
3303
|
+
# 40400%3BGRAD%400%3Bopsz%4048) with customized weight and grade, write ` "name":
|
3304
|
+
# "check_box", "fill": true, "weight": 300, "grade": -25 `
|
3305
|
+
# Corresponds to the JSON property `materialIcon`
|
3306
|
+
# @return [Google::Apis::CloudsearchV1::AppsDynamiteStorageMaterialIcon]
|
3307
|
+
attr_accessor :material_icon
|
3308
|
+
|
3300
3309
|
def initialize(**args)
|
3301
3310
|
update!(**args)
|
3302
3311
|
end
|
@@ -3307,6 +3316,7 @@ module Google
|
|
3307
3316
|
@icon_url = args[:icon_url] if args.key?(:icon_url)
|
3308
3317
|
@image_type = args[:image_type] if args.key?(:image_type)
|
3309
3318
|
@known_icon = args[:known_icon] if args.key?(:known_icon)
|
3319
|
+
@material_icon = args[:material_icon] if args.key?(:material_icon)
|
3310
3320
|
end
|
3311
3321
|
end
|
3312
3322
|
|
@@ -3403,6 +3413,58 @@ module Google
|
|
3403
3413
|
end
|
3404
3414
|
end
|
3405
3415
|
|
3416
|
+
# A [Google Font Icon](https://fonts.google.com/icons), which includes over 2500+
|
3417
|
+
# options. For example, to display a [check box icon](https://fonts.google.com/
|
3418
|
+
# icons?selected=Material%20Symbols%20Outlined%3Acheck_box%3AFILL%400%3Bwght%
|
3419
|
+
# 40400%3BGRAD%400%3Bopsz%4048) with customized weight and grade, write ` "name":
|
3420
|
+
# "check_box", "fill": true, "weight": 300, "grade": -25 `
|
3421
|
+
class AppsDynamiteStorageMaterialIcon
|
3422
|
+
include Google::Apis::Core::Hashable
|
3423
|
+
|
3424
|
+
# Whether it renders a filled icon. Default value is false. See Customization in
|
3425
|
+
# [Google Font Icon](https://fonts.google.com/icons) for details.
|
3426
|
+
# Corresponds to the JSON property `fill`
|
3427
|
+
# @return [Boolean]
|
3428
|
+
attr_accessor :fill
|
3429
|
+
alias_method :fill?, :fill
|
3430
|
+
|
3431
|
+
# Weight and grade affect a symbol’s thickness. Adjustments to grade are more
|
3432
|
+
# granular than adjustments to weight and have a small impact on the size of the
|
3433
|
+
# symbol. Choose from `-25, 0, 200`. If absent, default value is 0. If any other
|
3434
|
+
# value is specified, a broken image icon will be displayed. See Customization
|
3435
|
+
# in [Google Font Icon](https://fonts.google.com/icons) for details.
|
3436
|
+
# Corresponds to the JSON property `grade`
|
3437
|
+
# @return [Fixnum]
|
3438
|
+
attr_accessor :grade
|
3439
|
+
|
3440
|
+
# The icon name defined in the [Google Material Icon](https://fonts.google.com/
|
3441
|
+
# icons) in snake_case. e.g. "check_box". Any invalid name will be trimmed as
|
3442
|
+
# empty string result in the icon falied to render.
|
3443
|
+
# Corresponds to the JSON property `name`
|
3444
|
+
# @return [String]
|
3445
|
+
attr_accessor :name
|
3446
|
+
|
3447
|
+
# The stroke weight of the icon. Choose from `100, 200, 300, 400, 500, 600, 700`.
|
3448
|
+
# If absent, default value is 400. If any other value is specified, a broken
|
3449
|
+
# image icon will be displayed. See Customization in [Google Font Icon](https://
|
3450
|
+
# fonts.google.com/icons) for details.
|
3451
|
+
# Corresponds to the JSON property `weight`
|
3452
|
+
# @return [Fixnum]
|
3453
|
+
attr_accessor :weight
|
3454
|
+
|
3455
|
+
def initialize(**args)
|
3456
|
+
update!(**args)
|
3457
|
+
end
|
3458
|
+
|
3459
|
+
# Update properties of this object
|
3460
|
+
def update!(**args)
|
3461
|
+
@fill = args[:fill] if args.key?(:fill)
|
3462
|
+
@grade = args[:grade] if args.key?(:grade)
|
3463
|
+
@name = args[:name] if args.key?(:name)
|
3464
|
+
@weight = args[:weight] if args.key?(:weight)
|
3465
|
+
end
|
3466
|
+
end
|
3467
|
+
|
3406
3468
|
#
|
3407
3469
|
class AppsDynamiteStorageOnClick
|
3408
3470
|
include Google::Apis::Core::Hashable
|
@@ -7329,7 +7391,8 @@ module Google
|
|
7329
7391
|
# scan_outcome should not be set. This flag is used to identify messages that
|
7330
7392
|
# DLP did not attempt to scan for monitoring scan coverage. Contents that DLP
|
7331
7393
|
# attempted to scan but skipped can be identified by DlpScanOutcome.
|
7332
|
-
# SCAN_SKIPPED_* reasons.
|
7394
|
+
# SCAN_SKIPPED_* reasons. DEPRECATED: The prober can determine this from the
|
7395
|
+
# context.
|
7333
7396
|
# Corresponds to the JSON property `scanNotApplicableForContext`
|
7334
7397
|
# @return [Boolean]
|
7335
7398
|
attr_accessor :scan_not_applicable_for_context
|
@@ -7780,6 +7843,11 @@ module Google
|
|
7780
7843
|
attr_accessor :creator_in_searcher_contact_list
|
7781
7844
|
alias_method :creator_in_searcher_contact_list?, :creator_in_searcher_contact_list
|
7782
7845
|
|
7846
|
+
#
|
7847
|
+
# Corresponds to the JSON property `crowdingMultiplier`
|
7848
|
+
# @return [Float]
|
7849
|
+
attr_accessor :crowding_multiplier
|
7850
|
+
|
7783
7851
|
#
|
7784
7852
|
# Corresponds to the JSON property `dasContactCount`
|
7785
7853
|
# @return [Fixnum]
|
@@ -7846,6 +7914,7 @@ module Google
|
|
7846
7914
|
@common_count_to_membership_count_ratio = args[:common_count_to_membership_count_ratio] if args.key?(:common_count_to_membership_count_ratio)
|
7847
7915
|
@creator_gaia_id = args[:creator_gaia_id] if args.key?(:creator_gaia_id)
|
7848
7916
|
@creator_in_searcher_contact_list = args[:creator_in_searcher_contact_list] if args.key?(:creator_in_searcher_contact_list)
|
7917
|
+
@crowding_multiplier = args[:crowding_multiplier] if args.key?(:crowding_multiplier)
|
7849
7918
|
@das_contact_count = args[:das_contact_count] if args.key?(:das_contact_count)
|
7850
7919
|
@final_score = args[:final_score] if args.key?(:final_score)
|
7851
7920
|
@freshness_score = args[:freshness_score] if args.key?(:freshness_score)
|
@@ -13404,13 +13473,6 @@ module Google
|
|
13404
13473
|
attr_accessor :deleted_by_vault
|
13405
13474
|
alias_method :deleted_by_vault?, :deleted_by_vault
|
13406
13475
|
|
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
13476
|
# A summary of a DLP scan event. This is a summary and should contain the
|
13415
13477
|
# minimum amount of data required to identify and process DLP scans. It is
|
13416
13478
|
# written to Starcast and encoded & returned to the client on attachment upload.
|
@@ -13617,7 +13679,6 @@ module Google
|
|
13617
13679
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
13618
13680
|
@delete_time_for_requester = args[:delete_time_for_requester] if args.key?(:delete_time_for_requester)
|
13619
13681
|
@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
13682
|
@dlp_scan_summary = args[:dlp_scan_summary] if args.key?(:dlp_scan_summary)
|
13622
13683
|
@editable_by = args[:editable_by] if args.key?(:editable_by)
|
13623
13684
|
@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.47.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 = "20230307"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -580,6 +580,12 @@ module Google
|
|
580
580
|
include Google::Apis::Core::JsonObjectSupport
|
581
581
|
end
|
582
582
|
|
583
|
+
class AppsDynamiteStorageMaterialIcon
|
584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
|
+
|
586
|
+
include Google::Apis::Core::JsonObjectSupport
|
587
|
+
end
|
588
|
+
|
583
589
|
class AppsDynamiteStorageOnClick
|
584
590
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
591
|
|
@@ -4446,6 +4452,8 @@ module Google
|
|
4446
4452
|
property :icon_url, as: 'iconUrl'
|
4447
4453
|
property :image_type, as: 'imageType'
|
4448
4454
|
property :known_icon, as: 'knownIcon'
|
4455
|
+
property :material_icon, as: 'materialIcon', class: Google::Apis::CloudsearchV1::AppsDynamiteStorageMaterialIcon, decorator: Google::Apis::CloudsearchV1::AppsDynamiteStorageMaterialIcon::Representation
|
4456
|
+
|
4449
4457
|
end
|
4450
4458
|
end
|
4451
4459
|
|
@@ -4479,6 +4487,16 @@ module Google
|
|
4479
4487
|
end
|
4480
4488
|
end
|
4481
4489
|
|
4490
|
+
class AppsDynamiteStorageMaterialIcon
|
4491
|
+
# @private
|
4492
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4493
|
+
property :fill, as: 'fill'
|
4494
|
+
property :grade, as: 'grade'
|
4495
|
+
property :name, as: 'name'
|
4496
|
+
property :weight, as: 'weight'
|
4497
|
+
end
|
4498
|
+
end
|
4499
|
+
|
4482
4500
|
class AppsDynamiteStorageOnClick
|
4483
4501
|
# @private
|
4484
4502
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5728,6 +5746,7 @@ module Google
|
|
5728
5746
|
property :common_count_to_membership_count_ratio, as: 'commonCountToMembershipCountRatio'
|
5729
5747
|
property :creator_gaia_id, :numeric_string => true, as: 'creatorGaiaId'
|
5730
5748
|
property :creator_in_searcher_contact_list, as: 'creatorInSearcherContactList'
|
5749
|
+
property :crowding_multiplier, as: 'crowdingMultiplier'
|
5731
5750
|
property :das_contact_count, :numeric_string => true, as: 'dasContactCount'
|
5732
5751
|
property :final_score, as: 'finalScore'
|
5733
5752
|
property :freshness_score, as: 'freshnessScore'
|
@@ -7355,7 +7374,6 @@ module Google
|
|
7355
7374
|
property :delete_time, :numeric_string => true, as: 'deleteTime'
|
7356
7375
|
property :delete_time_for_requester, :numeric_string => true, as: 'deleteTimeForRequester'
|
7357
7376
|
property :deleted_by_vault, as: 'deletedByVault'
|
7358
|
-
property :dlp_scan_outcome, as: 'dlpScanOutcome'
|
7359
7377
|
property :dlp_scan_summary, as: 'dlpScanSummary', class: Google::Apis::CloudsearchV1::DlpScanSummary, decorator: Google::Apis::CloudsearchV1::DlpScanSummary::Representation
|
7360
7378
|
|
7361
7379
|
property :editable_by, as: 'editableBy'
|
@@ -829,13 +829,7 @@ module Google
|
|
829
829
|
end
|
830
830
|
|
831
831
|
# Lists operations that match the specified filter in the request. If the server
|
832
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
833
|
-
# binding allows API services to override the binding to use different resource
|
834
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
835
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
836
|
-
# service configuration. For backwards compatibility, the default name includes
|
837
|
-
# the operations collection id, however overriding users must ensure the name
|
838
|
-
# binding is the parent resource, without the operations collection id.
|
832
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
839
833
|
# @param [String] name
|
840
834
|
# The name of the operation's parent resource.
|
841
835
|
# @param [String] filter
|
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.47.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-19 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.47.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: []
|