cloud_connector_groups#

The following methods allow for interaction with the ZPA Cloud Connector Groups API endpoints.

Methods are accessible via zpa.cloud_connector_groups

class CloudConnectorGroupsAPI#
get_group(group_id)#

Returns information on the specified cloud connector group.

Parameters:

group_id (str) – The unique identifier for the cloud connector group.

Returns:

The resource record for the cloud connector group.

Return type:

Box

Examples

>>> pprint(zpa.cloud_connector_groups.get_group('99999'))
list_groups(**kwargs)#

Returns a list of all configured cloud connector groups.

Keyword Arguments:
  • **max_items (int) – The maximum number of items to request before stopping iteration.

  • **max_pages (int) – The maximum number of pages to request before stopping iteration.

  • **pagesize (int) – Specifies the page size. The default size is 20, but the maximum size is 500.

  • **search (str, optional) – The search string used to match against features and fields.

Returns:

A list of all configured cloud connector groups.

Return type:

BoxList

Examples

>>> for cloud_connector_group in zpa.cloud_connector_groups.list_groups():
...    pprint(cloud_connector_group)