swagger; enable request/response

This commit is contained in:
Michael Quigley 2022-07-25 16:42:06 -04:00
parent efdf5b5293
commit 754674d8f8
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
5 changed files with 147 additions and 5 deletions

View File

@ -17,8 +17,8 @@ import (
// swagger:model accountResponse
type AccountResponse struct {
// api token
APIToken string `json:"apiToken,omitempty"`
// token
Token string `json:"token,omitempty"`
}
// Validate validates this account response

View 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
}

View 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
}

View File

@ -97,7 +97,23 @@ func init() {
"accountResponse": {
"type": "object",
"properties": {
"apiToken": {
"token": {
"type": "string"
}
}
},
"enableRequest": {
"type": "object",
"properties": {
"token": {
"type": "string"
}
}
},
"enableResponse": {
"type": "object",
"properties": {
"identity": {
"type": "string"
}
}
@ -192,7 +208,23 @@ func init() {
"accountResponse": {
"type": "object",
"properties": {
"apiToken": {
"token": {
"type": "string"
}
}
},
"enableRequest": {
"type": "object",
"properties": {
"token": {
"type": "string"
}
}
},
"enableResponse": {
"type": "object",
"properties": {
"identity": {
"type": "string"
}
}

View File

@ -50,7 +50,17 @@ definitions:
accountResponse:
type: object
properties:
apiToken:
token:
type: string
enableRequest:
type: object
properties:
token:
type: string
enableResponse:
type: object
properties:
identity:
type: string
produces: