google-apis-cloudsearch_v1 0.36.0 → 0.37.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: 6ea9d3eb1bb8235c45fedff21a43ff54bc310932457f17525359837759d129e7
|
4
|
+
data.tar.gz: 744d7734481e6021fc52b38c6a38f55c31abadeb6bb1fa3234bf4df3440a249b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22858ac3e2deadf2477bef4a10df30efc024759f2af1740c05dacd4f6326e8f53761b1c33fe3612cd9a4b87c571e170372fdbb83e37167ff95586dc19a70a340
|
7
|
+
data.tar.gz: ca8059e2f6cdda99209e26eb946613acdb84a772eb5146ed17e2ec75ff47d3bdaf15b0f290894a504749bb15c3cab35f17b9041ef01346b4e49044d4daa6d76c
|
data/CHANGELOG.md
CHANGED
@@ -612,7 +612,7 @@ module Google
|
|
612
612
|
# @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedChatItem]
|
613
613
|
attr_accessor :chat_item
|
614
614
|
|
615
|
-
# Contains info regarding the updater of an Activity Feed item. Next Id:
|
615
|
+
# Contains info regarding the updater of an Activity Feed item. Next Id: 8
|
616
616
|
# Corresponds to the JSON property `sharedUserInfo`
|
617
617
|
# @return [Google::Apis::CloudsearchV1::UserInfo]
|
618
618
|
attr_accessor :shared_user_info
|
@@ -4396,6 +4396,11 @@ module Google
|
|
4396
4396
|
class BotInfo
|
4397
4397
|
include Google::Apis::Core::Hashable
|
4398
4398
|
|
4399
|
+
#
|
4400
|
+
# Corresponds to the JSON property `appAllowlistStatus`
|
4401
|
+
# @return [String]
|
4402
|
+
attr_accessor :app_allowlist_status
|
4403
|
+
|
4399
4404
|
# Identifier of an App.
|
4400
4405
|
# Corresponds to the JSON property `appId`
|
4401
4406
|
# @return [Google::Apis::CloudsearchV1::AppId]
|
@@ -4433,6 +4438,12 @@ module Google
|
|
4433
4438
|
# @return [String]
|
4434
4439
|
attr_accessor :status
|
4435
4440
|
|
4441
|
+
# If the app supports a home screen.
|
4442
|
+
# Corresponds to the JSON property `supportHomeScreen`
|
4443
|
+
# @return [Boolean]
|
4444
|
+
attr_accessor :support_home_screen
|
4445
|
+
alias_method :support_home_screen?, :support_home_screen
|
4446
|
+
|
4436
4447
|
# Urls with additional bot related information.
|
4437
4448
|
# Corresponds to the JSON property `supportUrls`
|
4438
4449
|
# @return [Google::Apis::CloudsearchV1::SupportUrls]
|
@@ -4445,17 +4456,13 @@ module Google
|
|
4445
4456
|
# @return [Array<String>]
|
4446
4457
|
attr_accessor :supported_uses
|
4447
4458
|
|
4448
|
-
#
|
4449
|
-
# Corresponds to the JSON property `whitelistStatus`
|
4450
|
-
# @return [String]
|
4451
|
-
attr_accessor :whitelist_status
|
4452
|
-
|
4453
4459
|
def initialize(**args)
|
4454
4460
|
update!(**args)
|
4455
4461
|
end
|
4456
4462
|
|
4457
4463
|
# Update properties of this object
|
4458
4464
|
def update!(**args)
|
4465
|
+
@app_allowlist_status = args[:app_allowlist_status] if args.key?(:app_allowlist_status)
|
4459
4466
|
@app_id = args[:app_id] if args.key?(:app_id)
|
4460
4467
|
@bot_avatar_url = args[:bot_avatar_url] if args.key?(:bot_avatar_url)
|
4461
4468
|
@bot_name = args[:bot_name] if args.key?(:bot_name)
|
@@ -4463,9 +4470,9 @@ module Google
|
|
4463
4470
|
@developer_name = args[:developer_name] if args.key?(:developer_name)
|
4464
4471
|
@market_place_banner_url = args[:market_place_banner_url] if args.key?(:market_place_banner_url)
|
4465
4472
|
@status = args[:status] if args.key?(:status)
|
4473
|
+
@support_home_screen = args[:support_home_screen] if args.key?(:support_home_screen)
|
4466
4474
|
@support_urls = args[:support_urls] if args.key?(:support_urls)
|
4467
4475
|
@supported_uses = args[:supported_uses] if args.key?(:supported_uses)
|
4468
|
-
@whitelist_status = args[:whitelist_status] if args.key?(:whitelist_status)
|
4469
4476
|
end
|
4470
4477
|
end
|
4471
4478
|
|
@@ -13194,7 +13201,8 @@ module Google
|
|
13194
13201
|
# Indicates that users can perform wildcard search for this property. Only
|
13195
13202
|
# supported for Text properties. IsReturnable must be true to set this option.
|
13196
13203
|
# In a given datasource maximum of 5 properties can be marked as
|
13197
|
-
# is_wildcard_searchable.
|
13204
|
+
# is_wildcard_searchable. For more details, see [Define object properties](https:
|
13205
|
+
# //developers.google.com/cloud-search/docs/guides/schema-guide#properties)
|
13198
13206
|
# Corresponds to the JSON property `isWildcardSearchable`
|
13199
13207
|
# @return [Boolean]
|
13200
13208
|
attr_accessor :is_wildcard_searchable
|
@@ -15449,7 +15457,7 @@ module Google
|
|
15449
15457
|
attr_accessor :chat_lock
|
15450
15458
|
alias_method :chat_lock?, :chat_lock
|
15451
15459
|
|
15452
|
-
# Whether meeting artifacts will be shared with
|
15460
|
+
# Whether meeting artifacts will be shared with cohosts.
|
15453
15461
|
# Corresponds to the JSON property `cohostArtifactSharingEnabled`
|
15454
15462
|
# @return [Boolean]
|
15455
15463
|
attr_accessor :cohost_artifact_sharing_enabled
|
@@ -17301,7 +17309,7 @@ module Google
|
|
17301
17309
|
# Note that this is not necessarily the mime type of the http resource. For
|
17302
17310
|
# example a text/html from youtube or vimeo may actually be classified as a
|
17303
17311
|
# video type. Then we shall mark it as video/* since we don't know exactly what
|
17304
|
-
# type of video it is.
|
17312
|
+
# type of video it is.
|
17305
17313
|
# Corresponds to the JSON property `mimeType`
|
17306
17314
|
# @return [String]
|
17307
17315
|
attr_accessor :mime_type
|
@@ -17337,6 +17345,11 @@ module Google
|
|
17337
17345
|
# @return [Google::Apis::CloudsearchV1::SafeUrlProto]
|
17338
17346
|
attr_accessor :url
|
17339
17347
|
|
17348
|
+
# NEXT TAG : 17
|
17349
|
+
# Corresponds to the JSON property `urlSource`
|
17350
|
+
# @return [String]
|
17351
|
+
attr_accessor :url_source
|
17352
|
+
|
17340
17353
|
def initialize(**args)
|
17341
17354
|
update!(**args)
|
17342
17355
|
end
|
@@ -17357,6 +17370,7 @@ module Google
|
|
17357
17370
|
@snippet = args[:snippet] if args.key?(:snippet)
|
17358
17371
|
@title = args[:title] if args.key?(:title)
|
17359
17372
|
@url = args[:url] if args.key?(:url)
|
17373
|
+
@url_source = args[:url_source] if args.key?(:url_source)
|
17360
17374
|
end
|
17361
17375
|
end
|
17362
17376
|
|
@@ -17534,10 +17548,20 @@ module Google
|
|
17534
17548
|
end
|
17535
17549
|
end
|
17536
17550
|
|
17537
|
-
# Contains info regarding the updater of an Activity Feed item. Next Id:
|
17551
|
+
# Contains info regarding the updater of an Activity Feed item. Next Id: 8
|
17538
17552
|
class UserInfo
|
17539
17553
|
include Google::Apis::Core::Hashable
|
17540
17554
|
|
17555
|
+
# Avatar url of the user who triggered the Drive Notification email. This field
|
17556
|
+
# will be populated if we can extract such information from the Drive
|
17557
|
+
# Notification email. This should only be used to fetch user avatars when
|
17558
|
+
# updater_to_show_email is not populated. This field is not set for non-Drive
|
17559
|
+
# Notification items. This is not the actual sender of the email, as the sender
|
17560
|
+
# is always comments-noreply@docs.google.com.
|
17561
|
+
# Corresponds to the JSON property `driveNotificationAvatarUrl`
|
17562
|
+
# @return [String]
|
17563
|
+
attr_accessor :drive_notification_avatar_url
|
17564
|
+
|
17541
17565
|
# Describes how updater_count_to_show should be used.
|
17542
17566
|
# Corresponds to the JSON property `updaterCountDisplayType`
|
17543
17567
|
# @return [String]
|
@@ -17549,7 +17573,11 @@ module Google
|
|
17549
17573
|
# @return [Fixnum]
|
17550
17574
|
attr_accessor :updater_count_to_show
|
17551
17575
|
|
17552
|
-
# The email of the updater for clients to show used for Gmail items.
|
17576
|
+
# The email of the updater for clients to show used for Gmail items. For Drive
|
17577
|
+
# Notifications, this is the email of the user who triggered the Drive
|
17578
|
+
# Notification email. This field will be populated if we can extract such
|
17579
|
+
# information from the Drive Notification email. This is not the actual sender
|
17580
|
+
# of the email, as the sender is always comments-noreply@docs.google.com.
|
17553
17581
|
# Corresponds to the JSON property `updaterToShowEmail`
|
17554
17582
|
# @return [String]
|
17555
17583
|
attr_accessor :updater_to_show_email
|
@@ -17560,10 +17588,14 @@ module Google
|
|
17560
17588
|
# @return [Fixnum]
|
17561
17589
|
attr_accessor :updater_to_show_gaia_id
|
17562
17590
|
|
17563
|
-
# The display name of the updater for clients to show used for Gmail items.
|
17564
|
-
#
|
17565
|
-
#
|
17566
|
-
#
|
17591
|
+
# The display name of the updater for clients to show used for Gmail items. For
|
17592
|
+
# non-Drive Notification items, this field will always be populated. If the
|
17593
|
+
# display name cannot be found for the user, the fallback string will be the
|
17594
|
+
# email address. For Drive Notification items, this is the email of the user who
|
17595
|
+
# triggered the Drive notification email. This field will be populated if we can
|
17596
|
+
# extract such information from the Drive Notification email. This is not the
|
17597
|
+
# actual sender of the email, as the sender is always comments-noreply@docs.
|
17598
|
+
# google.com.
|
17567
17599
|
# Corresponds to the JSON property `updaterToShowName`
|
17568
17600
|
# @return [String]
|
17569
17601
|
attr_accessor :updater_to_show_name
|
@@ -17579,6 +17611,7 @@ module Google
|
|
17579
17611
|
|
17580
17612
|
# Update properties of this object
|
17581
17613
|
def update!(**args)
|
17614
|
+
@drive_notification_avatar_url = args[:drive_notification_avatar_url] if args.key?(:drive_notification_avatar_url)
|
17582
17615
|
@updater_count_display_type = args[:updater_count_display_type] if args.key?(:updater_count_display_type)
|
17583
17616
|
@updater_count_to_show = args[:updater_count_to_show] if args.key?(:updater_count_to_show)
|
17584
17617
|
@updater_to_show_email = args[:updater_to_show_email] if args.key?(:updater_to_show_email)
|
@@ -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.37.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220920"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4215,6 +4215,7 @@ module Google
|
|
4215
4215
|
class BotInfo
|
4216
4216
|
# @private
|
4217
4217
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4218
|
+
property :app_allowlist_status, as: 'appAllowlistStatus'
|
4218
4219
|
property :app_id, as: 'appId', class: Google::Apis::CloudsearchV1::AppId, decorator: Google::Apis::CloudsearchV1::AppId::Representation
|
4219
4220
|
|
4220
4221
|
property :bot_avatar_url, as: 'botAvatarUrl'
|
@@ -4223,10 +4224,10 @@ module Google
|
|
4223
4224
|
property :developer_name, as: 'developerName'
|
4224
4225
|
property :market_place_banner_url, as: 'marketPlaceBannerUrl'
|
4225
4226
|
property :status, as: 'status'
|
4227
|
+
property :support_home_screen, as: 'supportHomeScreen'
|
4226
4228
|
property :support_urls, as: 'supportUrls', class: Google::Apis::CloudsearchV1::SupportUrls, decorator: Google::Apis::CloudsearchV1::SupportUrls::Representation
|
4227
4229
|
|
4228
4230
|
collection :supported_uses, as: 'supportedUses'
|
4229
|
-
property :whitelist_status, as: 'whitelistStatus'
|
4230
4231
|
end
|
4231
4232
|
end
|
4232
4233
|
|
@@ -7887,6 +7888,7 @@ module Google
|
|
7887
7888
|
property :title, as: 'title'
|
7888
7889
|
property :url, as: 'url', class: Google::Apis::CloudsearchV1::SafeUrlProto, decorator: Google::Apis::CloudsearchV1::SafeUrlProto::Representation
|
7889
7890
|
|
7891
|
+
property :url_source, as: 'urlSource'
|
7890
7892
|
end
|
7891
7893
|
end
|
7892
7894
|
|
@@ -7938,6 +7940,7 @@ module Google
|
|
7938
7940
|
class UserInfo
|
7939
7941
|
# @private
|
7940
7942
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7943
|
+
property :drive_notification_avatar_url, as: 'driveNotificationAvatarUrl'
|
7941
7944
|
property :updater_count_display_type, as: 'updaterCountDisplayType'
|
7942
7945
|
property :updater_count_to_show, as: 'updaterCountToShow'
|
7943
7946
|
property :updater_to_show_email, as: 'updaterToShowEmail'
|
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.37.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-10-03 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.37.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: []
|