2022-07-22 16:52:36 +02:00
// Code generated by go-swagger; DO NOT EDIT.
package metadata
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"fmt"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
)
// New creates a new metadata API client.
func New ( transport runtime . ClientTransport , formats strfmt . Registry ) ClientService {
return & Client { transport : transport , formats : formats }
}
/ *
Client for metadata API
* /
type Client struct {
transport runtime . ClientTransport
formats strfmt . Registry
}
// ClientOption is the option for Client methods
type ClientOption func ( * runtime . ClientOperation )
// ClientService is the interface for Client methods
type ClientService interface {
2023-01-31 19:44:03 +01:00
Configuration ( params * ConfigurationParams , opts ... ClientOption ) ( * ConfigurationOK , error )
2023-05-12 17:57:34 +02:00
GetAccountDetail ( params * GetAccountDetailParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetAccountDetailOK , error )
2023-05-09 20:16:01 +02:00
GetAccountMetrics ( params * GetAccountMetricsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetAccountMetricsOK , error )
2022-12-22 19:51:29 +01:00
GetEnvironmentDetail ( params * GetEnvironmentDetailParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetEnvironmentDetailOK , error )
2023-05-09 20:16:01 +02:00
GetEnvironmentMetrics ( params * GetEnvironmentMetricsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetEnvironmentMetricsOK , error )
2023-05-17 19:53:18 +02:00
GetFrontendDetail ( params * GetFrontendDetailParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetFrontendDetailOK , error )
2023-01-04 19:43:37 +01:00
GetShareDetail ( params * GetShareDetailParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetShareDetailOK , error )
2022-12-22 21:09:37 +01:00
2023-05-09 20:16:01 +02:00
GetShareMetrics ( params * GetShareMetricsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetShareMetricsOK , error )
2022-08-03 20:58:11 +02:00
Overview ( params * OverviewParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * OverviewOK , error )
2022-08-03 20:36:40 +02:00
2022-07-25 17:51:23 +02:00
Version ( params * VersionParams , opts ... ClientOption ) ( * VersionOK , error )
2022-07-22 16:52:36 +02:00
SetTransport ( transport runtime . ClientTransport )
}
2023-01-31 19:44:03 +01:00
/ *
Configuration configuration API
* /
func ( a * Client ) Configuration ( params * ConfigurationParams , opts ... ClientOption ) ( * ConfigurationOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewConfigurationParams ( )
}
op := & runtime . ClientOperation {
ID : "configuration" ,
Method : "GET" ,
PathPattern : "/configuration" ,
ProducesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
ConsumesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & ConfigurationReader { formats : a . formats } ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * ConfigurationOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for configuration: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
2023-05-12 17:57:34 +02:00
/ *
GetAccountDetail get account detail API
* /
func ( a * Client ) GetAccountDetail ( params * GetAccountDetailParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetAccountDetailOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetAccountDetailParams ( )
}
op := & runtime . ClientOperation {
ID : "getAccountDetail" ,
Method : "GET" ,
PathPattern : "/detail/account" ,
ProducesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
ConsumesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & GetAccountDetailReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * GetAccountDetailOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for getAccountDetail: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
2023-05-09 20:16:01 +02:00
/ *
GetAccountMetrics get account metrics API
* /
func ( a * Client ) GetAccountMetrics ( params * GetAccountMetricsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetAccountMetricsOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetAccountMetricsParams ( )
}
op := & runtime . ClientOperation {
ID : "getAccountMetrics" ,
Method : "GET" ,
PathPattern : "/metrics/account" ,
ProducesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
ConsumesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & GetAccountMetricsReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * GetAccountMetricsOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for getAccountMetrics: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
2022-12-22 19:51:29 +01:00
/ *
GetEnvironmentDetail get environment detail API
* /
func ( a * Client ) GetEnvironmentDetail ( params * GetEnvironmentDetailParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetEnvironmentDetailOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetEnvironmentDetailParams ( )
}
op := & runtime . ClientOperation {
ID : "getEnvironmentDetail" ,
Method : "GET" ,
2022-12-22 20:56:19 +01:00
PathPattern : "/detail/environment/{envZId}" ,
2022-12-22 19:51:29 +01:00
ProducesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
ConsumesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & GetEnvironmentDetailReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * GetEnvironmentDetailOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for getEnvironmentDetail: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
2023-05-09 20:16:01 +02:00
/ *
GetEnvironmentMetrics get environment metrics API
* /
func ( a * Client ) GetEnvironmentMetrics ( params * GetEnvironmentMetricsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetEnvironmentMetricsOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetEnvironmentMetricsParams ( )
}
op := & runtime . ClientOperation {
ID : "getEnvironmentMetrics" ,
Method : "GET" ,
PathPattern : "/metrics/environment/{envId}" ,
ProducesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
ConsumesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & GetEnvironmentMetricsReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * GetEnvironmentMetricsOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for getEnvironmentMetrics: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
2023-05-17 19:53:18 +02:00
/ *
GetFrontendDetail get frontend detail API
* /
func ( a * Client ) GetFrontendDetail ( params * GetFrontendDetailParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetFrontendDetailOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetFrontendDetailParams ( )
}
op := & runtime . ClientOperation {
ID : "getFrontendDetail" ,
Method : "GET" ,
PathPattern : "/detail/frontend/{feId}" ,
ProducesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
ConsumesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & GetFrontendDetailReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * GetFrontendDetailOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for getFrontendDetail: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
2022-12-22 21:09:37 +01:00
/ *
2023-01-04 19:43:37 +01:00
GetShareDetail get share detail API
2022-12-22 21:09:37 +01:00
* /
2023-01-04 19:43:37 +01:00
func ( a * Client ) GetShareDetail ( params * GetShareDetailParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetShareDetailOK , error ) {
2022-12-22 21:09:37 +01:00
// TODO: Validate the params before sending
if params == nil {
2023-01-04 19:43:37 +01:00
params = NewGetShareDetailParams ( )
2022-12-22 21:09:37 +01:00
}
op := & runtime . ClientOperation {
2023-01-04 19:43:37 +01:00
ID : "getShareDetail" ,
2022-12-22 21:09:37 +01:00
Method : "GET" ,
2023-01-04 19:43:37 +01:00
PathPattern : "/detail/share/{shrToken}" ,
2022-12-22 21:09:37 +01:00
ProducesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
ConsumesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
2023-01-04 19:43:37 +01:00
Reader : & GetShareDetailReader { formats : a . formats } ,
2022-12-22 21:09:37 +01:00
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
2023-01-04 19:43:37 +01:00
success , ok := result . ( * GetShareDetailOK )
2022-12-22 21:09:37 +01:00
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
2023-01-04 19:43:37 +01:00
msg := fmt . Sprintf ( "unexpected success response for getShareDetail: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
2022-12-22 21:09:37 +01:00
panic ( msg )
}
2023-05-09 20:16:01 +02:00
/ *
GetShareMetrics get share metrics API
* /
func ( a * Client ) GetShareMetrics ( params * GetShareMetricsParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * GetShareMetricsOK , error ) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetShareMetricsParams ( )
}
op := & runtime . ClientOperation {
ID : "getShareMetrics" ,
Method : "GET" ,
PathPattern : "/metrics/share/{shrToken}" ,
ProducesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
ConsumesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & GetShareMetricsReader { formats : a . formats } ,
AuthInfo : authInfo ,
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * GetShareMetricsOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for getShareMetrics: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
2022-08-03 20:36:40 +02:00
/ *
2022-09-01 23:39:02 +02:00
Overview overview API
2022-08-03 20:36:40 +02:00
* /
2022-08-03 20:58:11 +02:00
func ( a * Client ) Overview ( params * OverviewParams , authInfo runtime . ClientAuthInfoWriter , opts ... ClientOption ) ( * OverviewOK , error ) {
2022-08-03 20:36:40 +02:00
// TODO: Validate the params before sending
if params == nil {
params = NewOverviewParams ( )
}
op := & runtime . ClientOperation {
ID : "overview" ,
Method : "GET" ,
PathPattern : "/overview" ,
ProducesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
ConsumesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
Schemes : [ ] string { "http" } ,
Params : params ,
Reader : & OverviewReader { formats : a . formats } ,
2022-08-03 20:58:11 +02:00
AuthInfo : authInfo ,
2022-08-03 20:36:40 +02:00
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
success , ok := result . ( * OverviewOK )
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
msg := fmt . Sprintf ( "unexpected success response for overview: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
panic ( msg )
}
2022-07-22 16:52:36 +02:00
/ *
2022-09-01 23:39:02 +02:00
Version version API
2022-07-22 16:52:36 +02:00
* /
2022-07-25 17:51:23 +02:00
func ( a * Client ) Version ( params * VersionParams , opts ... ClientOption ) ( * VersionOK , error ) {
2022-07-22 16:52:36 +02:00
// TODO: Validate the params before sending
if params == nil {
2022-07-25 17:51:23 +02:00
params = NewVersionParams ( )
2022-07-22 16:52:36 +02:00
}
op := & runtime . ClientOperation {
2022-07-25 17:51:23 +02:00
ID : "version" ,
2022-07-22 16:52:36 +02:00
Method : "GET" ,
2022-07-25 17:51:23 +02:00
PathPattern : "/version" ,
2022-07-22 17:45:37 +02:00
ProducesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
ConsumesMediaTypes : [ ] string { "application/zrok.v1+json" } ,
2022-07-22 16:52:36 +02:00
Schemes : [ ] string { "http" } ,
Params : params ,
2022-07-25 17:51:23 +02:00
Reader : & VersionReader { formats : a . formats } ,
2022-07-22 16:52:36 +02:00
Context : params . Context ,
Client : params . HTTPClient ,
}
for _ , opt := range opts {
opt ( op )
}
result , err := a . transport . Submit ( op )
if err != nil {
return nil , err
}
2022-07-25 17:51:23 +02:00
success , ok := result . ( * VersionOK )
2022-07-22 16:52:36 +02:00
if ok {
return success , nil
}
// unexpected success response
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
2022-07-25 17:51:23 +02:00
msg := fmt . Sprintf ( "unexpected success response for version: API contract not enforced by server. Client expected to get an error, but got: %T" , result )
2022-07-22 16:52:36 +02:00
panic ( msg )
}
// SetTransport changes the transport on the client
func ( a * Client ) SetTransport ( transport runtime . ClientTransport ) {
a . transport = transport
}