zrok/rest_server_zrok/operations/account/regenerate_token_urlbuilder.go

88 lines
2.3 KiB
Go
Raw Normal View History

2024-01-25 16:55:45 +01:00
// Code generated by go-swagger; DO NOT EDIT.
package account
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"errors"
"net/url"
golangswaggerpaths "path"
)
2024-02-20 17:40:11 +01:00
// RegenerateTokenURL generates an URL for the regenerate token operation
type RegenerateTokenURL struct {
2024-01-25 16:55:45 +01:00
_basePath string
}
// WithBasePath sets the base path for this url builder, only required when it's different from the
// base path specified in the swagger spec.
// When the value of the base path is an empty string
2024-02-20 17:40:11 +01:00
func (o *RegenerateTokenURL) WithBasePath(bp string) *RegenerateTokenURL {
2024-01-25 16:55:45 +01:00
o.SetBasePath(bp)
return o
}
// SetBasePath sets the base path for this url builder, only required when it's different from the
// base path specified in the swagger spec.
// When the value of the base path is an empty string
2024-02-20 17:40:11 +01:00
func (o *RegenerateTokenURL) SetBasePath(bp string) {
2024-01-25 16:55:45 +01:00
o._basePath = bp
}
// Build a url path and query string
2024-02-20 17:40:11 +01:00
func (o *RegenerateTokenURL) Build() (*url.URL, error) {
2024-01-25 16:55:45 +01:00
var _result url.URL
2024-02-20 17:40:11 +01:00
var _path = "/regenerateToken"
2024-01-25 16:55:45 +01:00
_basePath := o._basePath
if _basePath == "" {
_basePath = "/api/v1"
}
_result.Path = golangswaggerpaths.Join(_basePath, _path)
return &_result, nil
}
// Must is a helper function to panic when the url builder returns an error
2024-02-20 17:40:11 +01:00
func (o *RegenerateTokenURL) Must(u *url.URL, err error) *url.URL {
2024-01-25 16:55:45 +01:00
if err != nil {
panic(err)
}
if u == nil {
panic("url can't be nil")
}
return u
}
// String returns the string representation of the path with query string
2024-02-20 17:40:11 +01:00
func (o *RegenerateTokenURL) String() string {
2024-01-25 16:55:45 +01:00
return o.Must(o.Build()).String()
}
// BuildFull builds a full url with scheme, host, path and query string
2024-02-20 17:40:11 +01:00
func (o *RegenerateTokenURL) BuildFull(scheme, host string) (*url.URL, error) {
2024-01-25 16:55:45 +01:00
if scheme == "" {
2024-02-20 17:40:11 +01:00
return nil, errors.New("scheme is required for a full url on RegenerateTokenURL")
2024-01-25 16:55:45 +01:00
}
if host == "" {
2024-02-20 17:40:11 +01:00
return nil, errors.New("host is required for a full url on RegenerateTokenURL")
2024-01-25 16:55:45 +01:00
}
base, err := o.Build()
if err != nil {
return nil, err
}
base.Scheme = scheme
base.Host = host
return base, nil
}
// StringFull returns the string representation of a complete url
2024-02-20 17:40:11 +01:00
func (o *RegenerateTokenURL) StringFull(scheme, host string) string {
2024-01-25 16:55:45 +01:00
return o.Must(o.BuildFull(scheme, host)).String()
}