foundry_dev_tools.config.config_types module

foundry_dev_tools.config.config_types module#

Types that are needed for the Configuration classes.

class foundry_dev_tools.config.config_types.Host[source]#

Bases: object

Provides the domain and url for the domain and scheme provided.

__init__(domain, scheme=None)[source]#
Parameters:
  • domain (str)

  • scheme (str | None)

Return type:

None

foundry_dev_tools.config.config_types.FoundryOAuthGrantType#

The available grant types for the Foundry OAuth API.

alias of Literal[‘client_credentials’, ‘authorization_code’]