This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from types import UnionType | |
from typing import Any, Optional, Union, get_args, get_origin | |
import numpy as np | |
import pyarrow as pa | |
from pandera import Check, DataFrameModel, DataFrameSchema, Index, MultiIndex, dtypes | |
from pandera.engines import pandas_engine | |
from pandera.engines.engine import _is_namedtuple, _is_typeddict | |
from pandera.typing import Series | |
from pydantic import BaseModel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Options for Huawei Cloud API requests | |
*/ | |
export interface HuaweiApiOptions { | |
/** | |
* API key or token to use (overrides environment variable) | |
*/ | |
apiKey?: string; | |
/** |
OlderNewer