ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.401.2

This commit is contained in:
speakeasybot
2024-09-21 00:09:03 +00:00
parent 4b6c8310d2
commit 7e98fc9803
110 changed files with 956 additions and 578 deletions

View File

@@ -433,15 +433,16 @@ module PlexRubySDK
end
sig { params(path: ::String, force: ::PlexRubySDK::Operations::QueryParamForce).returns(::PlexRubySDK::Operations::UploadPlaylistResponse) }
def upload_playlist(path, force)
sig { params(path: ::String, force: ::PlexRubySDK::Operations::QueryParamForce, section_id: ::Integer).returns(::PlexRubySDK::Operations::UploadPlaylistResponse) }
def upload_playlist(path, force, section_id)
# upload_playlist - Upload Playlist
# Imports m3u playlists by passing a path on the server to scan for m3u-formatted playlist files, or a path to a single playlist file.
#
request = ::PlexRubySDK::Operations::UploadPlaylistRequest.new(
path: path,
force: force
force: force,
section_id: section_id
)
url, params = @sdk_configuration.get_server_details
base_url = Utils.template_url(url, params)