ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.406.0

This commit is contained in:
speakeasybot
2024-10-03 00:10:47 +00:00
parent 636840a553
commit dc815780a6
128 changed files with 5089 additions and 2452 deletions

149
server.go
View File

@@ -10,6 +10,7 @@ import (
"github.com/LukeHagar/plexgo/internal/utils"
"github.com/LukeHagar/plexgo/models/operations"
"github.com/LukeHagar/plexgo/models/sdkerrors"
"github.com/LukeHagar/plexgo/retry"
"github.com/cenkalti/backoff/v4"
"io"
"net/http"
@@ -82,6 +83,16 @@ func (s *Server) GetServerCapabilities(ctx context.Context, opts ...operations.O
if retryConfig == nil {
if globalRetryConfig != nil {
retryConfig = globalRetryConfig
} else {
retryConfig = &retry.Config{
Strategy: "backoff", Backoff: &retry.BackoffStrategy{
InitialInterval: 500,
MaxInterval: 60000,
Exponent: 1.5,
MaxElapsedTime: 3600000,
},
RetryConnectionErrors: true,
}
}
}
@@ -90,11 +101,7 @@ func (s *Server) GetServerCapabilities(ctx context.Context, opts ...operations.O
httpRes, err = utils.Retry(ctx, utils.Retries{
Config: retryConfig,
StatusCodes: []string{
"429",
"500",
"502",
"503",
"504",
"5XX",
},
}, func() (*http.Response, error) {
if req.Body != nil {
@@ -324,6 +331,16 @@ func (s *Server) GetServerPreferences(ctx context.Context, opts ...operations.Op
if retryConfig == nil {
if globalRetryConfig != nil {
retryConfig = globalRetryConfig
} else {
retryConfig = &retry.Config{
Strategy: "backoff", Backoff: &retry.BackoffStrategy{
InitialInterval: 500,
MaxInterval: 60000,
Exponent: 1.5,
MaxElapsedTime: 3600000,
},
RetryConnectionErrors: true,
}
}
}
@@ -332,11 +349,7 @@ func (s *Server) GetServerPreferences(ctx context.Context, opts ...operations.Op
httpRes, err = utils.Retry(ctx, utils.Retries{
Config: retryConfig,
StatusCodes: []string{
"429",
"500",
"502",
"503",
"504",
"5XX",
},
}, func() (*http.Response, error) {
if req.Body != nil {
@@ -566,6 +579,16 @@ func (s *Server) GetAvailableClients(ctx context.Context, opts ...operations.Opt
if retryConfig == nil {
if globalRetryConfig != nil {
retryConfig = globalRetryConfig
} else {
retryConfig = &retry.Config{
Strategy: "backoff", Backoff: &retry.BackoffStrategy{
InitialInterval: 500,
MaxInterval: 60000,
Exponent: 1.5,
MaxElapsedTime: 3600000,
},
RetryConnectionErrors: true,
}
}
}
@@ -574,11 +597,7 @@ func (s *Server) GetAvailableClients(ctx context.Context, opts ...operations.Opt
httpRes, err = utils.Retry(ctx, utils.Retries{
Config: retryConfig,
StatusCodes: []string{
"429",
"500",
"502",
"503",
"504",
"5XX",
},
}, func() (*http.Response, error) {
if req.Body != nil {
@@ -808,6 +827,16 @@ func (s *Server) GetDevices(ctx context.Context, opts ...operations.Option) (*op
if retryConfig == nil {
if globalRetryConfig != nil {
retryConfig = globalRetryConfig
} else {
retryConfig = &retry.Config{
Strategy: "backoff", Backoff: &retry.BackoffStrategy{
InitialInterval: 500,
MaxInterval: 60000,
Exponent: 1.5,
MaxElapsedTime: 3600000,
},
RetryConnectionErrors: true,
}
}
}
@@ -816,11 +845,7 @@ func (s *Server) GetDevices(ctx context.Context, opts ...operations.Option) (*op
httpRes, err = utils.Retry(ctx, utils.Retries{
Config: retryConfig,
StatusCodes: []string{
"429",
"500",
"502",
"503",
"504",
"5XX",
},
}, func() (*http.Response, error) {
if req.Body != nil {
@@ -1046,6 +1071,16 @@ func (s *Server) GetServerIdentity(ctx context.Context, opts ...operations.Optio
if retryConfig == nil {
if globalRetryConfig != nil {
retryConfig = globalRetryConfig
} else {
retryConfig = &retry.Config{
Strategy: "backoff", Backoff: &retry.BackoffStrategy{
InitialInterval: 500,
MaxInterval: 60000,
Exponent: 1.5,
MaxElapsedTime: 3600000,
},
RetryConnectionErrors: true,
}
}
}
@@ -1054,11 +1089,7 @@ func (s *Server) GetServerIdentity(ctx context.Context, opts ...operations.Optio
httpRes, err = utils.Retry(ctx, utils.Retries{
Config: retryConfig,
StatusCodes: []string{
"429",
"500",
"502",
"503",
"504",
"5XX",
},
}, func() (*http.Response, error) {
if req.Body != nil {
@@ -1265,6 +1296,16 @@ func (s *Server) GetMyPlexAccount(ctx context.Context, opts ...operations.Option
if retryConfig == nil {
if globalRetryConfig != nil {
retryConfig = globalRetryConfig
} else {
retryConfig = &retry.Config{
Strategy: "backoff", Backoff: &retry.BackoffStrategy{
InitialInterval: 500,
MaxInterval: 60000,
Exponent: 1.5,
MaxElapsedTime: 3600000,
},
RetryConnectionErrors: true,
}
}
}
@@ -1273,11 +1314,7 @@ func (s *Server) GetMyPlexAccount(ctx context.Context, opts ...operations.Option
httpRes, err = utils.Retry(ctx, utils.Retries{
Config: retryConfig,
StatusCodes: []string{
"429",
"500",
"502",
"503",
"504",
"5XX",
},
}, func() (*http.Response, error) {
if req.Body != nil {
@@ -1511,6 +1548,16 @@ func (s *Server) GetResizedPhoto(ctx context.Context, request operations.GetResi
if retryConfig == nil {
if globalRetryConfig != nil {
retryConfig = globalRetryConfig
} else {
retryConfig = &retry.Config{
Strategy: "backoff", Backoff: &retry.BackoffStrategy{
InitialInterval: 500,
MaxInterval: 60000,
Exponent: 1.5,
MaxElapsedTime: 3600000,
},
RetryConnectionErrors: true,
}
}
}
@@ -1519,11 +1566,7 @@ func (s *Server) GetResizedPhoto(ctx context.Context, request operations.GetResi
httpRes, err = utils.Retry(ctx, utils.Retries{
Config: retryConfig,
StatusCodes: []string{
"429",
"500",
"502",
"503",
"504",
"5XX",
},
}, func() (*http.Response, error) {
if req.Body != nil {
@@ -1727,9 +1770,7 @@ func (s *Server) GetMediaProviders(ctx context.Context, xPlexToken string, opts
req.Header.Set("Accept", "application/json")
req.Header.Set("User-Agent", s.sdkConfiguration.UserAgent)
if err := utils.PopulateQueryParams(ctx, req, request, nil); err != nil {
return nil, fmt.Errorf("error populating query params: %w", err)
}
utils.PopulateHeaders(ctx, req, request, nil)
if err := utils.PopulateSecurity(ctx, req, s.sdkConfiguration.Security); err != nil {
return nil, err
@@ -1740,6 +1781,16 @@ func (s *Server) GetMediaProviders(ctx context.Context, xPlexToken string, opts
if retryConfig == nil {
if globalRetryConfig != nil {
retryConfig = globalRetryConfig
} else {
retryConfig = &retry.Config{
Strategy: "backoff", Backoff: &retry.BackoffStrategy{
InitialInterval: 500,
MaxInterval: 60000,
Exponent: 1.5,
MaxElapsedTime: 3600000,
},
RetryConnectionErrors: true,
}
}
}
@@ -1748,11 +1799,7 @@ func (s *Server) GetMediaProviders(ctx context.Context, xPlexToken string, opts
httpRes, err = utils.Retry(ctx, utils.Retries{
Config: retryConfig,
StatusCodes: []string{
"429",
"500",
"502",
"503",
"504",
"5XX",
},
}, func() (*http.Response, error) {
if req.Body != nil {
@@ -1982,6 +2029,16 @@ func (s *Server) GetServerList(ctx context.Context, opts ...operations.Option) (
if retryConfig == nil {
if globalRetryConfig != nil {
retryConfig = globalRetryConfig
} else {
retryConfig = &retry.Config{
Strategy: "backoff", Backoff: &retry.BackoffStrategy{
InitialInterval: 500,
MaxInterval: 60000,
Exponent: 1.5,
MaxElapsedTime: 3600000,
},
RetryConnectionErrors: true,
}
}
}
@@ -1990,11 +2047,7 @@ func (s *Server) GetServerList(ctx context.Context, opts ...operations.Option) (
httpRes, err = utils.Retry(ctx, utils.Retries{
Config: retryConfig,
StatusCodes: []string{
"429",
"500",
"502",
"503",
"504",
"5XX",
},
}, func() (*http.Response, error) {
if req.Body != nil {