ou_container_builder.settings
#
Configuration settings.
- class ou_container_builder.settings.AptDebLine(*, url: Annotated[Url, UrlConstraints(max_length=2083, allowed_schemes=['http', 'https'], host_required=None, default_host=None, default_port=None, default_path=None)], distribution: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)], component: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)])#
Settings for an APT deb line.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'component': FieldInfo(annotation=str, required=True, metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]), 'distribution': FieldInfo(annotation=str, required=True, metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]), 'url': FieldInfo(annotation=Url, required=True, metadata=[UrlConstraints(max_length=2083, allowed_schemes=['http', 'https'], host_required=None, default_host=None, default_port=None, default_path=None)])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.AptPackageLists(*, core: list[Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]] = [], build: list[Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]] = [], deploy: list[Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]] = [])#
Settings for a list of apt packages for build and deploy stages.
- classmethod add_stages(data: Any) Any #
If only a list of packages is given, convert that to the stage structure.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'build': FieldInfo(annotation=list[Annotated[str, StringConstraints]], required=False, default=[]), 'core': FieldInfo(annotation=list[Annotated[str, StringConstraints]], required=False, default=[]), 'deploy': FieldInfo(annotation=list[Annotated[str, StringConstraints]], required=False, default=[])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.AptSource(*, name: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)], key_url: Annotated[Url, UrlConstraints(max_length=2083, allowed_schemes=['http', 'https'], host_required=None, default_host=None, default_port=None, default_path=None)], dearmor: bool = True, deb: AptDebLine)#
Settings for a single APT source.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'dearmor': FieldInfo(annotation=bool, required=False, default=True), 'deb': FieldInfo(annotation=AptDebLine, required=True), 'key_url': FieldInfo(annotation=Url, required=True, metadata=[UrlConstraints(max_length=2083, allowed_schemes=['http', 'https'], host_required=None, default_host=None, default_port=None, default_path=None)]), 'name': FieldInfo(annotation=str, required=True, metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.Arg(*, name: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)], value: str | None = None)#
Docker argument.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'name': FieldInfo(annotation=str, required=True, metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]), 'value': FieldInfo(annotation=Union[str, NoneType], required=False, default=None)}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.BuildScript(*, stage: Literal['build', 'deploy'], commands: list[str])#
A script to be run during the build in the build or deploy stage.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'commands': FieldInfo(annotation=list[str], required=True), 'stage': FieldInfo(annotation=Union[Literal['build'], Literal['deploy']], required=True)}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.Content(*, source: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)], target: str = '', overwrite: Literal['always', 'never'])#
Settings for the content configuration.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'overwrite': FieldInfo(annotation=Union[Literal['always'], Literal['never']], required=True), 'source': FieldInfo(annotation=str, required=True, metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]), 'target': FieldInfo(annotation=str, required=False, default='')}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.EnvironmentVariable(*, name: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)], value: str = '')#
Settings for additional environment variables.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'name': FieldInfo(annotation=str, required=True, metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]), 'value': FieldInfo(annotation=str, required=False, default='')}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.Image(*, base: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)] = 'python:3.11-bookworm', user: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)] = 'ou')#
Settings for the Docker image configuration.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'base': FieldInfo(annotation=str, required=False, default='python:3.11-bookworm', metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]), 'user': FieldInfo(annotation=str, required=False, default='ou', metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.Module(*, code: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)], presentation: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)])#
Settings for the module configuration.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'code': FieldInfo(annotation=str, required=True, metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]), 'presentation': FieldInfo(annotation=str, required=True, metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.OutputBlock(*, block: str, weight: int = 999)#
Settings for a single block in the generated Dockerfile.
- classmethod convert_string_block(data: Any) Any #
Convert string blocks into the dictionary structure.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'block': FieldInfo(annotation=str, required=True), 'weight': FieldInfo(annotation=int, required=False, default=999)}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.OutputBlocks(*, build: list[OutputBlock] = [], deploy: list[OutputBlock] = [])#
Blocks for the generated Dockerfile.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'build': FieldInfo(annotation=list[OutputBlock], required=False, default=[]), 'deploy': FieldInfo(annotation=list[OutputBlock], required=False, default=[])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.Packages(*, apt: AptPackageLists = AptPackageLists(core=[], build=[], deploy=[]), pip: PipPackageLists = PipPackageLists(system=[], user=[]))#
Settings for the packages configuration.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'apt': FieldInfo(annotation=AptPackageLists, required=False, default=AptPackageLists(core=[], build=[], deploy=[])), 'pip': FieldInfo(annotation=PipPackageLists, required=False, default=PipPackageLists(system=[], user=[]))}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.PacksModel(*, code_server: Options | None = None, ipykernel: Options | None = None, irkernel: Options | None = None, jupyterlab: Options | None = None, notebook: Options | None = None, xfce4: Options | None = None)#
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'code_server': FieldInfo(annotation=Union[Options, NoneType], required=False, default=None), 'ipykernel': FieldInfo(annotation=Union[Options, NoneType], required=False, default=None), 'irkernel': FieldInfo(annotation=Union[Options, NoneType], required=False, default=None), 'jupyterlab': FieldInfo(annotation=Union[Options, NoneType], required=False, default=None), 'notebook': FieldInfo(annotation=Union[Options, NoneType], required=False, default=None), 'xfce4': FieldInfo(annotation=Union[Options, NoneType], required=False, default=None)}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.PipPackageEntry(*, name: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)], type: Literal['package'] | Literal['requirements.txt'] | None = 'package')#
Settings for a single entry for a pip installation.
Can either represent a single file or a requirements file.
- classmethod convert_simple_packages(data: Any) Any #
If only a list of packages is given, convert that to the target structure.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'name': FieldInfo(annotation=str, required=True, metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]), 'type': FieldInfo(annotation=Union[Literal['package'], Literal['requirements.txt'], NoneType], required=False, default='package')}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.PipPackageLists(*, system: list[PipPackageEntry] = [], user: list[PipPackageEntry] = [])#
Settings for a list of pip packages for system and user targets.
- classmethod add_targets(data: Any) Any #
If only a list of packages is given, convert that to the target structure.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'system': FieldInfo(annotation=list[PipPackageEntry], required=False, default=[]), 'user': FieldInfo(annotation=list[PipPackageEntry], required=False, default=[])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.Server(*, default_path: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)] = '/', access_token: str | None = None, wrapper_host: str | None = '*.open.ac.uk')#
Settings for the core server configuration.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'access_token': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'default_path': FieldInfo(annotation=str, required=False, default='/', metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]), 'wrapper_host': FieldInfo(annotation=Union[str, NoneType], required=False, default='*.open.ac.uk')}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.Settings(*, version: Literal['3'] = '2', module: Module, image: Image = Image(base='python:3.11-bookworm', user='ou'), environment: list[EnvironmentVariable] = [], args: list[Arg] = [], server: Server = Server(default_path='/', access_token=None, wrapper_host='*.open.ac.uk'), content: list[Content] = [], sources: Sources = Sources(apt=[]), packages: Packages = Packages(apt=AptPackageLists(core=[], build=[], deploy=[]), pip=PipPackageLists(system=[], user=[])), web_apps: list[WebApp] = [], services: list[Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)]] = [], scripts: list[BuildScript | StartupShutdownScript] = [], packs: PacksModel = {}, jupyter_server_config: dict = {}, output_blocks: OutputBlocks = OutputBlocks(build=[], deploy=[]))#
Application Settings.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'args': FieldInfo(annotation=list[Arg], required=False, default=[]), 'content': FieldInfo(annotation=list[Content], required=False, default=[]), 'environment': FieldInfo(annotation=list[EnvironmentVariable], required=False, default=[]), 'image': FieldInfo(annotation=Image, required=False, default=Image(base='python:3.11-bookworm', user='ou')), 'jupyter_server_config': FieldInfo(annotation=dict, required=False, default={}), 'module': FieldInfo(annotation=Module, required=True), 'output_blocks': FieldInfo(annotation=OutputBlocks, required=False, default=OutputBlocks(build=[], deploy=[])), 'packages': FieldInfo(annotation=Packages, required=False, default=Packages(apt=AptPackageLists(core=[], build=[], deploy=[]), pip=PipPackageLists(system=[], user=[]))), 'packs': FieldInfo(annotation=PacksModel, required=False, default={}), 'scripts': FieldInfo(annotation=list[Union[BuildScript, StartupShutdownScript]], required=False, default=[]), 'server': FieldInfo(annotation=Server, required=False, default=Server(default_path='/', access_token=None, wrapper_host='*.open.ac.uk')), 'services': FieldInfo(annotation=list[Annotated[str, StringConstraints]], required=False, default=[]), 'sources': FieldInfo(annotation=Sources, required=False, default=Sources(apt=[])), 'version': FieldInfo(annotation=Literal['3'], required=False, default='2', validate_default=True), 'web_apps': FieldInfo(annotation=list[WebApp], required=False, default=[])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.Sources(*, apt: list[AptSource] = [])#
Settings for the additional sources configuration.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'apt': FieldInfo(annotation=list[AptSource], required=False, default=[])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.StartupShutdownScript(*, stage: Literal['startup'], name: str, commands: list[str])#
A script to be run at startup or shutdown time.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'commands': FieldInfo(annotation=list[str], required=True), 'name': FieldInfo(annotation=str, required=True), 'stage': FieldInfo(annotation=Literal['startup'], required=True)}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- class ou_container_builder.settings.WebApp(*, path: Annotated[str, StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)], options: dict)#
Settings for a single web application configuration.
- classmethod convert_command_string_to_list(data: Any) Any #
Convert command strings to lists using shlex.
- model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'options': FieldInfo(annotation=dict, required=True), 'path': FieldInfo(annotation=str, required=True, metadata=[StringConstraints(strip_whitespace=None, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].
This replaces Model.__fields__ from Pydantic V1.
- ou_container_builder.settings.load_settings() dict #
Load the settings from the ContainerConfig.yaml.