google-apis-workspaceevents_v1 0.15.0 → 0.17.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2147d9d0bce00df990c7cffc3db1dd801b8bb796356e205a664b32e006b17268
|
4
|
+
data.tar.gz: 137aeb95bde27a5f33d5226e23f045b0b8cf1a4f786a5df5835a44cd7ada2632
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: faf2124fcb16cdcc606203824f26393079bf53e6c09323b4a0fc9a38b418d973897485a9fcbb94eb7557fa98ff58e79bd7cd8d3031b0bb4314986dff20ec3d33
|
7
|
+
data.tar.gz: d8b5925dfe3065cd6b543a8953414c7b375bf7e5c7b5291e984f4bf8b7757fe1c1c250efeedd1c865cfeff80e9fa7dbd35ad31006a15509dc4ef9976613552fe
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-workspaceevents_v1
|
2
2
|
|
3
|
+
### v0.17.0 (2025-09-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250921
|
6
|
+
|
7
|
+
### v0.16.0 (2025-07-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250708
|
10
|
+
|
3
11
|
### v0.15.0 (2025-07-06)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250629
|
@@ -54,15 +54,15 @@ module Google
|
|
54
54
|
|
55
55
|
# Immutable. The Pub/Sub topic that receives events for the subscription. Format:
|
56
56
|
# `projects/`project`/topics/`topic`` You must create the topic in the same
|
57
|
-
# Google Cloud project where you create this subscription. Note: The
|
58
|
-
# Events API uses [ordering keys](https://cloud.google.com/pubsub/docs/
|
59
|
-
# for the benefit of sequential events. If the Cloud Pub/Sub topic has
|
60
|
-
# message storage policy](https://cloud.google.com/pubsub/docs/resource-
|
61
|
-
# restriction#exceptions) configured to exclude the nearest Google
|
62
|
-
# publishing events with ordering keys will fail. When the topic
|
63
|
-
# the events are encoded as Pub/Sub messages. For details, see
|
64
|
-
# Cloud Pub/Sub Protocol Binding for CloudEvents](https://github.com/
|
65
|
-
# google-cloudevents/blob/main/docs/spec/pubsub.md).
|
57
|
+
# Google Cloud project where you create this subscription. Note: The Google
|
58
|
+
# Workspace Events API uses [ordering keys](https://cloud.google.com/pubsub/docs/
|
59
|
+
# ordering) for the benefit of sequential events. If the Cloud Pub/Sub topic has
|
60
|
+
# a [message storage policy](https://cloud.google.com/pubsub/docs/resource-
|
61
|
+
# location-restriction#exceptions) configured to exclude the nearest Google
|
62
|
+
# Cloud region, publishing events with ordering keys will fail. When the topic
|
63
|
+
# receives events, the events are encoded as Pub/Sub messages. For details, see
|
64
|
+
# the [Google Cloud Pub/Sub Protocol Binding for CloudEvents](https://github.com/
|
65
|
+
# googleapis/google-cloudevents/blob/main/docs/spec/pubsub.md).
|
66
66
|
# Corresponds to the JSON property `pubsubTopic`
|
67
67
|
# @return [String]
|
68
68
|
attr_accessor :pubsub_topic
|
@@ -140,7 +140,7 @@ module Google
|
|
140
140
|
end
|
141
141
|
|
142
142
|
# Options about what data to include in the event payload. Only supported for
|
143
|
-
# Google Chat events.
|
143
|
+
# Google Chat and Google Drive events.
|
144
144
|
class PayloadOptions
|
145
145
|
include Google::Apis::Core::Hashable
|
146
146
|
|
@@ -233,10 +233,13 @@ module Google
|
|
233
233
|
class Subscription
|
234
234
|
include Google::Apis::Core::Hashable
|
235
235
|
|
236
|
-
# Output only. The user who authorized the creation of the subscription.
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
236
|
+
# Output only. The user who authorized the creation of the subscription. When a
|
237
|
+
# user authorizes the subscription, this field and the `user_authority` field
|
238
|
+
# have the same value and the format is: Format: `users/`user`` For Google
|
239
|
+
# Workspace users, the ``user`` value is the [`user.id`](https://developers.
|
240
|
+
# google.com/admin-sdk/directory/reference/rest/v1/users#User.FIELDS.ids) field
|
241
|
+
# from the Directory API. When a Chat app authorizes the subscription, only `
|
242
|
+
# service_account_authority` field populates and this field is empty.
|
240
243
|
# Corresponds to the JSON property `authority`
|
241
244
|
# @return [String]
|
242
245
|
attr_accessor :authority
|
@@ -285,7 +288,7 @@ module Google
|
|
285
288
|
attr_accessor :notification_endpoint
|
286
289
|
|
287
290
|
# Options about what data to include in the event payload. Only supported for
|
288
|
-
# Google Chat events.
|
291
|
+
# Google Chat and Google Drive events.
|
289
292
|
# Corresponds to the JSON property `payloadOptions`
|
290
293
|
# @return [Google::Apis::WorkspaceeventsV1::PayloadOptions]
|
291
294
|
attr_accessor :payload_options
|
@@ -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
|
+
GEM_VERSION = "0.17.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 = "
|
25
|
+
REVISION = "20250921"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -85,7 +85,17 @@ module Google
|
|
85
85
|
|
86
86
|
# Creates a Google Workspace subscription. To learn how to use this method, see [
|
87
87
|
# Create a Google Workspace subscription](https://developers.google.com/
|
88
|
-
# workspace/events/guides/create-subscription).
|
88
|
+
# workspace/events/guides/create-subscription). For a subscription on a [Chat
|
89
|
+
# target resource](https://developers.google.com/workspace/events/guides/events-
|
90
|
+
# chat), you can create a subscription as: - A Chat app by specifying an
|
91
|
+
# authorization scope that begins with `chat.app` and getting one-time
|
92
|
+
# administrator approval ([Developer Preview](https://developers.google.com/
|
93
|
+
# workspace/preview)). To learn more, see [Authorize as a Chat app with
|
94
|
+
# administrator approval](https://developers.google.com/workspace/chat/
|
95
|
+
# authenticate-authorize-chat-app). - A user by specifying an authorization
|
96
|
+
# scope that doesn't include `app` in its name. To learn more, see [Authorize as
|
97
|
+
# a Chat user](https://developers.google.com/workspace/chat/authenticate-
|
98
|
+
# authorize-chat-user).
|
89
99
|
# @param [Google::Apis::WorkspaceeventsV1::Subscription] subscription_object
|
90
100
|
# @param [Boolean] validate_only
|
91
101
|
# Optional. If set to `true`, validates and previews the request, but doesn't
|
@@ -255,7 +265,17 @@ module Google
|
|
255
265
|
|
256
266
|
# Updates or renews a Google Workspace subscription. To learn how to use this
|
257
267
|
# method, see [Update or renew a Google Workspace subscription](https://
|
258
|
-
# developers.google.com/workspace/events/guides/update-subscription).
|
268
|
+
# developers.google.com/workspace/events/guides/update-subscription). For a
|
269
|
+
# subscription on a [Chat target resource](https://developers.google.com/
|
270
|
+
# workspace/events/guides/events-chat), you can update a subscription as: - A
|
271
|
+
# Chat app by specifying an authorization scope that begins with `chat.app`
|
272
|
+
# andgetting one-time administrator approval ([Developer Preview](https://
|
273
|
+
# developers.google.com/workspace/preview)). To learn more, see [Authorize as a
|
274
|
+
# Chat app with administrator approval](https://developers.google.com/workspace/
|
275
|
+
# chat/authenticate-authorize-chat-app). - A user by specifying an authorization
|
276
|
+
# scope that doesn't include `app` in its name. To learn more, see [Authorize as
|
277
|
+
# a Chat user](https://developers.google.com/workspace/chat/authenticate-
|
278
|
+
# authorize-chat-user).
|
259
279
|
# @param [String] name
|
260
280
|
# Identifier. Resource name of the subscription. Format: `subscriptions/`
|
261
281
|
# subscription``
|
@@ -307,7 +327,17 @@ module Google
|
|
307
327
|
# fix the error that suspended the subscription. This method will ignore or
|
308
328
|
# reject any subscription that isn't currently in a suspended state. To learn
|
309
329
|
# how to use this method, see [Reactivate a Google Workspace subscription](https:
|
310
|
-
# //developers.google.com/workspace/events/guides/reactivate-subscription).
|
330
|
+
# //developers.google.com/workspace/events/guides/reactivate-subscription). For
|
331
|
+
# a subscription on a [Chat target resource](https://developers.google.com/
|
332
|
+
# workspace/events/guides/events-chat), you can reactivate a subscription as: -
|
333
|
+
# A Chat app by specifying an authorization scope that begins with `chat.app`
|
334
|
+
# andgetting one-time administrator approval ([Developer Preview](https://
|
335
|
+
# developers.google.com/workspace/preview)). To learn more, see [Authorize as a
|
336
|
+
# Chat app with administrator approval](https://developers.google.com/workspace/
|
337
|
+
# chat/authenticate-authorize-chat-app). - A user by specifying an authorization
|
338
|
+
# scope that doesn't include `app` in its name. To learn more, see [Authorize as
|
339
|
+
# a Chat user](https://developers.google.com/workspace/chat/authenticate-
|
340
|
+
# authorize-chat-user).
|
311
341
|
# @param [String] name
|
312
342
|
# Required. Resource name of the subscription. Format: `subscriptions/`
|
313
343
|
# subscription``
|
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.
|
4
|
+
version: 0.17.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workspaceevents_v1/v0.17.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:
|