mirror of https://github.com/pulumi/pulumi.git
57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
// *** WARNING: this file was generated by test. ***
|
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
|
|
import * as pulumi from "@pulumi/pulumi";
|
|
import * as inputs from "./types/input";
|
|
import * as outputs from "./types/output";
|
|
import * as utilities from "./utilities";
|
|
|
|
/**
|
|
* Check codegen of functions with all optional inputs.
|
|
*/
|
|
export function funcWithAllOptionalInputs(args?: FuncWithAllOptionalInputsArgs, opts?: pulumi.InvokeOptions): Promise<FuncWithAllOptionalInputsResult> {
|
|
args = args || {};
|
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
return pulumi.runtime.invoke("example::funcWithAllOptionalInputs", {
|
|
"a": args.a ? inputs.helmReleaseSettingsProvideDefaults(args.a) : undefined,
|
|
"b": args.b,
|
|
}, opts);
|
|
}
|
|
|
|
export interface FuncWithAllOptionalInputsArgs {
|
|
/**
|
|
* Property A
|
|
*/
|
|
a?: inputs.HelmReleaseSettings;
|
|
/**
|
|
* Property B
|
|
*/
|
|
b?: string;
|
|
}
|
|
|
|
export interface FuncWithAllOptionalInputsResult {
|
|
readonly r: string;
|
|
}
|
|
/**
|
|
* Check codegen of functions with all optional inputs.
|
|
*/
|
|
export function funcWithAllOptionalInputsOutput(args?: FuncWithAllOptionalInputsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<FuncWithAllOptionalInputsResult> {
|
|
args = args || {};
|
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
return pulumi.runtime.invokeOutput("example::funcWithAllOptionalInputs", {
|
|
"a": args.a ? pulumi.output(args.a).apply(inputs.helmReleaseSettingsProvideDefaults) : undefined,
|
|
"b": args.b,
|
|
}, opts);
|
|
}
|
|
|
|
export interface FuncWithAllOptionalInputsOutputArgs {
|
|
/**
|
|
* Property A
|
|
*/
|
|
a?: pulumi.Input<inputs.HelmReleaseSettingsArgs>;
|
|
/**
|
|
* Property B
|
|
*/
|
|
b?: pulumi.Input<string>;
|
|
}
|