Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,12 @@ schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProvider:
description
name : str, default is Undefined, optional
The name of the group.
organizationId : str, default is Undefined, optional
The organization this group exists in. If omitted, this group will be managed as a realm group. Organization groups require Keycloak 26.6.0 or later.
organizationIdRef : GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDRef, default is Undefined, optional
organization Id ref
organizationIdSelector : GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDSelector, default is Undefined, optional
organization Id selector
parentId : str, default is Undefined, optional
The ID of this group's parent. If omitted, this group will be defined at the root level.
parentIdRef : GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderParentIDRef, default is Undefined, optional
Expand All @@ -117,6 +123,12 @@ schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProvider:

name?: str

organizationId?: str

organizationIdRef?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDRef

organizationIdSelector?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDSelector

parentId?: str

parentIdRef?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderParentIDRef
Expand All @@ -130,6 +142,95 @@ schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProvider:
realmIdSelector?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderRealmIDSelector


schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDRef:
r"""
Reference to a Organization in organization to populate organizationId.

Attributes
----------
name : str, default is Undefined, required
Name of the referenced object.
policy : GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDRefPolicy, default is Undefined, optional
policy
"""


name: str

policy?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDRefPolicy


schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDRefPolicy:
r"""
Policies for referencing.

Attributes
----------
resolution : str, default is "Required", optional
Resolution specifies whether resolution of this reference is required.
The default is 'Required', which means the reconcile will fail if the
reference cannot be resolved. 'Optional' means this reference will be
a no-op if it cannot be resolved.
resolve : str, default is Undefined, optional
Resolve specifies when this reference should be resolved. The default
is 'IfNotPresent', which will attempt to resolve the reference only when
the corresponding field is not present. Use 'Always' to resolve the
reference on every reconcile.
"""


resolution?: "Required" | "Optional" = "Required"

resolve?: "Always" | "IfNotPresent"


schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDSelector:
r"""
Selector for a Organization in organization to populate organizationId.

Attributes
----------
matchControllerRef : bool, default is Undefined, optional
MatchControllerRef ensures an object with the same controller reference
as the selecting object is selected.
matchLabels : {str:str}, default is Undefined, optional
MatchLabels ensures an object with matching labels is selected.
policy : GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDSelectorPolicy, default is Undefined, optional
policy
"""


matchControllerRef?: bool

matchLabels?: {str:str}

policy?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDSelectorPolicy


schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderOrganizationIDSelectorPolicy:
r"""
Policies for selection.

Attributes
----------
resolution : str, default is "Required", optional
Resolution specifies whether resolution of this reference is required.
The default is 'Required', which means the reconcile will fail if the
reference cannot be resolved. 'Optional' means this reference will be
a no-op if it cannot be resolved.
resolve : str, default is Undefined, optional
Resolve specifies when this reference should be resolved. The default
is 'IfNotPresent', which will attempt to resolve the reference only when
the corresponding field is not present. Use 'Always' to resolve the
reference on every reconcile.
"""


resolution?: "Required" | "Optional" = "Required"

resolve?: "Always" | "IfNotPresent"


schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecForProviderParentIDRef:
r"""
Reference to a Group in group to populate parentId.
Expand Down Expand Up @@ -329,6 +430,12 @@ schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProvider:
description
name : str, default is Undefined, optional
The name of the group.
organizationId : str, default is Undefined, optional
The organization this group exists in. If omitted, this group will be managed as a realm group. Organization groups require Keycloak 26.6.0 or later.
organizationIdRef : GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDRef, default is Undefined, optional
organization Id ref
organizationIdSelector : GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDSelector, default is Undefined, optional
organization Id selector
parentId : str, default is Undefined, optional
The ID of this group's parent. If omitted, this group will be defined at the root level.
parentIdRef : GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderParentIDRef, default is Undefined, optional
Expand All @@ -350,6 +457,12 @@ schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProvider:

name?: str

organizationId?: str

organizationIdRef?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDRef

organizationIdSelector?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDSelector

parentId?: str

parentIdRef?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderParentIDRef
Expand All @@ -363,6 +476,95 @@ schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProvider:
realmIdSelector?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderRealmIDSelector


schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDRef:
r"""
Reference to a Organization in organization to populate organizationId.

Attributes
----------
name : str, default is Undefined, required
Name of the referenced object.
policy : GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDRefPolicy, default is Undefined, optional
policy
"""


name: str

policy?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDRefPolicy


schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDRefPolicy:
r"""
Policies for referencing.

Attributes
----------
resolution : str, default is "Required", optional
Resolution specifies whether resolution of this reference is required.
The default is 'Required', which means the reconcile will fail if the
reference cannot be resolved. 'Optional' means this reference will be
a no-op if it cannot be resolved.
resolve : str, default is Undefined, optional
Resolve specifies when this reference should be resolved. The default
is 'IfNotPresent', which will attempt to resolve the reference only when
the corresponding field is not present. Use 'Always' to resolve the
reference on every reconcile.
"""


resolution?: "Required" | "Optional" = "Required"

resolve?: "Always" | "IfNotPresent"


schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDSelector:
r"""
Selector for a Organization in organization to populate organizationId.

Attributes
----------
matchControllerRef : bool, default is Undefined, optional
MatchControllerRef ensures an object with the same controller reference
as the selecting object is selected.
matchLabels : {str:str}, default is Undefined, optional
MatchLabels ensures an object with matching labels is selected.
policy : GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDSelectorPolicy, default is Undefined, optional
policy
"""


matchControllerRef?: bool

matchLabels?: {str:str}

policy?: GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDSelectorPolicy


schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderOrganizationIDSelectorPolicy:
r"""
Policies for selection.

Attributes
----------
resolution : str, default is "Required", optional
Resolution specifies whether resolution of this reference is required.
The default is 'Required', which means the reconcile will fail if the
reference cannot be resolved. 'Optional' means this reference will be
a no-op if it cannot be resolved.
resolve : str, default is Undefined, optional
Resolve specifies when this reference should be resolved. The default
is 'IfNotPresent', which will attempt to resolve the reference only when
the corresponding field is not present. Use 'Always' to resolve the
reference on every reconcile.
"""


resolution?: "Required" | "Optional" = "Required"

resolve?: "Always" | "IfNotPresent"


schema GroupKeycloakCrossplaneIoV1alpha1GroupSpecInitProviderParentIDRef:
r"""
Reference to a Group in group to populate parentId.
Expand Down Expand Up @@ -644,6 +846,8 @@ schema GroupKeycloakCrossplaneIoV1alpha1GroupStatusAtProvider:
id
name : str, default is Undefined, optional
The name of the group.
organizationId : str, default is Undefined, optional
The organization this group exists in. If omitted, this group will be managed as a realm group. Organization groups require Keycloak 26.6.0 or later.
parentId : str, default is Undefined, optional
The ID of this group's parent. If omitted, this group will be defined at the root level.
path : str, default is Undefined, optional
Expand All @@ -661,6 +865,8 @@ schema GroupKeycloakCrossplaneIoV1alpha1GroupStatusAtProvider:

name?: str

organizationId?: str

parentId?: str

path?: str
Expand Down
Loading
Loading