@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
59 lines (58 loc) • 1.46 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* DhcpInterface data source
*/
export declare function getDhcpInterface(args: GetDhcpInterfaceArgs, opts?: pulumi.InvokeOptions): Promise<GetDhcpInterfaceResult>;
/**
* A collection of arguments for invoking getDhcpInterface.
*/
export interface GetDhcpInterfaceArgs {
/**
* UUID of the resource
*/
id: string;
/**
* Interface name
*/
name?: string;
}
/**
* A collection of values returned by getDhcpInterface.
*/
export interface GetDhcpInterfaceResult {
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly folder: string;
/**
* UUID of the resource
*/
readonly id: string;
/**
* Interface name
*/
readonly name: string;
readonly relay: outputs.GetDhcpInterfaceRelay;
readonly server: outputs.GetDhcpInterfaceServer;
readonly snippet: string;
readonly tfid: string;
}
/**
* DhcpInterface data source
*/
export declare function getDhcpInterfaceOutput(args: GetDhcpInterfaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDhcpInterfaceResult>;
/**
* A collection of arguments for invoking getDhcpInterface.
*/
export interface GetDhcpInterfaceOutputArgs {
/**
* UUID of the resource
*/
id: pulumi.Input<string>;
/**
* Interface name
*/
name?: pulumi.Input<string>;
}