GafaelfawrIngressScopesAll#
- pydantic model gafaelfawr.models.kubernetes.GafaelfawrIngressScopesAll#
Represents scopes where all scopes are required.
- Parameters:
data (
Any
) –
Show JSON schema
{ "title": "GafaelfawrIngressScopesAll", "description": "Represents scopes where all scopes are required.", "type": "object", "properties": { "all": { "items": { "type": "string" }, "title": "All", "type": "array" } }, "additionalProperties": false, "required": [ "all" ] }
- Fields:
- field all: list[str] [Required]#
All of these scopes are required 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.