google-apis-cloudsearch_v1 0.48.0 → 0.49.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: 13d81183bfc08575079401ba28731c53f75f18da72c48a067c978b0a6668e271
4
- data.tar.gz: d26d09656bb7b53d16ff52bb5bf18c42fb58f16916ae118a37fefa9c906a50fe
3
+ metadata.gz: 1c4a3cf52b852067d29395e39684a9eb45fbcf7f13c3a861239b830bc77cd694
4
+ data.tar.gz: 710b343a57dee2daacb538c0ec8a277a369af9b939343a233279cae318c5ee76
5
5
  SHA512:
6
- metadata.gz: e2066317cf968301804cf49e47c0e81b514b72c2cc25d08bae063ffd372dba902f0180711048fb11eb4245fdc0c61c5d05b298ec8e1dc96d8a6dc6cc2525d2c0
7
- data.tar.gz: b733b93948ef46b1269f3b560b369b46157e50e6a8e47c7c7cd511c38c46f4b0b7056d3b5e3bbee9b199b8df3432249eb5127b03ac5eed3bb8925cca3147c440
6
+ metadata.gz: dd9a031154b46cad776c951c080dba1493a4d9d606685cb444e0aff00775209bf023975d24e25d7d154b0eb78d7b84a606882a5d07b0f1895fb444bf7436a3d5
7
+ data.tar.gz: 56e365e0d39acf0cf62ca4ffe9f20465fa9e74d33c9f66a11bf2335a1917ff092a683350291359d0d37a97c6ebd384fdc6bc1b71d1ac56db5c90136e2d6f0ae7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.49.0 (2023-05-14)
4
+
5
+ * Regenerated from discovery document revision 20230503
6
+
3
7
  ### v0.48.0 (2023-04-02)
4
8
 
5
9
  * 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
@@ -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)
@@ -1872,6 +1948,29 @@ module Google
1872
1948
  end
1873
1949
  end
1874
1950
 
1951
+ # Metadata used to describe how to render a message in search results page, e.g.,
1952
+ # highlighting and snipetting. In future, we can use this proto to return more
1953
+ # search specific data attached to a message.
1954
+ class AppsDynamiteSharedMessageSearchInfo
1955
+ include Google::Apis::Core::Hashable
1956
+
1957
+ # An example use case: clients can use this field to highlight matched segments
1958
+ # in message text_body defined in http://google3/apps/dynamite/v1/frontend/api/
1959
+ # message.proto;l=104;rcl=513400736.
1960
+ # Corresponds to the JSON property `matchedSegmentsInTextBody`
1961
+ # @return [Array<Google::Apis::CloudsearchV1::AppsDynamiteSharedTextSegmentsWithDescription>]
1962
+ attr_accessor :matched_segments_in_text_body
1963
+
1964
+ def initialize(**args)
1965
+ update!(**args)
1966
+ end
1967
+
1968
+ # Update properties of this object
1969
+ def update!(**args)
1970
+ @matched_segments_in_text_body = args[:matched_segments_in_text_body] if args.key?(:matched_segments_in_text_body)
1971
+ end
1972
+ end
1973
+
1875
1974
  # Contains info about the entity that something is, or is owned by.
1876
1975
  class AppsDynamiteSharedOrganizationInfo
1877
1976
  include Google::Apis::Core::Hashable
@@ -2601,7 +2700,8 @@ module Google
2601
2700
  end
2602
2701
  end
2603
2702
 
2604
- # Represents the complete border style applied to widgets.
2703
+ # The style options for the border of a card or widget, including the border
2704
+ # type and color.
2605
2705
  class AppsDynamiteStorageBorderStyle
2606
2706
  include Google::Apis::Core::Hashable
2607
2707
 
@@ -2973,16 +3073,12 @@ module Google
2973
3073
  class AppsDynamiteStorageColumns
2974
3074
  include Google::Apis::Core::Hashable
2975
3075
 
2976
- # Each card supports up to 2 columns.
3076
+ # Each card supports up to 2 columns. If the user's screen width is less than or
3077
+ # equal to 480 pixels, the second column wraps below the first column.
2977
3078
  # Corresponds to the JSON property `columnItems`
2978
3079
  # @return [Array<Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumn>]
2979
3080
  attr_accessor :column_items
2980
3081
 
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
3082
  def initialize(**args)
2987
3083
  update!(**args)
2988
3084
  end
@@ -2990,7 +3086,6 @@ module Google
2990
3086
  # Update properties of this object
2991
3087
  def update!(**args)
2992
3088
  @column_items = args[:column_items] if args.key?(:column_items)
2993
- @wrap_style = args[:wrap_style] if args.key?(:wrap_style)
2994
3089
  end
2995
3090
  end
2996
3091
 
@@ -3288,7 +3383,8 @@ module Google
3288
3383
  class AppsDynamiteStorageGrid
3289
3384
  include Google::Apis::Core::Hashable
3290
3385
 
3291
- # Represents the complete border style applied to widgets.
3386
+ # The style options for the border of a card or widget, including the border
3387
+ # type and color.
3292
3388
  # Corresponds to the JSON property `borderStyle`
3293
3389
  # @return [Google::Apis::CloudsearchV1::AppsDynamiteStorageBorderStyle]
3294
3390
  attr_accessor :border_style
@@ -3469,7 +3565,8 @@ module Google
3469
3565
  # @return [String]
3470
3566
  attr_accessor :alt_text
3471
3567
 
3472
- # Represents the complete border style applied to widgets.
3568
+ # The style options for the border of a card or widget, including the border
3569
+ # type and color.
3473
3570
  # Corresponds to the JSON property `borderStyle`
3474
3571
  # @return [Google::Apis::CloudsearchV1::AppsDynamiteStorageBorderStyle]
3475
3572
  attr_accessor :border_style
@@ -4589,6 +4686,12 @@ module Google
4589
4686
  # @return [Google::Apis::CloudsearchV1::AppsDynamiteStorageCard]
4590
4687
  attr_accessor :card_add_on_data
4591
4688
 
4689
+ # Metadata used to describe search information in a specific component of a chat
4690
+ # message, for example an annotation or an attachment.
4691
+ # Corresponds to the JSON property `componentSearchInfo`
4692
+ # @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageComponentSearchInfo]
4693
+ attr_accessor :component_search_info
4694
+
4592
4695
  # The markup for developers to specify the contents of a contextual AddOn. A
4593
4696
  # contextual AddOn is triggered in context of an email. For that email, there
4594
4697
  # can be N items that are associated with the email (e.g. contacts, sales lead,
@@ -4630,6 +4733,7 @@ module Google
4630
4733
  @app_id = args[:app_id] if args.key?(:app_id)
4631
4734
  @attachment_id = args[:attachment_id] if args.key?(:attachment_id)
4632
4735
  @card_add_on_data = args[:card_add_on_data] if args.key?(:card_add_on_data)
4736
+ @component_search_info = args[:component_search_info] if args.key?(:component_search_info)
4633
4737
  @deprecated_add_on_data = args[:deprecated_add_on_data] if args.key?(:deprecated_add_on_data)
4634
4738
  @slack_data = args[:slack_data] if args.key?(:slack_data)
4635
4739
  @slack_data_image_url_height = args[:slack_data_image_url_height] if args.key?(:slack_data_image_url_height)
@@ -5310,6 +5414,11 @@ module Google
5310
5414
  # @return [Array<String>]
5311
5415
  attr_accessor :available_access_types
5312
5416
 
5417
+ # Available screen annotation tool types.
5418
+ # Corresponds to the JSON property `availableAnnotationToolTypes`
5419
+ # @return [Array<String>]
5420
+ attr_accessor :available_annotation_tool_types
5421
+
5313
5422
  # Output only. The set of reactions that clients are allowed to send and can
5314
5423
  # expect to receive. Note that a device in the conference should have the
5315
5424
  # MAY_SEND_REACTIONS privilege to be able to send reactions.
@@ -5429,6 +5538,7 @@ module Google
5429
5538
  @artifact_owner = args[:artifact_owner] if args.key?(:artifact_owner)
5430
5539
  @attached_documents = args[:attached_documents] if args.key?(:attached_documents)
5431
5540
  @available_access_types = args[:available_access_types] if args.key?(:available_access_types)
5541
+ @available_annotation_tool_types = args[:available_annotation_tool_types] if args.key?(:available_annotation_tool_types)
5432
5542
  @available_reactions = args[:available_reactions] if args.key?(:available_reactions)
5433
5543
  @broadcast_session_info = args[:broadcast_session_info] if args.key?(:broadcast_session_info)
5434
5544
  @calendar_event_id = args[:calendar_event_id] if args.key?(:calendar_event_id)
@@ -5488,6 +5598,12 @@ module Google
5488
5598
  attr_accessor :chat_lock
5489
5599
  alias_method :chat_lock?, :chat_lock
5490
5600
 
5601
+ # Indicates whether the co-activity lock is currently on or off.
5602
+ # Corresponds to the JSON property `coActivityLock`
5603
+ # @return [Boolean]
5604
+ attr_accessor :co_activity_lock
5605
+ alias_method :co_activity_lock?, :co_activity_lock
5606
+
5491
5607
  # Whether Client-side Encryption is enabled for this conference.
5492
5608
  # Corresponds to the JSON property `cseEnabled`
5493
5609
  # @return [Boolean]
@@ -5530,6 +5646,7 @@ module Google
5530
5646
  @attendance_report_enabled = args[:attendance_report_enabled] if args.key?(:attendance_report_enabled)
5531
5647
  @audio_lock = args[:audio_lock] if args.key?(:audio_lock)
5532
5648
  @chat_lock = args[:chat_lock] if args.key?(:chat_lock)
5649
+ @co_activity_lock = args[:co_activity_lock] if args.key?(:co_activity_lock)
5533
5650
  @cse_enabled = args[:cse_enabled] if args.key?(:cse_enabled)
5534
5651
  @moderation_enabled = args[:moderation_enabled] if args.key?(:moderation_enabled)
5535
5652
  @present_lock = args[:present_lock] if args.key?(:present_lock)
@@ -6251,11 +6368,36 @@ module Google
6251
6368
  # @return [String]
6252
6369
  attr_accessor :activity_title
6253
6370
 
6371
+ # The add-on id of the current add-on being used for co-activity.
6372
+ # Corresponds to the JSON property `addOnId`
6373
+ # @return [String]
6374
+ attr_accessor :add_on_id
6375
+
6376
+ # Starting state properties for add-on co-activity.
6377
+ # Corresponds to the JSON property `addOnStartingState`
6378
+ # @return [Google::Apis::CloudsearchV1::AddOnStartingState]
6379
+ attr_accessor :add_on_starting_state
6380
+
6254
6381
  # Identifies the app handling this co-activity.
6255
6382
  # Corresponds to the JSON property `coActivityApp`
6256
6383
  # @return [String]
6257
6384
  attr_accessor :co_activity_app
6258
6385
 
6386
+ # The resource name of the device that initiated the co-activity.
6387
+ # Corresponds to the JSON property `initiatorDeviceId`
6388
+ # @return [String]
6389
+ attr_accessor :initiator_device_id
6390
+
6391
+ # The resource name of the device that is presenting the add-on.
6392
+ # Corresponds to the JSON property `presentationDeviceId`
6393
+ # @return [String]
6394
+ attr_accessor :presentation_device_id
6395
+
6396
+ # The project number of the add-on to determine version.
6397
+ # Corresponds to the JSON property `projectNumber`
6398
+ # @return [Fixnum]
6399
+ attr_accessor :project_number
6400
+
6259
6401
  def initialize(**args)
6260
6402
  update!(**args)
6261
6403
  end
@@ -6263,7 +6405,12 @@ module Google
6263
6405
  # Update properties of this object
6264
6406
  def update!(**args)
6265
6407
  @activity_title = args[:activity_title] if args.key?(:activity_title)
6408
+ @add_on_id = args[:add_on_id] if args.key?(:add_on_id)
6409
+ @add_on_starting_state = args[:add_on_starting_state] if args.key?(:add_on_starting_state)
6266
6410
  @co_activity_app = args[:co_activity_app] if args.key?(:co_activity_app)
6411
+ @initiator_device_id = args[:initiator_device_id] if args.key?(:initiator_device_id)
6412
+ @presentation_device_id = args[:presentation_device_id] if args.key?(:presentation_device_id)
6413
+ @project_number = args[:project_number] if args.key?(:project_number)
6267
6414
  end
6268
6415
  end
6269
6416
 
@@ -6945,6 +7092,12 @@ module Google
6945
7092
  class DataLossPreventionMetadata
6946
7093
  include Google::Apis::Core::Hashable
6947
7094
 
7095
+ # A summary of a DLP scan. This is a combination summary that contains both scan
7096
+ # on message and scan on attachments if any.
7097
+ # Corresponds to the JSON property `dlpMessageScanRecord`
7098
+ # @return [Google::Apis::CloudsearchV1::DlpMessageScanRecord]
7099
+ attr_accessor :dlp_message_scan_record
7100
+
6948
7101
  # A summary of a DLP scan event. This is a summary and should contain the
6949
7102
  # minimum amount of data required to identify and process DLP scans. It is
6950
7103
  # written to Starcast and encoded & returned to the client on attachment upload.
@@ -6964,6 +7117,7 @@ module Google
6964
7117
 
6965
7118
  # Update properties of this object
6966
7119
  def update!(**args)
7120
+ @dlp_message_scan_record = args[:dlp_message_scan_record] if args.key?(:dlp_message_scan_record)
6967
7121
  @dlp_scan_summary = args[:dlp_scan_summary] if args.key?(:dlp_scan_summary)
6968
7122
  @warn_acknowledged = args[:warn_acknowledged] if args.key?(:warn_acknowledged)
6969
7123
  end
@@ -7507,6 +7661,48 @@ module Google
7507
7661
  end
7508
7662
  end
7509
7663
 
7664
+ # A summary of a DLP scan. This is a combination summary that contains both scan
7665
+ # on message and scan on attachments if any.
7666
+ class DlpMessageScanRecord
7667
+ include Google::Apis::Core::Hashable
7668
+
7669
+ # A summary of a DLP scan event. This is a summary and should contain the
7670
+ # minimum amount of data required to identify and process DLP scans. It is
7671
+ # written to Starcast and encoded & returned to the client on attachment upload.
7672
+ # Corresponds to the JSON property `attachmentScanSummary`
7673
+ # @return [Google::Apis::CloudsearchV1::DlpScanSummary]
7674
+ attr_accessor :attachment_scan_summary
7675
+
7676
+ # The applied action.
7677
+ # Corresponds to the JSON property `dlpAction`
7678
+ # @return [Google::Apis::CloudsearchV1::DlpAction]
7679
+ attr_accessor :dlp_action
7680
+
7681
+ # A summary of a DLP scan event. This is a summary and should contain the
7682
+ # minimum amount of data required to identify and process DLP scans. It is
7683
+ # written to Starcast and encoded & returned to the client on attachment upload.
7684
+ # Corresponds to the JSON property `messageScanSummary`
7685
+ # @return [Google::Apis::CloudsearchV1::DlpScanSummary]
7686
+ attr_accessor :message_scan_summary
7687
+
7688
+ # The DLP scan outcome for the message.
7689
+ # Corresponds to the JSON property `scanOutcome`
7690
+ # @return [String]
7691
+ attr_accessor :scan_outcome
7692
+
7693
+ def initialize(**args)
7694
+ update!(**args)
7695
+ end
7696
+
7697
+ # Update properties of this object
7698
+ def update!(**args)
7699
+ @attachment_scan_summary = args[:attachment_scan_summary] if args.key?(:attachment_scan_summary)
7700
+ @dlp_action = args[:dlp_action] if args.key?(:dlp_action)
7701
+ @message_scan_summary = args[:message_scan_summary] if args.key?(:message_scan_summary)
7702
+ @scan_outcome = args[:scan_outcome] if args.key?(:scan_outcome)
7703
+ end
7704
+ end
7705
+
7510
7706
  # A summary of a DLP scan event. This is a summary and should contain the
7511
7707
  # minimum amount of data required to identify and process DLP scans. It is
7512
7708
  # written to Starcast and encoded & returned to the client on attachment upload.
@@ -7543,6 +7739,13 @@ module Google
7543
7739
  # @return [String]
7544
7740
  attr_accessor :scan_outcome
7545
7741
 
7742
+ # The event that triggered the scan. This corresponds to the rule trigger
7743
+ # configured in admin console and maps to the different things that can be
7744
+ # scanned.
7745
+ # Corresponds to the JSON property `scanTrigger`
7746
+ # @return [String]
7747
+ attr_accessor :scan_trigger
7748
+
7546
7749
  def initialize(**args)
7547
7750
  update!(**args)
7548
7751
  end
@@ -7553,6 +7756,7 @@ module Google
7553
7756
  @scan_id = args[:scan_id] if args.key?(:scan_id)
7554
7757
  @scan_not_applicable_for_context = args[:scan_not_applicable_for_context] if args.key?(:scan_not_applicable_for_context)
7555
7758
  @scan_outcome = args[:scan_outcome] if args.key?(:scan_outcome)
7759
+ @scan_trigger = args[:scan_trigger] if args.key?(:scan_trigger)
7556
7760
  end
7557
7761
  end
7558
7762
 
@@ -9917,7 +10121,9 @@ module Google
9917
10121
  class GoogleChatV1ContextualAddOnMarkupCardSection
9918
10122
  include Google::Apis::Core::Hashable
9919
10123
 
9920
- # The header of the section, text formatted supported.
10124
+ # The header of the section. Formatted text is supported. For more information
10125
+ # about formatting text, see Formatting text in Google Chat apps and Formatting
10126
+ # text in Google Workspace Add-ons.
9921
10127
  # Corresponds to the JSON property `header`
9922
10128
  # @return [String]
9923
10129
  attr_accessor :header
@@ -9942,7 +10148,7 @@ module Google
9942
10148
  class GoogleChatV1WidgetMarkup
9943
10149
  include Google::Apis::Core::Hashable
9944
10150
 
9945
- # A list of buttons. Buttons is also oneof data and only one of these fields
10151
+ # A list of buttons. Buttons is also `oneof data` and only one of these fields
9946
10152
  # should be set.
9947
10153
  # Corresponds to the JSON property `buttons`
9948
10154
  # @return [Array<Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupButton>]
@@ -9959,7 +10165,9 @@ module Google
9959
10165
  # @return [Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupKeyValue]
9960
10166
  attr_accessor :key_value
9961
10167
 
9962
- # A paragraph of text. Formatted text supported.
10168
+ # A paragraph of text. Formatted text supported. For more information about
10169
+ # formatting text, see Formatting text in Google Chat apps and Formatting text
10170
+ # in Google Workspace Add-ons.
9963
10171
  # Corresponds to the JSON property `textParagraph`
9964
10172
  # @return [Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupTextParagraph]
9965
10173
  attr_accessor :text_paragraph
@@ -10136,7 +10344,9 @@ module Google
10136
10344
  class GoogleChatV1WidgetMarkupKeyValue
10137
10345
  include Google::Apis::Core::Hashable
10138
10346
 
10139
- # The text of the bottom label. Formatted text supported.
10347
+ # The text of the bottom label. Formatted text supported. For more information
10348
+ # about formatting text, see Formatting text in Google Chat apps and Formatting
10349
+ # text in Google Workspace Add-ons.
10140
10350
  # Corresponds to the JSON property `bottomLabel`
10141
10351
  # @return [String]
10142
10352
  attr_accessor :bottom_label
@@ -10146,7 +10356,9 @@ module Google
10146
10356
  # @return [Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupButton]
10147
10357
  attr_accessor :button
10148
10358
 
10149
- # The text of the content. Formatted text supported and always required.
10359
+ # The text of the content. Formatted text supported and always required. For
10360
+ # more information about formatting text, see Formatting text in Google Chat
10361
+ # apps and Formatting text in Google Workspace Add-ons.
10150
10362
  # Corresponds to the JSON property `content`
10151
10363
  # @return [String]
10152
10364
  attr_accessor :content
@@ -10173,7 +10385,9 @@ module Google
10173
10385
  # @return [Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupOnClick]
10174
10386
  attr_accessor :on_click
10175
10387
 
10176
- # The text of the top label. Formatted text supported.
10388
+ # The text of the top label. Formatted text supported. For more information
10389
+ # about formatting text, see Formatting text in Google Chat apps and Formatting
10390
+ # text in Google Workspace Add-ons.
10177
10391
  # Corresponds to the JSON property `topLabel`
10178
10392
  # @return [String]
10179
10393
  attr_accessor :top_label
@@ -10265,7 +10479,9 @@ module Google
10265
10479
  end
10266
10480
  end
10267
10481
 
10268
- # A paragraph of text. Formatted text supported.
10482
+ # A paragraph of text. Formatted text supported. For more information about
10483
+ # formatting text, see Formatting text in Google Chat apps and Formatting text
10484
+ # in Google Workspace Add-ons.
10269
10485
  class GoogleChatV1WidgetMarkupTextParagraph
10270
10486
  include Google::Apis::Core::Hashable
10271
10487
 
@@ -13693,6 +13909,26 @@ module Google
13693
13909
  # @return [String]
13694
13910
  attr_accessor :message_origin
13695
13911
 
13912
+ # Contains reference to another message. It is used in shortcuts which are used
13913
+ # to collect messages from different spaces with a certain common property into
13914
+ # another space. For example, all @mentions of a user are collected into a
13915
+ # mention shortcut space (go/chat-shortcuts-backend-design for more details).
13916
+ # Clients can use this reference to enable navigation to the source message when
13917
+ # the shortcut message is clicked and also to identify a few other details about
13918
+ # the source message. Other fields (like text) from the source message are
13919
+ # copied on to the top-level fields in the Message proto by the server (More
13920
+ # details in go/chat-shortcuts-client-server-design).
13921
+ # Corresponds to the JSON property `messageReference`
13922
+ # @return [Google::Apis::CloudsearchV1::MessageReference]
13923
+ attr_accessor :message_reference
13924
+
13925
+ # Metadata used to describe how to render a message in search results page, e.g.,
13926
+ # highlighting and snipetting. In future, we can use this proto to return more
13927
+ # search specific data attached to a message.
13928
+ # Corresponds to the JSON property `messageSearchInfo`
13929
+ # @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageSearchInfo]
13930
+ attr_accessor :message_search_info
13931
+
13696
13932
  # State of the message, indicating whether the message is visible to all members
13697
13933
  # in the group or is only visible to the sender only, or the
13698
13934
  # private_message_viewer if it is set.
@@ -13841,6 +14077,8 @@ module Google
13841
14077
  @local_id = args[:local_id] if args.key?(:local_id)
13842
14078
  @message_integration_payload = args[:message_integration_payload] if args.key?(:message_integration_payload)
13843
14079
  @message_origin = args[:message_origin] if args.key?(:message_origin)
14080
+ @message_reference = args[:message_reference] if args.key?(:message_reference)
14081
+ @message_search_info = args[:message_search_info] if args.key?(:message_search_info)
13844
14082
  @message_state = args[:message_state] if args.key?(:message_state)
13845
14083
  @origin_app_suggestions = args[:origin_app_suggestions] if args.key?(:origin_app_suggestions)
13846
14084
  @personal_labels = args[:personal_labels] if args.key?(:personal_labels)
@@ -14082,6 +14320,33 @@ module Google
14082
14320
  end
14083
14321
  end
14084
14322
 
14323
+ # Contains reference to another message. It is used in shortcuts which are used
14324
+ # to collect messages from different spaces with a certain common property into
14325
+ # another space. For example, all @mentions of a user are collected into a
14326
+ # mention shortcut space (go/chat-shortcuts-backend-design for more details).
14327
+ # Clients can use this reference to enable navigation to the source message when
14328
+ # the shortcut message is clicked and also to identify a few other details about
14329
+ # the source message. Other fields (like text) from the source message are
14330
+ # copied on to the top-level fields in the Message proto by the server (More
14331
+ # details in go/chat-shortcuts-client-server-design).
14332
+ class MessageReference
14333
+ include Google::Apis::Core::Hashable
14334
+
14335
+ #
14336
+ # Corresponds to the JSON property `sourceInfo`
14337
+ # @return [Google::Apis::CloudsearchV1::SourceMessageInfo]
14338
+ attr_accessor :source_info
14339
+
14340
+ def initialize(**args)
14341
+ update!(**args)
14342
+ end
14343
+
14344
+ # Update properties of this object
14345
+ def update!(**args)
14346
+ @source_info = args[:source_info] if args.key?(:source_info)
14347
+ end
14348
+ end
14349
+
14085
14350
  # This is proto2's version of MessageSet.
14086
14351
  class MessageSet
14087
14352
  include Google::Apis::Core::Hashable
@@ -15360,6 +15625,11 @@ module Google
15360
15625
  class Presenter
15361
15626
  include Google::Apis::Core::Hashable
15362
15627
 
15628
+ # Information about the screen annotation session.
15629
+ # Corresponds to the JSON property `annotationInfo`
15630
+ # @return [Google::Apis::CloudsearchV1::AnnotationInfo]
15631
+ attr_accessor :annotation_info
15632
+
15363
15633
  # The device resource name of the device which requested the current presenter
15364
15634
  # to be set. This field can not be modified by clients.
15365
15635
  # Corresponds to the JSON property `byDeviceId`
@@ -15383,6 +15653,7 @@ module Google
15383
15653
 
15384
15654
  # Update properties of this object
15385
15655
  def update!(**args)
15656
+ @annotation_info = args[:annotation_info] if args.key?(:annotation_info)
15386
15657
  @by_device_id = args[:by_device_id] if args.key?(:by_device_id)
15387
15658
  @copresenter_device_ids = args[:copresenter_device_ids] if args.key?(:copresenter_device_ids)
15388
15659
  @presenter_device_id = args[:presenter_device_id] if args.key?(:presenter_device_id)
@@ -17754,6 +18025,38 @@ module Google
17754
18025
  end
17755
18026
  end
17756
18027
 
18028
+ # SearchLink metadata, for SEARCH_LINK segments. For a search link, the "text"
18029
+ # field should contain the display text. This is currently not indexed.
18030
+ class SearchLinkData
18031
+ include Google::Apis::Core::Hashable
18032
+
18033
+ # For lightweight scoring in serving time.
18034
+ # Corresponds to the JSON property `kgEntityConfidence`
18035
+ # @return [Float]
18036
+ attr_accessor :kg_entity_confidence
18037
+
18038
+ # MID of the KG entity being linked.
18039
+ # Corresponds to the JSON property `mid`
18040
+ # @return [String]
18041
+ attr_accessor :mid
18042
+
18043
+ #
18044
+ # Corresponds to the JSON property `queryBroadnessScore`
18045
+ # @return [Float]
18046
+ attr_accessor :query_broadness_score
18047
+
18048
+ def initialize(**args)
18049
+ update!(**args)
18050
+ end
18051
+
18052
+ # Update properties of this object
18053
+ def update!(**args)
18054
+ @kg_entity_confidence = args[:kg_entity_confidence] if args.key?(:kg_entity_confidence)
18055
+ @mid = args[:mid] if args.key?(:mid)
18056
+ @query_broadness_score = args[:query_broadness_score] if args.key?(:query_broadness_score)
18057
+ end
18058
+ end
18059
+
17757
18060
  # Additional search quality metadata of the item.
17758
18061
  class SearchQualityMetadata
17759
18062
  include Google::Apis::Core::Hashable
@@ -18053,6 +18356,12 @@ module Google
18053
18356
  # @return [Google::Apis::CloudsearchV1::LinkData]
18054
18357
  attr_accessor :link_data
18055
18358
 
18359
+ # SearchLink metadata, for SEARCH_LINK segments. For a search link, the "text"
18360
+ # field should contain the display text. This is currently not indexed.
18361
+ # Corresponds to the JSON property `searchLinkData`
18362
+ # @return [Google::Apis::CloudsearchV1::SearchLinkData]
18363
+ attr_accessor :search_link_data
18364
+
18056
18365
  # Text content of the Segment. As a general rule, this field should contain the
18057
18366
  # actual text that should be rendered in the UI. Thus, for a hashtag, it should
18058
18367
  # be "#Foo", and for a link, it should be the display text. Clients that do not
@@ -18097,6 +18406,7 @@ module Google
18097
18406
  @formatting = args[:formatting] if args.key?(:formatting)
18098
18407
  @hashtag_data = args[:hashtag_data] if args.key?(:hashtag_data)
18099
18408
  @link_data = args[:link_data] if args.key?(:link_data)
18409
+ @search_link_data = args[:search_link_data] if args.key?(:search_link_data)
18100
18410
  @text = args[:text] if args.key?(:text)
18101
18411
  @type = args[:type] if args.key?(:type)
18102
18412
  @user_mention_data = args[:user_mention_data] if args.key?(:user_mention_data)
@@ -18350,6 +18660,13 @@ module Google
18350
18660
  attr_accessor :chat_lock
18351
18661
  alias_method :chat_lock?, :chat_lock
18352
18662
 
18663
+ # The co-activity lock of the meeting space that lets owner control whether the
18664
+ # participants can start/stop or update the state of co-activity.
18665
+ # Corresponds to the JSON property `coActivityLock`
18666
+ # @return [Boolean]
18667
+ attr_accessor :co_activity_lock
18668
+ alias_method :co_activity_lock?, :co_activity_lock
18669
+
18353
18670
  # Whether meeting artifacts will be shared with cohosts.
18354
18671
  # Corresponds to the JSON property `cohostArtifactSharingEnabled`
18355
18672
  # @return [Boolean]
@@ -18399,6 +18716,7 @@ module Google
18399
18716
  @allow_joining_before_host = args[:allow_joining_before_host] if args.key?(:allow_joining_before_host)
18400
18717
  @attendance_report_enabled = args[:attendance_report_enabled] if args.key?(:attendance_report_enabled)
18401
18718
  @chat_lock = args[:chat_lock] if args.key?(:chat_lock)
18719
+ @co_activity_lock = args[:co_activity_lock] if args.key?(:co_activity_lock)
18402
18720
  @cohost_artifact_sharing_enabled = args[:cohost_artifact_sharing_enabled] if args.key?(:cohost_artifact_sharing_enabled)
18403
18721
  @cse_enabled = args[:cse_enabled] if args.key?(:cse_enabled)
18404
18722
  @default_as_viewer = args[:default_as_viewer] if args.key?(:default_as_viewer)
@@ -18852,6 +19170,31 @@ module Google
18852
19170
  end
18853
19171
  end
18854
19172
 
19173
+ #
19174
+ class SourceMessageInfo
19175
+ include Google::Apis::Core::Hashable
19176
+
19177
+ # Primary key for Message resource.
19178
+ # Corresponds to the JSON property `messageId`
19179
+ # @return [Google::Apis::CloudsearchV1::MessageId]
19180
+ attr_accessor :message_id
19181
+
19182
+ #
19183
+ # Corresponds to the JSON property `messageType`
19184
+ # @return [String]
19185
+ attr_accessor :message_type
19186
+
19187
+ def initialize(**args)
19188
+ update!(**args)
19189
+ end
19190
+
19191
+ # Update properties of this object
19192
+ def update!(**args)
19193
+ @message_id = args[:message_id] if args.key?(:message_id)
19194
+ @message_type = args[:message_type] if args.key?(:message_type)
19195
+ end
19196
+ end
19197
+
18855
19198
  # Per source result count information.
18856
19199
  class SourceResultCount
18857
19200
  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.48.0"
19
+ GEM_VERSION = "0.49.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 = "20230321"
25
+ REVISION = "20230503"
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'
@@ -4084,6 +4157,14 @@ module Google
4084
4157
  end
4085
4158
  end
4086
4159
 
4160
+ class AppsDynamiteSharedMessageSearchInfo
4161
+ # @private
4162
+ class Representation < Google::Apis::Core::JsonRepresentation
4163
+ collection :matched_segments_in_text_body, as: 'matchedSegmentsInTextBody', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedTextSegmentsWithDescription, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedTextSegmentsWithDescription::Representation
4164
+
4165
+ end
4166
+ end
4167
+
4087
4168
  class AppsDynamiteSharedOrganizationInfo
4088
4169
  # @private
4089
4170
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4397,7 +4478,6 @@ module Google
4397
4478
  class Representation < Google::Apis::Core::JsonRepresentation
4398
4479
  collection :column_items, as: 'columnItems', class: Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumn, decorator: Google::Apis::CloudsearchV1::AppsDynamiteStorageColumnsColumn::Representation
4399
4480
 
4400
- property :wrap_style, as: 'wrapStyle'
4401
4481
  end
4402
4482
  end
4403
4483
 
@@ -4853,6 +4933,8 @@ module Google
4853
4933
  property :attachment_id, as: 'attachmentId'
4854
4934
  property :card_add_on_data, as: 'cardAddOnData', class: Google::Apis::CloudsearchV1::AppsDynamiteStorageCard, decorator: Google::Apis::CloudsearchV1::AppsDynamiteStorageCard::Representation
4855
4935
 
4936
+ property :component_search_info, as: 'componentSearchInfo', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageComponentSearchInfo, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageComponentSearchInfo::Representation
4937
+
4856
4938
  property :deprecated_add_on_data, as: 'deprecatedAddOnData', class: Google::Apis::CloudsearchV1::ContextualAddOnMarkup, decorator: Google::Apis::CloudsearchV1::ContextualAddOnMarkup::Representation
4857
4939
 
4858
4940
  property :slack_data, as: 'slackData', class: Google::Apis::CloudsearchV1::AppsDynamiteV1ApiCompatV1Attachment, decorator: Google::Apis::CloudsearchV1::AppsDynamiteV1ApiCompatV1Attachment::Representation
@@ -5070,6 +5152,7 @@ module Google
5070
5152
  collection :attached_documents, as: 'attachedDocuments', class: Google::Apis::CloudsearchV1::DocumentInfo, decorator: Google::Apis::CloudsearchV1::DocumentInfo::Representation
5071
5153
 
5072
5154
  collection :available_access_types, as: 'availableAccessTypes'
5155
+ collection :available_annotation_tool_types, as: 'availableAnnotationToolTypes'
5073
5156
  collection :available_reactions, as: 'availableReactions', class: Google::Apis::CloudsearchV1::ReactionInfo, decorator: Google::Apis::CloudsearchV1::ReactionInfo::Representation
5074
5157
 
5075
5158
  property :broadcast_session_info, as: 'broadcastSessionInfo', class: Google::Apis::CloudsearchV1::BroadcastSessionInfo, decorator: Google::Apis::CloudsearchV1::BroadcastSessionInfo::Representation
@@ -5112,6 +5195,7 @@ module Google
5112
5195
  property :attendance_report_enabled, as: 'attendanceReportEnabled'
5113
5196
  property :audio_lock, as: 'audioLock'
5114
5197
  property :chat_lock, as: 'chatLock'
5198
+ property :co_activity_lock, as: 'coActivityLock'
5115
5199
  property :cse_enabled, as: 'cseEnabled'
5116
5200
  property :moderation_enabled, as: 'moderationEnabled'
5117
5201
  property :present_lock, as: 'presentLock'
@@ -5343,7 +5427,13 @@ module Google
5343
5427
  # @private
5344
5428
  class Representation < Google::Apis::Core::JsonRepresentation
5345
5429
  property :activity_title, as: 'activityTitle'
5430
+ property :add_on_id, as: 'addOnId'
5431
+ property :add_on_starting_state, as: 'addOnStartingState', class: Google::Apis::CloudsearchV1::AddOnStartingState, decorator: Google::Apis::CloudsearchV1::AddOnStartingState::Representation
5432
+
5346
5433
  property :co_activity_app, as: 'coActivityApp'
5434
+ property :initiator_device_id, as: 'initiatorDeviceId'
5435
+ property :presentation_device_id, as: 'presentationDeviceId'
5436
+ property :project_number, :numeric_string => true, as: 'projectNumber'
5347
5437
  end
5348
5438
  end
5349
5439
 
@@ -5541,6 +5631,8 @@ module Google
5541
5631
  class DataLossPreventionMetadata
5542
5632
  # @private
5543
5633
  class Representation < Google::Apis::Core::JsonRepresentation
5634
+ property :dlp_message_scan_record, as: 'dlpMessageScanRecord', class: Google::Apis::CloudsearchV1::DlpMessageScanRecord, decorator: Google::Apis::CloudsearchV1::DlpMessageScanRecord::Representation
5635
+
5544
5636
  property :dlp_scan_summary, as: 'dlpScanSummary', class: Google::Apis::CloudsearchV1::DlpScanSummary, decorator: Google::Apis::CloudsearchV1::DlpScanSummary::Representation
5545
5637
 
5546
5638
  property :warn_acknowledged, as: 'warnAcknowledged'
@@ -5694,6 +5786,19 @@ module Google
5694
5786
  end
5695
5787
  end
5696
5788
 
5789
+ class DlpMessageScanRecord
5790
+ # @private
5791
+ class Representation < Google::Apis::Core::JsonRepresentation
5792
+ property :attachment_scan_summary, as: 'attachmentScanSummary', class: Google::Apis::CloudsearchV1::DlpScanSummary, decorator: Google::Apis::CloudsearchV1::DlpScanSummary::Representation
5793
+
5794
+ property :dlp_action, as: 'dlpAction', class: Google::Apis::CloudsearchV1::DlpAction, decorator: Google::Apis::CloudsearchV1::DlpAction::Representation
5795
+
5796
+ property :message_scan_summary, as: 'messageScanSummary', class: Google::Apis::CloudsearchV1::DlpScanSummary, decorator: Google::Apis::CloudsearchV1::DlpScanSummary::Representation
5797
+
5798
+ property :scan_outcome, as: 'scanOutcome'
5799
+ end
5800
+ end
5801
+
5697
5802
  class DlpScanSummary
5698
5803
  # @private
5699
5804
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5702,6 +5807,7 @@ module Google
5702
5807
  property :scan_id, as: 'scanId'
5703
5808
  property :scan_not_applicable_for_context, as: 'scanNotApplicableForContext'
5704
5809
  property :scan_outcome, as: 'scanOutcome'
5810
+ property :scan_trigger, as: 'scanTrigger'
5705
5811
  end
5706
5812
  end
5707
5813
 
@@ -7466,6 +7572,10 @@ module Google
7466
7572
  property :message_integration_payload, as: 'messageIntegrationPayload', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageIntegrationPayload, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageIntegrationPayload::Representation
7467
7573
 
7468
7574
  property :message_origin, as: 'messageOrigin'
7575
+ property :message_reference, as: 'messageReference', class: Google::Apis::CloudsearchV1::MessageReference, decorator: Google::Apis::CloudsearchV1::MessageReference::Representation
7576
+
7577
+ property :message_search_info, as: 'messageSearchInfo', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageSearchInfo, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageSearchInfo::Representation
7578
+
7469
7579
  property :message_state, as: 'messageState'
7470
7580
  collection :origin_app_suggestions, as: 'originAppSuggestions', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedOriginAppSuggestion, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedOriginAppSuggestion::Representation
7471
7581
 
@@ -7563,6 +7673,14 @@ module Google
7563
7673
  end
7564
7674
  end
7565
7675
 
7676
+ class MessageReference
7677
+ # @private
7678
+ class Representation < Google::Apis::Core::JsonRepresentation
7679
+ property :source_info, as: 'sourceInfo', class: Google::Apis::CloudsearchV1::SourceMessageInfo, decorator: Google::Apis::CloudsearchV1::SourceMessageInfo::Representation
7680
+
7681
+ end
7682
+ end
7683
+
7566
7684
  class MessageSet
7567
7685
  # @private
7568
7686
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7922,6 +8040,8 @@ module Google
7922
8040
  class Presenter
7923
8041
  # @private
7924
8042
  class Representation < Google::Apis::Core::JsonRepresentation
8043
+ property :annotation_info, as: 'annotationInfo', class: Google::Apis::CloudsearchV1::AnnotationInfo, decorator: Google::Apis::CloudsearchV1::AnnotationInfo::Representation
8044
+
7925
8045
  property :by_device_id, as: 'byDeviceId'
7926
8046
  collection :copresenter_device_ids, as: 'copresenterDeviceIds'
7927
8047
  property :presenter_device_id, as: 'presenterDeviceId'
@@ -8590,6 +8710,15 @@ module Google
8590
8710
  end
8591
8711
  end
8592
8712
 
8713
+ class SearchLinkData
8714
+ # @private
8715
+ class Representation < Google::Apis::Core::JsonRepresentation
8716
+ property :kg_entity_confidence, as: 'kgEntityConfidence'
8717
+ property :mid, as: 'mid'
8718
+ property :query_broadness_score, as: 'queryBroadnessScore'
8719
+ end
8720
+ end
8721
+
8593
8722
  class SearchQualityMetadata
8594
8723
  # @private
8595
8724
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8679,6 +8808,8 @@ module Google
8679
8808
 
8680
8809
  property :link_data, as: 'linkData', class: Google::Apis::CloudsearchV1::LinkData, decorator: Google::Apis::CloudsearchV1::LinkData::Representation
8681
8810
 
8811
+ property :search_link_data, as: 'searchLinkData', class: Google::Apis::CloudsearchV1::SearchLinkData, decorator: Google::Apis::CloudsearchV1::SearchLinkData::Representation
8812
+
8682
8813
  property :text, as: 'text'
8683
8814
  property :type, as: 'type'
8684
8815
  property :user_mention_data, as: 'userMentionData', class: Google::Apis::CloudsearchV1::UserMentionData, decorator: Google::Apis::CloudsearchV1::UserMentionData::Representation
@@ -8751,6 +8882,7 @@ module Google
8751
8882
  property :allow_joining_before_host, as: 'allowJoiningBeforeHost'
8752
8883
  property :attendance_report_enabled, as: 'attendanceReportEnabled'
8753
8884
  property :chat_lock, as: 'chatLock'
8885
+ property :co_activity_lock, as: 'coActivityLock'
8754
8886
  property :cohost_artifact_sharing_enabled, as: 'cohostArtifactSharingEnabled'
8755
8887
  property :cse_enabled, as: 'cseEnabled'
8756
8888
  property :default_as_viewer, as: 'defaultAsViewer'
@@ -8878,6 +9010,15 @@ module Google
8878
9010
  end
8879
9011
  end
8880
9012
 
9013
+ class SourceMessageInfo
9014
+ # @private
9015
+ class Representation < Google::Apis::Core::JsonRepresentation
9016
+ property :message_id, as: 'messageId', class: Google::Apis::CloudsearchV1::MessageId, decorator: Google::Apis::CloudsearchV1::MessageId::Representation
9017
+
9018
+ property :message_type, as: 'messageType'
9019
+ end
9020
+ end
9021
+
8881
9022
  class SourceResultCount
8882
9023
  # @private
8883
9024
  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.48.0
4
+ version: 0.49.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-04-02 00:00:00.000000000 Z
11
+ date: 2023-05-14 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.48.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.49.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: []