read_instance_mixin
            ReadInstancesMixin
¶
    
              Bases: BaseModel
This class defines the methods to read, validate and parse metadata definitions.
Source code in src/cloe_nessy/models/mixins/read_instance_mixin.py
                | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |  | 
            _replace_variables(yaml_str)
  
      staticmethod
  
¶
    Replace variable placeholders in a YAML string.
Replaces environment variables with the pattern {{env:var-name}}. Where
the var-name is the name of the environment variable.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| yaml_str | str | A string that can be parsed in YAML format. | required | 
Returns:
| Type | Description | 
|---|---|
| str | The same YAML string with environment variable placeholders | 
| str | replaced. | 
Source code in src/cloe_nessy/models/mixins/read_instance_mixin.py
              
            metadata_to_instance(data)
  
      classmethod
  
¶
    Parses a Dictionary to an instance.
Returns:
| Type | Description | 
|---|---|
| tuple[Self | None, list[ValidationError]] | An instance and potentially a list of errors. | 
Source code in src/cloe_nessy/models/mixins/read_instance_mixin.py
              
            read_instance_from_file(instance_path, **_)
  
      classmethod
  
¶
    Read and instantiate a single YAML file for the given path.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| instance_path | Path | The path to the file to instantiate. | required | 
Return
Returns a tuple of the instantiated model and errors.
Source code in src/cloe_nessy/models/mixins/read_instance_mixin.py
              
            read_instances_from_directory(instance_path, fail_on_missing_subfolder=True, **_)
  
      classmethod
  
¶
    Read and instantiate all *.yaml files for the given path.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| instance_path | Path | Path to the directory containing the instance definitions as YAML files. | required | 
| fail_on_missing_subfolder | bool | If False return a tuple with 2 empty lists. Otherwise raise a FileNotFoundError. | True | 
Return
Returns a tuple of the instantiated models and errors.