EnvironmentVaultConfig#
- pydantic model phalanx.models.environments.EnvironmentVaultConfig#
- Vault configuration for a specific environment. - Parameters:
- data ( - Any) –
 - Show JSON schema- { "title": "EnvironmentVaultConfig", "description": "Vault configuration for a specific environment.", "type": "object", "properties": { "vaultUrl": { "title": "Vaulturl", "type": "string" }, "vaultPathPrefix": { "title": "Vaultpathprefix", "type": "string" } }, "required": [ "vaultUrl", "vaultPathPrefix" ] } - Config:
- alias_generator: function = <function to_camel_case at 0x7f579e577d80> 
- allow_population_by_field_name: bool = True 
 
- Fields:
 - 
field vault_path_prefix: str[Required] (alias 'vaultPathPrefix')#
- Prefix of Vault paths, including the Kv2 mount point. 
 - dict(**kwargs)#
- Export the model as a dictionary. - Overridden to change the default of - by_aliasfrom False to True, so that by default the exported dictionary uses camel-case.
 - json(**kwargs)#
- Export the model as JSON. - Overridden to change the default of - by_aliasfrom False to True, so that by default the exported dictionary uses camel-case.