google-apis-cloudsearch_v1 0.36.0 → 0.38.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: '094e732212cb92f0cd16b1932c469bb1d239d2513b866845e258c70638a6fa20'
|
4
|
+
data.tar.gz: 3de85591aec4d6d9527b43c4ab92bd4e7bca922e45805bf740afc7a214aca128
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f7abbc1ca8bed42bd4386b475da8d3e07442e9d8ebe0cf09e98b06e8cfb1d9dc1efdd7aaf7ffbb031cd8291ccc78cc707f81aa5724d5514b8f58f2450849338
|
7
|
+
data.tar.gz: e2f67b3167081697610a359192fa9a9e5fc385db831018cf86da48e381b62e83159aefe83d9f21f23df9b5a129eb9981793842f06aa633d88a5ab6a31415c890
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudsearch_v1
|
2
2
|
|
3
|
+
### v0.38.0 (2022-10-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220927
|
6
|
+
|
7
|
+
### v0.37.0 (2022-10-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220920
|
10
|
+
|
3
11
|
### v0.36.0 (2022-09-20)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20220913
|
@@ -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
|
|
@@ -4837,14 +4844,6 @@ module Google
|
|
4837
4844
|
attr_accessor :present_lock
|
4838
4845
|
alias_method :present_lock?, :present_lock
|
4839
4846
|
|
4840
|
-
# Indicates whether project Dino is currently on or off. WARNING: This is
|
4841
|
-
# currently an experimental field. It should not be used without getting an
|
4842
|
-
# explicit review and approval from the Meet team.
|
4843
|
-
# Corresponds to the JSON property `projectDinoEnabled`
|
4844
|
-
# @return [Boolean]
|
4845
|
-
attr_accessor :project_dino_enabled
|
4846
|
-
alias_method :project_dino_enabled?, :project_dino_enabled
|
4847
|
-
|
4848
4847
|
# Indicates whether the reactions lock is currently on or off.
|
4849
4848
|
# Corresponds to the JSON property `reactionsLock`
|
4850
4849
|
# @return [Boolean]
|
@@ -4870,7 +4869,6 @@ module Google
|
|
4870
4869
|
@cse_enabled = args[:cse_enabled] if args.key?(:cse_enabled)
|
4871
4870
|
@moderation_enabled = args[:moderation_enabled] if args.key?(:moderation_enabled)
|
4872
4871
|
@present_lock = args[:present_lock] if args.key?(:present_lock)
|
4873
|
-
@project_dino_enabled = args[:project_dino_enabled] if args.key?(:project_dino_enabled)
|
4874
4872
|
@reactions_lock = args[:reactions_lock] if args.key?(:reactions_lock)
|
4875
4873
|
@video_lock = args[:video_lock] if args.key?(:video_lock)
|
4876
4874
|
end
|
@@ -13194,7 +13192,8 @@ module Google
|
|
13194
13192
|
# Indicates that users can perform wildcard search for this property. Only
|
13195
13193
|
# supported for Text properties. IsReturnable must be true to set this option.
|
13196
13194
|
# In a given datasource maximum of 5 properties can be marked as
|
13197
|
-
# is_wildcard_searchable.
|
13195
|
+
# is_wildcard_searchable. For more details, see [Define object properties](https:
|
13196
|
+
# //developers.google.com/cloud-search/docs/guides/schema-guide#properties)
|
13198
13197
|
# Corresponds to the JSON property `isWildcardSearchable`
|
13199
13198
|
# @return [Boolean]
|
13200
13199
|
attr_accessor :is_wildcard_searchable
|
@@ -13770,11 +13769,22 @@ module Google
|
|
13770
13769
|
# @return [String]
|
13771
13770
|
attr_accessor :bot_attachment_state
|
13772
13771
|
|
13772
|
+
# Output only. Time when the quoted message was posted in microseconds.
|
13773
|
+
# Corresponds to the JSON property `createTimeMicros`
|
13774
|
+
# @return [Fixnum]
|
13775
|
+
attr_accessor :create_time_micros
|
13776
|
+
|
13773
13777
|
# Primary key for User resource.
|
13774
13778
|
# Corresponds to the JSON property `creatorId`
|
13775
13779
|
# @return [Google::Apis::CloudsearchV1::UserId]
|
13776
13780
|
attr_accessor :creator_id
|
13777
13781
|
|
13782
|
+
# Output only. Time when the quoted message was last edited by a user at the
|
13783
|
+
# time when quoting action happens. Time is in microseconds.
|
13784
|
+
# Corresponds to the JSON property `lastEditTimeMicros`
|
13785
|
+
# @return [Fixnum]
|
13786
|
+
attr_accessor :last_edit_time_micros
|
13787
|
+
|
13778
13788
|
# The `last_update_time` of the original message when the client initiated the
|
13779
13789
|
# quote creation. This is derived from the request payload passed from clients.
|
13780
13790
|
# Used to fetch the quoted message contents at a specific time on the read path.
|
@@ -13804,7 +13814,12 @@ module Google
|
|
13804
13814
|
# @return [String]
|
13805
13815
|
attr_accessor :text_body
|
13806
13816
|
|
13807
|
-
#
|
13817
|
+
# Primary key for User resource.
|
13818
|
+
# Corresponds to the JSON property `updaterId`
|
13819
|
+
# @return [Google::Apis::CloudsearchV1::UserId]
|
13820
|
+
attr_accessor :updater_id
|
13821
|
+
|
13822
|
+
# Output only. Upload metadata of the quoted message.
|
13808
13823
|
# Corresponds to the JSON property `uploadMetadata`
|
13809
13824
|
# @return [Array<Google::Apis::CloudsearchV1::UploadMetadata>]
|
13810
13825
|
attr_accessor :upload_metadata
|
@@ -13818,12 +13833,15 @@ module Google
|
|
13818
13833
|
@annotations = args[:annotations] if args.key?(:annotations)
|
13819
13834
|
@app_profile = args[:app_profile] if args.key?(:app_profile)
|
13820
13835
|
@bot_attachment_state = args[:bot_attachment_state] if args.key?(:bot_attachment_state)
|
13836
|
+
@create_time_micros = args[:create_time_micros] if args.key?(:create_time_micros)
|
13821
13837
|
@creator_id = args[:creator_id] if args.key?(:creator_id)
|
13838
|
+
@last_edit_time_micros = args[:last_edit_time_micros] if args.key?(:last_edit_time_micros)
|
13822
13839
|
@last_update_time_when_quoted_micros = args[:last_update_time_when_quoted_micros] if args.key?(:last_update_time_when_quoted_micros)
|
13823
13840
|
@message_id = args[:message_id] if args.key?(:message_id)
|
13824
13841
|
@message_state = args[:message_state] if args.key?(:message_state)
|
13825
13842
|
@retention_settings = args[:retention_settings] if args.key?(:retention_settings)
|
13826
13843
|
@text_body = args[:text_body] if args.key?(:text_body)
|
13844
|
+
@updater_id = args[:updater_id] if args.key?(:updater_id)
|
13827
13845
|
@upload_metadata = args[:upload_metadata] if args.key?(:upload_metadata)
|
13828
13846
|
end
|
13829
13847
|
end
|
@@ -15449,7 +15467,7 @@ module Google
|
|
15449
15467
|
attr_accessor :chat_lock
|
15450
15468
|
alias_method :chat_lock?, :chat_lock
|
15451
15469
|
|
15452
|
-
# Whether meeting artifacts will be shared with
|
15470
|
+
# Whether meeting artifacts will be shared with cohosts.
|
15453
15471
|
# Corresponds to the JSON property `cohostArtifactSharingEnabled`
|
15454
15472
|
# @return [Boolean]
|
15455
15473
|
attr_accessor :cohost_artifact_sharing_enabled
|
@@ -17083,6 +17101,16 @@ module Google
|
|
17083
17101
|
# @return [Google::Apis::CloudsearchV1::DataSource]
|
17084
17102
|
attr_accessor :source
|
17085
17103
|
|
17104
|
+
# Update mask to control which fields to update. If update_mask is non-empty
|
17105
|
+
# then only the fields specified in the update_mask are updated. If you specify
|
17106
|
+
# a field in the update_mask, but don't specify its value in the source that
|
17107
|
+
# field will be cleared. If the update_mask is not present or empty or has the
|
17108
|
+
# value * then all fields will be updated. Some example field paths: name,
|
17109
|
+
# display_name
|
17110
|
+
# Corresponds to the JSON property `updateMask`
|
17111
|
+
# @return [String]
|
17112
|
+
attr_accessor :update_mask
|
17113
|
+
|
17086
17114
|
def initialize(**args)
|
17087
17115
|
update!(**args)
|
17088
17116
|
end
|
@@ -17091,6 +17119,7 @@ module Google
|
|
17091
17119
|
def update!(**args)
|
17092
17120
|
@debug_options = args[:debug_options] if args.key?(:debug_options)
|
17093
17121
|
@source = args[:source] if args.key?(:source)
|
17122
|
+
@update_mask = args[:update_mask] if args.key?(:update_mask)
|
17094
17123
|
end
|
17095
17124
|
end
|
17096
17125
|
|
@@ -17301,7 +17330,7 @@ module Google
|
|
17301
17330
|
# Note that this is not necessarily the mime type of the http resource. For
|
17302
17331
|
# example a text/html from youtube or vimeo may actually be classified as a
|
17303
17332
|
# video type. Then we shall mark it as video/* since we don't know exactly what
|
17304
|
-
# type of video it is.
|
17333
|
+
# type of video it is.
|
17305
17334
|
# Corresponds to the JSON property `mimeType`
|
17306
17335
|
# @return [String]
|
17307
17336
|
attr_accessor :mime_type
|
@@ -17337,6 +17366,11 @@ module Google
|
|
17337
17366
|
# @return [Google::Apis::CloudsearchV1::SafeUrlProto]
|
17338
17367
|
attr_accessor :url
|
17339
17368
|
|
17369
|
+
# NEXT TAG : 17
|
17370
|
+
# Corresponds to the JSON property `urlSource`
|
17371
|
+
# @return [String]
|
17372
|
+
attr_accessor :url_source
|
17373
|
+
|
17340
17374
|
def initialize(**args)
|
17341
17375
|
update!(**args)
|
17342
17376
|
end
|
@@ -17357,6 +17391,7 @@ module Google
|
|
17357
17391
|
@snippet = args[:snippet] if args.key?(:snippet)
|
17358
17392
|
@title = args[:title] if args.key?(:title)
|
17359
17393
|
@url = args[:url] if args.key?(:url)
|
17394
|
+
@url_source = args[:url_source] if args.key?(:url_source)
|
17360
17395
|
end
|
17361
17396
|
end
|
17362
17397
|
|
@@ -17534,10 +17569,19 @@ module Google
|
|
17534
17569
|
end
|
17535
17570
|
end
|
17536
17571
|
|
17537
|
-
# Contains info regarding the updater of an Activity Feed item. Next Id:
|
17572
|
+
# Contains info regarding the updater of an Activity Feed item. Next Id: 8
|
17538
17573
|
class UserInfo
|
17539
17574
|
include Google::Apis::Core::Hashable
|
17540
17575
|
|
17576
|
+
# Avatar url of the user who triggered the Drive Notification email. This field
|
17577
|
+
# will be populated if we can extract such information from the Drive
|
17578
|
+
# Notification email. This should only be used to fetch user avatars when
|
17579
|
+
# updater_to_show_email is not populated. This field is not set for non-Drive
|
17580
|
+
# Notification items.
|
17581
|
+
# Corresponds to the JSON property `driveNotificationAvatarUrl`
|
17582
|
+
# @return [String]
|
17583
|
+
attr_accessor :drive_notification_avatar_url
|
17584
|
+
|
17541
17585
|
# Describes how updater_count_to_show should be used.
|
17542
17586
|
# Corresponds to the JSON property `updaterCountDisplayType`
|
17543
17587
|
# @return [String]
|
@@ -17549,7 +17593,11 @@ module Google
|
|
17549
17593
|
# @return [Fixnum]
|
17550
17594
|
attr_accessor :updater_count_to_show
|
17551
17595
|
|
17552
|
-
# The email of the updater for clients to show used for Gmail items.
|
17596
|
+
# The email of the updater for clients to show used for Gmail items. For Drive
|
17597
|
+
# Notifications, this is the email of the user who triggered the Drive
|
17598
|
+
# Notification email. This field will be populated if we can extract such
|
17599
|
+
# information from the Drive Notification email. This is not the actual sender
|
17600
|
+
# of the email, as the sender is always comments-noreply@docs.google.com.
|
17553
17601
|
# Corresponds to the JSON property `updaterToShowEmail`
|
17554
17602
|
# @return [String]
|
17555
17603
|
attr_accessor :updater_to_show_email
|
@@ -17560,10 +17608,15 @@ module Google
|
|
17560
17608
|
# @return [Fixnum]
|
17561
17609
|
attr_accessor :updater_to_show_gaia_id
|
17562
17610
|
|
17563
|
-
# The display name of the updater for clients to show used for Gmail items.
|
17564
|
-
#
|
17565
|
-
#
|
17566
|
-
#
|
17611
|
+
# The display name of the updater for clients to show used for Gmail items. For
|
17612
|
+
# non-Drive Notification items, this field will always be populated. If the
|
17613
|
+
# display name cannot be found for the user, the fallback string will be the
|
17614
|
+
# email address. For Drive Notification items, this is the name of the user who
|
17615
|
+
# triggered the Drive notification email. This field will be populated if we can
|
17616
|
+
# extract such information from the Drive Notification email. If the name cannot
|
17617
|
+
# be extracted, then the email will be the fallback string, which is used as the
|
17618
|
+
# display name text in the UI when needed. This is not the actual sender of the
|
17619
|
+
# email, as the sender is always comments-noreply@docs.google.com.
|
17567
17620
|
# Corresponds to the JSON property `updaterToShowName`
|
17568
17621
|
# @return [String]
|
17569
17622
|
attr_accessor :updater_to_show_name
|
@@ -17579,6 +17632,7 @@ module Google
|
|
17579
17632
|
|
17580
17633
|
# Update properties of this object
|
17581
17634
|
def update!(**args)
|
17635
|
+
@drive_notification_avatar_url = args[:drive_notification_avatar_url] if args.key?(:drive_notification_avatar_url)
|
17582
17636
|
@updater_count_display_type = args[:updater_count_display_type] if args.key?(:updater_count_display_type)
|
17583
17637
|
@updater_count_to_show = args[:updater_count_to_show] if args.key?(:updater_count_to_show)
|
17584
17638
|
@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.38.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 = "20220927"
|
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
|
|
@@ -4333,7 +4334,6 @@ module Google
|
|
4333
4334
|
property :cse_enabled, as: 'cseEnabled'
|
4334
4335
|
property :moderation_enabled, as: 'moderationEnabled'
|
4335
4336
|
property :present_lock, as: 'presentLock'
|
4336
|
-
property :project_dino_enabled, as: 'projectDinoEnabled'
|
4337
4337
|
property :reactions_lock, as: 'reactionsLock'
|
4338
4338
|
property :video_lock, as: 'videoLock'
|
4339
4339
|
end
|
@@ -6867,8 +6867,10 @@ module Google
|
|
6867
6867
|
property :app_profile, as: 'appProfile', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedAppProfile, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedAppProfile::Representation
|
6868
6868
|
|
6869
6869
|
property :bot_attachment_state, as: 'botAttachmentState'
|
6870
|
+
property :create_time_micros, :numeric_string => true, as: 'createTimeMicros'
|
6870
6871
|
property :creator_id, as: 'creatorId', class: Google::Apis::CloudsearchV1::UserId, decorator: Google::Apis::CloudsearchV1::UserId::Representation
|
6871
6872
|
|
6873
|
+
property :last_edit_time_micros, :numeric_string => true, as: 'lastEditTimeMicros'
|
6872
6874
|
property :last_update_time_when_quoted_micros, :numeric_string => true, as: 'lastUpdateTimeWhenQuotedMicros'
|
6873
6875
|
property :message_id, as: 'messageId', class: Google::Apis::CloudsearchV1::MessageId, decorator: Google::Apis::CloudsearchV1::MessageId::Representation
|
6874
6876
|
|
@@ -6876,6 +6878,8 @@ module Google
|
|
6876
6878
|
property :retention_settings, as: 'retentionSettings', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedRetentionSettings, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedRetentionSettings::Representation
|
6877
6879
|
|
6878
6880
|
property :text_body, as: 'textBody'
|
6881
|
+
property :updater_id, as: 'updaterId', class: Google::Apis::CloudsearchV1::UserId, decorator: Google::Apis::CloudsearchV1::UserId::Representation
|
6882
|
+
|
6879
6883
|
collection :upload_metadata, as: 'uploadMetadata', class: Google::Apis::CloudsearchV1::UploadMetadata, decorator: Google::Apis::CloudsearchV1::UploadMetadata::Representation
|
6880
6884
|
|
6881
6885
|
end
|
@@ -7823,6 +7827,7 @@ module Google
|
|
7823
7827
|
|
7824
7828
|
property :source, as: 'source', class: Google::Apis::CloudsearchV1::DataSource, decorator: Google::Apis::CloudsearchV1::DataSource::Representation
|
7825
7829
|
|
7830
|
+
property :update_mask, as: 'updateMask'
|
7826
7831
|
end
|
7827
7832
|
end
|
7828
7833
|
|
@@ -7887,6 +7892,7 @@ module Google
|
|
7887
7892
|
property :title, as: 'title'
|
7888
7893
|
property :url, as: 'url', class: Google::Apis::CloudsearchV1::SafeUrlProto, decorator: Google::Apis::CloudsearchV1::SafeUrlProto::Representation
|
7889
7894
|
|
7895
|
+
property :url_source, as: 'urlSource'
|
7890
7896
|
end
|
7891
7897
|
end
|
7892
7898
|
|
@@ -7938,6 +7944,7 @@ module Google
|
|
7938
7944
|
class UserInfo
|
7939
7945
|
# @private
|
7940
7946
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7947
|
+
property :drive_notification_avatar_url, as: 'driveNotificationAvatarUrl'
|
7941
7948
|
property :updater_count_display_type, as: 'updaterCountDisplayType'
|
7942
7949
|
property :updater_count_to_show, as: 'updaterCountToShow'
|
7943
7950
|
property :updater_to_show_email, as: 'updaterToShowEmail'
|
@@ -1213,6 +1213,13 @@ module Google
|
|
1213
1213
|
# @param [Boolean] debug_options_enable_debugging
|
1214
1214
|
# If you are asked by Google to help with debugging, set this field. Otherwise,
|
1215
1215
|
# ignore this field.
|
1216
|
+
# @param [String] update_mask
|
1217
|
+
# Update mask to control which fields to update. If update_mask is non-empty
|
1218
|
+
# then only the fields specified in the update_mask are updated. If you specify
|
1219
|
+
# a field in the update_mask, but don't specify its value in the source that
|
1220
|
+
# field will be cleared. If the update_mask is not present or empty or has the
|
1221
|
+
# value * then all fields will be updated. Some example field paths: name,
|
1222
|
+
# display_name
|
1216
1223
|
# @param [String] fields
|
1217
1224
|
# Selector specifying which fields to include in a partial response.
|
1218
1225
|
# @param [String] quota_user
|
@@ -1230,7 +1237,7 @@ module Google
|
|
1230
1237
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1231
1238
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1232
1239
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1233
|
-
def patch_setting_datasource(name, data_source_object = nil, debug_options_enable_debugging: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1240
|
+
def patch_setting_datasource(name, data_source_object = nil, debug_options_enable_debugging: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1234
1241
|
command = make_simple_command(:patch, 'v1/settings/{+name}', options)
|
1235
1242
|
command.request_representation = Google::Apis::CloudsearchV1::DataSource::Representation
|
1236
1243
|
command.request_object = data_source_object
|
@@ -1238,6 +1245,7 @@ module Google
|
|
1238
1245
|
command.response_class = Google::Apis::CloudsearchV1::Operation
|
1239
1246
|
command.params['name'] = name unless name.nil?
|
1240
1247
|
command.query['debugOptions.enableDebugging'] = debug_options_enable_debugging unless debug_options_enable_debugging.nil?
|
1248
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1241
1249
|
command.query['fields'] = fields unless fields.nil?
|
1242
1250
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1243
1251
|
execute_or_queue_command(command, &block)
|
@@ -1425,6 +1433,13 @@ module Google
|
|
1425
1433
|
# The name of the Search Application. Format: searchapplications/`application_id`
|
1426
1434
|
# .
|
1427
1435
|
# @param [Google::Apis::CloudsearchV1::SearchApplication] search_application_object
|
1436
|
+
# @param [String] update_mask
|
1437
|
+
# Update mask to control which fields to update. If update_mask is non-empty
|
1438
|
+
# then only the fields specified in the update_mask are updated. If you specify
|
1439
|
+
# a field in the update_mask, but don't specify its value in the
|
1440
|
+
# search_application then that field will be cleared. If the update_mask is not
|
1441
|
+
# present or empty or has the value * then all fields will be updated. Some
|
1442
|
+
# example field paths: search_application.name, search_application.display_name
|
1428
1443
|
# @param [String] fields
|
1429
1444
|
# Selector specifying which fields to include in a partial response.
|
1430
1445
|
# @param [String] quota_user
|
@@ -1442,13 +1457,14 @@ module Google
|
|
1442
1457
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1443
1458
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1444
1459
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1445
|
-
def patch_setting_searchapplication(name, search_application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1460
|
+
def patch_setting_searchapplication(name, search_application_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1446
1461
|
command = make_simple_command(:patch, 'v1/settings/{+name}', options)
|
1447
1462
|
command.request_representation = Google::Apis::CloudsearchV1::SearchApplication::Representation
|
1448
1463
|
command.request_object = search_application_object
|
1449
1464
|
command.response_representation = Google::Apis::CloudsearchV1::Operation::Representation
|
1450
1465
|
command.response_class = Google::Apis::CloudsearchV1::Operation
|
1451
1466
|
command.params['name'] = name unless name.nil?
|
1467
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1452
1468
|
command.query['fields'] = fields unless fields.nil?
|
1453
1469
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1454
1470
|
execute_or_queue_command(command, &block)
|
@@ -1495,6 +1511,13 @@ module Google
|
|
1495
1511
|
# The name of the Search Application. Format: searchapplications/`application_id`
|
1496
1512
|
# .
|
1497
1513
|
# @param [Google::Apis::CloudsearchV1::SearchApplication] search_application_object
|
1514
|
+
# @param [String] update_mask
|
1515
|
+
# Update mask to control which fields to update. If update_mask is non-empty
|
1516
|
+
# then only the fields specified in the update_mask are updated. If you specify
|
1517
|
+
# a field in the update_mask, but don't specify its value in the
|
1518
|
+
# search_application then that field will be cleared. If the update_mask is not
|
1519
|
+
# present or empty or has the value * then all fields will be updated. Some
|
1520
|
+
# example field paths: search_application.name, search_application.display_name
|
1498
1521
|
# @param [String] fields
|
1499
1522
|
# Selector specifying which fields to include in a partial response.
|
1500
1523
|
# @param [String] quota_user
|
@@ -1512,13 +1535,14 @@ module Google
|
|
1512
1535
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1513
1536
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1514
1537
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1515
|
-
def update_setting_searchapplication(name, search_application_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1538
|
+
def update_setting_searchapplication(name, search_application_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1516
1539
|
command = make_simple_command(:put, 'v1/settings/{+name}', options)
|
1517
1540
|
command.request_representation = Google::Apis::CloudsearchV1::SearchApplication::Representation
|
1518
1541
|
command.request_object = search_application_object
|
1519
1542
|
command.response_representation = Google::Apis::CloudsearchV1::Operation::Representation
|
1520
1543
|
command.response_class = Google::Apis::CloudsearchV1::Operation
|
1521
1544
|
command.params['name'] = name unless name.nil?
|
1545
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1522
1546
|
command.query['fields'] = fields unless fields.nil?
|
1523
1547
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1524
1548
|
execute_or_queue_command(command, &block)
|
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.38.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-17 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.38.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: []
|