Documentation
¶
Overview ¶
Package v1beta1 contains the input type for this Function +kubebuilder:object:generate=true +groupName=msgraph.fn.crossplane.io +versionName=v1alpha1
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Input ¶
type Input struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
// QueryType defines the type of Microsoft Graph API query to perform
// Supported values: UserValidation, GroupMembership, GroupObjectIDs, ServicePrincipalDetails
QueryType string `json:"queryType"`
// Users is a list of userPrincipalName (email IDs) for user validation
// +optional
Users []*string `json:"users,omitempty"`
// UsersRef is a reference to retrieve the user names (e.g., from status or context)
// Overrides Users field if used
// +optional
UsersRef *string `json:"usersRef,omitempty"`
// Groups is a list of group names for group object ID queries
// +optional
Groups []*string `json:"groups,omitempty"`
// GroupsRef is a reference to retrieve the group names (e.g., from status or context)
// Overrides Groups field if used
// +optional
GroupsRef *string `json:"groupsRef,omitempty"`
// Group is a single group name for group membership queries
// +optional
Group *string `json:"group,omitempty"`
// GroupRef is a reference to retrieve the group name (e.g., from status or context)
// Overrides Group field if used
// +optional
GroupRef *string `json:"groupRef,omitempty"`
// ServicePrincipals is a list of service principal names
// +optional
ServicePrincipals []*string `json:"servicePrincipals,omitempty"`
// ServicePrincipalsRef is a reference to retrieve the service principal names (e.g., from status or context)
// Overrides ServicePrincipals field if used
// +optional
ServicePrincipalsRef *string `json:"servicePrincipalsRef,omitempty"`
// Target where to store the Query Result
Target string `json:"target"`
// SkipQueryWhenTargetHasData controls whether to skip the query when the target already has data
// Default is false to ensure continuous reconciliation
// +optional
SkipQueryWhenTargetHasData *bool `json:"skipQueryWhenTargetHasData,omitempty"`
}
Input can be used to provide input to this Function. +kubebuilder:object:root=true +kubebuilder:storageversion +kubebuilder:resource:categories=crossplane
func (*Input) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Input.
func (*Input) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Input) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
Click to show internal directories.
Click to hide internal directories.