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.

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.