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.

is_anonymous()#

Whether this ingress is anonymous.

Return type:

bool

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.

Parameters:

kwargs (Any) –

Return type:

dict[str, Any]

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.

Parameters:

kwargs (Any) –

Return type:

str

property satisfy: Satisfy#

The authorization satisfy strategy.

property scopes: list[str]#

List of scopes.