Given a base64-encoded string, decodes it and returns the original string.
Using base64decode
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 base64decode(args: Base64decodeArgs, opts?: InvokeOptions): Promise<Base64decodeResult>
function base64decodeOutput(args: Base64decodeOutputArgs, opts?: InvokeOptions): Output<Base64decodeResult>def base64decode(input: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> Base64decodeResult
def base64decode_output(input: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[Base64decodeResult]func Base64decode(ctx *Context, args *Base64decodeArgs, opts ...InvokeOption) (*Base64decodeResult, error)
func Base64decodeOutput(ctx *Context, args *Base64decodeOutputArgs, opts ...InvokeOption) Base64decodeResultOutput> Note: This function is named Base64decode in the Go SDK.
public static class Base64decode
{
public static Task<Base64decodeResult> InvokeAsync(Base64decodeArgs args, InvokeOptions? opts = null)
public static Output<Base64decodeResult> Invoke(Base64decodeInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<Base64decodeResult> base64decode(Base64decodeArgs args, InvokeOptions options)
public static Output<Base64decodeResult> base64decode(Base64decodeArgs args, InvokeOptions options)
fn::invoke:
function: std:base64decode
arguments:
# arguments dictionaryThe following arguments are supported:
- Input string
- Input string
- input String
- input string
- input str
- input String
base64decode 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
