google-apis-meet_v2 0.9.0 → 0.11.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 +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/meet_v2/classes.rb +73 -0
- data/lib/google/apis/meet_v2/gem_version.rb +3 -3
- data/lib/google/apis/meet_v2/representations.rb +33 -0
- data/lib/google/apis/meet_v2/service.rb +71 -0
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e0ecf912e03f62d35a1ba217622155b3d33514dd69fadd4dd8e1fc8a25c5616
|
|
4
|
+
data.tar.gz: fe89af921cb65a1042601583814ba41c8f923d39617bd4c593fd592639c30d0a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e82fdce4249235923b8e831437550b548f5b62c3cf096278f26fe080eed61768a60d41db24ac04ad50bcecf46928a0c0101750705d6f6c96eb821f2b5f9be660
|
|
7
|
+
data.tar.gz: 85afdfa96d20441572fef60909a3f442a1a1c62f85d8e11c5d448b4efac8724c5265689326891a2951bc1b7ccf86c12008a3fbe036580f4838f7afe2b706b2ed
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-meet_v2
|
|
2
2
|
|
|
3
|
+
### v0.11.0 (2026-03-22)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260315
|
|
6
|
+
* Regenerated using generator version 0.18.0
|
|
7
|
+
|
|
8
|
+
### v0.10.0 (2025-05-04)
|
|
9
|
+
|
|
10
|
+
* Regenerated using generator version 0.17.0
|
|
11
|
+
|
|
3
12
|
### v0.9.0 (2025-04-27)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20250421
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://developers.google.com/workspace/meet/api) ma
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby
|
|
86
|
+
This library is supported on Ruby 3.1+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -342,6 +342,32 @@ module Google
|
|
|
342
342
|
end
|
|
343
343
|
end
|
|
344
344
|
|
|
345
|
+
# Response for ListSmartNotes method.
|
|
346
|
+
class ListSmartNotesResponse
|
|
347
|
+
include Google::Apis::Core::Hashable
|
|
348
|
+
|
|
349
|
+
# Token to be circulated back for further List call if current List doesn't
|
|
350
|
+
# include all the smart notes. Unset if all smart notes are returned.
|
|
351
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
352
|
+
# @return [String]
|
|
353
|
+
attr_accessor :next_page_token
|
|
354
|
+
|
|
355
|
+
# List of smart notes in one page.
|
|
356
|
+
# Corresponds to the JSON property `smartNotes`
|
|
357
|
+
# @return [Array<Google::Apis::MeetV2::SmartNote>]
|
|
358
|
+
attr_accessor :smart_notes
|
|
359
|
+
|
|
360
|
+
def initialize(**args)
|
|
361
|
+
update!(**args)
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
# Update properties of this object
|
|
365
|
+
def update!(**args)
|
|
366
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
367
|
+
@smart_notes = args[:smart_notes] if args.key?(:smart_notes)
|
|
368
|
+
end
|
|
369
|
+
end
|
|
370
|
+
|
|
345
371
|
# Response for ListTranscriptEntries method.
|
|
346
372
|
class ListTranscriptEntriesResponse
|
|
347
373
|
include Google::Apis::Core::Hashable
|
|
@@ -636,6 +662,53 @@ module Google
|
|
|
636
662
|
end
|
|
637
663
|
end
|
|
638
664
|
|
|
665
|
+
# Metadata for a smart note generated from a conference. It refers to the notes
|
|
666
|
+
# generated from Take Notes with Gemini during the conference.
|
|
667
|
+
class SmartNote
|
|
668
|
+
include Google::Apis::Core::Hashable
|
|
669
|
+
|
|
670
|
+
# Google Docs location where the transcript file is saved.
|
|
671
|
+
# Corresponds to the JSON property `docsDestination`
|
|
672
|
+
# @return [Google::Apis::MeetV2::DocsDestination]
|
|
673
|
+
attr_accessor :docs_destination
|
|
674
|
+
|
|
675
|
+
# Output only. Timestamp when the smart notes stopped.
|
|
676
|
+
# Corresponds to the JSON property `endTime`
|
|
677
|
+
# @return [String]
|
|
678
|
+
attr_accessor :end_time
|
|
679
|
+
|
|
680
|
+
# Output only. Identifier. Resource name of the smart notes. Format: `
|
|
681
|
+
# conferenceRecords/`conference_record`/smartNotes/`smart_note``, where ``
|
|
682
|
+
# smart_note`` is a 1:1 mapping to each unique smart notes session of the
|
|
683
|
+
# conference.
|
|
684
|
+
# Corresponds to the JSON property `name`
|
|
685
|
+
# @return [String]
|
|
686
|
+
attr_accessor :name
|
|
687
|
+
|
|
688
|
+
# Output only. Timestamp when the smart notes started.
|
|
689
|
+
# Corresponds to the JSON property `startTime`
|
|
690
|
+
# @return [String]
|
|
691
|
+
attr_accessor :start_time
|
|
692
|
+
|
|
693
|
+
# Output only. Current state.
|
|
694
|
+
# Corresponds to the JSON property `state`
|
|
695
|
+
# @return [String]
|
|
696
|
+
attr_accessor :state
|
|
697
|
+
|
|
698
|
+
def initialize(**args)
|
|
699
|
+
update!(**args)
|
|
700
|
+
end
|
|
701
|
+
|
|
702
|
+
# Update properties of this object
|
|
703
|
+
def update!(**args)
|
|
704
|
+
@docs_destination = args[:docs_destination] if args.key?(:docs_destination)
|
|
705
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
|
706
|
+
@name = args[:name] if args.key?(:name)
|
|
707
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
708
|
+
@state = args[:state] if args.key?(:state)
|
|
709
|
+
end
|
|
710
|
+
end
|
|
711
|
+
|
|
639
712
|
# Configuration related to smart notes in a meeting space. For more information
|
|
640
713
|
# about smart notes, see ["Take notes for me" in Google Meet](https://support.
|
|
641
714
|
# google.com/meet/answer/14754931).
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module MeetV2
|
|
18
18
|
# Version of the google-apis-meet_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.11.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260315"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -94,6 +94,12 @@ module Google
|
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
|
95
95
|
end
|
|
96
96
|
|
|
97
|
+
class ListSmartNotesResponse
|
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
99
|
+
|
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
101
|
+
end
|
|
102
|
+
|
|
97
103
|
class ListTranscriptEntriesResponse
|
|
98
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
99
105
|
|
|
@@ -148,6 +154,12 @@ module Google
|
|
|
148
154
|
include Google::Apis::Core::JsonObjectSupport
|
|
149
155
|
end
|
|
150
156
|
|
|
157
|
+
class SmartNote
|
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
|
+
|
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
161
|
+
end
|
|
162
|
+
|
|
151
163
|
class SmartNotesConfig
|
|
152
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
153
165
|
|
|
@@ -286,6 +298,15 @@ module Google
|
|
|
286
298
|
end
|
|
287
299
|
end
|
|
288
300
|
|
|
301
|
+
class ListSmartNotesResponse
|
|
302
|
+
# @private
|
|
303
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
304
|
+
property :next_page_token, as: 'nextPageToken'
|
|
305
|
+
collection :smart_notes, as: 'smartNotes', class: Google::Apis::MeetV2::SmartNote, decorator: Google::Apis::MeetV2::SmartNote::Representation
|
|
306
|
+
|
|
307
|
+
end
|
|
308
|
+
end
|
|
309
|
+
|
|
289
310
|
class ListTranscriptEntriesResponse
|
|
290
311
|
# @private
|
|
291
312
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -372,6 +393,18 @@ module Google
|
|
|
372
393
|
end
|
|
373
394
|
end
|
|
374
395
|
|
|
396
|
+
class SmartNote
|
|
397
|
+
# @private
|
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
399
|
+
property :docs_destination, as: 'docsDestination', class: Google::Apis::MeetV2::DocsDestination, decorator: Google::Apis::MeetV2::DocsDestination::Representation
|
|
400
|
+
|
|
401
|
+
property :end_time, as: 'endTime'
|
|
402
|
+
property :name, as: 'name'
|
|
403
|
+
property :start_time, as: 'startTime'
|
|
404
|
+
property :state, as: 'state'
|
|
405
|
+
end
|
|
406
|
+
end
|
|
407
|
+
|
|
375
408
|
class SmartNotesConfig
|
|
376
409
|
# @private
|
|
377
410
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -354,6 +354,77 @@ module Google
|
|
|
354
354
|
execute_or_queue_command(command, &block)
|
|
355
355
|
end
|
|
356
356
|
|
|
357
|
+
# Gets smart notes by smart note ID.
|
|
358
|
+
# @param [String] name
|
|
359
|
+
# Required. Resource name of the smart note. Format: conferenceRecords/`
|
|
360
|
+
# conference_record`/smartNotes/`smart_note`
|
|
361
|
+
# @param [String] fields
|
|
362
|
+
# Selector specifying which fields to include in a partial response.
|
|
363
|
+
# @param [String] quota_user
|
|
364
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
365
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
366
|
+
# @param [Google::Apis::RequestOptions] options
|
|
367
|
+
# Request-specific options
|
|
368
|
+
#
|
|
369
|
+
# @yield [result, err] Result & error if block supplied
|
|
370
|
+
# @yieldparam result [Google::Apis::MeetV2::SmartNote] parsed result object
|
|
371
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
372
|
+
#
|
|
373
|
+
# @return [Google::Apis::MeetV2::SmartNote]
|
|
374
|
+
#
|
|
375
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
376
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
377
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
378
|
+
def get_conference_record_smart_note(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
379
|
+
command = make_simple_command(:get, 'v2/{+name}', options)
|
|
380
|
+
command.response_representation = Google::Apis::MeetV2::SmartNote::Representation
|
|
381
|
+
command.response_class = Google::Apis::MeetV2::SmartNote
|
|
382
|
+
command.params['name'] = name unless name.nil?
|
|
383
|
+
command.query['fields'] = fields unless fields.nil?
|
|
384
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
385
|
+
execute_or_queue_command(command, &block)
|
|
386
|
+
end
|
|
387
|
+
|
|
388
|
+
# Lists the set of smart notes from the conference record. By default, ordered
|
|
389
|
+
# by start time and in ascending order.
|
|
390
|
+
# @param [String] parent
|
|
391
|
+
# Required. Format: `conferenceRecords/`conference_record``
|
|
392
|
+
# @param [Fixnum] page_size
|
|
393
|
+
# Optional. Maximum number of smart notes to return. The service might return
|
|
394
|
+
# fewer than this value. If unspecified, at most 10 smart notes are returned.
|
|
395
|
+
# The maximum value is 100; values above 100 are coerced to 100. Maximum might
|
|
396
|
+
# change in the future.
|
|
397
|
+
# @param [String] page_token
|
|
398
|
+
# Optional. Page token returned from previous List Call.
|
|
399
|
+
# @param [String] fields
|
|
400
|
+
# Selector specifying which fields to include in a partial response.
|
|
401
|
+
# @param [String] quota_user
|
|
402
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
403
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
404
|
+
# @param [Google::Apis::RequestOptions] options
|
|
405
|
+
# Request-specific options
|
|
406
|
+
#
|
|
407
|
+
# @yield [result, err] Result & error if block supplied
|
|
408
|
+
# @yieldparam result [Google::Apis::MeetV2::ListSmartNotesResponse] parsed result object
|
|
409
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
410
|
+
#
|
|
411
|
+
# @return [Google::Apis::MeetV2::ListSmartNotesResponse]
|
|
412
|
+
#
|
|
413
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
414
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
415
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
416
|
+
def list_conference_record_smart_notes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
417
|
+
command = make_simple_command(:get, 'v2/{+parent}/smartNotes', options)
|
|
418
|
+
command.response_representation = Google::Apis::MeetV2::ListSmartNotesResponse::Representation
|
|
419
|
+
command.response_class = Google::Apis::MeetV2::ListSmartNotesResponse
|
|
420
|
+
command.params['parent'] = parent unless parent.nil?
|
|
421
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
|
422
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
|
423
|
+
command.query['fields'] = fields unless fields.nil?
|
|
424
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
425
|
+
execute_or_queue_command(command, &block)
|
|
426
|
+
end
|
|
427
|
+
|
|
357
428
|
# Gets a transcript by transcript ID.
|
|
358
429
|
# @param [String] name
|
|
359
430
|
# Required. Resource name of the transcript.
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-meet_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: google-apis-core
|
|
@@ -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-meet_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-meet_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-meet_v2/v0.11.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-meet_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '
|
|
69
|
+
version: '3.1'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.6.
|
|
76
|
+
rubygems_version: 3.6.9
|
|
77
77
|
specification_version: 4
|
|
78
78
|
summary: Simple REST client for Google Meet API V2
|
|
79
79
|
test_files: []
|