UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

79 lines (78 loc) 1.83 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * TrafficSteeringRule data source */ export declare function getTrafficSteeringRule(args: GetTrafficSteeringRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetTrafficSteeringRuleResult>; /** * A collection of arguments for invoking getTrafficSteeringRule. */ export interface GetTrafficSteeringRuleArgs { /** * The UUID of the traffic steering rule */ id: string; /** * Name */ name?: string; } /** * A collection of values returned by getTrafficSteeringRule. */ export interface GetTrafficSteeringRuleResult { /** * Action */ readonly action: outputs.GetTrafficSteeringRuleAction; /** * Category */ readonly categories: string[]; /** * Destination */ readonly destinations: string[]; /** * The folder containing the traffic steering rule */ readonly folder: string; /** * The UUID of the traffic steering rule */ readonly id: string; /** * Name */ readonly name: string; /** * Service */ readonly services: string[]; /** * Source user */ readonly sourceUsers: string[]; /** * Source */ readonly sources: string[]; readonly tfid: string; } /** * TrafficSteeringRule data source */ export declare function getTrafficSteeringRuleOutput(args: GetTrafficSteeringRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTrafficSteeringRuleResult>; /** * A collection of arguments for invoking getTrafficSteeringRule. */ export interface GetTrafficSteeringRuleOutputArgs { /** * The UUID of the traffic steering rule */ id: pulumi.Input<string>; /** * Name */ name?: pulumi.Input<string>; }