Bridge terraform-provider-dokploy into a Pulumi provider
18 resources and 5 data sources mapped into the dokploy:index module, with SDKs generated for TypeScript, Python, Go and .NET.
This commit is contained in:
36
sdk/python/pulumi_dokploy/config/__init__.pyi
generated
Normal file
36
sdk/python/pulumi_dokploy/config/__init__.pyi
generated
Normal file
@@ -0,0 +1,36 @@
|
||||
# coding=utf-8
|
||||
# *** WARNING: this file was generated by pulumi-language-python. ***
|
||||
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
||||
|
||||
import builtins as _builtins
|
||||
import warnings
|
||||
import sys
|
||||
import pulumi
|
||||
import pulumi.runtime
|
||||
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
||||
if sys.version_info >= (3, 11):
|
||||
from typing import NotRequired, TypedDict, TypeAlias
|
||||
else:
|
||||
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
||||
from .. import _utilities
|
||||
|
||||
apiKey: Optional[str]
|
||||
"""
|
||||
API token generated in Dokploy under *Settings > Profile > API/CLI*. May also be set with the `DOKPLOY_API_KEY` environment variable.
|
||||
"""
|
||||
|
||||
host: Optional[str]
|
||||
"""
|
||||
Base URL of the Dokploy instance, for example `https://dokploy.example.com`. A trailing `/api` is optional. May also be set with the `DOKPLOY_HOST` environment variable.
|
||||
"""
|
||||
|
||||
insecureSkipVerify: Optional[bool]
|
||||
"""
|
||||
Skip TLS certificate verification. Only use this for instances behind a self-signed certificate. Defaults to `false`.
|
||||
"""
|
||||
|
||||
timeoutSeconds: Optional[int]
|
||||
"""
|
||||
Per-request timeout in seconds. Defaults to `60`. May also be set with the `DOKPLOY_TIMEOUT_SECONDS` environment variable.
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user