|
| 1 | +""" |
| 2 | +This file was generated by the KCL auto-gen tool. DO NOT EDIT. |
| 3 | +Editing this file might prove futile when you re-run the KCL auto-gen generate command. |
| 4 | +""" |
| 5 | +import k8s.apimachinery.pkg.apis.meta.v1 |
| 6 | + |
| 7 | + |
| 8 | +schema KeycloakAuthFlow: |
| 9 | + r""" |
| 10 | + KeycloakAuthFlow is the Schema for the keycloak authentication flow API. |
| 11 | + |
| 12 | + Attributes |
| 13 | + ---------- |
| 14 | + apiVersion : str, default is "v1.edp.epam.com/v1", required |
| 15 | + APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
| 16 | + kind : str, default is "KeycloakAuthFlow", required |
| 17 | + Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
| 18 | + metadata : v1.ObjectMeta, default is Undefined, optional |
| 19 | + metadata |
| 20 | + spec : V1EdpEpamComV1KeycloakAuthFlowSpec, default is Undefined, optional |
| 21 | + spec |
| 22 | + status : V1EdpEpamComV1KeycloakAuthFlowStatus, default is Undefined, optional |
| 23 | + status |
| 24 | + """ |
| 25 | + |
| 26 | + |
| 27 | + apiVersion: "v1.edp.epam.com/v1" = "v1.edp.epam.com/v1" |
| 28 | + |
| 29 | + kind: "KeycloakAuthFlow" = "KeycloakAuthFlow" |
| 30 | + |
| 31 | + metadata?: v1.ObjectMeta |
| 32 | + |
| 33 | + spec?: V1EdpEpamComV1KeycloakAuthFlowSpec |
| 34 | + |
| 35 | + status?: V1EdpEpamComV1KeycloakAuthFlowStatus |
| 36 | + |
| 37 | + |
| 38 | +schema V1EdpEpamComV1KeycloakAuthFlowSpec: |
| 39 | + r""" |
| 40 | + KeycloakAuthFlowSpec defines the desired state of KeycloakAuthFlow. |
| 41 | + |
| 42 | + Attributes |
| 43 | + ---------- |
| 44 | + alias : str, default is Undefined, required |
| 45 | + Alias is display name for authentication flow. |
| 46 | + authenticationExecutions : [V1EdpEpamComV1KeycloakAuthFlowSpecAuthenticationExecutionsItems0], default is Undefined, optional |
| 47 | + AuthenticationExecutions is list of authentication executions for this auth flow. |
| 48 | + builtIn : bool, default is Undefined, required |
| 49 | + BuiltIn is true if this is built-in auth flow. |
| 50 | + childRequirement : str, default is Undefined, optional |
| 51 | + ChildRequirement is requirement for child execution. Available options: REQUIRED, ALTERNATIVE, DISABLED, CONDITIONAL. |
| 52 | + childType : str, default is Undefined, optional |
| 53 | + ChildType is type for auth flow if it has a parent, available options: basic-flow, form-flow |
| 54 | + description : str, default is Undefined, optional |
| 55 | + Description is description for authentication flow. |
| 56 | + parentName : str, default is Undefined, optional |
| 57 | + ParentName is name of parent auth flow. |
| 58 | + providerId : str, default is Undefined, required |
| 59 | + ProviderID for root auth flow and provider for child auth flows. |
| 60 | + realm : str, default is Undefined, optional |
| 61 | + Deprecated: use RealmRef instead. |
| 62 | + Realm is name of KeycloakRealm custom resource. |
| 63 | + realmRef : V1EdpEpamComV1KeycloakAuthFlowSpecRealmRef, default is Undefined, optional |
| 64 | + realm ref |
| 65 | + topLevel : bool, default is Undefined, required |
| 66 | + TopLevel is true if this is root auth flow. |
| 67 | + """ |
| 68 | + |
| 69 | + |
| 70 | + alias: str |
| 71 | + |
| 72 | + authenticationExecutions?: [V1EdpEpamComV1KeycloakAuthFlowSpecAuthenticationExecutionsItems0] |
| 73 | + |
| 74 | + builtIn: bool |
| 75 | + |
| 76 | + childRequirement?: str |
| 77 | + |
| 78 | + childType?: str |
| 79 | + |
| 80 | + description?: str |
| 81 | + |
| 82 | + parentName?: str |
| 83 | + |
| 84 | + providerId: str |
| 85 | + |
| 86 | + realm?: str |
| 87 | + |
| 88 | + realmRef?: V1EdpEpamComV1KeycloakAuthFlowSpecRealmRef |
| 89 | + |
| 90 | + topLevel: bool |
| 91 | + |
| 92 | + |
| 93 | +schema V1EdpEpamComV1KeycloakAuthFlowSpecAuthenticationExecutionsItems0: |
| 94 | + r""" |
| 95 | + AuthenticationExecution defines keycloak authentication execution. |
| 96 | + |
| 97 | + Attributes |
| 98 | + ---------- |
| 99 | + alias : str, default is Undefined, optional |
| 100 | + Alias is display name for this execution. |
| 101 | + authenticator : str, default is Undefined, optional |
| 102 | + Authenticator is name of authenticator. |
| 103 | + authenticatorConfig : V1EdpEpamComV1KeycloakAuthFlowSpecAuthenticationExecutionsItems0AuthenticatorConfig, default is Undefined, optional |
| 104 | + authenticator config |
| 105 | + authenticatorFlow : bool, default is Undefined, optional |
| 106 | + AuthenticatorFlow is true if this is auth flow. |
| 107 | + priority : int, default is Undefined, optional |
| 108 | + Priority is priority for this execution. Lower values have higher priority. |
| 109 | + requirement : str, default is Undefined, optional |
| 110 | + Requirement is requirement for this execution. Available options: REQUIRED, ALTERNATIVE, DISABLED, CONDITIONAL. |
| 111 | + """ |
| 112 | + |
| 113 | + |
| 114 | + alias?: str |
| 115 | + |
| 116 | + authenticator?: str |
| 117 | + |
| 118 | + authenticatorConfig?: V1EdpEpamComV1KeycloakAuthFlowSpecAuthenticationExecutionsItems0AuthenticatorConfig |
| 119 | + |
| 120 | + authenticatorFlow?: bool |
| 121 | + |
| 122 | + priority?: int |
| 123 | + |
| 124 | + requirement?: str |
| 125 | + |
| 126 | + |
| 127 | +schema V1EdpEpamComV1KeycloakAuthFlowSpecAuthenticationExecutionsItems0AuthenticatorConfig: |
| 128 | + r""" |
| 129 | + AuthenticatorConfig is configuration for authenticator. |
| 130 | + |
| 131 | + Attributes |
| 132 | + ---------- |
| 133 | + alias : str, default is Undefined, optional |
| 134 | + Alias is display name for authenticator config. |
| 135 | + config : {str:str}, default is Undefined, optional |
| 136 | + Config is configuration for authenticator. |
| 137 | + """ |
| 138 | + |
| 139 | + |
| 140 | + alias?: str |
| 141 | + |
| 142 | + config?: {str:str} |
| 143 | + |
| 144 | + |
| 145 | +schema V1EdpEpamComV1KeycloakAuthFlowSpecRealmRef: |
| 146 | + r""" |
| 147 | + RealmRef is reference to Realm custom resource. |
| 148 | + |
| 149 | + Attributes |
| 150 | + ---------- |
| 151 | + kind : str, default is Undefined, optional |
| 152 | + Kind specifies the kind of the Keycloak resource. |
| 153 | + name : str, default is Undefined, optional |
| 154 | + Name specifies the name of the Keycloak resource. |
| 155 | + """ |
| 156 | + |
| 157 | + |
| 158 | + kind?: "KeycloakRealm" | "ClusterKeycloakRealm" |
| 159 | + |
| 160 | + name?: str |
| 161 | + |
| 162 | + |
| 163 | +schema V1EdpEpamComV1KeycloakAuthFlowStatus: |
| 164 | + r""" |
| 165 | + KeycloakAuthFlowStatus defines the observed state of KeycloakAuthFlow. |
| 166 | + |
| 167 | + Attributes |
| 168 | + ---------- |
| 169 | + failureCount : int, default is Undefined, optional |
| 170 | + failure count |
| 171 | + value : str, default is Undefined, optional |
| 172 | + value |
| 173 | + """ |
| 174 | + |
| 175 | + |
| 176 | + failureCount?: int |
| 177 | + |
| 178 | + value?: str |
| 179 | + |
| 180 | + |
0 commit comments