pulumi/pkg/codegen/internal/test/testdata/simple-methods-schema-single-value-returns/nodejs/foo.ts
2021-11-17 11:21:33 -08:00

76 lines
2.3 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 utilities from "./utilities";
export class Foo extends pulumi.ComponentResource {
/** @internal */
public static readonly __pulumiType = 'example::Foo';
/**
* Returns true if the given object is an instance of Foo. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
public static isInstance(obj: any): obj is Foo {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === Foo.__pulumiType;
}
/**
* Create a Foo resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args?: FooArgs, opts?: pulumi.ComponentResourceOptions) {
let inputs: pulumi.Inputs = {};
opts = opts || {};
if (!opts.id) {
} else {
}
if (!opts.version) {
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion()});
}
super(Foo.__pulumiType, name, inputs, opts, true /*remote*/);
}
getKubeconfig(args?: Foo.GetKubeconfigArgs): pulumi.Output<string> {
args = args || {};
const result: pulumi.Output<Foo.GetKubeconfigResult> = pulumi.runtime.call("example::Foo/getKubeconfig", {
"__self__": this,
"profileName": args.profileName,
"roleArn": args.roleArn,
}, this);
return result.kubeconfig;
}
}
/**
* The set of arguments for constructing a Foo resource.
*/
export interface FooArgs {
}
export namespace Foo {
/**
* The set of arguments for the Foo.getKubeconfig method.
*/
export interface GetKubeconfigArgs {
profileName?: pulumi.Input<string | undefined>;
roleArn?: pulumi.Input<string | undefined>;
}
/**
* The results of the Foo.getKubeconfig method.
*/
export interface GetKubeconfigResult {
readonly kubeconfig: string;
}
}