Initial cloud-services repo - gateway service + pkg modules

This commit is contained in:
Chris Rai
2026-01-30 23:14:52 -05:00
commit fbb820d7b3
1037 changed files with 171318 additions and 0 deletions

View File

@@ -0,0 +1,125 @@
// Code generated by go-swagger; DO NOT EDIT.
package models
// 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/errors"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// CommonFileKeyResponse common file key response
//
// swagger:model common.FileKeyResponse
type CommonFileKeyResponse struct {
// auth
// Required: true
Auth *string `json:"auth"`
// error
Error string `json:"error,omitempty"`
// file id
// Required: true
FileID *string `json:"file_id"`
// key
// Required: true
Key *string `json:"key"`
// nonce
// Required: true
Nonce *string `json:"nonce"`
}
// Validate validates this common file key response
func (m *CommonFileKeyResponse) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateAuth(formats); err != nil {
res = append(res, err)
}
if err := m.validateFileID(formats); err != nil {
res = append(res, err)
}
if err := m.validateKey(formats); err != nil {
res = append(res, err)
}
if err := m.validateNonce(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *CommonFileKeyResponse) validateAuth(formats strfmt.Registry) error {
if err := validate.Required("auth", "body", m.Auth); err != nil {
return err
}
return nil
}
func (m *CommonFileKeyResponse) validateFileID(formats strfmt.Registry) error {
if err := validate.Required("file_id", "body", m.FileID); err != nil {
return err
}
return nil
}
func (m *CommonFileKeyResponse) validateKey(formats strfmt.Registry) error {
if err := validate.Required("key", "body", m.Key); err != nil {
return err
}
return nil
}
func (m *CommonFileKeyResponse) validateNonce(formats strfmt.Registry) error {
if err := validate.Required("nonce", "body", m.Nonce); err != nil {
return err
}
return nil
}
// ContextValidate validates this common file key response based on context it is used
func (m *CommonFileKeyResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *CommonFileKeyResponse) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *CommonFileKeyResponse) UnmarshalBinary(b []byte) error {
var res CommonFileKeyResponse
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}