Source code for bitmovin_api_sdk.account.organizations.tenants.tenants_api

# coding: utf-8

from __future__ import absolute_import

from bitmovin_api_sdk.common import BaseApi, BitmovinApiLoggerBase
from bitmovin_api_sdk.common.poscheck import poscheck_except
from bitmovin_api_sdk.models.response_envelope import ResponseEnvelope
from bitmovin_api_sdk.models.response_error import ResponseError
from bitmovin_api_sdk.models.tenant_with_groups import TenantWithGroups


[docs]class TenantsApi(BaseApi): @poscheck_except(2) def __init__(self, api_key, tenant_org_id=None, base_url=None, logger=None): # type: (str, str, str, BitmovinApiLoggerBase) -> None super(TenantsApi, self).__init__( api_key=api_key, tenant_org_id=tenant_org_id, base_url=base_url, logger=logger )
[docs] def list(self, organization_id, **kwargs): # type: (string_types, dict) -> TenantWithGroups """List all Tenants with their groups for a given organization :param organization_id: Id of the organization :type organization_id: string_types, required :return: Tenants with group details :rtype: TenantWithGroups """ return self.api_client.get( '/account/organizations/{organization_id}/tenants', path_params={'organization_id': organization_id}, pagination_response=True, type=TenantWithGroups, **kwargs )