github.com/cilium/cilium@v1.16.2/api/v1/models/configuration_map.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 // Copyright Authors of Cilium 4 // SPDX-License-Identifier: Apache-2.0 5 6 package models 7 8 // This file was generated by the swagger tool. 9 // Editing this file might prove futile when you re-run the swagger generate command 10 11 import ( 12 "context" 13 14 "github.com/go-openapi/strfmt" 15 ) 16 17 // ConfigurationMap Map of configuration key/value pairs. 18 // 19 // swagger:model ConfigurationMap 20 type ConfigurationMap map[string]string 21 22 // Validate validates this configuration map 23 func (m ConfigurationMap) Validate(formats strfmt.Registry) error { 24 return nil 25 } 26 27 // ContextValidate validates this configuration map based on context it is used 28 func (m ConfigurationMap) ContextValidate(ctx context.Context, formats strfmt.Registry) error { 29 return nil 30 }