@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
72 lines (71 loc) • 2.11 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* This data source can read the Expanded Community List Policy Object .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getExpandedCommunityListPolicyObject({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getExpandedCommunityListPolicyObject(args: GetExpandedCommunityListPolicyObjectArgs, opts?: pulumi.InvokeOptions): Promise<GetExpandedCommunityListPolicyObjectResult>;
/**
* A collection of arguments for invoking getExpandedCommunityListPolicyObject.
*/
export interface GetExpandedCommunityListPolicyObjectArgs {
/**
* The id of the object
*/
id: string;
}
/**
* A collection of values returned by getExpandedCommunityListPolicyObject.
*/
export interface GetExpandedCommunityListPolicyObjectResult {
/**
* List of entries
*/
readonly entries: outputs.GetExpandedCommunityListPolicyObjectEntry[];
/**
* The id of the object
*/
readonly id: string;
/**
* The name of the policy object
*/
readonly name: string;
/**
* The version of the object
*/
readonly version: number;
}
/**
* This data source can read the Expanded Community List Policy Object .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getExpandedCommunityListPolicyObject({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getExpandedCommunityListPolicyObjectOutput(args: GetExpandedCommunityListPolicyObjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetExpandedCommunityListPolicyObjectResult>;
/**
* A collection of arguments for invoking getExpandedCommunityListPolicyObject.
*/
export interface GetExpandedCommunityListPolicyObjectOutputArgs {
/**
* The id of the object
*/
id: pulumi.Input<string>;
}