Documentation
      ¶
    
    
  
    
  
    Overview ¶
Package v0 implements the infra config with float64 values only.
Deprecated: v0 is functionally broken and should not be used except for compatibility with legacy systems. Use v1 instead.
This package is frozen and no new functionality will be added.
Package v0 implements the infra config with float64 values only.
Deprecated: v0 is functionally broken and should not be used except for compatibility with legacy systems. Use v1 instead.
This package is frozen and no new functionality will be added.
Index ¶
- type ConfigurationBeanV0deprecated
 - type InfraConfigMetaDataV0deprecated
 - type ProfileBeanV0deprecated
 - type ProfileResponseV0deprecated
 
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
        
          
            type ConfigurationBeanV0
            deprecated
            
          
  
    
  
      
      type ConfigurationBeanV0 struct {
	v1.ConfigurationBeanAbstract
	Value float64 `json:"value" validate:"required,gt=0"`
}
    Deprecated: ConfigurationBeanV0 is deprecated in favor of v1.ConfigurationBean
        
          
            type InfraConfigMetaDataV0
            deprecated
            
          
  
    
  
      
      type InfraConfigMetaDataV0 struct {
	DefaultConfigurations []ConfigurationBeanV0                  `json:"defaultConfigurations"`
	ConfigurationUnits    map[v1.ConfigKeyStr]map[string]v1.Unit `json:"configurationUnits"`
}
    Deprecated: InfraConfigMetaDataV0 is deprecated in favor of v1.InfraConfigMetaData
        
          
            type ProfileBeanV0
            deprecated
            
          
  
    
  
      
      type ProfileBeanV0 struct {
	v1.ProfileBeanAbstract
	Configurations []ConfigurationBeanV0 `json:"configurations" validate:"dive"`
}
    Deprecated: ProfileBeanV0 is deprecated in favor of v1.ProfileBeanDto
func (*ProfileBeanV0) GetBuildxDriverType ¶
func (profileBean *ProfileBeanV0) GetBuildxDriverType() v1.BuildxDriver
func (*ProfileBeanV0) GetDescription ¶
func (profileBean *ProfileBeanV0) GetDescription() string
func (*ProfileBeanV0) GetName ¶
func (profileBean *ProfileBeanV0) GetName() string
        
          
            type ProfileResponseV0
            deprecated
            
          
  
    
  
      
      type ProfileResponseV0 struct {
	Profile ProfileBeanV0 `json:"profile"`
	InfraConfigMetaDataV0
}
    Deprecated: ProfileResponseV0 is deprecated in favor of v1.ProfileResponse