Returns the least integer value greater than or equal to the argument.
Using ceil
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function ceil(args: CeilArgs, opts?: InvokeOptions): Promise<CeilResult>
function ceilOutput(args: CeilOutputArgs, opts?: InvokeOptions): Output<CeilResult>def ceil(input: Optional[float] = None,
opts: Optional[InvokeOptions] = None) -> CeilResult
def ceil_output(input: Optional[pulumi.Input[float]] = None,
opts: Optional[InvokeOptions] = None) -> Output[CeilResult]func Ceil(ctx *Context, args *CeilArgs, opts ...InvokeOption) (*CeilResult, error)
func CeilOutput(ctx *Context, args *CeilOutputArgs, opts ...InvokeOption) CeilResultOutput> Note: This function is named Ceil in the Go SDK.
public static class Ceil
{
public static Task<CeilResult> InvokeAsync(CeilArgs args, InvokeOptions? opts = null)
public static Output<CeilResult> Invoke(CeilInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<CeilResult> ceil(CeilArgs args, InvokeOptions options)
public static Output<CeilResult> ceil(CeilArgs args, InvokeOptions options)
fn::invoke:
function: std:ceil
arguments:
# arguments dictionaryThe following arguments are supported:
- Input double
- Input float64
- input Double
- input number
- input float
- input Number
ceil Result
The following output properties are available:
- Result double
- Result float64
- result Double
- result number
- result float
- result Number
Package Details
- Repository
- std pulumi/pulumi-std
- License
