// Code generated by go-swagger; DO NOT EDIT. // This file is part of MinIO Console Server // Copyright (c) 2020 MinIO, Inc. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . // 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 ( "github.com/go-openapi/errors" "github.com/go-openapi/strfmt" "github.com/go-openapi/swag" ) // EncryptionConfiguration encryption configuration // // swagger:model encryptionConfiguration type EncryptionConfiguration struct { // aws Aws *AwsConfiguration `json:"aws,omitempty"` // client Client *KeyPairConfiguration `json:"client,omitempty"` // gemalto Gemalto *GemaltoConfiguration `json:"gemalto,omitempty"` // image Image string `json:"image,omitempty"` // server Server *KeyPairConfiguration `json:"server,omitempty"` // vault Vault *VaultConfiguration `json:"vault,omitempty"` } // Validate validates this encryption configuration func (m *EncryptionConfiguration) Validate(formats strfmt.Registry) error { var res []error if err := m.validateAws(formats); err != nil { res = append(res, err) } if err := m.validateClient(formats); err != nil { res = append(res, err) } if err := m.validateGemalto(formats); err != nil { res = append(res, err) } if err := m.validateServer(formats); err != nil { res = append(res, err) } if err := m.validateVault(formats); err != nil { res = append(res, err) } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil } func (m *EncryptionConfiguration) validateAws(formats strfmt.Registry) error { if swag.IsZero(m.Aws) { // not required return nil } if m.Aws != nil { if err := m.Aws.Validate(formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("aws") } return err } } return nil } func (m *EncryptionConfiguration) validateClient(formats strfmt.Registry) error { if swag.IsZero(m.Client) { // not required return nil } if m.Client != nil { if err := m.Client.Validate(formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("client") } return err } } return nil } func (m *EncryptionConfiguration) validateGemalto(formats strfmt.Registry) error { if swag.IsZero(m.Gemalto) { // not required return nil } if m.Gemalto != nil { if err := m.Gemalto.Validate(formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("gemalto") } return err } } return nil } func (m *EncryptionConfiguration) validateServer(formats strfmt.Registry) error { if swag.IsZero(m.Server) { // not required return nil } if m.Server != nil { if err := m.Server.Validate(formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("server") } return err } } return nil } func (m *EncryptionConfiguration) validateVault(formats strfmt.Registry) error { if swag.IsZero(m.Vault) { // not required return nil } if m.Vault != nil { if err := m.Vault.Validate(formats); err != nil { if ve, ok := err.(*errors.Validation); ok { return ve.ValidateName("vault") } return err } } return nil } // MarshalBinary interface implementation func (m *EncryptionConfiguration) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *EncryptionConfiguration) UnmarshalBinary(b []byte) error { var res EncryptionConfiguration if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }