google-apis-cloudsearch_v1 0.38.0 → 0.39.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -217,6 +217,25 @@ module Google
|
|
217
217
|
end
|
218
218
|
end
|
219
219
|
|
220
|
+
#
|
221
|
+
class AddonComposeUiActionMarkup
|
222
|
+
include Google::Apis::Core::Hashable
|
223
|
+
|
224
|
+
#
|
225
|
+
# Corresponds to the JSON property `type`
|
226
|
+
# @return [String]
|
227
|
+
attr_accessor :type
|
228
|
+
|
229
|
+
def initialize(**args)
|
230
|
+
update!(**args)
|
231
|
+
end
|
232
|
+
|
233
|
+
# Update properties of this object
|
234
|
+
def update!(**args)
|
235
|
+
@type = args[:type] if args.key?(:type)
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
220
239
|
# Earlier we used to populate just the affected_members list and inferred the
|
221
240
|
# new membership state (roles didn't exist back then) from the Type. go/dynamite-
|
222
241
|
# finra required backend to know the previous membership state to reconstruct
|
@@ -370,7 +389,8 @@ module Google
|
|
370
389
|
# @return [String]
|
371
390
|
attr_accessor :local_id
|
372
391
|
|
373
|
-
# Annotation metadata to display system messages for membership changes.
|
392
|
+
# Annotation metadata to display system messages for membership changes. Next
|
393
|
+
# Tag: 8
|
374
394
|
# Corresponds to the JSON property `membershipChanged`
|
375
395
|
# @return [Google::Apis::CloudsearchV1::MembershipChangedMetadata]
|
376
396
|
attr_accessor :membership_changed
|
@@ -2777,6 +2797,11 @@ module Google
|
|
2777
2797
|
# @return [Google::Apis::CloudsearchV1::AppsDynamiteSharedAction]
|
2778
2798
|
attr_accessor :action
|
2779
2799
|
|
2800
|
+
# Actions handled by individual host apps.
|
2801
|
+
# Corresponds to the JSON property `hostAppAction`
|
2802
|
+
# @return [Google::Apis::CloudsearchV1::HostAppActionMarkup]
|
2803
|
+
attr_accessor :host_app_action
|
2804
|
+
|
2780
2805
|
# An action that describes the behavior when the form is submitted. For example,
|
2781
2806
|
# an Apps Script can be invoked to handle the form.
|
2782
2807
|
# Corresponds to the JSON property `openDynamicLinkAction`
|
@@ -2795,6 +2820,7 @@ module Google
|
|
2795
2820
|
# Update properties of this object
|
2796
2821
|
def update!(**args)
|
2797
2822
|
@action = args[:action] if args.key?(:action)
|
2823
|
+
@host_app_action = args[:host_app_action] if args.key?(:host_app_action)
|
2798
2824
|
@open_dynamic_link_action = args[:open_dynamic_link_action] if args.key?(:open_dynamic_link_action)
|
2799
2825
|
@open_link = args[:open_link] if args.key?(:open_link)
|
2800
2826
|
end
|
@@ -4023,6 +4049,281 @@ module Google
|
|
4023
4049
|
end
|
4024
4050
|
end
|
4025
4051
|
|
4052
|
+
#
|
4053
|
+
class AppsExtensionsMarkupCalendarClientActionMarkupAddAttachmentsActionMarkup
|
4054
|
+
include Google::Apis::Core::Hashable
|
4055
|
+
|
4056
|
+
#
|
4057
|
+
# Corresponds to the JSON property `addonAttachments`
|
4058
|
+
# @return [Array<Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupAddAttachmentsActionMarkupAddonAttachment>]
|
4059
|
+
attr_accessor :addon_attachments
|
4060
|
+
|
4061
|
+
def initialize(**args)
|
4062
|
+
update!(**args)
|
4063
|
+
end
|
4064
|
+
|
4065
|
+
# Update properties of this object
|
4066
|
+
def update!(**args)
|
4067
|
+
@addon_attachments = args[:addon_attachments] if args.key?(:addon_attachments)
|
4068
|
+
end
|
4069
|
+
end
|
4070
|
+
|
4071
|
+
#
|
4072
|
+
class AppsExtensionsMarkupCalendarClientActionMarkupAddAttachmentsActionMarkupAddonAttachment
|
4073
|
+
include Google::Apis::Core::Hashable
|
4074
|
+
|
4075
|
+
# Link to the resource's icon.
|
4076
|
+
# Corresponds to the JSON property `iconUrl`
|
4077
|
+
# @return [String]
|
4078
|
+
attr_accessor :icon_url
|
4079
|
+
|
4080
|
+
# MIME type of the content in resource_url.
|
4081
|
+
# Corresponds to the JSON property `mimeType`
|
4082
|
+
# @return [String]
|
4083
|
+
attr_accessor :mime_type
|
4084
|
+
|
4085
|
+
#
|
4086
|
+
# Corresponds to the JSON property `resourceUrl`
|
4087
|
+
# @return [String]
|
4088
|
+
attr_accessor :resource_url
|
4089
|
+
|
4090
|
+
# Title of the attachment.
|
4091
|
+
# Corresponds to the JSON property `title`
|
4092
|
+
# @return [String]
|
4093
|
+
attr_accessor :title
|
4094
|
+
|
4095
|
+
def initialize(**args)
|
4096
|
+
update!(**args)
|
4097
|
+
end
|
4098
|
+
|
4099
|
+
# Update properties of this object
|
4100
|
+
def update!(**args)
|
4101
|
+
@icon_url = args[:icon_url] if args.key?(:icon_url)
|
4102
|
+
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
4103
|
+
@resource_url = args[:resource_url] if args.key?(:resource_url)
|
4104
|
+
@title = args[:title] if args.key?(:title)
|
4105
|
+
end
|
4106
|
+
end
|
4107
|
+
|
4108
|
+
# Markup that defines conference data associated to a Google Calendar event.
|
4109
|
+
class AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkup
|
4110
|
+
include Google::Apis::Core::Hashable
|
4111
|
+
|
4112
|
+
# Unique identifier for this conference data. Maximum 512 characters long.
|
4113
|
+
# Corresponds to the JSON property `conferenceId`
|
4114
|
+
# @return [String]
|
4115
|
+
attr_accessor :conference_id
|
4116
|
+
|
4117
|
+
# An identifier of the conferencing solution. Must match a value from the
|
4118
|
+
# deployment's `calendar.conferenceSolution.id` field.
|
4119
|
+
# Corresponds to the JSON property `conferenceSolutionId`
|
4120
|
+
# @return [String]
|
4121
|
+
attr_accessor :conference_solution_id
|
4122
|
+
|
4123
|
+
# Entry points to the conference. Maximum 300 entry points are allowed.
|
4124
|
+
# Corresponds to the JSON property `entryPoints`
|
4125
|
+
# @return [Array<Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupEntryPointMarkup>]
|
4126
|
+
attr_accessor :entry_points
|
4127
|
+
|
4128
|
+
# Represents an error that occurred during conference creation.
|
4129
|
+
# Corresponds to the JSON property `error`
|
4130
|
+
# @return [Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupError]
|
4131
|
+
attr_accessor :error
|
4132
|
+
|
4133
|
+
# Additional notes (such as instructions from the administrator, legal notices)
|
4134
|
+
# to display to the user. Can contain HTML. Max length 2048 characters.
|
4135
|
+
# Corresponds to the JSON property `note`
|
4136
|
+
# @return [String]
|
4137
|
+
attr_accessor :note
|
4138
|
+
|
4139
|
+
# Additional add-on parameters. Maximum 300 parameters are allowed.
|
4140
|
+
# Corresponds to the JSON property `parameters`
|
4141
|
+
# @return [Array<Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupParameter>]
|
4142
|
+
attr_accessor :parameters
|
4143
|
+
|
4144
|
+
def initialize(**args)
|
4145
|
+
update!(**args)
|
4146
|
+
end
|
4147
|
+
|
4148
|
+
# Update properties of this object
|
4149
|
+
def update!(**args)
|
4150
|
+
@conference_id = args[:conference_id] if args.key?(:conference_id)
|
4151
|
+
@conference_solution_id = args[:conference_solution_id] if args.key?(:conference_solution_id)
|
4152
|
+
@entry_points = args[:entry_points] if args.key?(:entry_points)
|
4153
|
+
@error = args[:error] if args.key?(:error)
|
4154
|
+
@note = args[:note] if args.key?(:note)
|
4155
|
+
@parameters = args[:parameters] if args.key?(:parameters)
|
4156
|
+
end
|
4157
|
+
end
|
4158
|
+
|
4159
|
+
# A way to join the conference.
|
4160
|
+
class AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupEntryPointMarkup
|
4161
|
+
include Google::Apis::Core::Hashable
|
4162
|
+
|
4163
|
+
# An access code for accessing the conference. Maximum 128 characters long.
|
4164
|
+
# Corresponds to the JSON property `accessCode`
|
4165
|
+
# @return [String]
|
4166
|
+
attr_accessor :access_code
|
4167
|
+
|
4168
|
+
# Features of the entry point, such as being toll or toll-free. One entry point
|
4169
|
+
# can have multiple features.
|
4170
|
+
# Corresponds to the JSON property `features`
|
4171
|
+
# @return [Array<String>]
|
4172
|
+
attr_accessor :features
|
4173
|
+
|
4174
|
+
# The label of the entry point to display to the user. Maximum 512 characters
|
4175
|
+
# long.
|
4176
|
+
# Corresponds to the JSON property `label`
|
4177
|
+
# @return [String]
|
4178
|
+
attr_accessor :label
|
4179
|
+
|
4180
|
+
# A meeting code for accessing the conference. Maximum 128 characters long.
|
4181
|
+
# Corresponds to the JSON property `meetingCode`
|
4182
|
+
# @return [String]
|
4183
|
+
attr_accessor :meeting_code
|
4184
|
+
|
4185
|
+
# A passcode for accessing the conference. Maximum 128 characters long.
|
4186
|
+
# Corresponds to the JSON property `passcode`
|
4187
|
+
# @return [String]
|
4188
|
+
attr_accessor :passcode
|
4189
|
+
|
4190
|
+
# A password for accessing the conference. Maximum 128 characters long.
|
4191
|
+
# Corresponds to the JSON property `password`
|
4192
|
+
# @return [String]
|
4193
|
+
attr_accessor :password
|
4194
|
+
|
4195
|
+
# A PIN for accessing the conference. Maximum 128 characters long.
|
4196
|
+
# Corresponds to the JSON property `pin`
|
4197
|
+
# @return [String]
|
4198
|
+
attr_accessor :pin
|
4199
|
+
|
4200
|
+
# The CLDR/ISO 3166 region code for the country associated with this entry point.
|
4201
|
+
# Applicable only to `Type.PHONE`.
|
4202
|
+
# Corresponds to the JSON property `regionCode`
|
4203
|
+
# @return [String]
|
4204
|
+
attr_accessor :region_code
|
4205
|
+
|
4206
|
+
# The type of the entry point. Required.
|
4207
|
+
# Corresponds to the JSON property `type`
|
4208
|
+
# @return [String]
|
4209
|
+
attr_accessor :type
|
4210
|
+
|
4211
|
+
# A URI for joining the conference. Supports tel: and http(s): and should be at
|
4212
|
+
# most 1300 characters long. Required.
|
4213
|
+
# Corresponds to the JSON property `uri`
|
4214
|
+
# @return [String]
|
4215
|
+
attr_accessor :uri
|
4216
|
+
|
4217
|
+
def initialize(**args)
|
4218
|
+
update!(**args)
|
4219
|
+
end
|
4220
|
+
|
4221
|
+
# Update properties of this object
|
4222
|
+
def update!(**args)
|
4223
|
+
@access_code = args[:access_code] if args.key?(:access_code)
|
4224
|
+
@features = args[:features] if args.key?(:features)
|
4225
|
+
@label = args[:label] if args.key?(:label)
|
4226
|
+
@meeting_code = args[:meeting_code] if args.key?(:meeting_code)
|
4227
|
+
@passcode = args[:passcode] if args.key?(:passcode)
|
4228
|
+
@password = args[:password] if args.key?(:password)
|
4229
|
+
@pin = args[:pin] if args.key?(:pin)
|
4230
|
+
@region_code = args[:region_code] if args.key?(:region_code)
|
4231
|
+
@type = args[:type] if args.key?(:type)
|
4232
|
+
@uri = args[:uri] if args.key?(:uri)
|
4233
|
+
end
|
4234
|
+
end
|
4235
|
+
|
4236
|
+
# Represents an error that occurred during conference creation.
|
4237
|
+
class AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupError
|
4238
|
+
include Google::Apis::Core::Hashable
|
4239
|
+
|
4240
|
+
# If the error type is `AUTHENTICATION`, the add-on can provide a URL allowing
|
4241
|
+
# users to log in. Maximum 1300 characters long.
|
4242
|
+
# Corresponds to the JSON property `authenticationUrl`
|
4243
|
+
# @return [String]
|
4244
|
+
attr_accessor :authentication_url
|
4245
|
+
|
4246
|
+
# The type of error. Required.
|
4247
|
+
# Corresponds to the JSON property `type`
|
4248
|
+
# @return [String]
|
4249
|
+
attr_accessor :type
|
4250
|
+
|
4251
|
+
def initialize(**args)
|
4252
|
+
update!(**args)
|
4253
|
+
end
|
4254
|
+
|
4255
|
+
# Update properties of this object
|
4256
|
+
def update!(**args)
|
4257
|
+
@authentication_url = args[:authentication_url] if args.key?(:authentication_url)
|
4258
|
+
@type = args[:type] if args.key?(:type)
|
4259
|
+
end
|
4260
|
+
end
|
4261
|
+
|
4262
|
+
# Solution-specific parameters that are persisted with the event data and, if an
|
4263
|
+
# update or delete is needed, are passed to the add-on. For example: `[`key: '
|
4264
|
+
# sessionKey', value: '123'`, `key: 'meetingId', value: '456'`]`
|
4265
|
+
class AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupParameter
|
4266
|
+
include Google::Apis::Core::Hashable
|
4267
|
+
|
4268
|
+
# The key of the parameter. Maximum 50 characters long. Required.
|
4269
|
+
# Corresponds to the JSON property `key`
|
4270
|
+
# @return [String]
|
4271
|
+
attr_accessor :key
|
4272
|
+
|
4273
|
+
# The value of the parameter. Maximum 1024 characters long. Required.
|
4274
|
+
# Corresponds to the JSON property `value`
|
4275
|
+
# @return [String]
|
4276
|
+
attr_accessor :value
|
4277
|
+
|
4278
|
+
def initialize(**args)
|
4279
|
+
update!(**args)
|
4280
|
+
end
|
4281
|
+
|
4282
|
+
# Update properties of this object
|
4283
|
+
def update!(**args)
|
4284
|
+
@key = args[:key] if args.key?(:key)
|
4285
|
+
@value = args[:value] if args.key?(:value)
|
4286
|
+
end
|
4287
|
+
end
|
4288
|
+
|
4289
|
+
#
|
4290
|
+
class AppsExtensionsMarkupCalendarClientActionMarkupEditAttendeesActionMarkup
|
4291
|
+
include Google::Apis::Core::Hashable
|
4292
|
+
|
4293
|
+
# A list of attendees to add to the Google Calendar event.
|
4294
|
+
# Corresponds to the JSON property `addAttendeeEmails`
|
4295
|
+
# @return [Array<String>]
|
4296
|
+
attr_accessor :add_attendee_emails
|
4297
|
+
|
4298
|
+
def initialize(**args)
|
4299
|
+
update!(**args)
|
4300
|
+
end
|
4301
|
+
|
4302
|
+
# Update properties of this object
|
4303
|
+
def update!(**args)
|
4304
|
+
@add_attendee_emails = args[:add_attendee_emails] if args.key?(:add_attendee_emails)
|
4305
|
+
end
|
4306
|
+
end
|
4307
|
+
|
4308
|
+
#
|
4309
|
+
class AppsExtensionsMarkupCalendarClientActionMarkupEditConferenceDataActionMarkup
|
4310
|
+
include Google::Apis::Core::Hashable
|
4311
|
+
|
4312
|
+
# Markup that defines conference data associated to a Google Calendar event.
|
4313
|
+
# Corresponds to the JSON property `conferenceData`
|
4314
|
+
# @return [Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkup]
|
4315
|
+
attr_accessor :conference_data
|
4316
|
+
|
4317
|
+
def initialize(**args)
|
4318
|
+
update!(**args)
|
4319
|
+
end
|
4320
|
+
|
4321
|
+
# Update properties of this object
|
4322
|
+
def update!(**args)
|
4323
|
+
@conference_data = args[:conference_data] if args.key?(:conference_data)
|
4324
|
+
end
|
4325
|
+
end
|
4326
|
+
|
4026
4327
|
# Attachments that follow the message text.
|
4027
4328
|
class Attachment
|
4028
4329
|
include Google::Apis::Core::Hashable
|
@@ -4623,6 +4924,37 @@ module Google
|
|
4623
4924
|
end
|
4624
4925
|
end
|
4625
4926
|
|
4927
|
+
#
|
4928
|
+
class CalendarClientActionMarkup
|
4929
|
+
include Google::Apis::Core::Hashable
|
4930
|
+
|
4931
|
+
# An action that adds attachments to the Google Calendar event.
|
4932
|
+
# Corresponds to the JSON property `addAttachmentsActionMarkup`
|
4933
|
+
# @return [Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupAddAttachmentsActionMarkup]
|
4934
|
+
attr_accessor :add_attachments_action_markup
|
4935
|
+
|
4936
|
+
# An action that adds attendees to the Google Calendar event.
|
4937
|
+
# Corresponds to the JSON property `editAttendeesActionMarkup`
|
4938
|
+
# @return [Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupEditAttendeesActionMarkup]
|
4939
|
+
attr_accessor :edit_attendees_action_markup
|
4940
|
+
|
4941
|
+
# An action that adds conference data to the Google Calendar event.
|
4942
|
+
# Corresponds to the JSON property `editConferenceDataActionMarkup`
|
4943
|
+
# @return [Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupEditConferenceDataActionMarkup]
|
4944
|
+
attr_accessor :edit_conference_data_action_markup
|
4945
|
+
|
4946
|
+
def initialize(**args)
|
4947
|
+
update!(**args)
|
4948
|
+
end
|
4949
|
+
|
4950
|
+
# Update properties of this object
|
4951
|
+
def update!(**args)
|
4952
|
+
@add_attachments_action_markup = args[:add_attachments_action_markup] if args.key?(:add_attachments_action_markup)
|
4953
|
+
@edit_attendees_action_markup = args[:edit_attendees_action_markup] if args.key?(:edit_attendees_action_markup)
|
4954
|
+
@edit_conference_data_action_markup = args[:edit_conference_data_action_markup] if args.key?(:edit_conference_data_action_markup)
|
4955
|
+
end
|
4956
|
+
end
|
4957
|
+
|
4626
4958
|
# Contains information regarding an ongoing conference (aka call) for a meeting
|
4627
4959
|
# space.
|
4628
4960
|
class CallInfo
|
@@ -4808,6 +5140,17 @@ module Google
|
|
4808
5140
|
attr_accessor :access_lock
|
4809
5141
|
alias_method :access_lock?, :access_lock
|
4810
5142
|
|
5143
|
+
# The current access type of the conference.
|
5144
|
+
# Corresponds to the JSON property `accessType`
|
5145
|
+
# @return [String]
|
5146
|
+
attr_accessor :access_type
|
5147
|
+
|
5148
|
+
# Whether users can join this conference before a host (Host or Cohost).
|
5149
|
+
# Corresponds to the JSON property `allowJoiningBeforeHost`
|
5150
|
+
# @return [Boolean]
|
5151
|
+
attr_accessor :allow_joining_before_host
|
5152
|
+
alias_method :allow_joining_before_host?, :allow_joining_before_host
|
5153
|
+
|
4811
5154
|
# Indicates whether the attendance report is currently enabled or disabled.
|
4812
5155
|
# Corresponds to the JSON property `attendanceReportEnabled`
|
4813
5156
|
# @return [Boolean]
|
@@ -4832,7 +5175,7 @@ module Google
|
|
4832
5175
|
attr_accessor :cse_enabled
|
4833
5176
|
alias_method :cse_enabled?, :cse_enabled
|
4834
5177
|
|
4835
|
-
# Indicates whether
|
5178
|
+
# Indicates whether moderation is currently on or off.
|
4836
5179
|
# Corresponds to the JSON property `moderationEnabled`
|
4837
5180
|
# @return [Boolean]
|
4838
5181
|
attr_accessor :moderation_enabled
|
@@ -4863,6 +5206,8 @@ module Google
|
|
4863
5206
|
# Update properties of this object
|
4864
5207
|
def update!(**args)
|
4865
5208
|
@access_lock = args[:access_lock] if args.key?(:access_lock)
|
5209
|
+
@access_type = args[:access_type] if args.key?(:access_type)
|
5210
|
+
@allow_joining_before_host = args[:allow_joining_before_host] if args.key?(:allow_joining_before_host)
|
4866
5211
|
@attendance_report_enabled = args[:attendance_report_enabled] if args.key?(:attendance_report_enabled)
|
4867
5212
|
@audio_lock = args[:audio_lock] if args.key?(:audio_lock)
|
4868
5213
|
@chat_lock = args[:chat_lock] if args.key?(:chat_lock)
|
@@ -5050,6 +5395,19 @@ module Google
|
|
5050
5395
|
end
|
5051
5396
|
end
|
5052
5397
|
|
5398
|
+
# Actions handled by Chat Clients.
|
5399
|
+
class ChatClientActionMarkup
|
5400
|
+
include Google::Apis::Core::Hashable
|
5401
|
+
|
5402
|
+
def initialize(**args)
|
5403
|
+
update!(**args)
|
5404
|
+
end
|
5405
|
+
|
5406
|
+
# Update properties of this object
|
5407
|
+
def update!(**args)
|
5408
|
+
end
|
5409
|
+
end
|
5410
|
+
|
5053
5411
|
# Configuration of the in meeting chat.
|
5054
5412
|
class ChatConfig
|
5055
5413
|
include Google::Apis::Core::Hashable
|
@@ -5933,6 +6291,31 @@ module Google
|
|
5933
6291
|
end
|
5934
6292
|
end
|
5935
6293
|
|
6294
|
+
# The result of a user running a custom function.
|
6295
|
+
class CustomFunctionReturnValueMarkup
|
6296
|
+
include Google::Apis::Core::Hashable
|
6297
|
+
|
6298
|
+
# The error message to show to the user if something went wrong.
|
6299
|
+
# Corresponds to the JSON property `errorMessage`
|
6300
|
+
# @return [String]
|
6301
|
+
attr_accessor :error_message
|
6302
|
+
|
6303
|
+
# The value that resulted from running the custom function.
|
6304
|
+
# Corresponds to the JSON property `value`
|
6305
|
+
# @return [Object]
|
6306
|
+
attr_accessor :value
|
6307
|
+
|
6308
|
+
def initialize(**args)
|
6309
|
+
update!(**args)
|
6310
|
+
end
|
6311
|
+
|
6312
|
+
# Update properties of this object
|
6313
|
+
def update!(**args)
|
6314
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
6315
|
+
@value = args[:value] if args.key?(:value)
|
6316
|
+
end
|
6317
|
+
end
|
6318
|
+
|
5936
6319
|
# Represents a GSuite customer ID. Obfuscated with CustomerIdObfuscator.
|
5937
6320
|
class CustomerId
|
5938
6321
|
include Google::Apis::Core::Hashable
|
@@ -6823,6 +7206,25 @@ module Google
|
|
6823
7206
|
end
|
6824
7207
|
end
|
6825
7208
|
|
7209
|
+
#
|
7210
|
+
class DriveClientActionMarkup
|
7211
|
+
include Google::Apis::Core::Hashable
|
7212
|
+
|
7213
|
+
#
|
7214
|
+
# Corresponds to the JSON property `requestFileScope`
|
7215
|
+
# @return [Google::Apis::CloudsearchV1::RequestFileScope]
|
7216
|
+
attr_accessor :request_file_scope
|
7217
|
+
|
7218
|
+
def initialize(**args)
|
7219
|
+
update!(**args)
|
7220
|
+
end
|
7221
|
+
|
7222
|
+
# Update properties of this object
|
7223
|
+
def update!(**args)
|
7224
|
+
@request_file_scope = args[:request_file_scope] if args.key?(:request_file_scope)
|
7225
|
+
end
|
7226
|
+
end
|
7227
|
+
|
6826
7228
|
# Drive follow-up search restricts (e.g. "followup:suggestions").
|
6827
7229
|
class DriveFollowUpRestrict
|
6828
7230
|
include Google::Apis::Core::Hashable
|
@@ -7221,6 +7623,25 @@ module Google
|
|
7221
7623
|
end
|
7222
7624
|
end
|
7223
7625
|
|
7626
|
+
#
|
7627
|
+
class EditorClientActionMarkup
|
7628
|
+
include Google::Apis::Core::Hashable
|
7629
|
+
|
7630
|
+
#
|
7631
|
+
# Corresponds to the JSON property `requestFileScopeForActiveDocument`
|
7632
|
+
# @return [Google::Apis::CloudsearchV1::RequestFileScopeForActiveDocument]
|
7633
|
+
attr_accessor :request_file_scope_for_active_document
|
7634
|
+
|
7635
|
+
def initialize(**args)
|
7636
|
+
update!(**args)
|
7637
|
+
end
|
7638
|
+
|
7639
|
+
# Update properties of this object
|
7640
|
+
def update!(**args)
|
7641
|
+
@request_file_scope_for_active_document = args[:request_file_scope_for_active_document] if args.key?(:request_file_scope_for_active_document)
|
7642
|
+
end
|
7643
|
+
end
|
7644
|
+
|
7224
7645
|
# A person's email address.
|
7225
7646
|
class EmailAddress
|
7226
7647
|
include Google::Apis::Core::Hashable
|
@@ -8351,7 +8772,44 @@ module Google
|
|
8351
8772
|
|
8352
8773
|
# Update properties of this object
|
8353
8774
|
def update!(**args)
|
8354
|
-
@stats = args[:stats] if args.key?(:stats)
|
8775
|
+
@stats = args[:stats] if args.key?(:stats)
|
8776
|
+
end
|
8777
|
+
end
|
8778
|
+
|
8779
|
+
#
|
8780
|
+
class GmailClientActionMarkup
|
8781
|
+
include Google::Apis::Core::Hashable
|
8782
|
+
|
8783
|
+
#
|
8784
|
+
# Corresponds to the JSON property `addonComposeUiActionMarkup`
|
8785
|
+
# @return [Google::Apis::CloudsearchV1::AddonComposeUiActionMarkup]
|
8786
|
+
attr_accessor :addon_compose_ui_action_markup
|
8787
|
+
|
8788
|
+
#
|
8789
|
+
# Corresponds to the JSON property `openCreatedDraftActionMarkup`
|
8790
|
+
# @return [Google::Apis::CloudsearchV1::OpenCreatedDraftActionMarkup]
|
8791
|
+
attr_accessor :open_created_draft_action_markup
|
8792
|
+
|
8793
|
+
#
|
8794
|
+
# Corresponds to the JSON property `taskAction`
|
8795
|
+
# @return [Google::Apis::CloudsearchV1::TaskActionMarkup]
|
8796
|
+
attr_accessor :task_action
|
8797
|
+
|
8798
|
+
#
|
8799
|
+
# Corresponds to the JSON property `updateDraftActionMarkup`
|
8800
|
+
# @return [Google::Apis::CloudsearchV1::UpdateDraftActionMarkup]
|
8801
|
+
attr_accessor :update_draft_action_markup
|
8802
|
+
|
8803
|
+
def initialize(**args)
|
8804
|
+
update!(**args)
|
8805
|
+
end
|
8806
|
+
|
8807
|
+
# Update properties of this object
|
8808
|
+
def update!(**args)
|
8809
|
+
@addon_compose_ui_action_markup = args[:addon_compose_ui_action_markup] if args.key?(:addon_compose_ui_action_markup)
|
8810
|
+
@open_created_draft_action_markup = args[:open_created_draft_action_markup] if args.key?(:open_created_draft_action_markup)
|
8811
|
+
@task_action = args[:task_action] if args.key?(:task_action)
|
8812
|
+
@update_draft_action_markup = args[:update_draft_action_markup] if args.key?(:update_draft_action_markup)
|
8355
8813
|
end
|
8356
8814
|
end
|
8357
8815
|
|
@@ -8432,7 +8890,7 @@ module Google
|
|
8432
8890
|
|
8433
8891
|
# A card action is the action associated with the card. For an invoice card, a
|
8434
8892
|
# typical action would be: delete invoice, email invoice or open the invoice in
|
8435
|
-
# browser.
|
8893
|
+
# browser. Not supported by Google Chat apps.
|
8436
8894
|
class GoogleChatV1ContextualAddOnMarkupCardCardAction
|
8437
8895
|
include Google::Apis::Core::Hashable
|
8438
8896
|
|
@@ -9333,6 +9791,55 @@ module Google
|
|
9333
9791
|
end
|
9334
9792
|
end
|
9335
9793
|
|
9794
|
+
# Actions handled by individual host apps.
|
9795
|
+
class HostAppActionMarkup
|
9796
|
+
include Google::Apis::Core::Hashable
|
9797
|
+
|
9798
|
+
# Actions handled by Calendar.
|
9799
|
+
# Corresponds to the JSON property `calendarAction`
|
9800
|
+
# @return [Google::Apis::CloudsearchV1::CalendarClientActionMarkup]
|
9801
|
+
attr_accessor :calendar_action
|
9802
|
+
|
9803
|
+
# Actions handled by Chat Clients.
|
9804
|
+
# Corresponds to the JSON property `chatAction`
|
9805
|
+
# @return [Google::Apis::CloudsearchV1::ChatClientActionMarkup]
|
9806
|
+
attr_accessor :chat_action
|
9807
|
+
|
9808
|
+
# Actions handled by Drive.
|
9809
|
+
# Corresponds to the JSON property `driveAction`
|
9810
|
+
# @return [Google::Apis::CloudsearchV1::DriveClientActionMarkup]
|
9811
|
+
attr_accessor :drive_action
|
9812
|
+
|
9813
|
+
# Actions handled by Docs, Sheets, or Slides.
|
9814
|
+
# Corresponds to the JSON property `editorAction`
|
9815
|
+
# @return [Google::Apis::CloudsearchV1::EditorClientActionMarkup]
|
9816
|
+
attr_accessor :editor_action
|
9817
|
+
|
9818
|
+
# Actions handled by Gmail.
|
9819
|
+
# Corresponds to the JSON property `gmailAction`
|
9820
|
+
# @return [Google::Apis::CloudsearchV1::GmailClientActionMarkup]
|
9821
|
+
attr_accessor :gmail_action
|
9822
|
+
|
9823
|
+
# Actions handled by Sheets.
|
9824
|
+
# Corresponds to the JSON property `sheetsAction`
|
9825
|
+
# @return [Google::Apis::CloudsearchV1::SheetsClientActionMarkup]
|
9826
|
+
attr_accessor :sheets_action
|
9827
|
+
|
9828
|
+
def initialize(**args)
|
9829
|
+
update!(**args)
|
9830
|
+
end
|
9831
|
+
|
9832
|
+
# Update properties of this object
|
9833
|
+
def update!(**args)
|
9834
|
+
@calendar_action = args[:calendar_action] if args.key?(:calendar_action)
|
9835
|
+
@chat_action = args[:chat_action] if args.key?(:chat_action)
|
9836
|
+
@drive_action = args[:drive_action] if args.key?(:drive_action)
|
9837
|
+
@editor_action = args[:editor_action] if args.key?(:editor_action)
|
9838
|
+
@gmail_action = args[:gmail_action] if args.key?(:gmail_action)
|
9839
|
+
@sheets_action = args[:sheets_action] if args.key?(:sheets_action)
|
9840
|
+
end
|
9841
|
+
end
|
9842
|
+
|
9336
9843
|
# Represents a single host. Optionally, the MDB owner of the host can be
|
9337
9844
|
# specified.
|
9338
9845
|
class HostProto
|
@@ -9825,6 +10332,37 @@ module Google
|
|
9825
10332
|
end
|
9826
10333
|
end
|
9827
10334
|
|
10335
|
+
#
|
10336
|
+
class InsertContent
|
10337
|
+
include Google::Apis::Core::Hashable
|
10338
|
+
|
10339
|
+
# The content to be inserted.
|
10340
|
+
# Corresponds to the JSON property `content`
|
10341
|
+
# @return [String]
|
10342
|
+
attr_accessor :content
|
10343
|
+
|
10344
|
+
# The type of inserted content.
|
10345
|
+
# Corresponds to the JSON property `contentType`
|
10346
|
+
# @return [String]
|
10347
|
+
attr_accessor :content_type
|
10348
|
+
|
10349
|
+
#
|
10350
|
+
# Corresponds to the JSON property `mimeType`
|
10351
|
+
# @return [String]
|
10352
|
+
attr_accessor :mime_type
|
10353
|
+
|
10354
|
+
def initialize(**args)
|
10355
|
+
update!(**args)
|
10356
|
+
end
|
10357
|
+
|
10358
|
+
# Update properties of this object
|
10359
|
+
def update!(**args)
|
10360
|
+
@content = args[:content] if args.key?(:content)
|
10361
|
+
@content_type = args[:content_type] if args.key?(:content_type)
|
10362
|
+
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
10363
|
+
end
|
10364
|
+
end
|
10365
|
+
|
9828
10366
|
# Used to provide a search operator for integer properties. This is optional.
|
9829
10367
|
# Search operators let users restrict the query to specific fields relevant to
|
9830
10368
|
# the type of item being searched.
|
@@ -11087,8 +11625,8 @@ module Google
|
|
11087
11625
|
# @return [Array<Google::Apis::CloudsearchV1::PhoneAccess>]
|
11088
11626
|
attr_accessor :phone_access
|
11089
11627
|
|
11090
|
-
# Settings of a meeting space that can be
|
11091
|
-
#
|
11628
|
+
# Settings of a meeting space that can be edited by users with corresponding
|
11629
|
+
# manage privilege. These settings are always populated in responses.
|
11092
11630
|
# Corresponds to the JSON property `settings`
|
11093
11631
|
# @return [Google::Apis::CloudsearchV1::Settings]
|
11094
11632
|
attr_accessor :settings
|
@@ -11204,7 +11742,8 @@ module Google
|
|
11204
11742
|
end
|
11205
11743
|
end
|
11206
11744
|
|
11207
|
-
# Annotation metadata to display system messages for membership changes.
|
11745
|
+
# Annotation metadata to display system messages for membership changes. Next
|
11746
|
+
# Tag: 8
|
11208
11747
|
class MembershipChangedMetadata
|
11209
11748
|
include Google::Apis::Core::Hashable
|
11210
11749
|
|
@@ -11233,6 +11772,11 @@ module Google
|
|
11233
11772
|
# @return [Google::Apis::CloudsearchV1::User]
|
11234
11773
|
attr_accessor :initiator_profile
|
11235
11774
|
|
11775
|
+
# The type of the user who initiated this membership change.
|
11776
|
+
# Corresponds to the JSON property `initiatorType`
|
11777
|
+
# @return [String]
|
11778
|
+
attr_accessor :initiator_type
|
11779
|
+
|
11236
11780
|
#
|
11237
11781
|
# Corresponds to the JSON property `type`
|
11238
11782
|
# @return [String]
|
@@ -11249,6 +11793,7 @@ module Google
|
|
11249
11793
|
@affected_memberships = args[:affected_memberships] if args.key?(:affected_memberships)
|
11250
11794
|
@initiator = args[:initiator] if args.key?(:initiator)
|
11251
11795
|
@initiator_profile = args[:initiator_profile] if args.key?(:initiator_profile)
|
11796
|
+
@initiator_type = args[:initiator_type] if args.key?(:initiator_type)
|
11252
11797
|
@type = args[:type] if args.key?(:type)
|
11253
11798
|
end
|
11254
11799
|
end
|
@@ -12166,6 +12711,46 @@ module Google
|
|
12166
12711
|
end
|
12167
12712
|
end
|
12168
12713
|
|
12714
|
+
#
|
12715
|
+
class OpenCreatedDraftActionMarkup
|
12716
|
+
include Google::Apis::Core::Hashable
|
12717
|
+
|
12718
|
+
# The ID of the newly created draft in the form "r123".
|
12719
|
+
# Corresponds to the JSON property `draftId`
|
12720
|
+
# @return [String]
|
12721
|
+
attr_accessor :draft_id
|
12722
|
+
|
12723
|
+
# The server storage ID in hex format, for example,"15e9fa622ce1029d".
|
12724
|
+
# Corresponds to the JSON property `draftStorageId`
|
12725
|
+
# @return [String]
|
12726
|
+
attr_accessor :draft_storage_id
|
12727
|
+
|
12728
|
+
# The ID of the thread containing the newly created draft, for example, "
|
12729
|
+
# 15e9fa622ce1029d".
|
12730
|
+
# Corresponds to the JSON property `draftThreadId`
|
12731
|
+
# @return [String]
|
12732
|
+
attr_accessor :draft_thread_id
|
12733
|
+
|
12734
|
+
# The server permanent ID for the draft's thread. This field isn't set anywhere,
|
12735
|
+
# and it's ignored when processing OpenCreatedDraftActionMarkup. Supply and use
|
12736
|
+
# draftThreadStorageId instead.
|
12737
|
+
# Corresponds to the JSON property `draftThreadServerPermId`
|
12738
|
+
# @return [String]
|
12739
|
+
attr_accessor :draft_thread_server_perm_id
|
12740
|
+
|
12741
|
+
def initialize(**args)
|
12742
|
+
update!(**args)
|
12743
|
+
end
|
12744
|
+
|
12745
|
+
# Update properties of this object
|
12746
|
+
def update!(**args)
|
12747
|
+
@draft_id = args[:draft_id] if args.key?(:draft_id)
|
12748
|
+
@draft_storage_id = args[:draft_storage_id] if args.key?(:draft_storage_id)
|
12749
|
+
@draft_thread_id = args[:draft_thread_id] if args.key?(:draft_thread_id)
|
12750
|
+
@draft_thread_server_perm_id = args[:draft_thread_server_perm_id] if args.key?(:draft_thread_server_perm_id)
|
12751
|
+
end
|
12752
|
+
end
|
12753
|
+
|
12169
12754
|
#
|
12170
12755
|
class OpenLink
|
12171
12756
|
include Google::Apis::Core::Hashable
|
@@ -13946,6 +14531,25 @@ module Google
|
|
13946
14531
|
end
|
13947
14532
|
end
|
13948
14533
|
|
14534
|
+
#
|
14535
|
+
class Recipient
|
14536
|
+
include Google::Apis::Core::Hashable
|
14537
|
+
|
14538
|
+
#
|
14539
|
+
# Corresponds to the JSON property `email`
|
14540
|
+
# @return [String]
|
14541
|
+
attr_accessor :email
|
14542
|
+
|
14543
|
+
def initialize(**args)
|
14544
|
+
update!(**args)
|
14545
|
+
end
|
14546
|
+
|
14547
|
+
# Update properties of this object
|
14548
|
+
def update!(**args)
|
14549
|
+
@email = args[:email] if args.key?(:email)
|
14550
|
+
end
|
14551
|
+
end
|
14552
|
+
|
13949
14553
|
# A recording event is something that happens to the recording in a conference.
|
13950
14554
|
class RecordingEvent
|
13951
14555
|
include Google::Apis::Core::Hashable
|
@@ -14119,6 +14723,38 @@ module Google
|
|
14119
14723
|
end
|
14120
14724
|
end
|
14121
14725
|
|
14726
|
+
#
|
14727
|
+
class RequestFileScope
|
14728
|
+
include Google::Apis::Core::Hashable
|
14729
|
+
|
14730
|
+
#
|
14731
|
+
# Corresponds to the JSON property `itemId`
|
14732
|
+
# @return [String]
|
14733
|
+
attr_accessor :item_id
|
14734
|
+
|
14735
|
+
def initialize(**args)
|
14736
|
+
update!(**args)
|
14737
|
+
end
|
14738
|
+
|
14739
|
+
# Update properties of this object
|
14740
|
+
def update!(**args)
|
14741
|
+
@item_id = args[:item_id] if args.key?(:item_id)
|
14742
|
+
end
|
14743
|
+
end
|
14744
|
+
|
14745
|
+
#
|
14746
|
+
class RequestFileScopeForActiveDocument
|
14747
|
+
include Google::Apis::Core::Hashable
|
14748
|
+
|
14749
|
+
def initialize(**args)
|
14750
|
+
update!(**args)
|
14751
|
+
end
|
14752
|
+
|
14753
|
+
# Update properties of this object
|
14754
|
+
def update!(**args)
|
14755
|
+
end
|
14756
|
+
end
|
14757
|
+
|
14122
14758
|
# Shared request options for all RPC methods.
|
14123
14759
|
class RequestOptions
|
14124
14760
|
include Google::Apis::Core::Hashable
|
@@ -14253,11 +14889,6 @@ module Google
|
|
14253
14889
|
class ResponseDebugInfo
|
14254
14890
|
include Google::Apis::Core::Hashable
|
14255
14891
|
|
14256
|
-
# Experiments enabled in QAPI.
|
14257
|
-
# Corresponds to the JSON property `enabledExperiments`
|
14258
|
-
# @return [Array<Fixnum>]
|
14259
|
-
attr_accessor :enabled_experiments
|
14260
|
-
|
14261
14892
|
# General debug info formatted for display.
|
14262
14893
|
# Corresponds to the JSON property `formattedDebugInfo`
|
14263
14894
|
# @return [String]
|
@@ -14269,7 +14900,6 @@ module Google
|
|
14269
14900
|
|
14270
14901
|
# Update properties of this object
|
14271
14902
|
def update!(**args)
|
14272
|
-
@enabled_experiments = args[:enabled_experiments] if args.key?(:enabled_experiments)
|
14273
14903
|
@formatted_debug_info = args[:formatted_debug_info] if args.key?(:formatted_debug_info)
|
14274
14904
|
end
|
14275
14905
|
end
|
@@ -14547,6 +15177,12 @@ module Google
|
|
14547
15177
|
# @return [Google::Apis::CloudsearchV1::RosterId]
|
14548
15178
|
attr_accessor :id
|
14549
15179
|
|
15180
|
+
# Whether caller has visibility into members of the roster.
|
15181
|
+
# Corresponds to the JSON property `isMembershipVisibleToCaller`
|
15182
|
+
# @return [Boolean]
|
15183
|
+
attr_accessor :is_membership_visible_to_caller
|
15184
|
+
alias_method :is_membership_visible_to_caller?, :is_membership_visible_to_caller
|
15185
|
+
|
14550
15186
|
#
|
14551
15187
|
# Corresponds to the JSON property `membershipCount`
|
14552
15188
|
# @return [Fixnum]
|
@@ -14581,6 +15217,7 @@ module Google
|
|
14581
15217
|
def update!(**args)
|
14582
15218
|
@avatar_url = args[:avatar_url] if args.key?(:avatar_url)
|
14583
15219
|
@id = args[:id] if args.key?(:id)
|
15220
|
+
@is_membership_visible_to_caller = args[:is_membership_visible_to_caller] if args.key?(:is_membership_visible_to_caller)
|
14584
15221
|
@membership_count = args[:membership_count] if args.key?(:membership_count)
|
14585
15222
|
@name = args[:name] if args.key?(:name)
|
14586
15223
|
@roster_gaia_key = args[:roster_gaia_key] if args.key?(:roster_gaia_key)
|
@@ -15441,18 +16078,29 @@ module Google
|
|
15441
16078
|
end
|
15442
16079
|
end
|
15443
16080
|
|
15444
|
-
# Settings of a meeting space that can be
|
15445
|
-
#
|
16081
|
+
# Settings of a meeting space that can be edited by users with corresponding
|
16082
|
+
# manage privilege. These settings are always populated in responses.
|
15446
16083
|
class Settings
|
15447
16084
|
include Google::Apis::Core::Hashable
|
15448
16085
|
|
15449
|
-
# The access lock of the meeting space that lets
|
15450
|
-
# meeting.
|
16086
|
+
# The access lock of the meeting space that lets hosts control who can join the
|
16087
|
+
# meeting.
|
15451
16088
|
# Corresponds to the JSON property `accessLock`
|
15452
16089
|
# @return [Boolean]
|
15453
16090
|
attr_accessor :access_lock
|
15454
16091
|
alias_method :access_lock?, :access_lock
|
15455
16092
|
|
16093
|
+
# The access type of the meeting space.
|
16094
|
+
# Corresponds to the JSON property `accessType`
|
16095
|
+
# @return [String]
|
16096
|
+
attr_accessor :access_type
|
16097
|
+
|
16098
|
+
# Whether users can join before host in the conferences of this meeting space.
|
16099
|
+
# Corresponds to the JSON property `allowJoiningBeforeHost`
|
16100
|
+
# @return [Boolean]
|
16101
|
+
attr_accessor :allow_joining_before_host
|
16102
|
+
alias_method :allow_joining_before_host?, :allow_joining_before_host
|
16103
|
+
|
15456
16104
|
# Whether attendance report is enabled for the meeting space.
|
15457
16105
|
# Corresponds to the JSON property `attendanceReportEnabled`
|
15458
16106
|
# @return [Boolean]
|
@@ -15460,8 +16108,7 @@ module Google
|
|
15460
16108
|
alias_method :attendance_report_enabled?, :attendance_report_enabled
|
15461
16109
|
|
15462
16110
|
# The chat lock of the meeting space that lets owner control whether the
|
15463
|
-
# participants can send chat messages.
|
15464
|
-
# for the meeting space.
|
16111
|
+
# participants can send chat messages.
|
15465
16112
|
# Corresponds to the JSON property `chatLock`
|
15466
16113
|
# @return [Boolean]
|
15467
16114
|
attr_accessor :chat_lock
|
@@ -15492,16 +16139,14 @@ module Google
|
|
15492
16139
|
alias_method :moderation_enabled?, :moderation_enabled
|
15493
16140
|
|
15494
16141
|
# The present lock of the meeting space that lets owner control whether the
|
15495
|
-
# participants can present their screen.
|
15496
|
-
# enabled for the meeting space.
|
16142
|
+
# participants can present their screen.
|
15497
16143
|
# Corresponds to the JSON property `presentLock`
|
15498
16144
|
# @return [Boolean]
|
15499
16145
|
attr_accessor :present_lock
|
15500
16146
|
alias_method :present_lock?, :present_lock
|
15501
16147
|
|
15502
16148
|
# The reactions lock of the meeting space that lets owner control whether the
|
15503
|
-
# participants can send reactions.
|
15504
|
-
# for the meeting space.
|
16149
|
+
# participants can send reactions.
|
15505
16150
|
# Corresponds to the JSON property `reactionsLock`
|
15506
16151
|
# @return [Boolean]
|
15507
16152
|
attr_accessor :reactions_lock
|
@@ -15514,6 +16159,8 @@ module Google
|
|
15514
16159
|
# Update properties of this object
|
15515
16160
|
def update!(**args)
|
15516
16161
|
@access_lock = args[:access_lock] if args.key?(:access_lock)
|
16162
|
+
@access_type = args[:access_type] if args.key?(:access_type)
|
16163
|
+
@allow_joining_before_host = args[:allow_joining_before_host] if args.key?(:allow_joining_before_host)
|
15517
16164
|
@attendance_report_enabled = args[:attendance_report_enabled] if args.key?(:attendance_report_enabled)
|
15518
16165
|
@chat_lock = args[:chat_lock] if args.key?(:chat_lock)
|
15519
16166
|
@cohost_artifact_sharing_enabled = args[:cohost_artifact_sharing_enabled] if args.key?(:cohost_artifact_sharing_enabled)
|
@@ -15551,6 +16198,25 @@ module Google
|
|
15551
16198
|
end
|
15552
16199
|
end
|
15553
16200
|
|
16201
|
+
#
|
16202
|
+
class SheetsClientActionMarkup
|
16203
|
+
include Google::Apis::Core::Hashable
|
16204
|
+
|
16205
|
+
# The result of a user running a custom function.
|
16206
|
+
# Corresponds to the JSON property `customFunctionReturnValueMarkup`
|
16207
|
+
# @return [Google::Apis::CloudsearchV1::CustomFunctionReturnValueMarkup]
|
16208
|
+
attr_accessor :custom_function_return_value_markup
|
16209
|
+
|
16210
|
+
def initialize(**args)
|
16211
|
+
update!(**args)
|
16212
|
+
end
|
16213
|
+
|
16214
|
+
# Update properties of this object
|
16215
|
+
def update!(**args)
|
16216
|
+
@custom_function_return_value_markup = args[:custom_function_return_value_markup] if args.key?(:custom_function_return_value_markup)
|
16217
|
+
end
|
16218
|
+
end
|
16219
|
+
|
15554
16220
|
# Represents a principal who possesses a signing key corresponding to the
|
15555
16221
|
# verification key or keyset described here.
|
15556
16222
|
class SigningKeyPossessorProto
|
@@ -16479,6 +17145,26 @@ module Google
|
|
16479
17145
|
end
|
16480
17146
|
end
|
16481
17147
|
|
17148
|
+
#
|
17149
|
+
class TaskActionMarkup
|
17150
|
+
include Google::Apis::Core::Hashable
|
17151
|
+
|
17152
|
+
#
|
17153
|
+
# Corresponds to the JSON property `reloadTasks`
|
17154
|
+
# @return [Boolean]
|
17155
|
+
attr_accessor :reload_tasks
|
17156
|
+
alias_method :reload_tasks?, :reload_tasks
|
17157
|
+
|
17158
|
+
def initialize(**args)
|
17159
|
+
update!(**args)
|
17160
|
+
end
|
17161
|
+
|
17162
|
+
# Update properties of this object
|
17163
|
+
def update!(**args)
|
17164
|
+
@reload_tasks = args[:reload_tasks] if args.key?(:reload_tasks)
|
17165
|
+
end
|
17166
|
+
end
|
17167
|
+
|
16482
17168
|
#
|
16483
17169
|
class TextButton
|
16484
17170
|
include Google::Apis::Core::Hashable
|
@@ -17085,6 +17771,71 @@ module Google
|
|
17085
17771
|
end
|
17086
17772
|
end
|
17087
17773
|
|
17774
|
+
#
|
17775
|
+
class UpdateBccRecipients
|
17776
|
+
include Google::Apis::Core::Hashable
|
17777
|
+
|
17778
|
+
#
|
17779
|
+
# Corresponds to the JSON property `bccRecipients`
|
17780
|
+
# @return [Array<Google::Apis::CloudsearchV1::Recipient>]
|
17781
|
+
attr_accessor :bcc_recipients
|
17782
|
+
|
17783
|
+
def initialize(**args)
|
17784
|
+
update!(**args)
|
17785
|
+
end
|
17786
|
+
|
17787
|
+
# Update properties of this object
|
17788
|
+
def update!(**args)
|
17789
|
+
@bcc_recipients = args[:bcc_recipients] if args.key?(:bcc_recipients)
|
17790
|
+
end
|
17791
|
+
end
|
17792
|
+
|
17793
|
+
#
|
17794
|
+
class UpdateBody
|
17795
|
+
include Google::Apis::Core::Hashable
|
17796
|
+
|
17797
|
+
# A repeated field that contains a series of content to insert into the draft
|
17798
|
+
# that the user is currently editing. The content can contain HTML content or
|
17799
|
+
# plain text content.
|
17800
|
+
# Corresponds to the JSON property `insertContents`
|
17801
|
+
# @return [Array<Google::Apis::CloudsearchV1::InsertContent>]
|
17802
|
+
attr_accessor :insert_contents
|
17803
|
+
|
17804
|
+
#
|
17805
|
+
# Corresponds to the JSON property `type`
|
17806
|
+
# @return [String]
|
17807
|
+
attr_accessor :type
|
17808
|
+
|
17809
|
+
def initialize(**args)
|
17810
|
+
update!(**args)
|
17811
|
+
end
|
17812
|
+
|
17813
|
+
# Update properties of this object
|
17814
|
+
def update!(**args)
|
17815
|
+
@insert_contents = args[:insert_contents] if args.key?(:insert_contents)
|
17816
|
+
@type = args[:type] if args.key?(:type)
|
17817
|
+
end
|
17818
|
+
end
|
17819
|
+
|
17820
|
+
#
|
17821
|
+
class UpdateCcRecipients
|
17822
|
+
include Google::Apis::Core::Hashable
|
17823
|
+
|
17824
|
+
#
|
17825
|
+
# Corresponds to the JSON property `ccRecipients`
|
17826
|
+
# @return [Array<Google::Apis::CloudsearchV1::Recipient>]
|
17827
|
+
attr_accessor :cc_recipients
|
17828
|
+
|
17829
|
+
def initialize(**args)
|
17830
|
+
update!(**args)
|
17831
|
+
end
|
17832
|
+
|
17833
|
+
# Update properties of this object
|
17834
|
+
def update!(**args)
|
17835
|
+
@cc_recipients = args[:cc_recipients] if args.key?(:cc_recipients)
|
17836
|
+
end
|
17837
|
+
end
|
17838
|
+
|
17088
17839
|
#
|
17089
17840
|
class UpdateDataSourceRequest
|
17090
17841
|
include Google::Apis::Core::Hashable
|
@@ -17101,12 +17852,14 @@ module Google
|
|
17101
17852
|
# @return [Google::Apis::CloudsearchV1::DataSource]
|
17102
17853
|
attr_accessor :source
|
17103
17854
|
|
17104
|
-
#
|
17105
|
-
#
|
17106
|
-
#
|
17107
|
-
#
|
17108
|
-
#
|
17109
|
-
#
|
17855
|
+
# Only applies to [`settings.datasources.patch`](https://developers.google.com/
|
17856
|
+
# cloud-search/docs/reference/rest/v1/settings.datasources/patch). Update mask
|
17857
|
+
# to control which fields to update. Example field paths: `name`, `displayName`.
|
17858
|
+
# * If `update_mask` is non-empty, then only the fields specified in the `
|
17859
|
+
# update_mask` are updated. * If you specify a field in the `update_mask`, but
|
17860
|
+
# don't specify its value in the source, that field is cleared. * If the `
|
17861
|
+
# update_mask` is not present or empty or has the value `*`, then all fields are
|
17862
|
+
# updated.
|
17110
17863
|
# Corresponds to the JSON property `updateMask`
|
17111
17864
|
# @return [String]
|
17112
17865
|
attr_accessor :update_mask
|
@@ -17123,6 +17876,54 @@ module Google
|
|
17123
17876
|
end
|
17124
17877
|
end
|
17125
17878
|
|
17879
|
+
#
|
17880
|
+
class UpdateDraftActionMarkup
|
17881
|
+
include Google::Apis::Core::Hashable
|
17882
|
+
|
17883
|
+
# If set, replaces the existing Bcc recipients of the draft the user is
|
17884
|
+
# currently editing.
|
17885
|
+
# Corresponds to the JSON property `updateBccRecipients`
|
17886
|
+
# @return [Google::Apis::CloudsearchV1::UpdateBccRecipients]
|
17887
|
+
attr_accessor :update_bcc_recipients
|
17888
|
+
|
17889
|
+
# A field that contains a series of update actions to perform on the draft body
|
17890
|
+
# that the user is currently editing.
|
17891
|
+
# Corresponds to the JSON property `updateBody`
|
17892
|
+
# @return [Google::Apis::CloudsearchV1::UpdateBody]
|
17893
|
+
attr_accessor :update_body
|
17894
|
+
|
17895
|
+
# If set, replaces the existing Cc recipients of the draft the user is currently
|
17896
|
+
# editing.
|
17897
|
+
# Corresponds to the JSON property `updateCcRecipients`
|
17898
|
+
# @return [Google::Apis::CloudsearchV1::UpdateCcRecipients]
|
17899
|
+
attr_accessor :update_cc_recipients
|
17900
|
+
|
17901
|
+
# If set, replaces the existing subject of the draft the user is currently
|
17902
|
+
# editing.
|
17903
|
+
# Corresponds to the JSON property `updateSubject`
|
17904
|
+
# @return [Google::Apis::CloudsearchV1::UpdateSubject]
|
17905
|
+
attr_accessor :update_subject
|
17906
|
+
|
17907
|
+
# If set, replaces the existing To recipients of the draft the user is currently
|
17908
|
+
# editing.
|
17909
|
+
# Corresponds to the JSON property `updateToRecipients`
|
17910
|
+
# @return [Google::Apis::CloudsearchV1::UpdateToRecipients]
|
17911
|
+
attr_accessor :update_to_recipients
|
17912
|
+
|
17913
|
+
def initialize(**args)
|
17914
|
+
update!(**args)
|
17915
|
+
end
|
17916
|
+
|
17917
|
+
# Update properties of this object
|
17918
|
+
def update!(**args)
|
17919
|
+
@update_bcc_recipients = args[:update_bcc_recipients] if args.key?(:update_bcc_recipients)
|
17920
|
+
@update_body = args[:update_body] if args.key?(:update_body)
|
17921
|
+
@update_cc_recipients = args[:update_cc_recipients] if args.key?(:update_cc_recipients)
|
17922
|
+
@update_subject = args[:update_subject] if args.key?(:update_subject)
|
17923
|
+
@update_to_recipients = args[:update_to_recipients] if args.key?(:update_to_recipients)
|
17924
|
+
end
|
17925
|
+
end
|
17926
|
+
|
17126
17927
|
#
|
17127
17928
|
class UpdateSchemaRequest
|
17128
17929
|
include Google::Apis::Core::Hashable
|
@@ -17156,6 +17957,44 @@ module Google
|
|
17156
17957
|
end
|
17157
17958
|
end
|
17158
17959
|
|
17960
|
+
#
|
17961
|
+
class UpdateSubject
|
17962
|
+
include Google::Apis::Core::Hashable
|
17963
|
+
|
17964
|
+
#
|
17965
|
+
# Corresponds to the JSON property `subject`
|
17966
|
+
# @return [String]
|
17967
|
+
attr_accessor :subject
|
17968
|
+
|
17969
|
+
def initialize(**args)
|
17970
|
+
update!(**args)
|
17971
|
+
end
|
17972
|
+
|
17973
|
+
# Update properties of this object
|
17974
|
+
def update!(**args)
|
17975
|
+
@subject = args[:subject] if args.key?(:subject)
|
17976
|
+
end
|
17977
|
+
end
|
17978
|
+
|
17979
|
+
#
|
17980
|
+
class UpdateToRecipients
|
17981
|
+
include Google::Apis::Core::Hashable
|
17982
|
+
|
17983
|
+
#
|
17984
|
+
# Corresponds to the JSON property `toRecipients`
|
17985
|
+
# @return [Array<Google::Apis::CloudsearchV1::Recipient>]
|
17986
|
+
attr_accessor :to_recipients
|
17987
|
+
|
17988
|
+
def initialize(**args)
|
17989
|
+
update!(**args)
|
17990
|
+
end
|
17991
|
+
|
17992
|
+
# Update properties of this object
|
17993
|
+
def update!(**args)
|
17994
|
+
@to_recipients = args[:to_recipients] if args.key?(:to_recipients)
|
17995
|
+
end
|
17996
|
+
end
|
17997
|
+
|
17159
17998
|
# Represents an upload session reference. This reference is created via upload
|
17160
17999
|
# method. This reference is valid for 30 days after its creation. Updating of
|
17161
18000
|
# item content may refer to this uploaded content via contentDataRef.
|
@@ -17326,6 +18165,11 @@ module Google
|
|
17326
18165
|
# @return [Fixnum]
|
17327
18166
|
attr_accessor :int_image_width
|
17328
18167
|
|
18168
|
+
# NEXT TAG : 18
|
18169
|
+
# Corresponds to the JSON property `linkType`
|
18170
|
+
# @return [String]
|
18171
|
+
attr_accessor :link_type
|
18172
|
+
|
17329
18173
|
# Mime type of the content (Currently mapped from Page Render Service ItemType)
|
17330
18174
|
# Note that this is not necessarily the mime type of the http resource. For
|
17331
18175
|
# example a text/html from youtube or vimeo may actually be classified as a
|
@@ -17366,7 +18210,7 @@ module Google
|
|
17366
18210
|
# @return [Google::Apis::CloudsearchV1::SafeUrlProto]
|
17367
18211
|
attr_accessor :url
|
17368
18212
|
|
17369
|
-
#
|
18213
|
+
#
|
17370
18214
|
# Corresponds to the JSON property `urlSource`
|
17371
18215
|
# @return [String]
|
17372
18216
|
attr_accessor :url_source
|
@@ -17385,6 +18229,7 @@ module Google
|
|
17385
18229
|
@image_width = args[:image_width] if args.key?(:image_width)
|
17386
18230
|
@int_image_height = args[:int_image_height] if args.key?(:int_image_height)
|
17387
18231
|
@int_image_width = args[:int_image_width] if args.key?(:int_image_width)
|
18232
|
+
@link_type = args[:link_type] if args.key?(:link_type)
|
17388
18233
|
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
17389
18234
|
@redirect_url = args[:redirect_url] if args.key?(:redirect_url)
|
17390
18235
|
@should_not_render = args[:should_not_render] if args.key?(:should_not_render)
|