GafaelfawrIngressScopesAny#
- pydantic model gafaelfawr.models.kubernetes.GafaelfawrIngressScopesAny#
Represents scopes where any scope is sufficient.
- Parameters:
data (
Any
) –
Show JSON schema
{ "title": "GafaelfawrIngressScopesAny", "description": "Represents scopes where any scope is sufficient.", "type": "object", "properties": { "any": { "items": { "type": "string" }, "title": "Any", "type": "array" } }, "additionalProperties": false, "required": [ "any" ] }
- Fields:
- field any: list[str] [Required]#
Any of these scopes is sufficient to allow access.
- model_dump(**kwargs)#
Export the model as a dictionary.
Overridden to change the default of
by_alias
from False to True, so that by default the exported dictionary uses camel-case.
- model_dump_json(**kwargs)#
Export the model as JSON.
Overridden to change the default of
by_alias
from False to True, so that by default the exported dictionary uses camel-case.