You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently need to specify a workspace_id to convey a deployment. Would it be interesting to add a method in the FabricEndpoint class (or somewhere else) to list the workspaces, and/or, get a workspace id from a workspace name? Maybe even directly a workspace_name param in the FabricWorkspace class. What are your thoughts?
Additional context
I quickly wrote a function that I'll use in my code based on what I saw in the FabricEndpoint class, but I guess we can make it a method directly in the class:
defget_workspace_id_from_name(workspace_name, token_credential, base_api_url="https://api.fabric.microsoft.com/v1"):
endpoint=FabricEndpoint(
# if credential is not defined, use DefaultAzureCredentialtoken_credential=(
DefaultAzureCredential() iftoken_credentialisNoneelsevalidate_token_credential(token_credential)
)
)
# > make it a method in FabricEndpoint?response=endpoint.invoke(method="GET", url=f"{base_api_url}/workspaces")
foriteminresponse["body"]["value"]:
ifitem["displayName"] ==workspace_name:
returnvalidate_workspace_id(item["id"])
returnNone
The text was updated successfully, but these errors were encountered:
What is the feature?
We currently need to specify a
workspace_id
to convey a deployment. Would it be interesting to add a method in theFabricEndpoint
class (or somewhere else) to list the workspaces, and/or, get a workspace id from a workspace name? Maybe even directly aworkspace_name
param in theFabricWorkspace
class. What are your thoughts?Additional context
I quickly wrote a function that I'll use in my code based on what I saw in the
FabricEndpoint
class, but I guess we can make it a method directly in the class:The text was updated successfully, but these errors were encountered: