google-apis-calendar_v3 0.56.0 → 0.57.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/calendar_v3/classes.rb +15 -0
- data/lib/google/apis/calendar_v3/gem_version.rb +2 -2
- data/lib/google/apis/calendar_v3/service.rb +16 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5bc88fb6b0ab9e7fa4fac0761068e58a9d546c0715515919395e30647400d85
|
|
4
|
+
data.tar.gz: 91d2c3b6852f969a938fa3981a4ca25aeb6c7507ec8cb03dd033cf2dbc7b750b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0abb4d8ff2e79a263036bd1e5337d3afa22cbcefddc33cdf06bcb51b192e60fb7a0f409fb0b0802f26ce3a37c99277f3652b6399a17f123e79d5a207f3aa95b6
|
|
7
|
+
data.tar.gz: 9718b52d494b73bcc5baba192f80b3758e090ba8758cd31186f14d6a9c76340cae09fcca0ba5308a688b73497b9b73656e7b8d7c68a71b7f88d25079ce25ccba
|
data/CHANGELOG.md
CHANGED
|
@@ -92,6 +92,9 @@ module Google
|
|
|
92
92
|
# - "freeBusyReader" - Provides read access to free/busy information.
|
|
93
93
|
# - "reader" - Provides read access to the calendar. Private events will appear
|
|
94
94
|
# to users with reader access, but event details will be hidden.
|
|
95
|
+
# - "writerWithoutPrivateAccess" - Provides read and write access to the
|
|
96
|
+
# calendar. Private events will appear to users with writerWithoutPrivateAccess
|
|
97
|
+
# access, but event details will be hidden.
|
|
95
98
|
# - "writer" - Provides read and write access to the calendar. Private events
|
|
96
99
|
# will appear to users with writer access, and event details will be visible.
|
|
97
100
|
# Provides read access to the calendar's ACLs.
|
|
@@ -296,6 +299,9 @@ module Google
|
|
|
296
299
|
# - "freeBusyReader" - Provides read access to free/busy information.
|
|
297
300
|
# - "reader" - Provides read access to the calendar. Private events will appear
|
|
298
301
|
# to users with reader access, but event details will be hidden.
|
|
302
|
+
# - "writerWithoutPrivateAccess" - Provides read and write access to the
|
|
303
|
+
# calendar. Private events will appear to users with writerWithoutPrivateAccess
|
|
304
|
+
# access, but event details will be hidden.
|
|
299
305
|
# - "writer" - Provides read and write access to the calendar. Private events
|
|
300
306
|
# will appear to users with writer access, and event details will be visible.
|
|
301
307
|
# - "owner" - Provides manager access to the calendar. This role has all of the
|
|
@@ -1410,6 +1416,12 @@ module Google
|
|
|
1410
1416
|
# details.
|
|
1411
1417
|
# - "confidential" - The event is private. This value is provided for
|
|
1412
1418
|
# compatibility reasons.
|
|
1419
|
+
# Note on recurring events: Changing the visibility of a single instance of a
|
|
1420
|
+
# recurring event can affect all instances of the series. If the new setting is
|
|
1421
|
+
# more restrictive (e.g. from public to private), it is applied to all instances.
|
|
1422
|
+
# If the new setting is less restrictive (e.g. from private to public), the
|
|
1423
|
+
# change is ignored. To make a recurring event less restrictive, you must update
|
|
1424
|
+
# the parent recurring event.
|
|
1413
1425
|
# Corresponds to the JSON property `visibility`
|
|
1414
1426
|
# @return [String]
|
|
1415
1427
|
attr_accessor :visibility
|
|
@@ -2191,6 +2203,9 @@ module Google
|
|
|
2191
2203
|
# - "freeBusyReader" - The user has read access to free/busy information.
|
|
2192
2204
|
# - "reader" - The user has read access to the calendar. Private events will
|
|
2193
2205
|
# appear to users with reader access, but event details will be hidden.
|
|
2206
|
+
# - "writerWithoutPrivateAccess" - The user has read and write access to the
|
|
2207
|
+
# calendar. Private events will appear to users with writerWithoutPrivateAccess
|
|
2208
|
+
# access, but event details will be hidden.
|
|
2194
2209
|
# - "writer" - The user has read and write access to the calendar. Private
|
|
2195
2210
|
# events will appear to users with writer access, and event details will be
|
|
2196
2211
|
# visible.
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CalendarV3
|
|
18
18
|
# Version of the google-apis-calendar_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.57.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260708"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -503,6 +503,10 @@ module Google
|
|
|
503
503
|
# default is False.
|
|
504
504
|
# @param [Boolean] show_hidden
|
|
505
505
|
# Whether to show hidden entries. Optional. The default is False.
|
|
506
|
+
# @param [Boolean] show_own_organization_only
|
|
507
|
+
# Whether to show only entries for calendars from the organization. This
|
|
508
|
+
# parameter is only applicable to Google Workspace users. Optional. The default
|
|
509
|
+
# is False.
|
|
506
510
|
# @param [String] sync_token
|
|
507
511
|
# Token obtained from the nextSyncToken field returned on the last page of
|
|
508
512
|
# results from the previous list request. It makes the result of this list
|
|
@@ -511,8 +515,8 @@ module Google
|
|
|
511
515
|
# returned. All entries deleted and hidden since the previous list request will
|
|
512
516
|
# always be in the result set and it is not allowed to set showDeleted neither
|
|
513
517
|
# showHidden to False.
|
|
514
|
-
# To ensure client state consistency minAccessRole
|
|
515
|
-
# specified together with nextSyncToken.
|
|
518
|
+
# To ensure client state consistency minAccessRole and showOwnOrganizationOnly
|
|
519
|
+
# query parameters cannot be specified together with nextSyncToken.
|
|
516
520
|
# If the syncToken expires, the server will respond with a 410 GONE response
|
|
517
521
|
# code and the client should clear its storage and perform a full
|
|
518
522
|
# synchronization without any syncToken.
|
|
@@ -537,7 +541,7 @@ module Google
|
|
|
537
541
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
538
542
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
539
543
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
540
|
-
def list_calendar_lists(max_results: nil, min_access_role: nil, page_token: nil, show_deleted: nil, show_hidden: nil, sync_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
544
|
+
def list_calendar_lists(max_results: nil, min_access_role: nil, page_token: nil, show_deleted: nil, show_hidden: nil, show_own_organization_only: nil, sync_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
541
545
|
command = make_simple_command(:get, 'users/me/calendarList', options)
|
|
542
546
|
command.response_representation = Google::Apis::CalendarV3::CalendarList::Representation
|
|
543
547
|
command.response_class = Google::Apis::CalendarV3::CalendarList
|
|
@@ -546,6 +550,7 @@ module Google
|
|
|
546
550
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
547
551
|
command.query['showDeleted'] = show_deleted unless show_deleted.nil?
|
|
548
552
|
command.query['showHidden'] = show_hidden unless show_hidden.nil?
|
|
553
|
+
command.query['showOwnOrganizationOnly'] = show_own_organization_only unless show_own_organization_only.nil?
|
|
549
554
|
command.query['syncToken'] = sync_token unless sync_token.nil?
|
|
550
555
|
command.query['fields'] = fields unless fields.nil?
|
|
551
556
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
@@ -657,6 +662,10 @@ module Google
|
|
|
657
662
|
# default is False.
|
|
658
663
|
# @param [Boolean] show_hidden
|
|
659
664
|
# Whether to show hidden entries. Optional. The default is False.
|
|
665
|
+
# @param [Boolean] show_own_organization_only
|
|
666
|
+
# Whether to show only entries for calendars from the organization. This
|
|
667
|
+
# parameter is only applicable to Google Workspace users. Optional. The default
|
|
668
|
+
# is False.
|
|
660
669
|
# @param [String] sync_token
|
|
661
670
|
# Token obtained from the nextSyncToken field returned on the last page of
|
|
662
671
|
# results from the previous list request. It makes the result of this list
|
|
@@ -665,8 +674,8 @@ module Google
|
|
|
665
674
|
# returned. All entries deleted and hidden since the previous list request will
|
|
666
675
|
# always be in the result set and it is not allowed to set showDeleted neither
|
|
667
676
|
# showHidden to False.
|
|
668
|
-
# To ensure client state consistency minAccessRole
|
|
669
|
-
# specified together with nextSyncToken.
|
|
677
|
+
# To ensure client state consistency minAccessRole and showOwnOrganizationOnly
|
|
678
|
+
# query parameters cannot be specified together with nextSyncToken.
|
|
670
679
|
# If the syncToken expires, the server will respond with a 410 GONE response
|
|
671
680
|
# code and the client should clear its storage and perform a full
|
|
672
681
|
# synchronization without any syncToken.
|
|
@@ -691,7 +700,7 @@ module Google
|
|
|
691
700
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
692
701
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
693
702
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
694
|
-
def watch_calendar_list(channel_object = nil, max_results: nil, min_access_role: nil, page_token: nil, show_deleted: nil, show_hidden: nil, sync_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
703
|
+
def watch_calendar_list(channel_object = nil, max_results: nil, min_access_role: nil, page_token: nil, show_deleted: nil, show_hidden: nil, show_own_organization_only: nil, sync_token: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
695
704
|
command = make_simple_command(:post, 'users/me/calendarList/watch', options)
|
|
696
705
|
command.request_representation = Google::Apis::CalendarV3::Channel::Representation
|
|
697
706
|
command.request_object = channel_object
|
|
@@ -702,6 +711,7 @@ module Google
|
|
|
702
711
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
703
712
|
command.query['showDeleted'] = show_deleted unless show_deleted.nil?
|
|
704
713
|
command.query['showHidden'] = show_hidden unless show_hidden.nil?
|
|
714
|
+
command.query['showOwnOrganizationOnly'] = show_own_organization_only unless show_own_organization_only.nil?
|
|
705
715
|
command.query['syncToken'] = sync_token unless sync_token.nil?
|
|
706
716
|
command.query['fields'] = fields unless fields.nil?
|
|
707
717
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-calendar_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.57.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-calendar_v3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-calendar_v3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-calendar_v3/v0.57.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-calendar_v3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|