UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

84 lines (83 loc) 2.45 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Custom Control Topology Policy Definition . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCustomControlTopologyPolicyDefinition({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCustomControlTopologyPolicyDefinition(args: GetCustomControlTopologyPolicyDefinitionArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomControlTopologyPolicyDefinitionResult>; /** * A collection of arguments for invoking getCustomControlTopologyPolicyDefinition. */ export interface GetCustomControlTopologyPolicyDefinitionArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getCustomControlTopologyPolicyDefinition. */ export interface GetCustomControlTopologyPolicyDefinitionResult { /** * Default action, either `accept` or `reject` */ readonly defaultAction: string; /** * The description of the policy definition */ readonly description: string; /** * The id of the object */ readonly id: string; /** * The name of the policy definition */ readonly name: string; /** * List of sequences */ readonly sequences: outputs.GetCustomControlTopologyPolicyDefinitionSequence[]; /** * Type */ readonly type: string; /** * The version of the object */ readonly version: number; } /** * This data source can read the Custom Control Topology Policy Definition . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCustomControlTopologyPolicyDefinition({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCustomControlTopologyPolicyDefinitionOutput(args: GetCustomControlTopologyPolicyDefinitionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCustomControlTopologyPolicyDefinitionResult>; /** * A collection of arguments for invoking getCustomControlTopologyPolicyDefinition. */ export interface GetCustomControlTopologyPolicyDefinitionOutputArgs { /** * The id of the object */ id: pulumi.Input<string>; }