Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Workspace Name in FabricWorkspaceObject #200

Open
PLsergent opened this issue Apr 1, 2025 · 1 comment
Open

Add Workspace Name in FabricWorkspaceObject #200

PLsergent opened this issue Apr 1, 2025 · 1 comment
Labels
enhancement New feature or request

Comments

@PLsergent
Copy link

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 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:

def get_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 DefaultAzureCredential
        token_credential=(
            DefaultAzureCredential() if token_credential is None else validate_token_credential(token_credential)
        )
    )
    # > make it a method in FabricEndpoint?
    response = endpoint.invoke(method="GET", url=f"{base_api_url}/workspaces")
    for item in response["body"]["value"]:
        if item["displayName"] == workspace_name:
            return validate_workspace_id(item["id"])
    return None
@PLsergent PLsergent added the enhancement New feature or request label Apr 1, 2025
@JacobKnightley JacobKnightley changed the title List workspaces / get workspace id from name Support Workspace Name in FabricWorkspaceObject Apr 5, 2025
@JacobKnightley
Copy link
Collaborator

@PLsergent Thanks for the feature suggestion! This should be fairly straight forward to implement. We'll add this to our backlog

@JacobKnightley JacobKnightley changed the title Support Workspace Name in FabricWorkspaceObject Add Workspace Name in FabricWorkspaceObject Apr 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants