plexruby
🏗 Welcome to your new SDK! 🏗
It has been generated successfully based on your OpenAPI spec. However, it is not yet ready for production use. Here are some next steps:
- 🛠 Make your SDK feel handcrafted by customizing it
- ♻️ Refine your SDK quickly by iterating locally with the Speakeasy CLI
- 🎁 Publish your SDK to package managers by configuring automatic publishing
- ✨ When ready to productionize, delete this section from the README
SDK Installation
gem install specific_install
gem specific_install https://github.com/LukeHagar/plexruby
SDK Example Usage
Example
require_relative plexruby
s = ::OpenApiSDK::PlexAPI.new
s.config_security(
security=::OpenApiSDK::Shared::Security.new(
access_token="<YOUR_API_KEY_HERE>",
)
)
res = s.server.get_server_capabilities()
if ! res.two_hundred_application_json_object.nil?
# handle response
end
Available Resources and Operations
Server
- get_server_capabilities - Server Capabilities
- get_server_preferences - Get Server Preferences
- get_available_clients - Get Available Clients
- get_devices - Get Devices
- get_server_identity - Get Server Identity
- get_my_plex_account - Get MyPlex Account
- get_resized_photo - Get a Resized Photo
- get_server_list - Get Server List
Media
- mark_played - Mark Media Played
- mark_unplayed - Mark Media Unplayed
- update_play_progress - Update Media Play Progress
Activities
- get_server_activities - Get Server Activities
- cancel_server_activities - Cancel Server Activities
Butler
- get_butler_tasks - Get Butler tasks
- start_all_tasks - Start all Butler tasks
- stop_all_tasks - Stop all Butler tasks
- start_task - Start a single Butler task
- stop_task - Stop a single Butler task
Hubs
- get_global_hubs - Get Global Hubs
- get_library_hubs - Get library specific hubs
Search
- perform_search - Perform a search
- perform_voice_search - Perform a voice search
- get_search_results - Get Search Results
Library
- get_file_hash - Get Hash Value
- get_recently_added - Get Recently Added
- get_libraries - Get All Libraries
- get_library - Get Library Details
- delete_library - Delete Library Section
- get_library_items - Get Library Items
- refresh_library - Refresh Library
- search_library - Search Library
- get_metadata - Get Items Metadata
- get_metadata_children - Get Items Children
- get_on_deck - Get On Deck
Log
- log_line - Logging a single line message.
- log_multi_line - Logging a multi-line message
- enable_paper_trail - Enabling Papertrail
Plex
Playlists
- create_playlist - Create a Playlist
- get_playlists - Get All Playlists
- get_playlist - Retrieve Playlist
- delete_playlist - Deletes a Playlist
- update_playlist - Update a Playlist
- get_playlist_contents - Retrieve Playlist Contents
- clear_playlist_contents - Delete Playlist Contents
- add_playlist_contents - Adding to a Playlist
- upload_playlist - Upload Playlist
Security
- get_transient_token - Get a Transient Token.
- get_source_connection_information - Get Source Connection Information
Sessions
- get_sessions - Get Active Sessions
- get_session_history - Get Session History
- get_transcode_sessions - Get Transcode Sessions
- stop_transcode_session - Stop a Transcode Session
Updater
- get_update_status - Querying status of updates
- check_for_updates - Checking for updates
- apply_updates - Apply Updates
Video
- start_universal_transcode - Start Universal Transcode
- get_timeline - Get the timeline for a media item
Server Selection
Server Selection
Select Server by Index
You can override the default server globally by passing a server index to the server_idx: int optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
| # | Server | Variables |
|---|---|---|
| 0 | {protocol}://{ip}:{port} |
protocol (default is http), ip (default is 10.10.10.47), port (default is 32400) |
Variables
Some of the server options above contain variables. If you want to set the values of those variables, the following optional parameters are available when initializing the SDK client instance:
protocol: ::OpenApiSDK::ServerVariables::ServerProtocolip: ::Stringport: ::String
Override Server URL Per-Client
The default server can also be overridden globally by passing a URL to the server_url: str optional parameter when initializing the SDK client instance. For example:
Override Server URL Per-Operation
The server URL can also be overridden on a per-operation basis, provided a server list was specified for the operation. For example:
require_relative plexruby
s = ::OpenApiSDK::PlexAPI.new
s.config_security(
security=::OpenApiSDK::Shared::Security.new(
access_token="<YOUR_API_KEY_HERE>",
)
)
res = s.plex.get_pin(server_url="https://plex.tv/api/v2", x_plex_client_identifier="string", strong=false)
if ! res.two_hundred_application_json_object.nil?
# handle response
end
Development
Maturity
This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.
Contributions
While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!