google-apis-cloudsearch_v1 0.48.0 → 0.50.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: a83f44042e337d80bafdc62a27da90bb71f506d0fc5af6a2e9b5e7b13119ad58
|
4
|
+
data.tar.gz: 5c7c2f598412dc3d091d2cd5c7f343d1e04002af355550f4faa1a8afbdf9c271
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bff3c848e0722bcd2aa9df194f60bbcb3ec6bedccbddcaac723c78278b0f1f9db5de1ba3ff013a966287b09048b79a8f9adc6135060329812ab212ef80e2bba
|
7
|
+
data.tar.gz: 15dd2f9633b10804716ef77a7f1f5f0a9ab274538ce5b3e6effe087bbeff11840126ad5aedaabde2962e79eafc60907803c534691f89ee8fcaf49012f32e7940
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudsearch_v1
|
2
2
|
|
3
|
+
### v0.50.0 (2023-05-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230510
|
6
|
+
|
7
|
+
### v0.49.0 (2023-05-14)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230503
|
10
|
+
|
3
11
|
### v0.48.0 (2023-04-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230321
|
@@ -217,6 +217,51 @@ module Google
|
|
217
217
|
end
|
218
218
|
end
|
219
219
|
|
220
|
+
# Starting state for an individual add-on frame.
|
221
|
+
class AddOnFrameStartingState
|
222
|
+
include Google::Apis::Core::Hashable
|
223
|
+
|
224
|
+
# Additional data internal to the add-on that can be used to initialize itself.
|
225
|
+
# Corresponds to the JSON property `additionalData`
|
226
|
+
# @return [String]
|
227
|
+
attr_accessor :additional_data
|
228
|
+
|
229
|
+
# The uri of the artifact being used for an add-on co-activity.
|
230
|
+
# Corresponds to the JSON property `uri`
|
231
|
+
# @return [String]
|
232
|
+
attr_accessor :uri
|
233
|
+
|
234
|
+
def initialize(**args)
|
235
|
+
update!(**args)
|
236
|
+
end
|
237
|
+
|
238
|
+
# Update properties of this object
|
239
|
+
def update!(**args)
|
240
|
+
@additional_data = args[:additional_data] if args.key?(:additional_data)
|
241
|
+
@uri = args[:uri] if args.key?(:uri)
|
242
|
+
end
|
243
|
+
end
|
244
|
+
|
245
|
+
# Starting state properties for add-on co-activity.
|
246
|
+
class AddOnStartingState
|
247
|
+
include Google::Apis::Core::Hashable
|
248
|
+
|
249
|
+
# List of starting state frames for the add-on co-activity. Keys for this map
|
250
|
+
# are the values of the AddOnFrameType enum.
|
251
|
+
# Corresponds to the JSON property `addOnFrameStartingStates`
|
252
|
+
# @return [Hash<String,Google::Apis::CloudsearchV1::AddOnFrameStartingState>]
|
253
|
+
attr_accessor :add_on_frame_starting_states
|
254
|
+
|
255
|
+
def initialize(**args)
|
256
|
+
update!(**args)
|
257
|
+
end
|
258
|
+
|
259
|
+
# Update properties of this object
|
260
|
+
def update!(**args)
|
261
|
+
@add_on_frame_starting_states = args[:add_on_frame_starting_states] if args.key?(:add_on_frame_starting_states)
|
262
|
+
end
|
263
|
+
end
|
264
|
+
|
220
265
|
#
|
221
266
|
class AddonComposeUiActionMarkup
|
222
267
|
include Google::Apis::Core::Hashable
|
@@ -410,7 +455,7 @@ module Google
|
|
410
455
|
attr_accessor :local_id
|
411
456
|
|
412
457
|
# Annotation metadata to display system messages for membership changes. Next
|
413
|
-
# Tag:
|
458
|
+
# Tag: 13
|
414
459
|
# Corresponds to the JSON property `membershipChanged`
|
415
460
|
# @return [Google::Apis::CloudsearchV1::MembershipChangedMetadata]
|
416
461
|
attr_accessor :membership_changed
|
@@ -534,6 +579,32 @@ module Google
|
|
534
579
|
end
|
535
580
|
end
|
536
581
|
|
582
|
+
# Information about the screen annotation session.
|
583
|
+
class AnnotationInfo
|
584
|
+
include Google::Apis::Core::Hashable
|
585
|
+
|
586
|
+
# The device resource names of other devices which can annotate the screen.
|
587
|
+
# Corresponds to the JSON property `coannotatorDeviceIds`
|
588
|
+
# @return [Array<String>]
|
589
|
+
attr_accessor :coannotator_device_ids
|
590
|
+
|
591
|
+
# Whether the annotation is active.
|
592
|
+
# Corresponds to the JSON property `isActive`
|
593
|
+
# @return [Boolean]
|
594
|
+
attr_accessor :is_active
|
595
|
+
alias_method :is_active?, :is_active
|
596
|
+
|
597
|
+
def initialize(**args)
|
598
|
+
update!(**args)
|
599
|
+
end
|
600
|
+
|
601
|
+
# Update properties of this object
|
602
|
+
def update!(**args)
|
603
|
+
@coannotator_device_ids = args[:coannotator_device_ids] if args.key?(:coannotator_device_ids)
|
604
|
+
@is_active = args[:is_active] if args.key?(:is_active)
|
605
|
+
end
|
606
|
+
end
|
607
|
+
|
537
608
|
# Identifier of an App.
|
538
609
|
class AppId
|
539
610
|
include Google::Apis::Core::Hashable
|
@@ -911,6 +982,11 @@ module Google
|
|
911
982
|
# @return [Google::Apis::CloudsearchV1::DlpScanSummary]
|
912
983
|
attr_accessor :dlp_scan_summary
|
913
984
|
|
985
|
+
# The list of experiments this video is enabled for Next tag: 19
|
986
|
+
# Corresponds to the JSON property `experiment`
|
987
|
+
# @return [Array<String>]
|
988
|
+
attr_accessor :experiment
|
989
|
+
|
914
990
|
# Id representing a group that could be a space, a chat, or a direct message
|
915
991
|
# space. Which ID is set here will determine which group
|
916
992
|
# Corresponds to the JSON property `groupId`
|
@@ -918,7 +994,6 @@ module Google
|
|
918
994
|
attr_accessor :group_id
|
919
995
|
|
920
996
|
# If the uploaded file is a video that has been transcoded on the client side
|
921
|
-
# Next tag: 18
|
922
997
|
# Corresponds to the JSON property `isClientSideTranscodedVideo`
|
923
998
|
# @return [Boolean]
|
924
999
|
attr_accessor :is_client_side_transcoded_video
|
@@ -978,6 +1053,7 @@ module Google
|
|
978
1053
|
@content_type = args[:content_type] if args.key?(:content_type)
|
979
1054
|
@dlp_scan_outcome = args[:dlp_scan_outcome] if args.key?(:dlp_scan_outcome)
|
980
1055
|
@dlp_scan_summary = args[:dlp_scan_summary] if args.key?(:dlp_scan_summary)
|
1056
|
+
@experiment = args[:experiment] if args.key?(:experiment)
|
981
1057
|
@group_id = args[:group_id] if args.key?(:group_id)
|
982
1058
|
@is_client_side_transcoded_video = args[:is_client_side_transcoded_video] if args.key?(:is_client_side_transcoded_video)
|
983
1059
|
@original_dimension = args[:original_dimension] if args.key?(:original_dimension)
|
@@ -1760,6 +1836,11 @@ module Google
|
|
1760
1836
|
# @return [String]
|
1761
1837
|
attr_accessor :meeting_code
|
1762
1838
|
|
1839
|
+
# Required. Type of the meeting. This controls the chat client UX.
|
1840
|
+
# Corresponds to the JSON property `meetingType`
|
1841
|
+
# @return [String]
|
1842
|
+
attr_accessor :meeting_type
|
1843
|
+
|
1763
1844
|
# Required. A URL, in the format "https://meet.google.com/*" (e.g. https://meet.
|
1764
1845
|
# google.com/cxv-zbgj-wzw), to identify and access the meeting space.
|
1765
1846
|
# Corresponds to the JSON property `meetingUrl`
|
@@ -1773,6 +1854,7 @@ module Google
|
|
1773
1854
|
# Update properties of this object
|
1774
1855
|
def update!(**args)
|
1775
1856
|
@meeting_code = args[:meeting_code] if args.key?(:meeting_code)
|
1857
|
+
@meeting_type = args[:meeting_type] if args.key?(:meeting_type)
|
1776
1858
|
@meeting_url = args[:meeting_url] if args.key?(:meeting_url)
|
1777
1859
|
end
|
1778
1860
|
end
|
@@ -1872,6 +1954,29 @@ module Google
|
|
1872
1954
|
end
|
1873
1955
|
end
|
1874
1956
|
|
1957
|
+
# Metadata used to describe how to render a message in search results page, e.g.,
|
1958
|
+
# highlighting and snipetting. In future, we can use this proto to return more
|
1959
|
+
# search specific data attached to a message.
|
1960
|
+
class AppsDynamiteSharedMessageSearchInfo
|
1961
|
+
include Google::Apis::Core::Hashable
|
1962
|
+
|
1963
|
+
# An example use case: clients can use this field to highlight matched segments
|
1964
|
+
# in message text_body defined in http://google3/apps/dynamite/v1/frontend/api/
|
1965
|
+
# message.proto;l=104;rcl=513400736.
|
1966
|
+
# Corresponds to the JSON property `matchedSegmentsInTextBody`
|
1967
|
+
# @return [Array<Google::Apis::CloudsearchV1::AppsDynamiteSharedTextSegmentsWithDescription>]
|
1968
|
+
attr_accessor :matched_segments_in_text_body
|
1969
|
+
|
1970
|
+
def initialize(**args)
|
1971
|
+
update!(**args)
|
1972
|
+
end
|
1973
|
+
|
1974
|
+
# Update properties of this object
|
1975
|
+
def update!(**args)
|
1976
|
+
@matched_segments_in_text_body = args[:matched_segments_in_text_body] if args.key?(:matched_segments_in_text_body)
|
1977
|
+
end
|
1978
|
+
end
|
1979
|
+
|
1875
1980
|
# Contains info about the entity that something is, or is owned by.
|
1876
1981
|
class AppsDynamiteSharedOrganizationInfo
|
1877
1982
|
include Google::Apis::Core::Hashable
|
@@ -2601,7 +2706,8 @@ module Google
|
|
2601
2706
|
end
|
2602
2707
|
end
|
2603
2708
|
|
2604
|
-
#
|
2709
|
+
# The style options for the border of a card or widget, including the border
|
2710
|
+
# type and color.
|
2605
2711
|
class AppsDynamiteStorageBorderStyle
|
2606
2712
|
include Google::Apis::Core::Hashable
|
2607
2713
|
|
@@ -2973,16 +3079,12 @@ module Google
|
|
2973
3079
|
class AppsDynamiteStorageColumns
|
2974
3080
|
include Google::Apis::Core::Hashable
|
2975
3081
|
|
2976
|
-
# Each card supports up to 2 columns.
|
3082
|
+
# Each card supports up to 2 columns. If the user's screen width is less than or
|
3083
|
+
# equal to 480 pixels, the second column wraps below the first column.
|
2977
3084
|
# Corresponds to the JSON property `columnItems`
|
2978
3085
|
# @return [Array<Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumn>]
|
2979
3086
|
attr_accessor :column_items
|
2980
3087
|
|
2981
|
-
# Controls how the column resizes based on screen width.
|
2982
|
-
# Corresponds to the JSON property `wrapStyle`
|
2983
|
-
# @return [String]
|
2984
|
-
attr_accessor :wrap_style
|
2985
|
-
|
2986
3088
|
def initialize(**args)
|
2987
3089
|
update!(**args)
|
2988
3090
|
end
|
@@ -2990,7 +3092,6 @@ module Google
|
|
2990
3092
|
# Update properties of this object
|
2991
3093
|
def update!(**args)
|
2992
3094
|
@column_items = args[:column_items] if args.key?(:column_items)
|
2993
|
-
@wrap_style = args[:wrap_style] if args.key?(:wrap_style)
|
2994
3095
|
end
|
2995
3096
|
end
|
2996
3097
|
|
@@ -3288,7 +3389,8 @@ module Google
|
|
3288
3389
|
class AppsDynamiteStorageGrid
|
3289
3390
|
include Google::Apis::Core::Hashable
|
3290
3391
|
|
3291
|
-
#
|
3392
|
+
# The style options for the border of a card or widget, including the border
|
3393
|
+
# type and color.
|
3292
3394
|
# Corresponds to the JSON property `borderStyle`
|
3293
3395
|
# @return [Google::Apis::CloudsearchV1::AppsDynamiteStorageBorderStyle]
|
3294
3396
|
attr_accessor :border_style
|
@@ -3469,7 +3571,8 @@ module Google
|
|
3469
3571
|
# @return [String]
|
3470
3572
|
attr_accessor :alt_text
|
3471
3573
|
|
3472
|
-
#
|
3574
|
+
# The style options for the border of a card or widget, including the border
|
3575
|
+
# type and color.
|
3473
3576
|
# Corresponds to the JSON property `borderStyle`
|
3474
3577
|
# @return [Google::Apis::CloudsearchV1::AppsDynamiteStorageBorderStyle]
|
3475
3578
|
attr_accessor :border_style
|
@@ -4589,6 +4692,12 @@ module Google
|
|
4589
4692
|
# @return [Google::Apis::CloudsearchV1::AppsDynamiteStorageCard]
|
4590
4693
|
attr_accessor :card_add_on_data
|
4591
4694
|
|
4695
|
+
# Metadata used to describe search information in a specific component of a chat
|
4696
|
+
# message, for example an annotation or an attachment.
|
4697
|
+
# Corresponds to the JSON property `componentSearchInfo`
|
4698
|
+
# @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageComponentSearchInfo]
|
4699
|
+
attr_accessor :component_search_info
|
4700
|
+
|
4592
4701
|
# The markup for developers to specify the contents of a contextual AddOn. A
|
4593
4702
|
# contextual AddOn is triggered in context of an email. For that email, there
|
4594
4703
|
# can be N items that are associated with the email (e.g. contacts, sales lead,
|
@@ -4630,6 +4739,7 @@ module Google
|
|
4630
4739
|
@app_id = args[:app_id] if args.key?(:app_id)
|
4631
4740
|
@attachment_id = args[:attachment_id] if args.key?(:attachment_id)
|
4632
4741
|
@card_add_on_data = args[:card_add_on_data] if args.key?(:card_add_on_data)
|
4742
|
+
@component_search_info = args[:component_search_info] if args.key?(:component_search_info)
|
4633
4743
|
@deprecated_add_on_data = args[:deprecated_add_on_data] if args.key?(:deprecated_add_on_data)
|
4634
4744
|
@slack_data = args[:slack_data] if args.key?(:slack_data)
|
4635
4745
|
@slack_data_image_url_height = args[:slack_data_image_url_height] if args.key?(:slack_data_image_url_height)
|
@@ -5310,6 +5420,11 @@ module Google
|
|
5310
5420
|
# @return [Array<String>]
|
5311
5421
|
attr_accessor :available_access_types
|
5312
5422
|
|
5423
|
+
# Available screen annotation tool types.
|
5424
|
+
# Corresponds to the JSON property `availableAnnotationToolTypes`
|
5425
|
+
# @return [Array<String>]
|
5426
|
+
attr_accessor :available_annotation_tool_types
|
5427
|
+
|
5313
5428
|
# Output only. The set of reactions that clients are allowed to send and can
|
5314
5429
|
# expect to receive. Note that a device in the conference should have the
|
5315
5430
|
# MAY_SEND_REACTIONS privilege to be able to send reactions.
|
@@ -5429,6 +5544,7 @@ module Google
|
|
5429
5544
|
@artifact_owner = args[:artifact_owner] if args.key?(:artifact_owner)
|
5430
5545
|
@attached_documents = args[:attached_documents] if args.key?(:attached_documents)
|
5431
5546
|
@available_access_types = args[:available_access_types] if args.key?(:available_access_types)
|
5547
|
+
@available_annotation_tool_types = args[:available_annotation_tool_types] if args.key?(:available_annotation_tool_types)
|
5432
5548
|
@available_reactions = args[:available_reactions] if args.key?(:available_reactions)
|
5433
5549
|
@broadcast_session_info = args[:broadcast_session_info] if args.key?(:broadcast_session_info)
|
5434
5550
|
@calendar_event_id = args[:calendar_event_id] if args.key?(:calendar_event_id)
|
@@ -5488,6 +5604,12 @@ module Google
|
|
5488
5604
|
attr_accessor :chat_lock
|
5489
5605
|
alias_method :chat_lock?, :chat_lock
|
5490
5606
|
|
5607
|
+
# Indicates whether the co-activity lock is currently on or off.
|
5608
|
+
# Corresponds to the JSON property `coActivityLock`
|
5609
|
+
# @return [Boolean]
|
5610
|
+
attr_accessor :co_activity_lock
|
5611
|
+
alias_method :co_activity_lock?, :co_activity_lock
|
5612
|
+
|
5491
5613
|
# Whether Client-side Encryption is enabled for this conference.
|
5492
5614
|
# Corresponds to the JSON property `cseEnabled`
|
5493
5615
|
# @return [Boolean]
|
@@ -5530,6 +5652,7 @@ module Google
|
|
5530
5652
|
@attendance_report_enabled = args[:attendance_report_enabled] if args.key?(:attendance_report_enabled)
|
5531
5653
|
@audio_lock = args[:audio_lock] if args.key?(:audio_lock)
|
5532
5654
|
@chat_lock = args[:chat_lock] if args.key?(:chat_lock)
|
5655
|
+
@co_activity_lock = args[:co_activity_lock] if args.key?(:co_activity_lock)
|
5533
5656
|
@cse_enabled = args[:cse_enabled] if args.key?(:cse_enabled)
|
5534
5657
|
@moderation_enabled = args[:moderation_enabled] if args.key?(:moderation_enabled)
|
5535
5658
|
@present_lock = args[:present_lock] if args.key?(:present_lock)
|
@@ -6251,11 +6374,36 @@ module Google
|
|
6251
6374
|
# @return [String]
|
6252
6375
|
attr_accessor :activity_title
|
6253
6376
|
|
6377
|
+
# The add-on id of the current add-on being used for co-activity.
|
6378
|
+
# Corresponds to the JSON property `addOnId`
|
6379
|
+
# @return [String]
|
6380
|
+
attr_accessor :add_on_id
|
6381
|
+
|
6382
|
+
# Starting state properties for add-on co-activity.
|
6383
|
+
# Corresponds to the JSON property `addOnStartingState`
|
6384
|
+
# @return [Google::Apis::CloudsearchV1::AddOnStartingState]
|
6385
|
+
attr_accessor :add_on_starting_state
|
6386
|
+
|
6254
6387
|
# Identifies the app handling this co-activity.
|
6255
6388
|
# Corresponds to the JSON property `coActivityApp`
|
6256
6389
|
# @return [String]
|
6257
6390
|
attr_accessor :co_activity_app
|
6258
6391
|
|
6392
|
+
# The resource name of the device that initiated the co-activity.
|
6393
|
+
# Corresponds to the JSON property `initiatorDeviceId`
|
6394
|
+
# @return [String]
|
6395
|
+
attr_accessor :initiator_device_id
|
6396
|
+
|
6397
|
+
# The resource name of the device that is presenting the add-on.
|
6398
|
+
# Corresponds to the JSON property `presentationDeviceId`
|
6399
|
+
# @return [String]
|
6400
|
+
attr_accessor :presentation_device_id
|
6401
|
+
|
6402
|
+
# The project number of the add-on to determine version.
|
6403
|
+
# Corresponds to the JSON property `projectNumber`
|
6404
|
+
# @return [Fixnum]
|
6405
|
+
attr_accessor :project_number
|
6406
|
+
|
6259
6407
|
def initialize(**args)
|
6260
6408
|
update!(**args)
|
6261
6409
|
end
|
@@ -6263,7 +6411,12 @@ module Google
|
|
6263
6411
|
# Update properties of this object
|
6264
6412
|
def update!(**args)
|
6265
6413
|
@activity_title = args[:activity_title] if args.key?(:activity_title)
|
6414
|
+
@add_on_id = args[:add_on_id] if args.key?(:add_on_id)
|
6415
|
+
@add_on_starting_state = args[:add_on_starting_state] if args.key?(:add_on_starting_state)
|
6266
6416
|
@co_activity_app = args[:co_activity_app] if args.key?(:co_activity_app)
|
6417
|
+
@initiator_device_id = args[:initiator_device_id] if args.key?(:initiator_device_id)
|
6418
|
+
@presentation_device_id = args[:presentation_device_id] if args.key?(:presentation_device_id)
|
6419
|
+
@project_number = args[:project_number] if args.key?(:project_number)
|
6267
6420
|
end
|
6268
6421
|
end
|
6269
6422
|
|
@@ -6945,6 +7098,12 @@ module Google
|
|
6945
7098
|
class DataLossPreventionMetadata
|
6946
7099
|
include Google::Apis::Core::Hashable
|
6947
7100
|
|
7101
|
+
# A summary of a DLP scan. This is a combination summary that contains both scan
|
7102
|
+
# on message and scan on attachments if any.
|
7103
|
+
# Corresponds to the JSON property `dlpMessageScanRecord`
|
7104
|
+
# @return [Google::Apis::CloudsearchV1::DlpMessageScanRecord]
|
7105
|
+
attr_accessor :dlp_message_scan_record
|
7106
|
+
|
6948
7107
|
# A summary of a DLP scan event. This is a summary and should contain the
|
6949
7108
|
# minimum amount of data required to identify and process DLP scans. It is
|
6950
7109
|
# written to Starcast and encoded & returned to the client on attachment upload.
|
@@ -6964,6 +7123,7 @@ module Google
|
|
6964
7123
|
|
6965
7124
|
# Update properties of this object
|
6966
7125
|
def update!(**args)
|
7126
|
+
@dlp_message_scan_record = args[:dlp_message_scan_record] if args.key?(:dlp_message_scan_record)
|
6967
7127
|
@dlp_scan_summary = args[:dlp_scan_summary] if args.key?(:dlp_scan_summary)
|
6968
7128
|
@warn_acknowledged = args[:warn_acknowledged] if args.key?(:warn_acknowledged)
|
6969
7129
|
end
|
@@ -7507,6 +7667,48 @@ module Google
|
|
7507
7667
|
end
|
7508
7668
|
end
|
7509
7669
|
|
7670
|
+
# A summary of a DLP scan. This is a combination summary that contains both scan
|
7671
|
+
# on message and scan on attachments if any.
|
7672
|
+
class DlpMessageScanRecord
|
7673
|
+
include Google::Apis::Core::Hashable
|
7674
|
+
|
7675
|
+
# A summary of a DLP scan event. This is a summary and should contain the
|
7676
|
+
# minimum amount of data required to identify and process DLP scans. It is
|
7677
|
+
# written to Starcast and encoded & returned to the client on attachment upload.
|
7678
|
+
# Corresponds to the JSON property `attachmentScanSummary`
|
7679
|
+
# @return [Google::Apis::CloudsearchV1::DlpScanSummary]
|
7680
|
+
attr_accessor :attachment_scan_summary
|
7681
|
+
|
7682
|
+
# The applied action.
|
7683
|
+
# Corresponds to the JSON property `dlpAction`
|
7684
|
+
# @return [Google::Apis::CloudsearchV1::DlpAction]
|
7685
|
+
attr_accessor :dlp_action
|
7686
|
+
|
7687
|
+
# A summary of a DLP scan event. This is a summary and should contain the
|
7688
|
+
# minimum amount of data required to identify and process DLP scans. It is
|
7689
|
+
# written to Starcast and encoded & returned to the client on attachment upload.
|
7690
|
+
# Corresponds to the JSON property `messageScanSummary`
|
7691
|
+
# @return [Google::Apis::CloudsearchV1::DlpScanSummary]
|
7692
|
+
attr_accessor :message_scan_summary
|
7693
|
+
|
7694
|
+
# The DLP scan outcome for the message.
|
7695
|
+
# Corresponds to the JSON property `scanOutcome`
|
7696
|
+
# @return [String]
|
7697
|
+
attr_accessor :scan_outcome
|
7698
|
+
|
7699
|
+
def initialize(**args)
|
7700
|
+
update!(**args)
|
7701
|
+
end
|
7702
|
+
|
7703
|
+
# Update properties of this object
|
7704
|
+
def update!(**args)
|
7705
|
+
@attachment_scan_summary = args[:attachment_scan_summary] if args.key?(:attachment_scan_summary)
|
7706
|
+
@dlp_action = args[:dlp_action] if args.key?(:dlp_action)
|
7707
|
+
@message_scan_summary = args[:message_scan_summary] if args.key?(:message_scan_summary)
|
7708
|
+
@scan_outcome = args[:scan_outcome] if args.key?(:scan_outcome)
|
7709
|
+
end
|
7710
|
+
end
|
7711
|
+
|
7510
7712
|
# A summary of a DLP scan event. This is a summary and should contain the
|
7511
7713
|
# minimum amount of data required to identify and process DLP scans. It is
|
7512
7714
|
# written to Starcast and encoded & returned to the client on attachment upload.
|
@@ -7543,6 +7745,13 @@ module Google
|
|
7543
7745
|
# @return [String]
|
7544
7746
|
attr_accessor :scan_outcome
|
7545
7747
|
|
7748
|
+
# The event that triggered the scan. This corresponds to the rule trigger
|
7749
|
+
# configured in admin console and maps to the different things that can be
|
7750
|
+
# scanned.
|
7751
|
+
# Corresponds to the JSON property `scanTrigger`
|
7752
|
+
# @return [String]
|
7753
|
+
attr_accessor :scan_trigger
|
7754
|
+
|
7546
7755
|
def initialize(**args)
|
7547
7756
|
update!(**args)
|
7548
7757
|
end
|
@@ -7553,6 +7762,7 @@ module Google
|
|
7553
7762
|
@scan_id = args[:scan_id] if args.key?(:scan_id)
|
7554
7763
|
@scan_not_applicable_for_context = args[:scan_not_applicable_for_context] if args.key?(:scan_not_applicable_for_context)
|
7555
7764
|
@scan_outcome = args[:scan_outcome] if args.key?(:scan_outcome)
|
7765
|
+
@scan_trigger = args[:scan_trigger] if args.key?(:scan_trigger)
|
7556
7766
|
end
|
7557
7767
|
end
|
7558
7768
|
|
@@ -9917,7 +10127,9 @@ module Google
|
|
9917
10127
|
class GoogleChatV1ContextualAddOnMarkupCardSection
|
9918
10128
|
include Google::Apis::Core::Hashable
|
9919
10129
|
|
9920
|
-
# The header of the section
|
10130
|
+
# The header of the section. Formatted text is supported. For more information
|
10131
|
+
# about formatting text, see Formatting text in Google Chat apps and Formatting
|
10132
|
+
# text in Google Workspace Add-ons.
|
9921
10133
|
# Corresponds to the JSON property `header`
|
9922
10134
|
# @return [String]
|
9923
10135
|
attr_accessor :header
|
@@ -9942,7 +10154,7 @@ module Google
|
|
9942
10154
|
class GoogleChatV1WidgetMarkup
|
9943
10155
|
include Google::Apis::Core::Hashable
|
9944
10156
|
|
9945
|
-
# A list of buttons. Buttons is also oneof data and only one of these fields
|
10157
|
+
# A list of buttons. Buttons is also `oneof data` and only one of these fields
|
9946
10158
|
# should be set.
|
9947
10159
|
# Corresponds to the JSON property `buttons`
|
9948
10160
|
# @return [Array<Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupButton>]
|
@@ -9959,7 +10171,9 @@ module Google
|
|
9959
10171
|
# @return [Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupKeyValue]
|
9960
10172
|
attr_accessor :key_value
|
9961
10173
|
|
9962
|
-
# A paragraph of text. Formatted text supported.
|
10174
|
+
# A paragraph of text. Formatted text supported. For more information about
|
10175
|
+
# formatting text, see Formatting text in Google Chat apps and Formatting text
|
10176
|
+
# in Google Workspace Add-ons.
|
9963
10177
|
# Corresponds to the JSON property `textParagraph`
|
9964
10178
|
# @return [Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupTextParagraph]
|
9965
10179
|
attr_accessor :text_paragraph
|
@@ -10136,7 +10350,9 @@ module Google
|
|
10136
10350
|
class GoogleChatV1WidgetMarkupKeyValue
|
10137
10351
|
include Google::Apis::Core::Hashable
|
10138
10352
|
|
10139
|
-
# The text of the bottom label. Formatted text supported.
|
10353
|
+
# The text of the bottom label. Formatted text supported. For more information
|
10354
|
+
# about formatting text, see Formatting text in Google Chat apps and Formatting
|
10355
|
+
# text in Google Workspace Add-ons.
|
10140
10356
|
# Corresponds to the JSON property `bottomLabel`
|
10141
10357
|
# @return [String]
|
10142
10358
|
attr_accessor :bottom_label
|
@@ -10146,7 +10362,9 @@ module Google
|
|
10146
10362
|
# @return [Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupButton]
|
10147
10363
|
attr_accessor :button
|
10148
10364
|
|
10149
|
-
# The text of the content. Formatted text supported and always required.
|
10365
|
+
# The text of the content. Formatted text supported and always required. For
|
10366
|
+
# more information about formatting text, see Formatting text in Google Chat
|
10367
|
+
# apps and Formatting text in Google Workspace Add-ons.
|
10150
10368
|
# Corresponds to the JSON property `content`
|
10151
10369
|
# @return [String]
|
10152
10370
|
attr_accessor :content
|
@@ -10173,7 +10391,9 @@ module Google
|
|
10173
10391
|
# @return [Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupOnClick]
|
10174
10392
|
attr_accessor :on_click
|
10175
10393
|
|
10176
|
-
# The text of the top label. Formatted text supported.
|
10394
|
+
# The text of the top label. Formatted text supported. For more information
|
10395
|
+
# about formatting text, see Formatting text in Google Chat apps and Formatting
|
10396
|
+
# text in Google Workspace Add-ons.
|
10177
10397
|
# Corresponds to the JSON property `topLabel`
|
10178
10398
|
# @return [String]
|
10179
10399
|
attr_accessor :top_label
|
@@ -10265,7 +10485,9 @@ module Google
|
|
10265
10485
|
end
|
10266
10486
|
end
|
10267
10487
|
|
10268
|
-
# A paragraph of text. Formatted text supported.
|
10488
|
+
# A paragraph of text. Formatted text supported. For more information about
|
10489
|
+
# formatting text, see Formatting text in Google Chat apps and Formatting text
|
10490
|
+
# in Google Workspace Add-ons.
|
10269
10491
|
class GoogleChatV1WidgetMarkupTextParagraph
|
10270
10492
|
include Google::Apis::Core::Hashable
|
10271
10493
|
|
@@ -13418,7 +13640,7 @@ module Google
|
|
13418
13640
|
end
|
13419
13641
|
|
13420
13642
|
# Annotation metadata to display system messages for membership changes. Next
|
13421
|
-
# Tag:
|
13643
|
+
# Tag: 13
|
13422
13644
|
class MembershipChangedMetadata
|
13423
13645
|
include Google::Apis::Core::Hashable
|
13424
13646
|
|
@@ -13693,6 +13915,26 @@ module Google
|
|
13693
13915
|
# @return [String]
|
13694
13916
|
attr_accessor :message_origin
|
13695
13917
|
|
13918
|
+
# Contains reference to another message. It is used in shortcuts which are used
|
13919
|
+
# to collect messages from different spaces with a certain common property into
|
13920
|
+
# another space. For example, all @mentions of a user are collected into a
|
13921
|
+
# mention shortcut space (go/chat-shortcuts-backend-design for more details).
|
13922
|
+
# Clients can use this reference to enable navigation to the source message when
|
13923
|
+
# the shortcut message is clicked and also to identify a few other details about
|
13924
|
+
# the source message. Other fields (like text) from the source message are
|
13925
|
+
# copied on to the top-level fields in the Message proto by the server (More
|
13926
|
+
# details in go/chat-shortcuts-client-server-design).
|
13927
|
+
# Corresponds to the JSON property `messageReference`
|
13928
|
+
# @return [Google::Apis::CloudsearchV1::MessageReference]
|
13929
|
+
attr_accessor :message_reference
|
13930
|
+
|
13931
|
+
# Metadata used to describe how to render a message in search results page, e.g.,
|
13932
|
+
# highlighting and snipetting. In future, we can use this proto to return more
|
13933
|
+
# search specific data attached to a message.
|
13934
|
+
# Corresponds to the JSON property `messageSearchInfo`
|
13935
|
+
# @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageSearchInfo]
|
13936
|
+
attr_accessor :message_search_info
|
13937
|
+
|
13696
13938
|
# State of the message, indicating whether the message is visible to all members
|
13697
13939
|
# in the group or is only visible to the sender only, or the
|
13698
13940
|
# private_message_viewer if it is set.
|
@@ -13700,6 +13942,11 @@ module Google
|
|
13700
13942
|
# @return [String]
|
13701
13943
|
attr_accessor :message_state
|
13702
13944
|
|
13945
|
+
# Indicates the number of unicode emojis in the message.
|
13946
|
+
# Corresponds to the JSON property `numberOfUnicodeEmojis`
|
13947
|
+
# @return [Fixnum]
|
13948
|
+
attr_accessor :number_of_unicode_emojis
|
13949
|
+
|
13703
13950
|
# Indicates if this message contains any suggestions that were provided by any
|
13704
13951
|
# Apps.
|
13705
13952
|
# Corresponds to the JSON property `originAppSuggestions`
|
@@ -13841,7 +14088,10 @@ module Google
|
|
13841
14088
|
@local_id = args[:local_id] if args.key?(:local_id)
|
13842
14089
|
@message_integration_payload = args[:message_integration_payload] if args.key?(:message_integration_payload)
|
13843
14090
|
@message_origin = args[:message_origin] if args.key?(:message_origin)
|
14091
|
+
@message_reference = args[:message_reference] if args.key?(:message_reference)
|
14092
|
+
@message_search_info = args[:message_search_info] if args.key?(:message_search_info)
|
13844
14093
|
@message_state = args[:message_state] if args.key?(:message_state)
|
14094
|
+
@number_of_unicode_emojis = args[:number_of_unicode_emojis] if args.key?(:number_of_unicode_emojis)
|
13845
14095
|
@origin_app_suggestions = args[:origin_app_suggestions] if args.key?(:origin_app_suggestions)
|
13846
14096
|
@personal_labels = args[:personal_labels] if args.key?(:personal_labels)
|
13847
14097
|
@private_message_infos = args[:private_message_infos] if args.key?(:private_message_infos)
|
@@ -14082,6 +14332,33 @@ module Google
|
|
14082
14332
|
end
|
14083
14333
|
end
|
14084
14334
|
|
14335
|
+
# Contains reference to another message. It is used in shortcuts which are used
|
14336
|
+
# to collect messages from different spaces with a certain common property into
|
14337
|
+
# another space. For example, all @mentions of a user are collected into a
|
14338
|
+
# mention shortcut space (go/chat-shortcuts-backend-design for more details).
|
14339
|
+
# Clients can use this reference to enable navigation to the source message when
|
14340
|
+
# the shortcut message is clicked and also to identify a few other details about
|
14341
|
+
# the source message. Other fields (like text) from the source message are
|
14342
|
+
# copied on to the top-level fields in the Message proto by the server (More
|
14343
|
+
# details in go/chat-shortcuts-client-server-design).
|
14344
|
+
class MessageReference
|
14345
|
+
include Google::Apis::Core::Hashable
|
14346
|
+
|
14347
|
+
#
|
14348
|
+
# Corresponds to the JSON property `sourceInfo`
|
14349
|
+
# @return [Google::Apis::CloudsearchV1::SourceMessageInfo]
|
14350
|
+
attr_accessor :source_info
|
14351
|
+
|
14352
|
+
def initialize(**args)
|
14353
|
+
update!(**args)
|
14354
|
+
end
|
14355
|
+
|
14356
|
+
# Update properties of this object
|
14357
|
+
def update!(**args)
|
14358
|
+
@source_info = args[:source_info] if args.key?(:source_info)
|
14359
|
+
end
|
14360
|
+
end
|
14361
|
+
|
14085
14362
|
# This is proto2's version of MessageSet.
|
14086
14363
|
class MessageSet
|
14087
14364
|
include Google::Apis::Core::Hashable
|
@@ -15360,6 +15637,11 @@ module Google
|
|
15360
15637
|
class Presenter
|
15361
15638
|
include Google::Apis::Core::Hashable
|
15362
15639
|
|
15640
|
+
# Information about the screen annotation session.
|
15641
|
+
# Corresponds to the JSON property `annotationInfo`
|
15642
|
+
# @return [Google::Apis::CloudsearchV1::AnnotationInfo]
|
15643
|
+
attr_accessor :annotation_info
|
15644
|
+
|
15363
15645
|
# The device resource name of the device which requested the current presenter
|
15364
15646
|
# to be set. This field can not be modified by clients.
|
15365
15647
|
# Corresponds to the JSON property `byDeviceId`
|
@@ -15383,6 +15665,7 @@ module Google
|
|
15383
15665
|
|
15384
15666
|
# Update properties of this object
|
15385
15667
|
def update!(**args)
|
15668
|
+
@annotation_info = args[:annotation_info] if args.key?(:annotation_info)
|
15386
15669
|
@by_device_id = args[:by_device_id] if args.key?(:by_device_id)
|
15387
15670
|
@copresenter_device_ids = args[:copresenter_device_ids] if args.key?(:copresenter_device_ids)
|
15388
15671
|
@presenter_device_id = args[:presenter_device_id] if args.key?(:presenter_device_id)
|
@@ -17754,6 +18037,38 @@ module Google
|
|
17754
18037
|
end
|
17755
18038
|
end
|
17756
18039
|
|
18040
|
+
# SearchLink metadata, for SEARCH_LINK segments. For a search link, the "text"
|
18041
|
+
# field should contain the display text. This is currently not indexed.
|
18042
|
+
class SearchLinkData
|
18043
|
+
include Google::Apis::Core::Hashable
|
18044
|
+
|
18045
|
+
# For lightweight scoring in serving time.
|
18046
|
+
# Corresponds to the JSON property `kgEntityConfidence`
|
18047
|
+
# @return [Float]
|
18048
|
+
attr_accessor :kg_entity_confidence
|
18049
|
+
|
18050
|
+
# MID of the KG entity being linked.
|
18051
|
+
# Corresponds to the JSON property `mid`
|
18052
|
+
# @return [String]
|
18053
|
+
attr_accessor :mid
|
18054
|
+
|
18055
|
+
#
|
18056
|
+
# Corresponds to the JSON property `queryBroadnessScore`
|
18057
|
+
# @return [Float]
|
18058
|
+
attr_accessor :query_broadness_score
|
18059
|
+
|
18060
|
+
def initialize(**args)
|
18061
|
+
update!(**args)
|
18062
|
+
end
|
18063
|
+
|
18064
|
+
# Update properties of this object
|
18065
|
+
def update!(**args)
|
18066
|
+
@kg_entity_confidence = args[:kg_entity_confidence] if args.key?(:kg_entity_confidence)
|
18067
|
+
@mid = args[:mid] if args.key?(:mid)
|
18068
|
+
@query_broadness_score = args[:query_broadness_score] if args.key?(:query_broadness_score)
|
18069
|
+
end
|
18070
|
+
end
|
18071
|
+
|
17757
18072
|
# Additional search quality metadata of the item.
|
17758
18073
|
class SearchQualityMetadata
|
17759
18074
|
include Google::Apis::Core::Hashable
|
@@ -18053,6 +18368,12 @@ module Google
|
|
18053
18368
|
# @return [Google::Apis::CloudsearchV1::LinkData]
|
18054
18369
|
attr_accessor :link_data
|
18055
18370
|
|
18371
|
+
# SearchLink metadata, for SEARCH_LINK segments. For a search link, the "text"
|
18372
|
+
# field should contain the display text. This is currently not indexed.
|
18373
|
+
# Corresponds to the JSON property `searchLinkData`
|
18374
|
+
# @return [Google::Apis::CloudsearchV1::SearchLinkData]
|
18375
|
+
attr_accessor :search_link_data
|
18376
|
+
|
18056
18377
|
# Text content of the Segment. As a general rule, this field should contain the
|
18057
18378
|
# actual text that should be rendered in the UI. Thus, for a hashtag, it should
|
18058
18379
|
# be "#Foo", and for a link, it should be the display text. Clients that do not
|
@@ -18097,6 +18418,7 @@ module Google
|
|
18097
18418
|
@formatting = args[:formatting] if args.key?(:formatting)
|
18098
18419
|
@hashtag_data = args[:hashtag_data] if args.key?(:hashtag_data)
|
18099
18420
|
@link_data = args[:link_data] if args.key?(:link_data)
|
18421
|
+
@search_link_data = args[:search_link_data] if args.key?(:search_link_data)
|
18100
18422
|
@text = args[:text] if args.key?(:text)
|
18101
18423
|
@type = args[:type] if args.key?(:type)
|
18102
18424
|
@user_mention_data = args[:user_mention_data] if args.key?(:user_mention_data)
|
@@ -18350,6 +18672,13 @@ module Google
|
|
18350
18672
|
attr_accessor :chat_lock
|
18351
18673
|
alias_method :chat_lock?, :chat_lock
|
18352
18674
|
|
18675
|
+
# The co-activity lock of the meeting space that lets owner control whether the
|
18676
|
+
# participants can start/stop or update the state of co-activity.
|
18677
|
+
# Corresponds to the JSON property `coActivityLock`
|
18678
|
+
# @return [Boolean]
|
18679
|
+
attr_accessor :co_activity_lock
|
18680
|
+
alias_method :co_activity_lock?, :co_activity_lock
|
18681
|
+
|
18353
18682
|
# Whether meeting artifacts will be shared with cohosts.
|
18354
18683
|
# Corresponds to the JSON property `cohostArtifactSharingEnabled`
|
18355
18684
|
# @return [Boolean]
|
@@ -18399,6 +18728,7 @@ module Google
|
|
18399
18728
|
@allow_joining_before_host = args[:allow_joining_before_host] if args.key?(:allow_joining_before_host)
|
18400
18729
|
@attendance_report_enabled = args[:attendance_report_enabled] if args.key?(:attendance_report_enabled)
|
18401
18730
|
@chat_lock = args[:chat_lock] if args.key?(:chat_lock)
|
18731
|
+
@co_activity_lock = args[:co_activity_lock] if args.key?(:co_activity_lock)
|
18402
18732
|
@cohost_artifact_sharing_enabled = args[:cohost_artifact_sharing_enabled] if args.key?(:cohost_artifact_sharing_enabled)
|
18403
18733
|
@cse_enabled = args[:cse_enabled] if args.key?(:cse_enabled)
|
18404
18734
|
@default_as_viewer = args[:default_as_viewer] if args.key?(:default_as_viewer)
|
@@ -18852,6 +19182,31 @@ module Google
|
|
18852
19182
|
end
|
18853
19183
|
end
|
18854
19184
|
|
19185
|
+
#
|
19186
|
+
class SourceMessageInfo
|
19187
|
+
include Google::Apis::Core::Hashable
|
19188
|
+
|
19189
|
+
# Primary key for Message resource.
|
19190
|
+
# Corresponds to the JSON property `messageId`
|
19191
|
+
# @return [Google::Apis::CloudsearchV1::MessageId]
|
19192
|
+
attr_accessor :message_id
|
19193
|
+
|
19194
|
+
#
|
19195
|
+
# Corresponds to the JSON property `messageType`
|
19196
|
+
# @return [String]
|
19197
|
+
attr_accessor :message_type
|
19198
|
+
|
19199
|
+
def initialize(**args)
|
19200
|
+
update!(**args)
|
19201
|
+
end
|
19202
|
+
|
19203
|
+
# Update properties of this object
|
19204
|
+
def update!(**args)
|
19205
|
+
@message_id = args[:message_id] if args.key?(:message_id)
|
19206
|
+
@message_type = args[:message_type] if args.key?(:message_type)
|
19207
|
+
end
|
19208
|
+
end
|
19209
|
+
|
18855
19210
|
# Per source result count information.
|
18856
19211
|
class SourceResultCount
|
18857
19212
|
include Google::Apis::Core::Hashable
|
@@ -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.50.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 = "20230510"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -58,6 +58,18 @@ module Google
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
59
59
|
end
|
60
60
|
|
61
|
+
class AddOnFrameStartingState
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
67
|
+
class AddOnStartingState
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
61
73
|
class AddonComposeUiActionMarkup
|
62
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
75
|
|
@@ -82,6 +94,12 @@ module Google
|
|
82
94
|
include Google::Apis::Core::JsonObjectSupport
|
83
95
|
end
|
84
96
|
|
97
|
+
class AnnotationInfo
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
85
103
|
class AppId
|
86
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
105
|
|
@@ -334,6 +352,12 @@ module Google
|
|
334
352
|
include Google::Apis::Core::JsonObjectSupport
|
335
353
|
end
|
336
354
|
|
355
|
+
class AppsDynamiteSharedMessageSearchInfo
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
|
+
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
359
|
+
end
|
360
|
+
|
337
361
|
class AppsDynamiteSharedOrganizationInfo
|
338
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
363
|
|
@@ -1264,6 +1288,12 @@ module Google
|
|
1264
1288
|
include Google::Apis::Core::JsonObjectSupport
|
1265
1289
|
end
|
1266
1290
|
|
1291
|
+
class DlpMessageScanRecord
|
1292
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1293
|
+
|
1294
|
+
include Google::Apis::Core::JsonObjectSupport
|
1295
|
+
end
|
1296
|
+
|
1267
1297
|
class DlpScanSummary
|
1268
1298
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1269
1299
|
|
@@ -2314,6 +2344,12 @@ module Google
|
|
2314
2344
|
include Google::Apis::Core::JsonObjectSupport
|
2315
2345
|
end
|
2316
2346
|
|
2347
|
+
class MessageReference
|
2348
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2349
|
+
|
2350
|
+
include Google::Apis::Core::JsonObjectSupport
|
2351
|
+
end
|
2352
|
+
|
2317
2353
|
class MessageSet
|
2318
2354
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2319
2355
|
|
@@ -2890,6 +2926,12 @@ module Google
|
|
2890
2926
|
include Google::Apis::Core::JsonObjectSupport
|
2891
2927
|
end
|
2892
2928
|
|
2929
|
+
class SearchLinkData
|
2930
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2931
|
+
|
2932
|
+
include Google::Apis::Core::JsonObjectSupport
|
2933
|
+
end
|
2934
|
+
|
2893
2935
|
class SearchQualityMetadata
|
2894
2936
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2895
2937
|
|
@@ -3040,6 +3082,12 @@ module Google
|
|
3040
3082
|
include Google::Apis::Core::JsonObjectSupport
|
3041
3083
|
end
|
3042
3084
|
|
3085
|
+
class SourceMessageInfo
|
3086
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3087
|
+
|
3088
|
+
include Google::Apis::Core::JsonObjectSupport
|
3089
|
+
end
|
3090
|
+
|
3043
3091
|
class SourceResultCount
|
3044
3092
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3045
3093
|
|
@@ -3589,6 +3637,22 @@ module Google
|
|
3589
3637
|
end
|
3590
3638
|
end
|
3591
3639
|
|
3640
|
+
class AddOnFrameStartingState
|
3641
|
+
# @private
|
3642
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3643
|
+
property :additional_data, as: 'additionalData'
|
3644
|
+
property :uri, as: 'uri'
|
3645
|
+
end
|
3646
|
+
end
|
3647
|
+
|
3648
|
+
class AddOnStartingState
|
3649
|
+
# @private
|
3650
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3651
|
+
hash :add_on_frame_starting_states, as: 'addOnFrameStartingStates', class: Google::Apis::CloudsearchV1::AddOnFrameStartingState, decorator: Google::Apis::CloudsearchV1::AddOnFrameStartingState::Representation
|
3652
|
+
|
3653
|
+
end
|
3654
|
+
end
|
3655
|
+
|
3592
3656
|
class AddonComposeUiActionMarkup
|
3593
3657
|
# @private
|
3594
3658
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3673,6 +3737,14 @@ module Google
|
|
3673
3737
|
end
|
3674
3738
|
end
|
3675
3739
|
|
3740
|
+
class AnnotationInfo
|
3741
|
+
# @private
|
3742
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3743
|
+
collection :coannotator_device_ids, as: 'coannotatorDeviceIds'
|
3744
|
+
property :is_active, as: 'isActive'
|
3745
|
+
end
|
3746
|
+
end
|
3747
|
+
|
3676
3748
|
class AppId
|
3677
3749
|
# @private
|
3678
3750
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3796,6 +3868,7 @@ module Google
|
|
3796
3868
|
property :dlp_scan_outcome, as: 'dlpScanOutcome'
|
3797
3869
|
property :dlp_scan_summary, as: 'dlpScanSummary', class: Google::Apis::CloudsearchV1::DlpScanSummary, decorator: Google::Apis::CloudsearchV1::DlpScanSummary::Representation
|
3798
3870
|
|
3871
|
+
collection :experiment, as: 'experiment'
|
3799
3872
|
property :group_id, as: 'groupId', class: Google::Apis::CloudsearchV1::GroupId, decorator: Google::Apis::CloudsearchV1::GroupId::Representation
|
3800
3873
|
|
3801
3874
|
property :is_client_side_transcoded_video, as: 'isClientSideTranscodedVideo'
|
@@ -4051,6 +4124,7 @@ module Google
|
|
4051
4124
|
# @private
|
4052
4125
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4053
4126
|
property :meeting_code, as: 'meetingCode'
|
4127
|
+
property :meeting_type, as: 'meetingType'
|
4054
4128
|
property :meeting_url, as: 'meetingUrl'
|
4055
4129
|
end
|
4056
4130
|
end
|
@@ -4084,6 +4158,14 @@ module Google
|
|
4084
4158
|
end
|
4085
4159
|
end
|
4086
4160
|
|
4161
|
+
class AppsDynamiteSharedMessageSearchInfo
|
4162
|
+
# @private
|
4163
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4164
|
+
collection :matched_segments_in_text_body, as: 'matchedSegmentsInTextBody', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedTextSegmentsWithDescription, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedTextSegmentsWithDescription::Representation
|
4165
|
+
|
4166
|
+
end
|
4167
|
+
end
|
4168
|
+
|
4087
4169
|
class AppsDynamiteSharedOrganizationInfo
|
4088
4170
|
# @private
|
4089
4171
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4397,7 +4479,6 @@ module Google
|
|
4397
4479
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4398
4480
|
collection :column_items, as: 'columnItems', class: Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumn, decorator: Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumn::Representation
|
4399
4481
|
|
4400
|
-
property :wrap_style, as: 'wrapStyle'
|
4401
4482
|
end
|
4402
4483
|
end
|
4403
4484
|
|
@@ -4853,6 +4934,8 @@ module Google
|
|
4853
4934
|
property :attachment_id, as: 'attachmentId'
|
4854
4935
|
property :card_add_on_data, as: 'cardAddOnData', class: Google::Apis::CloudsearchV1::AppsDynamiteStorageCard, decorator: Google::Apis::CloudsearchV1::AppsDynamiteStorageCard::Representation
|
4855
4936
|
|
4937
|
+
property :component_search_info, as: 'componentSearchInfo', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageComponentSearchInfo, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageComponentSearchInfo::Representation
|
4938
|
+
|
4856
4939
|
property :deprecated_add_on_data, as: 'deprecatedAddOnData', class: Google::Apis::CloudsearchV1::ContextualAddOnMarkup, decorator: Google::Apis::CloudsearchV1::ContextualAddOnMarkup::Representation
|
4857
4940
|
|
4858
4941
|
property :slack_data, as: 'slackData', class: Google::Apis::CloudsearchV1::AppsDynamiteV1ApiCompatV1Attachment, decorator: Google::Apis::CloudsearchV1::AppsDynamiteV1ApiCompatV1Attachment::Representation
|
@@ -5070,6 +5153,7 @@ module Google
|
|
5070
5153
|
collection :attached_documents, as: 'attachedDocuments', class: Google::Apis::CloudsearchV1::DocumentInfo, decorator: Google::Apis::CloudsearchV1::DocumentInfo::Representation
|
5071
5154
|
|
5072
5155
|
collection :available_access_types, as: 'availableAccessTypes'
|
5156
|
+
collection :available_annotation_tool_types, as: 'availableAnnotationToolTypes'
|
5073
5157
|
collection :available_reactions, as: 'availableReactions', class: Google::Apis::CloudsearchV1::ReactionInfo, decorator: Google::Apis::CloudsearchV1::ReactionInfo::Representation
|
5074
5158
|
|
5075
5159
|
property :broadcast_session_info, as: 'broadcastSessionInfo', class: Google::Apis::CloudsearchV1::BroadcastSessionInfo, decorator: Google::Apis::CloudsearchV1::BroadcastSessionInfo::Representation
|
@@ -5112,6 +5196,7 @@ module Google
|
|
5112
5196
|
property :attendance_report_enabled, as: 'attendanceReportEnabled'
|
5113
5197
|
property :audio_lock, as: 'audioLock'
|
5114
5198
|
property :chat_lock, as: 'chatLock'
|
5199
|
+
property :co_activity_lock, as: 'coActivityLock'
|
5115
5200
|
property :cse_enabled, as: 'cseEnabled'
|
5116
5201
|
property :moderation_enabled, as: 'moderationEnabled'
|
5117
5202
|
property :present_lock, as: 'presentLock'
|
@@ -5343,7 +5428,13 @@ module Google
|
|
5343
5428
|
# @private
|
5344
5429
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5345
5430
|
property :activity_title, as: 'activityTitle'
|
5431
|
+
property :add_on_id, as: 'addOnId'
|
5432
|
+
property :add_on_starting_state, as: 'addOnStartingState', class: Google::Apis::CloudsearchV1::AddOnStartingState, decorator: Google::Apis::CloudsearchV1::AddOnStartingState::Representation
|
5433
|
+
|
5346
5434
|
property :co_activity_app, as: 'coActivityApp'
|
5435
|
+
property :initiator_device_id, as: 'initiatorDeviceId'
|
5436
|
+
property :presentation_device_id, as: 'presentationDeviceId'
|
5437
|
+
property :project_number, :numeric_string => true, as: 'projectNumber'
|
5347
5438
|
end
|
5348
5439
|
end
|
5349
5440
|
|
@@ -5541,6 +5632,8 @@ module Google
|
|
5541
5632
|
class DataLossPreventionMetadata
|
5542
5633
|
# @private
|
5543
5634
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5635
|
+
property :dlp_message_scan_record, as: 'dlpMessageScanRecord', class: Google::Apis::CloudsearchV1::DlpMessageScanRecord, decorator: Google::Apis::CloudsearchV1::DlpMessageScanRecord::Representation
|
5636
|
+
|
5544
5637
|
property :dlp_scan_summary, as: 'dlpScanSummary', class: Google::Apis::CloudsearchV1::DlpScanSummary, decorator: Google::Apis::CloudsearchV1::DlpScanSummary::Representation
|
5545
5638
|
|
5546
5639
|
property :warn_acknowledged, as: 'warnAcknowledged'
|
@@ -5694,6 +5787,19 @@ module Google
|
|
5694
5787
|
end
|
5695
5788
|
end
|
5696
5789
|
|
5790
|
+
class DlpMessageScanRecord
|
5791
|
+
# @private
|
5792
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5793
|
+
property :attachment_scan_summary, as: 'attachmentScanSummary', class: Google::Apis::CloudsearchV1::DlpScanSummary, decorator: Google::Apis::CloudsearchV1::DlpScanSummary::Representation
|
5794
|
+
|
5795
|
+
property :dlp_action, as: 'dlpAction', class: Google::Apis::CloudsearchV1::DlpAction, decorator: Google::Apis::CloudsearchV1::DlpAction::Representation
|
5796
|
+
|
5797
|
+
property :message_scan_summary, as: 'messageScanSummary', class: Google::Apis::CloudsearchV1::DlpScanSummary, decorator: Google::Apis::CloudsearchV1::DlpScanSummary::Representation
|
5798
|
+
|
5799
|
+
property :scan_outcome, as: 'scanOutcome'
|
5800
|
+
end
|
5801
|
+
end
|
5802
|
+
|
5697
5803
|
class DlpScanSummary
|
5698
5804
|
# @private
|
5699
5805
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5702,6 +5808,7 @@ module Google
|
|
5702
5808
|
property :scan_id, as: 'scanId'
|
5703
5809
|
property :scan_not_applicable_for_context, as: 'scanNotApplicableForContext'
|
5704
5810
|
property :scan_outcome, as: 'scanOutcome'
|
5811
|
+
property :scan_trigger, as: 'scanTrigger'
|
5705
5812
|
end
|
5706
5813
|
end
|
5707
5814
|
|
@@ -7466,7 +7573,12 @@ module Google
|
|
7466
7573
|
property :message_integration_payload, as: 'messageIntegrationPayload', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageIntegrationPayload, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageIntegrationPayload::Representation
|
7467
7574
|
|
7468
7575
|
property :message_origin, as: 'messageOrigin'
|
7576
|
+
property :message_reference, as: 'messageReference', class: Google::Apis::CloudsearchV1::MessageReference, decorator: Google::Apis::CloudsearchV1::MessageReference::Representation
|
7577
|
+
|
7578
|
+
property :message_search_info, as: 'messageSearchInfo', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageSearchInfo, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageSearchInfo::Representation
|
7579
|
+
|
7469
7580
|
property :message_state, as: 'messageState'
|
7581
|
+
property :number_of_unicode_emojis, as: 'numberOfUnicodeEmojis'
|
7470
7582
|
collection :origin_app_suggestions, as: 'originAppSuggestions', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedOriginAppSuggestion, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedOriginAppSuggestion::Representation
|
7471
7583
|
|
7472
7584
|
collection :personal_labels, as: 'personalLabels', class: Google::Apis::CloudsearchV1::PersonalLabelTag, decorator: Google::Apis::CloudsearchV1::PersonalLabelTag::Representation
|
@@ -7563,6 +7675,14 @@ module Google
|
|
7563
7675
|
end
|
7564
7676
|
end
|
7565
7677
|
|
7678
|
+
class MessageReference
|
7679
|
+
# @private
|
7680
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7681
|
+
property :source_info, as: 'sourceInfo', class: Google::Apis::CloudsearchV1::SourceMessageInfo, decorator: Google::Apis::CloudsearchV1::SourceMessageInfo::Representation
|
7682
|
+
|
7683
|
+
end
|
7684
|
+
end
|
7685
|
+
|
7566
7686
|
class MessageSet
|
7567
7687
|
# @private
|
7568
7688
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7922,6 +8042,8 @@ module Google
|
|
7922
8042
|
class Presenter
|
7923
8043
|
# @private
|
7924
8044
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8045
|
+
property :annotation_info, as: 'annotationInfo', class: Google::Apis::CloudsearchV1::AnnotationInfo, decorator: Google::Apis::CloudsearchV1::AnnotationInfo::Representation
|
8046
|
+
|
7925
8047
|
property :by_device_id, as: 'byDeviceId'
|
7926
8048
|
collection :copresenter_device_ids, as: 'copresenterDeviceIds'
|
7927
8049
|
property :presenter_device_id, as: 'presenterDeviceId'
|
@@ -8590,6 +8712,15 @@ module Google
|
|
8590
8712
|
end
|
8591
8713
|
end
|
8592
8714
|
|
8715
|
+
class SearchLinkData
|
8716
|
+
# @private
|
8717
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8718
|
+
property :kg_entity_confidence, as: 'kgEntityConfidence'
|
8719
|
+
property :mid, as: 'mid'
|
8720
|
+
property :query_broadness_score, as: 'queryBroadnessScore'
|
8721
|
+
end
|
8722
|
+
end
|
8723
|
+
|
8593
8724
|
class SearchQualityMetadata
|
8594
8725
|
# @private
|
8595
8726
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8679,6 +8810,8 @@ module Google
|
|
8679
8810
|
|
8680
8811
|
property :link_data, as: 'linkData', class: Google::Apis::CloudsearchV1::LinkData, decorator: Google::Apis::CloudsearchV1::LinkData::Representation
|
8681
8812
|
|
8813
|
+
property :search_link_data, as: 'searchLinkData', class: Google::Apis::CloudsearchV1::SearchLinkData, decorator: Google::Apis::CloudsearchV1::SearchLinkData::Representation
|
8814
|
+
|
8682
8815
|
property :text, as: 'text'
|
8683
8816
|
property :type, as: 'type'
|
8684
8817
|
property :user_mention_data, as: 'userMentionData', class: Google::Apis::CloudsearchV1::UserMentionData, decorator: Google::Apis::CloudsearchV1::UserMentionData::Representation
|
@@ -8751,6 +8884,7 @@ module Google
|
|
8751
8884
|
property :allow_joining_before_host, as: 'allowJoiningBeforeHost'
|
8752
8885
|
property :attendance_report_enabled, as: 'attendanceReportEnabled'
|
8753
8886
|
property :chat_lock, as: 'chatLock'
|
8887
|
+
property :co_activity_lock, as: 'coActivityLock'
|
8754
8888
|
property :cohost_artifact_sharing_enabled, as: 'cohostArtifactSharingEnabled'
|
8755
8889
|
property :cse_enabled, as: 'cseEnabled'
|
8756
8890
|
property :default_as_viewer, as: 'defaultAsViewer'
|
@@ -8878,6 +9012,15 @@ module Google
|
|
8878
9012
|
end
|
8879
9013
|
end
|
8880
9014
|
|
9015
|
+
class SourceMessageInfo
|
9016
|
+
# @private
|
9017
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9018
|
+
property :message_id, as: 'messageId', class: Google::Apis::CloudsearchV1::MessageId, decorator: Google::Apis::CloudsearchV1::MessageId::Representation
|
9019
|
+
|
9020
|
+
property :message_type, as: 'messageType'
|
9021
|
+
end
|
9022
|
+
end
|
9023
|
+
|
8881
9024
|
class SourceResultCount
|
8882
9025
|
# @private
|
8883
9026
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.50.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-05-21 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.50.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: []
|