@@ -354,6 +354,77 @@ def list_conference_record_recordings(parent, page_size: nil, page_token: nil, f
354354 execute_or_queue_command ( command , &block )
355355 end
356356
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+
357428 # Gets a transcript by transcript ID.
358429 # @param [String] name
359430 # Required. Resource name of the transcript.
0 commit comments