Skip to content

GroupMember

laktory.models.resources.databricks.GroupMember ยค

Bases: GroupMemberBase

Databricks Group Member

Examples:

import io

from laktory import models

member_yaml = '''
group_id: ${resources.group-role-engineers.id}
member_id: ${resources.user-john.id}
'''
member = models.resources.databricks.GroupMember.model_validate_yaml(
    io.StringIO(member_yaml)
)
References
BASE DESCRIPTION
api

Specifies whether to use account-level or workspace-level API. Valid values are account and workspace. When not set, the API level is inferred from the provider host

TYPE: str | None | VariableType DEFAULT: None

group_id

This is the id attribute (SCIM ID) of the group resource

TYPE: str | VariableType

member_id

This is the id attribute (SCIM ID) of the group, service principal, or user

TYPE: str | VariableType