google-apis-workspaceevents_v1 0.19.0 → 0.20.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: f3dd59e19ab410b70dde57b42a279fb5361cca61b14f5f3fb923fa75fbb2f3dd
4
- data.tar.gz: e9021c52b614e80fd72ef2ec2fd539ae50d2d88e5b8fff51eb3ed84f9257fec7
3
+ metadata.gz: 22f3738b2309500e9cd638b58bf0c25121fd78f402cc3d5fbd791d17e1ff33c2
4
+ data.tar.gz: 4f9c1b8872a2008acdf221f572cbc81d0ad756631a9df4a244a79971276e2550
5
5
  SHA512:
6
- metadata.gz: 6d33738f6cc09df141a6a26776f655bbea169fa6c96dafd876a5aacb1ae3cdf03ffb906bd11cdd3aa85f0248206d45b4e45ddc375775dfcec663959df48f5e35
7
- data.tar.gz: b9221fe7ab51cb64dc5128dfc6256dcf9d1326c86fe3e46a996a949eeefab4ecca4723f45da6a95063decc44bfbbd250074e31b34f873b9ae2f4732c852afbfd
6
+ metadata.gz: c99b845b681cb5150f3144d5a1aa0e8b8f96b5797da9f76fb7903c29c5f3dbd4b51d149e152a6b9ac861b5c856df59e2bbcec021bb7f97218273f8e0268c1082
7
+ data.tar.gz: 90cf807debf61470d3622371df24776207fb5b820932d72438f10f3d2ecf700b81491cae00fbcbd313b868a50e517892b09c3c03353008d8f446456effd2af2e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workspaceevents_v1
2
2
 
3
+ ### v0.20.0 (2025-11-23)
4
+
5
+ * Regenerated from discovery document revision 20251118
6
+
3
7
  ### v0.19.0 (2025-11-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20251102
@@ -22,408 +22,6 @@ module Google
22
22
  module Apis
23
23
  module WorkspaceeventsV1
24
24
 
25
- #
26
- class ApiKeySecurityScheme
27
- include Google::Apis::Core::Hashable
28
-
29
- # Description of this security scheme.
30
- # Corresponds to the JSON property `description`
31
- # @return [String]
32
- attr_accessor :description
33
-
34
- # Location of the API key, valid values are "query", "header", or "cookie"
35
- # Corresponds to the JSON property `location`
36
- # @return [String]
37
- attr_accessor :location
38
-
39
- # Name of the header, query or cookie parameter to be used.
40
- # Corresponds to the JSON property `name`
41
- # @return [String]
42
- attr_accessor :name
43
-
44
- def initialize(**args)
45
- update!(**args)
46
- end
47
-
48
- # Update properties of this object
49
- def update!(**args)
50
- @description = args[:description] if args.key?(:description)
51
- @location = args[:location] if args.key?(:location)
52
- @name = args[:name] if args.key?(:name)
53
- end
54
- end
55
-
56
- # Defines the A2A feature set supported by the agent
57
- class AgentCapabilities
58
- include Google::Apis::Core::Hashable
59
-
60
- # Extensions supported by this agent.
61
- # Corresponds to the JSON property `extensions`
62
- # @return [Array<Google::Apis::WorkspaceeventsV1::AgentExtension>]
63
- attr_accessor :extensions
64
-
65
- # If the agent can send push notifications to the clients webhook
66
- # Corresponds to the JSON property `pushNotifications`
67
- # @return [Boolean]
68
- attr_accessor :push_notifications
69
- alias_method :push_notifications?, :push_notifications
70
-
71
- # If the agent will support streaming responses
72
- # Corresponds to the JSON property `streaming`
73
- # @return [Boolean]
74
- attr_accessor :streaming
75
- alias_method :streaming?, :streaming
76
-
77
- def initialize(**args)
78
- update!(**args)
79
- end
80
-
81
- # Update properties of this object
82
- def update!(**args)
83
- @extensions = args[:extensions] if args.key?(:extensions)
84
- @push_notifications = args[:push_notifications] if args.key?(:push_notifications)
85
- @streaming = args[:streaming] if args.key?(:streaming)
86
- end
87
- end
88
-
89
- # AgentCard conveys key information: - Overall details (version, name,
90
- # description, uses) - Skills; a set of actions/solutions the agent can perform -
91
- # Default modalities/content types supported by the agent. - Authentication
92
- # requirements Next ID: 19
93
- class AgentCard
94
- include Google::Apis::Core::Hashable
95
-
96
- # Announcement of additional supported transports. Client can use any of the
97
- # supported transports.
98
- # Corresponds to the JSON property `additionalInterfaces`
99
- # @return [Array<Google::Apis::WorkspaceeventsV1::AgentInterface>]
100
- attr_accessor :additional_interfaces
101
-
102
- # Defines the A2A feature set supported by the agent
103
- # Corresponds to the JSON property `capabilities`
104
- # @return [Google::Apis::WorkspaceeventsV1::AgentCapabilities]
105
- attr_accessor :capabilities
106
-
107
- # protolint:enable REPEATED_FIELD_NAMES_PLURALIZED The set of interaction modes
108
- # that the agent supports across all skills. This can be overridden per skill.
109
- # Defined as mime types.
110
- # Corresponds to the JSON property `defaultInputModes`
111
- # @return [Array<String>]
112
- attr_accessor :default_input_modes
113
-
114
- # The mime types supported as outputs from this agent.
115
- # Corresponds to the JSON property `defaultOutputModes`
116
- # @return [Array<String>]
117
- attr_accessor :default_output_modes
118
-
119
- # A description of the agent's domain of action/solution space. Example: "Agent
120
- # that helps users with recipes and cooking."
121
- # Corresponds to the JSON property `description`
122
- # @return [String]
123
- attr_accessor :description
124
-
125
- # A url to provide additional documentation about the agent.
126
- # Corresponds to the JSON property `documentationUrl`
127
- # @return [String]
128
- attr_accessor :documentation_url
129
-
130
- # An optional URL to an icon for the agent.
131
- # Corresponds to the JSON property `iconUrl`
132
- # @return [String]
133
- attr_accessor :icon_url
134
-
135
- # A human readable name for the agent. Example: "Recipe Agent"
136
- # Corresponds to the JSON property `name`
137
- # @return [String]
138
- attr_accessor :name
139
-
140
- # The transport of the preferred endpoint. If empty, defaults to JSONRPC.
141
- # Corresponds to the JSON property `preferredTransport`
142
- # @return [String]
143
- attr_accessor :preferred_transport
144
-
145
- # The version of the A2A protocol this agent supports.
146
- # Corresponds to the JSON property `protocolVersion`
147
- # @return [String]
148
- attr_accessor :protocol_version
149
-
150
- # Represents information about the service provider of an agent.
151
- # Corresponds to the JSON property `provider`
152
- # @return [Google::Apis::WorkspaceeventsV1::AgentProvider]
153
- attr_accessor :provider
154
-
155
- # protolint:disable REPEATED_FIELD_NAMES_PLURALIZED Security requirements for
156
- # contacting the agent. This list can be seen as an OR of ANDs. Each object in
157
- # the list describes one possible set of security requirements that must be
158
- # present on a request. This allows specifying, for example, "callers must
159
- # either use OAuth OR an API Key AND mTLS." Example: security ` schemes ` key: "
160
- # oauth" value ` list: ["read"] ` ` ` security ` schemes ` key: "api-key" `
161
- # schemes ` key: "mtls" ` `
162
- # Corresponds to the JSON property `security`
163
- # @return [Array<Google::Apis::WorkspaceeventsV1::Security>]
164
- attr_accessor :security
165
-
166
- # The security scheme details used for authenticating with this agent.
167
- # Corresponds to the JSON property `securitySchemes`
168
- # @return [Hash<String,Google::Apis::WorkspaceeventsV1::SecurityScheme>]
169
- attr_accessor :security_schemes
170
-
171
- # JSON Web Signatures computed for this AgentCard.
172
- # Corresponds to the JSON property `signatures`
173
- # @return [Array<Google::Apis::WorkspaceeventsV1::AgentCardSignature>]
174
- attr_accessor :signatures
175
-
176
- # Skills represent a unit of ability an agent can perform. This may somewhat
177
- # abstract but represents a more focused set of actions that the agent is highly
178
- # likely to succeed at.
179
- # Corresponds to the JSON property `skills`
180
- # @return [Array<Google::Apis::WorkspaceeventsV1::AgentSkill>]
181
- attr_accessor :skills
182
-
183
- # Whether the agent supports providing an extended agent card when the user is
184
- # authenticated, i.e. is the card from .well-known different than the card from
185
- # GetAgentCard.
186
- # Corresponds to the JSON property `supportsAuthenticatedExtendedCard`
187
- # @return [Boolean]
188
- attr_accessor :supports_authenticated_extended_card
189
- alias_method :supports_authenticated_extended_card?, :supports_authenticated_extended_card
190
-
191
- # A URL to the address the agent is hosted at. This represents the preferred
192
- # endpoint as declared by the agent.
193
- # Corresponds to the JSON property `url`
194
- # @return [String]
195
- attr_accessor :url
196
-
197
- # The version of the agent. Example: "1.0.0"
198
- # Corresponds to the JSON property `version`
199
- # @return [String]
200
- attr_accessor :version
201
-
202
- def initialize(**args)
203
- update!(**args)
204
- end
205
-
206
- # Update properties of this object
207
- def update!(**args)
208
- @additional_interfaces = args[:additional_interfaces] if args.key?(:additional_interfaces)
209
- @capabilities = args[:capabilities] if args.key?(:capabilities)
210
- @default_input_modes = args[:default_input_modes] if args.key?(:default_input_modes)
211
- @default_output_modes = args[:default_output_modes] if args.key?(:default_output_modes)
212
- @description = args[:description] if args.key?(:description)
213
- @documentation_url = args[:documentation_url] if args.key?(:documentation_url)
214
- @icon_url = args[:icon_url] if args.key?(:icon_url)
215
- @name = args[:name] if args.key?(:name)
216
- @preferred_transport = args[:preferred_transport] if args.key?(:preferred_transport)
217
- @protocol_version = args[:protocol_version] if args.key?(:protocol_version)
218
- @provider = args[:provider] if args.key?(:provider)
219
- @security = args[:security] if args.key?(:security)
220
- @security_schemes = args[:security_schemes] if args.key?(:security_schemes)
221
- @signatures = args[:signatures] if args.key?(:signatures)
222
- @skills = args[:skills] if args.key?(:skills)
223
- @supports_authenticated_extended_card = args[:supports_authenticated_extended_card] if args.key?(:supports_authenticated_extended_card)
224
- @url = args[:url] if args.key?(:url)
225
- @version = args[:version] if args.key?(:version)
226
- end
227
- end
228
-
229
- # AgentCardSignature represents a JWS signature of an AgentCard. This follows
230
- # the JSON format of an RFC 7515 JSON Web Signature (JWS).
231
- class AgentCardSignature
232
- include Google::Apis::Core::Hashable
233
-
234
- # The unprotected JWS header values.
235
- # Corresponds to the JSON property `header`
236
- # @return [Hash<String,Object>]
237
- attr_accessor :header
238
-
239
- # Required. The protected JWS header for the signature. This is always a
240
- # base64url-encoded JSON object. Required.
241
- # Corresponds to the JSON property `protected`
242
- # @return [String]
243
- attr_accessor :protected
244
-
245
- # Required. The computed signature, base64url-encoded. Required.
246
- # Corresponds to the JSON property `signature`
247
- # @return [String]
248
- attr_accessor :signature
249
-
250
- def initialize(**args)
251
- update!(**args)
252
- end
253
-
254
- # Update properties of this object
255
- def update!(**args)
256
- @header = args[:header] if args.key?(:header)
257
- @protected = args[:protected] if args.key?(:protected)
258
- @signature = args[:signature] if args.key?(:signature)
259
- end
260
- end
261
-
262
- # A declaration of an extension supported by an Agent.
263
- class AgentExtension
264
- include Google::Apis::Core::Hashable
265
-
266
- # A description of how this agent uses this extension. Example: "Google OAuth 2.
267
- # 0 authentication"
268
- # Corresponds to the JSON property `description`
269
- # @return [String]
270
- attr_accessor :description
271
-
272
- # Optional configuration for the extension.
273
- # Corresponds to the JSON property `params`
274
- # @return [Hash<String,Object>]
275
- attr_accessor :params
276
-
277
- # Whether the client must follow specific requirements of the extension. Example:
278
- # false
279
- # Corresponds to the JSON property `required`
280
- # @return [Boolean]
281
- attr_accessor :required
282
- alias_method :required?, :required
283
-
284
- # The URI of the extension. Example: "https://developers.google.com/identity/
285
- # protocols/oauth2"
286
- # Corresponds to the JSON property `uri`
287
- # @return [String]
288
- attr_accessor :uri
289
-
290
- def initialize(**args)
291
- update!(**args)
292
- end
293
-
294
- # Update properties of this object
295
- def update!(**args)
296
- @description = args[:description] if args.key?(:description)
297
- @params = args[:params] if args.key?(:params)
298
- @required = args[:required] if args.key?(:required)
299
- @uri = args[:uri] if args.key?(:uri)
300
- end
301
- end
302
-
303
- # Defines additional transport information for the agent.
304
- class AgentInterface
305
- include Google::Apis::Core::Hashable
306
-
307
- # The transport supported this url. This is an open form string, to be easily
308
- # extended for many transport protocols. The core ones officially supported are
309
- # JSONRPC, GRPC and HTTP+JSON.
310
- # Corresponds to the JSON property `transport`
311
- # @return [String]
312
- attr_accessor :transport
313
-
314
- # The url this interface is found at.
315
- # Corresponds to the JSON property `url`
316
- # @return [String]
317
- attr_accessor :url
318
-
319
- def initialize(**args)
320
- update!(**args)
321
- end
322
-
323
- # Update properties of this object
324
- def update!(**args)
325
- @transport = args[:transport] if args.key?(:transport)
326
- @url = args[:url] if args.key?(:url)
327
- end
328
- end
329
-
330
- # Represents information about the service provider of an agent.
331
- class AgentProvider
332
- include Google::Apis::Core::Hashable
333
-
334
- # The providers organization name Example: "Google"
335
- # Corresponds to the JSON property `organization`
336
- # @return [String]
337
- attr_accessor :organization
338
-
339
- # The providers reference url Example: "https://ai.google.dev"
340
- # Corresponds to the JSON property `url`
341
- # @return [String]
342
- attr_accessor :url
343
-
344
- def initialize(**args)
345
- update!(**args)
346
- end
347
-
348
- # Update properties of this object
349
- def update!(**args)
350
- @organization = args[:organization] if args.key?(:organization)
351
- @url = args[:url] if args.key?(:url)
352
- end
353
- end
354
-
355
- # AgentSkill represents a unit of action/solution that the agent can perform.
356
- # One can think of this as a type of highly reliable solution that an agent can
357
- # be tasked to provide. Agents have the autonomy to choose how and when to use
358
- # specific skills, but clients should have confidence that if the skill is
359
- # defined that unit of action can be reliably performed.
360
- class AgentSkill
361
- include Google::Apis::Core::Hashable
362
-
363
- # A human (or llm) readable description of the skill details and behaviors.
364
- # Corresponds to the JSON property `description`
365
- # @return [String]
366
- attr_accessor :description
367
-
368
- # A set of example queries that this skill is designed to address. These
369
- # examples should help the caller to understand how to craft requests to the
370
- # agent to achieve specific goals. Example: ["I need a recipe for bread"]
371
- # Corresponds to the JSON property `examples`
372
- # @return [Array<String>]
373
- attr_accessor :examples
374
-
375
- # Unique identifier of the skill within this agent.
376
- # Corresponds to the JSON property `id`
377
- # @return [String]
378
- attr_accessor :id
379
-
380
- # Possible input modalities supported.
381
- # Corresponds to the JSON property `inputModes`
382
- # @return [Array<String>]
383
- attr_accessor :input_modes
384
-
385
- # A human readable name for the skill.
386
- # Corresponds to the JSON property `name`
387
- # @return [String]
388
- attr_accessor :name
389
-
390
- # Possible output modalities produced
391
- # Corresponds to the JSON property `outputModes`
392
- # @return [Array<String>]
393
- attr_accessor :output_modes
394
-
395
- # protolint:disable REPEATED_FIELD_NAMES_PLURALIZED Security schemes necessary
396
- # for the agent to leverage this skill. As in the overall AgentCard.security,
397
- # this list represents a logical OR of security requirement objects. Each object
398
- # is a set of security schemes that must be used together (a logical AND).
399
- # protolint:enable REPEATED_FIELD_NAMES_PLURALIZED
400
- # Corresponds to the JSON property `security`
401
- # @return [Array<Google::Apis::WorkspaceeventsV1::Security>]
402
- attr_accessor :security
403
-
404
- # A set of tags for the skill to enhance categorization/utilization. Example: ["
405
- # cooking", "customer support", "billing"]
406
- # Corresponds to the JSON property `tags`
407
- # @return [Array<String>]
408
- attr_accessor :tags
409
-
410
- def initialize(**args)
411
- update!(**args)
412
- end
413
-
414
- # Update properties of this object
415
- def update!(**args)
416
- @description = args[:description] if args.key?(:description)
417
- @examples = args[:examples] if args.key?(:examples)
418
- @id = args[:id] if args.key?(:id)
419
- @input_modes = args[:input_modes] if args.key?(:input_modes)
420
- @name = args[:name] if args.key?(:name)
421
- @output_modes = args[:output_modes] if args.key?(:output_modes)
422
- @security = args[:security] if args.key?(:security)
423
- @tags = args[:tags] if args.key?(:tags)
424
- end
425
- end
426
-
427
25
  # Artifacts are the container for task completed results. These are similar to
428
26
  # Messages but are intended to be the product of a task, as opposed to point-to-
429
27
  # point communication.
@@ -501,47 +99,6 @@ module Google
501
99
  end
502
100
  end
503
101
 
504
- #
505
- class AuthorizationCodeOAuthFlow
506
- include Google::Apis::Core::Hashable
507
-
508
- # The authorization URL to be used for this flow. This MUST be in the form of a
509
- # URL. The OAuth2 standard requires the use of TLS
510
- # Corresponds to the JSON property `authorizationUrl`
511
- # @return [String]
512
- attr_accessor :authorization_url
513
-
514
- # The URL to be used for obtaining refresh tokens. This MUST be in the form of a
515
- # URL. The OAuth2 standard requires the use of TLS.
516
- # Corresponds to the JSON property `refreshUrl`
517
- # @return [String]
518
- attr_accessor :refresh_url
519
-
520
- # The available scopes for the OAuth2 security scheme. A map between the scope
521
- # name and a short description for it. The map MAY be empty.
522
- # Corresponds to the JSON property `scopes`
523
- # @return [Hash<String,String>]
524
- attr_accessor :scopes
525
-
526
- # The token URL to be used for this flow. This MUST be in the form of a URL. The
527
- # OAuth2 standard requires the use of TLS.
528
- # Corresponds to the JSON property `tokenUrl`
529
- # @return [String]
530
- attr_accessor :token_url
531
-
532
- def initialize(**args)
533
- update!(**args)
534
- end
535
-
536
- # Update properties of this object
537
- def update!(**args)
538
- @authorization_url = args[:authorization_url] if args.key?(:authorization_url)
539
- @refresh_url = args[:refresh_url] if args.key?(:refresh_url)
540
- @scopes = args[:scopes] if args.key?(:scopes)
541
- @token_url = args[:token_url] if args.key?(:token_url)
542
- end
543
- end
544
-
545
102
  #
546
103
  class CancelTaskRequest
547
104
  include Google::Apis::Core::Hashable
@@ -555,40 +112,6 @@ module Google
555
112
  end
556
113
  end
557
114
 
558
- #
559
- class ClientCredentialsOAuthFlow
560
- include Google::Apis::Core::Hashable
561
-
562
- # The URL to be used for obtaining refresh tokens. This MUST be in the form of a
563
- # URL. The OAuth2 standard requires the use of TLS.
564
- # Corresponds to the JSON property `refreshUrl`
565
- # @return [String]
566
- attr_accessor :refresh_url
567
-
568
- # The available scopes for the OAuth2 security scheme. A map between the scope
569
- # name and a short description for it. The map MAY be empty.
570
- # Corresponds to the JSON property `scopes`
571
- # @return [Hash<String,String>]
572
- attr_accessor :scopes
573
-
574
- # The token URL to be used for this flow. This MUST be in the form of a URL. The
575
- # OAuth2 standard requires the use of TLS.
576
- # Corresponds to the JSON property `tokenUrl`
577
- # @return [String]
578
- attr_accessor :token_url
579
-
580
- def initialize(**args)
581
- update!(**args)
582
- end
583
-
584
- # Update properties of this object
585
- def update!(**args)
586
- @refresh_url = args[:refresh_url] if args.key?(:refresh_url)
587
- @scopes = args[:scopes] if args.key?(:scopes)
588
- @token_url = args[:token_url] if args.key?(:token_url)
589
- end
590
- end
591
-
592
115
  # DataPart represents a structured blob. This is most commonly a JSON payload.
593
116
  class DataPart
594
117
  include Google::Apis::Core::Hashable
@@ -665,76 +188,6 @@ module Google
665
188
  end
666
189
  end
667
190
 
668
- #
669
- class HttpAuthSecurityScheme
670
- include Google::Apis::Core::Hashable
671
-
672
- # A hint to the client to identify how the bearer token is formatted. Bearer
673
- # tokens are usually generated by an authorization server, so this information
674
- # is primarily for documentation purposes.
675
- # Corresponds to the JSON property `bearerFormat`
676
- # @return [String]
677
- attr_accessor :bearer_format
678
-
679
- # Description of this security scheme.
680
- # Corresponds to the JSON property `description`
681
- # @return [String]
682
- attr_accessor :description
683
-
684
- # The name of the HTTP Authentication scheme to be used in the Authorization
685
- # header as defined in RFC7235. The values used SHOULD be registered in the IANA
686
- # Authentication Scheme registry. The value is case-insensitive, as defined in
687
- # RFC7235.
688
- # Corresponds to the JSON property `scheme`
689
- # @return [String]
690
- attr_accessor :scheme
691
-
692
- def initialize(**args)
693
- update!(**args)
694
- end
695
-
696
- # Update properties of this object
697
- def update!(**args)
698
- @bearer_format = args[:bearer_format] if args.key?(:bearer_format)
699
- @description = args[:description] if args.key?(:description)
700
- @scheme = args[:scheme] if args.key?(:scheme)
701
- end
702
- end
703
-
704
- #
705
- class ImplicitOAuthFlow
706
- include Google::Apis::Core::Hashable
707
-
708
- # The authorization URL to be used for this flow. This MUST be in the form of a
709
- # URL. The OAuth2 standard requires the use of TLS
710
- # Corresponds to the JSON property `authorizationUrl`
711
- # @return [String]
712
- attr_accessor :authorization_url
713
-
714
- # The URL to be used for obtaining refresh tokens. This MUST be in the form of a
715
- # URL. The OAuth2 standard requires the use of TLS.
716
- # Corresponds to the JSON property `refreshUrl`
717
- # @return [String]
718
- attr_accessor :refresh_url
719
-
720
- # The available scopes for the OAuth2 security scheme. A map between the scope
721
- # name and a short description for it. The map MAY be empty.
722
- # Corresponds to the JSON property `scopes`
723
- # @return [Hash<String,String>]
724
- attr_accessor :scopes
725
-
726
- def initialize(**args)
727
- update!(**args)
728
- end
729
-
730
- # Update properties of this object
731
- def update!(**args)
732
- @authorization_url = args[:authorization_url] if args.key?(:authorization_url)
733
- @refresh_url = args[:refresh_url] if args.key?(:refresh_url)
734
- @scopes = args[:scopes] if args.key?(:scopes)
735
- end
736
- end
737
-
738
191
  # The response message for SubscriptionsService.ListSubscriptions.
739
192
  class ListSubscriptionsResponse
740
193
  include Google::Apis::Core::Hashable
@@ -852,25 +305,6 @@ module Google
852
305
  end
853
306
  end
854
307
 
855
- #
856
- class MutualTlsSecurityScheme
857
- include Google::Apis::Core::Hashable
858
-
859
- # Description of this security scheme.
860
- # Corresponds to the JSON property `description`
861
- # @return [String]
862
- attr_accessor :description
863
-
864
- def initialize(**args)
865
- update!(**args)
866
- end
867
-
868
- # Update properties of this object
869
- def update!(**args)
870
- @description = args[:description] if args.key?(:description)
871
- end
872
- end
873
-
874
308
  # The endpoint where the subscription delivers events.
875
309
  class NotificationEndpoint
876
310
  include Google::Apis::Core::Hashable
@@ -900,100 +334,6 @@ module Google
900
334
  end
901
335
  end
902
336
 
903
- #
904
- class OAuth2SecurityScheme
905
- include Google::Apis::Core::Hashable
906
-
907
- # Description of this security scheme.
908
- # Corresponds to the JSON property `description`
909
- # @return [String]
910
- attr_accessor :description
911
-
912
- # An object containing configuration information for the flow types supported
913
- # Corresponds to the JSON property `flows`
914
- # @return [Google::Apis::WorkspaceeventsV1::OAuthFlows]
915
- attr_accessor :flows
916
-
917
- # URL to the oauth2 authorization server metadata [RFC8414](https://datatracker.
918
- # ietf.org/doc/html/rfc8414). TLS is required.
919
- # Corresponds to the JSON property `oauth2MetadataUrl`
920
- # @return [String]
921
- attr_accessor :oauth2_metadata_url
922
-
923
- def initialize(**args)
924
- update!(**args)
925
- end
926
-
927
- # Update properties of this object
928
- def update!(**args)
929
- @description = args[:description] if args.key?(:description)
930
- @flows = args[:flows] if args.key?(:flows)
931
- @oauth2_metadata_url = args[:oauth2_metadata_url] if args.key?(:oauth2_metadata_url)
932
- end
933
- end
934
-
935
- #
936
- class OAuthFlows
937
- include Google::Apis::Core::Hashable
938
-
939
- #
940
- # Corresponds to the JSON property `authorizationCode`
941
- # @return [Google::Apis::WorkspaceeventsV1::AuthorizationCodeOAuthFlow]
942
- attr_accessor :authorization_code
943
-
944
- #
945
- # Corresponds to the JSON property `clientCredentials`
946
- # @return [Google::Apis::WorkspaceeventsV1::ClientCredentialsOAuthFlow]
947
- attr_accessor :client_credentials
948
-
949
- #
950
- # Corresponds to the JSON property `implicit`
951
- # @return [Google::Apis::WorkspaceeventsV1::ImplicitOAuthFlow]
952
- attr_accessor :implicit
953
-
954
- #
955
- # Corresponds to the JSON property `password`
956
- # @return [Google::Apis::WorkspaceeventsV1::PasswordOAuthFlow]
957
- attr_accessor :password
958
-
959
- def initialize(**args)
960
- update!(**args)
961
- end
962
-
963
- # Update properties of this object
964
- def update!(**args)
965
- @authorization_code = args[:authorization_code] if args.key?(:authorization_code)
966
- @client_credentials = args[:client_credentials] if args.key?(:client_credentials)
967
- @implicit = args[:implicit] if args.key?(:implicit)
968
- @password = args[:password] if args.key?(:password)
969
- end
970
- end
971
-
972
- #
973
- class OpenIdConnectSecurityScheme
974
- include Google::Apis::Core::Hashable
975
-
976
- # Description of this security scheme.
977
- # Corresponds to the JSON property `description`
978
- # @return [String]
979
- attr_accessor :description
980
-
981
- # Well-known URL to discover the [[OpenID-Connect-Discovery]] provider metadata.
982
- # Corresponds to the JSON property `openIdConnectUrl`
983
- # @return [String]
984
- attr_accessor :open_id_connect_url
985
-
986
- def initialize(**args)
987
- update!(**args)
988
- end
989
-
990
- # Update properties of this object
991
- def update!(**args)
992
- @description = args[:description] if args.key?(:description)
993
- @open_id_connect_url = args[:open_id_connect_url] if args.key?(:open_id_connect_url)
994
- end
995
- end
996
-
997
337
  # This resource represents a long-running operation that is the result of a
998
338
  # network API call.
999
339
  class Operation
@@ -1098,40 +438,6 @@ module Google
1098
438
  end
1099
439
  end
1100
440
 
1101
- #
1102
- class PasswordOAuthFlow
1103
- include Google::Apis::Core::Hashable
1104
-
1105
- # The URL to be used for obtaining refresh tokens. This MUST be in the form of a
1106
- # URL. The OAuth2 standard requires the use of TLS.
1107
- # Corresponds to the JSON property `refreshUrl`
1108
- # @return [String]
1109
- attr_accessor :refresh_url
1110
-
1111
- # The available scopes for the OAuth2 security scheme. A map between the scope
1112
- # name and a short description for it. The map MAY be empty.
1113
- # Corresponds to the JSON property `scopes`
1114
- # @return [Hash<String,String>]
1115
- attr_accessor :scopes
1116
-
1117
- # The token URL to be used for this flow. This MUST be in the form of a URL. The
1118
- # OAuth2 standard requires the use of TLS.
1119
- # Corresponds to the JSON property `tokenUrl`
1120
- # @return [String]
1121
- attr_accessor :token_url
1122
-
1123
- def initialize(**args)
1124
- update!(**args)
1125
- end
1126
-
1127
- # Update properties of this object
1128
- def update!(**args)
1129
- @refresh_url = args[:refresh_url] if args.key?(:refresh_url)
1130
- @scopes = args[:scopes] if args.key?(:scopes)
1131
- @token_url = args[:token_url] if args.key?(:token_url)
1132
- end
1133
- end
1134
-
1135
441
  # Options about what data to include in the event payload. Only supported for
1136
442
  # Google Chat and Google Drive events.
1137
443
  class PayloadOptions
@@ -1218,68 +524,6 @@ module Google
1218
524
  end
1219
525
  end
1220
526
 
1221
- #
1222
- class Security
1223
- include Google::Apis::Core::Hashable
1224
-
1225
- #
1226
- # Corresponds to the JSON property `schemes`
1227
- # @return [Hash<String,Google::Apis::WorkspaceeventsV1::StringList>]
1228
- attr_accessor :schemes
1229
-
1230
- def initialize(**args)
1231
- update!(**args)
1232
- end
1233
-
1234
- # Update properties of this object
1235
- def update!(**args)
1236
- @schemes = args[:schemes] if args.key?(:schemes)
1237
- end
1238
- end
1239
-
1240
- #
1241
- class SecurityScheme
1242
- include Google::Apis::Core::Hashable
1243
-
1244
- #
1245
- # Corresponds to the JSON property `apiKeySecurityScheme`
1246
- # @return [Google::Apis::WorkspaceeventsV1::ApiKeySecurityScheme]
1247
- attr_accessor :api_key_security_scheme
1248
-
1249
- #
1250
- # Corresponds to the JSON property `httpAuthSecurityScheme`
1251
- # @return [Google::Apis::WorkspaceeventsV1::HttpAuthSecurityScheme]
1252
- attr_accessor :http_auth_security_scheme
1253
-
1254
- #
1255
- # Corresponds to the JSON property `mtlsSecurityScheme`
1256
- # @return [Google::Apis::WorkspaceeventsV1::MutualTlsSecurityScheme]
1257
- attr_accessor :mtls_security_scheme
1258
-
1259
- #
1260
- # Corresponds to the JSON property `oauth2SecurityScheme`
1261
- # @return [Google::Apis::WorkspaceeventsV1::OAuth2SecurityScheme]
1262
- attr_accessor :oauth2_security_scheme
1263
-
1264
- #
1265
- # Corresponds to the JSON property `openIdConnectSecurityScheme`
1266
- # @return [Google::Apis::WorkspaceeventsV1::OpenIdConnectSecurityScheme]
1267
- attr_accessor :open_id_connect_security_scheme
1268
-
1269
- def initialize(**args)
1270
- update!(**args)
1271
- end
1272
-
1273
- # Update properties of this object
1274
- def update!(**args)
1275
- @api_key_security_scheme = args[:api_key_security_scheme] if args.key?(:api_key_security_scheme)
1276
- @http_auth_security_scheme = args[:http_auth_security_scheme] if args.key?(:http_auth_security_scheme)
1277
- @mtls_security_scheme = args[:mtls_security_scheme] if args.key?(:mtls_security_scheme)
1278
- @oauth2_security_scheme = args[:oauth2_security_scheme] if args.key?(:oauth2_security_scheme)
1279
- @open_id_connect_security_scheme = args[:open_id_connect_security_scheme] if args.key?(:open_id_connect_security_scheme)
1280
- end
1281
- end
1282
-
1283
527
  # Configuration of a send message request.
1284
528
  class SendMessageConfiguration
1285
529
  include Google::Apis::Core::Hashable
@@ -1448,25 +692,6 @@ module Google
1448
692
  end
1449
693
  end
1450
694
 
1451
- # protolint:disable REPEATED_FIELD_NAMES_PLURALIZED
1452
- class StringList
1453
- include Google::Apis::Core::Hashable
1454
-
1455
- #
1456
- # Corresponds to the JSON property `list`
1457
- # @return [Array<String>]
1458
- attr_accessor :list
1459
-
1460
- def initialize(**args)
1461
- update!(**args)
1462
- end
1463
-
1464
- # Update properties of this object
1465
- def update!(**args)
1466
- @list = args[:list] if args.key?(:list)
1467
- end
1468
- end
1469
-
1470
695
  # A subscription to receive events about a Google Workspace resource. To learn
1471
696
  # more about subscriptions, see the [Google Workspace Events API overview](https:
1472
697
  # //developers.google.com/workspace/events).
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module WorkspaceeventsV1
18
18
  # Version of the google-apis-workspaceevents_v1 gem
19
- GEM_VERSION = "0.19.0"
19
+ GEM_VERSION = "0.20.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251102"
25
+ REVISION = "20251118"
26
26
  end
27
27
  end
28
28
  end
@@ -22,54 +22,6 @@ module Google
22
22
  module Apis
23
23
  module WorkspaceeventsV1
24
24
 
25
- class ApiKeySecurityScheme
26
- class Representation < Google::Apis::Core::JsonRepresentation; end
27
-
28
- include Google::Apis::Core::JsonObjectSupport
29
- end
30
-
31
- class AgentCapabilities
32
- class Representation < Google::Apis::Core::JsonRepresentation; end
33
-
34
- include Google::Apis::Core::JsonObjectSupport
35
- end
36
-
37
- class AgentCard
38
- class Representation < Google::Apis::Core::JsonRepresentation; end
39
-
40
- include Google::Apis::Core::JsonObjectSupport
41
- end
42
-
43
- class AgentCardSignature
44
- class Representation < Google::Apis::Core::JsonRepresentation; end
45
-
46
- include Google::Apis::Core::JsonObjectSupport
47
- end
48
-
49
- class AgentExtension
50
- class Representation < Google::Apis::Core::JsonRepresentation; end
51
-
52
- include Google::Apis::Core::JsonObjectSupport
53
- end
54
-
55
- class AgentInterface
56
- class Representation < Google::Apis::Core::JsonRepresentation; end
57
-
58
- include Google::Apis::Core::JsonObjectSupport
59
- end
60
-
61
- class AgentProvider
62
- class Representation < Google::Apis::Core::JsonRepresentation; end
63
-
64
- include Google::Apis::Core::JsonObjectSupport
65
- end
66
-
67
- class AgentSkill
68
- class Representation < Google::Apis::Core::JsonRepresentation; end
69
-
70
- include Google::Apis::Core::JsonObjectSupport
71
- end
72
-
73
25
  class Artifact
74
26
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
27
 
@@ -82,24 +34,12 @@ module Google
82
34
  include Google::Apis::Core::JsonObjectSupport
83
35
  end
84
36
 
85
- class AuthorizationCodeOAuthFlow
86
- class Representation < Google::Apis::Core::JsonRepresentation; end
87
-
88
- include Google::Apis::Core::JsonObjectSupport
89
- end
90
-
91
37
  class CancelTaskRequest
92
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
39
 
94
40
  include Google::Apis::Core::JsonObjectSupport
95
41
  end
96
42
 
97
- class ClientCredentialsOAuthFlow
98
- class Representation < Google::Apis::Core::JsonRepresentation; end
99
-
100
- include Google::Apis::Core::JsonObjectSupport
101
- end
102
-
103
43
  class DataPart
104
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
45
 
@@ -118,18 +58,6 @@ module Google
118
58
  include Google::Apis::Core::JsonObjectSupport
119
59
  end
120
60
 
121
- class HttpAuthSecurityScheme
122
- class Representation < Google::Apis::Core::JsonRepresentation; end
123
-
124
- include Google::Apis::Core::JsonObjectSupport
125
- end
126
-
127
- class ImplicitOAuthFlow
128
- class Representation < Google::Apis::Core::JsonRepresentation; end
129
-
130
- include Google::Apis::Core::JsonObjectSupport
131
- end
132
-
133
61
  class ListSubscriptionsResponse
134
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
63
 
@@ -148,36 +76,12 @@ module Google
148
76
  include Google::Apis::Core::JsonObjectSupport
149
77
  end
150
78
 
151
- class MutualTlsSecurityScheme
152
- class Representation < Google::Apis::Core::JsonRepresentation; end
153
-
154
- include Google::Apis::Core::JsonObjectSupport
155
- end
156
-
157
79
  class NotificationEndpoint
158
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
81
 
160
82
  include Google::Apis::Core::JsonObjectSupport
161
83
  end
162
84
 
163
- class OAuth2SecurityScheme
164
- class Representation < Google::Apis::Core::JsonRepresentation; end
165
-
166
- include Google::Apis::Core::JsonObjectSupport
167
- end
168
-
169
- class OAuthFlows
170
- class Representation < Google::Apis::Core::JsonRepresentation; end
171
-
172
- include Google::Apis::Core::JsonObjectSupport
173
- end
174
-
175
- class OpenIdConnectSecurityScheme
176
- class Representation < Google::Apis::Core::JsonRepresentation; end
177
-
178
- include Google::Apis::Core::JsonObjectSupport
179
- end
180
-
181
85
  class Operation
182
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
87
 
@@ -190,12 +94,6 @@ module Google
190
94
  include Google::Apis::Core::JsonObjectSupport
191
95
  end
192
96
 
193
- class PasswordOAuthFlow
194
- class Representation < Google::Apis::Core::JsonRepresentation; end
195
-
196
- include Google::Apis::Core::JsonObjectSupport
197
- end
198
-
199
97
  class PayloadOptions
200
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
99
 
@@ -214,18 +112,6 @@ module Google
214
112
  include Google::Apis::Core::JsonObjectSupport
215
113
  end
216
114
 
217
- class Security
218
- class Representation < Google::Apis::Core::JsonRepresentation; end
219
-
220
- include Google::Apis::Core::JsonObjectSupport
221
- end
222
-
223
- class SecurityScheme
224
- class Representation < Google::Apis::Core::JsonRepresentation; end
225
-
226
- include Google::Apis::Core::JsonObjectSupport
227
- end
228
-
229
115
  class SendMessageConfiguration
230
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
117
 
@@ -250,12 +136,6 @@ module Google
250
136
  include Google::Apis::Core::JsonObjectSupport
251
137
  end
252
138
 
253
- class StringList
254
- class Representation < Google::Apis::Core::JsonRepresentation; end
255
-
256
- include Google::Apis::Core::JsonObjectSupport
257
- end
258
-
259
139
  class Subscription
260
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
141
 
@@ -292,106 +172,6 @@ module Google
292
172
  include Google::Apis::Core::JsonObjectSupport
293
173
  end
294
174
 
295
- class ApiKeySecurityScheme
296
- # @private
297
- class Representation < Google::Apis::Core::JsonRepresentation
298
- property :description, as: 'description'
299
- property :location, as: 'location'
300
- property :name, as: 'name'
301
- end
302
- end
303
-
304
- class AgentCapabilities
305
- # @private
306
- class Representation < Google::Apis::Core::JsonRepresentation
307
- collection :extensions, as: 'extensions', class: Google::Apis::WorkspaceeventsV1::AgentExtension, decorator: Google::Apis::WorkspaceeventsV1::AgentExtension::Representation
308
-
309
- property :push_notifications, as: 'pushNotifications'
310
- property :streaming, as: 'streaming'
311
- end
312
- end
313
-
314
- class AgentCard
315
- # @private
316
- class Representation < Google::Apis::Core::JsonRepresentation
317
- collection :additional_interfaces, as: 'additionalInterfaces', class: Google::Apis::WorkspaceeventsV1::AgentInterface, decorator: Google::Apis::WorkspaceeventsV1::AgentInterface::Representation
318
-
319
- property :capabilities, as: 'capabilities', class: Google::Apis::WorkspaceeventsV1::AgentCapabilities, decorator: Google::Apis::WorkspaceeventsV1::AgentCapabilities::Representation
320
-
321
- collection :default_input_modes, as: 'defaultInputModes'
322
- collection :default_output_modes, as: 'defaultOutputModes'
323
- property :description, as: 'description'
324
- property :documentation_url, as: 'documentationUrl'
325
- property :icon_url, as: 'iconUrl'
326
- property :name, as: 'name'
327
- property :preferred_transport, as: 'preferredTransport'
328
- property :protocol_version, as: 'protocolVersion'
329
- property :provider, as: 'provider', class: Google::Apis::WorkspaceeventsV1::AgentProvider, decorator: Google::Apis::WorkspaceeventsV1::AgentProvider::Representation
330
-
331
- collection :security, as: 'security', class: Google::Apis::WorkspaceeventsV1::Security, decorator: Google::Apis::WorkspaceeventsV1::Security::Representation
332
-
333
- hash :security_schemes, as: 'securitySchemes', class: Google::Apis::WorkspaceeventsV1::SecurityScheme, decorator: Google::Apis::WorkspaceeventsV1::SecurityScheme::Representation
334
-
335
- collection :signatures, as: 'signatures', class: Google::Apis::WorkspaceeventsV1::AgentCardSignature, decorator: Google::Apis::WorkspaceeventsV1::AgentCardSignature::Representation
336
-
337
- collection :skills, as: 'skills', class: Google::Apis::WorkspaceeventsV1::AgentSkill, decorator: Google::Apis::WorkspaceeventsV1::AgentSkill::Representation
338
-
339
- property :supports_authenticated_extended_card, as: 'supportsAuthenticatedExtendedCard'
340
- property :url, as: 'url'
341
- property :version, as: 'version'
342
- end
343
- end
344
-
345
- class AgentCardSignature
346
- # @private
347
- class Representation < Google::Apis::Core::JsonRepresentation
348
- hash :header, as: 'header'
349
- property :protected, as: 'protected'
350
- property :signature, as: 'signature'
351
- end
352
- end
353
-
354
- class AgentExtension
355
- # @private
356
- class Representation < Google::Apis::Core::JsonRepresentation
357
- property :description, as: 'description'
358
- hash :params, as: 'params'
359
- property :required, as: 'required'
360
- property :uri, as: 'uri'
361
- end
362
- end
363
-
364
- class AgentInterface
365
- # @private
366
- class Representation < Google::Apis::Core::JsonRepresentation
367
- property :transport, as: 'transport'
368
- property :url, as: 'url'
369
- end
370
- end
371
-
372
- class AgentProvider
373
- # @private
374
- class Representation < Google::Apis::Core::JsonRepresentation
375
- property :organization, as: 'organization'
376
- property :url, as: 'url'
377
- end
378
- end
379
-
380
- class AgentSkill
381
- # @private
382
- class Representation < Google::Apis::Core::JsonRepresentation
383
- property :description, as: 'description'
384
- collection :examples, as: 'examples'
385
- property :id, as: 'id'
386
- collection :input_modes, as: 'inputModes'
387
- property :name, as: 'name'
388
- collection :output_modes, as: 'outputModes'
389
- collection :security, as: 'security', class: Google::Apis::WorkspaceeventsV1::Security, decorator: Google::Apis::WorkspaceeventsV1::Security::Representation
390
-
391
- collection :tags, as: 'tags'
392
- end
393
- end
394
-
395
175
  class Artifact
396
176
  # @private
397
177
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -413,31 +193,12 @@ module Google
413
193
  end
414
194
  end
415
195
 
416
- class AuthorizationCodeOAuthFlow
417
- # @private
418
- class Representation < Google::Apis::Core::JsonRepresentation
419
- property :authorization_url, as: 'authorizationUrl'
420
- property :refresh_url, as: 'refreshUrl'
421
- hash :scopes, as: 'scopes'
422
- property :token_url, as: 'tokenUrl'
423
- end
424
- end
425
-
426
196
  class CancelTaskRequest
427
197
  # @private
428
198
  class Representation < Google::Apis::Core::JsonRepresentation
429
199
  end
430
200
  end
431
201
 
432
- class ClientCredentialsOAuthFlow
433
- # @private
434
- class Representation < Google::Apis::Core::JsonRepresentation
435
- property :refresh_url, as: 'refreshUrl'
436
- hash :scopes, as: 'scopes'
437
- property :token_url, as: 'tokenUrl'
438
- end
439
- end
440
-
441
202
  class DataPart
442
203
  # @private
443
204
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -461,24 +222,6 @@ module Google
461
222
  end
462
223
  end
463
224
 
464
- class HttpAuthSecurityScheme
465
- # @private
466
- class Representation < Google::Apis::Core::JsonRepresentation
467
- property :bearer_format, as: 'bearerFormat'
468
- property :description, as: 'description'
469
- property :scheme, as: 'scheme'
470
- end
471
- end
472
-
473
- class ImplicitOAuthFlow
474
- # @private
475
- class Representation < Google::Apis::Core::JsonRepresentation
476
- property :authorization_url, as: 'authorizationUrl'
477
- property :refresh_url, as: 'refreshUrl'
478
- hash :scopes, as: 'scopes'
479
- end
480
- end
481
-
482
225
  class ListSubscriptionsResponse
483
226
  # @private
484
227
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -511,13 +254,6 @@ module Google
511
254
  end
512
255
  end
513
256
 
514
- class MutualTlsSecurityScheme
515
- # @private
516
- class Representation < Google::Apis::Core::JsonRepresentation
517
- property :description, as: 'description'
518
- end
519
- end
520
-
521
257
  class NotificationEndpoint
522
258
  # @private
523
259
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -525,38 +261,6 @@ module Google
525
261
  end
526
262
  end
527
263
 
528
- class OAuth2SecurityScheme
529
- # @private
530
- class Representation < Google::Apis::Core::JsonRepresentation
531
- property :description, as: 'description'
532
- property :flows, as: 'flows', class: Google::Apis::WorkspaceeventsV1::OAuthFlows, decorator: Google::Apis::WorkspaceeventsV1::OAuthFlows::Representation
533
-
534
- property :oauth2_metadata_url, as: 'oauth2MetadataUrl'
535
- end
536
- end
537
-
538
- class OAuthFlows
539
- # @private
540
- class Representation < Google::Apis::Core::JsonRepresentation
541
- property :authorization_code, as: 'authorizationCode', class: Google::Apis::WorkspaceeventsV1::AuthorizationCodeOAuthFlow, decorator: Google::Apis::WorkspaceeventsV1::AuthorizationCodeOAuthFlow::Representation
542
-
543
- property :client_credentials, as: 'clientCredentials', class: Google::Apis::WorkspaceeventsV1::ClientCredentialsOAuthFlow, decorator: Google::Apis::WorkspaceeventsV1::ClientCredentialsOAuthFlow::Representation
544
-
545
- property :implicit, as: 'implicit', class: Google::Apis::WorkspaceeventsV1::ImplicitOAuthFlow, decorator: Google::Apis::WorkspaceeventsV1::ImplicitOAuthFlow::Representation
546
-
547
- property :password, as: 'password', class: Google::Apis::WorkspaceeventsV1::PasswordOAuthFlow, decorator: Google::Apis::WorkspaceeventsV1::PasswordOAuthFlow::Representation
548
-
549
- end
550
- end
551
-
552
- class OpenIdConnectSecurityScheme
553
- # @private
554
- class Representation < Google::Apis::Core::JsonRepresentation
555
- property :description, as: 'description'
556
- property :open_id_connect_url, as: 'openIdConnectUrl'
557
- end
558
- end
559
-
560
264
  class Operation
561
265
  # @private
562
266
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -581,15 +285,6 @@ module Google
581
285
  end
582
286
  end
583
287
 
584
- class PasswordOAuthFlow
585
- # @private
586
- class Representation < Google::Apis::Core::JsonRepresentation
587
- property :refresh_url, as: 'refreshUrl'
588
- hash :scopes, as: 'scopes'
589
- property :token_url, as: 'tokenUrl'
590
- end
591
- end
592
-
593
288
  class PayloadOptions
594
289
  # @private
595
290
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -615,30 +310,6 @@ module Google
615
310
  end
616
311
  end
617
312
 
618
- class Security
619
- # @private
620
- class Representation < Google::Apis::Core::JsonRepresentation
621
- hash :schemes, as: 'schemes', class: Google::Apis::WorkspaceeventsV1::StringList, decorator: Google::Apis::WorkspaceeventsV1::StringList::Representation
622
-
623
- end
624
- end
625
-
626
- class SecurityScheme
627
- # @private
628
- class Representation < Google::Apis::Core::JsonRepresentation
629
- property :api_key_security_scheme, as: 'apiKeySecurityScheme', class: Google::Apis::WorkspaceeventsV1::ApiKeySecurityScheme, decorator: Google::Apis::WorkspaceeventsV1::ApiKeySecurityScheme::Representation
630
-
631
- property :http_auth_security_scheme, as: 'httpAuthSecurityScheme', class: Google::Apis::WorkspaceeventsV1::HttpAuthSecurityScheme, decorator: Google::Apis::WorkspaceeventsV1::HttpAuthSecurityScheme::Representation
632
-
633
- property :mtls_security_scheme, as: 'mtlsSecurityScheme', class: Google::Apis::WorkspaceeventsV1::MutualTlsSecurityScheme, decorator: Google::Apis::WorkspaceeventsV1::MutualTlsSecurityScheme::Representation
634
-
635
- property :oauth2_security_scheme, as: 'oauth2SecurityScheme', class: Google::Apis::WorkspaceeventsV1::OAuth2SecurityScheme, decorator: Google::Apis::WorkspaceeventsV1::OAuth2SecurityScheme::Representation
636
-
637
- property :open_id_connect_security_scheme, as: 'openIdConnectSecurityScheme', class: Google::Apis::WorkspaceeventsV1::OpenIdConnectSecurityScheme, decorator: Google::Apis::WorkspaceeventsV1::OpenIdConnectSecurityScheme::Representation
638
-
639
- end
640
- end
641
-
642
313
  class SendMessageConfiguration
643
314
  # @private
644
315
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -684,13 +355,6 @@ module Google
684
355
  end
685
356
  end
686
357
 
687
- class StringList
688
- # @private
689
- class Representation < Google::Apis::Core::JsonRepresentation
690
- collection :list, as: 'list'
691
- end
692
- end
693
-
694
358
  class Subscription
695
359
  # @private
696
360
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -640,33 +640,6 @@ module Google
640
640
  command.query['quotaUser'] = quota_user unless quota_user.nil?
641
641
  execute_or_queue_command(command, &block)
642
642
  end
643
-
644
- # GetAgentCard returns the agent card for the agent.
645
- # @param [String] fields
646
- # Selector specifying which fields to include in a partial response.
647
- # @param [String] quota_user
648
- # Available to use for quota purposes for server-side applications. Can be any
649
- # arbitrary string assigned to a user, but should not exceed 40 characters.
650
- # @param [Google::Apis::RequestOptions] options
651
- # Request-specific options
652
- #
653
- # @yield [result, err] Result & error if block supplied
654
- # @yieldparam result [Google::Apis::WorkspaceeventsV1::AgentCard] parsed result object
655
- # @yieldparam err [StandardError] error object if request failed
656
- #
657
- # @return [Google::Apis::WorkspaceeventsV1::AgentCard]
658
- #
659
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
660
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
661
- # @raise [Google::Apis::AuthorizationError] Authorization is required
662
- def get_card(fields: nil, quota_user: nil, options: nil, &block)
663
- command = make_simple_command(:get, 'v1/card', options)
664
- command.response_representation = Google::Apis::WorkspaceeventsV1::AgentCard::Representation
665
- command.response_class = Google::Apis::WorkspaceeventsV1::AgentCard
666
- command.query['fields'] = fields unless fields.nil?
667
- command.query['quotaUser'] = quota_user unless quota_user.nil?
668
- execute_or_queue_command(command, &block)
669
- end
670
643
 
671
644
  protected
672
645
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workspaceevents_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workspaceevents_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-workspaceevents_v1/v0.19.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workspaceevents_v1/v0.20.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workspaceevents_v1
62
62
  rdoc_options: []
63
63
  require_paths: