Documentation ¶
Overview ¶
usergroups_object.go
usergroups_data_source.go
usergroups_data_validator.go
usergroups_resource.go
usergroups_state.go
Index ¶
Constants ¶
const ( And UserGroupAndOr = "and" Or UserGroupAndOr = "or" SearchTypeIs = "is" SearchTypeIsNot = "is not" SearchTypeLike = "like" SearchTypeNotLike = "not like" SearchTypeMatchesRegex = "matches regex" SearchTypeDoesNotMatch = "does not match regex" SearchTypeMemberOf = "member of" SearchTypeNotMemberOf = "not member of" )
Variables ¶
This section is empty.
Functions ¶
func DataSourceJamfProUserGroups ¶
DataSourceJamfProUserGroups provides information about a specific Jamf Pro User Group by its ID or Name.
func DataSourceJamfProUserGroupsRead ¶
func DataSourceJamfProUserGroupsRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics
DataSourceJamfProUserGroupsRead fetches the details of a specific Jamf Pro user group from Jamf Pro using either its unique Name or its Id. The function prioritizes the 'name' attribute over the 'id' attribute for fetching details. If neither 'name' nor 'id' is provided, it returns an error. Once the details are fetched, they are set in the data source's state.
Parameters: - ctx: The context within which the function is called. It's used for timeouts and cancellation. - d: The current state of the data source. - meta: The meta object that can be used to retrieve the API client connection.
Returns: - diag.Diagnostics: Returns any diagnostics (errors or warnings) encountered during the function's execution.
func ResourceJamfProUserGroups ¶
resourceJamfProUserGroups defines the schema and CRUD operations for managing Jamf Pro Scripts in Terraform.
Types ¶
type UserGroupAndOr ¶ added in v0.0.43
type UserGroupAndOr string