google-apis-cloudsearch_v1 0.49.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
@@ -455,7 +455,7 @@ module Google
|
|
455
455
|
attr_accessor :local_id
|
456
456
|
|
457
457
|
# Annotation metadata to display system messages for membership changes. Next
|
458
|
-
# Tag:
|
458
|
+
# Tag: 13
|
459
459
|
# Corresponds to the JSON property `membershipChanged`
|
460
460
|
# @return [Google::Apis::CloudsearchV1::MembershipChangedMetadata]
|
461
461
|
attr_accessor :membership_changed
|
@@ -1836,6 +1836,11 @@ module Google
|
|
1836
1836
|
# @return [String]
|
1837
1837
|
attr_accessor :meeting_code
|
1838
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
|
+
|
1839
1844
|
# Required. A URL, in the format "https://meet.google.com/*" (e.g. https://meet.
|
1840
1845
|
# google.com/cxv-zbgj-wzw), to identify and access the meeting space.
|
1841
1846
|
# Corresponds to the JSON property `meetingUrl`
|
@@ -1849,6 +1854,7 @@ module Google
|
|
1849
1854
|
# Update properties of this object
|
1850
1855
|
def update!(**args)
|
1851
1856
|
@meeting_code = args[:meeting_code] if args.key?(:meeting_code)
|
1857
|
+
@meeting_type = args[:meeting_type] if args.key?(:meeting_type)
|
1852
1858
|
@meeting_url = args[:meeting_url] if args.key?(:meeting_url)
|
1853
1859
|
end
|
1854
1860
|
end
|
@@ -13634,7 +13640,7 @@ module Google
|
|
13634
13640
|
end
|
13635
13641
|
|
13636
13642
|
# Annotation metadata to display system messages for membership changes. Next
|
13637
|
-
# Tag:
|
13643
|
+
# Tag: 13
|
13638
13644
|
class MembershipChangedMetadata
|
13639
13645
|
include Google::Apis::Core::Hashable
|
13640
13646
|
|
@@ -13936,6 +13942,11 @@ module Google
|
|
13936
13942
|
# @return [String]
|
13937
13943
|
attr_accessor :message_state
|
13938
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
|
+
|
13939
13950
|
# Indicates if this message contains any suggestions that were provided by any
|
13940
13951
|
# Apps.
|
13941
13952
|
# Corresponds to the JSON property `originAppSuggestions`
|
@@ -14080,6 +14091,7 @@ module Google
|
|
14080
14091
|
@message_reference = args[:message_reference] if args.key?(:message_reference)
|
14081
14092
|
@message_search_info = args[:message_search_info] if args.key?(:message_search_info)
|
14082
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)
|
14083
14095
|
@origin_app_suggestions = args[:origin_app_suggestions] if args.key?(:origin_app_suggestions)
|
14084
14096
|
@personal_labels = args[:personal_labels] if args.key?(:personal_labels)
|
14085
14097
|
@private_message_infos = args[:private_message_infos] if args.key?(:private_message_infos)
|
@@ -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
|
@@ -4124,6 +4124,7 @@ module Google
|
|
4124
4124
|
# @private
|
4125
4125
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4126
4126
|
property :meeting_code, as: 'meetingCode'
|
4127
|
+
property :meeting_type, as: 'meetingType'
|
4127
4128
|
property :meeting_url, as: 'meetingUrl'
|
4128
4129
|
end
|
4129
4130
|
end
|
@@ -7577,6 +7578,7 @@ module Google
|
|
7577
7578
|
property :message_search_info, as: 'messageSearchInfo', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageSearchInfo, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedMessageSearchInfo::Representation
|
7578
7579
|
|
7579
7580
|
property :message_state, as: 'messageState'
|
7581
|
+
property :number_of_unicode_emojis, as: 'numberOfUnicodeEmojis'
|
7580
7582
|
collection :origin_app_suggestions, as: 'originAppSuggestions', class: Google::Apis::CloudsearchV1::AppsDynamiteSharedOriginAppSuggestion, decorator: Google::Apis::CloudsearchV1::AppsDynamiteSharedOriginAppSuggestion::Representation
|
7581
7583
|
|
7582
7584
|
collection :personal_labels, as: 'personalLabels', class: Google::Apis::CloudsearchV1::PersonalLabelTag, decorator: Google::Apis::CloudsearchV1::PersonalLabelTag::Representation
|
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-05-
|
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: []
|