for member in UserAttributes_IssuerType] [{member.name, member.value}
User Attribute Routes
UserAttributes_CRUD_Error
UserAttributes_CRUD_Error (status, message, domo_instance, parent_class:str=None, function_name:str=None)
base exception
UserAttributes_GET_Error
UserAttributes_GET_Error (status, message, domo_instance, parent_class:str=None, function_name:str=None)
base exception
UserAttributes_IssuerType
UserAttributes_IssuerType (value, names=None, module=None, qualname=None, type=None, start=1)
An enumeration.
get_user_attributes
get_user_attributes (auth:domolibrary.client.DomoAuth.DomoAuth, issuer_type_ls:List[__main__.UserAttributes_IssuerTy pe]=None, session:httpx.AsyncClient=None, debug_api:bool=False, parent_class=None, debug_num_stacks_to_drop=1)
retrieves user attributes from Domo user attributes can be UserAttributes_IssuerType
– idp, domo, or user-generated API does not filter on the issuer type (despite API accepting filter parameter)
Type | Default | Details | |
---|---|---|---|
auth | DomoAuth | ||
issuer_type_ls | List | None | |
session | AsyncClient | None | use UserAttributes_IssuerType enum |
debug_api | bool | False | |
parent_class | NoneType | None | |
debug_num_stacks_to_drop | int | 1 |
# import domolibrary.client.DomoAuth as dmda
= dmda.DomoTokenAuth(
token_auth =os.environ['DOMO_INSTANCE'],
domo_instance=os.environ["DOMO_ACCESS_TOKEN"],
domo_access_token
)
= await get_user_attributes(
res =token_auth, issuer_type_ls=[UserAttributes_IssuerType.CUSTOM], debug_api=False
auth
)
res.response
get_user_attribute_by_id
get_user_attribute_by_id (auth:domolibrary.client.DomoAuth.DomoAuth, attribute_id:str, session:httpx.AsyncClient=None, debug_api:bool=False, parent_class=None, debug_num_stacks_to_drop=1)
retrieves user attributes from Domo user attributes can be UserAttributes_IssuerType
– idp, domo, or user-generated API does not filter on the issuer type (despite API accepting filter parameter)
# import domolibrary.client.DomoAuth as dmda
= dmda.DomoTokenAuth(
token_auth =os.environ['DOMO_INSTANCE'],
domo_instance=os.environ["DOMO_ACCESS_TOKEN"],
domo_access_token
)
= await get_user_attribute_by_id(
res ="DomoLibraryTestFranchise", auth=token_auth, debug_api=False
attribute_id
)
res.response
clean_attribute_id
clean_attribute_id (text)
create_user_attribute
create_user_attribute (auth:domolibrary.client.DomoAuth.DomoAuth, attribute_id, name=None, description=None, data_type:str=None, security_voter=None, issuer_ty pe:__main__.UserAttributes_IssuerType=None, session:httpx.AsyncClient=None, debug_api:bool=False, parent_class=None, debug_num_stacks_to_drop=1)
generate_create_user_attribute_body
generate_create_user_attribute_body (attribute_id:str, name:str=None, description:str=None, issuer_type:__ main__.UserAttributes_IssuerType=Non e, security_voter:str=None, data_type:str=None)
# import domolibrary.client.DomoAuth as dmda
= dmda.DomoTokenAuth(
token_auth =os.environ['DOMO_INSTANCE'],
domo_instance=os.environ["DOMO_ACCESS_TOKEN"],
domo_access_token
)
try:
= await create_user_attribute(
res =token_auth,
auth="Test Library Store",
attribute_id="test library store",
name=False,
debug_api
)
print(res)
except UserAttributes_CRUD_Error as e:
print(e)
update_user_attribute
update_user_attribute (auth:domolibrary.client.DomoAuth.DomoAuth, attribute_id, name=None, description=None, issuer_ type:__main__.UserAttributes_IssuerType=<UserAttri butes_IssuerType.CUSTOM: 'customer-defined'>, data_type:str=None, security_voter=None, session:httpx.AsyncClient=None, debug_api:bool=False, parent_class=None, debug_num_stacks_to_drop=1)
body must include all attribute parameters, this route wil use the get_user_attribute_by_id
function to retrieve existing values (and throw an error if not found) to construct an update statement
# import domolibrary.client.DomoAuth as dmda
= dmda.DomoTokenAuth(
token_auth =os.environ['DOMO_INSTANCE'],
domo_instance=os.environ["DOMO_ACCESS_TOKEN"],
domo_access_token
)try:
= await update_user_attribute(
res =token_auth,
auth="TestLibraryStore",
attribute_id=None,
name=None,
description=False,
debug_api
)
print(res)
except (UserAttributes_GET_Error, UserAttributes_CRUD_Error) as e:
print(e)
delete_user_attribute
delete_user_attribute (auth:domolibrary.client.DomoAuth.DomoAuth, attribute_id, session:httpx.AsyncClient=None, debug_api:bool=False, parent_class=None, debug_num_stacks_to_drop=1)
# import domolibrary.client.DomoAuth as dmda
= dmda.DomoTokenAuth(
token_auth =os.environ['DOMO_INSTANCE'],
domo_instance=os.environ["DOMO_ACCESS_TOKEN"],
domo_access_token
)
try:
= await delete_user_attribute(
res =token_auth, attribute_id="TestLibraryStore", debug_api=False
auth
)print(res)
except UserAttributes_CRUD_Error as e:
print(e)