service_edge_group¶
The following methods allow for interaction with the ZPA Service Edge Groups API endpoints.
Methods are accessible via zpa.service_edge_group
Copyright (c) 2023, Zscaler Inc.
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- class ServiceEdgeGroupAPI¶
Bases:
APIClientA Client object for the Service Edge Group resource.
- add_service_edge_group(**kwargs)¶
Adds a new service edge group.
- Parameters:
- Keyword Arguments:
**cityCountry (str) –
The City and Country for where the App Connectors are located. Format is:
<City>, <Country Code>e.g.Sydney, AU**country_code (str) – The ISO<std> Country Code that represents the country where the App Connectors are located.
**enabled (bool) – Is the Service Edge Group enabled? Defaults to
True.**is_public (bool) – Is the Service Edge publicly accessible? Defaults to
False.**override_version_profile (bool) – Override the local App Connector version according to
version_profile. Defaults toFalse.**service_edge_ids (list) – A list of unique ids of ZPA Service Edges that belong to this Service Edge Group.
**trusted_network_ids (list) – A list of unique ids of Trusted Networks that are associated with this Service Edge Group.
**upgrade_day (str) – The day of the week that upgrades will be pushed to the App Connector.
**upgrade_time_in_secs (str) – The time of the day that upgrades will be pushed to the App Connector.
**version_profile (str) –
The version profile to use. This will automatically set
override_version_profileto True. Accepted values are:default,previous_defaultandnew_release**grace_distance_enabled (bool) – If enabled, allows ZPA Private Service Edge Groups within the specified distance to be prioritized over a closer ZPA Public Service Edge.
**grace_distance_value (int) – Indicates the maximum distance in miles or kilometers to ZPA Private Service Edge groups that would override a ZPA Public Service Edge. i.e 1.0
**grace_distance_value_unit (str) – Indicates the grace distance unit of measure in miles or kilometers. This value is only required if graceDistanceEnabled is set to true. Supported Values: MILES, KMS
- Returns:
ServiceEdgeGroup: The newly created service edge group object.
- Return type:
Tuple
Examples
>>> added_group, _, err = client.zpa.service_edge_group.add_service_edge_group( ... name=f"NewServiceEdgeGroup_{random.randint(1000, 10000)}", ... description=f"NewServiceEdgeGroup_{random.randint(1000, 10000)}", ... enabled= True, ... city_country= "San Jose, US", ... country_code= "US", ... latitude= "37.3382082", ... longitude= "-121.8863286", ... location= "San Jose, CA, USA", ... upgrade_day= "SUNDAY", ... dns_query_type= "IPV4_IPV6", ... ) ... if err: ... print(f"Error creating service edge group: {err}") ... return ... print(f"service edge group created successfully: {added_group.as_dict()}")
- delete_service_edge_group(group_id, microtenant_id=None)¶
Deletes the specified service edge group.
- Parameters:
- Returns:
Status code of the delete operation.
- Return type:
Examples
>>> _, _, err = client.zpa.service_edge_group.delete_service_edge_group( ... group_id='999999' ... ) ... if err: ... print(f"Error deleting service edge group: {err}") ... return ... print(f"service edge group with ID {'999999'} deleted successfully.")
- get_service_edge_group(group_id, query_params=None)¶
Retrieves information about a specific service edge group.
- Parameters:
- Returns:
ServiceEdgeGroup: The service edge group object.
- Return type:
Tuple
Examples
>>> fetched_group, _, err = client.zpa.service_edge_group.get_service_edge_group('999999') ... if err: ... print(f"Error fetching group by ID: {err}") ... return ... print(f"Fetched group by ID: {fetched_group.as_dict()}")
- list_service_edge_groups(query_params=None)¶
Enumerates connector groups in your organization with pagination. A subset of connector groups can be returned that match a supported filter expression or query.
- Parameters:
{dict} (query_params) –
Map of query parameters for the request.
[query_params.page]{str}: Specifies the page number.[query_params.page_size]{int}: Specifies the page size.If not provided, the default page size is 20. The max page size is 500.
[query_params.search]{str}: The search string used to support search by features and fields for the API.[query_params.microtenant_id]{str}: The unique identifier of the microtenant of ZPA tenant.- Returns:
A tuple containing (list of ServiceEdgeGroup instances, Response, error)
- Return type:
Tuple
Examples
>>> group_list, _, err = client.zpa.service_edge_group.list_service_edge_groups( ... query_params={'search': 'ServiceEdgeGRP01', 'page': '1', 'page_size': '100'}) ... if err: ... print(f"Error listing app connector group: {err}") ... return ... print(f"Total app connector groups found: {len(group_list)}") ... for group in groups: ... print(group.as_dict())
- update_service_edge_group(group_id, **kwargs)¶
Updates a specified service edge group.
- Parameters:
- Returns:
ServiceEdgeGroup: The updated service edge group object.
- Return type:
Tuple
Examples
>>> update_group, _, err = client.zpa.service_edge_group.add_service_edge_group( ... group_id='999999' ... name=f"UpdateServiceEdgeGroup_{random.randint(1000, 10000)}", ... description=f"UpdateServiceEdgeGroup_{random.randint(1000, 10000)}", ... enabled= True, ... city_country= "San Jose, US", ... country_code= "US", ... latitude= "37.3382082", ... longitude= "-121.8863286", ... location= "San Jose, CA, USA", ... upgrade_day= "SUNDAY", ... dns_query_type= "IPV4_IPV6", ... ) ... if err: ... print(f"Error creating service edge group: {err}") ... return ... print(f"service edge group created successfully: {update_group.as_dict()}")