Skip to content

Variable Libraries

create_variable_library(workspace, display_name, item_definition, *, description=None, folder=None, df=True)

Creates a new variable library in the specified workspace.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
display_name str

The display name of the variable library.

required
item_definition Dict[str, Any]

The definition of the variable library.

required
description Optional[str]

A description for the variable library.

None
folder Optional[str]

The ID of the folder to create the variable library in.

None
df Optional[bool]

If True or not provided, returns a DataFrame with flattened keys. If False, returns a list of dictionaries.

True

Returns:

Type Description
Union[DataFrame, Dict[str, Any], None]

The created variable library details.

Examples:

create_variable_library(
    workspace_id='123e4567-e89b-12d3-a456-426614174000',
    display_name='vl_variables',
    item_definition= {}, # Definition dict of the variable library
    description='A variable library for CI/CD implementation',
    folder_id='456e7890-e12b-34d5-a678-9012345678901',
)
Source code in src/pyfabricops/items/variable_libraries.py
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
@df
def create_variable_library(
    workspace: str,
    display_name: str,
    item_definition: Dict[str, Any],
    *,
    description: Optional[str] = None,
    folder: Optional[str] = None,
    df: Optional[bool] = True,
) -> Union[DataFrame, Dict[str, Any], None]:
    """
    Creates a new variable library in the specified workspace.

    Args:
        workspace (str): The workspace name or ID.
        display_name (str): The display name of the variable library.
        item_definition (Dict[str, Any]): The definition of the variable library.
        description (Optional[str]): A description for the variable library.
        folder (Optional[str]): The ID of the folder to create the variable library in.
        df (Optional[bool]): If True or not provided, returns a DataFrame with flattened keys.
            If False, returns a list of dictionaries.

    Returns:
        (Union[DataFrame, Dict[str, Any], None]): The created variable library details.

    Examples:
        ```python
        create_variable_library(
            workspace_id='123e4567-e89b-12d3-a456-426614174000',
            display_name='vl_variables',
            item_definition= {}, # Definition dict of the variable library
            description='A variable library for CI/CD implementation',
            folder_id='456e7890-e12b-34d5-a678-9012345678901',
        )
        ```
    """
    workspace_id = resolve_workspace(workspace)

    payload = {'displayName': display_name, 'definition': item_definition}

    if description:
        payload['description'] = description

    if folder:
        folder_id = resolve_folder(folder, workspace_id=workspace_id)
        if folder_id:
            payload['folderId'] = folder_id

    return api_request(
        endpoint='/workspaces/' + workspace_id + '/VariableLibrary',
        method='post',
        payload=payload,
        support_lro=True,
    )

delete_variable_library(workspace, variable_library)

Delete a semantic model from the specified workspace.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
variable_library str

The name or ID of the semantic model to delete.

required

Returns:

Type Description
None

None

Examples:

delete_variable_library('123e4567-e89b-12d3-a456-426614174000', '456e7890-e12b-34d5-a678-9012345678901')
Source code in src/pyfabricops/items/variable_libraries.py
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
def delete_variable_library(workspace: str, variable_library: str) -> None:
    """
    Delete a semantic model from the specified workspace.

    Args:
        workspace (str): The workspace name or ID.
        variable_library (str): The name or ID of the semantic model to delete.

    Returns:
        None

    Examples:
        ```python
        delete_variable_library('123e4567-e89b-12d3-a456-426614174000', '456e7890-e12b-34d5-a678-9012345678901')
        ```
    """
    workspace_id = resolve_workspace(workspace)
    variable_library_id = resolve_variable_library(workspace, variable_library)

    return api_request(
        endpoint='/workspaces/'
        + workspace_id
        + '/VariableLibraries/'
        + variable_library_id,
        method='delete',
    )

get_variable_library(workspace, variable_library, *, df=True)

Retrieves a variable_library by its name or ID from the specified workspace.

Parameters:

Name Type Description Default
workspace_id str

The workspace ID.

required
variable_library str

The ID or name of the variable_library.

required
df Optional[bool]

If True or not provided, returns a DataFrame with flattened keys. If False, returns a list of dictionaries.

True

Returns:

Type Description
Union[DataFrame, Dict[str, Any], None]

The variable_library details if found. If df=True, returns a DataFrame with flattened keys.

Examples:

get_variable_library('123e4567-e89b-12d3-a456-426614174000', '123e4567-e89b-12d3-a456-426614174000')
Source code in src/pyfabricops/items/variable_libraries.py
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
@df
def get_variable_library(
    workspace: str, variable_library: str, *, df: Optional[bool] = True
) -> Union[DataFrame, Dict[str, Any], None]:
    """
    Retrieves a variable_library by its name or ID from the specified workspace.

    Args:
        workspace_id (str): The workspace ID.
        variable_library (str): The ID or name of the variable_library.
        df (Optional[bool]): If True or not provided, returns a DataFrame with flattened keys.
            If False, returns a list of dictionaries.

    Returns:
        (Union[DataFrame, Dict[str, Any], None]): The variable_library details if found. If `df=True`, returns a DataFrame with flattened keys.

    Examples:
        ```python
        get_variable_library('123e4567-e89b-12d3-a456-426614174000', '123e4567-e89b-12d3-a456-426614174000')
        ```
    """
    workspace_id = resolve_workspace(workspace)
    variable_library_id = resolve_variable_library(workspace, variable_library)
    return api_request(
        endpoint='/workspaces/'
        + workspace_id
        + '/VariableLibrary/'
        + variable_library_id,
    )

get_variable_library_definition(workspace, variable_library)

Retrieves the definition of a variable library by its name or ID from the specified workspace.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
variable_library str

The name or ID of the variable library.

required

Returns:

Type Description
Union[Dict[str, Any], None]

The variable library definition if found, otherwise None.

Examples:

get_variable_library_definition(
    workspace_id='123e4567-e89b-12d3-a456-426614174000',
    variable_library_id='456e7890-e12b-34d5-a678-9012345678901',
)
Source code in src/pyfabricops/items/variable_libraries.py
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
def get_variable_library_definition(
    workspace: str, variable_library: str
) -> Union[Dict[str, Any], None]:
    """
    Retrieves the definition of a variable library by its name or ID from the specified workspace.

    Args:
        workspace (str): The workspace name or ID.
        variable_library (str): The name or ID of the variable library.

    Returns:
        ( Union[Dict[str, Any], None]): The variable library definition if found, otherwise None.

    Examples:
        ```python
        get_variable_library_definition(
            workspace_id='123e4567-e89b-12d3-a456-426614174000',
            variable_library_id='456e7890-e12b-34d5-a678-9012345678901',
        )
        ```
    """
    workspace_id = resolve_workspace(workspace)

    variable_library_id = resolve_variable_library(workspace, variable_library)

    return api_request(
        endpoint='/workspaces/'
        + workspace_id
        + '/VariableLibraries/'
        + variable_library_id
        + '/getDefinition',
        method='post',
        support_lro=True,
    )

get_variable_library_id(workspace, variable_library_name)

Retrieves the ID of a variable library by its name from the specified workspace.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
variable_library_name str

The name of the variable_library.

required

Returns:

Type Description
Optional[str]

The ID of the variable_library if found, otherwise None.

Examples:

get_variable_library_id('123e4567-e89b-12d3-a456-426614174000', 'Variables')
Source code in src/pyfabricops/items/variable_libraries.py
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
def get_variable_library_id(
    workspace: str, variable_library_name: str
) -> Union[str, None]:
    """
    Retrieves the ID of a variable library by its name from the specified workspace.

    Args:
        workspace (str): The workspace name or ID.
        variable_library_name (str): The name of the variable_library.

    Returns:
        (Optional[str]): The ID of the variable_library if found, otherwise None.

    Examples:
        ```python
        get_variable_library_id('123e4567-e89b-12d3-a456-426614174000', 'Variables')
        ```
    """
    libraries = list_variable_libraries(
        workspace=resolve_workspace(workspace), df=False
    )
    for library in libraries:
        if library.get('displayName') == variable_library_name:
            return library.get('id')
    return None

list_variable_libraries(workspace, df=True)

Returns a list of variable libraries in a specified workspace.

Parameters:

Name Type Description Default
workspace_id str

The ID of the workspace.

required
df Optional[bool]

If True or not provided, returns a DataFrame with flattened keys. If False, returns a list of dictionaries.

True

Returns:

Type Description
Union[DataFrame, List[Dict[str, Any]], None]

A list of variable libraries or a DataFrame if df is True.

Source code in src/pyfabricops/items/variable_libraries.py
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@df
def list_variable_libraries(
    workspace: str,
    df: Optional[bool] = True,
) -> Union[DataFrame, List[Dict[str, Any]], None]:
    """
    Returns a list of variable libraries in a specified workspace.

    Args:
        workspace_id (str): The ID of the workspace.
        df (Optional[bool]): If True or not provided, returns a DataFrame with flattened keys.
            If False, returns a list of dictionaries.

    Returns:
        (Union[DataFrame, List[Dict[str, Any]], None]): A list of variable libraries or a DataFrame if df is True.
    """
    return api_request(
        endpoint='/workspaces/'
        + resolve_workspace(workspace)
        + '/VariableLibraries',
        support_pagination=True,
    )

update_variable_library(workspace, variable_library, *, display_name=None, description=None, df=False)

Updates the properties of the specified variable_library.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
report str

The ID of the variable_library to update.

required
display_name str

The new display name for the variable_library.

None
description str

The new description for the variable_library.

None
df Optional[bool]

If True or not provided, returns a DataFrame with flattened keys. If False, returns a list of dictionaries.

False

Returns:

Type Description
Union[DataFrame, Dict[str, Any], None]

The updated variable_library details if successful, otherwise None.

Examples:

update_variable_library(
    workspace_id='123e4567-e89b-12d3-a456-426614174000',
    report_id='456e7890-e12b-34d5-a678-9012345678901',
    display_name='UpdatedDisplayName',
    description='Updated description'
)
Source code in src/pyfabricops/items/variable_libraries.py
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
@df
def update_variable_library(
    workspace: str,
    variable_library: str,
    *,
    display_name: Optional[str] = None,
    description: Optional[str] = None,
    df: Optional[bool] = False,
) -> Union[DataFrame, Dict[str, Any], None]:
    """
    Updates the properties of the specified variable_library.

    Args:
        workspace (str): The workspace name or ID.
        report (str): The ID of the variable_library to update.
        display_name (str, optional): The new display name for the variable_library.
        description (str, optional): The new description for the variable_library.
        df (Optional[bool]): If True or not provided, returns a DataFrame with flattened keys.
            If False, returns a list of dictionaries.

    Returns:
        (Union[DataFrame, Dict[str, Any], None]): The updated variable_library details if successful, otherwise None.

    Examples:
        ```python
        update_variable_library(
            workspace_id='123e4567-e89b-12d3-a456-426614174000',
            report_id='456e7890-e12b-34d5-a678-9012345678901',
            display_name='UpdatedDisplayName',
            description='Updated description'
        )
        ```
    """
    workspace_id = resolve_workspace(workspace)
    variable_library_id = resolve_variable_library(workspace, variable_library)

    payload = {}

    if display_name:
        payload['displayName'] = display_name

    if description:
        payload['description'] = description

    return api_request(
        endpoint='/workspaces/'
        + workspace_id
        + '/VariableLibraries/'
        + variable_library_id,
        method='patch',
        payload=payload,
    )

update_variable_library_definition(workspace, variable_library, item_definition, *, df=True)

Updates the definition of an existing variable_library in the specified workspace. If the variable_library does not exist, it returns None.

Parameters:

Name Type Description Default
workspace str

The workspace name or ID.

required
variable_library str

The name or ID of the variable library to update.

required
item_definition Dict[str, Any]

The new definition for the variable library.

required
df Optional[bool]

If True or not provided, returns a DataFrame with flattened keys. If False, returns a list of dictionaries.

True

Returns:

Type Description
Union[Dict[str, Any], None]

The updated variable library details if successful, otherwise None.

Examples:

update_variable_library(
    workspace_id='123e4567-e89b-12d3-a456-426614174000',
    variable_library_id='456e7890-e12b-34d5-a678-9012345678901',
    item_definition={...} # New definition dict of the semantic model
)
Source code in src/pyfabricops/items/variable_libraries.py
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
@df
def update_variable_library_definition(
    workspace: str,
    variable_library: str,
    item_definition: Dict[str, Any],
    *,
    df: Optional[bool] = True,
) -> Union[Dict[str, Any], None]:
    """
    Updates the definition of an existing variable_library in the specified workspace.
    If the variable_library does not exist, it returns None.

    Args:
        workspace (str): The workspace name or ID.
        variable_library (str): The name or ID of the variable library to update.
        item_definition (Dict[str, Any]): The new definition for the variable library.
        df (Optional[bool]): If True or not provided, returns a DataFrame with flattened keys.
            If False, returns a list of dictionaries.

    Returns:
        (Union[Dict[str, Any], None]): The updated variable library details if successful, otherwise None.

    Examples:
        ```python
        update_variable_library(
            workspace_id='123e4567-e89b-12d3-a456-426614174000',
            variable_library_id='456e7890-e12b-34d5-a678-9012345678901',
            item_definition={...} # New definition dict of the semantic model
        )
        ```
    """
    workspace_id = resolve_workspace(workspace)
    variable_library_id = resolve_variable_library(workspace, variable_library)
    params = {'updateMetadata': True}
    payload = {'definition': item_definition}
    return api_request(
        endpoint='/workspaces/'
        + workspace_id
        + '/VariableLibraries/'
        + variable_library
        + '/updateDefinition',
        method='post',
        payload=payload,
        params=params,
        support_lro=True,
    )