google-apis-workspaceevents_v1 0.23.0 → 0.24.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: fe90b2697e141640fd5b122f6aaa3f599eda5b0a4ff8a0aefe497a2c57ed0ceb
|
|
4
|
+
data.tar.gz: fcfdb4e70800e40c739aca458685339cb749f0eff9444e7840c63ce523afcf27
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d9697891f2b1c632cd68a508ec2a985ba6034a2ffc0fd18e8bd5d6ce54498591d07cb65c1ca196556136c651d24bfcea7da60d6e6fed1811c7ff063ae769ee8
|
|
7
|
+
data.tar.gz: '09b9f955ea8308ebe7d8b0cb004761c6bf003a9c8294698b4bc27cfdfe3dd4a5e089c26241569f4caa564e13c1b9855f1df1ecb69a37a555442ac3848aab8988'
|
data/CHANGELOG.md
CHANGED
|
@@ -138,6 +138,33 @@ module Google
|
|
|
138
138
|
end
|
|
139
139
|
end
|
|
140
140
|
|
|
141
|
+
# Additional supported options for serving Drive events.
|
|
142
|
+
class DriveOptions
|
|
143
|
+
include Google::Apis::Core::Hashable
|
|
144
|
+
|
|
145
|
+
# Optional. Immutable. For subscriptions to Google Drive events, whether to
|
|
146
|
+
# receive events about Drive files that are children of the target folder or
|
|
147
|
+
# shared drive. * If `false`, the subscription only receives events about
|
|
148
|
+
# changes to the folder or shared drive that's specified as the `targetResource`.
|
|
149
|
+
# * If `true`, the `mimeType` field of the `file` resource must be set to `
|
|
150
|
+
# application/vnd.google-apps.folder`. For details, see [Google Drive event
|
|
151
|
+
# types](https://developers.google.com/workspace/events/guides/events-drive#
|
|
152
|
+
# event-types).
|
|
153
|
+
# Corresponds to the JSON property `includeDescendants`
|
|
154
|
+
# @return [Boolean]
|
|
155
|
+
attr_accessor :include_descendants
|
|
156
|
+
alias_method :include_descendants?, :include_descendants
|
|
157
|
+
|
|
158
|
+
def initialize(**args)
|
|
159
|
+
update!(**args)
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
# Update properties of this object
|
|
163
|
+
def update!(**args)
|
|
164
|
+
@include_descendants = args[:include_descendants] if args.key?(:include_descendants)
|
|
165
|
+
end
|
|
166
|
+
end
|
|
167
|
+
|
|
141
168
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
|
142
169
|
# messages in your APIs. A typical example is to use it as the request or the
|
|
143
170
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
|
@@ -728,6 +755,11 @@ module Google
|
|
|
728
755
|
# @return [String]
|
|
729
756
|
attr_accessor :create_time
|
|
730
757
|
|
|
758
|
+
# Additional supported options for serving Drive events.
|
|
759
|
+
# Corresponds to the JSON property `driveOptions`
|
|
760
|
+
# @return [Google::Apis::WorkspaceeventsV1::DriveOptions]
|
|
761
|
+
attr_accessor :drive_options
|
|
762
|
+
|
|
731
763
|
# Optional. This checksum is computed by the server based on the value of other
|
|
732
764
|
# fields, and might be sent on update requests to ensure the client has an up-to-
|
|
733
765
|
# date value before proceeding.
|
|
@@ -843,6 +875,7 @@ module Google
|
|
|
843
875
|
def update!(**args)
|
|
844
876
|
@authority = args[:authority] if args.key?(:authority)
|
|
845
877
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
878
|
+
@drive_options = args[:drive_options] if args.key?(:drive_options)
|
|
846
879
|
@etag = args[:etag] if args.key?(:etag)
|
|
847
880
|
@event_types = args[:event_types] if args.key?(:event_types)
|
|
848
881
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
|
@@ -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.24.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 = "20260517"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -46,6 +46,12 @@ module Google
|
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
|
47
47
|
end
|
|
48
48
|
|
|
49
|
+
class DriveOptions
|
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
51
|
+
|
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
53
|
+
end
|
|
54
|
+
|
|
49
55
|
class Empty
|
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
51
57
|
|
|
@@ -207,6 +213,13 @@ module Google
|
|
|
207
213
|
end
|
|
208
214
|
end
|
|
209
215
|
|
|
216
|
+
class DriveOptions
|
|
217
|
+
# @private
|
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
219
|
+
property :include_descendants, as: 'includeDescendants'
|
|
220
|
+
end
|
|
221
|
+
end
|
|
222
|
+
|
|
210
223
|
class Empty
|
|
211
224
|
# @private
|
|
212
225
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -362,6 +375,8 @@ module Google
|
|
|
362
375
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
363
376
|
property :authority, as: 'authority'
|
|
364
377
|
property :create_time, as: 'createTime'
|
|
378
|
+
property :drive_options, as: 'driveOptions', class: Google::Apis::WorkspaceeventsV1::DriveOptions, decorator: Google::Apis::WorkspaceeventsV1::DriveOptions::Representation
|
|
379
|
+
|
|
365
380
|
property :etag, as: 'etag'
|
|
366
381
|
collection :event_types, as: 'eventTypes'
|
|
367
382
|
property :expire_time, as: 'expireTime'
|
|
@@ -72,6 +72,12 @@ module Google
|
|
|
72
72
|
# View chat and spaces in Google Chat
|
|
73
73
|
AUTH_CHAT_SPACES_READONLY = 'https://www.googleapis.com/auth/chat.spaces.readonly'
|
|
74
74
|
|
|
75
|
+
# See and change your availability status in Google Chat.
|
|
76
|
+
AUTH_CHAT_USERS_AVAILABILITY = 'https://www.googleapis.com/auth/chat.users.availability'
|
|
77
|
+
|
|
78
|
+
# See your availability status in Google Chat.
|
|
79
|
+
AUTH_CHAT_USERS_AVAILABILITY_READONLY = 'https://www.googleapis.com/auth/chat.users.availability.readonly'
|
|
80
|
+
|
|
75
81
|
# View and modify last read time for Google Chat conversations
|
|
76
82
|
AUTH_CHAT_USERS_READSTATE = 'https://www.googleapis.com/auth/chat.users.readstate'
|
|
77
83
|
|
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.24.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.24.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:
|