google-apis-cloudsearch_v1 0.34.0 → 0.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f22c22ee278698ebf700d4832675fd03e3911c52902ca83ebe94f1bfdc34b49b
4
- data.tar.gz: 72b4df9b72ecfb0481e35805ee249b30e70d484cfc94e8ac416d78848e0e9af2
3
+ metadata.gz: dd5a670d67edab9644c3b9a4a2d4afbb34f8fa84a993e911ba03b61589741e77
4
+ data.tar.gz: 97d3ad43c04304ab3321f280d7001c918a21909e098d691e00e0aa9789dc033b
5
5
  SHA512:
6
- metadata.gz: cc7ef03b5b7757cd765e5d628846eaa4078aa70d491c6b2f2e1add3257a59ecaf2bbd07acac37f684bee1ce286a3ed2cdfdf6af99952990a6042fc8af23ae000
7
- data.tar.gz: 1ccb08529fe4feb1b945587efe4bc1ac6e0c0208ac3f08be7cab0184cc19c32334e03dd92aa9c69a8207d198904acd9e6dc10ebd144636114f855b4f861e92d3
6
+ metadata.gz: 53984646118c38bab702b34303a8d7113f24a088cd17d77ac8f7bf306b6e0ba4573296f9fd2684af050f66f94e3765ec67cf283ecf6093b071eabfc429d36540
7
+ data.tar.gz: 84044dd4d5a702da8402fdebe9e92918c65d6495d4e147bf8c7fd05b83097341ccbae34d28a724b362b552225d01d52bea84e602b9acf9d1c31f091b8a58a44f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.36.0 (2022-09-20)
4
+
5
+ * Regenerated from discovery document revision 20220913
6
+ * Regenerated using generator version 0.10.0
7
+
8
+ ### v0.35.0 (2022-09-10)
9
+
10
+ * Regenerated from discovery document revision 20220904
11
+
3
12
  ### v0.34.0 (2022-08-18)
4
13
 
5
14
  * Regenerated from discovery document revision 20220816
@@ -588,18 +588,23 @@ module Google
588
588
  end
589
589
  end
590
590
 
591
- # Next Id: 5
591
+ # Next Id: 7
592
592
  class AppsDynamiteSharedActivityFeedAnnotationData
593
593
  include Google::Apis::Core::Hashable
594
594
 
595
- # Unique id of the Activity Feed message. This will be in the form of "space-id/
596
- # message-id" or "dm-id/message-id", where the space-/dm-id and message-id
597
- # components are extracted from the top-level MessageId in message.proto (http://
598
- # shortn/_SulV51DNfF). This is copied into annotations so that no client changes
599
- # are needed to access this value. Clients will need a unique id for every
600
- # Activity Feed message to implement click-to-source.
601
- # Corresponds to the JSON property `activityFeedMessageId`
595
+ # Timestamp of when the Activity Feed message that contains this annotation was
596
+ # created. This is roughly when the activity happened, such as when a reaction
597
+ # happened, but will have at least some small delay, since the Activity Feed
598
+ # message is created asynchronously after. This timestamp should only be used
599
+ # for display when the activity create time is not available in the Chat UI,
600
+ # like the time of a reaction.
601
+ # Corresponds to the JSON property `activityFeedMessageCreateTime`
602
602
  # @return [String]
603
+ attr_accessor :activity_feed_message_create_time
604
+
605
+ # Primary key for Message resource.
606
+ # Corresponds to the JSON property `activityFeedMessageId`
607
+ # @return [Google::Apis::CloudsearchV1::MessageId]
603
608
  attr_accessor :activity_feed_message_id
604
609
 
605
610
  # Next Id: 5
@@ -607,7 +612,7 @@ module Google
607
612
  # @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedChatItem]
608
613
  attr_accessor :chat_item
609
614
 
610
- # Contains info regarding the updater of an Activity Feed item. Next Id: 6
615
+ # Contains info regarding the updater of an Activity Feed item. Next Id: 7
611
616
  # Corresponds to the JSON property `sharedUserInfo`
612
617
  # @return [Google::Apis::CloudsearchV1::UserInfo]
613
618
  attr_accessor :shared_user_info
@@ -623,6 +628,7 @@ module Google
623
628
 
624
629
  # Update properties of this object
625
630
  def update!(**args)
631
+ @activity_feed_message_create_time = args[:activity_feed_message_create_time] if args.key?(:activity_feed_message_create_time)
626
632
  @activity_feed_message_id = args[:activity_feed_message_id] if args.key?(:activity_feed_message_id)
627
633
  @chat_item = args[:chat_item] if args.key?(:chat_item)
628
634
  @shared_user_info = args[:shared_user_info] if args.key?(:shared_user_info)
@@ -1565,7 +1571,8 @@ module Google
1565
1571
  # @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedChatItemGroupInfo]
1566
1572
  attr_accessor :group_info
1567
1573
 
1568
- # Information that references a Dynamite chat message.
1574
+ # Information that references a Dynamite chat message. This is only used for
1575
+ # Activity Feed messages.
1569
1576
  # Corresponds to the JSON property `messageInfo`
1570
1577
  # @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageInfo]
1571
1578
  attr_accessor :message_info
@@ -2692,7 +2699,8 @@ module Google
2692
2699
  end
2693
2700
  end
2694
2701
 
2695
- # Information that references a Dynamite chat message.
2702
+ # Information that references a Dynamite chat message. This is only used for
2703
+ # Activity Feed messages.
2696
2704
  class AppsDynamiteSharedMessageInfo
2697
2705
  include Google::Apis::Core::Hashable
2698
2706
 
@@ -2701,6 +2709,11 @@ module Google
2701
2709
  # @return [Google::Apis::CloudsearchV1::MessageId]
2702
2710
  attr_accessor :message_id
2703
2711
 
2712
+ # The type of the source chat message.
2713
+ # Corresponds to the JSON property `messageType`
2714
+ # @return [String]
2715
+ attr_accessor :message_type
2716
+
2704
2717
  # Timestamp of when the topic containing the message has been read by the user.
2705
2718
  # This is populated if the message references an inline reply, in which case the
2706
2719
  # space may be marked as read but the topic still has unread messages.
@@ -2715,6 +2728,7 @@ module Google
2715
2728
  # Update properties of this object
2716
2729
  def update!(**args)
2717
2730
  @message_id = args[:message_id] if args.key?(:message_id)
2731
+ @message_type = args[:message_type] if args.key?(:message_type)
2718
2732
  @topic_read_time_usec = args[:topic_read_time_usec] if args.key?(:topic_read_time_usec)
2719
2733
  end
2720
2734
  end
@@ -3083,6 +3097,57 @@ module Google
3083
3097
  end
3084
3098
  end
3085
3099
 
3100
+ # Contains info on membership count for member types: HUMAN_USER, APP_USER &
3101
+ # ROSTER_MEMBER different states: INVITED, JOINED
3102
+ class AppsDynamiteSharedSegmentedMembershipCount
3103
+ include Google::Apis::Core::Hashable
3104
+
3105
+ #
3106
+ # Corresponds to the JSON property `memberType`
3107
+ # @return [String]
3108
+ attr_accessor :member_type
3109
+
3110
+ # count of members with given type and state
3111
+ # Corresponds to the JSON property `membershipCount`
3112
+ # @return [Fixnum]
3113
+ attr_accessor :membership_count
3114
+
3115
+ #
3116
+ # Corresponds to the JSON property `membershipState`
3117
+ # @return [String]
3118
+ attr_accessor :membership_state
3119
+
3120
+ def initialize(**args)
3121
+ update!(**args)
3122
+ end
3123
+
3124
+ # Update properties of this object
3125
+ def update!(**args)
3126
+ @member_type = args[:member_type] if args.key?(:member_type)
3127
+ @membership_count = args[:membership_count] if args.key?(:membership_count)
3128
+ @membership_state = args[:membership_state] if args.key?(:membership_state)
3129
+ end
3130
+ end
3131
+
3132
+ #
3133
+ class AppsDynamiteSharedSegmentedMembershipCounts
3134
+ include Google::Apis::Core::Hashable
3135
+
3136
+ #
3137
+ # Corresponds to the JSON property `value`
3138
+ # @return [Array<Google::Apis::CloudsearchV1::AppsDynamiteSharedSegmentedMembershipCount>]
3139
+ attr_accessor :value
3140
+
3141
+ def initialize(**args)
3142
+ update!(**args)
3143
+ end
3144
+
3145
+ # Update properties of this object
3146
+ def update!(**args)
3147
+ @value = args[:value] if args.key?(:value)
3148
+ end
3149
+ end
3150
+
3086
3151
  # A widget that creates a UI item (for example, a drop-down list) with options
3087
3152
  # for users to select.
3088
3153
  class AppsDynamiteSharedSelectionInput
@@ -4760,7 +4825,7 @@ module Google
4760
4825
  attr_accessor :cse_enabled
4761
4826
  alias_method :cse_enabled?, :cse_enabled
4762
4827
 
4763
- # Indicates whether the current call is moderated. go/meet-multimod-dd
4828
+ # Indicates whether the current call is moderated.
4764
4829
  # Corresponds to the JSON property `moderationEnabled`
4765
4830
  # @return [Boolean]
4766
4831
  attr_accessor :moderation_enabled
@@ -8807,7 +8872,7 @@ module Google
8807
8872
  end
8808
8873
 
8809
8874
  # The corpus specific metadata for office-type documents, from Google Docs and
8810
- # other sources. This message is passed to the scorer and beyond. Next tag: 7
8875
+ # other sources. This message is passed to the scorer and beyond. Next tag: 9
8811
8876
  class GoogleDocsMetadata
8812
8877
  include Google::Apis::Core::Hashable
8813
8878
 
@@ -8833,6 +8898,16 @@ module Google
8833
8898
  # @return [Fixnum]
8834
8899
  attr_accessor :last_content_modified_timestamp
8835
8900
 
8901
+ # Contains number of subscribers for the document.
8902
+ # Corresponds to the JSON property `numSubscribers`
8903
+ # @return [Fixnum]
8904
+ attr_accessor :num_subscribers
8905
+
8906
+ # Size of untruncated viewers list.
8907
+ # Corresponds to the JSON property `numViewers`
8908
+ # @return [Fixnum]
8909
+ attr_accessor :num_viewers
8910
+
8836
8911
  # A message containing information about a specific result. This information is
8837
8912
  # passed to the scorer and beyond; in particular, GWS relies on it to format the
8838
8913
  # result in the UI. Split from GoogleDocsMetadata in case we later want to reuse
@@ -8856,6 +8931,8 @@ module Google
8856
8931
  @document_type = args[:document_type] if args.key?(:document_type)
8857
8932
  @file_extension = args[:file_extension] if args.key?(:file_extension)
8858
8933
  @last_content_modified_timestamp = args[:last_content_modified_timestamp] if args.key?(:last_content_modified_timestamp)
8934
+ @num_subscribers = args[:num_subscribers] if args.key?(:num_subscribers)
8935
+ @num_viewers = args[:num_viewers] if args.key?(:num_viewers)
8859
8936
  @result_info = args[:result_info] if args.key?(:result_info)
8860
8937
  @type_info = args[:type_info] if args.key?(:type_info)
8861
8938
  end
@@ -9117,7 +9194,7 @@ module Google
9117
9194
  class GsuiteIntegrationMetadata
9118
9195
  include Google::Apis::Core::Hashable
9119
9196
 
9120
- # Next Id: 5
9197
+ # Next Id: 7
9121
9198
  # Corresponds to the JSON property `activityFeedData`
9122
9199
  # @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedActivityFeedAnnotationData]
9123
9200
  attr_accessor :activity_feed_data
@@ -10970,8 +11047,7 @@ module Google
10970
11047
 
10971
11048
  # An optional alias for the meeting space. The alias can in some cases be
10972
11049
  # resolved to the meeting space, similar to the meeting code. The limitation is
10973
- # that the user needs to be in the same meeting domain as the meeting space. See
10974
- # go/thor-backend/meeting-alias for more details.
11050
+ # that the user needs to be in the same meeting domain as the meeting space.
10975
11051
  # Corresponds to the JSON property `meetingAlias`
10976
11052
  # @return [String]
10977
11053
  attr_accessor :meeting_alias
@@ -10999,7 +11075,7 @@ module Google
10999
11075
  # Output only. A URL that clients (e.g. Calendar) can use to show the web page
11000
11076
  # with all join methods available for this meeting space. This link is also used
11001
11077
  # in iOS universal links and Android intents, used for opening the "More ways to
11002
- # join" view in the Thor mobile apps. Example: https://tel.meet/mee-ting-cod?pin=
11078
+ # join" view in the Meet mobile apps. Example: https://tel.meet/mee-ting-cod?pin=
11003
11079
  # 1234567891011 Here, "pin" is the universal phone PIN. We include it explicitly
11004
11080
  # to better support the offline case on the mobile. This is set when the meeting
11005
11081
  # space has either a universal PIN or an interop PIN and clients who can show a "
@@ -11362,6 +11438,15 @@ module Google
11362
11438
  # @return [Google::Apis::CloudsearchV1::MessageId]
11363
11439
  attr_accessor :id
11364
11440
 
11441
+ # Whether the message is content purged. Content purged messages contain only
11442
+ # data required for tombstone (see go/chat-infinite-tombstone). This field is
11443
+ # only used by Vault to display tombstone and should only be set to true if the
11444
+ # message is a tombstone.
11445
+ # Corresponds to the JSON property `isContentPurged`
11446
+ # @return [Boolean]
11447
+ attr_accessor :is_content_purged
11448
+ alias_method :is_content_purged?, :is_content_purged
11449
+
11365
11450
  # Output only. Indicates if the message is an inline reply. Set to true only if
11366
11451
  # the message's ParentPath is non-NULL. Currently, only inline replies have non-
11367
11452
  # NULL ParentPath. See go/chat-be-inline-reply-indicator.
@@ -11531,6 +11616,7 @@ module Google
11531
11616
  @editable_by = args[:editable_by] if args.key?(:editable_by)
11532
11617
  @fallback_text = args[:fallback_text] if args.key?(:fallback_text)
11533
11618
  @id = args[:id] if args.key?(:id)
11619
+ @is_content_purged = args[:is_content_purged] if args.key?(:is_content_purged)
11534
11620
  @is_inline_reply = args[:is_inline_reply] if args.key?(:is_inline_reply)
11535
11621
  @last_edit_time = args[:last_edit_time] if args.key?(:last_edit_time)
11536
11622
  @last_update_time = args[:last_update_time] if args.key?(:last_update_time)
@@ -14029,9 +14115,9 @@ module Google
14029
14115
  # translations. Set this field using the language set in browser or for the page.
14030
14116
  # In the event that the user's language preference is known, set this field to
14031
14117
  # the known user language. When specified, the documents in search results are
14032
- # biased towards the specified language. The suggest API does not use this
14033
- # parameter. Instead, suggest autocompletes only based on characters in the
14034
- # query.
14118
+ # biased towards the specified language. From Suggest API perspective, for 3p
14119
+ # suggest this is used as a hint while making predictions to add language
14120
+ # boosting.
14035
14121
  # Corresponds to the JSON property `languageCode`
14036
14122
  # @return [String]
14037
14123
  attr_accessor :language_code
@@ -14463,6 +14549,12 @@ module Google
14463
14549
  # @return [String]
14464
14550
  attr_accessor :roster_state
14465
14551
 
14552
+ # Roster membership count. May contain counts based on member type and
14553
+ # membership state.
14554
+ # Corresponds to the JSON property `segmentedMembershipCounts`
14555
+ # @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedSegmentedMembershipCounts]
14556
+ attr_accessor :segmented_membership_counts
14557
+
14466
14558
  def initialize(**args)
14467
14559
  update!(**args)
14468
14560
  end
@@ -14475,6 +14567,7 @@ module Google
14475
14567
  @name = args[:name] if args.key?(:name)
14476
14568
  @roster_gaia_key = args[:roster_gaia_key] if args.key?(:roster_gaia_key)
14477
14569
  @roster_state = args[:roster_state] if args.key?(:roster_state)
14570
+ @segmented_membership_counts = args[:segmented_membership_counts] if args.key?(:segmented_membership_counts)
14478
14571
  end
14479
14572
  end
14480
14573
 
@@ -15374,7 +15467,7 @@ module Google
15374
15467
  attr_accessor :default_as_viewer
15375
15468
  alias_method :default_as_viewer?, :default_as_viewer
15376
15469
 
15377
- # Indicates whether the meeting space is moderated. go/meet-multimod-dd
15470
+ # Indicates whether the meeting space is moderated.
15378
15471
  # Corresponds to the JSON property `moderationEnabled`
15379
15472
  # @return [Boolean]
15380
15473
  attr_accessor :moderation_enabled
@@ -17441,7 +17534,7 @@ module Google
17441
17534
  end
17442
17535
  end
17443
17536
 
17444
- # Contains info regarding the updater of an Activity Feed item. Next Id: 6
17537
+ # Contains info regarding the updater of an Activity Feed item. Next Id: 7
17445
17538
  class UserInfo
17446
17539
  include Google::Apis::Core::Hashable
17447
17540
 
@@ -17467,6 +17560,14 @@ module Google
17467
17560
  # @return [Fixnum]
17468
17561
  attr_accessor :updater_to_show_gaia_id
17469
17562
 
17563
+ # The display name of the updater for clients to show used for Gmail items. This
17564
+ # (along with the updater fields above) will be populated in the thread pipeline
17565
+ # (http://shortn/_rPS0GCp94Y) when converting Activity Feed message attributes
17566
+ # into client-renderable Activity Feed items.
17567
+ # Corresponds to the JSON property `updaterToShowName`
17568
+ # @return [String]
17569
+ attr_accessor :updater_to_show_name
17570
+
17470
17571
  # Primary key for User resource.
17471
17572
  # Corresponds to the JSON property `updaterToShowUserId`
17472
17573
  # @return [Google::Apis::CloudsearchV1::UserId]
@@ -17482,6 +17583,7 @@ module Google
17482
17583
  @updater_count_to_show = args[:updater_count_to_show] if args.key?(:updater_count_to_show)
17483
17584
  @updater_to_show_email = args[:updater_to_show_email] if args.key?(:updater_to_show_email)
17484
17585
  @updater_to_show_gaia_id = args[:updater_to_show_gaia_id] if args.key?(:updater_to_show_gaia_id)
17586
+ @updater_to_show_name = args[:updater_to_show_name] if args.key?(:updater_to_show_name)
17485
17587
  @updater_to_show_user_id = args[:updater_to_show_user_id] if args.key?(:updater_to_show_user_id)
17486
17588
  end
17487
17589
  end
@@ -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.34.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220816"
25
+ REVISION = "20220913"
26
26
  end
27
27
  end
28
28
  end
@@ -526,6 +526,18 @@ module Google
526
526
  include Google::Apis::Core::JsonObjectSupport
527
527
  end
528
528
 
529
+ class AppsDynamiteSharedSegmentedMembershipCount
530
+ class Representation < Google::Apis::Core::JsonRepresentation; end
531
+
532
+ include Google::Apis::Core::JsonObjectSupport
533
+ end
534
+
535
+ class AppsDynamiteSharedSegmentedMembershipCounts
536
+ class Representation < Google::Apis::Core::JsonRepresentation; end
537
+
538
+ include Google::Apis::Core::JsonObjectSupport
539
+ end
540
+
529
541
  class AppsDynamiteSharedSelectionInput
530
542
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
543
 
@@ -3092,7 +3104,9 @@ module Google
3092
3104
  class AppsDynamiteSharedActivityFeedAnnotationData
3093
3105
  # @private
3094
3106
  class Representation < Google::Apis::Core::JsonRepresentation
3095
- property :activity_feed_message_id, as: 'activityFeedMessageId'
3107
+ property :activity_feed_message_create_time, as: 'activityFeedMessageCreateTime'
3108
+ property :activity_feed_message_id, as: 'activityFeedMessageId', class: Google::Apis::CloudsearchV1::MessageId, decorator: Google::Apis::CloudsearchV1::MessageId::Representation
3109
+
3096
3110
  property :chat_item, as: 'chatItem', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedChatItem, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedChatItem::Representation
3097
3111
 
3098
3112
  property :shared_user_info, as: 'sharedUserInfo', class: Google::Apis::CloudsearchV1::UserInfo, decorator: Google::Apis::CloudsearchV1::UserInfo::Representation
@@ -3701,6 +3715,7 @@ module Google
3701
3715
  class Representation < Google::Apis::Core::JsonRepresentation
3702
3716
  property :message_id, as: 'messageId', class: Google::Apis::CloudsearchV1::MessageId, decorator: Google::Apis::CloudsearchV1::MessageId::Representation
3703
3717
 
3718
+ property :message_type, as: 'messageType'
3704
3719
  property :topic_read_time_usec, :numeric_string => true, as: 'topicReadTimeUsec'
3705
3720
  end
3706
3721
  end
@@ -3826,6 +3841,23 @@ module Google
3826
3841
  end
3827
3842
  end
3828
3843
 
3844
+ class AppsDynamiteSharedSegmentedMembershipCount
3845
+ # @private
3846
+ class Representation < Google::Apis::Core::JsonRepresentation
3847
+ property :member_type, as: 'memberType'
3848
+ property :membership_count, as: 'membershipCount'
3849
+ property :membership_state, as: 'membershipState'
3850
+ end
3851
+ end
3852
+
3853
+ class AppsDynamiteSharedSegmentedMembershipCounts
3854
+ # @private
3855
+ class Representation < Google::Apis::Core::JsonRepresentation
3856
+ collection :value, as: 'value', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedSegmentedMembershipCount, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedSegmentedMembershipCount::Representation
3857
+
3858
+ end
3859
+ end
3860
+
3829
3861
  class AppsDynamiteSharedSelectionInput
3830
3862
  # @private
3831
3863
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5477,6 +5509,8 @@ module Google
5477
5509
  property :document_type, as: 'documentType'
5478
5510
  property :file_extension, as: 'fileExtension'
5479
5511
  property :last_content_modified_timestamp, :numeric_string => true, as: 'lastContentModifiedTimestamp'
5512
+ property :num_subscribers, as: 'numSubscribers'
5513
+ property :num_viewers, as: 'numViewers'
5480
5514
  property :result_info, as: 'resultInfo', class: Google::Apis::CloudsearchV1::GoogleDocsResultInfo, decorator: Google::Apis::CloudsearchV1::GoogleDocsResultInfo::Representation
5481
5515
 
5482
5516
  property :type_info, as: 'typeInfo', class: Google::Apis::CloudsearchV1::TypeInfo, decorator: Google::Apis::CloudsearchV1::TypeInfo::Representation
@@ -6209,6 +6243,7 @@ module Google
6209
6243
  property :fallback_text, as: 'fallbackText'
6210
6244
  property :id, as: 'id', class: Google::Apis::CloudsearchV1::MessageId, decorator: Google::Apis::CloudsearchV1::MessageId::Representation
6211
6245
 
6246
+ property :is_content_purged, as: 'isContentPurged'
6212
6247
  property :is_inline_reply, as: 'isInlineReply'
6213
6248
  property :last_edit_time, :numeric_string => true, as: 'lastEditTime'
6214
6249
  property :last_update_time, :numeric_string => true, as: 'lastUpdateTime'
@@ -7068,6 +7103,8 @@ module Google
7068
7103
  property :name, as: 'name'
7069
7104
  property :roster_gaia_key, as: 'rosterGaiaKey'
7070
7105
  property :roster_state, as: 'rosterState'
7106
+ property :segmented_membership_counts, as: 'segmentedMembershipCounts', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedSegmentedMembershipCounts, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedSegmentedMembershipCounts::Representation
7107
+
7071
7108
  end
7072
7109
  end
7073
7110
 
@@ -7905,6 +7942,7 @@ module Google
7905
7942
  property :updater_count_to_show, as: 'updaterCountToShow'
7906
7943
  property :updater_to_show_email, as: 'updaterToShowEmail'
7907
7944
  property :updater_to_show_gaia_id, :numeric_string => true, as: 'updaterToShowGaiaId'
7945
+ property :updater_to_show_name, as: 'updaterToShowName'
7908
7946
  property :updater_to_show_user_id, as: 'updaterToShowUserId', class: Google::Apis::CloudsearchV1::UserId, decorator: Google::Apis::CloudsearchV1::UserId::Representation
7909
7947
 
7910
7948
  end
@@ -961,9 +961,9 @@ module Google
961
961
  # translations. Set this field using the language set in browser or for the page.
962
962
  # In the event that the user's language preference is known, set this field to
963
963
  # the known user language. When specified, the documents in search results are
964
- # biased towards the specified language. The suggest API does not use this
965
- # parameter. Instead, suggest autocompletes only based on characters in the
966
- # query.
964
+ # biased towards the specified language. From Suggest API perspective, for 3p
965
+ # suggest this is used as a hint while making predictions to add language
966
+ # boosting.
967
967
  # @param [String] request_options_search_application_id
968
968
  # The ID generated when you create a search application using the [admin console]
969
969
  # (https://support.google.com/a/answer/9043922).
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.34.0
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-22 00:00:00.000000000 Z
11
+ date: 2022-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.7'
19
+ version: 0.9.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.7'
29
+ version: 0.9.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.36.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: []