GafaelfawrIngressScopesAnonymous#
- pydantic model gafaelfawr.models.kubernetes.GafaelfawrIngressScopesAnonymous#
Represents anonymous access.
- Parameters:
data (
Any
) –
Show JSON schema
{ "title": "GafaelfawrIngressScopesAnonymous", "description": "Represents anonymous access.", "type": "object", "properties": { "anonymous": { "const": true, "title": "Anonymous" } }, "additionalProperties": false, "required": [ "anonymous" ] }
- Fields:
- field anonymous: Literal[True] [Required]#
Mark this ingress as anonymous.
- 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.