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.

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.