modal-ts
    Preparing search index...

    Interface DeployFunctionParams

    個別Functionのデプロイ設定

    0
    
    interface DeployFunctionParams {
        experimentalOptions?: Record<string, string>;
        functionName: string;
        imageId?: string;
        minContainers?: number;
        moduleName: string;
        mountIds?: string[];
        secretIds?: string[];
        webhookConfig?: Partial<WebhookConfig>;
    }
    Index

    Properties

    experimentalOptions?: Record<string, string>

    実験的オプション

    functionName: string

    Function名

    imageId?: string

    使用するコンテナイメージID

    minContainers?: number

    最小コンテナ数(warm pool)

    moduleName: string

    Pythonモジュールパス

    mountIds?: string[]

    アタッチするMountのID配列

    secretIds?: string[]

    アタッチするSecretのID配列

    webhookConfig?: Partial<WebhookConfig>

    Webhookエンドポイント設定