@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
86 lines (85 loc) • 2.07 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* SdwanRule data source
*/
export declare function getSdwanRule(args: GetSdwanRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetSdwanRuleResult>;
/**
* A collection of arguments for invoking getSdwanRule.
*/
export interface GetSdwanRuleArgs {
/**
* UUID of the resource
*/
id: string;
/**
* Rule name
*/
name?: string;
}
/**
* A collection of values returned by getSdwanRule.
*/
export interface GetSdwanRuleResult {
/**
* Action
*/
readonly action: outputs.GetSdwanRuleAction;
/**
* List of applications
*/
readonly applications: string[];
/**
* Rule description
*/
readonly description: string;
/**
* List of destination addresses
*/
readonly destinations: string[];
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly disabled: boolean;
readonly errorCorrectionProfile: string;
readonly folder: string;
readonly froms: string[];
/**
* UUID of the resource
*/
readonly id: string;
/**
* Rule name
*/
readonly name: string;
readonly negateDestination: boolean;
readonly negateSource: boolean;
readonly pathQualityProfile: string;
readonly position: string;
readonly saasQualityProfile: string;
readonly services: string[];
readonly snippet: string;
readonly sourceUsers: string[];
readonly sources: string[];
readonly tags: string[];
readonly tfid: string;
readonly tos: string[];
}
/**
* SdwanRule data source
*/
export declare function getSdwanRuleOutput(args: GetSdwanRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSdwanRuleResult>;
/**
* A collection of arguments for invoking getSdwanRule.
*/
export interface GetSdwanRuleOutputArgs {
/**
* UUID of the resource
*/
id: pulumi.Input<string>;
/**
* Rule name
*/
name?: pulumi.Input<string>;
}