@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
62 lines (61 loc) • 1.73 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* LogForwardingProfile data source
*/
export declare function getLogForwardingProfile(args: GetLogForwardingProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetLogForwardingProfileResult>;
/**
* A collection of arguments for invoking getLogForwardingProfile.
*/
export interface GetLogForwardingProfileArgs {
/**
* The UUID of the log server profile
*/
id: string;
/**
* The name of the log forwarding profile
*/
name?: string;
}
/**
* A collection of values returned by getLogForwardingProfile.
*/
export interface GetLogForwardingProfileResult {
/**
* Log forwarding profile description
*/
readonly description: string;
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly folder: string;
/**
* The UUID of the log server profile
*/
readonly id: string;
readonly matchLists: outputs.GetLogForwardingProfileMatchList[];
/**
* The name of the log forwarding profile
*/
readonly name: string;
readonly snippet: string;
readonly tfid: string;
}
/**
* LogForwardingProfile data source
*/
export declare function getLogForwardingProfileOutput(args: GetLogForwardingProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLogForwardingProfileResult>;
/**
* A collection of arguments for invoking getLogForwardingProfile.
*/
export interface GetLogForwardingProfileOutputArgs {
/**
* The UUID of the log server profile
*/
id: pulumi.Input<string>;
/**
* The name of the log forwarding profile
*/
name?: pulumi.Input<string>;
}