mirror of
https://github.com/openziti/zrok.git
synced 2025-06-25 04:02:15 +02:00
swagger; enable request/response
This commit is contained in:
parent
efdf5b5293
commit
754674d8f8
@ -17,8 +17,8 @@ import (
|
|||||||
// swagger:model accountResponse
|
// swagger:model accountResponse
|
||||||
type AccountResponse struct {
|
type AccountResponse struct {
|
||||||
|
|
||||||
// api token
|
// token
|
||||||
APIToken string `json:"apiToken,omitempty"`
|
Token string `json:"token,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate validates this account response
|
// Validate validates this account response
|
||||||
|
50
rest_model/enable_request.go
Normal file
50
rest_model/enable_request.go
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
// Code generated by go-swagger; DO NOT EDIT.
|
||||||
|
|
||||||
|
package rest_model
|
||||||
|
|
||||||
|
// This file was generated by the swagger tool.
|
||||||
|
// Editing this file might prove futile when you re-run the swagger generate command
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"github.com/go-openapi/strfmt"
|
||||||
|
"github.com/go-openapi/swag"
|
||||||
|
)
|
||||||
|
|
||||||
|
// EnableRequest enable request
|
||||||
|
//
|
||||||
|
// swagger:model enableRequest
|
||||||
|
type EnableRequest struct {
|
||||||
|
|
||||||
|
// token
|
||||||
|
Token string `json:"token,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate validates this enable request
|
||||||
|
func (m *EnableRequest) Validate(formats strfmt.Registry) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ContextValidate validates this enable request based on context it is used
|
||||||
|
func (m *EnableRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// MarshalBinary interface implementation
|
||||||
|
func (m *EnableRequest) MarshalBinary() ([]byte, error) {
|
||||||
|
if m == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
return swag.WriteJSON(m)
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnmarshalBinary interface implementation
|
||||||
|
func (m *EnableRequest) UnmarshalBinary(b []byte) error {
|
||||||
|
var res EnableRequest
|
||||||
|
if err := swag.ReadJSON(b, &res); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
*m = res
|
||||||
|
return nil
|
||||||
|
}
|
50
rest_model/enable_response.go
Normal file
50
rest_model/enable_response.go
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
// Code generated by go-swagger; DO NOT EDIT.
|
||||||
|
|
||||||
|
package rest_model
|
||||||
|
|
||||||
|
// This file was generated by the swagger tool.
|
||||||
|
// Editing this file might prove futile when you re-run the swagger generate command
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"github.com/go-openapi/strfmt"
|
||||||
|
"github.com/go-openapi/swag"
|
||||||
|
)
|
||||||
|
|
||||||
|
// EnableResponse enable response
|
||||||
|
//
|
||||||
|
// swagger:model enableResponse
|
||||||
|
type EnableResponse struct {
|
||||||
|
|
||||||
|
// identity
|
||||||
|
Identity string `json:"identity,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Validate validates this enable response
|
||||||
|
func (m *EnableResponse) Validate(formats strfmt.Registry) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ContextValidate validates this enable response based on context it is used
|
||||||
|
func (m *EnableResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// MarshalBinary interface implementation
|
||||||
|
func (m *EnableResponse) MarshalBinary() ([]byte, error) {
|
||||||
|
if m == nil {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
return swag.WriteJSON(m)
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnmarshalBinary interface implementation
|
||||||
|
func (m *EnableResponse) UnmarshalBinary(b []byte) error {
|
||||||
|
var res EnableResponse
|
||||||
|
if err := swag.ReadJSON(b, &res); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
*m = res
|
||||||
|
return nil
|
||||||
|
}
|
@ -97,7 +97,23 @@ func init() {
|
|||||||
"accountResponse": {
|
"accountResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"apiToken": {
|
"token": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"enableRequest": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"token": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"enableResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"identity": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -192,7 +208,23 @@ func init() {
|
|||||||
"accountResponse": {
|
"accountResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"apiToken": {
|
"token": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"enableRequest": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"token": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"enableResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"identity": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -50,7 +50,17 @@ definitions:
|
|||||||
accountResponse:
|
accountResponse:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
apiToken:
|
token:
|
||||||
|
type: string
|
||||||
|
enableRequest:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
token:
|
||||||
|
type: string
|
||||||
|
enableResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
identity:
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
produces:
|
produces:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user