@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) • 1.99 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* This data source can read the Policy Group .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getPolicyGroup({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getPolicyGroup(args: GetPolicyGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetPolicyGroupResult>;
/**
* A collection of arguments for invoking getPolicyGroup.
*/
export interface GetPolicyGroupArgs {
/**
* The id of the object
*/
id: string;
}
/**
* A collection of values returned by getPolicyGroup.
*/
export interface GetPolicyGroupResult {
/**
* Description
*/
readonly description: string;
/**
* List of devices
*/
readonly devices: outputs.GetPolicyGroupDevice[];
/**
* List of feature profile IDs
*/
readonly featureProfileIds: string[];
/**
* The id of the object
*/
readonly id: string;
/**
* The name of the policy group
*/
readonly name: string;
/**
* List of all associated policy versions
*/
readonly policyVersions: string[];
/**
* Type of solution
*/
readonly solution: string;
}
/**
* This data source can read the Policy Group .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getPolicyGroup({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getPolicyGroupOutput(args: GetPolicyGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPolicyGroupResult>;
/**
* A collection of arguments for invoking getPolicyGroup.
*/
export interface GetPolicyGroupOutputArgs {
/**
* The id of the object
*/
id: pulumi.Input<string>;
}