@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
100 lines (99 loc) • 2.52 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* This data source can read the Feature Device Template .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getFeatureDeviceTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getFeatureDeviceTemplate(args: GetFeatureDeviceTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetFeatureDeviceTemplateResult>;
/**
* A collection of arguments for invoking getFeatureDeviceTemplate.
*/
export interface GetFeatureDeviceTemplateArgs {
/**
* The id of the object
*/
id: string;
}
/**
* A collection of values returned by getFeatureDeviceTemplate.
*/
export interface GetFeatureDeviceTemplateResult {
/**
* The description of the device template
*/
readonly description: string;
/**
* The device role
*/
readonly deviceRole: string;
/**
* The device type (e.g., `vedge-ISR-4331`)
*/
readonly deviceType: string;
/**
* List of general templates
*/
readonly generalTemplates: outputs.GetFeatureDeviceTemplateGeneralTemplate[];
/**
* The id of the object
*/
readonly id: string;
/**
* The name of the device template
*/
readonly name: string;
/**
* The policy ID
*/
readonly policyId: string;
/**
* The policy version
*/
readonly policyVersion: number;
/**
* The security policy ID
*/
readonly securityPolicyId: string;
/**
* The security policy version
*/
readonly securityPolicyVersion: number;
/**
* The version of the object
*/
readonly version: number;
}
/**
* This data source can read the Feature Device Template .
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getFeatureDeviceTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getFeatureDeviceTemplateOutput(args: GetFeatureDeviceTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFeatureDeviceTemplateResult>;
/**
* A collection of arguments for invoking getFeatureDeviceTemplate.
*/
export interface GetFeatureDeviceTemplateOutputArgs {
/**
* The id of the object
*/
id: pulumi.Input<string>;
}