Returns a hexadecimal representation of the SHA-512 hash of the given string.
Using sha512
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 sha512(args: Sha512Args, opts?: InvokeOptions): Promise<Sha512Result>
function sha512Output(args: Sha512OutputArgs, opts?: InvokeOptions): Output<Sha512Result>def sha512(input: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> Sha512Result
def sha512_output(input: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[Sha512Result]func Sha512(ctx *Context, args *Sha512Args, opts ...InvokeOption) (*Sha512Result, error)
func Sha512Output(ctx *Context, args *Sha512OutputArgs, opts ...InvokeOption) Sha512ResultOutput> Note: This function is named Sha512 in the Go SDK.
public static class Sha512
{
public static Task<Sha512Result> InvokeAsync(Sha512Args args, InvokeOptions? opts = null)
public static Output<Sha512Result> Invoke(Sha512InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<Sha512Result> sha512(Sha512Args args, InvokeOptions options)
public static Output<Sha512Result> sha512(Sha512Args args, InvokeOptions options)
fn::invoke:
function: std:sha512
arguments:
# arguments dictionaryThe following arguments are supported:
- Input string
- Input string
- input String
- input string
- input str
- input String
sha512 Result
The following output properties are available:
- Result string
- Result string
- result String
- result string
- result str
- result String
Package Details
- Repository
- std pulumi/pulumi-std
- License
