UNPKG

@pulumi/sdwan

Version:

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

92 lines (91 loc) 2.34 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Configuration Group . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getConfigurationGroup({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getConfigurationGroup(args: GetConfigurationGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetConfigurationGroupResult>; /** * A collection of arguments for invoking getConfigurationGroup. */ export interface GetConfigurationGroupArgs { /** * The id of the object */ id: string; } /** * A collection of values returned by getConfigurationGroup. */ export interface GetConfigurationGroupResult { /** * Description */ readonly description: string; /** * List of devices */ readonly devices: outputs.GetConfigurationGroupDevice[]; /** * List of feature profile IDs */ readonly featureProfileIds: string[]; /** * List of all associated feature versions */ readonly featureVersions: string[]; /** * The id of the object */ readonly id: string; /** * The name of the configuration group */ readonly name: string; /** * Type of solution */ readonly solution: string; /** * List of topology device types */ readonly topologyDevices: outputs.GetConfigurationGroupTopologyDevice[]; /** * Number of devices per site */ readonly topologySiteDevices: number; } /** * This data source can read the Configuration Group . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getConfigurationGroup({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getConfigurationGroupOutput(args: GetConfigurationGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfigurationGroupResult>; /** * A collection of arguments for invoking getConfigurationGroup. */ export interface GetConfigurationGroupOutputArgs { /** * The id of the object */ id: pulumi.Input<string>; }