cloud_storage_utility.types.ibm_configuration

View Source
from typing import NamedTuple


class IbmConfiguration(NamedTuple):
    auth_endpoint: str
    cos_endpoint: str
    api_key: str
#   class IbmConfiguration(typing.NamedTuple):
View Source
class IbmConfiguration(NamedTuple):
    auth_endpoint: str
    cos_endpoint: str
    api_key: str

IbmConfiguration(auth_endpoint, cos_endpoint, api_key)

#   IbmConfiguration(auth_endpoint: str, cos_endpoint: str, api_key: str)

Create new instance of IbmConfiguration(auth_endpoint, cos_endpoint, api_key)

#   auth_endpoint: str

Alias for field number 0

#   cos_endpoint: str

Alias for field number 1

#   api_key: str

Alias for field number 2

Inherited Members
builtins.tuple
index
count