google-apis-meet_v2 0.10.0 → 0.12.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: ffcf35708574b0116b7c2a90ee46111bac4cfca9553f08b877c07a328f4254b8
4
- data.tar.gz: 91e3c800184caa6423d7f7ec686d6de2c59bd628ab667e0b71124c568d8b5345
3
+ metadata.gz: 564ef3530a742f3617073b2701acd8824510e76e4a69dffb8dbf0c8d6ef231be
4
+ data.tar.gz: 43097dfecf2bdf20779e402aecc168dd5e1b07422fcdbadfad20fbc95864d89e
5
5
  SHA512:
6
- metadata.gz: b7f37c9f62e39223b4facd90c976e75077212e47e63094b8da367ab57587b0a503a011b8a193ede8ab3c78e6b13dc4d6e0dd575ba0673b0e324cbd11236c5fba
7
- data.tar.gz: 555eb761938b9c5f6384b1c5da7d9ba110147f0b8634b881e52bd843dd99c5781037ab652397819cfada472e464deff2bae2cba4ed0c76bd982a55188e3ffd82
6
+ metadata.gz: fe6e8c585a1741f57b133ea87f43933ab3e36cfb821f4b117c2e4b24e625db5266f623a27561ca264b4153f97b4b00d126fd882949c34d7dae7d844493dc169f
7
+ data.tar.gz: d3125f04aba1d77be01739fa32f649782310633c014b2d216613842614dfeae7f50c35dae4f9c4f814a6205b69043f00de6ece8facce1c1168803606487353e0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-meet_v2
2
2
 
3
+ ### v0.12.0 (2026-04-19)
4
+
5
+ * Regenerated from discovery document revision 20260329
6
+
7
+ ### v0.11.0 (2026-03-22)
8
+
9
+ * Regenerated from discovery document revision 20260315
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.10.0 (2025-05-04)
4
13
 
5
14
  * Regenerated using generator version 0.17.0
@@ -230,6 +230,33 @@ module Google
230
230
  end
231
231
  end
232
232
 
233
+ # Details how to join the conference via a SIP gateway.
234
+ class GatewaySipAccess
235
+ include Google::Apis::Core::Hashable
236
+
237
+ # Permanent numeric code for manual entry on specially configured devices.
238
+ # Corresponds to the JSON property `sipAccessCode`
239
+ # @return [String]
240
+ attr_accessor :sip_access_code
241
+
242
+ # The SIP URI the conference can be reached through. The string is on one of the
243
+ # formats: "sip:@" "sips:@" where currently is the 13-digit universal pin, and
244
+ # is a valid address to be resolved using a DNS SRV lookup, or a dotted quad.
245
+ # Corresponds to the JSON property `uri`
246
+ # @return [String]
247
+ attr_accessor :uri
248
+
249
+ def initialize(**args)
250
+ update!(**args)
251
+ end
252
+
253
+ # Update properties of this object
254
+ def update!(**args)
255
+ @sip_access_code = args[:sip_access_code] if args.key?(:sip_access_code)
256
+ @uri = args[:uri] if args.key?(:uri)
257
+ end
258
+ end
259
+
233
260
  # Response of ListConferenceRecords method.
234
261
  class ListConferenceRecordsResponse
235
262
  include Google::Apis::Core::Hashable
@@ -342,6 +369,32 @@ module Google
342
369
  end
343
370
  end
344
371
 
372
+ # Response for ListSmartNotes method.
373
+ class ListSmartNotesResponse
374
+ include Google::Apis::Core::Hashable
375
+
376
+ # Token to be circulated back for further List call if current List doesn't
377
+ # include all the smart notes. Unset if all smart notes are returned.
378
+ # Corresponds to the JSON property `nextPageToken`
379
+ # @return [String]
380
+ attr_accessor :next_page_token
381
+
382
+ # List of smart notes in one page.
383
+ # Corresponds to the JSON property `smartNotes`
384
+ # @return [Array<Google::Apis::MeetV2::SmartNote>]
385
+ attr_accessor :smart_notes
386
+
387
+ def initialize(**args)
388
+ update!(**args)
389
+ end
390
+
391
+ # Update properties of this object
392
+ def update!(**args)
393
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
394
+ @smart_notes = args[:smart_notes] if args.key?(:smart_notes)
395
+ end
396
+ end
397
+
345
398
  # Response for ListTranscriptEntries method.
346
399
  class ListTranscriptEntriesResponse
347
400
  include Google::Apis::Core::Hashable
@@ -521,6 +574,49 @@ module Google
521
574
  end
522
575
  end
523
576
 
577
+ # Phone access contains information required to dial into a conference using a
578
+ # regional phone number and a PIN that is specific to that phone number.
579
+ class PhoneAccess
580
+ include Google::Apis::Core::Hashable
581
+
582
+ # The BCP 47/LDML language code for the language associated with this phone
583
+ # access. To be parsed by the i18n LanguageCode utility. Examples: "es-419" for
584
+ # Latin American Spanish, "fr-CA" for Canadian French.
585
+ # Corresponds to the JSON property `languageCode`
586
+ # @return [String]
587
+ attr_accessor :language_code
588
+
589
+ # The phone number to dial for this meeting space in E.164 format. Full phone
590
+ # number with a leading '+' character.
591
+ # Corresponds to the JSON property `phoneNumber`
592
+ # @return [String]
593
+ attr_accessor :phone_number
594
+
595
+ # The PIN that users must enter after dialing the given number. The PIN consists
596
+ # of only decimal digits and the length may vary.
597
+ # Corresponds to the JSON property `pin`
598
+ # @return [String]
599
+ attr_accessor :pin
600
+
601
+ # The CLDR/ISO 3166 region code for the country associated with this phone
602
+ # access. To be parsed by the i18n RegionCode utility. Example: "SE" for Sweden.
603
+ # Corresponds to the JSON property `regionCode`
604
+ # @return [String]
605
+ attr_accessor :region_code
606
+
607
+ def initialize(**args)
608
+ update!(**args)
609
+ end
610
+
611
+ # Update properties of this object
612
+ def update!(**args)
613
+ @language_code = args[:language_code] if args.key?(:language_code)
614
+ @phone_number = args[:phone_number] if args.key?(:phone_number)
615
+ @pin = args[:pin] if args.key?(:pin)
616
+ @region_code = args[:region_code] if args.key?(:region_code)
617
+ end
618
+ end
619
+
524
620
  # User dialing in from a phone where the user's identity is unknown because they
525
621
  # haven't signed in with a Google Account.
526
622
  class PhoneUser
@@ -636,6 +732,53 @@ module Google
636
732
  end
637
733
  end
638
734
 
735
+ # Metadata for a smart note generated from a conference. It refers to the notes
736
+ # generated from Take Notes with Gemini during the conference.
737
+ class SmartNote
738
+ include Google::Apis::Core::Hashable
739
+
740
+ # Google Docs location where the transcript file is saved.
741
+ # Corresponds to the JSON property `docsDestination`
742
+ # @return [Google::Apis::MeetV2::DocsDestination]
743
+ attr_accessor :docs_destination
744
+
745
+ # Output only. Timestamp when the smart notes stopped.
746
+ # Corresponds to the JSON property `endTime`
747
+ # @return [String]
748
+ attr_accessor :end_time
749
+
750
+ # Output only. Identifier. Resource name of the smart notes. Format: `
751
+ # conferenceRecords/`conference_record`/smartNotes/`smart_note``, where ``
752
+ # smart_note`` is a 1:1 mapping to each unique smart notes session of the
753
+ # conference.
754
+ # Corresponds to the JSON property `name`
755
+ # @return [String]
756
+ attr_accessor :name
757
+
758
+ # Output only. Timestamp when the smart notes started.
759
+ # Corresponds to the JSON property `startTime`
760
+ # @return [String]
761
+ attr_accessor :start_time
762
+
763
+ # Output only. Current state.
764
+ # Corresponds to the JSON property `state`
765
+ # @return [String]
766
+ attr_accessor :state
767
+
768
+ def initialize(**args)
769
+ update!(**args)
770
+ end
771
+
772
+ # Update properties of this object
773
+ def update!(**args)
774
+ @docs_destination = args[:docs_destination] if args.key?(:docs_destination)
775
+ @end_time = args[:end_time] if args.key?(:end_time)
776
+ @name = args[:name] if args.key?(:name)
777
+ @start_time = args[:start_time] if args.key?(:start_time)
778
+ @state = args[:state] if args.key?(:state)
779
+ end
780
+ end
781
+
639
782
  # Configuration related to smart notes in a meeting space. For more information
640
783
  # about smart notes, see ["Take notes for me" in Google Meet](https://support.
641
784
  # google.com/meet/answer/14754931).
@@ -674,6 +817,12 @@ module Google
674
817
  # @return [Google::Apis::MeetV2::SpaceConfig]
675
818
  attr_accessor :config
676
819
 
820
+ # Output only. The SIP based access methods that can be used to join the
821
+ # conference. Can be empty.
822
+ # Corresponds to the JSON property `gatewaySipAccess`
823
+ # @return [Array<Google::Apis::MeetV2::GatewaySipAccess>]
824
+ attr_accessor :gateway_sip_access
825
+
677
826
  # Output only. Type friendly unique string used to join the meeting. Format: `[a-
678
827
  # z]+-[a-z]+-[a-z]+`. For example, `abc-mnop-xyz`. The maximum length is 128
679
828
  # characters. Can only be used as an alias of the space name to get the space.
@@ -697,6 +846,12 @@ module Google
697
846
  # @return [String]
698
847
  attr_accessor :name
699
848
 
849
+ # Output only. All regional phone access methods for this meeting space. Can be
850
+ # empty.
851
+ # Corresponds to the JSON property `phoneAccess`
852
+ # @return [Array<Google::Apis::MeetV2::PhoneAccess>]
853
+ attr_accessor :phone_access
854
+
700
855
  def initialize(**args)
701
856
  update!(**args)
702
857
  end
@@ -705,9 +860,11 @@ module Google
705
860
  def update!(**args)
706
861
  @active_conference = args[:active_conference] if args.key?(:active_conference)
707
862
  @config = args[:config] if args.key?(:config)
863
+ @gateway_sip_access = args[:gateway_sip_access] if args.key?(:gateway_sip_access)
708
864
  @meeting_code = args[:meeting_code] if args.key?(:meeting_code)
709
865
  @meeting_uri = args[:meeting_uri] if args.key?(:meeting_uri)
710
866
  @name = args[:name] if args.key?(:name)
867
+ @phone_access = args[:phone_access] if args.key?(:phone_access)
711
868
  end
712
869
  end
713
870
 
@@ -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.10.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250421"
25
+ REVISION = "20260329"
26
26
  end
27
27
  end
28
28
  end
@@ -70,6 +70,12 @@ module Google
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
+ class GatewaySipAccess
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
73
79
  class ListConferenceRecordsResponse
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
@@ -94,6 +100,12 @@ module Google
94
100
  include Google::Apis::Core::JsonObjectSupport
95
101
  end
96
102
 
103
+ class ListSmartNotesResponse
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
97
109
  class ListTranscriptEntriesResponse
98
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
111
 
@@ -124,6 +136,12 @@ module Google
124
136
  include Google::Apis::Core::JsonObjectSupport
125
137
  end
126
138
 
139
+ class PhoneAccess
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
127
145
  class PhoneUser
128
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
147
 
@@ -148,6 +166,12 @@ module Google
148
166
  include Google::Apis::Core::JsonObjectSupport
149
167
  end
150
168
 
169
+ class SmartNote
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
151
175
  class SmartNotesConfig
152
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
177
 
@@ -249,6 +273,14 @@ module Google
249
273
  end
250
274
  end
251
275
 
276
+ class GatewaySipAccess
277
+ # @private
278
+ class Representation < Google::Apis::Core::JsonRepresentation
279
+ property :sip_access_code, as: 'sipAccessCode'
280
+ property :uri, as: 'uri'
281
+ end
282
+ end
283
+
252
284
  class ListConferenceRecordsResponse
253
285
  # @private
254
286
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -286,6 +318,15 @@ module Google
286
318
  end
287
319
  end
288
320
 
321
+ class ListSmartNotesResponse
322
+ # @private
323
+ class Representation < Google::Apis::Core::JsonRepresentation
324
+ property :next_page_token, as: 'nextPageToken'
325
+ collection :smart_notes, as: 'smartNotes', class: Google::Apis::MeetV2::SmartNote, decorator: Google::Apis::MeetV2::SmartNote::Representation
326
+
327
+ end
328
+ end
329
+
289
330
  class ListTranscriptEntriesResponse
290
331
  # @private
291
332
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -338,6 +379,16 @@ module Google
338
379
  end
339
380
  end
340
381
 
382
+ class PhoneAccess
383
+ # @private
384
+ class Representation < Google::Apis::Core::JsonRepresentation
385
+ property :language_code, as: 'languageCode'
386
+ property :phone_number, as: 'phoneNumber'
387
+ property :pin, as: 'pin'
388
+ property :region_code, as: 'regionCode'
389
+ end
390
+ end
391
+
341
392
  class PhoneUser
342
393
  # @private
343
394
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -372,6 +423,18 @@ module Google
372
423
  end
373
424
  end
374
425
 
426
+ class SmartNote
427
+ # @private
428
+ class Representation < Google::Apis::Core::JsonRepresentation
429
+ property :docs_destination, as: 'docsDestination', class: Google::Apis::MeetV2::DocsDestination, decorator: Google::Apis::MeetV2::DocsDestination::Representation
430
+
431
+ property :end_time, as: 'endTime'
432
+ property :name, as: 'name'
433
+ property :start_time, as: 'startTime'
434
+ property :state, as: 'state'
435
+ end
436
+ end
437
+
375
438
  class SmartNotesConfig
376
439
  # @private
377
440
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -386,9 +449,13 @@ module Google
386
449
 
387
450
  property :config, as: 'config', class: Google::Apis::MeetV2::SpaceConfig, decorator: Google::Apis::MeetV2::SpaceConfig::Representation
388
451
 
452
+ collection :gateway_sip_access, as: 'gatewaySipAccess', class: Google::Apis::MeetV2::GatewaySipAccess, decorator: Google::Apis::MeetV2::GatewaySipAccess::Representation
453
+
389
454
  property :meeting_code, as: 'meetingCode'
390
455
  property :meeting_uri, as: 'meetingUri'
391
456
  property :name, as: 'name'
457
+ collection :phone_access, as: 'phoneAccess', class: Google::Apis::MeetV2::PhoneAccess, decorator: Google::Apis::MeetV2::PhoneAccess::Representation
458
+
392
459
  end
393
460
  end
394
461
 
@@ -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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-meet_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.12.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-meet_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-meet_v2/v0.10.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-meet_v2/v0.12.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
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: []