@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
75 lines (74 loc) • 1.86 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the Mirror Policy Object .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getMirrorPolicyObject({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getMirrorPolicyObject(args: GetMirrorPolicyObjectArgs, opts?: pulumi.InvokeOptions): Promise<GetMirrorPolicyObjectResult>;
/**
* A collection of arguments for invoking getMirrorPolicyObject.
*/
export interface GetMirrorPolicyObjectArgs {
/**
* The id of the object
*/
id: string;
}
/**
* A collection of values returned by getMirrorPolicyObject.
*/
export interface GetMirrorPolicyObjectResult {
/**
* The id of the object
*/
readonly id: string;
/**
* The name of the policy object
*/
readonly name: string;
/**
* Remote destination IP
*/
readonly remoteDestinationIp: string;
/**
* Source IP
*/
readonly sourceIp: string;
/**
* The version of the object
*/
readonly version: number;
}
/**
* This data source can read the Mirror Policy Object .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getMirrorPolicyObject({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getMirrorPolicyObjectOutput(args: GetMirrorPolicyObjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMirrorPolicyObjectResult>;
/**
* A collection of arguments for invoking getMirrorPolicyObject.
*/
export interface GetMirrorPolicyObjectOutputArgs {
/**
* The id of the object
*/
id: pulumi.Input<string>;
}