Returns a unique identifier string, generated and formatted as required by RFC 4122.
Using uuid
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 uuid(args: UuidArgs, opts?: InvokeOptions): Promise<UuidResult>
function uuidOutput(args: UuidOutputArgs, opts?: InvokeOptions): Output<UuidResult>def uuid(opts: Optional[InvokeOptions] = None) -> UuidResult
def uuid_output(opts: Optional[InvokeOptions] = None) -> Output[UuidResult]func Uuid(ctx *Context, args *UuidArgs, opts ...InvokeOption) (*UuidResult, error)
func UuidOutput(ctx *Context, args *UuidOutputArgs, opts ...InvokeOption) UuidResultOutput> Note: This function is named Uuid in the Go SDK.
public static class Uuid
{
public static Task<UuidResult> InvokeAsync(UuidArgs args, InvokeOptions? opts = null)
public static Output<UuidResult> Invoke(UuidInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<UuidResult> uuid(UuidArgs args, InvokeOptions options)
public static Output<UuidResult> uuid(UuidArgs args, InvokeOptions options)
fn::invoke:
function: std:uuid
arguments:
# arguments dictionaryThe following arguments are supported:
uuid 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
