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
Returns a list of all gateways the user has permission for, including on-premises, on-premises (personal mode), and virtual network gateways.
17
+
18
+
This is a wrapper function for the following API: `Gateways - List Gateways <https://learn.microsoft.com/rest/api/fabric/core/gateways/list-gateways>`_.
19
+
20
+
Returns
21
+
-------
22
+
pandas.DataFrame
23
+
A pandas dataframe showing a list of all gateways the user has permission for, including on-premises, on-premises (personal mode), and virtual network gateways.
This is a wrapper function for the following API: `Gateways - Delete Gateway <https://learn.microsoft.com/rest/api/fabric/core/gateways/delete-gateway>`_.
This is a wrapper function for the following API: `Gateways - List Gateway Role Assignments <https://learn.microsoft.com/rest/api/fabric/core/gateways/list-gateway-role-assignments>`_.
115
+
116
+
Parameters
117
+
----------
118
+
gateway : str | UUID
119
+
The gateway name or ID.
120
+
121
+
Returns
122
+
-------
123
+
pandas.DataFrame
124
+
A pandas dataframe showing a list of gateway role assignments.
Delete the specified role assignment for the gateway.
118
155
119
-
gateway_id=resolve_gateway_id(gateway)
156
+
This is a wrapper function for the following API: `Gateways - Delete Gateway Role Assignment <https://learn.microsoft.com/rest/api/fabric/core/gateways/delete-gateway-role-assignment>`_.
This is a wrapper function for the following API: `Gateways - Delete Gateway Member <https://learn.microsoft.com/rest/api/fabric/core/gateways/delete-gateway-member>`_.
This is a wrapper function for the following API: `Gateways - List Gateway Members <https://learn.microsoft.com/rest/api/fabric/core/gateways/list-gateway-members>`_.
160
232
161
-
gateway_id=resolve_gateway_id(gateway)
233
+
Parameters
234
+
----------
235
+
gateway : str | UUID
236
+
The gateway name or ID.
237
+
238
+
Returns
239
+
-------
240
+
pandas.DataFrame
241
+
A pandas dataframe showing a list of gateway members of an on-premises gateway.
This is a wrapper function for the following API: `Gateways - Create Gateway <https://learn.microsoft.com/rest/api/fabric/core/gateways/create-gateway>`_.
294
+
295
+
Parameters
296
+
----------
297
+
name : str
298
+
The gateway name.
299
+
capacity : str | UUID
300
+
The capacity name or Id.
301
+
inactivity_minutes_before_sleep : int
302
+
The minutes of inactivity before the virtual network gateway goes into auto-sleep. Must be one of the following values: 30, 60, 90, 120, 150, 240, 360, 480, 720, 1440.
303
+
number_of_member_gateways: int
304
+
The number of member gateways. A number between 1 and 7.
This is a wrapper function for the following API: `Gateways - Update Gateway <https://learn.microsoft.com/rest/api/fabric/core/gateways/update-gateway>`_.
Whether to allow cloud connections to refresh through this on-premises gateway. True - Allow, False - Do not allow.
358
+
allow_custom_connectors : bool, default=None
359
+
Whether to allow custom connectors to be used with this on-premises gateway. True - Allow, False - Do not allow.
360
+
load_balancing_setting : str, default=None
361
+
The `load balancing setting <https://learn.microsoft.com/rest/api/fabric/core/gateways/update-gateway?tabs=HTTP#loadbalancingsetting>`_ of the on-premises gateway.
This is a wrapper function for the following API: `Gateways - Update Gateway <https://learn.microsoft.com/rest/api/fabric/core/gateways/update-gateway>`_.
The minutes of inactivity before the virtual network gateway goes into auto-sleep. Must be one of the following values: 30, 60, 90, 120, 150, 240, 360, 480, 720, 1440.
410
+
number_of_member_gateways : int, default=None
411
+
The number of member gateways. A number between 1 and 7.
0 commit comments